blob: 101041d4d2b29cbd02be2f995be718b9d88a77c8 [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>
Chris Mason4b4e25f2008-11-20 10:22:27 -050025#include "compat.h"
Chris Mason74493f72007-12-11 09:25:06 -050026#include "hash.h"
Chris Masonfec577f2007-02-26 10:40:21 -050027#include "ctree.h"
28#include "disk-io.h"
29#include "print-tree.h"
Chris Masone089f052007-03-16 16:20:31 -040030#include "transaction.h"
Chris Mason0b86a832008-03-24 15:01:56 -040031#include "volumes.h"
Chris Mason925baed2008-06-25 16:01:30 -040032#include "locking.h"
Chris Masonfa9c0d72009-04-03 09:47:43 -040033#include "free-space-cache.h"
Chris Masonfec577f2007-02-26 10:40:21 -050034
Josef Bacikf3465ca2008-11-12 14:19:50 -050035static int update_block_group(struct btrfs_trans_handle *trans,
36 struct btrfs_root *root,
37 u64 bytenr, u64 num_bytes, int alloc,
38 int mark_free);
Yan Zheng11833d62009-09-11 16:11:19 -040039static int update_reserved_extents(struct btrfs_block_group_cache *cache,
40 u64 num_bytes, int reserve);
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 pin_down_bytes(struct btrfs_trans_handle *trans,
64 struct btrfs_root *root,
65 struct btrfs_path *path,
66 u64 bytenr, u64 num_bytes,
67 int is_data, int reserved,
68 struct extent_buffer **must_clean);
69static int find_next_key(struct btrfs_path *path, int level,
70 struct btrfs_key *key);
Josef Bacik9ed74f22009-09-11 16:12:44 -040071static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
72 int dump_block_groups);
Josef Bacik6a632092009-02-20 11:00:09 -050073
Josef Bacik817d52f2009-07-13 21:29:25 -040074static noinline int
75block_group_cache_done(struct btrfs_block_group_cache *cache)
76{
77 smp_mb();
78 return cache->cached == BTRFS_CACHE_FINISHED;
79}
80
Josef Bacik0f9dd462008-09-23 13:14:11 -040081static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
82{
83 return (cache->flags & bits) == bits;
84}
85
Josef Bacik11dfe352009-11-13 20:12:59 +000086void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
87{
88 atomic_inc(&cache->count);
89}
90
91void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
92{
93 if (atomic_dec_and_test(&cache->count))
94 kfree(cache);
95}
96
Josef Bacik0f9dd462008-09-23 13:14:11 -040097/*
98 * this adds the block group to the fs_info rb tree for the block group
99 * cache
100 */
Christoph Hellwigb2950862008-12-02 09:54:17 -0500101static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400102 struct btrfs_block_group_cache *block_group)
103{
104 struct rb_node **p;
105 struct rb_node *parent = NULL;
106 struct btrfs_block_group_cache *cache;
107
108 spin_lock(&info->block_group_cache_lock);
109 p = &info->block_group_cache_tree.rb_node;
110
111 while (*p) {
112 parent = *p;
113 cache = rb_entry(parent, struct btrfs_block_group_cache,
114 cache_node);
115 if (block_group->key.objectid < cache->key.objectid) {
116 p = &(*p)->rb_left;
117 } else if (block_group->key.objectid > cache->key.objectid) {
118 p = &(*p)->rb_right;
119 } else {
120 spin_unlock(&info->block_group_cache_lock);
121 return -EEXIST;
122 }
123 }
124
125 rb_link_node(&block_group->cache_node, parent, p);
126 rb_insert_color(&block_group->cache_node,
127 &info->block_group_cache_tree);
128 spin_unlock(&info->block_group_cache_lock);
129
130 return 0;
131}
132
133/*
134 * This will return the block group at or after bytenr if contains is 0, else
135 * it will return the block group that contains the bytenr
136 */
137static struct btrfs_block_group_cache *
138block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
139 int contains)
140{
141 struct btrfs_block_group_cache *cache, *ret = NULL;
142 struct rb_node *n;
143 u64 end, start;
144
145 spin_lock(&info->block_group_cache_lock);
146 n = info->block_group_cache_tree.rb_node;
147
148 while (n) {
149 cache = rb_entry(n, struct btrfs_block_group_cache,
150 cache_node);
151 end = cache->key.objectid + cache->key.offset - 1;
152 start = cache->key.objectid;
153
154 if (bytenr < start) {
155 if (!contains && (!ret || start < ret->key.objectid))
156 ret = cache;
157 n = n->rb_left;
158 } else if (bytenr > start) {
159 if (contains && bytenr <= end) {
160 ret = cache;
161 break;
162 }
163 n = n->rb_right;
164 } else {
165 ret = cache;
166 break;
167 }
168 }
Yan Zhengd2fb3432008-12-11 16:30:39 -0500169 if (ret)
Josef Bacik11dfe352009-11-13 20:12:59 +0000170 btrfs_get_block_group(ret);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400171 spin_unlock(&info->block_group_cache_lock);
172
173 return ret;
174}
175
Yan Zheng11833d62009-09-11 16:11:19 -0400176static int add_excluded_extent(struct btrfs_root *root,
177 u64 start, u64 num_bytes)
Josef Bacik817d52f2009-07-13 21:29:25 -0400178{
Yan Zheng11833d62009-09-11 16:11:19 -0400179 u64 end = start + num_bytes - 1;
180 set_extent_bits(&root->fs_info->freed_extents[0],
181 start, end, EXTENT_UPTODATE, GFP_NOFS);
182 set_extent_bits(&root->fs_info->freed_extents[1],
183 start, end, EXTENT_UPTODATE, GFP_NOFS);
184 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400185}
186
Yan Zheng11833d62009-09-11 16:11:19 -0400187static void free_excluded_extents(struct btrfs_root *root,
188 struct btrfs_block_group_cache *cache)
Josef Bacik817d52f2009-07-13 21:29:25 -0400189{
Yan Zheng11833d62009-09-11 16:11:19 -0400190 u64 start, end;
191
192 start = cache->key.objectid;
193 end = start + cache->key.offset - 1;
194
195 clear_extent_bits(&root->fs_info->freed_extents[0],
196 start, end, EXTENT_UPTODATE, GFP_NOFS);
197 clear_extent_bits(&root->fs_info->freed_extents[1],
198 start, end, EXTENT_UPTODATE, GFP_NOFS);
199}
200
201static int exclude_super_stripes(struct btrfs_root *root,
202 struct btrfs_block_group_cache *cache)
203{
Josef Bacik817d52f2009-07-13 21:29:25 -0400204 u64 bytenr;
205 u64 *logical;
206 int stripe_len;
207 int i, nr, ret;
208
Yan, Zheng06b23312009-11-26 09:31:11 +0000209 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
210 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
211 cache->bytes_super += stripe_len;
212 ret = add_excluded_extent(root, cache->key.objectid,
213 stripe_len);
214 BUG_ON(ret);
215 }
216
Josef Bacik817d52f2009-07-13 21:29:25 -0400217 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
218 bytenr = btrfs_sb_offset(i);
219 ret = btrfs_rmap_block(&root->fs_info->mapping_tree,
220 cache->key.objectid, bytenr,
221 0, &logical, &nr, &stripe_len);
222 BUG_ON(ret);
Yan Zheng11833d62009-09-11 16:11:19 -0400223
Josef Bacik817d52f2009-07-13 21:29:25 -0400224 while (nr--) {
Josef Bacik1b2da372009-09-11 16:11:20 -0400225 cache->bytes_super += stripe_len;
Yan Zheng11833d62009-09-11 16:11:19 -0400226 ret = add_excluded_extent(root, logical[nr],
227 stripe_len);
228 BUG_ON(ret);
Josef Bacik817d52f2009-07-13 21:29:25 -0400229 }
Yan Zheng11833d62009-09-11 16:11:19 -0400230
Josef Bacik817d52f2009-07-13 21:29:25 -0400231 kfree(logical);
232 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400233 return 0;
234}
235
Yan Zheng11833d62009-09-11 16:11:19 -0400236static struct btrfs_caching_control *
237get_caching_control(struct btrfs_block_group_cache *cache)
238{
239 struct btrfs_caching_control *ctl;
240
241 spin_lock(&cache->lock);
242 if (cache->cached != BTRFS_CACHE_STARTED) {
243 spin_unlock(&cache->lock);
244 return NULL;
245 }
246
247 ctl = cache->caching_ctl;
248 atomic_inc(&ctl->count);
249 spin_unlock(&cache->lock);
250 return ctl;
251}
252
253static void put_caching_control(struct btrfs_caching_control *ctl)
254{
255 if (atomic_dec_and_test(&ctl->count))
256 kfree(ctl);
257}
258
Josef Bacik0f9dd462008-09-23 13:14:11 -0400259/*
260 * this is only called by cache_block_group, since we could have freed extents
261 * we need to check the pinned_extents for any extents that can't be used yet
262 * since their free space will be released as soon as the transaction commits.
263 */
Josef Bacik817d52f2009-07-13 21:29:25 -0400264static u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400265 struct btrfs_fs_info *info, u64 start, u64 end)
266{
Josef Bacik817d52f2009-07-13 21:29:25 -0400267 u64 extent_start, extent_end, size, total_added = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400268 int ret;
269
270 while (start < end) {
Yan Zheng11833d62009-09-11 16:11:19 -0400271 ret = find_first_extent_bit(info->pinned_extents, start,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400272 &extent_start, &extent_end,
Yan Zheng11833d62009-09-11 16:11:19 -0400273 EXTENT_DIRTY | EXTENT_UPTODATE);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400274 if (ret)
275 break;
276
Yan, Zheng06b23312009-11-26 09:31:11 +0000277 if (extent_start <= start) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400278 start = extent_end + 1;
279 } else if (extent_start > start && extent_start < end) {
280 size = extent_start - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400281 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500282 ret = btrfs_add_free_space(block_group, start,
283 size);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400284 BUG_ON(ret);
285 start = extent_end + 1;
286 } else {
287 break;
288 }
289 }
290
291 if (start < end) {
292 size = end - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400293 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500294 ret = btrfs_add_free_space(block_group, start, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400295 BUG_ON(ret);
296 }
297
Josef Bacik817d52f2009-07-13 21:29:25 -0400298 return total_added;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400299}
300
Josef Bacik817d52f2009-07-13 21:29:25 -0400301static int caching_kthread(void *data)
Chris Masone37c9e62007-05-09 20:13:14 -0400302{
Josef Bacik817d52f2009-07-13 21:29:25 -0400303 struct btrfs_block_group_cache *block_group = data;
304 struct btrfs_fs_info *fs_info = block_group->fs_info;
Yan Zheng11833d62009-09-11 16:11:19 -0400305 struct btrfs_caching_control *caching_ctl = block_group->caching_ctl;
306 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Masone37c9e62007-05-09 20:13:14 -0400307 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400308 struct extent_buffer *leaf;
Yan Zheng11833d62009-09-11 16:11:19 -0400309 struct btrfs_key key;
Josef Bacik817d52f2009-07-13 21:29:25 -0400310 u64 total_found = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400311 u64 last = 0;
312 u32 nritems;
313 int ret = 0;
Chris Masonf510cfe2007-10-15 16:14:48 -0400314
Chris Masone37c9e62007-05-09 20:13:14 -0400315 path = btrfs_alloc_path();
316 if (!path)
317 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -0400318
Yan Zheng11833d62009-09-11 16:11:19 -0400319 exclude_super_stripes(extent_root, block_group);
Josef Bacik1b2da372009-09-11 16:11:20 -0400320 spin_lock(&block_group->space_info->lock);
321 block_group->space_info->bytes_super += block_group->bytes_super;
322 spin_unlock(&block_group->space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400323
Josef Bacik817d52f2009-07-13 21:29:25 -0400324 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
Yan Zheng11833d62009-09-11 16:11:19 -0400325
Chris Mason5cd57b22008-06-25 16:01:30 -0400326 /*
Josef Bacik817d52f2009-07-13 21:29:25 -0400327 * We don't want to deadlock with somebody trying to allocate a new
328 * extent for the extent root while also trying to search the extent
329 * root to add free space. So we skip locking and search the commit
330 * root, since its read-only
Chris Mason5cd57b22008-06-25 16:01:30 -0400331 */
332 path->skip_locking = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400333 path->search_commit_root = 1;
334 path->reada = 2;
335
Yan Zhenge4404d62008-12-12 10:03:26 -0500336 key.objectid = last;
Chris Masone37c9e62007-05-09 20:13:14 -0400337 key.offset = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400338 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason013f1b12009-07-31 14:57:55 -0400339again:
Yan Zheng11833d62009-09-11 16:11:19 -0400340 mutex_lock(&caching_ctl->mutex);
Chris Mason013f1b12009-07-31 14:57:55 -0400341 /* need to make sure the commit_root doesn't disappear */
342 down_read(&fs_info->extent_commit_sem);
343
Yan Zheng11833d62009-09-11 16:11:19 -0400344 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
Chris Masone37c9e62007-05-09 20:13:14 -0400345 if (ret < 0)
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400346 goto err;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500347
Yan Zheng11833d62009-09-11 16:11:19 -0400348 leaf = path->nodes[0];
349 nritems = btrfs_header_nritems(leaf);
350
Chris Masond3977122009-01-05 21:25:51 -0500351 while (1) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400352 smp_mb();
Yan Zheng11833d62009-09-11 16:11:19 -0400353 if (fs_info->closing > 1) {
Yan Zhengf25784b2009-07-28 08:41:57 -0400354 last = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400355 break;
Yan Zhengf25784b2009-07-28 08:41:57 -0400356 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400357
Yan Zheng11833d62009-09-11 16:11:19 -0400358 if (path->slots[0] < nritems) {
359 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
360 } else {
361 ret = find_next_key(path, 0, &key);
362 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -0400363 break;
Josef Bacik817d52f2009-07-13 21:29:25 -0400364
Yan Zheng11833d62009-09-11 16:11:19 -0400365 caching_ctl->progress = last;
366 btrfs_release_path(extent_root, path);
367 up_read(&fs_info->extent_commit_sem);
368 mutex_unlock(&caching_ctl->mutex);
369 if (btrfs_transaction_in_commit(fs_info))
Chris Masonf36f3042009-07-30 10:04:48 -0400370 schedule_timeout(1);
Yan Zheng11833d62009-09-11 16:11:19 -0400371 else
372 cond_resched();
373 goto again;
374 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400375
Yan Zheng11833d62009-09-11 16:11:19 -0400376 if (key.objectid < block_group->key.objectid) {
377 path->slots[0]++;
Josef Bacik817d52f2009-07-13 21:29:25 -0400378 continue;
Chris Masone37c9e62007-05-09 20:13:14 -0400379 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400380
Chris Masone37c9e62007-05-09 20:13:14 -0400381 if (key.objectid >= block_group->key.objectid +
Josef Bacik0f9dd462008-09-23 13:14:11 -0400382 block_group->key.offset)
Yan7d7d6062007-09-14 16:15:28 -0400383 break;
Yan7d7d6062007-09-14 16:15:28 -0400384
Yan Zheng11833d62009-09-11 16:11:19 -0400385 if (key.type == BTRFS_EXTENT_ITEM_KEY) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400386 total_found += add_new_free_space(block_group,
387 fs_info, last,
388 key.objectid);
Yan7d7d6062007-09-14 16:15:28 -0400389 last = key.objectid + key.offset;
Josef Bacik817d52f2009-07-13 21:29:25 -0400390
Yan Zheng11833d62009-09-11 16:11:19 -0400391 if (total_found > (1024 * 1024 * 2)) {
392 total_found = 0;
393 wake_up(&caching_ctl->wait);
394 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400395 }
Chris Masone37c9e62007-05-09 20:13:14 -0400396 path->slots[0]++;
397 }
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400398 ret = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400399
400 total_found += add_new_free_space(block_group, fs_info, last,
401 block_group->key.objectid +
402 block_group->key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -0400403 caching_ctl->progress = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400404
405 spin_lock(&block_group->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400406 block_group->caching_ctl = NULL;
Josef Bacik817d52f2009-07-13 21:29:25 -0400407 block_group->cached = BTRFS_CACHE_FINISHED;
408 spin_unlock(&block_group->lock);
409
Chris Mason54aa1f42007-06-22 14:16:25 -0400410err:
Chris Masone37c9e62007-05-09 20:13:14 -0400411 btrfs_free_path(path);
Yan Zheng276e6802009-07-30 09:40:40 -0400412 up_read(&fs_info->extent_commit_sem);
Josef Bacik817d52f2009-07-13 21:29:25 -0400413
Yan Zheng11833d62009-09-11 16:11:19 -0400414 free_excluded_extents(extent_root, block_group);
415
416 mutex_unlock(&caching_ctl->mutex);
417 wake_up(&caching_ctl->wait);
418
419 put_caching_control(caching_ctl);
420 atomic_dec(&block_group->space_info->caching_threads);
Josef Bacik11dfe352009-11-13 20:12:59 +0000421 btrfs_put_block_group(block_group);
422
Josef Bacik817d52f2009-07-13 21:29:25 -0400423 return 0;
424}
425
426static int cache_block_group(struct btrfs_block_group_cache *cache)
427{
Yan Zheng11833d62009-09-11 16:11:19 -0400428 struct btrfs_fs_info *fs_info = cache->fs_info;
429 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400430 struct task_struct *tsk;
431 int ret = 0;
432
Yan Zheng11833d62009-09-11 16:11:19 -0400433 smp_mb();
434 if (cache->cached != BTRFS_CACHE_NO)
435 return 0;
436
437 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_KERNEL);
438 BUG_ON(!caching_ctl);
439
440 INIT_LIST_HEAD(&caching_ctl->list);
441 mutex_init(&caching_ctl->mutex);
442 init_waitqueue_head(&caching_ctl->wait);
443 caching_ctl->block_group = cache;
444 caching_ctl->progress = cache->key.objectid;
445 /* one for caching kthread, one for caching block group list */
446 atomic_set(&caching_ctl->count, 2);
447
Josef Bacik817d52f2009-07-13 21:29:25 -0400448 spin_lock(&cache->lock);
449 if (cache->cached != BTRFS_CACHE_NO) {
450 spin_unlock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400451 kfree(caching_ctl);
452 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400453 }
Yan Zheng11833d62009-09-11 16:11:19 -0400454 cache->caching_ctl = caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400455 cache->cached = BTRFS_CACHE_STARTED;
456 spin_unlock(&cache->lock);
457
Yan Zheng11833d62009-09-11 16:11:19 -0400458 down_write(&fs_info->extent_commit_sem);
459 list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
460 up_write(&fs_info->extent_commit_sem);
461
462 atomic_inc(&cache->space_info->caching_threads);
Josef Bacik11dfe352009-11-13 20:12:59 +0000463 btrfs_get_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -0400464
Josef Bacik817d52f2009-07-13 21:29:25 -0400465 tsk = kthread_run(caching_kthread, cache, "btrfs-cache-%llu\n",
466 cache->key.objectid);
467 if (IS_ERR(tsk)) {
468 ret = PTR_ERR(tsk);
469 printk(KERN_ERR "error running thread %d\n", ret);
470 BUG();
471 }
472
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400473 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -0400474}
475
Josef Bacik0f9dd462008-09-23 13:14:11 -0400476/*
477 * return the block group that starts at or after bytenr
478 */
Chris Masond3977122009-01-05 21:25:51 -0500479static struct btrfs_block_group_cache *
480btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
Chris Mason0ef3e662008-05-24 14:04:53 -0400481{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400482 struct btrfs_block_group_cache *cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400483
Josef Bacik0f9dd462008-09-23 13:14:11 -0400484 cache = block_group_cache_tree_search(info, bytenr, 0);
Chris Mason0ef3e662008-05-24 14:04:53 -0400485
Josef Bacik0f9dd462008-09-23 13:14:11 -0400486 return cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400487}
488
Josef Bacik0f9dd462008-09-23 13:14:11 -0400489/*
Sankar P9f556842009-05-14 13:52:22 -0400490 * return the block group that contains the given bytenr
Josef Bacik0f9dd462008-09-23 13:14:11 -0400491 */
Chris Masond3977122009-01-05 21:25:51 -0500492struct btrfs_block_group_cache *btrfs_lookup_block_group(
493 struct btrfs_fs_info *info,
494 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400495{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400496 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -0400497
Josef Bacik0f9dd462008-09-23 13:14:11 -0400498 cache = block_group_cache_tree_search(info, bytenr, 1);
Chris Mason96b51792007-10-15 16:15:19 -0400499
Josef Bacik0f9dd462008-09-23 13:14:11 -0400500 return cache;
Chris Masonbe744172007-05-06 10:15:01 -0400501}
Chris Mason0b86a832008-03-24 15:01:56 -0400502
Josef Bacik0f9dd462008-09-23 13:14:11 -0400503static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
504 u64 flags)
Chris Mason6324fbf2008-03-24 15:01:59 -0400505{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400506 struct list_head *head = &info->space_info;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400507 struct btrfs_space_info *found;
Chris Mason4184ea72009-03-10 12:39:20 -0400508
509 rcu_read_lock();
510 list_for_each_entry_rcu(found, head, list) {
511 if (found->flags == flags) {
512 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400513 return found;
Chris Mason4184ea72009-03-10 12:39:20 -0400514 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400515 }
Chris Mason4184ea72009-03-10 12:39:20 -0400516 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400517 return NULL;
Chris Mason6324fbf2008-03-24 15:01:59 -0400518}
519
Chris Mason4184ea72009-03-10 12:39:20 -0400520/*
521 * after adding space to the filesystem, we need to clear the full flags
522 * on all the space infos.
523 */
524void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
525{
526 struct list_head *head = &info->space_info;
527 struct btrfs_space_info *found;
528
529 rcu_read_lock();
530 list_for_each_entry_rcu(found, head, list)
531 found->full = 0;
532 rcu_read_unlock();
533}
534
Josef Bacik80eb2342008-10-29 14:49:05 -0400535static u64 div_factor(u64 num, int factor)
536{
537 if (factor == 10)
538 return num;
539 num *= factor;
540 do_div(num, 10);
541 return num;
542}
543
Yan Zhengd2fb3432008-12-11 16:30:39 -0500544u64 btrfs_find_block_group(struct btrfs_root *root,
545 u64 search_start, u64 search_hint, int owner)
Chris Masoncd1bc462007-04-27 10:08:34 -0400546{
Chris Mason96b51792007-10-15 16:15:19 -0400547 struct btrfs_block_group_cache *cache;
Chris Masoncd1bc462007-04-27 10:08:34 -0400548 u64 used;
Yan Zhengd2fb3432008-12-11 16:30:39 -0500549 u64 last = max(search_hint, search_start);
550 u64 group_start = 0;
Chris Mason31f3c992007-04-30 15:25:45 -0400551 int full_search = 0;
Yan Zhengd2fb3432008-12-11 16:30:39 -0500552 int factor = 9;
Chris Mason0ef3e662008-05-24 14:04:53 -0400553 int wrapped = 0;
Chris Mason31f3c992007-04-30 15:25:45 -0400554again:
Zheng Yane8569812008-09-26 10:05:48 -0400555 while (1) {
556 cache = btrfs_lookup_first_block_group(root->fs_info, last);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400557 if (!cache)
Chris Masoncd1bc462007-04-27 10:08:34 -0400558 break;
Chris Mason96b51792007-10-15 16:15:19 -0400559
Chris Masonc286ac42008-07-22 23:06:41 -0400560 spin_lock(&cache->lock);
Chris Mason96b51792007-10-15 16:15:19 -0400561 last = cache->key.objectid + cache->key.offset;
562 used = btrfs_block_group_used(&cache->item);
563
Yan Zhengd2fb3432008-12-11 16:30:39 -0500564 if ((full_search || !cache->ro) &&
565 block_group_bits(cache, BTRFS_BLOCK_GROUP_METADATA)) {
Zheng Yane8569812008-09-26 10:05:48 -0400566 if (used + cache->pinned + cache->reserved <
Yan Zhengd2fb3432008-12-11 16:30:39 -0500567 div_factor(cache->key.offset, factor)) {
568 group_start = cache->key.objectid;
Chris Masonc286ac42008-07-22 23:06:41 -0400569 spin_unlock(&cache->lock);
Chris Masonfa9c0d72009-04-03 09:47:43 -0400570 btrfs_put_block_group(cache);
Chris Mason8790d502008-04-03 16:29:03 -0400571 goto found;
572 }
Chris Masoncd1bc462007-04-27 10:08:34 -0400573 }
Chris Masonc286ac42008-07-22 23:06:41 -0400574 spin_unlock(&cache->lock);
Chris Masonfa9c0d72009-04-03 09:47:43 -0400575 btrfs_put_block_group(cache);
Chris Masonde428b62007-05-18 13:28:27 -0400576 cond_resched();
Chris Masoncd1bc462007-04-27 10:08:34 -0400577 }
Chris Mason0ef3e662008-05-24 14:04:53 -0400578 if (!wrapped) {
579 last = search_start;
580 wrapped = 1;
581 goto again;
582 }
583 if (!full_search && factor < 10) {
Chris Masonbe744172007-05-06 10:15:01 -0400584 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400585 full_search = 1;
Chris Mason0ef3e662008-05-24 14:04:53 -0400586 factor = 10;
Chris Mason31f3c992007-04-30 15:25:45 -0400587 goto again;
588 }
Chris Masonbe744172007-05-06 10:15:01 -0400589found:
Yan Zhengd2fb3432008-12-11 16:30:39 -0500590 return group_start;
Chris Mason925baed2008-06-25 16:01:30 -0400591}
Josef Bacik0f9dd462008-09-23 13:14:11 -0400592
Chris Masone02119d2008-09-05 16:13:11 -0400593/* simple helper to search for an existing extent at a given offset */
Zheng Yan31840ae2008-09-23 13:14:14 -0400594int btrfs_lookup_extent(struct btrfs_root *root, u64 start, u64 len)
Chris Masone02119d2008-09-05 16:13:11 -0400595{
596 int ret;
597 struct btrfs_key key;
Zheng Yan31840ae2008-09-23 13:14:14 -0400598 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -0400599
Zheng Yan31840ae2008-09-23 13:14:14 -0400600 path = btrfs_alloc_path();
601 BUG_ON(!path);
Chris Masone02119d2008-09-05 16:13:11 -0400602 key.objectid = start;
603 key.offset = len;
604 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
605 ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path,
606 0, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400607 btrfs_free_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -0500608 return ret;
609}
610
Chris Masond8d5f3e2007-12-11 12:42:00 -0500611/*
612 * Back reference rules. Back refs have three main goals:
613 *
614 * 1) differentiate between all holders of references to an extent so that
615 * when a reference is dropped we can make sure it was a valid reference
616 * before freeing the extent.
617 *
618 * 2) Provide enough information to quickly find the holders of an extent
619 * if we notice a given block is corrupted or bad.
620 *
621 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
622 * maintenance. This is actually the same as #2, but with a slightly
623 * different use case.
624 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400625 * There are two kinds of back refs. The implicit back refs is optimized
626 * for pointers in non-shared tree blocks. For a given pointer in a block,
627 * back refs of this kind provide information about the block's owner tree
628 * and the pointer's key. These information allow us to find the block by
629 * b-tree searching. The full back refs is for pointers in tree blocks not
630 * referenced by their owner trees. The location of tree block is recorded
631 * in the back refs. Actually the full back refs is generic, and can be
632 * used in all cases the implicit back refs is used. The major shortcoming
633 * of the full back refs is its overhead. Every time a tree block gets
634 * COWed, we have to update back refs entry for all pointers in it.
635 *
636 * For a newly allocated tree block, we use implicit back refs for
637 * pointers in it. This means most tree related operations only involve
638 * implicit back refs. For a tree block created in old transaction, the
639 * only way to drop a reference to it is COW it. So we can detect the
640 * event that tree block loses its owner tree's reference and do the
641 * back refs conversion.
642 *
643 * When a tree block is COW'd through a tree, there are four cases:
644 *
645 * The reference count of the block is one and the tree is the block's
646 * owner tree. Nothing to do in this case.
647 *
648 * The reference count of the block is one and the tree is not the
649 * block's owner tree. In this case, full back refs is used for pointers
650 * in the block. Remove these full back refs, add implicit back refs for
651 * every pointers in the new block.
652 *
653 * The reference count of the block is greater than one and the tree is
654 * the block's owner tree. In this case, implicit back refs is used for
655 * pointers in the block. Add full back refs for every pointers in the
656 * block, increase lower level extents' reference counts. The original
657 * implicit back refs are entailed to the new block.
658 *
659 * The reference count of the block is greater than one and the tree is
660 * not the block's owner tree. Add implicit back refs for every pointer in
661 * the new block, increase lower level extents' reference count.
662 *
663 * Back Reference Key composing:
664 *
665 * The key objectid corresponds to the first byte in the extent,
666 * The key type is used to differentiate between types of back refs.
667 * There are different meanings of the key offset for different types
668 * of back refs.
669 *
Chris Masond8d5f3e2007-12-11 12:42:00 -0500670 * File extents can be referenced by:
671 *
672 * - multiple snapshots, subvolumes, or different generations in one subvol
Zheng Yan31840ae2008-09-23 13:14:14 -0400673 * - different files inside a single subvolume
Chris Masond8d5f3e2007-12-11 12:42:00 -0500674 * - different offsets inside a file (bookend extents in file.c)
675 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400676 * The extent ref structure for the implicit back refs has fields for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500677 *
678 * - Objectid of the subvolume root
Chris Masond8d5f3e2007-12-11 12:42:00 -0500679 * - objectid of the file holding the reference
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400680 * - original offset in the file
681 * - how many bookend extents
Zheng Yan31840ae2008-09-23 13:14:14 -0400682 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400683 * The key offset for the implicit back refs is hash of the first
684 * three fields.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500685 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400686 * The extent ref structure for the full back refs has field for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500687 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400688 * - number of pointers in the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500689 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400690 * The key offset for the implicit back refs is the first byte of
691 * the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500692 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400693 * When a file extent is allocated, The implicit back refs is used.
694 * the fields are filled in:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500695 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400696 * (root_key.objectid, inode objectid, offset in file, 1)
697 *
698 * When a file extent is removed file truncation, we find the
699 * corresponding implicit back refs and check the following fields:
700 *
701 * (btrfs_header_owner(leaf), inode objectid, offset in file)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500702 *
703 * Btree extents can be referenced by:
704 *
705 * - Different subvolumes
Chris Masond8d5f3e2007-12-11 12:42:00 -0500706 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400707 * Both the implicit back refs and the full back refs for tree blocks
708 * only consist of key. The key offset for the implicit back refs is
709 * objectid of block's owner tree. The key offset for the full back refs
710 * is the first byte of parent block.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500711 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400712 * When implicit back refs is used, information about the lowest key and
713 * level of the tree block are required. These information are stored in
714 * tree block info structure.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500715 */
Zheng Yan31840ae2008-09-23 13:14:14 -0400716
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400717#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
718static int convert_extent_item_v0(struct btrfs_trans_handle *trans,
719 struct btrfs_root *root,
720 struct btrfs_path *path,
721 u64 owner, u32 extra_size)
Chris Mason74493f72007-12-11 09:25:06 -0500722{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400723 struct btrfs_extent_item *item;
724 struct btrfs_extent_item_v0 *ei0;
725 struct btrfs_extent_ref_v0 *ref0;
726 struct btrfs_tree_block_info *bi;
Zheng Yan31840ae2008-09-23 13:14:14 -0400727 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400728 struct btrfs_key key;
729 struct btrfs_key found_key;
730 u32 new_size = sizeof(*item);
731 u64 refs;
Chris Mason74493f72007-12-11 09:25:06 -0500732 int ret;
733
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400734 leaf = path->nodes[0];
735 BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0));
Chris Mason74493f72007-12-11 09:25:06 -0500736
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400737 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
738 ei0 = btrfs_item_ptr(leaf, path->slots[0],
739 struct btrfs_extent_item_v0);
740 refs = btrfs_extent_refs_v0(leaf, ei0);
741
742 if (owner == (u64)-1) {
743 while (1) {
744 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
745 ret = btrfs_next_leaf(root, path);
746 if (ret < 0)
747 return ret;
748 BUG_ON(ret > 0);
749 leaf = path->nodes[0];
750 }
751 btrfs_item_key_to_cpu(leaf, &found_key,
752 path->slots[0]);
753 BUG_ON(key.objectid != found_key.objectid);
754 if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) {
755 path->slots[0]++;
756 continue;
757 }
758 ref0 = btrfs_item_ptr(leaf, path->slots[0],
759 struct btrfs_extent_ref_v0);
760 owner = btrfs_ref_objectid_v0(leaf, ref0);
761 break;
762 }
763 }
764 btrfs_release_path(root, path);
765
766 if (owner < BTRFS_FIRST_FREE_OBJECTID)
767 new_size += sizeof(*bi);
768
769 new_size -= sizeof(*ei0);
770 ret = btrfs_search_slot(trans, root, &key, path,
771 new_size + extra_size, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -0400772 if (ret < 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400773 return ret;
774 BUG_ON(ret);
775
776 ret = btrfs_extend_item(trans, root, path, new_size);
777 BUG_ON(ret);
778
779 leaf = path->nodes[0];
780 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
781 btrfs_set_extent_refs(leaf, item, refs);
782 /* FIXME: get real generation */
783 btrfs_set_extent_generation(leaf, item, 0);
784 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
785 btrfs_set_extent_flags(leaf, item,
786 BTRFS_EXTENT_FLAG_TREE_BLOCK |
787 BTRFS_BLOCK_FLAG_FULL_BACKREF);
788 bi = (struct btrfs_tree_block_info *)(item + 1);
789 /* FIXME: get first key of the block */
790 memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi));
791 btrfs_set_tree_block_level(leaf, bi, (int)owner);
792 } else {
793 btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA);
794 }
795 btrfs_mark_buffer_dirty(leaf);
796 return 0;
797}
798#endif
799
800static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
801{
802 u32 high_crc = ~(u32)0;
803 u32 low_crc = ~(u32)0;
804 __le64 lenum;
805
806 lenum = cpu_to_le64(root_objectid);
David Woodhouse163e7832009-04-19 13:02:41 +0100807 high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400808 lenum = cpu_to_le64(owner);
David Woodhouse163e7832009-04-19 13:02:41 +0100809 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400810 lenum = cpu_to_le64(offset);
David Woodhouse163e7832009-04-19 13:02:41 +0100811 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400812
813 return ((u64)high_crc << 31) ^ (u64)low_crc;
814}
815
816static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
817 struct btrfs_extent_data_ref *ref)
818{
819 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
820 btrfs_extent_data_ref_objectid(leaf, ref),
821 btrfs_extent_data_ref_offset(leaf, ref));
822}
823
824static int match_extent_data_ref(struct extent_buffer *leaf,
825 struct btrfs_extent_data_ref *ref,
826 u64 root_objectid, u64 owner, u64 offset)
827{
828 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
829 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
830 btrfs_extent_data_ref_offset(leaf, ref) != offset)
831 return 0;
832 return 1;
833}
834
835static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
836 struct btrfs_root *root,
837 struct btrfs_path *path,
838 u64 bytenr, u64 parent,
839 u64 root_objectid,
840 u64 owner, u64 offset)
841{
842 struct btrfs_key key;
843 struct btrfs_extent_data_ref *ref;
844 struct extent_buffer *leaf;
845 u32 nritems;
846 int ret;
847 int recow;
848 int err = -ENOENT;
849
850 key.objectid = bytenr;
851 if (parent) {
852 key.type = BTRFS_SHARED_DATA_REF_KEY;
853 key.offset = parent;
854 } else {
855 key.type = BTRFS_EXTENT_DATA_REF_KEY;
856 key.offset = hash_extent_data_ref(root_objectid,
857 owner, offset);
858 }
859again:
860 recow = 0;
861 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
862 if (ret < 0) {
863 err = ret;
864 goto fail;
865 }
866
867 if (parent) {
868 if (!ret)
869 return 0;
870#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
871 key.type = BTRFS_EXTENT_REF_V0_KEY;
872 btrfs_release_path(root, path);
873 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
874 if (ret < 0) {
875 err = ret;
876 goto fail;
877 }
878 if (!ret)
879 return 0;
880#endif
881 goto fail;
Zheng Yan31840ae2008-09-23 13:14:14 -0400882 }
883
884 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400885 nritems = btrfs_header_nritems(leaf);
886 while (1) {
887 if (path->slots[0] >= nritems) {
888 ret = btrfs_next_leaf(root, path);
889 if (ret < 0)
890 err = ret;
891 if (ret)
892 goto fail;
893
894 leaf = path->nodes[0];
895 nritems = btrfs_header_nritems(leaf);
896 recow = 1;
897 }
898
899 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
900 if (key.objectid != bytenr ||
901 key.type != BTRFS_EXTENT_DATA_REF_KEY)
902 goto fail;
903
904 ref = btrfs_item_ptr(leaf, path->slots[0],
905 struct btrfs_extent_data_ref);
906
907 if (match_extent_data_ref(leaf, ref, root_objectid,
908 owner, offset)) {
909 if (recow) {
910 btrfs_release_path(root, path);
911 goto again;
912 }
913 err = 0;
914 break;
915 }
916 path->slots[0]++;
Zheng Yan31840ae2008-09-23 13:14:14 -0400917 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400918fail:
919 return err;
Zheng Yan31840ae2008-09-23 13:14:14 -0400920}
921
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400922static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
923 struct btrfs_root *root,
924 struct btrfs_path *path,
925 u64 bytenr, u64 parent,
926 u64 root_objectid, u64 owner,
927 u64 offset, int refs_to_add)
Zheng Yan31840ae2008-09-23 13:14:14 -0400928{
929 struct btrfs_key key;
930 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400931 u32 size;
Zheng Yan31840ae2008-09-23 13:14:14 -0400932 u32 num_refs;
933 int ret;
934
935 key.objectid = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400936 if (parent) {
937 key.type = BTRFS_SHARED_DATA_REF_KEY;
938 key.offset = parent;
939 size = sizeof(struct btrfs_shared_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -0400940 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400941 key.type = BTRFS_EXTENT_DATA_REF_KEY;
942 key.offset = hash_extent_data_ref(root_objectid,
943 owner, offset);
944 size = sizeof(struct btrfs_extent_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -0400945 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400946
947 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
948 if (ret && ret != -EEXIST)
949 goto fail;
950
951 leaf = path->nodes[0];
952 if (parent) {
953 struct btrfs_shared_data_ref *ref;
954 ref = btrfs_item_ptr(leaf, path->slots[0],
955 struct btrfs_shared_data_ref);
956 if (ret == 0) {
957 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
958 } else {
959 num_refs = btrfs_shared_data_ref_count(leaf, ref);
960 num_refs += refs_to_add;
961 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
962 }
963 } else {
964 struct btrfs_extent_data_ref *ref;
965 while (ret == -EEXIST) {
966 ref = btrfs_item_ptr(leaf, path->slots[0],
967 struct btrfs_extent_data_ref);
968 if (match_extent_data_ref(leaf, ref, root_objectid,
969 owner, offset))
970 break;
971 btrfs_release_path(root, path);
972 key.offset++;
973 ret = btrfs_insert_empty_item(trans, root, path, &key,
974 size);
975 if (ret && ret != -EEXIST)
976 goto fail;
977
978 leaf = path->nodes[0];
979 }
980 ref = btrfs_item_ptr(leaf, path->slots[0],
981 struct btrfs_extent_data_ref);
982 if (ret == 0) {
983 btrfs_set_extent_data_ref_root(leaf, ref,
984 root_objectid);
985 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
986 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
987 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
988 } else {
989 num_refs = btrfs_extent_data_ref_count(leaf, ref);
990 num_refs += refs_to_add;
991 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
992 }
993 }
994 btrfs_mark_buffer_dirty(leaf);
995 ret = 0;
996fail:
Chris Mason7bb86312007-12-11 09:25:06 -0500997 btrfs_release_path(root, path);
998 return ret;
Chris Mason74493f72007-12-11 09:25:06 -0500999}
1000
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001001static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
1002 struct btrfs_root *root,
1003 struct btrfs_path *path,
1004 int refs_to_drop)
Zheng Yan31840ae2008-09-23 13:14:14 -04001005{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001006 struct btrfs_key key;
1007 struct btrfs_extent_data_ref *ref1 = NULL;
1008 struct btrfs_shared_data_ref *ref2 = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -04001009 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001010 u32 num_refs = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04001011 int ret = 0;
1012
1013 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001014 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1015
1016 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1017 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1018 struct btrfs_extent_data_ref);
1019 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1020 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1021 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1022 struct btrfs_shared_data_ref);
1023 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1024#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1025 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1026 struct btrfs_extent_ref_v0 *ref0;
1027 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1028 struct btrfs_extent_ref_v0);
1029 num_refs = btrfs_ref_count_v0(leaf, ref0);
1030#endif
1031 } else {
1032 BUG();
1033 }
1034
Chris Mason56bec292009-03-13 10:10:06 -04001035 BUG_ON(num_refs < refs_to_drop);
1036 num_refs -= refs_to_drop;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001037
Zheng Yan31840ae2008-09-23 13:14:14 -04001038 if (num_refs == 0) {
1039 ret = btrfs_del_item(trans, root, path);
1040 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001041 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1042 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1043 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1044 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
1045#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1046 else {
1047 struct btrfs_extent_ref_v0 *ref0;
1048 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1049 struct btrfs_extent_ref_v0);
1050 btrfs_set_ref_count_v0(leaf, ref0, num_refs);
1051 }
1052#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04001053 btrfs_mark_buffer_dirty(leaf);
1054 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001055 return ret;
1056}
1057
1058static noinline u32 extent_data_ref_count(struct btrfs_root *root,
1059 struct btrfs_path *path,
1060 struct btrfs_extent_inline_ref *iref)
1061{
1062 struct btrfs_key key;
1063 struct extent_buffer *leaf;
1064 struct btrfs_extent_data_ref *ref1;
1065 struct btrfs_shared_data_ref *ref2;
1066 u32 num_refs = 0;
1067
1068 leaf = path->nodes[0];
1069 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1070 if (iref) {
1071 if (btrfs_extent_inline_ref_type(leaf, iref) ==
1072 BTRFS_EXTENT_DATA_REF_KEY) {
1073 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1074 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1075 } else {
1076 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1077 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1078 }
1079 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1080 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1081 struct btrfs_extent_data_ref);
1082 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1083 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1084 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1085 struct btrfs_shared_data_ref);
1086 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1087#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1088 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1089 struct btrfs_extent_ref_v0 *ref0;
1090 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1091 struct btrfs_extent_ref_v0);
1092 num_refs = btrfs_ref_count_v0(leaf, ref0);
1093#endif
1094 } else {
1095 WARN_ON(1);
1096 }
1097 return num_refs;
1098}
1099
1100static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
1101 struct btrfs_root *root,
1102 struct btrfs_path *path,
1103 u64 bytenr, u64 parent,
1104 u64 root_objectid)
1105{
1106 struct btrfs_key key;
1107 int ret;
1108
1109 key.objectid = bytenr;
1110 if (parent) {
1111 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1112 key.offset = parent;
1113 } else {
1114 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1115 key.offset = root_objectid;
1116 }
1117
1118 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1119 if (ret > 0)
1120 ret = -ENOENT;
1121#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1122 if (ret == -ENOENT && parent) {
1123 btrfs_release_path(root, path);
1124 key.type = BTRFS_EXTENT_REF_V0_KEY;
1125 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1126 if (ret > 0)
1127 ret = -ENOENT;
1128 }
1129#endif
1130 return ret;
1131}
1132
1133static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
1134 struct btrfs_root *root,
1135 struct btrfs_path *path,
1136 u64 bytenr, u64 parent,
1137 u64 root_objectid)
1138{
1139 struct btrfs_key key;
1140 int ret;
1141
1142 key.objectid = bytenr;
1143 if (parent) {
1144 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1145 key.offset = parent;
1146 } else {
1147 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1148 key.offset = root_objectid;
1149 }
1150
1151 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04001152 btrfs_release_path(root, path);
1153 return ret;
1154}
1155
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001156static inline int extent_ref_type(u64 parent, u64 owner)
1157{
1158 int type;
1159 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1160 if (parent > 0)
1161 type = BTRFS_SHARED_BLOCK_REF_KEY;
1162 else
1163 type = BTRFS_TREE_BLOCK_REF_KEY;
1164 } else {
1165 if (parent > 0)
1166 type = BTRFS_SHARED_DATA_REF_KEY;
1167 else
1168 type = BTRFS_EXTENT_DATA_REF_KEY;
1169 }
1170 return type;
1171}
1172
Yan Zheng2c47e6052009-06-27 21:07:35 -04001173static int find_next_key(struct btrfs_path *path, int level,
1174 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001175
1176{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001177 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001178 if (!path->nodes[level])
1179 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001180 if (path->slots[level] + 1 >=
1181 btrfs_header_nritems(path->nodes[level]))
1182 continue;
1183 if (level == 0)
1184 btrfs_item_key_to_cpu(path->nodes[level], key,
1185 path->slots[level] + 1);
1186 else
1187 btrfs_node_key_to_cpu(path->nodes[level], key,
1188 path->slots[level] + 1);
1189 return 0;
1190 }
1191 return 1;
1192}
1193
1194/*
1195 * look for inline back ref. if back ref is found, *ref_ret is set
1196 * to the address of inline back ref, and 0 is returned.
1197 *
1198 * if back ref isn't found, *ref_ret is set to the address where it
1199 * should be inserted, and -ENOENT is returned.
1200 *
1201 * if insert is true and there are too many inline back refs, the path
1202 * points to the extent item, and -EAGAIN is returned.
1203 *
1204 * NOTE: inline back refs are ordered in the same way that back ref
1205 * items in the tree are ordered.
1206 */
1207static noinline_for_stack
1208int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
1209 struct btrfs_root *root,
1210 struct btrfs_path *path,
1211 struct btrfs_extent_inline_ref **ref_ret,
1212 u64 bytenr, u64 num_bytes,
1213 u64 parent, u64 root_objectid,
1214 u64 owner, u64 offset, int insert)
1215{
1216 struct btrfs_key key;
1217 struct extent_buffer *leaf;
1218 struct btrfs_extent_item *ei;
1219 struct btrfs_extent_inline_ref *iref;
1220 u64 flags;
1221 u64 item_size;
1222 unsigned long ptr;
1223 unsigned long end;
1224 int extra_size;
1225 int type;
1226 int want;
1227 int ret;
1228 int err = 0;
1229
1230 key.objectid = bytenr;
1231 key.type = BTRFS_EXTENT_ITEM_KEY;
1232 key.offset = num_bytes;
1233
1234 want = extent_ref_type(parent, owner);
1235 if (insert) {
1236 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001237 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001238 } else
1239 extra_size = -1;
1240 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1241 if (ret < 0) {
1242 err = ret;
1243 goto out;
1244 }
1245 BUG_ON(ret);
1246
1247 leaf = path->nodes[0];
1248 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1249#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1250 if (item_size < sizeof(*ei)) {
1251 if (!insert) {
1252 err = -ENOENT;
1253 goto out;
1254 }
1255 ret = convert_extent_item_v0(trans, root, path, owner,
1256 extra_size);
1257 if (ret < 0) {
1258 err = ret;
1259 goto out;
1260 }
1261 leaf = path->nodes[0];
1262 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1263 }
1264#endif
1265 BUG_ON(item_size < sizeof(*ei));
1266
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001267 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1268 flags = btrfs_extent_flags(leaf, ei);
1269
1270 ptr = (unsigned long)(ei + 1);
1271 end = (unsigned long)ei + item_size;
1272
1273 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
1274 ptr += sizeof(struct btrfs_tree_block_info);
1275 BUG_ON(ptr > end);
1276 } else {
1277 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_DATA));
1278 }
1279
1280 err = -ENOENT;
1281 while (1) {
1282 if (ptr >= end) {
1283 WARN_ON(ptr > end);
1284 break;
1285 }
1286 iref = (struct btrfs_extent_inline_ref *)ptr;
1287 type = btrfs_extent_inline_ref_type(leaf, iref);
1288 if (want < type)
1289 break;
1290 if (want > type) {
1291 ptr += btrfs_extent_inline_ref_size(type);
1292 continue;
1293 }
1294
1295 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1296 struct btrfs_extent_data_ref *dref;
1297 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1298 if (match_extent_data_ref(leaf, dref, root_objectid,
1299 owner, offset)) {
1300 err = 0;
1301 break;
1302 }
1303 if (hash_extent_data_ref_item(leaf, dref) <
1304 hash_extent_data_ref(root_objectid, owner, offset))
1305 break;
1306 } else {
1307 u64 ref_offset;
1308 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1309 if (parent > 0) {
1310 if (parent == ref_offset) {
1311 err = 0;
1312 break;
1313 }
1314 if (ref_offset < parent)
1315 break;
1316 } else {
1317 if (root_objectid == ref_offset) {
1318 err = 0;
1319 break;
1320 }
1321 if (ref_offset < root_objectid)
1322 break;
1323 }
1324 }
1325 ptr += btrfs_extent_inline_ref_size(type);
1326 }
1327 if (err == -ENOENT && insert) {
1328 if (item_size + extra_size >=
1329 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1330 err = -EAGAIN;
1331 goto out;
1332 }
1333 /*
1334 * To add new inline back ref, we have to make sure
1335 * there is no corresponding back ref item.
1336 * For simplicity, we just do not add new inline back
1337 * ref if there is any kind of item for this block
1338 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001339 if (find_next_key(path, 0, &key) == 0 &&
1340 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001341 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001342 err = -EAGAIN;
1343 goto out;
1344 }
1345 }
1346 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1347out:
Yan Zheng85d41982009-06-11 08:51:10 -04001348 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001349 path->keep_locks = 0;
1350 btrfs_unlock_up_safe(path, 1);
1351 }
1352 return err;
1353}
1354
1355/*
1356 * helper to add new inline back ref
1357 */
1358static noinline_for_stack
1359int setup_inline_extent_backref(struct btrfs_trans_handle *trans,
1360 struct btrfs_root *root,
1361 struct btrfs_path *path,
1362 struct btrfs_extent_inline_ref *iref,
1363 u64 parent, u64 root_objectid,
1364 u64 owner, u64 offset, int refs_to_add,
1365 struct btrfs_delayed_extent_op *extent_op)
1366{
1367 struct extent_buffer *leaf;
1368 struct btrfs_extent_item *ei;
1369 unsigned long ptr;
1370 unsigned long end;
1371 unsigned long item_offset;
1372 u64 refs;
1373 int size;
1374 int type;
1375 int ret;
1376
1377 leaf = path->nodes[0];
1378 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1379 item_offset = (unsigned long)iref - (unsigned long)ei;
1380
1381 type = extent_ref_type(parent, owner);
1382 size = btrfs_extent_inline_ref_size(type);
1383
1384 ret = btrfs_extend_item(trans, root, path, size);
1385 BUG_ON(ret);
1386
1387 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1388 refs = btrfs_extent_refs(leaf, ei);
1389 refs += refs_to_add;
1390 btrfs_set_extent_refs(leaf, ei, refs);
1391 if (extent_op)
1392 __run_delayed_extent_op(extent_op, leaf, ei);
1393
1394 ptr = (unsigned long)ei + item_offset;
1395 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1396 if (ptr < end - size)
1397 memmove_extent_buffer(leaf, ptr + size, ptr,
1398 end - size - ptr);
1399
1400 iref = (struct btrfs_extent_inline_ref *)ptr;
1401 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1402 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1403 struct btrfs_extent_data_ref *dref;
1404 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1405 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1406 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1407 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1408 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1409 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1410 struct btrfs_shared_data_ref *sref;
1411 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1412 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1413 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1414 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1415 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1416 } else {
1417 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1418 }
1419 btrfs_mark_buffer_dirty(leaf);
1420 return 0;
1421}
1422
1423static int lookup_extent_backref(struct btrfs_trans_handle *trans,
1424 struct btrfs_root *root,
1425 struct btrfs_path *path,
1426 struct btrfs_extent_inline_ref **ref_ret,
1427 u64 bytenr, u64 num_bytes, u64 parent,
1428 u64 root_objectid, u64 owner, u64 offset)
1429{
1430 int ret;
1431
1432 ret = lookup_inline_extent_backref(trans, root, path, ref_ret,
1433 bytenr, num_bytes, parent,
1434 root_objectid, owner, offset, 0);
1435 if (ret != -ENOENT)
1436 return ret;
1437
1438 btrfs_release_path(root, path);
1439 *ref_ret = NULL;
1440
1441 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1442 ret = lookup_tree_block_ref(trans, root, path, bytenr, parent,
1443 root_objectid);
1444 } else {
1445 ret = lookup_extent_data_ref(trans, root, path, bytenr, parent,
1446 root_objectid, owner, offset);
1447 }
1448 return ret;
1449}
1450
1451/*
1452 * helper to update/remove inline back ref
1453 */
1454static noinline_for_stack
1455int update_inline_extent_backref(struct btrfs_trans_handle *trans,
1456 struct btrfs_root *root,
1457 struct btrfs_path *path,
1458 struct btrfs_extent_inline_ref *iref,
1459 int refs_to_mod,
1460 struct btrfs_delayed_extent_op *extent_op)
1461{
1462 struct extent_buffer *leaf;
1463 struct btrfs_extent_item *ei;
1464 struct btrfs_extent_data_ref *dref = NULL;
1465 struct btrfs_shared_data_ref *sref = NULL;
1466 unsigned long ptr;
1467 unsigned long end;
1468 u32 item_size;
1469 int size;
1470 int type;
1471 int ret;
1472 u64 refs;
1473
1474 leaf = path->nodes[0];
1475 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1476 refs = btrfs_extent_refs(leaf, ei);
1477 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1478 refs += refs_to_mod;
1479 btrfs_set_extent_refs(leaf, ei, refs);
1480 if (extent_op)
1481 __run_delayed_extent_op(extent_op, leaf, ei);
1482
1483 type = btrfs_extent_inline_ref_type(leaf, iref);
1484
1485 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1486 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1487 refs = btrfs_extent_data_ref_count(leaf, dref);
1488 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1489 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1490 refs = btrfs_shared_data_ref_count(leaf, sref);
1491 } else {
1492 refs = 1;
1493 BUG_ON(refs_to_mod != -1);
1494 }
1495
1496 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1497 refs += refs_to_mod;
1498
1499 if (refs > 0) {
1500 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1501 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1502 else
1503 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1504 } else {
1505 size = btrfs_extent_inline_ref_size(type);
1506 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1507 ptr = (unsigned long)iref;
1508 end = (unsigned long)ei + item_size;
1509 if (ptr + size < end)
1510 memmove_extent_buffer(leaf, ptr, ptr + size,
1511 end - ptr - size);
1512 item_size -= size;
1513 ret = btrfs_truncate_item(trans, root, path, item_size, 1);
1514 BUG_ON(ret);
1515 }
1516 btrfs_mark_buffer_dirty(leaf);
1517 return 0;
1518}
1519
1520static noinline_for_stack
1521int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
1522 struct btrfs_root *root,
1523 struct btrfs_path *path,
1524 u64 bytenr, u64 num_bytes, u64 parent,
1525 u64 root_objectid, u64 owner,
1526 u64 offset, int refs_to_add,
1527 struct btrfs_delayed_extent_op *extent_op)
1528{
1529 struct btrfs_extent_inline_ref *iref;
1530 int ret;
1531
1532 ret = lookup_inline_extent_backref(trans, root, path, &iref,
1533 bytenr, num_bytes, parent,
1534 root_objectid, owner, offset, 1);
1535 if (ret == 0) {
1536 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
1537 ret = update_inline_extent_backref(trans, root, path, iref,
1538 refs_to_add, extent_op);
1539 } else if (ret == -ENOENT) {
1540 ret = setup_inline_extent_backref(trans, root, path, iref,
1541 parent, root_objectid,
1542 owner, offset, refs_to_add,
1543 extent_op);
1544 }
1545 return ret;
1546}
1547
1548static int insert_extent_backref(struct btrfs_trans_handle *trans,
1549 struct btrfs_root *root,
1550 struct btrfs_path *path,
1551 u64 bytenr, u64 parent, u64 root_objectid,
1552 u64 owner, u64 offset, int refs_to_add)
1553{
1554 int ret;
1555 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1556 BUG_ON(refs_to_add != 1);
1557 ret = insert_tree_block_ref(trans, root, path, bytenr,
1558 parent, root_objectid);
1559 } else {
1560 ret = insert_extent_data_ref(trans, root, path, bytenr,
1561 parent, root_objectid,
1562 owner, offset, refs_to_add);
1563 }
1564 return ret;
1565}
1566
1567static int remove_extent_backref(struct btrfs_trans_handle *trans,
1568 struct btrfs_root *root,
1569 struct btrfs_path *path,
1570 struct btrfs_extent_inline_ref *iref,
1571 int refs_to_drop, int is_data)
1572{
1573 int ret;
1574
1575 BUG_ON(!is_data && refs_to_drop != 1);
1576 if (iref) {
1577 ret = update_inline_extent_backref(trans, root, path, iref,
1578 -refs_to_drop, NULL);
1579 } else if (is_data) {
1580 ret = remove_extent_data_ref(trans, root, path, refs_to_drop);
1581 } else {
1582 ret = btrfs_del_item(trans, root, path);
1583 }
1584 return ret;
1585}
1586
Chris Mason15916de2008-11-19 21:17:22 -05001587static void btrfs_issue_discard(struct block_device *bdev,
1588 u64 start, u64 len)
1589{
Christoph Hellwig746cd1e2009-09-12 07:35:43 +02001590 blkdev_issue_discard(bdev, start >> 9, len >> 9, GFP_KERNEL,
1591 DISCARD_FL_BARRIER);
Chris Mason15916de2008-11-19 21:17:22 -05001592}
Chris Mason15916de2008-11-19 21:17:22 -05001593
Liu Hui1f3c79a2009-01-05 15:57:51 -05001594static int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr,
1595 u64 num_bytes)
1596{
Liu Hui1f3c79a2009-01-05 15:57:51 -05001597 int ret;
1598 u64 map_length = num_bytes;
1599 struct btrfs_multi_bio *multi = NULL;
1600
Christoph Hellwige244a0a2009-10-14 09:24:59 -04001601 if (!btrfs_test_opt(root, DISCARD))
1602 return 0;
1603
Liu Hui1f3c79a2009-01-05 15:57:51 -05001604 /* Tell the block device(s) that the sectors can be discarded */
1605 ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
1606 bytenr, &map_length, &multi, 0);
1607 if (!ret) {
1608 struct btrfs_bio_stripe *stripe = multi->stripes;
1609 int i;
1610
1611 if (map_length > num_bytes)
1612 map_length = num_bytes;
1613
1614 for (i = 0; i < multi->num_stripes; i++, stripe++) {
1615 btrfs_issue_discard(stripe->dev->bdev,
1616 stripe->physical,
1617 map_length);
1618 }
1619 kfree(multi);
1620 }
1621
1622 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001623}
1624
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001625int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1626 struct btrfs_root *root,
1627 u64 bytenr, u64 num_bytes, u64 parent,
1628 u64 root_objectid, u64 owner, u64 offset)
Zheng Yan31840ae2008-09-23 13:14:14 -04001629{
1630 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001631 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
1632 root_objectid == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04001633
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001634 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1635 ret = btrfs_add_delayed_tree_ref(trans, bytenr, num_bytes,
1636 parent, root_objectid, (int)owner,
1637 BTRFS_ADD_DELAYED_REF, NULL);
1638 } else {
1639 ret = btrfs_add_delayed_data_ref(trans, bytenr, num_bytes,
1640 parent, root_objectid, owner, offset,
1641 BTRFS_ADD_DELAYED_REF, NULL);
1642 }
Zheng Yan31840ae2008-09-23 13:14:14 -04001643 return ret;
1644}
1645
Chris Mason925baed2008-06-25 16:01:30 -04001646static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001647 struct btrfs_root *root,
1648 u64 bytenr, u64 num_bytes,
1649 u64 parent, u64 root_objectid,
1650 u64 owner, u64 offset, int refs_to_add,
1651 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04001652{
Chris Mason5caf2a02007-04-02 11:20:42 -04001653 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001654 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04001655 struct btrfs_extent_item *item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001656 u64 refs;
1657 int ret;
1658 int err = 0;
Chris Mason037e6392007-03-07 11:50:24 -05001659
Chris Mason5caf2a02007-04-02 11:20:42 -04001660 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001661 if (!path)
1662 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04001663
Chris Mason3c12ac72008-04-21 12:01:38 -04001664 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04001665 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001666 /* this will setup the path even if it fails to insert the back ref */
1667 ret = insert_inline_extent_backref(trans, root->fs_info->extent_root,
1668 path, bytenr, num_bytes, parent,
1669 root_objectid, owner, offset,
1670 refs_to_add, extent_op);
1671 if (ret == 0)
1672 goto out;
Zheng Yan31840ae2008-09-23 13:14:14 -04001673
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001674 if (ret != -EAGAIN) {
1675 err = ret;
1676 goto out;
Chris Masonb9473432009-03-13 11:00:37 -04001677 }
Zheng Yan31840ae2008-09-23 13:14:14 -04001678
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001679 leaf = path->nodes[0];
1680 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1681 refs = btrfs_extent_refs(leaf, item);
1682 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
1683 if (extent_op)
1684 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04001685
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001686 btrfs_mark_buffer_dirty(leaf);
Chris Mason5caf2a02007-04-02 11:20:42 -04001687 btrfs_release_path(root->fs_info->extent_root, path);
Chris Mason7bb86312007-12-11 09:25:06 -05001688
Chris Mason3c12ac72008-04-21 12:01:38 -04001689 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04001690 path->leave_spinning = 1;
1691
Chris Mason56bec292009-03-13 10:10:06 -04001692 /* now insert the actual backref */
Zheng Yan31840ae2008-09-23 13:14:14 -04001693 ret = insert_extent_backref(trans, root->fs_info->extent_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001694 path, bytenr, parent, root_objectid,
1695 owner, offset, refs_to_add);
Chris Mason7bb86312007-12-11 09:25:06 -05001696 BUG_ON(ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001697out:
Chris Mason74493f72007-12-11 09:25:06 -05001698 btrfs_free_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001699 return err;
Chris Mason02217ed2007-03-02 16:08:05 -05001700}
1701
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001702static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
1703 struct btrfs_root *root,
1704 struct btrfs_delayed_ref_node *node,
1705 struct btrfs_delayed_extent_op *extent_op,
1706 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04001707{
Chris Mason56bec292009-03-13 10:10:06 -04001708 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001709 struct btrfs_delayed_data_ref *ref;
1710 struct btrfs_key ins;
1711 u64 parent = 0;
1712 u64 ref_root = 0;
1713 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04001714
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001715 ins.objectid = node->bytenr;
1716 ins.offset = node->num_bytes;
1717 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04001718
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001719 ref = btrfs_delayed_node_to_data_ref(node);
1720 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
1721 parent = ref->parent;
1722 else
1723 ref_root = ref->root;
1724
1725 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
1726 if (extent_op) {
1727 BUG_ON(extent_op->update_key);
1728 flags |= extent_op->flags_to_set;
1729 }
1730 ret = alloc_reserved_file_extent(trans, root,
1731 parent, ref_root, flags,
1732 ref->objectid, ref->offset,
1733 &ins, node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001734 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
1735 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
1736 node->num_bytes, parent,
1737 ref_root, ref->objectid,
1738 ref->offset, node->ref_mod,
1739 extent_op);
1740 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
1741 ret = __btrfs_free_extent(trans, root, node->bytenr,
1742 node->num_bytes, parent,
1743 ref_root, ref->objectid,
1744 ref->offset, node->ref_mod,
1745 extent_op);
1746 } else {
1747 BUG();
1748 }
Chris Mason56bec292009-03-13 10:10:06 -04001749 return ret;
1750}
1751
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001752static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
1753 struct extent_buffer *leaf,
1754 struct btrfs_extent_item *ei)
1755{
1756 u64 flags = btrfs_extent_flags(leaf, ei);
1757 if (extent_op->update_flags) {
1758 flags |= extent_op->flags_to_set;
1759 btrfs_set_extent_flags(leaf, ei, flags);
1760 }
1761
1762 if (extent_op->update_key) {
1763 struct btrfs_tree_block_info *bi;
1764 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
1765 bi = (struct btrfs_tree_block_info *)(ei + 1);
1766 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
1767 }
1768}
1769
1770static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
1771 struct btrfs_root *root,
1772 struct btrfs_delayed_ref_node *node,
1773 struct btrfs_delayed_extent_op *extent_op)
1774{
1775 struct btrfs_key key;
1776 struct btrfs_path *path;
1777 struct btrfs_extent_item *ei;
1778 struct extent_buffer *leaf;
1779 u32 item_size;
1780 int ret;
1781 int err = 0;
1782
1783 path = btrfs_alloc_path();
1784 if (!path)
1785 return -ENOMEM;
1786
1787 key.objectid = node->bytenr;
1788 key.type = BTRFS_EXTENT_ITEM_KEY;
1789 key.offset = node->num_bytes;
1790
1791 path->reada = 1;
1792 path->leave_spinning = 1;
1793 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key,
1794 path, 0, 1);
1795 if (ret < 0) {
1796 err = ret;
1797 goto out;
1798 }
1799 if (ret > 0) {
1800 err = -EIO;
1801 goto out;
1802 }
1803
1804 leaf = path->nodes[0];
1805 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1806#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1807 if (item_size < sizeof(*ei)) {
1808 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
1809 path, (u64)-1, 0);
1810 if (ret < 0) {
1811 err = ret;
1812 goto out;
1813 }
1814 leaf = path->nodes[0];
1815 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1816 }
1817#endif
1818 BUG_ON(item_size < sizeof(*ei));
1819 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1820 __run_delayed_extent_op(extent_op, leaf, ei);
1821
1822 btrfs_mark_buffer_dirty(leaf);
1823out:
1824 btrfs_free_path(path);
1825 return err;
1826}
1827
1828static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
1829 struct btrfs_root *root,
1830 struct btrfs_delayed_ref_node *node,
1831 struct btrfs_delayed_extent_op *extent_op,
1832 int insert_reserved)
1833{
1834 int ret = 0;
1835 struct btrfs_delayed_tree_ref *ref;
1836 struct btrfs_key ins;
1837 u64 parent = 0;
1838 u64 ref_root = 0;
1839
1840 ins.objectid = node->bytenr;
1841 ins.offset = node->num_bytes;
1842 ins.type = BTRFS_EXTENT_ITEM_KEY;
1843
1844 ref = btrfs_delayed_node_to_tree_ref(node);
1845 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
1846 parent = ref->parent;
1847 else
1848 ref_root = ref->root;
1849
1850 BUG_ON(node->ref_mod != 1);
1851 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
1852 BUG_ON(!extent_op || !extent_op->update_flags ||
1853 !extent_op->update_key);
1854 ret = alloc_reserved_tree_block(trans, root,
1855 parent, ref_root,
1856 extent_op->flags_to_set,
1857 &extent_op->key,
1858 ref->level, &ins);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001859 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
1860 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
1861 node->num_bytes, parent, ref_root,
1862 ref->level, 0, 1, extent_op);
1863 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
1864 ret = __btrfs_free_extent(trans, root, node->bytenr,
1865 node->num_bytes, parent, ref_root,
1866 ref->level, 0, 1, extent_op);
1867 } else {
1868 BUG();
1869 }
1870 return ret;
1871}
1872
1873
Chris Mason56bec292009-03-13 10:10:06 -04001874/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001875static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
1876 struct btrfs_root *root,
1877 struct btrfs_delayed_ref_node *node,
1878 struct btrfs_delayed_extent_op *extent_op,
1879 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04001880{
Josef Bacikeb099672009-02-12 09:27:38 -05001881 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001882 if (btrfs_delayed_ref_is_head(node)) {
Chris Mason56bec292009-03-13 10:10:06 -04001883 struct btrfs_delayed_ref_head *head;
1884 /*
1885 * we've hit the end of the chain and we were supposed
1886 * to insert this extent into the tree. But, it got
1887 * deleted before we ever needed to insert it, so all
1888 * we have to do is clean up the accounting
1889 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001890 BUG_ON(extent_op);
1891 head = btrfs_delayed_node_to_head(node);
Chris Mason56bec292009-03-13 10:10:06 -04001892 if (insert_reserved) {
Yan Zheng11833d62009-09-11 16:11:19 -04001893 int mark_free = 0;
1894 struct extent_buffer *must_clean = NULL;
1895
1896 ret = pin_down_bytes(trans, root, NULL,
1897 node->bytenr, node->num_bytes,
1898 head->is_data, 1, &must_clean);
1899 if (ret > 0)
1900 mark_free = 1;
1901
1902 if (must_clean) {
1903 clean_tree_block(NULL, root, must_clean);
1904 btrfs_tree_unlock(must_clean);
1905 free_extent_buffer(must_clean);
1906 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001907 if (head->is_data) {
1908 ret = btrfs_del_csums(trans, root,
1909 node->bytenr,
1910 node->num_bytes);
1911 BUG_ON(ret);
1912 }
Yan Zheng11833d62009-09-11 16:11:19 -04001913 if (mark_free) {
1914 ret = btrfs_free_reserved_extent(root,
1915 node->bytenr,
1916 node->num_bytes);
1917 BUG_ON(ret);
1918 }
Chris Mason56bec292009-03-13 10:10:06 -04001919 }
Chris Mason56bec292009-03-13 10:10:06 -04001920 mutex_unlock(&head->mutex);
1921 return 0;
1922 }
Josef Bacikeb099672009-02-12 09:27:38 -05001923
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001924 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
1925 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
1926 ret = run_delayed_tree_ref(trans, root, node, extent_op,
1927 insert_reserved);
1928 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
1929 node->type == BTRFS_SHARED_DATA_REF_KEY)
1930 ret = run_delayed_data_ref(trans, root, node, extent_op,
1931 insert_reserved);
1932 else
1933 BUG();
1934 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04001935}
1936
Chris Mason56bec292009-03-13 10:10:06 -04001937static noinline struct btrfs_delayed_ref_node *
1938select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05001939{
Chris Mason56bec292009-03-13 10:10:06 -04001940 struct rb_node *node;
1941 struct btrfs_delayed_ref_node *ref;
1942 int action = BTRFS_ADD_DELAYED_REF;
1943again:
1944 /*
1945 * select delayed ref of type BTRFS_ADD_DELAYED_REF first.
1946 * this prevents ref count from going down to zero when
1947 * there still are pending delayed ref.
1948 */
1949 node = rb_prev(&head->node.rb_node);
1950 while (1) {
1951 if (!node)
1952 break;
1953 ref = rb_entry(node, struct btrfs_delayed_ref_node,
1954 rb_node);
1955 if (ref->bytenr != head->node.bytenr)
1956 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001957 if (ref->action == action)
Chris Mason56bec292009-03-13 10:10:06 -04001958 return ref;
1959 node = rb_prev(node);
Chris Mason5f39d392007-10-15 16:14:19 -04001960 }
Chris Mason56bec292009-03-13 10:10:06 -04001961 if (action == BTRFS_ADD_DELAYED_REF) {
1962 action = BTRFS_DROP_DELAYED_REF;
1963 goto again;
1964 }
1965 return NULL;
1966}
1967
Chris Masonc3e69d52009-03-13 10:17:05 -04001968static noinline int run_clustered_refs(struct btrfs_trans_handle *trans,
1969 struct btrfs_root *root,
1970 struct list_head *cluster)
Chris Mason56bec292009-03-13 10:10:06 -04001971{
Chris Mason56bec292009-03-13 10:10:06 -04001972 struct btrfs_delayed_ref_root *delayed_refs;
1973 struct btrfs_delayed_ref_node *ref;
1974 struct btrfs_delayed_ref_head *locked_ref = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001975 struct btrfs_delayed_extent_op *extent_op;
Chris Mason56bec292009-03-13 10:10:06 -04001976 int ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04001977 int count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04001978 int must_insert_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -04001979
1980 delayed_refs = &trans->transaction->delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04001981 while (1) {
1982 if (!locked_ref) {
Chris Masonc3e69d52009-03-13 10:17:05 -04001983 /* pick a new head ref from the cluster list */
1984 if (list_empty(cluster))
Chris Mason56bec292009-03-13 10:10:06 -04001985 break;
Chris Mason56bec292009-03-13 10:10:06 -04001986
Chris Masonc3e69d52009-03-13 10:17:05 -04001987 locked_ref = list_entry(cluster->next,
1988 struct btrfs_delayed_ref_head, cluster);
1989
1990 /* grab the lock that says we are going to process
1991 * all the refs for this head */
1992 ret = btrfs_delayed_ref_lock(trans, locked_ref);
1993
1994 /*
1995 * we may have dropped the spin lock to get the head
1996 * mutex lock, and that might have given someone else
1997 * time to free the head. If that's true, it has been
1998 * removed from our list and we can move on.
1999 */
2000 if (ret == -EAGAIN) {
2001 locked_ref = NULL;
2002 count++;
2003 continue;
Chris Mason56bec292009-03-13 10:10:06 -04002004 }
2005 }
2006
2007 /*
2008 * record the must insert reserved flag before we
2009 * drop the spin lock.
2010 */
2011 must_insert_reserved = locked_ref->must_insert_reserved;
2012 locked_ref->must_insert_reserved = 0;
2013
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002014 extent_op = locked_ref->extent_op;
2015 locked_ref->extent_op = NULL;
2016
Chris Mason56bec292009-03-13 10:10:06 -04002017 /*
2018 * locked_ref is the head node, so we have to go one
2019 * node back for any delayed ref updates
2020 */
Chris Mason56bec292009-03-13 10:10:06 -04002021 ref = select_delayed_ref(locked_ref);
2022 if (!ref) {
2023 /* All delayed refs have been processed, Go ahead
2024 * and send the head node to run_one_delayed_ref,
2025 * so that any accounting fixes can happen
2026 */
2027 ref = &locked_ref->node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002028
2029 if (extent_op && must_insert_reserved) {
2030 kfree(extent_op);
2031 extent_op = NULL;
2032 }
2033
2034 if (extent_op) {
2035 spin_unlock(&delayed_refs->lock);
2036
2037 ret = run_delayed_extent_op(trans, root,
2038 ref, extent_op);
2039 BUG_ON(ret);
2040 kfree(extent_op);
2041
2042 cond_resched();
2043 spin_lock(&delayed_refs->lock);
2044 continue;
2045 }
2046
Chris Masonc3e69d52009-03-13 10:17:05 -04002047 list_del_init(&locked_ref->cluster);
Chris Mason56bec292009-03-13 10:10:06 -04002048 locked_ref = NULL;
2049 }
2050
2051 ref->in_tree = 0;
2052 rb_erase(&ref->rb_node, &delayed_refs->root);
2053 delayed_refs->num_entries--;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002054
Chris Mason56bec292009-03-13 10:10:06 -04002055 spin_unlock(&delayed_refs->lock);
2056
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002057 ret = run_one_delayed_ref(trans, root, ref, extent_op,
Chris Mason56bec292009-03-13 10:10:06 -04002058 must_insert_reserved);
2059 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -04002060
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002061 btrfs_put_delayed_ref(ref);
2062 kfree(extent_op);
Chris Masonc3e69d52009-03-13 10:17:05 -04002063 count++;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002064
Chris Mason1887be62009-03-13 10:11:24 -04002065 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002066 spin_lock(&delayed_refs->lock);
2067 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002068 return count;
2069}
2070
2071/*
2072 * this starts processing the delayed reference count updates and
2073 * extent insertions we have queued up so far. count can be
2074 * 0, which means to process everything in the tree at the start
2075 * of the run (but not newly added entries), or it can be some target
2076 * number you'd like to process.
2077 */
2078int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2079 struct btrfs_root *root, unsigned long count)
2080{
2081 struct rb_node *node;
2082 struct btrfs_delayed_ref_root *delayed_refs;
2083 struct btrfs_delayed_ref_node *ref;
2084 struct list_head cluster;
2085 int ret;
2086 int run_all = count == (unsigned long)-1;
2087 int run_most = 0;
2088
2089 if (root == root->fs_info->extent_root)
2090 root = root->fs_info->tree_root;
2091
2092 delayed_refs = &trans->transaction->delayed_refs;
2093 INIT_LIST_HEAD(&cluster);
2094again:
2095 spin_lock(&delayed_refs->lock);
2096 if (count == 0) {
2097 count = delayed_refs->num_entries * 2;
2098 run_most = 1;
2099 }
2100 while (1) {
2101 if (!(run_all || run_most) &&
2102 delayed_refs->num_heads_ready < 64)
2103 break;
2104
2105 /*
2106 * go find something we can process in the rbtree. We start at
2107 * the beginning of the tree, and then build a cluster
2108 * of refs to process starting at the first one we are able to
2109 * lock
2110 */
2111 ret = btrfs_find_ref_cluster(trans, &cluster,
2112 delayed_refs->run_delayed_start);
2113 if (ret)
2114 break;
2115
2116 ret = run_clustered_refs(trans, root, &cluster);
2117 BUG_ON(ret < 0);
2118
2119 count -= min_t(unsigned long, ret, count);
2120
2121 if (count == 0)
2122 break;
2123 }
2124
Chris Mason56bec292009-03-13 10:10:06 -04002125 if (run_all) {
Chris Mason56bec292009-03-13 10:10:06 -04002126 node = rb_first(&delayed_refs->root);
Chris Masonc3e69d52009-03-13 10:17:05 -04002127 if (!node)
Chris Mason56bec292009-03-13 10:10:06 -04002128 goto out;
Chris Masonc3e69d52009-03-13 10:17:05 -04002129 count = (unsigned long)-1;
Chris Mason56bec292009-03-13 10:10:06 -04002130
2131 while (node) {
2132 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2133 rb_node);
2134 if (btrfs_delayed_ref_is_head(ref)) {
2135 struct btrfs_delayed_ref_head *head;
2136
2137 head = btrfs_delayed_node_to_head(ref);
2138 atomic_inc(&ref->refs);
2139
2140 spin_unlock(&delayed_refs->lock);
2141 mutex_lock(&head->mutex);
2142 mutex_unlock(&head->mutex);
2143
2144 btrfs_put_delayed_ref(ref);
Chris Mason1887be62009-03-13 10:11:24 -04002145 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002146 goto again;
2147 }
2148 node = rb_next(node);
2149 }
2150 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002151 schedule_timeout(1);
2152 goto again;
2153 }
Chris Mason54aa1f42007-06-22 14:16:25 -04002154out:
Chris Masonc3e69d52009-03-13 10:17:05 -04002155 spin_unlock(&delayed_refs->lock);
Chris Masona28ec192007-03-06 20:08:01 -05002156 return 0;
2157}
2158
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002159int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
2160 struct btrfs_root *root,
2161 u64 bytenr, u64 num_bytes, u64 flags,
2162 int is_data)
2163{
2164 struct btrfs_delayed_extent_op *extent_op;
2165 int ret;
2166
2167 extent_op = kmalloc(sizeof(*extent_op), GFP_NOFS);
2168 if (!extent_op)
2169 return -ENOMEM;
2170
2171 extent_op->flags_to_set = flags;
2172 extent_op->update_flags = 1;
2173 extent_op->update_key = 0;
2174 extent_op->is_data = is_data ? 1 : 0;
2175
2176 ret = btrfs_add_delayed_extent_op(trans, bytenr, num_bytes, extent_op);
2177 if (ret)
2178 kfree(extent_op);
2179 return ret;
2180}
2181
2182static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
2183 struct btrfs_root *root,
2184 struct btrfs_path *path,
2185 u64 objectid, u64 offset, u64 bytenr)
2186{
2187 struct btrfs_delayed_ref_head *head;
2188 struct btrfs_delayed_ref_node *ref;
2189 struct btrfs_delayed_data_ref *data_ref;
2190 struct btrfs_delayed_ref_root *delayed_refs;
2191 struct rb_node *node;
2192 int ret = 0;
2193
2194 ret = -ENOENT;
2195 delayed_refs = &trans->transaction->delayed_refs;
2196 spin_lock(&delayed_refs->lock);
2197 head = btrfs_find_delayed_ref_head(trans, bytenr);
2198 if (!head)
2199 goto out;
2200
2201 if (!mutex_trylock(&head->mutex)) {
2202 atomic_inc(&head->node.refs);
2203 spin_unlock(&delayed_refs->lock);
2204
2205 btrfs_release_path(root->fs_info->extent_root, path);
2206
2207 mutex_lock(&head->mutex);
2208 mutex_unlock(&head->mutex);
2209 btrfs_put_delayed_ref(&head->node);
2210 return -EAGAIN;
2211 }
2212
2213 node = rb_prev(&head->node.rb_node);
2214 if (!node)
2215 goto out_unlock;
2216
2217 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
2218
2219 if (ref->bytenr != bytenr)
2220 goto out_unlock;
2221
2222 ret = 1;
2223 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY)
2224 goto out_unlock;
2225
2226 data_ref = btrfs_delayed_node_to_data_ref(ref);
2227
2228 node = rb_prev(node);
2229 if (node) {
2230 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
2231 if (ref->bytenr == bytenr)
2232 goto out_unlock;
2233 }
2234
2235 if (data_ref->root != root->root_key.objectid ||
2236 data_ref->objectid != objectid || data_ref->offset != offset)
2237 goto out_unlock;
2238
2239 ret = 0;
2240out_unlock:
2241 mutex_unlock(&head->mutex);
2242out:
2243 spin_unlock(&delayed_refs->lock);
2244 return ret;
2245}
2246
2247static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
2248 struct btrfs_root *root,
2249 struct btrfs_path *path,
2250 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05002251{
2252 struct btrfs_root *extent_root = root->fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04002253 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002254 struct btrfs_extent_data_ref *ref;
2255 struct btrfs_extent_inline_ref *iref;
2256 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05002257 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002258 u32 item_size;
Yan Zhengf321e492008-07-30 09:26:11 -04002259 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05002260
Chris Masonbe20aa92007-12-17 20:14:01 -05002261 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04002262 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04002263 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05002264
Chris Masonbe20aa92007-12-17 20:14:01 -05002265 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2266 if (ret < 0)
2267 goto out;
2268 BUG_ON(ret == 0);
Yan Zheng80ff3852008-10-30 14:20:02 -04002269
2270 ret = -ENOENT;
2271 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04002272 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002273
Zheng Yan31840ae2008-09-23 13:14:14 -04002274 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04002275 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002276 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05002277
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002278 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05002279 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002280
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002281 ret = 1;
2282 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2283#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2284 if (item_size < sizeof(*ei)) {
2285 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
2286 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002287 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002288#endif
2289 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2290
2291 if (item_size != sizeof(*ei) +
2292 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
2293 goto out;
2294
2295 if (btrfs_extent_generation(leaf, ei) <=
2296 btrfs_root_last_snapshot(&root->root_item))
2297 goto out;
2298
2299 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
2300 if (btrfs_extent_inline_ref_type(leaf, iref) !=
2301 BTRFS_EXTENT_DATA_REF_KEY)
2302 goto out;
2303
2304 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
2305 if (btrfs_extent_refs(leaf, ei) !=
2306 btrfs_extent_data_ref_count(leaf, ref) ||
2307 btrfs_extent_data_ref_root(leaf, ref) !=
2308 root->root_key.objectid ||
2309 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
2310 btrfs_extent_data_ref_offset(leaf, ref) != offset)
2311 goto out;
2312
Yan Zhengf321e492008-07-30 09:26:11 -04002313 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05002314out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002315 return ret;
2316}
2317
2318int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
2319 struct btrfs_root *root,
2320 u64 objectid, u64 offset, u64 bytenr)
2321{
2322 struct btrfs_path *path;
2323 int ret;
2324 int ret2;
2325
2326 path = btrfs_alloc_path();
2327 if (!path)
2328 return -ENOENT;
2329
2330 do {
2331 ret = check_committed_ref(trans, root, path, objectid,
2332 offset, bytenr);
2333 if (ret && ret != -ENOENT)
2334 goto out;
2335
2336 ret2 = check_delayed_ref(trans, root, path, objectid,
2337 offset, bytenr);
2338 } while (ret2 == -EAGAIN);
2339
2340 if (ret2 && ret2 != -ENOENT) {
2341 ret = ret2;
2342 goto out;
2343 }
2344
2345 if (ret != -ENOENT || ret2 != -ENOENT)
2346 ret = 0;
2347out:
Yan Zhengf321e492008-07-30 09:26:11 -04002348 btrfs_free_path(path);
2349 return ret;
2350}
2351
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002352#if 0
Zheng Yan31840ae2008-09-23 13:14:14 -04002353int btrfs_cache_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2354 struct extent_buffer *buf, u32 nr_extents)
Chris Mason02217ed2007-03-02 16:08:05 -05002355{
Chris Mason5f39d392007-10-15 16:14:19 -04002356 struct btrfs_key key;
Chris Mason6407bf62007-03-27 06:33:00 -04002357 struct btrfs_file_extent_item *fi;
Zheng Yane4657682008-09-26 10:04:53 -04002358 u64 root_gen;
2359 u32 nritems;
Chris Mason02217ed2007-03-02 16:08:05 -05002360 int i;
Chris Masondb945352007-10-15 16:15:53 -04002361 int level;
Zheng Yan31840ae2008-09-23 13:14:14 -04002362 int ret = 0;
Zheng Yane4657682008-09-26 10:04:53 -04002363 int shared = 0;
Chris Masona28ec192007-03-06 20:08:01 -05002364
Chris Mason3768f362007-03-13 16:47:54 -04002365 if (!root->ref_cows)
Chris Masona28ec192007-03-06 20:08:01 -05002366 return 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002367
Zheng Yane4657682008-09-26 10:04:53 -04002368 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
2369 shared = 0;
2370 root_gen = root->root_key.offset;
2371 } else {
2372 shared = 1;
2373 root_gen = trans->transid - 1;
2374 }
2375
Chris Masondb945352007-10-15 16:15:53 -04002376 level = btrfs_header_level(buf);
Chris Mason5f39d392007-10-15 16:14:19 -04002377 nritems = btrfs_header_nritems(buf);
Chris Mason4a096752008-07-21 10:29:44 -04002378
Zheng Yan31840ae2008-09-23 13:14:14 -04002379 if (level == 0) {
Yan Zheng31153d82008-07-28 15:32:19 -04002380 struct btrfs_leaf_ref *ref;
2381 struct btrfs_extent_info *info;
2382
Zheng Yan31840ae2008-09-23 13:14:14 -04002383 ref = btrfs_alloc_leaf_ref(root, nr_extents);
Yan Zheng31153d82008-07-28 15:32:19 -04002384 if (!ref) {
Zheng Yan31840ae2008-09-23 13:14:14 -04002385 ret = -ENOMEM;
Yan Zheng31153d82008-07-28 15:32:19 -04002386 goto out;
2387 }
2388
Zheng Yane4657682008-09-26 10:04:53 -04002389 ref->root_gen = root_gen;
Yan Zheng31153d82008-07-28 15:32:19 -04002390 ref->bytenr = buf->start;
2391 ref->owner = btrfs_header_owner(buf);
2392 ref->generation = btrfs_header_generation(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04002393 ref->nritems = nr_extents;
Yan Zheng31153d82008-07-28 15:32:19 -04002394 info = ref->extents;
Yanbcc63ab2008-07-30 16:29:20 -04002395
Zheng Yan31840ae2008-09-23 13:14:14 -04002396 for (i = 0; nr_extents > 0 && i < nritems; i++) {
Yan Zheng31153d82008-07-28 15:32:19 -04002397 u64 disk_bytenr;
2398 btrfs_item_key_to_cpu(buf, &key, i);
2399 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
2400 continue;
2401 fi = btrfs_item_ptr(buf, i,
2402 struct btrfs_file_extent_item);
2403 if (btrfs_file_extent_type(buf, fi) ==
2404 BTRFS_FILE_EXTENT_INLINE)
2405 continue;
2406 disk_bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
2407 if (disk_bytenr == 0)
2408 continue;
2409
2410 info->bytenr = disk_bytenr;
2411 info->num_bytes =
2412 btrfs_file_extent_disk_num_bytes(buf, fi);
2413 info->objectid = key.objectid;
2414 info->offset = key.offset;
2415 info++;
2416 }
2417
Zheng Yane4657682008-09-26 10:04:53 -04002418 ret = btrfs_add_leaf_ref(root, ref, shared);
Yan Zheng5b84e8d2008-10-09 11:46:19 -04002419 if (ret == -EEXIST && shared) {
2420 struct btrfs_leaf_ref *old;
2421 old = btrfs_lookup_leaf_ref(root, ref->bytenr);
2422 BUG_ON(!old);
2423 btrfs_remove_leaf_ref(root, old);
2424 btrfs_free_leaf_ref(root, old);
2425 ret = btrfs_add_leaf_ref(root, ref, shared);
2426 }
Yan Zheng31153d82008-07-28 15:32:19 -04002427 WARN_ON(ret);
Yanbcc63ab2008-07-30 16:29:20 -04002428 btrfs_free_leaf_ref(root, ref);
Yan Zheng31153d82008-07-28 15:32:19 -04002429 }
2430out:
Zheng Yan31840ae2008-09-23 13:14:14 -04002431 return ret;
2432}
2433
Chris Masonb7a9f292009-02-04 09:23:45 -05002434/* when a block goes through cow, we update the reference counts of
2435 * everything that block points to. The internal pointers of the block
2436 * can be in just about any order, and it is likely to have clusters of
2437 * things that are close together and clusters of things that are not.
2438 *
2439 * To help reduce the seeks that come with updating all of these reference
2440 * counts, sort them by byte number before actual updates are done.
2441 *
2442 * struct refsort is used to match byte number to slot in the btree block.
2443 * we sort based on the byte number and then use the slot to actually
2444 * find the item.
Chris Masonbd56b302009-02-04 09:27:02 -05002445 *
2446 * struct refsort is smaller than strcut btrfs_item and smaller than
2447 * struct btrfs_key_ptr. Since we're currently limited to the page size
2448 * for a btree block, there's no way for a kmalloc of refsorts for a
2449 * single node to be bigger than a page.
Chris Masonb7a9f292009-02-04 09:23:45 -05002450 */
2451struct refsort {
2452 u64 bytenr;
2453 u32 slot;
2454};
2455
2456/*
2457 * for passing into sort()
2458 */
2459static int refsort_cmp(const void *a_void, const void *b_void)
2460{
2461 const struct refsort *a = a_void;
2462 const struct refsort *b = b_void;
2463
2464 if (a->bytenr < b->bytenr)
2465 return -1;
2466 if (a->bytenr > b->bytenr)
2467 return 1;
2468 return 0;
2469}
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002470#endif
Chris Masonb7a9f292009-02-04 09:23:45 -05002471
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002472static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05002473 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002474 struct extent_buffer *buf,
2475 int full_backref, int inc)
Zheng Yan31840ae2008-09-23 13:14:14 -04002476{
2477 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002478 u64 num_bytes;
2479 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04002480 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04002481 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04002482 struct btrfs_key key;
2483 struct btrfs_file_extent_item *fi;
2484 int i;
2485 int level;
2486 int ret = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04002487 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002488 u64, u64, u64, u64, u64, u64);
Zheng Yan31840ae2008-09-23 13:14:14 -04002489
2490 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04002491 nritems = btrfs_header_nritems(buf);
2492 level = btrfs_header_level(buf);
2493
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002494 if (!root->ref_cows && level == 0)
2495 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05002496
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002497 if (inc)
2498 process_func = btrfs_inc_extent_ref;
2499 else
2500 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04002501
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002502 if (full_backref)
2503 parent = buf->start;
2504 else
2505 parent = 0;
2506
Zheng Yan31840ae2008-09-23 13:14:14 -04002507 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04002508 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002509 btrfs_item_key_to_cpu(buf, &key, i);
2510 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04002511 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04002512 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04002513 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002514 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04002515 BTRFS_FILE_EXTENT_INLINE)
2516 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04002517 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
2518 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04002519 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04002520
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002521 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
2522 key.offset -= btrfs_file_extent_offset(buf, fi);
2523 ret = process_func(trans, root, bytenr, num_bytes,
2524 parent, ref_root, key.objectid,
2525 key.offset);
2526 if (ret)
2527 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05002528 } else {
2529 bytenr = btrfs_node_blockptr(buf, i);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002530 num_bytes = btrfs_level_size(root, level - 1);
2531 ret = process_func(trans, root, bytenr, num_bytes,
2532 parent, ref_root, level - 1, 0);
2533 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04002534 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04002535 }
2536 }
Zheng Yan31840ae2008-09-23 13:14:14 -04002537 return 0;
2538fail:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002539 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -04002540 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002541}
2542
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002543int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2544 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04002545{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002546 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
2547}
Zheng Yan31840ae2008-09-23 13:14:14 -04002548
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002549int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2550 struct extent_buffer *buf, int full_backref)
2551{
2552 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04002553}
2554
Chris Mason9078a3e2007-04-26 16:46:15 -04002555static int write_one_cache_group(struct btrfs_trans_handle *trans,
2556 struct btrfs_root *root,
2557 struct btrfs_path *path,
2558 struct btrfs_block_group_cache *cache)
2559{
2560 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04002561 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04002562 unsigned long bi;
2563 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04002564
Chris Mason9078a3e2007-04-26 16:46:15 -04002565 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04002566 if (ret < 0)
2567 goto fail;
Chris Mason9078a3e2007-04-26 16:46:15 -04002568 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04002569
2570 leaf = path->nodes[0];
2571 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
2572 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
2573 btrfs_mark_buffer_dirty(leaf);
Chris Mason9078a3e2007-04-26 16:46:15 -04002574 btrfs_release_path(extent_root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -04002575fail:
Chris Mason9078a3e2007-04-26 16:46:15 -04002576 if (ret)
2577 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04002578 return 0;
2579
2580}
2581
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002582static struct btrfs_block_group_cache *
2583next_block_group(struct btrfs_root *root,
2584 struct btrfs_block_group_cache *cache)
2585{
2586 struct rb_node *node;
2587 spin_lock(&root->fs_info->block_group_cache_lock);
2588 node = rb_next(&cache->cache_node);
2589 btrfs_put_block_group(cache);
2590 if (node) {
2591 cache = rb_entry(node, struct btrfs_block_group_cache,
2592 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00002593 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002594 } else
2595 cache = NULL;
2596 spin_unlock(&root->fs_info->block_group_cache_lock);
2597 return cache;
2598}
2599
Chris Mason96b51792007-10-15 16:15:19 -04002600int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
2601 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04002602{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002603 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04002604 int err = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002605 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -04002606 u64 last = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002607
2608 path = btrfs_alloc_path();
2609 if (!path)
2610 return -ENOMEM;
2611
Chris Masond3977122009-01-05 21:25:51 -05002612 while (1) {
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002613 if (last == 0) {
2614 err = btrfs_run_delayed_refs(trans, root,
2615 (unsigned long)-1);
2616 BUG_ON(err);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002617 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002618
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002619 cache = btrfs_lookup_first_block_group(root->fs_info, last);
2620 while (cache) {
2621 if (cache->dirty)
2622 break;
2623 cache = next_block_group(root, cache);
2624 }
2625 if (!cache) {
2626 if (last == 0)
2627 break;
2628 last = 0;
Chris Mason96b51792007-10-15 16:15:19 -04002629 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -04002630 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002631
2632 cache->dirty = 0;
2633 last = cache->key.objectid + cache->key.offset;
2634
2635 err = write_one_cache_group(trans, root, path, cache);
2636 BUG_ON(err);
2637 btrfs_put_block_group(cache);
Chris Mason9078a3e2007-04-26 16:46:15 -04002638 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002639
Chris Mason9078a3e2007-04-26 16:46:15 -04002640 btrfs_free_path(path);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002641 return 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002642}
2643
Yan Zhengd2fb3432008-12-11 16:30:39 -05002644int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
2645{
2646 struct btrfs_block_group_cache *block_group;
2647 int readonly = 0;
2648
2649 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
2650 if (!block_group || block_group->ro)
2651 readonly = 1;
2652 if (block_group)
Chris Masonfa9c0d72009-04-03 09:47:43 -04002653 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05002654 return readonly;
2655}
2656
Chris Mason593060d2008-03-25 16:50:33 -04002657static int update_space_info(struct btrfs_fs_info *info, u64 flags,
2658 u64 total_bytes, u64 bytes_used,
2659 struct btrfs_space_info **space_info)
2660{
2661 struct btrfs_space_info *found;
2662
2663 found = __find_space_info(info, flags);
2664 if (found) {
Josef Bacik25179202008-10-29 14:49:05 -04002665 spin_lock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04002666 found->total_bytes += total_bytes;
2667 found->bytes_used += bytes_used;
Chris Mason8f18cf12008-04-25 16:53:30 -04002668 found->full = 0;
Josef Bacik25179202008-10-29 14:49:05 -04002669 spin_unlock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04002670 *space_info = found;
2671 return 0;
2672 }
Yan Zhengc146afa2008-11-12 14:34:12 -05002673 found = kzalloc(sizeof(*found), GFP_NOFS);
Chris Mason593060d2008-03-25 16:50:33 -04002674 if (!found)
2675 return -ENOMEM;
2676
Josef Bacik0f9dd462008-09-23 13:14:11 -04002677 INIT_LIST_HEAD(&found->block_groups);
Josef Bacik80eb2342008-10-29 14:49:05 -04002678 init_rwsem(&found->groups_sem);
Josef Bacikb5cb1602010-03-12 19:28:18 +00002679 init_waitqueue_head(&found->flush_wait);
2680 init_waitqueue_head(&found->allocate_wait);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002681 spin_lock_init(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04002682 found->flags = flags;
2683 found->total_bytes = total_bytes;
2684 found->bytes_used = bytes_used;
2685 found->bytes_pinned = 0;
Zheng Yane8569812008-09-26 10:05:48 -04002686 found->bytes_reserved = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05002687 found->bytes_readonly = 0;
Josef Bacik6a632092009-02-20 11:00:09 -05002688 found->bytes_delalloc = 0;
Chris Mason593060d2008-03-25 16:50:33 -04002689 found->full = 0;
Chris Mason0ef3e662008-05-24 14:04:53 -04002690 found->force_alloc = 0;
Chris Mason593060d2008-03-25 16:50:33 -04002691 *space_info = found;
Chris Mason4184ea72009-03-10 12:39:20 -04002692 list_add_rcu(&found->list, &info->space_info);
Josef Bacik817d52f2009-07-13 21:29:25 -04002693 atomic_set(&found->caching_threads, 0);
Chris Mason593060d2008-03-25 16:50:33 -04002694 return 0;
2695}
2696
Chris Mason8790d502008-04-03 16:29:03 -04002697static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
2698{
2699 u64 extra_flags = flags & (BTRFS_BLOCK_GROUP_RAID0 |
Chris Mason611f0e02008-04-03 16:29:03 -04002700 BTRFS_BLOCK_GROUP_RAID1 |
Chris Mason321aecc2008-04-16 10:49:51 -04002701 BTRFS_BLOCK_GROUP_RAID10 |
Chris Mason611f0e02008-04-03 16:29:03 -04002702 BTRFS_BLOCK_GROUP_DUP);
Chris Mason8790d502008-04-03 16:29:03 -04002703 if (extra_flags) {
2704 if (flags & BTRFS_BLOCK_GROUP_DATA)
2705 fs_info->avail_data_alloc_bits |= extra_flags;
2706 if (flags & BTRFS_BLOCK_GROUP_METADATA)
2707 fs_info->avail_metadata_alloc_bits |= extra_flags;
2708 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
2709 fs_info->avail_system_alloc_bits |= extra_flags;
2710 }
2711}
Chris Mason593060d2008-03-25 16:50:33 -04002712
Yan Zhengc146afa2008-11-12 14:34:12 -05002713static void set_block_group_readonly(struct btrfs_block_group_cache *cache)
2714{
2715 spin_lock(&cache->space_info->lock);
2716 spin_lock(&cache->lock);
2717 if (!cache->ro) {
2718 cache->space_info->bytes_readonly += cache->key.offset -
2719 btrfs_block_group_used(&cache->item);
2720 cache->ro = 1;
2721 }
2722 spin_unlock(&cache->lock);
2723 spin_unlock(&cache->space_info->lock);
2724}
2725
Yan Zheng2b820322008-11-17 21:11:30 -05002726u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04002727{
Yan Zheng2b820322008-11-17 21:11:30 -05002728 u64 num_devices = root->fs_info->fs_devices->rw_devices;
Chris Masona061fc82008-05-07 11:43:44 -04002729
2730 if (num_devices == 1)
2731 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0);
2732 if (num_devices < 4)
2733 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
2734
Chris Masonec44a352008-04-28 15:29:52 -04002735 if ((flags & BTRFS_BLOCK_GROUP_DUP) &&
2736 (flags & (BTRFS_BLOCK_GROUP_RAID1 |
Chris Masona061fc82008-05-07 11:43:44 -04002737 BTRFS_BLOCK_GROUP_RAID10))) {
Chris Masonec44a352008-04-28 15:29:52 -04002738 flags &= ~BTRFS_BLOCK_GROUP_DUP;
Chris Masona061fc82008-05-07 11:43:44 -04002739 }
Chris Masonec44a352008-04-28 15:29:52 -04002740
2741 if ((flags & BTRFS_BLOCK_GROUP_RAID1) &&
Chris Masona061fc82008-05-07 11:43:44 -04002742 (flags & BTRFS_BLOCK_GROUP_RAID10)) {
Chris Masonec44a352008-04-28 15:29:52 -04002743 flags &= ~BTRFS_BLOCK_GROUP_RAID1;
Chris Masona061fc82008-05-07 11:43:44 -04002744 }
Chris Masonec44a352008-04-28 15:29:52 -04002745
2746 if ((flags & BTRFS_BLOCK_GROUP_RAID0) &&
2747 ((flags & BTRFS_BLOCK_GROUP_RAID1) |
2748 (flags & BTRFS_BLOCK_GROUP_RAID10) |
2749 (flags & BTRFS_BLOCK_GROUP_DUP)))
2750 flags &= ~BTRFS_BLOCK_GROUP_RAID0;
2751 return flags;
2752}
2753
Josef Bacik6a632092009-02-20 11:00:09 -05002754static u64 btrfs_get_alloc_profile(struct btrfs_root *root, u64 data)
2755{
2756 struct btrfs_fs_info *info = root->fs_info;
2757 u64 alloc_profile;
2758
2759 if (data) {
2760 alloc_profile = info->avail_data_alloc_bits &
2761 info->data_alloc_profile;
2762 data = BTRFS_BLOCK_GROUP_DATA | alloc_profile;
2763 } else if (root == root->fs_info->chunk_root) {
2764 alloc_profile = info->avail_system_alloc_bits &
2765 info->system_alloc_profile;
2766 data = BTRFS_BLOCK_GROUP_SYSTEM | alloc_profile;
2767 } else {
2768 alloc_profile = info->avail_metadata_alloc_bits &
2769 info->metadata_alloc_profile;
2770 data = BTRFS_BLOCK_GROUP_METADATA | alloc_profile;
2771 }
2772
2773 return btrfs_reduce_alloc_profile(root, data);
2774}
2775
2776void btrfs_set_inode_space_info(struct btrfs_root *root, struct inode *inode)
2777{
2778 u64 alloc_target;
2779
2780 alloc_target = btrfs_get_alloc_profile(root, 1);
2781 BTRFS_I(inode)->space_info = __find_space_info(root->fs_info,
2782 alloc_target);
2783}
2784
Josef Bacik9ed74f22009-09-11 16:12:44 -04002785static u64 calculate_bytes_needed(struct btrfs_root *root, int num_items)
2786{
2787 u64 num_bytes;
2788 int level;
2789
2790 level = BTRFS_MAX_LEVEL - 2;
2791 /*
2792 * NOTE: these calculations are absolutely the worst possible case.
2793 * This assumes that _every_ item we insert will require a new leaf, and
2794 * that the tree has grown to its maximum level size.
2795 */
2796
2797 /*
2798 * for every item we insert we could insert both an extent item and a
2799 * extent ref item. Then for ever item we insert, we will need to cow
2800 * both the original leaf, plus the leaf to the left and right of it.
2801 *
2802 * Unless we are talking about the extent root, then we just want the
2803 * number of items * 2, since we just need the extent item plus its ref.
2804 */
2805 if (root == root->fs_info->extent_root)
2806 num_bytes = num_items * 2;
2807 else
2808 num_bytes = (num_items + (2 * num_items)) * 3;
2809
2810 /*
2811 * num_bytes is total number of leaves we could need times the leaf
2812 * size, and then for every leaf we could end up cow'ing 2 nodes per
2813 * level, down to the leaf level.
2814 */
2815 num_bytes = (num_bytes * root->leafsize) +
2816 (num_bytes * (level * 2)) * root->nodesize;
2817
2818 return num_bytes;
2819}
2820
Josef Bacik6a632092009-02-20 11:00:09 -05002821/*
Josef Bacik9ed74f22009-09-11 16:12:44 -04002822 * Unreserve metadata space for delalloc. If we have less reserved credits than
2823 * we have extents, this function does nothing.
Josef Bacik6a632092009-02-20 11:00:09 -05002824 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04002825int btrfs_unreserve_metadata_for_delalloc(struct btrfs_root *root,
2826 struct inode *inode, int num_items)
Josef Bacik6a632092009-02-20 11:00:09 -05002827{
2828 struct btrfs_fs_info *info = root->fs_info;
2829 struct btrfs_space_info *meta_sinfo;
Josef Bacik9ed74f22009-09-11 16:12:44 -04002830 u64 num_bytes;
2831 u64 alloc_target;
2832 bool bug = false;
Josef Bacik6a632092009-02-20 11:00:09 -05002833
2834 /* get the space info for where the metadata will live */
2835 alloc_target = btrfs_get_alloc_profile(root, 0);
2836 meta_sinfo = __find_space_info(info, alloc_target);
2837
Josef Bacik9ed74f22009-09-11 16:12:44 -04002838 num_bytes = calculate_bytes_needed(root->fs_info->extent_root,
2839 num_items);
2840
2841 spin_lock(&meta_sinfo->lock);
Josef Bacik32c00af2009-10-08 13:34:05 -04002842 spin_lock(&BTRFS_I(inode)->accounting_lock);
2843 if (BTRFS_I(inode)->reserved_extents <=
2844 BTRFS_I(inode)->outstanding_extents) {
2845 spin_unlock(&BTRFS_I(inode)->accounting_lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04002846 spin_unlock(&meta_sinfo->lock);
2847 return 0;
2848 }
Josef Bacik32c00af2009-10-08 13:34:05 -04002849 spin_unlock(&BTRFS_I(inode)->accounting_lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04002850
Josef Bacik287a0ab2010-03-19 18:07:23 +00002851 BTRFS_I(inode)->reserved_extents -= num_items;
Josef Bacik32c00af2009-10-08 13:34:05 -04002852 BUG_ON(BTRFS_I(inode)->reserved_extents < 0);
Josef Bacik9ed74f22009-09-11 16:12:44 -04002853
2854 if (meta_sinfo->bytes_delalloc < num_bytes) {
2855 bug = true;
2856 meta_sinfo->bytes_delalloc = 0;
2857 } else {
2858 meta_sinfo->bytes_delalloc -= num_bytes;
2859 }
2860 spin_unlock(&meta_sinfo->lock);
2861
2862 BUG_ON(bug);
2863
2864 return 0;
2865}
2866
2867static void check_force_delalloc(struct btrfs_space_info *meta_sinfo)
2868{
2869 u64 thresh;
2870
2871 thresh = meta_sinfo->bytes_used + meta_sinfo->bytes_reserved +
2872 meta_sinfo->bytes_pinned + meta_sinfo->bytes_readonly +
2873 meta_sinfo->bytes_super + meta_sinfo->bytes_root +
2874 meta_sinfo->bytes_may_use;
2875
2876 thresh = meta_sinfo->total_bytes - thresh;
2877 thresh *= 80;
2878 do_div(thresh, 100);
2879 if (thresh <= meta_sinfo->bytes_delalloc)
2880 meta_sinfo->force_delalloc = 1;
2881 else
2882 meta_sinfo->force_delalloc = 0;
2883}
2884
Josef Bacike3ccfa92009-10-07 20:44:34 -04002885struct async_flush {
2886 struct btrfs_root *root;
2887 struct btrfs_space_info *info;
2888 struct btrfs_work work;
2889};
2890
2891static noinline void flush_delalloc_async(struct btrfs_work *work)
2892{
2893 struct async_flush *async;
2894 struct btrfs_root *root;
2895 struct btrfs_space_info *info;
2896
2897 async = container_of(work, struct async_flush, work);
2898 root = async->root;
2899 info = async->info;
2900
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002901 btrfs_start_delalloc_inodes(root, 0);
Josef Bacike3ccfa92009-10-07 20:44:34 -04002902 wake_up(&info->flush_wait);
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002903 btrfs_wait_ordered_extents(root, 0, 0);
Josef Bacike3ccfa92009-10-07 20:44:34 -04002904
2905 spin_lock(&info->lock);
2906 info->flushing = 0;
2907 spin_unlock(&info->lock);
2908 wake_up(&info->flush_wait);
2909
2910 kfree(async);
2911}
2912
2913static void wait_on_flush(struct btrfs_space_info *info)
2914{
2915 DEFINE_WAIT(wait);
2916 u64 used;
2917
2918 while (1) {
2919 prepare_to_wait(&info->flush_wait, &wait,
2920 TASK_UNINTERRUPTIBLE);
2921 spin_lock(&info->lock);
2922 if (!info->flushing) {
2923 spin_unlock(&info->lock);
2924 break;
2925 }
2926
2927 used = info->bytes_used + info->bytes_reserved +
2928 info->bytes_pinned + info->bytes_readonly +
2929 info->bytes_super + info->bytes_root +
2930 info->bytes_may_use + info->bytes_delalloc;
2931 if (used < info->total_bytes) {
2932 spin_unlock(&info->lock);
2933 break;
2934 }
2935 spin_unlock(&info->lock);
2936 schedule();
2937 }
2938 finish_wait(&info->flush_wait, &wait);
2939}
2940
Josef Bacik32c00af2009-10-08 13:34:05 -04002941static void flush_delalloc(struct btrfs_root *root,
2942 struct btrfs_space_info *info)
2943{
Josef Bacike3ccfa92009-10-07 20:44:34 -04002944 struct async_flush *async;
Josef Bacik32c00af2009-10-08 13:34:05 -04002945 bool wait = false;
2946
2947 spin_lock(&info->lock);
2948
Josef Bacikb5cb1602010-03-12 19:28:18 +00002949 if (!info->flushing)
Josef Bacik32c00af2009-10-08 13:34:05 -04002950 info->flushing = 1;
Josef Bacikb5cb1602010-03-12 19:28:18 +00002951 else
Josef Bacik32c00af2009-10-08 13:34:05 -04002952 wait = true;
Josef Bacik32c00af2009-10-08 13:34:05 -04002953
2954 spin_unlock(&info->lock);
2955
2956 if (wait) {
Josef Bacike3ccfa92009-10-07 20:44:34 -04002957 wait_on_flush(info);
Josef Bacik32c00af2009-10-08 13:34:05 -04002958 return;
2959 }
2960
Josef Bacike3ccfa92009-10-07 20:44:34 -04002961 async = kzalloc(sizeof(*async), GFP_NOFS);
2962 if (!async)
2963 goto flush;
2964
2965 async->root = root;
2966 async->info = info;
2967 async->work.func = flush_delalloc_async;
2968
2969 btrfs_queue_worker(&root->fs_info->enospc_workers,
2970 &async->work);
2971 wait_on_flush(info);
2972 return;
2973
2974flush:
Yan, Zheng24bbcf02009-11-12 09:36:34 +00002975 btrfs_start_delalloc_inodes(root, 0);
2976 btrfs_wait_ordered_extents(root, 0, 0);
Josef Bacik32c00af2009-10-08 13:34:05 -04002977
2978 spin_lock(&info->lock);
2979 info->flushing = 0;
2980 spin_unlock(&info->lock);
2981 wake_up(&info->flush_wait);
2982}
2983
Josef Bacik9ed74f22009-09-11 16:12:44 -04002984static int maybe_allocate_chunk(struct btrfs_root *root,
2985 struct btrfs_space_info *info)
2986{
2987 struct btrfs_super_block *disk_super = &root->fs_info->super_copy;
2988 struct btrfs_trans_handle *trans;
2989 bool wait = false;
2990 int ret = 0;
2991 u64 min_metadata;
2992 u64 free_space;
2993
2994 free_space = btrfs_super_total_bytes(disk_super);
2995 /*
Chris Mason33b25802009-11-11 10:16:57 -05002996 * we allow the metadata to grow to a max of either 10gb or 5% of the
Josef Bacik9ed74f22009-09-11 16:12:44 -04002997 * space in the volume.
2998 */
Chris Mason33b25802009-11-11 10:16:57 -05002999 min_metadata = min((u64)10 * 1024 * 1024 * 1024,
Josef Bacik9ed74f22009-09-11 16:12:44 -04003000 div64_u64(free_space * 5, 100));
3001 if (info->total_bytes >= min_metadata) {
3002 spin_unlock(&info->lock);
3003 return 0;
3004 }
3005
3006 if (info->full) {
3007 spin_unlock(&info->lock);
3008 return 0;
3009 }
3010
3011 if (!info->allocating_chunk) {
3012 info->force_alloc = 1;
3013 info->allocating_chunk = 1;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003014 } else {
3015 wait = true;
3016 }
3017
3018 spin_unlock(&info->lock);
3019
3020 if (wait) {
Josef Bacike3ccfa92009-10-07 20:44:34 -04003021 wait_event(info->allocate_wait,
Josef Bacik9ed74f22009-09-11 16:12:44 -04003022 !info->allocating_chunk);
3023 return 1;
3024 }
3025
3026 trans = btrfs_start_transaction(root, 1);
3027 if (!trans) {
3028 ret = -ENOMEM;
3029 goto out;
3030 }
3031
3032 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
3033 4096 + 2 * 1024 * 1024,
3034 info->flags, 0);
3035 btrfs_end_transaction(trans, root);
3036 if (ret)
3037 goto out;
3038out:
3039 spin_lock(&info->lock);
3040 info->allocating_chunk = 0;
3041 spin_unlock(&info->lock);
Josef Bacike3ccfa92009-10-07 20:44:34 -04003042 wake_up(&info->allocate_wait);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003043
3044 if (ret)
3045 return 0;
3046 return 1;
3047}
3048
3049/*
3050 * Reserve metadata space for delalloc.
3051 */
3052int btrfs_reserve_metadata_for_delalloc(struct btrfs_root *root,
3053 struct inode *inode, int num_items)
3054{
3055 struct btrfs_fs_info *info = root->fs_info;
3056 struct btrfs_space_info *meta_sinfo;
3057 u64 num_bytes;
3058 u64 used;
3059 u64 alloc_target;
3060 int flushed = 0;
3061 int force_delalloc;
3062
3063 /* get the space info for where the metadata will live */
3064 alloc_target = btrfs_get_alloc_profile(root, 0);
3065 meta_sinfo = __find_space_info(info, alloc_target);
3066
3067 num_bytes = calculate_bytes_needed(root->fs_info->extent_root,
3068 num_items);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003069again:
Josef Bacik6a632092009-02-20 11:00:09 -05003070 spin_lock(&meta_sinfo->lock);
Josef Bacik6a632092009-02-20 11:00:09 -05003071
Josef Bacik9ed74f22009-09-11 16:12:44 -04003072 force_delalloc = meta_sinfo->force_delalloc;
Josef Bacik6a632092009-02-20 11:00:09 -05003073
Josef Bacik9ed74f22009-09-11 16:12:44 -04003074 if (unlikely(!meta_sinfo->bytes_root))
3075 meta_sinfo->bytes_root = calculate_bytes_needed(root, 6);
3076
3077 if (!flushed)
3078 meta_sinfo->bytes_delalloc += num_bytes;
3079
3080 used = meta_sinfo->bytes_used + meta_sinfo->bytes_reserved +
3081 meta_sinfo->bytes_pinned + meta_sinfo->bytes_readonly +
3082 meta_sinfo->bytes_super + meta_sinfo->bytes_root +
3083 meta_sinfo->bytes_may_use + meta_sinfo->bytes_delalloc;
3084
3085 if (used > meta_sinfo->total_bytes) {
3086 flushed++;
3087
3088 if (flushed == 1) {
3089 if (maybe_allocate_chunk(root, meta_sinfo))
3090 goto again;
3091 flushed++;
3092 } else {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003093 spin_unlock(&meta_sinfo->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003094 }
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003095
Josef Bacik9ed74f22009-09-11 16:12:44 -04003096 if (flushed == 2) {
3097 filemap_flush(inode->i_mapping);
3098 goto again;
3099 } else if (flushed == 3) {
Josef Bacik32c00af2009-10-08 13:34:05 -04003100 flush_delalloc(root, meta_sinfo);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003101 goto again;
3102 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04003103 spin_lock(&meta_sinfo->lock);
3104 meta_sinfo->bytes_delalloc -= num_bytes;
Josef Bacik6a632092009-02-20 11:00:09 -05003105 spin_unlock(&meta_sinfo->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003106 printk(KERN_ERR "enospc, has %d, reserved %d\n",
Josef Bacik32c00af2009-10-08 13:34:05 -04003107 BTRFS_I(inode)->outstanding_extents,
3108 BTRFS_I(inode)->reserved_extents);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003109 dump_space_info(meta_sinfo, 0, 0);
Josef Bacik6a632092009-02-20 11:00:09 -05003110 return -ENOSPC;
3111 }
Josef Bacik9ed74f22009-09-11 16:12:44 -04003112
Josef Bacik287a0ab2010-03-19 18:07:23 +00003113 BTRFS_I(inode)->reserved_extents += num_items;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003114 check_force_delalloc(meta_sinfo);
3115 spin_unlock(&meta_sinfo->lock);
3116
3117 if (!flushed && force_delalloc)
3118 filemap_flush(inode->i_mapping);
3119
3120 return 0;
3121}
3122
3123/*
3124 * unreserve num_items number of items worth of metadata space. This needs to
3125 * be paired with btrfs_reserve_metadata_space.
3126 *
3127 * NOTE: if you have the option, run this _AFTER_ you do a
3128 * btrfs_end_transaction, since btrfs_end_transaction will run delayed ref
3129 * oprations which will result in more used metadata, so we want to make sure we
3130 * can do that without issue.
3131 */
3132int btrfs_unreserve_metadata_space(struct btrfs_root *root, int num_items)
3133{
3134 struct btrfs_fs_info *info = root->fs_info;
3135 struct btrfs_space_info *meta_sinfo;
3136 u64 num_bytes;
3137 u64 alloc_target;
3138 bool bug = false;
3139
3140 /* get the space info for where the metadata will live */
3141 alloc_target = btrfs_get_alloc_profile(root, 0);
3142 meta_sinfo = __find_space_info(info, alloc_target);
3143
3144 num_bytes = calculate_bytes_needed(root, num_items);
3145
3146 spin_lock(&meta_sinfo->lock);
3147 if (meta_sinfo->bytes_may_use < num_bytes) {
3148 bug = true;
3149 meta_sinfo->bytes_may_use = 0;
3150 } else {
3151 meta_sinfo->bytes_may_use -= num_bytes;
3152 }
3153 spin_unlock(&meta_sinfo->lock);
3154
3155 BUG_ON(bug);
3156
3157 return 0;
3158}
3159
3160/*
3161 * Reserve some metadata space for use. We'll calculate the worste case number
3162 * of bytes that would be needed to modify num_items number of items. If we
3163 * have space, fantastic, if not, you get -ENOSPC. Please call
3164 * btrfs_unreserve_metadata_space when you are done for the _SAME_ number of
3165 * items you reserved, since whatever metadata you needed should have already
3166 * been allocated.
3167 *
3168 * This will commit the transaction to make more space if we don't have enough
3169 * metadata space. THe only time we don't do this is if we're reserving space
3170 * inside of a transaction, then we will just return -ENOSPC and it is the
3171 * callers responsibility to handle it properly.
3172 */
3173int btrfs_reserve_metadata_space(struct btrfs_root *root, int num_items)
3174{
3175 struct btrfs_fs_info *info = root->fs_info;
3176 struct btrfs_space_info *meta_sinfo;
3177 u64 num_bytes;
3178 u64 used;
3179 u64 alloc_target;
3180 int retries = 0;
3181
3182 /* get the space info for where the metadata will live */
3183 alloc_target = btrfs_get_alloc_profile(root, 0);
3184 meta_sinfo = __find_space_info(info, alloc_target);
3185
3186 num_bytes = calculate_bytes_needed(root, num_items);
3187again:
3188 spin_lock(&meta_sinfo->lock);
3189
3190 if (unlikely(!meta_sinfo->bytes_root))
3191 meta_sinfo->bytes_root = calculate_bytes_needed(root, 6);
3192
3193 if (!retries)
3194 meta_sinfo->bytes_may_use += num_bytes;
3195
3196 used = meta_sinfo->bytes_used + meta_sinfo->bytes_reserved +
3197 meta_sinfo->bytes_pinned + meta_sinfo->bytes_readonly +
3198 meta_sinfo->bytes_super + meta_sinfo->bytes_root +
3199 meta_sinfo->bytes_may_use + meta_sinfo->bytes_delalloc;
3200
3201 if (used > meta_sinfo->total_bytes) {
3202 retries++;
3203 if (retries == 1) {
3204 if (maybe_allocate_chunk(root, meta_sinfo))
3205 goto again;
3206 retries++;
3207 } else {
3208 spin_unlock(&meta_sinfo->lock);
3209 }
3210
3211 if (retries == 2) {
Josef Bacik32c00af2009-10-08 13:34:05 -04003212 flush_delalloc(root, meta_sinfo);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003213 goto again;
3214 }
3215 spin_lock(&meta_sinfo->lock);
3216 meta_sinfo->bytes_may_use -= num_bytes;
3217 spin_unlock(&meta_sinfo->lock);
3218
3219 dump_space_info(meta_sinfo, 0, 0);
3220 return -ENOSPC;
3221 }
3222
3223 check_force_delalloc(meta_sinfo);
Josef Bacik6a632092009-02-20 11:00:09 -05003224 spin_unlock(&meta_sinfo->lock);
3225
3226 return 0;
3227}
3228
3229/*
3230 * This will check the space that the inode allocates from to make sure we have
3231 * enough space for bytes.
3232 */
3233int btrfs_check_data_free_space(struct btrfs_root *root, struct inode *inode,
3234 u64 bytes)
3235{
3236 struct btrfs_space_info *data_sinfo;
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003237 int ret = 0, committed = 0;
Josef Bacik6a632092009-02-20 11:00:09 -05003238
3239 /* make sure bytes are sectorsize aligned */
3240 bytes = (bytes + root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
3241
3242 data_sinfo = BTRFS_I(inode)->space_info;
Chris Mason33b4d472009-09-22 14:45:50 -04003243 if (!data_sinfo)
3244 goto alloc;
3245
Josef Bacik6a632092009-02-20 11:00:09 -05003246again:
3247 /* make sure we have enough space to handle the data first */
3248 spin_lock(&data_sinfo->lock);
3249 if (data_sinfo->total_bytes - data_sinfo->bytes_used -
3250 data_sinfo->bytes_delalloc - data_sinfo->bytes_reserved -
3251 data_sinfo->bytes_pinned - data_sinfo->bytes_readonly -
Josef Bacik1b2da372009-09-11 16:11:20 -04003252 data_sinfo->bytes_may_use - data_sinfo->bytes_super < bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003253 struct btrfs_trans_handle *trans;
3254
Josef Bacik6a632092009-02-20 11:00:09 -05003255 /*
3256 * if we don't have enough free bytes in this space then we need
3257 * to alloc a new chunk.
3258 */
3259 if (!data_sinfo->full) {
3260 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05003261
3262 data_sinfo->force_alloc = 1;
3263 spin_unlock(&data_sinfo->lock);
Chris Mason33b4d472009-09-22 14:45:50 -04003264alloc:
Josef Bacik6a632092009-02-20 11:00:09 -05003265 alloc_target = btrfs_get_alloc_profile(root, 1);
3266 trans = btrfs_start_transaction(root, 1);
3267 if (!trans)
3268 return -ENOMEM;
3269
3270 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
3271 bytes + 2 * 1024 * 1024,
3272 alloc_target, 0);
3273 btrfs_end_transaction(trans, root);
3274 if (ret)
3275 return ret;
Chris Mason33b4d472009-09-22 14:45:50 -04003276
3277 if (!data_sinfo) {
3278 btrfs_set_inode_space_info(root, inode);
3279 data_sinfo = BTRFS_I(inode)->space_info;
3280 }
Josef Bacik6a632092009-02-20 11:00:09 -05003281 goto again;
3282 }
3283 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003284
3285 /* commit the current transaction and try again */
Sage Weildd7e0b72009-09-29 18:38:44 -04003286 if (!committed && !root->fs_info->open_ioctl_trans) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003287 committed = 1;
3288 trans = btrfs_join_transaction(root, 1);
3289 if (!trans)
3290 return -ENOMEM;
3291 ret = btrfs_commit_transaction(trans, root);
3292 if (ret)
3293 return ret;
3294 goto again;
3295 }
3296
Josef Bacik6a632092009-02-20 11:00:09 -05003297 printk(KERN_ERR "no space left, need %llu, %llu delalloc bytes"
3298 ", %llu bytes_used, %llu bytes_reserved, "
Hu Tao68f5a382009-07-02 13:55:45 -04003299 "%llu bytes_pinned, %llu bytes_readonly, %llu may use "
Joel Becker21380932009-04-21 12:38:29 -07003300 "%llu total\n", (unsigned long long)bytes,
3301 (unsigned long long)data_sinfo->bytes_delalloc,
3302 (unsigned long long)data_sinfo->bytes_used,
3303 (unsigned long long)data_sinfo->bytes_reserved,
3304 (unsigned long long)data_sinfo->bytes_pinned,
3305 (unsigned long long)data_sinfo->bytes_readonly,
3306 (unsigned long long)data_sinfo->bytes_may_use,
3307 (unsigned long long)data_sinfo->total_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05003308 return -ENOSPC;
3309 }
3310 data_sinfo->bytes_may_use += bytes;
3311 BTRFS_I(inode)->reserved_bytes += bytes;
3312 spin_unlock(&data_sinfo->lock);
3313
Josef Bacik9ed74f22009-09-11 16:12:44 -04003314 return 0;
Josef Bacik6a632092009-02-20 11:00:09 -05003315}
3316
3317/*
3318 * if there was an error for whatever reason after calling
3319 * btrfs_check_data_free_space, call this so we can cleanup the counters.
3320 */
3321void btrfs_free_reserved_data_space(struct btrfs_root *root,
3322 struct inode *inode, u64 bytes)
3323{
3324 struct btrfs_space_info *data_sinfo;
3325
3326 /* make sure bytes are sectorsize aligned */
3327 bytes = (bytes + root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
3328
3329 data_sinfo = BTRFS_I(inode)->space_info;
3330 spin_lock(&data_sinfo->lock);
3331 data_sinfo->bytes_may_use -= bytes;
3332 BTRFS_I(inode)->reserved_bytes -= bytes;
3333 spin_unlock(&data_sinfo->lock);
3334}
3335
3336/* called when we are adding a delalloc extent to the inode's io_tree */
3337void btrfs_delalloc_reserve_space(struct btrfs_root *root, struct inode *inode,
3338 u64 bytes)
3339{
3340 struct btrfs_space_info *data_sinfo;
3341
3342 /* get the space info for where this inode will be storing its data */
3343 data_sinfo = BTRFS_I(inode)->space_info;
3344
3345 /* make sure we have enough space to handle the data first */
3346 spin_lock(&data_sinfo->lock);
3347 data_sinfo->bytes_delalloc += bytes;
3348
3349 /*
3350 * we are adding a delalloc extent without calling
3351 * btrfs_check_data_free_space first. This happens on a weird
3352 * writepage condition, but shouldn't hurt our accounting
3353 */
3354 if (unlikely(bytes > BTRFS_I(inode)->reserved_bytes)) {
3355 data_sinfo->bytes_may_use -= BTRFS_I(inode)->reserved_bytes;
3356 BTRFS_I(inode)->reserved_bytes = 0;
3357 } else {
3358 data_sinfo->bytes_may_use -= bytes;
3359 BTRFS_I(inode)->reserved_bytes -= bytes;
3360 }
3361
3362 spin_unlock(&data_sinfo->lock);
3363}
3364
3365/* called when we are clearing an delalloc extent from the inode's io_tree */
3366void btrfs_delalloc_free_space(struct btrfs_root *root, struct inode *inode,
3367 u64 bytes)
3368{
3369 struct btrfs_space_info *info;
3370
3371 info = BTRFS_I(inode)->space_info;
3372
3373 spin_lock(&info->lock);
3374 info->bytes_delalloc -= bytes;
3375 spin_unlock(&info->lock);
3376}
3377
Josef Bacik97e728d2009-04-21 17:40:57 -04003378static void force_metadata_allocation(struct btrfs_fs_info *info)
3379{
3380 struct list_head *head = &info->space_info;
3381 struct btrfs_space_info *found;
3382
3383 rcu_read_lock();
3384 list_for_each_entry_rcu(found, head, list) {
3385 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
3386 found->force_alloc = 1;
3387 }
3388 rcu_read_unlock();
3389}
3390
Chris Mason6324fbf2008-03-24 15:01:59 -04003391static int do_chunk_alloc(struct btrfs_trans_handle *trans,
3392 struct btrfs_root *extent_root, u64 alloc_bytes,
Chris Mason0ef3e662008-05-24 14:04:53 -04003393 u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04003394{
3395 struct btrfs_space_info *space_info;
Josef Bacik97e728d2009-04-21 17:40:57 -04003396 struct btrfs_fs_info *fs_info = extent_root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04003397 u64 thresh;
Yan Zhengc146afa2008-11-12 14:34:12 -05003398 int ret = 0;
3399
Josef Bacik97e728d2009-04-21 17:40:57 -04003400 mutex_lock(&fs_info->chunk_mutex);
Chris Mason6324fbf2008-03-24 15:01:59 -04003401
Yan Zheng2b820322008-11-17 21:11:30 -05003402 flags = btrfs_reduce_alloc_profile(extent_root, flags);
Chris Masonec44a352008-04-28 15:29:52 -04003403
Chris Mason6324fbf2008-03-24 15:01:59 -04003404 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04003405 if (!space_info) {
3406 ret = update_space_info(extent_root->fs_info, flags,
3407 0, 0, &space_info);
3408 BUG_ON(ret);
3409 }
Chris Mason6324fbf2008-03-24 15:01:59 -04003410 BUG_ON(!space_info);
3411
Josef Bacik25179202008-10-29 14:49:05 -04003412 spin_lock(&space_info->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003413 if (space_info->force_alloc)
Chris Mason0ef3e662008-05-24 14:04:53 -04003414 force = 1;
Josef Bacik25179202008-10-29 14:49:05 -04003415 if (space_info->full) {
3416 spin_unlock(&space_info->lock);
Chris Mason925baed2008-06-25 16:01:30 -04003417 goto out;
Josef Bacik25179202008-10-29 14:49:05 -04003418 }
Chris Mason6324fbf2008-03-24 15:01:59 -04003419
Yan Zhengc146afa2008-11-12 14:34:12 -05003420 thresh = space_info->total_bytes - space_info->bytes_readonly;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003421 thresh = div_factor(thresh, 8);
Chris Mason0ef3e662008-05-24 14:04:53 -04003422 if (!force &&
Zheng Yane8569812008-09-26 10:05:48 -04003423 (space_info->bytes_used + space_info->bytes_pinned +
Josef Bacik25179202008-10-29 14:49:05 -04003424 space_info->bytes_reserved + alloc_bytes) < thresh) {
3425 spin_unlock(&space_info->lock);
Chris Mason925baed2008-06-25 16:01:30 -04003426 goto out;
Josef Bacik25179202008-10-29 14:49:05 -04003427 }
Josef Bacik25179202008-10-29 14:49:05 -04003428 spin_unlock(&space_info->lock);
3429
Josef Bacik97e728d2009-04-21 17:40:57 -04003430 /*
3431 * if we're doing a data chunk, go ahead and make sure that
3432 * we keep a reasonable number of metadata chunks allocated in the
3433 * FS as well.
3434 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04003435 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04003436 fs_info->data_chunk_allocations++;
3437 if (!(fs_info->data_chunk_allocations %
3438 fs_info->metadata_ratio))
3439 force_metadata_allocation(fs_info);
3440 }
3441
Yan Zheng2b820322008-11-17 21:11:30 -05003442 ret = btrfs_alloc_chunk(trans, extent_root, flags);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003443 spin_lock(&space_info->lock);
Chris Masond3977122009-01-05 21:25:51 -05003444 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04003445 space_info->full = 1;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003446 space_info->force_alloc = 0;
3447 spin_unlock(&space_info->lock);
Chris Masona74a4b92008-06-25 16:01:31 -04003448out:
Yan Zhengc146afa2008-11-12 14:34:12 -05003449 mutex_unlock(&extent_root->fs_info->chunk_mutex);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003450 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04003451}
3452
Chris Mason9078a3e2007-04-26 16:46:15 -04003453static int update_block_group(struct btrfs_trans_handle *trans,
3454 struct btrfs_root *root,
Chris Masondb945352007-10-15 16:15:53 -04003455 u64 bytenr, u64 num_bytes, int alloc,
Chris Mason0b86a832008-03-24 15:01:56 -04003456 int mark_free)
Chris Mason9078a3e2007-04-26 16:46:15 -04003457{
3458 struct btrfs_block_group_cache *cache;
3459 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04003460 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04003461 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04003462 u64 byte_in_group;
Chris Mason3e1ad542007-05-07 20:03:49 -04003463
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003464 /* block accounting for super block */
3465 spin_lock(&info->delalloc_lock);
3466 old_val = btrfs_super_bytes_used(&info->super_copy);
3467 if (alloc)
3468 old_val += num_bytes;
3469 else
3470 old_val -= num_bytes;
3471 btrfs_set_super_bytes_used(&info->super_copy, old_val);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003472 spin_unlock(&info->delalloc_lock);
3473
Chris Masond3977122009-01-05 21:25:51 -05003474 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04003475 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05003476 if (!cache)
Chris Mason9078a3e2007-04-26 16:46:15 -04003477 return -1;
Chris Masondb945352007-10-15 16:15:53 -04003478 byte_in_group = bytenr - cache->key.objectid;
3479 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04003480
Josef Bacik25179202008-10-29 14:49:05 -04003481 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04003482 spin_lock(&cache->lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003483 cache->dirty = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04003484 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04003485 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04003486 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04003487 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04003488 btrfs_set_block_group_used(&cache->item, old_val);
3489 cache->reserved -= num_bytes;
Chris Mason6324fbf2008-03-24 15:01:59 -04003490 cache->space_info->bytes_used += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04003491 cache->space_info->bytes_reserved -= num_bytes;
Yan Zhenga512bbf2008-12-08 16:46:26 -05003492 if (cache->ro)
Yan Zhengc146afa2008-11-12 14:34:12 -05003493 cache->space_info->bytes_readonly -= num_bytes;
Chris Masonc286ac42008-07-22 23:06:41 -04003494 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04003495 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04003496 } else {
Chris Masondb945352007-10-15 16:15:53 -04003497 old_val -= num_bytes;
Chris Mason6324fbf2008-03-24 15:01:59 -04003498 cache->space_info->bytes_used -= num_bytes;
Yan Zhengc146afa2008-11-12 14:34:12 -05003499 if (cache->ro)
3500 cache->space_info->bytes_readonly += num_bytes;
Chris Masonc286ac42008-07-22 23:06:41 -04003501 btrfs_set_block_group_used(&cache->item, old_val);
3502 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04003503 spin_unlock(&cache->space_info->lock);
Chris Masonf510cfe2007-10-15 16:14:48 -04003504 if (mark_free) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04003505 int ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05003506
3507 ret = btrfs_discard_extent(root, bytenr,
3508 num_bytes);
3509 WARN_ON(ret);
3510
Josef Bacik0f9dd462008-09-23 13:14:11 -04003511 ret = btrfs_add_free_space(cache, bytenr,
3512 num_bytes);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003513 WARN_ON(ret);
Chris Masone37c9e62007-05-09 20:13:14 -04003514 }
Chris Masoncd1bc462007-04-27 10:08:34 -04003515 }
Chris Masonfa9c0d72009-04-03 09:47:43 -04003516 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04003517 total -= num_bytes;
3518 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04003519 }
3520 return 0;
3521}
Chris Mason6324fbf2008-03-24 15:01:59 -04003522
Chris Masona061fc82008-05-07 11:43:44 -04003523static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
3524{
Josef Bacik0f9dd462008-09-23 13:14:11 -04003525 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05003526 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04003527
3528 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
3529 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04003530 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04003531
Yan Zhengd2fb3432008-12-11 16:30:39 -05003532 bytenr = cache->key.objectid;
Chris Masonfa9c0d72009-04-03 09:47:43 -04003533 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003534
3535 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04003536}
3537
Yan Zheng11833d62009-09-11 16:11:19 -04003538/*
3539 * this function must be called within transaction
3540 */
3541int btrfs_pin_extent(struct btrfs_root *root,
3542 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05003543{
Yan324ae4d2007-11-16 14:57:08 -05003544 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng11833d62009-09-11 16:11:19 -04003545 struct btrfs_block_group_cache *cache;
Yan324ae4d2007-11-16 14:57:08 -05003546
Yan Zheng11833d62009-09-11 16:11:19 -04003547 cache = btrfs_lookup_block_group(fs_info, bytenr);
3548 BUG_ON(!cache);
Chris Masonb9473432009-03-13 11:00:37 -04003549
Yan Zheng11833d62009-09-11 16:11:19 -04003550 spin_lock(&cache->space_info->lock);
3551 spin_lock(&cache->lock);
3552 cache->pinned += num_bytes;
3553 cache->space_info->bytes_pinned += num_bytes;
3554 if (reserved) {
3555 cache->reserved -= num_bytes;
3556 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05003557 }
Yan Zheng11833d62009-09-11 16:11:19 -04003558 spin_unlock(&cache->lock);
3559 spin_unlock(&cache->space_info->lock);
3560
3561 btrfs_put_block_group(cache);
3562
3563 set_extent_dirty(fs_info->pinned_extents,
3564 bytenr, bytenr + num_bytes - 1, GFP_NOFS);
Yan324ae4d2007-11-16 14:57:08 -05003565 return 0;
3566}
Chris Mason9078a3e2007-04-26 16:46:15 -04003567
Yan Zheng11833d62009-09-11 16:11:19 -04003568static int update_reserved_extents(struct btrfs_block_group_cache *cache,
3569 u64 num_bytes, int reserve)
Zheng Yane8569812008-09-26 10:05:48 -04003570{
Yan Zheng11833d62009-09-11 16:11:19 -04003571 spin_lock(&cache->space_info->lock);
3572 spin_lock(&cache->lock);
3573 if (reserve) {
3574 cache->reserved += num_bytes;
3575 cache->space_info->bytes_reserved += num_bytes;
3576 } else {
3577 cache->reserved -= num_bytes;
3578 cache->space_info->bytes_reserved -= num_bytes;
3579 }
3580 spin_unlock(&cache->lock);
3581 spin_unlock(&cache->space_info->lock);
3582 return 0;
3583}
Zheng Yane8569812008-09-26 10:05:48 -04003584
Yan Zheng11833d62009-09-11 16:11:19 -04003585int btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
3586 struct btrfs_root *root)
3587{
3588 struct btrfs_fs_info *fs_info = root->fs_info;
3589 struct btrfs_caching_control *next;
3590 struct btrfs_caching_control *caching_ctl;
3591 struct btrfs_block_group_cache *cache;
3592
3593 down_write(&fs_info->extent_commit_sem);
3594
3595 list_for_each_entry_safe(caching_ctl, next,
3596 &fs_info->caching_block_groups, list) {
3597 cache = caching_ctl->block_group;
3598 if (block_group_cache_done(cache)) {
3599 cache->last_byte_to_unpin = (u64)-1;
3600 list_del_init(&caching_ctl->list);
3601 put_caching_control(caching_ctl);
3602 } else {
3603 cache->last_byte_to_unpin = caching_ctl->progress;
3604 }
3605 }
3606
3607 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
3608 fs_info->pinned_extents = &fs_info->freed_extents[1];
3609 else
3610 fs_info->pinned_extents = &fs_info->freed_extents[0];
3611
3612 up_write(&fs_info->extent_commit_sem);
3613 return 0;
3614}
3615
3616static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
3617{
3618 struct btrfs_fs_info *fs_info = root->fs_info;
3619 struct btrfs_block_group_cache *cache = NULL;
3620 u64 len;
3621
3622 while (start <= end) {
3623 if (!cache ||
3624 start >= cache->key.objectid + cache->key.offset) {
3625 if (cache)
3626 btrfs_put_block_group(cache);
3627 cache = btrfs_lookup_block_group(fs_info, start);
3628 BUG_ON(!cache);
3629 }
3630
3631 len = cache->key.objectid + cache->key.offset - start;
3632 len = min(len, end + 1 - start);
3633
3634 if (start < cache->last_byte_to_unpin) {
3635 len = min(len, cache->last_byte_to_unpin - start);
3636 btrfs_add_free_space(cache, start, len);
3637 }
Josef Bacik25179202008-10-29 14:49:05 -04003638
3639 spin_lock(&cache->space_info->lock);
3640 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04003641 cache->pinned -= len;
3642 cache->space_info->bytes_pinned -= len;
Josef Bacik25179202008-10-29 14:49:05 -04003643 spin_unlock(&cache->lock);
3644 spin_unlock(&cache->space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04003645
3646 start += len;
3647 }
3648
3649 if (cache)
Chris Masonfa9c0d72009-04-03 09:47:43 -04003650 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04003651 return 0;
3652}
3653
3654int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04003655 struct btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -05003656{
Yan Zheng11833d62009-09-11 16:11:19 -04003657 struct btrfs_fs_info *fs_info = root->fs_info;
3658 struct extent_io_tree *unpin;
Chris Mason1a5bc162007-10-15 16:15:26 -04003659 u64 start;
3660 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05003661 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05003662
Yan Zheng11833d62009-09-11 16:11:19 -04003663 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
3664 unpin = &fs_info->freed_extents[1];
3665 else
3666 unpin = &fs_info->freed_extents[0];
3667
Chris Masond3977122009-01-05 21:25:51 -05003668 while (1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04003669 ret = find_first_extent_bit(unpin, 0, &start, &end,
3670 EXTENT_DIRTY);
3671 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05003672 break;
Liu Hui1f3c79a2009-01-05 15:57:51 -05003673
3674 ret = btrfs_discard_extent(root, start, end + 1 - start);
3675
Chris Mason1a5bc162007-10-15 16:15:26 -04003676 clear_extent_dirty(unpin, start, end, GFP_NOFS);
Yan Zheng11833d62009-09-11 16:11:19 -04003677 unpin_extent_range(root, start, end);
Chris Masonb9473432009-03-13 11:00:37 -04003678 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05003679 }
Josef Bacik817d52f2009-07-13 21:29:25 -04003680
Liu Hui1f3c79a2009-01-05 15:57:51 -05003681 return ret;
Chris Masona28ec192007-03-06 20:08:01 -05003682}
3683
Zheng Yan31840ae2008-09-23 13:14:14 -04003684static int pin_down_bytes(struct btrfs_trans_handle *trans,
3685 struct btrfs_root *root,
Chris Masonb9473432009-03-13 11:00:37 -04003686 struct btrfs_path *path,
Yan Zheng11833d62009-09-11 16:11:19 -04003687 u64 bytenr, u64 num_bytes,
3688 int is_data, int reserved,
Chris Masonb9473432009-03-13 11:00:37 -04003689 struct extent_buffer **must_clean)
Chris Masone20d96d2007-03-22 12:13:20 -04003690{
Chris Mason1a5bc162007-10-15 16:15:26 -04003691 int err = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04003692 struct extent_buffer *buf;
Chris Mason78fae272007-03-25 11:35:08 -04003693
Zheng Yan31840ae2008-09-23 13:14:14 -04003694 if (is_data)
3695 goto pinit;
Chris Mason4bef0842008-09-08 11:18:08 -04003696
Chris Mason444528b2009-10-14 09:38:28 -04003697 /*
3698 * discard is sloooow, and so triggering discards on
3699 * individual btree blocks isn't a good plan. Just
3700 * pin everything in discard mode.
3701 */
3702 if (btrfs_test_opt(root, DISCARD))
3703 goto pinit;
3704
Zheng Yan31840ae2008-09-23 13:14:14 -04003705 buf = btrfs_find_tree_block(root, bytenr, num_bytes);
3706 if (!buf)
3707 goto pinit;
Chris Mason4bef0842008-09-08 11:18:08 -04003708
Zheng Yan31840ae2008-09-23 13:14:14 -04003709 /* we can reuse a block if it hasn't been written
3710 * and it is from this transaction. We can't
3711 * reuse anything from the tree log root because
3712 * it has tiny sub-transactions.
3713 */
3714 if (btrfs_buffer_uptodate(buf, 0) &&
3715 btrfs_try_tree_lock(buf)) {
3716 u64 header_owner = btrfs_header_owner(buf);
3717 u64 header_transid = btrfs_header_generation(buf);
3718 if (header_owner != BTRFS_TREE_LOG_OBJECTID &&
3719 header_transid == trans->transid &&
3720 !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
Chris Masonb9473432009-03-13 11:00:37 -04003721 *must_clean = buf;
Zheng Yan31840ae2008-09-23 13:14:14 -04003722 return 1;
Chris Mason8ef97622007-03-26 10:15:30 -04003723 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003724 btrfs_tree_unlock(buf);
Chris Masonf4b9aa82007-03-27 11:05:53 -04003725 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003726 free_extent_buffer(buf);
3727pinit:
Yan Zheng11833d62009-09-11 16:11:19 -04003728 if (path)
3729 btrfs_set_path_blocking(path);
Chris Masonb9473432009-03-13 11:00:37 -04003730 /* unlocks the pinned mutex */
Yan Zheng11833d62009-09-11 16:11:19 -04003731 btrfs_pin_extent(root, bytenr, num_bytes, reserved);
Zheng Yan31840ae2008-09-23 13:14:14 -04003732
Chris Masonbe744172007-05-06 10:15:01 -04003733 BUG_ON(err < 0);
Chris Masone20d96d2007-03-22 12:13:20 -04003734 return 0;
3735}
3736
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003737static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
3738 struct btrfs_root *root,
3739 u64 bytenr, u64 num_bytes, u64 parent,
3740 u64 root_objectid, u64 owner_objectid,
3741 u64 owner_offset, int refs_to_drop,
3742 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05003743{
Chris Masone2fa7222007-03-12 16:22:34 -04003744 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003745 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04003746 struct btrfs_fs_info *info = root->fs_info;
3747 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003748 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003749 struct btrfs_extent_item *ei;
3750 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05003751 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003752 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05003753 int extent_slot = 0;
3754 int found_extent = 0;
3755 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003756 u32 item_size;
3757 u64 refs;
Chris Mason037e6392007-03-07 11:50:24 -05003758
Chris Mason5caf2a02007-04-02 11:20:42 -04003759 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04003760 if (!path)
3761 return -ENOMEM;
3762
Chris Mason3c12ac72008-04-21 12:01:38 -04003763 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04003764 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003765
3766 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
3767 BUG_ON(!is_data && refs_to_drop != 1);
3768
3769 ret = lookup_extent_backref(trans, extent_root, path, &iref,
3770 bytenr, num_bytes, parent,
3771 root_objectid, owner_objectid,
3772 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05003773 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05003774 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003775 while (extent_slot >= 0) {
3776 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05003777 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003778 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05003779 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003780 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
3781 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05003782 found_extent = 1;
3783 break;
3784 }
3785 if (path->slots[0] - extent_slot > 5)
3786 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003787 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05003788 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003789#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
3790 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
3791 if (found_extent && item_size < sizeof(*ei))
3792 found_extent = 0;
3793#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04003794 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003795 BUG_ON(iref);
Chris Mason56bec292009-03-13 10:10:06 -04003796 ret = remove_extent_backref(trans, extent_root, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003797 NULL, refs_to_drop,
3798 is_data);
Zheng Yan31840ae2008-09-23 13:14:14 -04003799 BUG_ON(ret);
3800 btrfs_release_path(extent_root, path);
Chris Masonb9473432009-03-13 11:00:37 -04003801 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003802
3803 key.objectid = bytenr;
3804 key.type = BTRFS_EXTENT_ITEM_KEY;
3805 key.offset = num_bytes;
3806
Zheng Yan31840ae2008-09-23 13:14:14 -04003807 ret = btrfs_search_slot(trans, extent_root,
3808 &key, path, -1, 1);
Josef Bacikf3465ca2008-11-12 14:19:50 -05003809 if (ret) {
3810 printk(KERN_ERR "umm, got %d back from search"
Chris Masond3977122009-01-05 21:25:51 -05003811 ", was looking for %llu\n", ret,
3812 (unsigned long long)bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05003813 btrfs_print_leaf(extent_root, path->nodes[0]);
3814 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003815 BUG_ON(ret);
3816 extent_slot = path->slots[0];
3817 }
Chris Mason7bb86312007-12-11 09:25:06 -05003818 } else {
3819 btrfs_print_leaf(extent_root, path->nodes[0]);
3820 WARN_ON(1);
Chris Masond3977122009-01-05 21:25:51 -05003821 printk(KERN_ERR "btrfs unable to find ref byte nr %llu "
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003822 "parent %llu root %llu owner %llu offset %llu\n",
Chris Masond3977122009-01-05 21:25:51 -05003823 (unsigned long long)bytenr,
Chris Mason56bec292009-03-13 10:10:06 -04003824 (unsigned long long)parent,
Chris Masond3977122009-01-05 21:25:51 -05003825 (unsigned long long)root_objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003826 (unsigned long long)owner_objectid,
3827 (unsigned long long)owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05003828 }
Chris Mason5f39d392007-10-15 16:14:19 -04003829
3830 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003831 item_size = btrfs_item_size_nr(leaf, extent_slot);
3832#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
3833 if (item_size < sizeof(*ei)) {
3834 BUG_ON(found_extent || extent_slot != path->slots[0]);
3835 ret = convert_extent_item_v0(trans, extent_root, path,
3836 owner_objectid, 0);
3837 BUG_ON(ret < 0);
3838
3839 btrfs_release_path(extent_root, path);
3840 path->leave_spinning = 1;
3841
3842 key.objectid = bytenr;
3843 key.type = BTRFS_EXTENT_ITEM_KEY;
3844 key.offset = num_bytes;
3845
3846 ret = btrfs_search_slot(trans, extent_root, &key, path,
3847 -1, 1);
3848 if (ret) {
3849 printk(KERN_ERR "umm, got %d back from search"
3850 ", was looking for %llu\n", ret,
3851 (unsigned long long)bytenr);
3852 btrfs_print_leaf(extent_root, path->nodes[0]);
3853 }
3854 BUG_ON(ret);
3855 extent_slot = path->slots[0];
3856 leaf = path->nodes[0];
3857 item_size = btrfs_item_size_nr(leaf, extent_slot);
3858 }
3859#endif
3860 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05003861 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04003862 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003863 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID) {
3864 struct btrfs_tree_block_info *bi;
3865 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
3866 bi = (struct btrfs_tree_block_info *)(ei + 1);
3867 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05003868 }
3869
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003870 refs = btrfs_extent_refs(leaf, ei);
3871 BUG_ON(refs < refs_to_drop);
3872 refs -= refs_to_drop;
3873
3874 if (refs > 0) {
3875 if (extent_op)
3876 __run_delayed_extent_op(extent_op, leaf, ei);
3877 /*
3878 * In the case of inline back ref, reference count will
3879 * be updated by remove_extent_backref
3880 */
3881 if (iref) {
3882 BUG_ON(!found_extent);
3883 } else {
3884 btrfs_set_extent_refs(leaf, ei, refs);
3885 btrfs_mark_buffer_dirty(leaf);
3886 }
3887 if (found_extent) {
3888 ret = remove_extent_backref(trans, extent_root, path,
3889 iref, refs_to_drop,
3890 is_data);
3891 BUG_ON(ret);
3892 }
3893 } else {
3894 int mark_free = 0;
Chris Masonb9473432009-03-13 11:00:37 -04003895 struct extent_buffer *must_clean = NULL;
Chris Mason78fae272007-03-25 11:35:08 -04003896
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003897 if (found_extent) {
3898 BUG_ON(is_data && refs_to_drop !=
3899 extent_data_ref_count(root, path, iref));
3900 if (iref) {
3901 BUG_ON(path->slots[0] != extent_slot);
3902 } else {
3903 BUG_ON(path->slots[0] != extent_slot + 1);
3904 path->slots[0] = extent_slot;
3905 num_to_del = 2;
3906 }
Chris Mason78fae272007-03-25 11:35:08 -04003907 }
Chris Masonb9473432009-03-13 11:00:37 -04003908
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003909 ret = pin_down_bytes(trans, root, path, bytenr,
Yan Zheng11833d62009-09-11 16:11:19 -04003910 num_bytes, is_data, 0, &must_clean);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003911 if (ret > 0)
3912 mark_free = 1;
3913 BUG_ON(ret < 0);
Chris Masonb9473432009-03-13 11:00:37 -04003914 /*
3915 * it is going to be very rare for someone to be waiting
3916 * on the block we're freeing. del_items might need to
3917 * schedule, so rather than get fancy, just force it
3918 * to blocking here
3919 */
3920 if (must_clean)
3921 btrfs_set_lock_blocking(must_clean);
3922
Chris Mason952fcca2008-02-18 16:33:44 -05003923 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
3924 num_to_del);
Zheng Yan31840ae2008-09-23 13:14:14 -04003925 BUG_ON(ret);
Josef Bacik25179202008-10-29 14:49:05 -04003926 btrfs_release_path(extent_root, path);
David Woodhouse21af8042008-08-12 14:13:26 +01003927
Chris Masonb9473432009-03-13 11:00:37 -04003928 if (must_clean) {
3929 clean_tree_block(NULL, root, must_clean);
3930 btrfs_tree_unlock(must_clean);
3931 free_extent_buffer(must_clean);
3932 }
3933
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003934 if (is_data) {
Chris Mason459931e2008-12-10 09:10:46 -05003935 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
3936 BUG_ON(ret);
Chris Masond57e62b2009-03-31 13:47:50 -04003937 } else {
3938 invalidate_mapping_pages(info->btree_inode->i_mapping,
3939 bytenr >> PAGE_CACHE_SHIFT,
3940 (bytenr + num_bytes - 1) >> PAGE_CACHE_SHIFT);
Chris Mason459931e2008-12-10 09:10:46 -05003941 }
3942
Chris Masondcbdd4d2008-12-16 13:51:01 -05003943 ret = update_block_group(trans, root, bytenr, num_bytes, 0,
3944 mark_free);
3945 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -05003946 }
Chris Mason5caf2a02007-04-02 11:20:42 -04003947 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05003948 return ret;
3949}
3950
3951/*
Chris Mason1887be62009-03-13 10:11:24 -04003952 * when we free an extent, it is possible (and likely) that we free the last
3953 * delayed ref for that extent as well. This searches the delayed ref tree for
3954 * a given extent, and if there are no other delayed refs to be processed, it
3955 * removes it from the tree.
3956 */
3957static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
3958 struct btrfs_root *root, u64 bytenr)
3959{
3960 struct btrfs_delayed_ref_head *head;
3961 struct btrfs_delayed_ref_root *delayed_refs;
3962 struct btrfs_delayed_ref_node *ref;
3963 struct rb_node *node;
3964 int ret;
3965
3966 delayed_refs = &trans->transaction->delayed_refs;
3967 spin_lock(&delayed_refs->lock);
3968 head = btrfs_find_delayed_ref_head(trans, bytenr);
3969 if (!head)
3970 goto out;
3971
3972 node = rb_prev(&head->node.rb_node);
3973 if (!node)
3974 goto out;
3975
3976 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
3977
3978 /* there are still entries for this ref, we can't drop it */
3979 if (ref->bytenr == bytenr)
3980 goto out;
3981
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003982 if (head->extent_op) {
3983 if (!head->must_insert_reserved)
3984 goto out;
3985 kfree(head->extent_op);
3986 head->extent_op = NULL;
3987 }
3988
Chris Mason1887be62009-03-13 10:11:24 -04003989 /*
3990 * waiting for the lock here would deadlock. If someone else has it
3991 * locked they are already in the process of dropping it anyway
3992 */
3993 if (!mutex_trylock(&head->mutex))
3994 goto out;
3995
3996 /*
3997 * at this point we have a head with no other entries. Go
3998 * ahead and process it.
3999 */
4000 head->node.in_tree = 0;
4001 rb_erase(&head->node.rb_node, &delayed_refs->root);
Chris Masonc3e69d52009-03-13 10:17:05 -04004002
Chris Mason1887be62009-03-13 10:11:24 -04004003 delayed_refs->num_entries--;
4004
4005 /*
4006 * we don't take a ref on the node because we're removing it from the
4007 * tree, so we just steal the ref the tree was holding.
4008 */
Chris Masonc3e69d52009-03-13 10:17:05 -04004009 delayed_refs->num_heads--;
4010 if (list_empty(&head->cluster))
4011 delayed_refs->num_heads_ready--;
4012
4013 list_del_init(&head->cluster);
Chris Mason1887be62009-03-13 10:11:24 -04004014 spin_unlock(&delayed_refs->lock);
4015
4016 ret = run_one_delayed_ref(trans, root->fs_info->tree_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004017 &head->node, head->extent_op,
4018 head->must_insert_reserved);
Chris Mason1887be62009-03-13 10:11:24 -04004019 BUG_ON(ret);
4020 btrfs_put_delayed_ref(&head->node);
4021 return 0;
4022out:
4023 spin_unlock(&delayed_refs->lock);
4024 return 0;
4025}
4026
Chris Mason925baed2008-06-25 16:01:30 -04004027int btrfs_free_extent(struct btrfs_trans_handle *trans,
Zheng Yan31840ae2008-09-23 13:14:14 -04004028 struct btrfs_root *root,
4029 u64 bytenr, u64 num_bytes, u64 parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004030 u64 root_objectid, u64 owner, u64 offset)
Chris Mason925baed2008-06-25 16:01:30 -04004031{
4032 int ret;
4033
Chris Mason56bec292009-03-13 10:10:06 -04004034 /*
4035 * tree log blocks never actually go into the extent allocation
4036 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04004037 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004038 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
4039 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04004040 /* unlocks the pinned mutex */
Yan Zheng11833d62009-09-11 16:11:19 -04004041 btrfs_pin_extent(root, bytenr, num_bytes, 1);
Chris Mason56bec292009-03-13 10:10:06 -04004042 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004043 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
4044 ret = btrfs_add_delayed_tree_ref(trans, bytenr, num_bytes,
4045 parent, root_objectid, (int)owner,
4046 BTRFS_DROP_DELAYED_REF, NULL);
Chris Mason1887be62009-03-13 10:11:24 -04004047 BUG_ON(ret);
4048 ret = check_ref_cleanup(trans, root, bytenr);
4049 BUG_ON(ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004050 } else {
4051 ret = btrfs_add_delayed_data_ref(trans, bytenr, num_bytes,
4052 parent, root_objectid, owner,
4053 offset, BTRFS_DROP_DELAYED_REF, NULL);
4054 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -04004055 }
Chris Mason925baed2008-06-25 16:01:30 -04004056 return ret;
4057}
4058
Yan, Zheng86b9f2e2009-11-12 09:36:50 +00004059int btrfs_free_tree_block(struct btrfs_trans_handle *trans,
4060 struct btrfs_root *root,
4061 u64 bytenr, u32 blocksize,
4062 u64 parent, u64 root_objectid, int level)
4063{
4064 u64 used;
4065 spin_lock(&root->node_lock);
4066 used = btrfs_root_used(&root->root_item) - blocksize;
4067 btrfs_set_root_used(&root->root_item, used);
4068 spin_unlock(&root->node_lock);
4069
4070 return btrfs_free_extent(trans, root, bytenr, blocksize,
4071 parent, root_objectid, level, 0);
4072}
4073
Chris Mason87ee04e2007-11-30 11:30:34 -05004074static u64 stripe_align(struct btrfs_root *root, u64 val)
4075{
4076 u64 mask = ((u64)root->stripesize - 1);
4077 u64 ret = (val + mask) & ~mask;
4078 return ret;
4079}
4080
Chris Masonfec577f2007-02-26 10:40:21 -05004081/*
Josef Bacik817d52f2009-07-13 21:29:25 -04004082 * when we wait for progress in the block group caching, its because
4083 * our allocation attempt failed at least once. So, we must sleep
4084 * and let some progress happen before we try again.
4085 *
4086 * This function will sleep at least once waiting for new free space to
4087 * show up, and then it will check the block group free space numbers
4088 * for our min num_bytes. Another option is to have it go ahead
4089 * and look in the rbtree for a free extent of a given size, but this
4090 * is a good start.
4091 */
4092static noinline int
4093wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
4094 u64 num_bytes)
4095{
Yan Zheng11833d62009-09-11 16:11:19 -04004096 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04004097 DEFINE_WAIT(wait);
4098
Yan Zheng11833d62009-09-11 16:11:19 -04004099 caching_ctl = get_caching_control(cache);
4100 if (!caching_ctl)
Josef Bacik817d52f2009-07-13 21:29:25 -04004101 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -04004102
Yan Zheng11833d62009-09-11 16:11:19 -04004103 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Josef Bacik817d52f2009-07-13 21:29:25 -04004104 (cache->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04004105
4106 put_caching_control(caching_ctl);
4107 return 0;
4108}
4109
4110static noinline int
4111wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
4112{
4113 struct btrfs_caching_control *caching_ctl;
4114 DEFINE_WAIT(wait);
4115
4116 caching_ctl = get_caching_control(cache);
4117 if (!caching_ctl)
4118 return 0;
4119
4120 wait_event(caching_ctl->wait, block_group_cache_done(cache));
4121
4122 put_caching_control(caching_ctl);
Josef Bacik817d52f2009-07-13 21:29:25 -04004123 return 0;
4124}
4125
4126enum btrfs_loop_type {
Josef Bacikccf0e722009-11-10 21:23:48 -05004127 LOOP_FIND_IDEAL = 0,
Josef Bacik817d52f2009-07-13 21:29:25 -04004128 LOOP_CACHING_NOWAIT = 1,
4129 LOOP_CACHING_WAIT = 2,
4130 LOOP_ALLOC_CHUNK = 3,
4131 LOOP_NO_EMPTY_SIZE = 4,
4132};
4133
4134/*
Chris Masonfec577f2007-02-26 10:40:21 -05004135 * walks the btree of allocated extents and find a hole of a given size.
4136 * The key ins is changed to record the hole:
4137 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -04004138 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -05004139 * ins->offset == number of blocks
4140 * Any available blocks before search_start are skipped.
4141 */
Chris Masond3977122009-01-05 21:25:51 -05004142static noinline int find_free_extent(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05004143 struct btrfs_root *orig_root,
4144 u64 num_bytes, u64 empty_size,
4145 u64 search_start, u64 search_end,
4146 u64 hint_byte, struct btrfs_key *ins,
4147 u64 exclude_start, u64 exclude_nr,
4148 int data)
Chris Masonfec577f2007-02-26 10:40:21 -05004149{
Josef Bacik80eb2342008-10-29 14:49:05 -04004150 int ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05004151 struct btrfs_root *root = orig_root->fs_info->extent_root;
Chris Masonfa9c0d72009-04-03 09:47:43 -04004152 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04004153 struct btrfs_block_group_cache *block_group = NULL;
Chris Mason239b14b2008-03-24 15:02:07 -04004154 int empty_cluster = 2 * 1024 * 1024;
Chris Mason0ef3e662008-05-24 14:04:53 -04004155 int allowed_chunk_alloc = 0;
Josef Bacikccf0e722009-11-10 21:23:48 -05004156 int done_chunk_alloc = 0;
Josef Bacik80eb2342008-10-29 14:49:05 -04004157 struct btrfs_space_info *space_info;
Chris Masonfa9c0d72009-04-03 09:47:43 -04004158 int last_ptr_loop = 0;
4159 int loop = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -04004160 bool found_uncached_bg = false;
Josef Bacik0a243252009-09-11 16:11:20 -04004161 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04004162 bool failed_alloc = false;
Josef Bacikccf0e722009-11-10 21:23:48 -05004163 u64 ideal_cache_percent = 0;
4164 u64 ideal_cache_offset = 0;
Chris Masonfec577f2007-02-26 10:40:21 -05004165
Chris Masondb945352007-10-15 16:15:53 -04004166 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04004167 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
Josef Bacik80eb2342008-10-29 14:49:05 -04004168 ins->objectid = 0;
4169 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04004170
Josef Bacik2552d172009-04-03 10:14:19 -04004171 space_info = __find_space_info(root->fs_info, data);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00004172 if (!space_info) {
4173 printk(KERN_ERR "No space info for %d\n", data);
4174 return -ENOSPC;
4175 }
Josef Bacik2552d172009-04-03 10:14:19 -04004176
Chris Mason0ef3e662008-05-24 14:04:53 -04004177 if (orig_root->ref_cows || empty_size)
4178 allowed_chunk_alloc = 1;
4179
Chris Mason239b14b2008-03-24 15:02:07 -04004180 if (data & BTRFS_BLOCK_GROUP_METADATA) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04004181 last_ptr = &root->fs_info->meta_alloc_cluster;
Chris Mason536ac8a2009-02-12 09:41:38 -05004182 if (!btrfs_test_opt(root, SSD))
4183 empty_cluster = 64 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04004184 }
4185
Chris Masonfa9c0d72009-04-03 09:47:43 -04004186 if ((data & BTRFS_BLOCK_GROUP_DATA) && btrfs_test_opt(root, SSD)) {
4187 last_ptr = &root->fs_info->data_alloc_cluster;
4188 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04004189
Chris Mason239b14b2008-03-24 15:02:07 -04004190 if (last_ptr) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04004191 spin_lock(&last_ptr->lock);
4192 if (last_ptr->block_group)
4193 hint_byte = last_ptr->window_start;
4194 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04004195 }
Chris Masonfa9c0d72009-04-03 09:47:43 -04004196
Chris Masona061fc82008-05-07 11:43:44 -04004197 search_start = max(search_start, first_logical_byte(root, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04004198 search_start = max(search_start, hint_byte);
Chris Mason0b86a832008-03-24 15:01:56 -04004199
Josef Bacik817d52f2009-07-13 21:29:25 -04004200 if (!last_ptr)
Chris Masonfa9c0d72009-04-03 09:47:43 -04004201 empty_cluster = 0;
Chris Masonfa9c0d72009-04-03 09:47:43 -04004202
Josef Bacik2552d172009-04-03 10:14:19 -04004203 if (search_start == hint_byte) {
Josef Bacikccf0e722009-11-10 21:23:48 -05004204ideal_cache:
Josef Bacik2552d172009-04-03 10:14:19 -04004205 block_group = btrfs_lookup_block_group(root->fs_info,
4206 search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04004207 /*
4208 * we don't want to use the block group if it doesn't match our
4209 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05004210 *
4211 * However if we are re-searching with an ideal block group
4212 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04004213 */
4214 if (block_group && block_group_bits(block_group, data) &&
Josef Bacikccf0e722009-11-10 21:23:48 -05004215 (block_group->cached != BTRFS_CACHE_NO ||
4216 search_start == ideal_cache_offset)) {
Josef Bacik2552d172009-04-03 10:14:19 -04004217 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04004218 if (list_empty(&block_group->list) ||
4219 block_group->ro) {
4220 /*
4221 * someone is removing this block group,
4222 * we can't jump into the have_block_group
4223 * target because our list pointers are not
4224 * valid
4225 */
4226 btrfs_put_block_group(block_group);
4227 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05004228 } else {
Chris Mason44fb5512009-06-04 15:34:51 -04004229 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05004230 }
Josef Bacik2552d172009-04-03 10:14:19 -04004231 } else if (block_group) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04004232 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04004233 }
Chris Mason42e70e72008-11-07 18:17:11 -05004234 }
Josef Bacik2552d172009-04-03 10:14:19 -04004235search:
Josef Bacik80eb2342008-10-29 14:49:05 -04004236 down_read(&space_info->groups_sem);
Josef Bacik2552d172009-04-03 10:14:19 -04004237 list_for_each_entry(block_group, &space_info->block_groups, list) {
Josef Bacik6226cb02009-04-03 10:14:18 -04004238 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04004239 int cached;
Chris Mason8a1413a2008-11-10 16:13:54 -05004240
Josef Bacik11dfe352009-11-13 20:12:59 +00004241 btrfs_get_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04004242 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05004243
Josef Bacik2552d172009-04-03 10:14:19 -04004244have_block_group:
Josef Bacik817d52f2009-07-13 21:29:25 -04004245 if (unlikely(block_group->cached == BTRFS_CACHE_NO)) {
Josef Bacikccf0e722009-11-10 21:23:48 -05004246 u64 free_percent;
4247
4248 free_percent = btrfs_block_group_used(&block_group->item);
4249 free_percent *= 100;
4250 free_percent = div64_u64(free_percent,
4251 block_group->key.offset);
4252 free_percent = 100 - free_percent;
4253 if (free_percent > ideal_cache_percent &&
4254 likely(!block_group->ro)) {
4255 ideal_cache_offset = block_group->key.objectid;
4256 ideal_cache_percent = free_percent;
4257 }
4258
Josef Bacik817d52f2009-07-13 21:29:25 -04004259 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05004260 * We only want to start kthread caching if we are at
4261 * the point where we will wait for caching to make
4262 * progress, or if our ideal search is over and we've
4263 * found somebody to start caching.
Josef Bacik817d52f2009-07-13 21:29:25 -04004264 */
4265 if (loop > LOOP_CACHING_NOWAIT ||
Josef Bacikccf0e722009-11-10 21:23:48 -05004266 (loop > LOOP_FIND_IDEAL &&
4267 atomic_read(&space_info->caching_threads) < 2)) {
Josef Bacik817d52f2009-07-13 21:29:25 -04004268 ret = cache_block_group(block_group);
4269 BUG_ON(ret);
Josef Bacik2552d172009-04-03 10:14:19 -04004270 }
Josef Bacikccf0e722009-11-10 21:23:48 -05004271 found_uncached_bg = true;
4272
4273 /*
4274 * If loop is set for cached only, try the next block
4275 * group.
4276 */
4277 if (loop == LOOP_FIND_IDEAL)
4278 goto loop;
Josef Bacikea6a4782008-11-20 12:16:16 -05004279 }
4280
Josef Bacik817d52f2009-07-13 21:29:25 -04004281 cached = block_group_cache_done(block_group);
Josef Bacikccf0e722009-11-10 21:23:48 -05004282 if (unlikely(!cached))
Josef Bacik817d52f2009-07-13 21:29:25 -04004283 found_uncached_bg = true;
4284
Josef Bacikea6a4782008-11-20 12:16:16 -05004285 if (unlikely(block_group->ro))
Josef Bacik2552d172009-04-03 10:14:19 -04004286 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04004287
Josef Bacik0a243252009-09-11 16:11:20 -04004288 /*
4289 * Ok we want to try and use the cluster allocator, so lets look
4290 * there, unless we are on LOOP_NO_EMPTY_SIZE, since we will
4291 * have tried the cluster allocator plenty of times at this
4292 * point and not have found anything, so we are likely way too
4293 * fragmented for the clustering stuff to find anything, so lets
4294 * just skip it and let the allocator find whatever block it can
4295 * find
4296 */
4297 if (last_ptr && loop < LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04004298 /*
4299 * the refill lock keeps out other
4300 * people trying to start a new cluster
4301 */
4302 spin_lock(&last_ptr->refill_lock);
Chris Mason44fb5512009-06-04 15:34:51 -04004303 if (last_ptr->block_group &&
4304 (last_ptr->block_group->ro ||
4305 !block_group_bits(last_ptr->block_group, data))) {
4306 offset = 0;
4307 goto refill_cluster;
4308 }
4309
Chris Masonfa9c0d72009-04-03 09:47:43 -04004310 offset = btrfs_alloc_from_cluster(block_group, last_ptr,
4311 num_bytes, search_start);
4312 if (offset) {
4313 /* we have a block, we're done */
4314 spin_unlock(&last_ptr->refill_lock);
4315 goto checks;
4316 }
4317
4318 spin_lock(&last_ptr->lock);
4319 /*
4320 * whoops, this cluster doesn't actually point to
4321 * this block group. Get a ref on the block
4322 * group is does point to and try again
4323 */
4324 if (!last_ptr_loop && last_ptr->block_group &&
4325 last_ptr->block_group != block_group) {
4326
4327 btrfs_put_block_group(block_group);
4328 block_group = last_ptr->block_group;
Josef Bacik11dfe352009-11-13 20:12:59 +00004329 btrfs_get_block_group(block_group);
Chris Masonfa9c0d72009-04-03 09:47:43 -04004330 spin_unlock(&last_ptr->lock);
4331 spin_unlock(&last_ptr->refill_lock);
4332
4333 last_ptr_loop = 1;
4334 search_start = block_group->key.objectid;
Chris Mason44fb5512009-06-04 15:34:51 -04004335 /*
4336 * we know this block group is properly
4337 * in the list because
4338 * btrfs_remove_block_group, drops the
4339 * cluster before it removes the block
4340 * group from the list
4341 */
Chris Masonfa9c0d72009-04-03 09:47:43 -04004342 goto have_block_group;
4343 }
4344 spin_unlock(&last_ptr->lock);
Chris Mason44fb5512009-06-04 15:34:51 -04004345refill_cluster:
Chris Masonfa9c0d72009-04-03 09:47:43 -04004346 /*
4347 * this cluster didn't work out, free it and
4348 * start over
4349 */
4350 btrfs_return_cluster_to_free_space(NULL, last_ptr);
4351
4352 last_ptr_loop = 0;
4353
4354 /* allocate a cluster in this block group */
Chris Mason451d7582009-06-09 20:28:34 -04004355 ret = btrfs_find_space_cluster(trans, root,
Chris Masonfa9c0d72009-04-03 09:47:43 -04004356 block_group, last_ptr,
4357 offset, num_bytes,
4358 empty_cluster + empty_size);
4359 if (ret == 0) {
4360 /*
4361 * now pull our allocation out of this
4362 * cluster
4363 */
4364 offset = btrfs_alloc_from_cluster(block_group,
4365 last_ptr, num_bytes,
4366 search_start);
4367 if (offset) {
4368 /* we found one, proceed */
4369 spin_unlock(&last_ptr->refill_lock);
4370 goto checks;
4371 }
Josef Bacik0a243252009-09-11 16:11:20 -04004372 } else if (!cached && loop > LOOP_CACHING_NOWAIT
4373 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04004374 spin_unlock(&last_ptr->refill_lock);
4375
Josef Bacik0a243252009-09-11 16:11:20 -04004376 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04004377 wait_block_group_cache_progress(block_group,
4378 num_bytes + empty_cluster + empty_size);
4379 goto have_block_group;
Chris Masonfa9c0d72009-04-03 09:47:43 -04004380 }
Josef Bacik817d52f2009-07-13 21:29:25 -04004381
Chris Masonfa9c0d72009-04-03 09:47:43 -04004382 /*
4383 * at this point we either didn't find a cluster
4384 * or we weren't able to allocate a block from our
4385 * cluster. Free the cluster we've been trying
4386 * to use, and go to the next block group
4387 */
Josef Bacik0a243252009-09-11 16:11:20 -04004388 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d72009-04-03 09:47:43 -04004389 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04004390 goto loop;
Chris Masonfa9c0d72009-04-03 09:47:43 -04004391 }
4392
Josef Bacik6226cb02009-04-03 10:14:18 -04004393 offset = btrfs_find_space_for_alloc(block_group, search_start,
4394 num_bytes, empty_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04004395 /*
4396 * If we didn't find a chunk, and we haven't failed on this
4397 * block group before, and this block group is in the middle of
4398 * caching and we are ok with waiting, then go ahead and wait
4399 * for progress to be made, and set failed_alloc to true.
4400 *
4401 * If failed_alloc is true then we've already waited on this
4402 * block group once and should move on to the next block group.
4403 */
4404 if (!offset && !failed_alloc && !cached &&
4405 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04004406 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04004407 num_bytes + empty_size);
4408 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04004409 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04004410 } else if (!offset) {
4411 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04004412 }
Chris Masonfa9c0d72009-04-03 09:47:43 -04004413checks:
Josef Bacik6226cb02009-04-03 10:14:18 -04004414 search_start = stripe_align(root, offset);
Josef Bacik2552d172009-04-03 10:14:19 -04004415 /* move on to the next group */
Josef Bacik6226cb02009-04-03 10:14:18 -04004416 if (search_start + num_bytes >= search_end) {
4417 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04004418 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04004419 }
Chris Masone37c9e62007-05-09 20:13:14 -04004420
Josef Bacik2552d172009-04-03 10:14:19 -04004421 /* move on to the next group */
4422 if (search_start + num_bytes >
Josef Bacik6226cb02009-04-03 10:14:18 -04004423 block_group->key.objectid + block_group->key.offset) {
4424 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04004425 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04004426 }
Josef Bacik80eb2342008-10-29 14:49:05 -04004427
Josef Bacik2552d172009-04-03 10:14:19 -04004428 if (exclude_nr > 0 &&
4429 (search_start + num_bytes > exclude_start &&
4430 search_start < exclude_start + exclude_nr)) {
4431 search_start = exclude_start + exclude_nr;
4432
Josef Bacik6226cb02009-04-03 10:14:18 -04004433 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04004434 /*
4435 * if search_start is still in this block group
4436 * then we just re-search this block group
4437 */
4438 if (search_start >= block_group->key.objectid &&
4439 search_start < (block_group->key.objectid +
Josef Bacik6226cb02009-04-03 10:14:18 -04004440 block_group->key.offset))
Josef Bacik2552d172009-04-03 10:14:19 -04004441 goto have_block_group;
Josef Bacik2552d172009-04-03 10:14:19 -04004442 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04004443 }
Josef Bacik2552d172009-04-03 10:14:19 -04004444
4445 ins->objectid = search_start;
4446 ins->offset = num_bytes;
4447
Josef Bacik6226cb02009-04-03 10:14:18 -04004448 if (offset < search_start)
4449 btrfs_add_free_space(block_group, offset,
4450 search_start - offset);
4451 BUG_ON(offset > search_start);
4452
Yan Zheng11833d62009-09-11 16:11:19 -04004453 update_reserved_extents(block_group, num_bytes, 1);
4454
Josef Bacik2552d172009-04-03 10:14:19 -04004455 /* we are all good, lets return */
Josef Bacik2552d172009-04-03 10:14:19 -04004456 break;
4457loop:
Josef Bacik0a243252009-09-11 16:11:20 -04004458 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04004459 failed_alloc = false;
Chris Masonfa9c0d72009-04-03 09:47:43 -04004460 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04004461 }
4462 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05004463
Josef Bacikccf0e722009-11-10 21:23:48 -05004464 /* LOOP_FIND_IDEAL, only search caching/cached bg's, and don't wait for
4465 * for them to make caching progress. Also
4466 * determine the best possible bg to cache
4467 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
4468 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04004469 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
4470 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
4471 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
4472 * again
Chris Masonfa9c0d72009-04-03 09:47:43 -04004473 */
Josef Bacik817d52f2009-07-13 21:29:25 -04004474 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE &&
4475 (found_uncached_bg || empty_size || empty_cluster ||
4476 allowed_chunk_alloc)) {
Josef Bacikccf0e722009-11-10 21:23:48 -05004477 if (loop == LOOP_FIND_IDEAL && found_uncached_bg) {
Josef Bacik817d52f2009-07-13 21:29:25 -04004478 found_uncached_bg = false;
Josef Bacikccf0e722009-11-10 21:23:48 -05004479 loop++;
4480 if (!ideal_cache_percent &&
4481 atomic_read(&space_info->caching_threads))
Josef Bacik817d52f2009-07-13 21:29:25 -04004482 goto search;
Josef Bacikccf0e722009-11-10 21:23:48 -05004483
4484 /*
4485 * 1 of the following 2 things have happened so far
4486 *
4487 * 1) We found an ideal block group for caching that
4488 * is mostly full and will cache quickly, so we might
4489 * as well wait for it.
4490 *
4491 * 2) We searched for cached only and we didn't find
4492 * anything, and we didn't start any caching kthreads
4493 * either, so chances are we will loop through and
4494 * start a couple caching kthreads, and then come back
4495 * around and just wait for them. This will be slower
4496 * because we will have 2 caching kthreads reading at
4497 * the same time when we could have just started one
4498 * and waited for it to get far enough to give us an
4499 * allocation, so go ahead and go to the wait caching
4500 * loop.
4501 */
4502 loop = LOOP_CACHING_WAIT;
4503 search_start = ideal_cache_offset;
4504 ideal_cache_percent = 0;
4505 goto ideal_cache;
4506 } else if (loop == LOOP_FIND_IDEAL) {
4507 /*
4508 * Didn't find a uncached bg, wait on anything we find
4509 * next.
4510 */
4511 loop = LOOP_CACHING_WAIT;
4512 goto search;
4513 }
4514
4515 if (loop < LOOP_CACHING_WAIT) {
4516 loop++;
4517 goto search;
Josef Bacik817d52f2009-07-13 21:29:25 -04004518 }
4519
4520 if (loop == LOOP_ALLOC_CHUNK) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04004521 empty_size = 0;
4522 empty_cluster = 0;
4523 }
Chris Mason42e70e72008-11-07 18:17:11 -05004524
Josef Bacik2552d172009-04-03 10:14:19 -04004525 if (allowed_chunk_alloc) {
4526 ret = do_chunk_alloc(trans, root, num_bytes +
4527 2 * 1024 * 1024, data, 1);
Josef Bacik2552d172009-04-03 10:14:19 -04004528 allowed_chunk_alloc = 0;
Josef Bacikccf0e722009-11-10 21:23:48 -05004529 done_chunk_alloc = 1;
4530 } else if (!done_chunk_alloc) {
Josef Bacik2552d172009-04-03 10:14:19 -04004531 space_info->force_alloc = 1;
Josef Bacik0f9dd462008-09-23 13:14:11 -04004532 }
Josef Bacik80eb2342008-10-29 14:49:05 -04004533
Josef Bacik817d52f2009-07-13 21:29:25 -04004534 if (loop < LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04004535 loop++;
Josef Bacik2552d172009-04-03 10:14:19 -04004536 goto search;
Chris Masonfa9c0d72009-04-03 09:47:43 -04004537 }
Josef Bacik2552d172009-04-03 10:14:19 -04004538 ret = -ENOSPC;
4539 } else if (!ins->objectid) {
4540 ret = -ENOSPC;
Chris Masone19caa52007-10-15 16:17:44 -04004541 }
Chris Mason0b86a832008-03-24 15:01:56 -04004542
Josef Bacik80eb2342008-10-29 14:49:05 -04004543 /* we found what we needed */
4544 if (ins->objectid) {
4545 if (!(data & BTRFS_BLOCK_GROUP_DATA))
Yan Zhengd2fb3432008-12-11 16:30:39 -05004546 trans->block_group = block_group->key.objectid;
Josef Bacik80eb2342008-10-29 14:49:05 -04004547
Chris Masonfa9c0d72009-04-03 09:47:43 -04004548 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04004549 ret = 0;
4550 }
Chris Mason0b86a832008-03-24 15:01:56 -04004551
Chris Mason0f70abe2007-02-28 16:46:22 -05004552 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05004553}
Chris Masonec44a352008-04-28 15:29:52 -04004554
Josef Bacik9ed74f22009-09-11 16:12:44 -04004555static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
4556 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04004557{
4558 struct btrfs_block_group_cache *cache;
Josef Bacik0f9dd462008-09-23 13:14:11 -04004559
Josef Bacik9ed74f22009-09-11 16:12:44 -04004560 spin_lock(&info->lock);
Chris Masond3977122009-01-05 21:25:51 -05004561 printk(KERN_INFO "space_info has %llu free, is %sfull\n",
4562 (unsigned long long)(info->total_bytes - info->bytes_used -
Josef Bacik9ed74f22009-09-11 16:12:44 -04004563 info->bytes_pinned - info->bytes_reserved -
4564 info->bytes_super),
Chris Masond3977122009-01-05 21:25:51 -05004565 (info->full) ? "" : "not ");
Josef Bacik6a632092009-02-20 11:00:09 -05004566 printk(KERN_INFO "space_info total=%llu, pinned=%llu, delalloc=%llu,"
Josef Bacik9ed74f22009-09-11 16:12:44 -04004567 " may_use=%llu, used=%llu, root=%llu, super=%llu, reserved=%llu"
4568 "\n",
Joel Becker21380932009-04-21 12:38:29 -07004569 (unsigned long long)info->total_bytes,
4570 (unsigned long long)info->bytes_pinned,
4571 (unsigned long long)info->bytes_delalloc,
4572 (unsigned long long)info->bytes_may_use,
Josef Bacik9ed74f22009-09-11 16:12:44 -04004573 (unsigned long long)info->bytes_used,
4574 (unsigned long long)info->bytes_root,
4575 (unsigned long long)info->bytes_super,
4576 (unsigned long long)info->bytes_reserved);
4577 spin_unlock(&info->lock);
4578
4579 if (!dump_block_groups)
4580 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04004581
Josef Bacik80eb2342008-10-29 14:49:05 -04004582 down_read(&info->groups_sem);
Qinghuang Fengc6e30872009-01-21 10:59:08 -05004583 list_for_each_entry(cache, &info->block_groups, list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04004584 spin_lock(&cache->lock);
Chris Masond3977122009-01-05 21:25:51 -05004585 printk(KERN_INFO "block group %llu has %llu bytes, %llu used "
4586 "%llu pinned %llu reserved\n",
4587 (unsigned long long)cache->key.objectid,
4588 (unsigned long long)cache->key.offset,
4589 (unsigned long long)btrfs_block_group_used(&cache->item),
4590 (unsigned long long)cache->pinned,
4591 (unsigned long long)cache->reserved);
Josef Bacik0f9dd462008-09-23 13:14:11 -04004592 btrfs_dump_free_space(cache, bytes);
4593 spin_unlock(&cache->lock);
4594 }
Josef Bacik80eb2342008-10-29 14:49:05 -04004595 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04004596}
Zheng Yane8569812008-09-26 10:05:48 -04004597
Yan Zheng11833d62009-09-11 16:11:19 -04004598int btrfs_reserve_extent(struct btrfs_trans_handle *trans,
4599 struct btrfs_root *root,
4600 u64 num_bytes, u64 min_alloc_size,
4601 u64 empty_size, u64 hint_byte,
4602 u64 search_end, struct btrfs_key *ins,
4603 u64 data)
Chris Masonfec577f2007-02-26 10:40:21 -05004604{
4605 int ret;
Chris Masonfbdc7622007-05-30 10:22:12 -04004606 u64 search_start = 0;
Chris Mason925baed2008-06-25 16:01:30 -04004607
Josef Bacik6a632092009-02-20 11:00:09 -05004608 data = btrfs_get_alloc_profile(root, data);
Chris Mason98d20f62008-04-14 09:46:10 -04004609again:
Chris Mason0ef3e662008-05-24 14:04:53 -04004610 /*
4611 * the only place that sets empty_size is btrfs_realloc_node, which
4612 * is not called recursively on allocations
4613 */
Josef Bacik83d3c962009-12-07 21:45:59 +00004614 if (empty_size || root->ref_cows)
Chris Mason6324fbf2008-03-24 15:01:59 -04004615 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0ef3e662008-05-24 14:04:53 -04004616 num_bytes + 2 * 1024 * 1024, data, 0);
Chris Mason0b86a832008-03-24 15:01:56 -04004617
Chris Masondb945352007-10-15 16:15:53 -04004618 WARN_ON(num_bytes < root->sectorsize);
4619 ret = find_free_extent(trans, root, num_bytes, empty_size,
4620 search_start, search_end, hint_byte, ins,
Chris Mason26b80032007-08-08 20:17:12 -04004621 trans->alloc_exclude_start,
4622 trans->alloc_exclude_nr, data);
Chris Mason3b951512008-04-17 11:29:12 -04004623
Chris Mason98d20f62008-04-14 09:46:10 -04004624 if (ret == -ENOSPC && num_bytes > min_alloc_size) {
4625 num_bytes = num_bytes >> 1;
Josef Bacik0f9dd462008-09-23 13:14:11 -04004626 num_bytes = num_bytes & ~(root->sectorsize - 1);
Chris Mason98d20f62008-04-14 09:46:10 -04004627 num_bytes = max(num_bytes, min_alloc_size);
Chris Mason0ef3e662008-05-24 14:04:53 -04004628 do_chunk_alloc(trans, root->fs_info->extent_root,
4629 num_bytes, data, 1);
Chris Mason98d20f62008-04-14 09:46:10 -04004630 goto again;
4631 }
Josef Bacik817d52f2009-07-13 21:29:25 -04004632 if (ret == -ENOSPC) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04004633 struct btrfs_space_info *sinfo;
4634
4635 sinfo = __find_space_info(root->fs_info, data);
Chris Masond3977122009-01-05 21:25:51 -05004636 printk(KERN_ERR "btrfs allocation failed flags %llu, "
4637 "wanted %llu\n", (unsigned long long)data,
4638 (unsigned long long)num_bytes);
Josef Bacik9ed74f22009-09-11 16:12:44 -04004639 dump_space_info(sinfo, num_bytes, 1);
Chris Mason925baed2008-06-25 16:01:30 -04004640 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04004641
4642 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004643}
4644
Chris Mason65b51a02008-08-01 15:11:20 -04004645int btrfs_free_reserved_extent(struct btrfs_root *root, u64 start, u64 len)
4646{
Josef Bacik0f9dd462008-09-23 13:14:11 -04004647 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05004648 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04004649
Josef Bacik0f9dd462008-09-23 13:14:11 -04004650 cache = btrfs_lookup_block_group(root->fs_info, start);
4651 if (!cache) {
Chris Masond3977122009-01-05 21:25:51 -05004652 printk(KERN_ERR "Unable to find block group for %llu\n",
4653 (unsigned long long)start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04004654 return -ENOSPC;
4655 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05004656
4657 ret = btrfs_discard_extent(root, start, len);
4658
Josef Bacik0f9dd462008-09-23 13:14:11 -04004659 btrfs_add_free_space(cache, start, len);
Yan Zheng11833d62009-09-11 16:11:19 -04004660 update_reserved_extents(cache, len, 0);
Chris Masonfa9c0d72009-04-03 09:47:43 -04004661 btrfs_put_block_group(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04004662
Chris Masone6dcd2d2008-07-17 12:53:50 -04004663 return ret;
4664}
4665
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004666static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
4667 struct btrfs_root *root,
4668 u64 parent, u64 root_objectid,
4669 u64 flags, u64 owner, u64 offset,
4670 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04004671{
4672 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004673 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004674 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004675 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04004676 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004677 struct extent_buffer *leaf;
4678 int type;
4679 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04004680
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004681 if (parent > 0)
4682 type = BTRFS_SHARED_DATA_REF_KEY;
4683 else
4684 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04004685
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004686 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05004687
4688 path = btrfs_alloc_path();
4689 BUG_ON(!path);
Chris Mason47e4bb92008-02-01 14:51:59 -05004690
Chris Masonb9473432009-03-13 11:00:37 -04004691 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004692 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
4693 ins, size);
Chris Masonccd467d2007-06-28 15:57:36 -04004694 BUG_ON(ret);
Josef Bacik0f9dd462008-09-23 13:14:11 -04004695
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004696 leaf = path->nodes[0];
4697 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05004698 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004699 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
4700 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
4701 btrfs_set_extent_flags(leaf, extent_item,
4702 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05004703
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004704 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
4705 btrfs_set_extent_inline_ref_type(leaf, iref, type);
4706 if (parent > 0) {
4707 struct btrfs_shared_data_ref *ref;
4708 ref = (struct btrfs_shared_data_ref *)(iref + 1);
4709 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
4710 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
4711 } else {
4712 struct btrfs_extent_data_ref *ref;
4713 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
4714 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
4715 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
4716 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
4717 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
4718 }
Chris Mason47e4bb92008-02-01 14:51:59 -05004719
4720 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05004721 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04004722
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004723 ret = update_block_group(trans, root, ins->objectid, ins->offset,
4724 1, 0);
Chris Masonf5947062008-02-04 10:10:13 -05004725 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05004726 printk(KERN_ERR "btrfs update block group failed for %llu "
4727 "%llu\n", (unsigned long long)ins->objectid,
4728 (unsigned long long)ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05004729 BUG();
4730 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04004731 return ret;
4732}
4733
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004734static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
4735 struct btrfs_root *root,
4736 u64 parent, u64 root_objectid,
4737 u64 flags, struct btrfs_disk_key *key,
4738 int level, struct btrfs_key *ins)
4739{
4740 int ret;
4741 struct btrfs_fs_info *fs_info = root->fs_info;
4742 struct btrfs_extent_item *extent_item;
4743 struct btrfs_tree_block_info *block_info;
4744 struct btrfs_extent_inline_ref *iref;
4745 struct btrfs_path *path;
4746 struct extent_buffer *leaf;
4747 u32 size = sizeof(*extent_item) + sizeof(*block_info) + sizeof(*iref);
4748
4749 path = btrfs_alloc_path();
4750 BUG_ON(!path);
4751
4752 path->leave_spinning = 1;
4753 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
4754 ins, size);
4755 BUG_ON(ret);
4756
4757 leaf = path->nodes[0];
4758 extent_item = btrfs_item_ptr(leaf, path->slots[0],
4759 struct btrfs_extent_item);
4760 btrfs_set_extent_refs(leaf, extent_item, 1);
4761 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
4762 btrfs_set_extent_flags(leaf, extent_item,
4763 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
4764 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
4765
4766 btrfs_set_tree_block_key(leaf, block_info, key);
4767 btrfs_set_tree_block_level(leaf, block_info, level);
4768
4769 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
4770 if (parent > 0) {
4771 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
4772 btrfs_set_extent_inline_ref_type(leaf, iref,
4773 BTRFS_SHARED_BLOCK_REF_KEY);
4774 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
4775 } else {
4776 btrfs_set_extent_inline_ref_type(leaf, iref,
4777 BTRFS_TREE_BLOCK_REF_KEY);
4778 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
4779 }
4780
4781 btrfs_mark_buffer_dirty(leaf);
4782 btrfs_free_path(path);
4783
4784 ret = update_block_group(trans, root, ins->objectid, ins->offset,
4785 1, 0);
4786 if (ret) {
4787 printk(KERN_ERR "btrfs update block group failed for %llu "
4788 "%llu\n", (unsigned long long)ins->objectid,
4789 (unsigned long long)ins->offset);
4790 BUG();
4791 }
4792 return ret;
4793}
4794
4795int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
4796 struct btrfs_root *root,
4797 u64 root_objectid, u64 owner,
4798 u64 offset, struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04004799{
4800 int ret;
Chris Mason1c2308f2008-09-23 13:14:13 -04004801
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004802 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04004803
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004804 ret = btrfs_add_delayed_data_ref(trans, ins->objectid, ins->offset,
4805 0, root_objectid, owner, offset,
4806 BTRFS_ADD_DELAYED_EXTENT, NULL);
Chris Masone6dcd2d2008-07-17 12:53:50 -04004807 return ret;
4808}
Chris Masone02119d2008-09-05 16:13:11 -04004809
4810/*
4811 * this is used by the tree logging recovery code. It records that
4812 * an extent has been allocated and makes sure to clear the free
4813 * space cache bits as well
4814 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004815int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
4816 struct btrfs_root *root,
4817 u64 root_objectid, u64 owner, u64 offset,
4818 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04004819{
4820 int ret;
4821 struct btrfs_block_group_cache *block_group;
Yan Zheng11833d62009-09-11 16:11:19 -04004822 struct btrfs_caching_control *caching_ctl;
4823 u64 start = ins->objectid;
4824 u64 num_bytes = ins->offset;
Chris Masone02119d2008-09-05 16:13:11 -04004825
Chris Masone02119d2008-09-05 16:13:11 -04004826 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
Josef Bacik817d52f2009-07-13 21:29:25 -04004827 cache_block_group(block_group);
Yan Zheng11833d62009-09-11 16:11:19 -04004828 caching_ctl = get_caching_control(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04004829
Yan Zheng11833d62009-09-11 16:11:19 -04004830 if (!caching_ctl) {
4831 BUG_ON(!block_group_cache_done(block_group));
4832 ret = btrfs_remove_free_space(block_group, start, num_bytes);
4833 BUG_ON(ret);
4834 } else {
4835 mutex_lock(&caching_ctl->mutex);
4836
4837 if (start >= caching_ctl->progress) {
4838 ret = add_excluded_extent(root, start, num_bytes);
4839 BUG_ON(ret);
4840 } else if (start + num_bytes <= caching_ctl->progress) {
4841 ret = btrfs_remove_free_space(block_group,
4842 start, num_bytes);
4843 BUG_ON(ret);
4844 } else {
4845 num_bytes = caching_ctl->progress - start;
4846 ret = btrfs_remove_free_space(block_group,
4847 start, num_bytes);
4848 BUG_ON(ret);
4849
4850 start = caching_ctl->progress;
4851 num_bytes = ins->objectid + ins->offset -
4852 caching_ctl->progress;
4853 ret = add_excluded_extent(root, start, num_bytes);
4854 BUG_ON(ret);
4855 }
4856
4857 mutex_unlock(&caching_ctl->mutex);
4858 put_caching_control(caching_ctl);
4859 }
4860
4861 update_reserved_extents(block_group, ins->offset, 1);
Chris Masonfa9c0d72009-04-03 09:47:43 -04004862 btrfs_put_block_group(block_group);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004863 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
4864 0, owner, offset, ins, 1);
Chris Masone02119d2008-09-05 16:13:11 -04004865 return ret;
4866}
4867
Chris Masone6dcd2d2008-07-17 12:53:50 -04004868/*
4869 * finds a free extent and does all the dirty work required for allocation
4870 * returns the key for the extent through ins, and a tree buffer for
4871 * the first block of the extent through buf.
4872 *
4873 * returns 0 if everything worked, non-zero otherwise.
4874 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004875static int alloc_tree_block(struct btrfs_trans_handle *trans,
4876 struct btrfs_root *root,
4877 u64 num_bytes, u64 parent, u64 root_objectid,
4878 struct btrfs_disk_key *key, int level,
4879 u64 empty_size, u64 hint_byte, u64 search_end,
4880 struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04004881{
4882 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004883 u64 flags = 0;
4884
Yan Zheng11833d62009-09-11 16:11:19 -04004885 ret = btrfs_reserve_extent(trans, root, num_bytes, num_bytes,
4886 empty_size, hint_byte, search_end,
4887 ins, 0);
Josef Bacik817d52f2009-07-13 21:29:25 -04004888 if (ret)
4889 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004890
4891 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
4892 if (parent == 0)
4893 parent = ins->objectid;
4894 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
4895 } else
4896 BUG_ON(parent > 0);
4897
Chris Masond00aff02008-09-11 15:54:42 -04004898 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004899 struct btrfs_delayed_extent_op *extent_op;
4900 extent_op = kmalloc(sizeof(*extent_op), GFP_NOFS);
4901 BUG_ON(!extent_op);
4902 if (key)
4903 memcpy(&extent_op->key, key, sizeof(extent_op->key));
4904 else
4905 memset(&extent_op->key, 0, sizeof(extent_op->key));
4906 extent_op->flags_to_set = flags;
4907 extent_op->update_key = 1;
4908 extent_op->update_flags = 1;
4909 extent_op->is_data = 0;
4910
4911 ret = btrfs_add_delayed_tree_ref(trans, ins->objectid,
4912 ins->offset, parent, root_objectid,
4913 level, BTRFS_ADD_DELAYED_EXTENT,
4914 extent_op);
Chris Masond00aff02008-09-11 15:54:42 -04004915 BUG_ON(ret);
Chris Masond00aff02008-09-11 15:54:42 -04004916 }
Yan, Zheng86b9f2e2009-11-12 09:36:50 +00004917
4918 if (root_objectid == root->root_key.objectid) {
4919 u64 used;
4920 spin_lock(&root->node_lock);
4921 used = btrfs_root_used(&root->root_item) + num_bytes;
4922 btrfs_set_root_used(&root->root_item, used);
4923 spin_unlock(&root->node_lock);
4924 }
Chris Mason925baed2008-06-25 16:01:30 -04004925 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05004926}
Chris Mason65b51a02008-08-01 15:11:20 -04004927
4928struct extent_buffer *btrfs_init_new_buffer(struct btrfs_trans_handle *trans,
4929 struct btrfs_root *root,
Chris Mason4008c042009-02-12 14:09:45 -05004930 u64 bytenr, u32 blocksize,
4931 int level)
Chris Mason65b51a02008-08-01 15:11:20 -04004932{
4933 struct extent_buffer *buf;
4934
4935 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
4936 if (!buf)
4937 return ERR_PTR(-ENOMEM);
4938 btrfs_set_header_generation(buf, trans->transid);
Chris Mason4008c042009-02-12 14:09:45 -05004939 btrfs_set_buffer_lockdep_class(buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04004940 btrfs_tree_lock(buf);
4941 clean_tree_block(trans, root, buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05004942
4943 btrfs_set_lock_blocking(buf);
Chris Mason65b51a02008-08-01 15:11:20 -04004944 btrfs_set_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05004945
Chris Masond0c803c2008-09-11 16:17:57 -04004946 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +00004947 /*
4948 * we allow two log transactions at a time, use different
4949 * EXENT bit to differentiate dirty pages.
4950 */
4951 if (root->log_transid % 2 == 0)
4952 set_extent_dirty(&root->dirty_log_pages, buf->start,
4953 buf->start + buf->len - 1, GFP_NOFS);
4954 else
4955 set_extent_new(&root->dirty_log_pages, buf->start,
4956 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond0c803c2008-09-11 16:17:57 -04004957 } else {
4958 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
4959 buf->start + buf->len - 1, GFP_NOFS);
4960 }
Chris Mason65b51a02008-08-01 15:11:20 -04004961 trans->blocks_used++;
Chris Masonb4ce94d2009-02-04 09:25:08 -05004962 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04004963 return buf;
4964}
4965
Chris Masonfec577f2007-02-26 10:40:21 -05004966/*
4967 * helper function to allocate a block for a given tree
4968 * returns the tree buffer or NULL.
4969 */
Chris Mason5f39d392007-10-15 16:14:19 -04004970struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004971 struct btrfs_root *root, u32 blocksize,
4972 u64 parent, u64 root_objectid,
4973 struct btrfs_disk_key *key, int level,
4974 u64 hint, u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05004975{
Chris Masone2fa7222007-03-12 16:22:34 -04004976 struct btrfs_key ins;
Chris Masonfec577f2007-02-26 10:40:21 -05004977 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -04004978 struct extent_buffer *buf;
Chris Masonfec577f2007-02-26 10:40:21 -05004979
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004980 ret = alloc_tree_block(trans, root, blocksize, parent, root_objectid,
4981 key, level, empty_size, hint, (u64)-1, &ins);
Chris Masonfec577f2007-02-26 10:40:21 -05004982 if (ret) {
Chris Mason54aa1f42007-06-22 14:16:25 -04004983 BUG_ON(ret > 0);
4984 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05004985 }
Chris Mason55c69072008-01-09 15:55:33 -05004986
Chris Mason4008c042009-02-12 14:09:45 -05004987 buf = btrfs_init_new_buffer(trans, root, ins.objectid,
4988 blocksize, level);
Chris Masonfec577f2007-02-26 10:40:21 -05004989 return buf;
4990}
Chris Masona28ec192007-03-06 20:08:01 -05004991
Yan Zheng2c47e6052009-06-27 21:07:35 -04004992struct walk_control {
4993 u64 refs[BTRFS_MAX_LEVEL];
4994 u64 flags[BTRFS_MAX_LEVEL];
4995 struct btrfs_key update_progress;
4996 int stage;
4997 int level;
4998 int shared_level;
4999 int update_ref;
5000 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005001 int reada_slot;
5002 int reada_count;
Yan Zheng2c47e6052009-06-27 21:07:35 -04005003};
5004
5005#define DROP_REFERENCE 1
5006#define UPDATE_BACKREF 2
5007
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005008static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
5009 struct btrfs_root *root,
5010 struct walk_control *wc,
5011 struct btrfs_path *path)
5012{
5013 u64 bytenr;
5014 u64 generation;
5015 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04005016 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005017 u64 last = 0;
5018 u32 nritems;
5019 u32 blocksize;
5020 struct btrfs_key key;
5021 struct extent_buffer *eb;
5022 int ret;
5023 int slot;
5024 int nread = 0;
5025
5026 if (path->slots[wc->level] < wc->reada_slot) {
5027 wc->reada_count = wc->reada_count * 2 / 3;
5028 wc->reada_count = max(wc->reada_count, 2);
5029 } else {
5030 wc->reada_count = wc->reada_count * 3 / 2;
5031 wc->reada_count = min_t(int, wc->reada_count,
5032 BTRFS_NODEPTRS_PER_BLOCK(root));
5033 }
5034
5035 eb = path->nodes[wc->level];
5036 nritems = btrfs_header_nritems(eb);
5037 blocksize = btrfs_level_size(root, wc->level - 1);
5038
5039 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
5040 if (nread >= wc->reada_count)
5041 break;
5042
5043 cond_resched();
5044 bytenr = btrfs_node_blockptr(eb, slot);
5045 generation = btrfs_node_ptr_generation(eb, slot);
5046
5047 if (slot == path->slots[wc->level])
5048 goto reada;
5049
5050 if (wc->stage == UPDATE_BACKREF &&
5051 generation <= root->root_key.offset)
5052 continue;
5053
Yan, Zheng94fcca92009-10-09 09:25:16 -04005054 /* We don't lock the tree block, it's OK to be racy here */
5055 ret = btrfs_lookup_extent_info(trans, root, bytenr, blocksize,
5056 &refs, &flags);
5057 BUG_ON(ret);
5058 BUG_ON(refs == 0);
5059
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005060 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005061 if (refs == 1)
5062 goto reada;
5063
Yan, Zheng94fcca92009-10-09 09:25:16 -04005064 if (wc->level == 1 &&
5065 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5066 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005067 if (!wc->update_ref ||
5068 generation <= root->root_key.offset)
5069 continue;
5070 btrfs_node_key_to_cpu(eb, &key, slot);
5071 ret = btrfs_comp_cpu_keys(&key,
5072 &wc->update_progress);
5073 if (ret < 0)
5074 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04005075 } else {
5076 if (wc->level == 1 &&
5077 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5078 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005079 }
5080reada:
5081 ret = readahead_tree_block(root, bytenr, blocksize,
5082 generation);
5083 if (ret)
5084 break;
5085 last = bytenr + blocksize;
5086 nread++;
5087 }
5088 wc->reada_slot = slot;
5089}
5090
Chris Mason9aca1d52007-03-13 11:09:37 -04005091/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04005092 * hepler to process tree block while walking down the tree.
5093 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04005094 * when wc->stage == UPDATE_BACKREF, this function updates
5095 * back refs for pointers in the block.
5096 *
5097 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04005098 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04005099static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
5100 struct btrfs_root *root,
5101 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04005102 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04005103{
5104 int level = wc->level;
5105 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04005106 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
5107 int ret;
5108
5109 if (wc->stage == UPDATE_BACKREF &&
5110 btrfs_header_owner(eb) != root->root_key.objectid)
5111 return 1;
5112
5113 /*
5114 * when reference count of tree block is 1, it won't increase
5115 * again. once full backref flag is set, we never clear it.
5116 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04005117 if (lookup_info &&
5118 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
5119 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04005120 BUG_ON(!path->locks[level]);
5121 ret = btrfs_lookup_extent_info(trans, root,
5122 eb->start, eb->len,
5123 &wc->refs[level],
5124 &wc->flags[level]);
5125 BUG_ON(ret);
5126 BUG_ON(wc->refs[level] == 0);
5127 }
5128
Yan Zheng2c47e6052009-06-27 21:07:35 -04005129 if (wc->stage == DROP_REFERENCE) {
5130 if (wc->refs[level] > 1)
5131 return 1;
5132
5133 if (path->locks[level] && !wc->keep_locks) {
5134 btrfs_tree_unlock(eb);
5135 path->locks[level] = 0;
5136 }
5137 return 0;
5138 }
5139
5140 /* wc->stage == UPDATE_BACKREF */
5141 if (!(wc->flags[level] & flag)) {
5142 BUG_ON(!path->locks[level]);
5143 ret = btrfs_inc_ref(trans, root, eb, 1);
5144 BUG_ON(ret);
5145 ret = btrfs_dec_ref(trans, root, eb, 0);
5146 BUG_ON(ret);
5147 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
5148 eb->len, flag, 0);
5149 BUG_ON(ret);
5150 wc->flags[level] |= flag;
5151 }
5152
5153 /*
5154 * the block is shared by multiple trees, so it's not good to
5155 * keep the tree lock
5156 */
5157 if (path->locks[level] && level > 0) {
5158 btrfs_tree_unlock(eb);
5159 path->locks[level] = 0;
5160 }
5161 return 0;
5162}
5163
5164/*
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005165 * hepler to process tree block pointer.
5166 *
5167 * when wc->stage == DROP_REFERENCE, this function checks
5168 * reference count of the block pointed to. if the block
5169 * is shared and we need update back refs for the subtree
5170 * rooted at the block, this function changes wc->stage to
5171 * UPDATE_BACKREF. if the block is shared and there is no
5172 * need to update back, this function drops the reference
5173 * to the block.
5174 *
5175 * NOTE: return value 1 means we should stop walking down.
5176 */
5177static noinline int do_walk_down(struct btrfs_trans_handle *trans,
5178 struct btrfs_root *root,
5179 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04005180 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005181{
5182 u64 bytenr;
5183 u64 generation;
5184 u64 parent;
5185 u32 blocksize;
5186 struct btrfs_key key;
5187 struct extent_buffer *next;
5188 int level = wc->level;
5189 int reada = 0;
5190 int ret = 0;
5191
5192 generation = btrfs_node_ptr_generation(path->nodes[level],
5193 path->slots[level]);
5194 /*
5195 * if the lower level block was created before the snapshot
5196 * was created, we know there is no need to update back refs
5197 * for the subtree
5198 */
5199 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04005200 generation <= root->root_key.offset) {
5201 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005202 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04005203 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005204
5205 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
5206 blocksize = btrfs_level_size(root, level - 1);
5207
5208 next = btrfs_find_tree_block(root, bytenr, blocksize);
5209 if (!next) {
5210 next = btrfs_find_create_tree_block(root, bytenr, blocksize);
Miao Xie90d2c512010-03-25 12:37:12 +00005211 if (!next)
5212 return -ENOMEM;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005213 reada = 1;
5214 }
5215 btrfs_tree_lock(next);
5216 btrfs_set_lock_blocking(next);
5217
Yan, Zheng94fcca92009-10-09 09:25:16 -04005218 ret = btrfs_lookup_extent_info(trans, root, bytenr, blocksize,
5219 &wc->refs[level - 1],
5220 &wc->flags[level - 1]);
5221 BUG_ON(ret);
5222 BUG_ON(wc->refs[level - 1] == 0);
5223 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005224
Yan, Zheng94fcca92009-10-09 09:25:16 -04005225 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005226 if (wc->refs[level - 1] > 1) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04005227 if (level == 1 &&
5228 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5229 goto skip;
5230
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005231 if (!wc->update_ref ||
5232 generation <= root->root_key.offset)
5233 goto skip;
5234
5235 btrfs_node_key_to_cpu(path->nodes[level], &key,
5236 path->slots[level]);
5237 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
5238 if (ret < 0)
5239 goto skip;
5240
5241 wc->stage = UPDATE_BACKREF;
5242 wc->shared_level = level - 1;
5243 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04005244 } else {
5245 if (level == 1 &&
5246 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5247 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005248 }
5249
5250 if (!btrfs_buffer_uptodate(next, generation)) {
5251 btrfs_tree_unlock(next);
5252 free_extent_buffer(next);
5253 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04005254 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005255 }
5256
5257 if (!next) {
5258 if (reada && level == 1)
5259 reada_walk_down(trans, root, wc, path);
5260 next = read_tree_block(root, bytenr, blocksize, generation);
5261 btrfs_tree_lock(next);
5262 btrfs_set_lock_blocking(next);
5263 }
5264
5265 level--;
5266 BUG_ON(level != btrfs_header_level(next));
5267 path->nodes[level] = next;
5268 path->slots[level] = 0;
5269 path->locks[level] = 1;
5270 wc->level = level;
5271 if (wc->level == 1)
5272 wc->reada_slot = 0;
5273 return 0;
5274skip:
5275 wc->refs[level - 1] = 0;
5276 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04005277 if (wc->stage == DROP_REFERENCE) {
5278 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
5279 parent = path->nodes[level]->start;
5280 } else {
5281 BUG_ON(root->root_key.objectid !=
5282 btrfs_header_owner(path->nodes[level]));
5283 parent = 0;
5284 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005285
Yan, Zheng94fcca92009-10-09 09:25:16 -04005286 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
5287 root->root_key.objectid, level - 1, 0);
5288 BUG_ON(ret);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005289 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005290 btrfs_tree_unlock(next);
5291 free_extent_buffer(next);
Yan, Zheng94fcca92009-10-09 09:25:16 -04005292 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005293 return 1;
5294}
5295
5296/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04005297 * hepler to process tree block while walking up the tree.
5298 *
5299 * when wc->stage == DROP_REFERENCE, this function drops
5300 * reference count on the block.
5301 *
5302 * when wc->stage == UPDATE_BACKREF, this function changes
5303 * wc->stage back to DROP_REFERENCE if we changed wc->stage
5304 * to UPDATE_BACKREF previously while processing the block.
5305 *
5306 * NOTE: return value 1 means we should stop walking up.
5307 */
5308static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
5309 struct btrfs_root *root,
5310 struct btrfs_path *path,
5311 struct walk_control *wc)
5312{
5313 int ret = 0;
5314 int level = wc->level;
5315 struct extent_buffer *eb = path->nodes[level];
5316 u64 parent = 0;
5317
5318 if (wc->stage == UPDATE_BACKREF) {
5319 BUG_ON(wc->shared_level < level);
5320 if (level < wc->shared_level)
5321 goto out;
5322
Yan Zheng2c47e6052009-06-27 21:07:35 -04005323 ret = find_next_key(path, level + 1, &wc->update_progress);
5324 if (ret > 0)
5325 wc->update_ref = 0;
5326
5327 wc->stage = DROP_REFERENCE;
5328 wc->shared_level = -1;
5329 path->slots[level] = 0;
5330
5331 /*
5332 * check reference count again if the block isn't locked.
5333 * we should start walking down the tree again if reference
5334 * count is one.
5335 */
5336 if (!path->locks[level]) {
5337 BUG_ON(level == 0);
5338 btrfs_tree_lock(eb);
5339 btrfs_set_lock_blocking(eb);
5340 path->locks[level] = 1;
5341
5342 ret = btrfs_lookup_extent_info(trans, root,
5343 eb->start, eb->len,
5344 &wc->refs[level],
5345 &wc->flags[level]);
5346 BUG_ON(ret);
5347 BUG_ON(wc->refs[level] == 0);
5348 if (wc->refs[level] == 1) {
5349 btrfs_tree_unlock(eb);
5350 path->locks[level] = 0;
5351 return 1;
5352 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04005353 }
5354 }
5355
5356 /* wc->stage == DROP_REFERENCE */
5357 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
5358
5359 if (wc->refs[level] == 1) {
5360 if (level == 0) {
5361 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
5362 ret = btrfs_dec_ref(trans, root, eb, 1);
5363 else
5364 ret = btrfs_dec_ref(trans, root, eb, 0);
5365 BUG_ON(ret);
5366 }
5367 /* make block locked assertion in clean_tree_block happy */
5368 if (!path->locks[level] &&
5369 btrfs_header_generation(eb) == trans->transid) {
5370 btrfs_tree_lock(eb);
5371 btrfs_set_lock_blocking(eb);
5372 path->locks[level] = 1;
5373 }
5374 clean_tree_block(trans, root, eb);
5375 }
5376
5377 if (eb == root->node) {
5378 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
5379 parent = eb->start;
5380 else
5381 BUG_ON(root->root_key.objectid !=
5382 btrfs_header_owner(eb));
5383 } else {
5384 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
5385 parent = path->nodes[level + 1]->start;
5386 else
5387 BUG_ON(root->root_key.objectid !=
5388 btrfs_header_owner(path->nodes[level + 1]));
5389 }
5390
5391 ret = btrfs_free_extent(trans, root, eb->start, eb->len, parent,
5392 root->root_key.objectid, level, 0);
5393 BUG_ON(ret);
5394out:
5395 wc->refs[level] = 0;
5396 wc->flags[level] = 0;
5397 return ret;
5398}
5399
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005400static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
5401 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04005402 struct btrfs_path *path,
5403 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04005404{
Yan Zheng2c47e6052009-06-27 21:07:35 -04005405 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04005406 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04005407 int ret;
5408
Yan Zheng2c47e6052009-06-27 21:07:35 -04005409 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04005410 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04005411 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04005412 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04005413
Yan Zheng2c47e6052009-06-27 21:07:35 -04005414 if (level == 0)
5415 break;
5416
Yan, Zheng7a7965f2010-02-01 02:41:17 +00005417 if (path->slots[level] >=
5418 btrfs_header_nritems(path->nodes[level]))
5419 break;
5420
Yan, Zheng94fcca92009-10-09 09:25:16 -04005421 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005422 if (ret > 0) {
5423 path->slots[level]++;
5424 continue;
Miao Xie90d2c512010-03-25 12:37:12 +00005425 } else if (ret < 0)
5426 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005427 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04005428 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04005429 return 0;
5430}
5431
Chris Masond3977122009-01-05 21:25:51 -05005432static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05005433 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04005434 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04005435 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05005436{
Yan Zheng2c47e6052009-06-27 21:07:35 -04005437 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05005438 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04005439
Yan Zheng2c47e6052009-06-27 21:07:35 -04005440 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
5441 while (level < max_level && path->nodes[level]) {
5442 wc->level = level;
5443 if (path->slots[level] + 1 <
5444 btrfs_header_nritems(path->nodes[level])) {
5445 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05005446 return 0;
5447 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04005448 ret = walk_up_proc(trans, root, path, wc);
5449 if (ret > 0)
5450 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05005451
Yan Zheng2c47e6052009-06-27 21:07:35 -04005452 if (path->locks[level]) {
5453 btrfs_tree_unlock(path->nodes[level]);
5454 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04005455 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04005456 free_extent_buffer(path->nodes[level]);
5457 path->nodes[level] = NULL;
5458 level++;
Chris Mason20524f02007-03-10 06:35:47 -05005459 }
5460 }
5461 return 1;
5462}
5463
Chris Mason9aca1d52007-03-13 11:09:37 -04005464/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04005465 * drop a subvolume tree.
5466 *
5467 * this function traverses the tree freeing any blocks that only
5468 * referenced by the tree.
5469 *
5470 * when a shared tree block is found. this function decreases its
5471 * reference count by one. if update_ref is true, this function
5472 * also make sure backrefs for the shared block and all lower level
5473 * blocks are properly updated.
Chris Mason9aca1d52007-03-13 11:09:37 -04005474 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04005475int btrfs_drop_snapshot(struct btrfs_root *root, int update_ref)
Chris Mason20524f02007-03-10 06:35:47 -05005476{
Chris Mason5caf2a02007-04-02 11:20:42 -04005477 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04005478 struct btrfs_trans_handle *trans;
5479 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04005480 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04005481 struct walk_control *wc;
5482 struct btrfs_key key;
5483 int err = 0;
5484 int ret;
5485 int level;
Chris Mason20524f02007-03-10 06:35:47 -05005486
Chris Mason5caf2a02007-04-02 11:20:42 -04005487 path = btrfs_alloc_path();
5488 BUG_ON(!path);
Chris Mason20524f02007-03-10 06:35:47 -05005489
Yan Zheng2c47e6052009-06-27 21:07:35 -04005490 wc = kzalloc(sizeof(*wc), GFP_NOFS);
5491 BUG_ON(!wc);
5492
5493 trans = btrfs_start_transaction(tree_root, 1);
5494
Chris Mason9f3a7422007-08-07 15:52:19 -04005495 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04005496 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005497 path->nodes[level] = btrfs_lock_root_node(root);
5498 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04005499 path->slots[level] = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005500 path->locks[level] = 1;
Yan Zheng2c47e6052009-06-27 21:07:35 -04005501 memset(&wc->update_progress, 0,
5502 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04005503 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04005504 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04005505 memcpy(&wc->update_progress, &key,
5506 sizeof(wc->update_progress));
5507
Chris Mason6702ed42007-08-07 16:15:09 -04005508 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04005509 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04005510 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04005511 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5512 path->lowest_level = 0;
5513 if (ret < 0) {
5514 err = ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04005515 goto out;
5516 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005517 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04005518
Chris Mason7d9eb122008-07-08 14:19:17 -04005519 /*
5520 * unlock our path, this is safe because only this
5521 * function is allowed to delete this snapshot
5522 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005523 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04005524
Yan Zheng2c47e6052009-06-27 21:07:35 -04005525 level = btrfs_header_level(root->node);
5526 while (1) {
5527 btrfs_tree_lock(path->nodes[level]);
5528 btrfs_set_lock_blocking(path->nodes[level]);
5529
5530 ret = btrfs_lookup_extent_info(trans, root,
5531 path->nodes[level]->start,
5532 path->nodes[level]->len,
5533 &wc->refs[level],
5534 &wc->flags[level]);
5535 BUG_ON(ret);
5536 BUG_ON(wc->refs[level] == 0);
5537
5538 if (level == root_item->drop_level)
5539 break;
5540
5541 btrfs_tree_unlock(path->nodes[level]);
5542 WARN_ON(wc->refs[level] != 1);
5543 level--;
5544 }
5545 }
5546
5547 wc->level = level;
5548 wc->shared_level = -1;
5549 wc->stage = DROP_REFERENCE;
5550 wc->update_ref = update_ref;
5551 wc->keep_locks = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005552 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04005553
5554 while (1) {
5555 ret = walk_down_tree(trans, root, path, wc);
5556 if (ret < 0) {
5557 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04005558 break;
5559 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04005560
5561 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
5562 if (ret < 0) {
5563 err = ret;
5564 break;
5565 }
5566
5567 if (ret > 0) {
5568 BUG_ON(wc->stage != DROP_REFERENCE);
5569 break;
5570 }
5571
5572 if (wc->stage == DROP_REFERENCE) {
5573 level = wc->level;
5574 btrfs_node_key(path->nodes[level],
5575 &root_item->drop_progress,
5576 path->slots[level]);
5577 root_item->drop_level = level;
5578 }
5579
5580 BUG_ON(wc->level == 0);
5581 if (trans->transaction->in_commit ||
5582 trans->transaction->delayed_refs.flushing) {
5583 ret = btrfs_update_root(trans, tree_root,
5584 &root->root_key,
5585 root_item);
5586 BUG_ON(ret);
5587
5588 btrfs_end_transaction(trans, tree_root);
5589 trans = btrfs_start_transaction(tree_root, 1);
5590 } else {
5591 unsigned long update;
Chris Masonc3e69d52009-03-13 10:17:05 -04005592 update = trans->delayed_ref_updates;
5593 trans->delayed_ref_updates = 0;
5594 if (update)
Yan Zheng2c47e6052009-06-27 21:07:35 -04005595 btrfs_run_delayed_refs(trans, tree_root,
5596 update);
Chris Masonc3e69d52009-03-13 10:17:05 -04005597 }
Chris Mason20524f02007-03-10 06:35:47 -05005598 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04005599 btrfs_release_path(root, path);
5600 BUG_ON(err);
5601
5602 ret = btrfs_del_root(trans, tree_root, &root->root_key);
5603 BUG_ON(ret);
5604
Yan, Zheng76dda932009-09-21 16:00:26 -04005605 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
5606 ret = btrfs_find_last_root(tree_root, root->root_key.objectid,
5607 NULL, NULL);
5608 BUG_ON(ret < 0);
5609 if (ret > 0) {
5610 ret = btrfs_del_orphan_item(trans, tree_root,
5611 root->root_key.objectid);
5612 BUG_ON(ret);
5613 }
5614 }
5615
5616 if (root->in_radix) {
5617 btrfs_free_fs_root(tree_root->fs_info, root);
5618 } else {
5619 free_extent_buffer(root->node);
5620 free_extent_buffer(root->commit_root);
5621 kfree(root);
5622 }
Chris Mason9f3a7422007-08-07 15:52:19 -04005623out:
Yan Zheng2c47e6052009-06-27 21:07:35 -04005624 btrfs_end_transaction(trans, tree_root);
5625 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04005626 btrfs_free_path(path);
Yan Zheng2c47e6052009-06-27 21:07:35 -04005627 return err;
Chris Mason20524f02007-03-10 06:35:47 -05005628}
Chris Mason9078a3e2007-04-26 16:46:15 -04005629
Yan Zheng2c47e6052009-06-27 21:07:35 -04005630/*
5631 * drop subtree rooted at tree block 'node'.
5632 *
5633 * NOTE: this function will unlock and release tree block 'node'
5634 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04005635int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
5636 struct btrfs_root *root,
5637 struct extent_buffer *node,
5638 struct extent_buffer *parent)
5639{
5640 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04005641 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04005642 int level;
5643 int parent_level;
5644 int ret = 0;
5645 int wret;
5646
Yan Zheng2c47e6052009-06-27 21:07:35 -04005647 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
5648
Yan Zhengf82d02d2008-10-29 14:49:05 -04005649 path = btrfs_alloc_path();
5650 BUG_ON(!path);
5651
Yan Zheng2c47e6052009-06-27 21:07:35 -04005652 wc = kzalloc(sizeof(*wc), GFP_NOFS);
5653 BUG_ON(!wc);
5654
Chris Masonb9447ef2009-03-09 11:45:38 -04005655 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04005656 parent_level = btrfs_header_level(parent);
5657 extent_buffer_get(parent);
5658 path->nodes[parent_level] = parent;
5659 path->slots[parent_level] = btrfs_header_nritems(parent);
5660
Chris Masonb9447ef2009-03-09 11:45:38 -04005661 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04005662 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04005663 path->nodes[level] = node;
5664 path->slots[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04005665 path->locks[level] = 1;
5666
5667 wc->refs[parent_level] = 1;
5668 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
5669 wc->level = level;
5670 wc->shared_level = -1;
5671 wc->stage = DROP_REFERENCE;
5672 wc->update_ref = 0;
5673 wc->keep_locks = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04005674 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zhengf82d02d2008-10-29 14:49:05 -04005675
5676 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04005677 wret = walk_down_tree(trans, root, path, wc);
5678 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04005679 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04005680 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04005681 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04005682
Yan Zheng2c47e6052009-06-27 21:07:35 -04005683 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04005684 if (wret < 0)
5685 ret = wret;
5686 if (wret != 0)
5687 break;
5688 }
5689
Yan Zheng2c47e6052009-06-27 21:07:35 -04005690 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04005691 btrfs_free_path(path);
5692 return ret;
5693}
5694
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005695#if 0
Chris Mason8e7bf942008-04-28 09:02:36 -04005696static unsigned long calc_ra(unsigned long start, unsigned long last,
5697 unsigned long nr)
5698{
5699 return min(last, start + nr - 1);
5700}
5701
Chris Masond3977122009-01-05 21:25:51 -05005702static noinline int relocate_inode_pages(struct inode *inode, u64 start,
Chris Mason98ed5172008-01-03 10:01:48 -05005703 u64 len)
Chris Masonedbd8d42007-12-21 16:27:24 -05005704{
5705 u64 page_start;
5706 u64 page_end;
Zheng Yan1a40e232008-09-26 10:09:34 -04005707 unsigned long first_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05005708 unsigned long last_index;
Chris Masonedbd8d42007-12-21 16:27:24 -05005709 unsigned long i;
5710 struct page *page;
Chris Masond1310b22008-01-24 16:13:08 -05005711 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason4313b392008-01-03 09:08:48 -05005712 struct file_ra_state *ra;
Chris Mason3eaa2882008-07-24 11:57:52 -04005713 struct btrfs_ordered_extent *ordered;
Zheng Yan1a40e232008-09-26 10:09:34 -04005714 unsigned int total_read = 0;
5715 unsigned int total_dirty = 0;
5716 int ret = 0;
Chris Mason4313b392008-01-03 09:08:48 -05005717
5718 ra = kzalloc(sizeof(*ra), GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05005719
5720 mutex_lock(&inode->i_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04005721 first_index = start >> PAGE_CACHE_SHIFT;
Chris Masonedbd8d42007-12-21 16:27:24 -05005722 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
5723
Zheng Yan1a40e232008-09-26 10:09:34 -04005724 /* make sure the dirty trick played by the caller work */
5725 ret = invalidate_inode_pages2_range(inode->i_mapping,
5726 first_index, last_index);
5727 if (ret)
5728 goto out_unlock;
Chris Mason8e7bf942008-04-28 09:02:36 -04005729
Chris Mason4313b392008-01-03 09:08:48 -05005730 file_ra_state_init(ra, inode->i_mapping);
Chris Masonedbd8d42007-12-21 16:27:24 -05005731
Zheng Yan1a40e232008-09-26 10:09:34 -04005732 for (i = first_index ; i <= last_index; i++) {
5733 if (total_read % ra->ra_pages == 0) {
Chris Mason8e7bf942008-04-28 09:02:36 -04005734 btrfs_force_ra(inode->i_mapping, ra, NULL, i,
Zheng Yan1a40e232008-09-26 10:09:34 -04005735 calc_ra(i, last_index, ra->ra_pages));
Chris Mason8e7bf942008-04-28 09:02:36 -04005736 }
5737 total_read++;
Chris Mason3eaa2882008-07-24 11:57:52 -04005738again:
5739 if (((u64)i << PAGE_CACHE_SHIFT) > i_size_read(inode))
Zheng Yan1a40e232008-09-26 10:09:34 -04005740 BUG_ON(1);
Chris Masonedbd8d42007-12-21 16:27:24 -05005741 page = grab_cache_page(inode->i_mapping, i);
Chris Masona061fc82008-05-07 11:43:44 -04005742 if (!page) {
Zheng Yan1a40e232008-09-26 10:09:34 -04005743 ret = -ENOMEM;
Chris Masonedbd8d42007-12-21 16:27:24 -05005744 goto out_unlock;
Chris Masona061fc82008-05-07 11:43:44 -04005745 }
Chris Masonedbd8d42007-12-21 16:27:24 -05005746 if (!PageUptodate(page)) {
5747 btrfs_readpage(NULL, page);
5748 lock_page(page);
5749 if (!PageUptodate(page)) {
5750 unlock_page(page);
5751 page_cache_release(page);
Zheng Yan1a40e232008-09-26 10:09:34 -04005752 ret = -EIO;
Chris Masonedbd8d42007-12-21 16:27:24 -05005753 goto out_unlock;
5754 }
5755 }
Chris Masonec44a352008-04-28 15:29:52 -04005756 wait_on_page_writeback(page);
Chris Mason3eaa2882008-07-24 11:57:52 -04005757
Chris Masonedbd8d42007-12-21 16:27:24 -05005758 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
5759 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masond1310b22008-01-24 16:13:08 -05005760 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05005761
Chris Mason3eaa2882008-07-24 11:57:52 -04005762 ordered = btrfs_lookup_ordered_extent(inode, page_start);
5763 if (ordered) {
5764 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
5765 unlock_page(page);
5766 page_cache_release(page);
5767 btrfs_start_ordered_extent(inode, ordered, 1);
5768 btrfs_put_ordered_extent(ordered);
5769 goto again;
5770 }
5771 set_page_extent_mapped(page);
5772
Zheng Yan1a40e232008-09-26 10:09:34 -04005773 if (i == first_index)
5774 set_extent_bits(io_tree, page_start, page_end,
5775 EXTENT_BOUNDARY, GFP_NOFS);
Yan Zheng1f80e4d2008-12-19 10:59:04 -05005776 btrfs_set_extent_delalloc(inode, page_start, page_end);
Zheng Yan1a40e232008-09-26 10:09:34 -04005777
Chris Masona061fc82008-05-07 11:43:44 -04005778 set_page_dirty(page);
Zheng Yan1a40e232008-09-26 10:09:34 -04005779 total_dirty++;
Chris Masonedbd8d42007-12-21 16:27:24 -05005780
Chris Masond1310b22008-01-24 16:13:08 -05005781 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05005782 unlock_page(page);
5783 page_cache_release(page);
5784 }
5785
5786out_unlock:
Chris Masonec44a352008-04-28 15:29:52 -04005787 kfree(ra);
Chris Masonedbd8d42007-12-21 16:27:24 -05005788 mutex_unlock(&inode->i_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04005789 balance_dirty_pages_ratelimited_nr(inode->i_mapping, total_dirty);
Chris Masonbf4ef672008-05-08 13:26:18 -04005790 return ret;
5791}
5792
Chris Masond3977122009-01-05 21:25:51 -05005793static noinline int relocate_data_extent(struct inode *reloc_inode,
Zheng Yan1a40e232008-09-26 10:09:34 -04005794 struct btrfs_key *extent_key,
5795 u64 offset)
Chris Masonedbd8d42007-12-21 16:27:24 -05005796{
Zheng Yan1a40e232008-09-26 10:09:34 -04005797 struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
5798 struct extent_map_tree *em_tree = &BTRFS_I(reloc_inode)->extent_tree;
5799 struct extent_map *em;
Yan Zheng66435582008-10-30 14:19:50 -04005800 u64 start = extent_key->objectid - offset;
5801 u64 end = start + extent_key->offset - 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04005802
5803 em = alloc_extent_map(GFP_NOFS);
5804 BUG_ON(!em || IS_ERR(em));
5805
Yan Zheng66435582008-10-30 14:19:50 -04005806 em->start = start;
Zheng Yan1a40e232008-09-26 10:09:34 -04005807 em->len = extent_key->offset;
Chris Masonc8b97812008-10-29 14:49:59 -04005808 em->block_len = extent_key->offset;
Zheng Yan1a40e232008-09-26 10:09:34 -04005809 em->block_start = extent_key->objectid;
5810 em->bdev = root->fs_info->fs_devices->latest_bdev;
5811 set_bit(EXTENT_FLAG_PINNED, &em->flags);
5812
5813 /* setup extent map to cheat btrfs_readpage */
Yan Zheng66435582008-10-30 14:19:50 -04005814 lock_extent(&BTRFS_I(reloc_inode)->io_tree, start, end, GFP_NOFS);
Zheng Yan1a40e232008-09-26 10:09:34 -04005815 while (1) {
5816 int ret;
Chris Mason890871b2009-09-02 16:24:52 -04005817 write_lock(&em_tree->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04005818 ret = add_extent_mapping(em_tree, em);
Chris Mason890871b2009-09-02 16:24:52 -04005819 write_unlock(&em_tree->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04005820 if (ret != -EEXIST) {
5821 free_extent_map(em);
5822 break;
5823 }
Yan Zheng66435582008-10-30 14:19:50 -04005824 btrfs_drop_extent_cache(reloc_inode, start, end, 0);
Zheng Yan1a40e232008-09-26 10:09:34 -04005825 }
Yan Zheng66435582008-10-30 14:19:50 -04005826 unlock_extent(&BTRFS_I(reloc_inode)->io_tree, start, end, GFP_NOFS);
Zheng Yan1a40e232008-09-26 10:09:34 -04005827
Yan Zheng66435582008-10-30 14:19:50 -04005828 return relocate_inode_pages(reloc_inode, start, extent_key->offset);
Zheng Yan1a40e232008-09-26 10:09:34 -04005829}
5830
5831struct btrfs_ref_path {
5832 u64 extent_start;
5833 u64 nodes[BTRFS_MAX_LEVEL];
5834 u64 root_objectid;
5835 u64 root_generation;
5836 u64 owner_objectid;
Zheng Yan1a40e232008-09-26 10:09:34 -04005837 u32 num_refs;
5838 int lowest_level;
5839 int current_level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04005840 int shared_level;
5841
5842 struct btrfs_key node_keys[BTRFS_MAX_LEVEL];
5843 u64 new_nodes[BTRFS_MAX_LEVEL];
Zheng Yan1a40e232008-09-26 10:09:34 -04005844};
5845
5846struct disk_extent {
Chris Masonc8b97812008-10-29 14:49:59 -04005847 u64 ram_bytes;
Zheng Yan1a40e232008-09-26 10:09:34 -04005848 u64 disk_bytenr;
5849 u64 disk_num_bytes;
5850 u64 offset;
5851 u64 num_bytes;
Chris Masonc8b97812008-10-29 14:49:59 -04005852 u8 compression;
5853 u8 encryption;
5854 u16 other_encoding;
Zheng Yan1a40e232008-09-26 10:09:34 -04005855};
5856
5857static int is_cowonly_root(u64 root_objectid)
5858{
5859 if (root_objectid == BTRFS_ROOT_TREE_OBJECTID ||
5860 root_objectid == BTRFS_EXTENT_TREE_OBJECTID ||
5861 root_objectid == BTRFS_CHUNK_TREE_OBJECTID ||
5862 root_objectid == BTRFS_DEV_TREE_OBJECTID ||
Yan Zheng0403e472008-12-10 20:32:51 -05005863 root_objectid == BTRFS_TREE_LOG_OBJECTID ||
5864 root_objectid == BTRFS_CSUM_TREE_OBJECTID)
Zheng Yan1a40e232008-09-26 10:09:34 -04005865 return 1;
5866 return 0;
5867}
5868
Chris Masond3977122009-01-05 21:25:51 -05005869static noinline int __next_ref_path(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04005870 struct btrfs_root *extent_root,
5871 struct btrfs_ref_path *ref_path,
5872 int first_time)
5873{
5874 struct extent_buffer *leaf;
5875 struct btrfs_path *path;
Chris Mason4313b392008-01-03 09:08:48 -05005876 struct btrfs_extent_ref *ref;
Chris Masonedbd8d42007-12-21 16:27:24 -05005877 struct btrfs_key key;
5878 struct btrfs_key found_key;
Zheng Yan1a40e232008-09-26 10:09:34 -04005879 u64 bytenr;
Chris Masonedbd8d42007-12-21 16:27:24 -05005880 u32 nritems;
Zheng Yan1a40e232008-09-26 10:09:34 -04005881 int level;
5882 int ret = 1;
Chris Masonedbd8d42007-12-21 16:27:24 -05005883
Zheng Yan1a40e232008-09-26 10:09:34 -04005884 path = btrfs_alloc_path();
5885 if (!path)
5886 return -ENOMEM;
5887
Zheng Yan1a40e232008-09-26 10:09:34 -04005888 if (first_time) {
5889 ref_path->lowest_level = -1;
5890 ref_path->current_level = -1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04005891 ref_path->shared_level = -1;
Zheng Yan1a40e232008-09-26 10:09:34 -04005892 goto walk_up;
Chris Masona061fc82008-05-07 11:43:44 -04005893 }
Zheng Yan1a40e232008-09-26 10:09:34 -04005894walk_down:
5895 level = ref_path->current_level - 1;
5896 while (level >= -1) {
5897 u64 parent;
5898 if (level < ref_path->lowest_level)
5899 break;
Chris Masonedbd8d42007-12-21 16:27:24 -05005900
Chris Masond3977122009-01-05 21:25:51 -05005901 if (level >= 0)
Zheng Yan1a40e232008-09-26 10:09:34 -04005902 bytenr = ref_path->nodes[level];
Chris Masond3977122009-01-05 21:25:51 -05005903 else
Zheng Yan1a40e232008-09-26 10:09:34 -04005904 bytenr = ref_path->extent_start;
Zheng Yan1a40e232008-09-26 10:09:34 -04005905 BUG_ON(bytenr == 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05005906
Zheng Yan1a40e232008-09-26 10:09:34 -04005907 parent = ref_path->nodes[level + 1];
5908 ref_path->nodes[level + 1] = 0;
5909 ref_path->current_level = level;
5910 BUG_ON(parent == 0);
5911
5912 key.objectid = bytenr;
5913 key.offset = parent + 1;
5914 key.type = BTRFS_EXTENT_REF_KEY;
5915
5916 ret = btrfs_search_slot(trans, extent_root, &key, path, 0, 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05005917 if (ret < 0)
5918 goto out;
Zheng Yan1a40e232008-09-26 10:09:34 -04005919 BUG_ON(ret == 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05005920
Chris Masonedbd8d42007-12-21 16:27:24 -05005921 leaf = path->nodes[0];
5922 nritems = btrfs_header_nritems(leaf);
Zheng Yan1a40e232008-09-26 10:09:34 -04005923 if (path->slots[0] >= nritems) {
Chris Masona061fc82008-05-07 11:43:44 -04005924 ret = btrfs_next_leaf(extent_root, path);
Chris Masona061fc82008-05-07 11:43:44 -04005925 if (ret < 0)
5926 goto out;
Zheng Yan1a40e232008-09-26 10:09:34 -04005927 if (ret > 0)
5928 goto next;
Chris Masonbf4ef672008-05-08 13:26:18 -04005929 leaf = path->nodes[0];
Chris Masona061fc82008-05-07 11:43:44 -04005930 }
Chris Masonedbd8d42007-12-21 16:27:24 -05005931
5932 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Zheng Yan1a40e232008-09-26 10:09:34 -04005933 if (found_key.objectid == bytenr &&
Yan Zhengf82d02d2008-10-29 14:49:05 -04005934 found_key.type == BTRFS_EXTENT_REF_KEY) {
5935 if (level < ref_path->shared_level)
5936 ref_path->shared_level = level;
Zheng Yan1a40e232008-09-26 10:09:34 -04005937 goto found;
Yan Zhengf82d02d2008-10-29 14:49:05 -04005938 }
Zheng Yan1a40e232008-09-26 10:09:34 -04005939next:
5940 level--;
5941 btrfs_release_path(extent_root, path);
Yan Zhengd899e052008-10-30 14:25:28 -04005942 cond_resched();
Zheng Yan1a40e232008-09-26 10:09:34 -04005943 }
5944 /* reached lowest level */
5945 ret = 1;
5946 goto out;
5947walk_up:
5948 level = ref_path->current_level;
5949 while (level < BTRFS_MAX_LEVEL - 1) {
5950 u64 ref_objectid;
Chris Masond3977122009-01-05 21:25:51 -05005951
5952 if (level >= 0)
Zheng Yan1a40e232008-09-26 10:09:34 -04005953 bytenr = ref_path->nodes[level];
Chris Masond3977122009-01-05 21:25:51 -05005954 else
Zheng Yan1a40e232008-09-26 10:09:34 -04005955 bytenr = ref_path->extent_start;
Chris Masond3977122009-01-05 21:25:51 -05005956
Zheng Yan1a40e232008-09-26 10:09:34 -04005957 BUG_ON(bytenr == 0);
Chris Masonedbd8d42007-12-21 16:27:24 -05005958
Zheng Yan1a40e232008-09-26 10:09:34 -04005959 key.objectid = bytenr;
5960 key.offset = 0;
5961 key.type = BTRFS_EXTENT_REF_KEY;
Chris Masonedbd8d42007-12-21 16:27:24 -05005962
Zheng Yan1a40e232008-09-26 10:09:34 -04005963 ret = btrfs_search_slot(trans, extent_root, &key, path, 0, 0);
5964 if (ret < 0)
Chris Masonedbd8d42007-12-21 16:27:24 -05005965 goto out;
Zheng Yan1a40e232008-09-26 10:09:34 -04005966
5967 leaf = path->nodes[0];
5968 nritems = btrfs_header_nritems(leaf);
5969 if (path->slots[0] >= nritems) {
5970 ret = btrfs_next_leaf(extent_root, path);
5971 if (ret < 0)
5972 goto out;
5973 if (ret > 0) {
5974 /* the extent was freed by someone */
5975 if (ref_path->lowest_level == level)
5976 goto out;
5977 btrfs_release_path(extent_root, path);
5978 goto walk_down;
5979 }
5980 leaf = path->nodes[0];
5981 }
5982
5983 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5984 if (found_key.objectid != bytenr ||
5985 found_key.type != BTRFS_EXTENT_REF_KEY) {
5986 /* the extent was freed by someone */
5987 if (ref_path->lowest_level == level) {
5988 ret = 1;
5989 goto out;
5990 }
5991 btrfs_release_path(extent_root, path);
5992 goto walk_down;
5993 }
5994found:
5995 ref = btrfs_item_ptr(leaf, path->slots[0],
5996 struct btrfs_extent_ref);
5997 ref_objectid = btrfs_ref_objectid(leaf, ref);
5998 if (ref_objectid < BTRFS_FIRST_FREE_OBJECTID) {
5999 if (first_time) {
6000 level = (int)ref_objectid;
6001 BUG_ON(level >= BTRFS_MAX_LEVEL);
6002 ref_path->lowest_level = level;
6003 ref_path->current_level = level;
6004 ref_path->nodes[level] = bytenr;
6005 } else {
6006 WARN_ON(ref_objectid != level);
6007 }
6008 } else {
6009 WARN_ON(level != -1);
6010 }
6011 first_time = 0;
6012
6013 if (ref_path->lowest_level == level) {
6014 ref_path->owner_objectid = ref_objectid;
Zheng Yan1a40e232008-09-26 10:09:34 -04006015 ref_path->num_refs = btrfs_ref_num_refs(leaf, ref);
6016 }
6017
6018 /*
6019 * the block is tree root or the block isn't in reference
6020 * counted tree.
6021 */
6022 if (found_key.objectid == found_key.offset ||
6023 is_cowonly_root(btrfs_ref_root(leaf, ref))) {
6024 ref_path->root_objectid = btrfs_ref_root(leaf, ref);
6025 ref_path->root_generation =
6026 btrfs_ref_generation(leaf, ref);
6027 if (level < 0) {
6028 /* special reference from the tree log */
6029 ref_path->nodes[0] = found_key.offset;
6030 ref_path->current_level = 0;
6031 }
6032 ret = 0;
6033 goto out;
6034 }
6035
6036 level++;
6037 BUG_ON(ref_path->nodes[level] != 0);
6038 ref_path->nodes[level] = found_key.offset;
6039 ref_path->current_level = level;
6040
6041 /*
6042 * the reference was created in the running transaction,
6043 * no need to continue walking up.
6044 */
6045 if (btrfs_ref_generation(leaf, ref) == trans->transid) {
6046 ref_path->root_objectid = btrfs_ref_root(leaf, ref);
6047 ref_path->root_generation =
6048 btrfs_ref_generation(leaf, ref);
6049 ret = 0;
6050 goto out;
6051 }
6052
6053 btrfs_release_path(extent_root, path);
Yan Zhengd899e052008-10-30 14:25:28 -04006054 cond_resched();
Zheng Yan1a40e232008-09-26 10:09:34 -04006055 }
6056 /* reached max tree level, but no tree root found. */
6057 BUG();
6058out:
Zheng Yan1a40e232008-09-26 10:09:34 -04006059 btrfs_free_path(path);
6060 return ret;
6061}
6062
6063static int btrfs_first_ref_path(struct btrfs_trans_handle *trans,
6064 struct btrfs_root *extent_root,
6065 struct btrfs_ref_path *ref_path,
6066 u64 extent_start)
6067{
6068 memset(ref_path, 0, sizeof(*ref_path));
6069 ref_path->extent_start = extent_start;
6070
6071 return __next_ref_path(trans, extent_root, ref_path, 1);
6072}
6073
6074static int btrfs_next_ref_path(struct btrfs_trans_handle *trans,
6075 struct btrfs_root *extent_root,
6076 struct btrfs_ref_path *ref_path)
6077{
6078 return __next_ref_path(trans, extent_root, ref_path, 0);
6079}
6080
Chris Masond3977122009-01-05 21:25:51 -05006081static noinline int get_new_locations(struct inode *reloc_inode,
Zheng Yan1a40e232008-09-26 10:09:34 -04006082 struct btrfs_key *extent_key,
6083 u64 offset, int no_fragment,
6084 struct disk_extent **extents,
6085 int *nr_extents)
6086{
6087 struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
6088 struct btrfs_path *path;
6089 struct btrfs_file_extent_item *fi;
6090 struct extent_buffer *leaf;
6091 struct disk_extent *exts = *extents;
6092 struct btrfs_key found_key;
6093 u64 cur_pos;
6094 u64 last_byte;
6095 u32 nritems;
6096 int nr = 0;
6097 int max = *nr_extents;
6098 int ret;
6099
6100 WARN_ON(!no_fragment && *extents);
6101 if (!exts) {
6102 max = 1;
6103 exts = kmalloc(sizeof(*exts) * max, GFP_NOFS);
6104 if (!exts)
6105 return -ENOMEM;
6106 }
6107
6108 path = btrfs_alloc_path();
6109 BUG_ON(!path);
6110
6111 cur_pos = extent_key->objectid - offset;
6112 last_byte = extent_key->objectid + extent_key->offset;
6113 ret = btrfs_lookup_file_extent(NULL, root, path, reloc_inode->i_ino,
6114 cur_pos, 0);
6115 if (ret < 0)
6116 goto out;
6117 if (ret > 0) {
6118 ret = -ENOENT;
6119 goto out;
6120 }
6121
6122 while (1) {
6123 leaf = path->nodes[0];
6124 nritems = btrfs_header_nritems(leaf);
6125 if (path->slots[0] >= nritems) {
6126 ret = btrfs_next_leaf(root, path);
6127 if (ret < 0)
6128 goto out;
6129 if (ret > 0)
6130 break;
6131 leaf = path->nodes[0];
6132 }
6133
6134 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6135 if (found_key.offset != cur_pos ||
6136 found_key.type != BTRFS_EXTENT_DATA_KEY ||
6137 found_key.objectid != reloc_inode->i_ino)
6138 break;
6139
6140 fi = btrfs_item_ptr(leaf, path->slots[0],
6141 struct btrfs_file_extent_item);
6142 if (btrfs_file_extent_type(leaf, fi) !=
6143 BTRFS_FILE_EXTENT_REG ||
6144 btrfs_file_extent_disk_bytenr(leaf, fi) == 0)
6145 break;
6146
6147 if (nr == max) {
6148 struct disk_extent *old = exts;
6149 max *= 2;
6150 exts = kzalloc(sizeof(*exts) * max, GFP_NOFS);
6151 memcpy(exts, old, sizeof(*exts) * nr);
6152 if (old != *extents)
6153 kfree(old);
6154 }
6155
6156 exts[nr].disk_bytenr =
6157 btrfs_file_extent_disk_bytenr(leaf, fi);
6158 exts[nr].disk_num_bytes =
6159 btrfs_file_extent_disk_num_bytes(leaf, fi);
6160 exts[nr].offset = btrfs_file_extent_offset(leaf, fi);
6161 exts[nr].num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
Chris Masonc8b97812008-10-29 14:49:59 -04006162 exts[nr].ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
6163 exts[nr].compression = btrfs_file_extent_compression(leaf, fi);
6164 exts[nr].encryption = btrfs_file_extent_encryption(leaf, fi);
6165 exts[nr].other_encoding = btrfs_file_extent_other_encoding(leaf,
6166 fi);
Yan Zhengd899e052008-10-30 14:25:28 -04006167 BUG_ON(exts[nr].offset > 0);
6168 BUG_ON(exts[nr].compression || exts[nr].encryption);
6169 BUG_ON(exts[nr].num_bytes != exts[nr].disk_num_bytes);
Zheng Yan1a40e232008-09-26 10:09:34 -04006170
6171 cur_pos += exts[nr].num_bytes;
6172 nr++;
6173
6174 if (cur_pos + offset >= last_byte)
6175 break;
6176
6177 if (no_fragment) {
6178 ret = 1;
6179 goto out;
6180 }
6181 path->slots[0]++;
6182 }
6183
Yan Zheng1f80e4d2008-12-19 10:59:04 -05006184 BUG_ON(cur_pos + offset > last_byte);
Zheng Yan1a40e232008-09-26 10:09:34 -04006185 if (cur_pos + offset < last_byte) {
6186 ret = -ENOENT;
6187 goto out;
Chris Masonedbd8d42007-12-21 16:27:24 -05006188 }
6189 ret = 0;
6190out:
Zheng Yan1a40e232008-09-26 10:09:34 -04006191 btrfs_free_path(path);
6192 if (ret) {
6193 if (exts != *extents)
6194 kfree(exts);
6195 } else {
6196 *extents = exts;
6197 *nr_extents = nr;
6198 }
6199 return ret;
6200}
6201
Chris Masond3977122009-01-05 21:25:51 -05006202static noinline int replace_one_extent(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04006203 struct btrfs_root *root,
6204 struct btrfs_path *path,
6205 struct btrfs_key *extent_key,
6206 struct btrfs_key *leaf_key,
6207 struct btrfs_ref_path *ref_path,
6208 struct disk_extent *new_extents,
6209 int nr_extents)
6210{
6211 struct extent_buffer *leaf;
6212 struct btrfs_file_extent_item *fi;
6213 struct inode *inode = NULL;
6214 struct btrfs_key key;
6215 u64 lock_start = 0;
6216 u64 lock_end = 0;
6217 u64 num_bytes;
6218 u64 ext_offset;
Yan Zheng86288a12009-01-21 10:49:16 -05006219 u64 search_end = (u64)-1;
Zheng Yan1a40e232008-09-26 10:09:34 -04006220 u32 nritems;
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04006221 int nr_scaned = 0;
Zheng Yan1a40e232008-09-26 10:09:34 -04006222 int extent_locked = 0;
Yan Zhengd899e052008-10-30 14:25:28 -04006223 int extent_type;
Zheng Yan1a40e232008-09-26 10:09:34 -04006224 int ret;
6225
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04006226 memcpy(&key, leaf_key, sizeof(key));
Zheng Yan1a40e232008-09-26 10:09:34 -04006227 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS) {
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04006228 if (key.objectid < ref_path->owner_objectid ||
6229 (key.objectid == ref_path->owner_objectid &&
6230 key.type < BTRFS_EXTENT_DATA_KEY)) {
6231 key.objectid = ref_path->owner_objectid;
6232 key.type = BTRFS_EXTENT_DATA_KEY;
6233 key.offset = 0;
6234 }
Zheng Yan1a40e232008-09-26 10:09:34 -04006235 }
6236
6237 while (1) {
6238 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
6239 if (ret < 0)
6240 goto out;
6241
6242 leaf = path->nodes[0];
6243 nritems = btrfs_header_nritems(leaf);
6244next:
6245 if (extent_locked && ret > 0) {
6246 /*
6247 * the file extent item was modified by someone
6248 * before the extent got locked.
6249 */
Zheng Yan1a40e232008-09-26 10:09:34 -04006250 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
6251 lock_end, GFP_NOFS);
6252 extent_locked = 0;
6253 }
6254
6255 if (path->slots[0] >= nritems) {
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04006256 if (++nr_scaned > 2)
Zheng Yan1a40e232008-09-26 10:09:34 -04006257 break;
6258
6259 BUG_ON(extent_locked);
6260 ret = btrfs_next_leaf(root, path);
6261 if (ret < 0)
6262 goto out;
6263 if (ret > 0)
6264 break;
6265 leaf = path->nodes[0];
6266 nritems = btrfs_header_nritems(leaf);
6267 }
6268
6269 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
6270
6271 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS) {
6272 if ((key.objectid > ref_path->owner_objectid) ||
6273 (key.objectid == ref_path->owner_objectid &&
6274 key.type > BTRFS_EXTENT_DATA_KEY) ||
Yan Zheng86288a12009-01-21 10:49:16 -05006275 key.offset >= search_end)
Zheng Yan1a40e232008-09-26 10:09:34 -04006276 break;
6277 }
6278
6279 if (inode && key.objectid != inode->i_ino) {
6280 BUG_ON(extent_locked);
6281 btrfs_release_path(root, path);
6282 mutex_unlock(&inode->i_mutex);
6283 iput(inode);
6284 inode = NULL;
6285 continue;
6286 }
6287
6288 if (key.type != BTRFS_EXTENT_DATA_KEY) {
6289 path->slots[0]++;
6290 ret = 1;
6291 goto next;
6292 }
6293 fi = btrfs_item_ptr(leaf, path->slots[0],
6294 struct btrfs_file_extent_item);
Yan Zhengd899e052008-10-30 14:25:28 -04006295 extent_type = btrfs_file_extent_type(leaf, fi);
6296 if ((extent_type != BTRFS_FILE_EXTENT_REG &&
6297 extent_type != BTRFS_FILE_EXTENT_PREALLOC) ||
Zheng Yan1a40e232008-09-26 10:09:34 -04006298 (btrfs_file_extent_disk_bytenr(leaf, fi) !=
6299 extent_key->objectid)) {
6300 path->slots[0]++;
6301 ret = 1;
6302 goto next;
6303 }
6304
6305 num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
6306 ext_offset = btrfs_file_extent_offset(leaf, fi);
6307
Yan Zheng86288a12009-01-21 10:49:16 -05006308 if (search_end == (u64)-1) {
6309 search_end = key.offset - ext_offset +
6310 btrfs_file_extent_ram_bytes(leaf, fi);
6311 }
Zheng Yan1a40e232008-09-26 10:09:34 -04006312
6313 if (!extent_locked) {
6314 lock_start = key.offset;
6315 lock_end = lock_start + num_bytes - 1;
6316 } else {
Yan Zheng66435582008-10-30 14:19:50 -04006317 if (lock_start > key.offset ||
6318 lock_end + 1 < key.offset + num_bytes) {
6319 unlock_extent(&BTRFS_I(inode)->io_tree,
6320 lock_start, lock_end, GFP_NOFS);
6321 extent_locked = 0;
6322 }
Zheng Yan1a40e232008-09-26 10:09:34 -04006323 }
6324
6325 if (!inode) {
6326 btrfs_release_path(root, path);
6327
6328 inode = btrfs_iget_locked(root->fs_info->sb,
6329 key.objectid, root);
6330 if (inode->i_state & I_NEW) {
6331 BTRFS_I(inode)->root = root;
6332 BTRFS_I(inode)->location.objectid =
6333 key.objectid;
6334 BTRFS_I(inode)->location.type =
6335 BTRFS_INODE_ITEM_KEY;
6336 BTRFS_I(inode)->location.offset = 0;
6337 btrfs_read_locked_inode(inode);
6338 unlock_new_inode(inode);
6339 }
6340 /*
6341 * some code call btrfs_commit_transaction while
6342 * holding the i_mutex, so we can't use mutex_lock
6343 * here.
6344 */
6345 if (is_bad_inode(inode) ||
6346 !mutex_trylock(&inode->i_mutex)) {
6347 iput(inode);
6348 inode = NULL;
6349 key.offset = (u64)-1;
6350 goto skip;
6351 }
6352 }
6353
6354 if (!extent_locked) {
6355 struct btrfs_ordered_extent *ordered;
6356
6357 btrfs_release_path(root, path);
6358
6359 lock_extent(&BTRFS_I(inode)->io_tree, lock_start,
6360 lock_end, GFP_NOFS);
6361 ordered = btrfs_lookup_first_ordered_extent(inode,
6362 lock_end);
6363 if (ordered &&
6364 ordered->file_offset <= lock_end &&
6365 ordered->file_offset + ordered->len > lock_start) {
6366 unlock_extent(&BTRFS_I(inode)->io_tree,
6367 lock_start, lock_end, GFP_NOFS);
6368 btrfs_start_ordered_extent(inode, ordered, 1);
6369 btrfs_put_ordered_extent(ordered);
6370 key.offset += num_bytes;
6371 goto skip;
6372 }
6373 if (ordered)
6374 btrfs_put_ordered_extent(ordered);
6375
Zheng Yan1a40e232008-09-26 10:09:34 -04006376 extent_locked = 1;
6377 continue;
6378 }
6379
6380 if (nr_extents == 1) {
6381 /* update extent pointer in place */
Zheng Yan1a40e232008-09-26 10:09:34 -04006382 btrfs_set_file_extent_disk_bytenr(leaf, fi,
6383 new_extents[0].disk_bytenr);
6384 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
6385 new_extents[0].disk_num_bytes);
Zheng Yan1a40e232008-09-26 10:09:34 -04006386 btrfs_mark_buffer_dirty(leaf);
6387
6388 btrfs_drop_extent_cache(inode, key.offset,
6389 key.offset + num_bytes - 1, 0);
6390
6391 ret = btrfs_inc_extent_ref(trans, root,
6392 new_extents[0].disk_bytenr,
6393 new_extents[0].disk_num_bytes,
6394 leaf->start,
6395 root->root_key.objectid,
6396 trans->transid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04006397 key.objectid);
Zheng Yan1a40e232008-09-26 10:09:34 -04006398 BUG_ON(ret);
6399
6400 ret = btrfs_free_extent(trans, root,
6401 extent_key->objectid,
6402 extent_key->offset,
6403 leaf->start,
6404 btrfs_header_owner(leaf),
6405 btrfs_header_generation(leaf),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04006406 key.objectid, 0);
Zheng Yan1a40e232008-09-26 10:09:34 -04006407 BUG_ON(ret);
6408
6409 btrfs_release_path(root, path);
6410 key.offset += num_bytes;
6411 } else {
Yan Zhengd899e052008-10-30 14:25:28 -04006412 BUG_ON(1);
6413#if 0
Zheng Yan1a40e232008-09-26 10:09:34 -04006414 u64 alloc_hint;
6415 u64 extent_len;
6416 int i;
6417 /*
6418 * drop old extent pointer at first, then insert the
6419 * new pointers one bye one
6420 */
6421 btrfs_release_path(root, path);
6422 ret = btrfs_drop_extents(trans, root, inode, key.offset,
6423 key.offset + num_bytes,
6424 key.offset, &alloc_hint);
6425 BUG_ON(ret);
6426
6427 for (i = 0; i < nr_extents; i++) {
6428 if (ext_offset >= new_extents[i].num_bytes) {
6429 ext_offset -= new_extents[i].num_bytes;
6430 continue;
6431 }
6432 extent_len = min(new_extents[i].num_bytes -
6433 ext_offset, num_bytes);
6434
6435 ret = btrfs_insert_empty_item(trans, root,
6436 path, &key,
6437 sizeof(*fi));
6438 BUG_ON(ret);
6439
6440 leaf = path->nodes[0];
6441 fi = btrfs_item_ptr(leaf, path->slots[0],
6442 struct btrfs_file_extent_item);
6443 btrfs_set_file_extent_generation(leaf, fi,
6444 trans->transid);
6445 btrfs_set_file_extent_type(leaf, fi,
6446 BTRFS_FILE_EXTENT_REG);
6447 btrfs_set_file_extent_disk_bytenr(leaf, fi,
6448 new_extents[i].disk_bytenr);
6449 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
6450 new_extents[i].disk_num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -04006451 btrfs_set_file_extent_ram_bytes(leaf, fi,
6452 new_extents[i].ram_bytes);
6453
6454 btrfs_set_file_extent_compression(leaf, fi,
6455 new_extents[i].compression);
6456 btrfs_set_file_extent_encryption(leaf, fi,
6457 new_extents[i].encryption);
6458 btrfs_set_file_extent_other_encoding(leaf, fi,
6459 new_extents[i].other_encoding);
6460
Zheng Yan1a40e232008-09-26 10:09:34 -04006461 btrfs_set_file_extent_num_bytes(leaf, fi,
6462 extent_len);
6463 ext_offset += new_extents[i].offset;
6464 btrfs_set_file_extent_offset(leaf, fi,
6465 ext_offset);
6466 btrfs_mark_buffer_dirty(leaf);
6467
6468 btrfs_drop_extent_cache(inode, key.offset,
6469 key.offset + extent_len - 1, 0);
6470
6471 ret = btrfs_inc_extent_ref(trans, root,
6472 new_extents[i].disk_bytenr,
6473 new_extents[i].disk_num_bytes,
6474 leaf->start,
6475 root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04006476 trans->transid, key.objectid);
Zheng Yan1a40e232008-09-26 10:09:34 -04006477 BUG_ON(ret);
6478 btrfs_release_path(root, path);
6479
Yan Zhenga76a3cd2008-10-09 11:46:29 -04006480 inode_add_bytes(inode, extent_len);
Zheng Yan1a40e232008-09-26 10:09:34 -04006481
6482 ext_offset = 0;
6483 num_bytes -= extent_len;
6484 key.offset += extent_len;
6485
6486 if (num_bytes == 0)
6487 break;
6488 }
6489 BUG_ON(i >= nr_extents);
Yan Zhengd899e052008-10-30 14:25:28 -04006490#endif
Zheng Yan1a40e232008-09-26 10:09:34 -04006491 }
6492
6493 if (extent_locked) {
Zheng Yan1a40e232008-09-26 10:09:34 -04006494 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
6495 lock_end, GFP_NOFS);
6496 extent_locked = 0;
6497 }
6498skip:
6499 if (ref_path->owner_objectid != BTRFS_MULTIPLE_OBJECTIDS &&
Yan Zheng86288a12009-01-21 10:49:16 -05006500 key.offset >= search_end)
Zheng Yan1a40e232008-09-26 10:09:34 -04006501 break;
6502
6503 cond_resched();
6504 }
6505 ret = 0;
6506out:
6507 btrfs_release_path(root, path);
6508 if (inode) {
6509 mutex_unlock(&inode->i_mutex);
6510 if (extent_locked) {
Zheng Yan1a40e232008-09-26 10:09:34 -04006511 unlock_extent(&BTRFS_I(inode)->io_tree, lock_start,
6512 lock_end, GFP_NOFS);
6513 }
6514 iput(inode);
6515 }
6516 return ret;
6517}
6518
Zheng Yan1a40e232008-09-26 10:09:34 -04006519int btrfs_reloc_tree_cache_ref(struct btrfs_trans_handle *trans,
6520 struct btrfs_root *root,
6521 struct extent_buffer *buf, u64 orig_start)
6522{
6523 int level;
6524 int ret;
6525
6526 BUG_ON(btrfs_header_generation(buf) != trans->transid);
6527 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
6528
6529 level = btrfs_header_level(buf);
6530 if (level == 0) {
6531 struct btrfs_leaf_ref *ref;
6532 struct btrfs_leaf_ref *orig_ref;
6533
6534 orig_ref = btrfs_lookup_leaf_ref(root, orig_start);
6535 if (!orig_ref)
6536 return -ENOENT;
6537
6538 ref = btrfs_alloc_leaf_ref(root, orig_ref->nritems);
6539 if (!ref) {
6540 btrfs_free_leaf_ref(root, orig_ref);
6541 return -ENOMEM;
6542 }
6543
6544 ref->nritems = orig_ref->nritems;
6545 memcpy(ref->extents, orig_ref->extents,
6546 sizeof(ref->extents[0]) * ref->nritems);
6547
6548 btrfs_free_leaf_ref(root, orig_ref);
6549
6550 ref->root_gen = trans->transid;
6551 ref->bytenr = buf->start;
6552 ref->owner = btrfs_header_owner(buf);
6553 ref->generation = btrfs_header_generation(buf);
Chris Masonbd56b302009-02-04 09:27:02 -05006554
Zheng Yan1a40e232008-09-26 10:09:34 -04006555 ret = btrfs_add_leaf_ref(root, ref, 0);
6556 WARN_ON(ret);
6557 btrfs_free_leaf_ref(root, ref);
6558 }
6559 return 0;
6560}
6561
Chris Masond3977122009-01-05 21:25:51 -05006562static noinline int invalidate_extent_cache(struct btrfs_root *root,
Zheng Yan1a40e232008-09-26 10:09:34 -04006563 struct extent_buffer *leaf,
6564 struct btrfs_block_group_cache *group,
6565 struct btrfs_root *target_root)
6566{
6567 struct btrfs_key key;
6568 struct inode *inode = NULL;
6569 struct btrfs_file_extent_item *fi;
Josef Bacik2ac55d42010-02-03 19:33:23 +00006570 struct extent_state *cached_state = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -04006571 u64 num_bytes;
6572 u64 skip_objectid = 0;
6573 u32 nritems;
6574 u32 i;
6575
6576 nritems = btrfs_header_nritems(leaf);
6577 for (i = 0; i < nritems; i++) {
6578 btrfs_item_key_to_cpu(leaf, &key, i);
6579 if (key.objectid == skip_objectid ||
6580 key.type != BTRFS_EXTENT_DATA_KEY)
6581 continue;
6582 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
6583 if (btrfs_file_extent_type(leaf, fi) ==
6584 BTRFS_FILE_EXTENT_INLINE)
6585 continue;
6586 if (btrfs_file_extent_disk_bytenr(leaf, fi) == 0)
6587 continue;
6588 if (!inode || inode->i_ino != key.objectid) {
6589 iput(inode);
6590 inode = btrfs_ilookup(target_root->fs_info->sb,
6591 key.objectid, target_root, 1);
6592 }
6593 if (!inode) {
6594 skip_objectid = key.objectid;
6595 continue;
6596 }
6597 num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
6598
Josef Bacik2ac55d42010-02-03 19:33:23 +00006599 lock_extent_bits(&BTRFS_I(inode)->io_tree, key.offset,
6600 key.offset + num_bytes - 1, 0, &cached_state,
6601 GFP_NOFS);
Zheng Yan1a40e232008-09-26 10:09:34 -04006602 btrfs_drop_extent_cache(inode, key.offset,
6603 key.offset + num_bytes - 1, 1);
Josef Bacik2ac55d42010-02-03 19:33:23 +00006604 unlock_extent_cached(&BTRFS_I(inode)->io_tree, key.offset,
6605 key.offset + num_bytes - 1, &cached_state,
6606 GFP_NOFS);
Zheng Yan1a40e232008-09-26 10:09:34 -04006607 cond_resched();
6608 }
6609 iput(inode);
6610 return 0;
6611}
6612
Chris Masond3977122009-01-05 21:25:51 -05006613static noinline int replace_extents_in_leaf(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04006614 struct btrfs_root *root,
6615 struct extent_buffer *leaf,
6616 struct btrfs_block_group_cache *group,
6617 struct inode *reloc_inode)
6618{
6619 struct btrfs_key key;
6620 struct btrfs_key extent_key;
6621 struct btrfs_file_extent_item *fi;
6622 struct btrfs_leaf_ref *ref;
6623 struct disk_extent *new_extent;
6624 u64 bytenr;
6625 u64 num_bytes;
6626 u32 nritems;
6627 u32 i;
6628 int ext_index;
6629 int nr_extent;
6630 int ret;
6631
6632 new_extent = kmalloc(sizeof(*new_extent), GFP_NOFS);
6633 BUG_ON(!new_extent);
6634
6635 ref = btrfs_lookup_leaf_ref(root, leaf->start);
6636 BUG_ON(!ref);
6637
6638 ext_index = -1;
6639 nritems = btrfs_header_nritems(leaf);
6640 for (i = 0; i < nritems; i++) {
6641 btrfs_item_key_to_cpu(leaf, &key, i);
6642 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
6643 continue;
6644 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
6645 if (btrfs_file_extent_type(leaf, fi) ==
6646 BTRFS_FILE_EXTENT_INLINE)
6647 continue;
6648 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
6649 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
6650 if (bytenr == 0)
6651 continue;
6652
6653 ext_index++;
6654 if (bytenr >= group->key.objectid + group->key.offset ||
6655 bytenr + num_bytes <= group->key.objectid)
6656 continue;
6657
6658 extent_key.objectid = bytenr;
6659 extent_key.offset = num_bytes;
6660 extent_key.type = BTRFS_EXTENT_ITEM_KEY;
6661 nr_extent = 1;
6662 ret = get_new_locations(reloc_inode, &extent_key,
6663 group->key.objectid, 1,
6664 &new_extent, &nr_extent);
6665 if (ret > 0)
6666 continue;
6667 BUG_ON(ret < 0);
6668
6669 BUG_ON(ref->extents[ext_index].bytenr != bytenr);
6670 BUG_ON(ref->extents[ext_index].num_bytes != num_bytes);
6671 ref->extents[ext_index].bytenr = new_extent->disk_bytenr;
6672 ref->extents[ext_index].num_bytes = new_extent->disk_num_bytes;
6673
Zheng Yan1a40e232008-09-26 10:09:34 -04006674 btrfs_set_file_extent_disk_bytenr(leaf, fi,
6675 new_extent->disk_bytenr);
6676 btrfs_set_file_extent_disk_num_bytes(leaf, fi,
6677 new_extent->disk_num_bytes);
Zheng Yan1a40e232008-09-26 10:09:34 -04006678 btrfs_mark_buffer_dirty(leaf);
6679
6680 ret = btrfs_inc_extent_ref(trans, root,
6681 new_extent->disk_bytenr,
6682 new_extent->disk_num_bytes,
6683 leaf->start,
6684 root->root_key.objectid,
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04006685 trans->transid, key.objectid);
Zheng Yan1a40e232008-09-26 10:09:34 -04006686 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -04006687
Zheng Yan1a40e232008-09-26 10:09:34 -04006688 ret = btrfs_free_extent(trans, root,
6689 bytenr, num_bytes, leaf->start,
6690 btrfs_header_owner(leaf),
6691 btrfs_header_generation(leaf),
Yan Zheng3bb1a1b2008-10-09 11:46:24 -04006692 key.objectid, 0);
Zheng Yan1a40e232008-09-26 10:09:34 -04006693 BUG_ON(ret);
6694 cond_resched();
6695 }
6696 kfree(new_extent);
6697 BUG_ON(ext_index + 1 != ref->nritems);
6698 btrfs_free_leaf_ref(root, ref);
6699 return 0;
6700}
6701
Yan Zhengf82d02d2008-10-29 14:49:05 -04006702int btrfs_free_reloc_root(struct btrfs_trans_handle *trans,
6703 struct btrfs_root *root)
Zheng Yan1a40e232008-09-26 10:09:34 -04006704{
6705 struct btrfs_root *reloc_root;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006706 int ret;
Zheng Yan1a40e232008-09-26 10:09:34 -04006707
6708 if (root->reloc_root) {
6709 reloc_root = root->reloc_root;
6710 root->reloc_root = NULL;
6711 list_add(&reloc_root->dead_list,
6712 &root->fs_info->dead_reloc_roots);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006713
6714 btrfs_set_root_bytenr(&reloc_root->root_item,
6715 reloc_root->node->start);
6716 btrfs_set_root_level(&root->root_item,
6717 btrfs_header_level(reloc_root->node));
6718 memset(&reloc_root->root_item.drop_progress, 0,
6719 sizeof(struct btrfs_disk_key));
6720 reloc_root->root_item.drop_level = 0;
6721
6722 ret = btrfs_update_root(trans, root->fs_info->tree_root,
6723 &reloc_root->root_key,
6724 &reloc_root->root_item);
6725 BUG_ON(ret);
Zheng Yan1a40e232008-09-26 10:09:34 -04006726 }
6727 return 0;
6728}
6729
6730int btrfs_drop_dead_reloc_roots(struct btrfs_root *root)
6731{
6732 struct btrfs_trans_handle *trans;
6733 struct btrfs_root *reloc_root;
6734 struct btrfs_root *prev_root = NULL;
6735 struct list_head dead_roots;
6736 int ret;
6737 unsigned long nr;
6738
6739 INIT_LIST_HEAD(&dead_roots);
6740 list_splice_init(&root->fs_info->dead_reloc_roots, &dead_roots);
6741
6742 while (!list_empty(&dead_roots)) {
6743 reloc_root = list_entry(dead_roots.prev,
6744 struct btrfs_root, dead_list);
6745 list_del_init(&reloc_root->dead_list);
6746
6747 BUG_ON(reloc_root->commit_root != NULL);
6748 while (1) {
6749 trans = btrfs_join_transaction(root, 1);
6750 BUG_ON(!trans);
6751
6752 mutex_lock(&root->fs_info->drop_mutex);
6753 ret = btrfs_drop_snapshot(trans, reloc_root);
6754 if (ret != -EAGAIN)
6755 break;
6756 mutex_unlock(&root->fs_info->drop_mutex);
6757
6758 nr = trans->blocks_used;
6759 ret = btrfs_end_transaction(trans, root);
6760 BUG_ON(ret);
6761 btrfs_btree_balance_dirty(root, nr);
6762 }
6763
6764 free_extent_buffer(reloc_root->node);
6765
6766 ret = btrfs_del_root(trans, root->fs_info->tree_root,
6767 &reloc_root->root_key);
6768 BUG_ON(ret);
6769 mutex_unlock(&root->fs_info->drop_mutex);
6770
6771 nr = trans->blocks_used;
6772 ret = btrfs_end_transaction(trans, root);
6773 BUG_ON(ret);
6774 btrfs_btree_balance_dirty(root, nr);
6775
6776 kfree(prev_root);
6777 prev_root = reloc_root;
6778 }
6779 if (prev_root) {
6780 btrfs_remove_leaf_refs(prev_root, (u64)-1, 0);
6781 kfree(prev_root);
6782 }
6783 return 0;
6784}
6785
6786int btrfs_add_dead_reloc_root(struct btrfs_root *root)
6787{
6788 list_add(&root->dead_list, &root->fs_info->dead_reloc_roots);
6789 return 0;
6790}
6791
6792int btrfs_cleanup_reloc_trees(struct btrfs_root *root)
6793{
6794 struct btrfs_root *reloc_root;
6795 struct btrfs_trans_handle *trans;
6796 struct btrfs_key location;
6797 int found;
6798 int ret;
6799
6800 mutex_lock(&root->fs_info->tree_reloc_mutex);
6801 ret = btrfs_find_dead_roots(root, BTRFS_TREE_RELOC_OBJECTID, NULL);
6802 BUG_ON(ret);
6803 found = !list_empty(&root->fs_info->dead_reloc_roots);
6804 mutex_unlock(&root->fs_info->tree_reloc_mutex);
6805
6806 if (found) {
6807 trans = btrfs_start_transaction(root, 1);
6808 BUG_ON(!trans);
6809 ret = btrfs_commit_transaction(trans, root);
6810 BUG_ON(ret);
6811 }
6812
6813 location.objectid = BTRFS_DATA_RELOC_TREE_OBJECTID;
6814 location.offset = (u64)-1;
6815 location.type = BTRFS_ROOT_ITEM_KEY;
6816
6817 reloc_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
6818 BUG_ON(!reloc_root);
6819 btrfs_orphan_cleanup(reloc_root);
6820 return 0;
6821}
6822
Chris Masond3977122009-01-05 21:25:51 -05006823static noinline int init_reloc_tree(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04006824 struct btrfs_root *root)
6825{
6826 struct btrfs_root *reloc_root;
6827 struct extent_buffer *eb;
6828 struct btrfs_root_item *root_item;
6829 struct btrfs_key root_key;
6830 int ret;
6831
6832 BUG_ON(!root->ref_cows);
6833 if (root->reloc_root)
6834 return 0;
6835
6836 root_item = kmalloc(sizeof(*root_item), GFP_NOFS);
6837 BUG_ON(!root_item);
6838
6839 ret = btrfs_copy_root(trans, root, root->commit_root,
6840 &eb, BTRFS_TREE_RELOC_OBJECTID);
6841 BUG_ON(ret);
6842
6843 root_key.objectid = BTRFS_TREE_RELOC_OBJECTID;
6844 root_key.offset = root->root_key.objectid;
6845 root_key.type = BTRFS_ROOT_ITEM_KEY;
6846
6847 memcpy(root_item, &root->root_item, sizeof(root_item));
6848 btrfs_set_root_refs(root_item, 0);
6849 btrfs_set_root_bytenr(root_item, eb->start);
6850 btrfs_set_root_level(root_item, btrfs_header_level(eb));
Yan Zheng84234f32008-10-29 14:49:05 -04006851 btrfs_set_root_generation(root_item, trans->transid);
Zheng Yan1a40e232008-09-26 10:09:34 -04006852
6853 btrfs_tree_unlock(eb);
6854 free_extent_buffer(eb);
6855
6856 ret = btrfs_insert_root(trans, root->fs_info->tree_root,
6857 &root_key, root_item);
6858 BUG_ON(ret);
6859 kfree(root_item);
6860
6861 reloc_root = btrfs_read_fs_root_no_radix(root->fs_info->tree_root,
6862 &root_key);
6863 BUG_ON(!reloc_root);
6864 reloc_root->last_trans = trans->transid;
6865 reloc_root->commit_root = NULL;
6866 reloc_root->ref_tree = &root->fs_info->reloc_ref_tree;
6867
6868 root->reloc_root = reloc_root;
6869 return 0;
6870}
6871
6872/*
6873 * Core function of space balance.
6874 *
6875 * The idea is using reloc trees to relocate tree blocks in reference
Yan Zhengf82d02d2008-10-29 14:49:05 -04006876 * counted roots. There is one reloc tree for each subvol, and all
6877 * reloc trees share same root key objectid. Reloc trees are snapshots
6878 * of the latest committed roots of subvols (root->commit_root).
6879 *
6880 * To relocate a tree block referenced by a subvol, there are two steps.
6881 * COW the block through subvol's reloc tree, then update block pointer
6882 * in the subvol to point to the new block. Since all reloc trees share
6883 * same root key objectid, doing special handing for tree blocks owned
6884 * by them is easy. Once a tree block has been COWed in one reloc tree,
6885 * we can use the resulting new block directly when the same block is
6886 * required to COW again through other reloc trees. By this way, relocated
6887 * tree blocks are shared between reloc trees, so they are also shared
6888 * between subvols.
Zheng Yan1a40e232008-09-26 10:09:34 -04006889 */
Chris Masond3977122009-01-05 21:25:51 -05006890static noinline int relocate_one_path(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04006891 struct btrfs_root *root,
6892 struct btrfs_path *path,
6893 struct btrfs_key *first_key,
6894 struct btrfs_ref_path *ref_path,
6895 struct btrfs_block_group_cache *group,
6896 struct inode *reloc_inode)
6897{
6898 struct btrfs_root *reloc_root;
6899 struct extent_buffer *eb = NULL;
6900 struct btrfs_key *keys;
6901 u64 *nodes;
6902 int level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006903 int shared_level;
Zheng Yan1a40e232008-09-26 10:09:34 -04006904 int lowest_level = 0;
Zheng Yan1a40e232008-09-26 10:09:34 -04006905 int ret;
6906
6907 if (ref_path->owner_objectid < BTRFS_FIRST_FREE_OBJECTID)
6908 lowest_level = ref_path->owner_objectid;
6909
Yan Zhengf82d02d2008-10-29 14:49:05 -04006910 if (!root->ref_cows) {
Zheng Yan1a40e232008-09-26 10:09:34 -04006911 path->lowest_level = lowest_level;
6912 ret = btrfs_search_slot(trans, root, first_key, path, 0, 1);
6913 BUG_ON(ret < 0);
6914 path->lowest_level = 0;
6915 btrfs_release_path(root, path);
6916 return 0;
6917 }
6918
Zheng Yan1a40e232008-09-26 10:09:34 -04006919 mutex_lock(&root->fs_info->tree_reloc_mutex);
6920 ret = init_reloc_tree(trans, root);
6921 BUG_ON(ret);
6922 reloc_root = root->reloc_root;
6923
Yan Zhengf82d02d2008-10-29 14:49:05 -04006924 shared_level = ref_path->shared_level;
6925 ref_path->shared_level = BTRFS_MAX_LEVEL - 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04006926
Yan Zhengf82d02d2008-10-29 14:49:05 -04006927 keys = ref_path->node_keys;
6928 nodes = ref_path->new_nodes;
6929 memset(&keys[shared_level + 1], 0,
6930 sizeof(*keys) * (BTRFS_MAX_LEVEL - shared_level - 1));
6931 memset(&nodes[shared_level + 1], 0,
6932 sizeof(*nodes) * (BTRFS_MAX_LEVEL - shared_level - 1));
Zheng Yan1a40e232008-09-26 10:09:34 -04006933
Yan Zhengf82d02d2008-10-29 14:49:05 -04006934 if (nodes[lowest_level] == 0) {
6935 path->lowest_level = lowest_level;
6936 ret = btrfs_search_slot(trans, reloc_root, first_key, path,
6937 0, 1);
6938 BUG_ON(ret);
6939 for (level = lowest_level; level < BTRFS_MAX_LEVEL; level++) {
6940 eb = path->nodes[level];
6941 if (!eb || eb == reloc_root->node)
6942 break;
6943 nodes[level] = eb->start;
6944 if (level == 0)
6945 btrfs_item_key_to_cpu(eb, &keys[level], 0);
6946 else
6947 btrfs_node_key_to_cpu(eb, &keys[level], 0);
6948 }
Yan Zheng2b820322008-11-17 21:11:30 -05006949 if (nodes[0] &&
6950 ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04006951 eb = path->nodes[0];
6952 ret = replace_extents_in_leaf(trans, reloc_root, eb,
6953 group, reloc_inode);
6954 BUG_ON(ret);
6955 }
6956 btrfs_release_path(reloc_root, path);
6957 } else {
Zheng Yan1a40e232008-09-26 10:09:34 -04006958 ret = btrfs_merge_path(trans, reloc_root, keys, nodes,
Yan Zhengf82d02d2008-10-29 14:49:05 -04006959 lowest_level);
Zheng Yan1a40e232008-09-26 10:09:34 -04006960 BUG_ON(ret);
6961 }
6962
Zheng Yan1a40e232008-09-26 10:09:34 -04006963 /*
6964 * replace tree blocks in the fs tree with tree blocks in
6965 * the reloc tree.
6966 */
6967 ret = btrfs_merge_path(trans, root, keys, nodes, lowest_level);
6968 BUG_ON(ret < 0);
6969
6970 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04006971 ret = btrfs_search_slot(trans, reloc_root, first_key, path,
6972 0, 0);
6973 BUG_ON(ret);
6974 extent_buffer_get(path->nodes[0]);
6975 eb = path->nodes[0];
6976 btrfs_release_path(reloc_root, path);
Zheng Yan1a40e232008-09-26 10:09:34 -04006977 ret = invalidate_extent_cache(reloc_root, eb, group, root);
6978 BUG_ON(ret);
6979 free_extent_buffer(eb);
6980 }
Zheng Yan1a40e232008-09-26 10:09:34 -04006981
Yan Zhengf82d02d2008-10-29 14:49:05 -04006982 mutex_unlock(&root->fs_info->tree_reloc_mutex);
Zheng Yan1a40e232008-09-26 10:09:34 -04006983 path->lowest_level = 0;
Zheng Yan1a40e232008-09-26 10:09:34 -04006984 return 0;
6985}
6986
Chris Masond3977122009-01-05 21:25:51 -05006987static noinline int relocate_tree_block(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04006988 struct btrfs_root *root,
6989 struct btrfs_path *path,
6990 struct btrfs_key *first_key,
6991 struct btrfs_ref_path *ref_path)
6992{
6993 int ret;
Zheng Yan1a40e232008-09-26 10:09:34 -04006994
6995 ret = relocate_one_path(trans, root, path, first_key,
6996 ref_path, NULL, NULL);
6997 BUG_ON(ret);
6998
Zheng Yan1a40e232008-09-26 10:09:34 -04006999 return 0;
7000}
7001
Chris Masond3977122009-01-05 21:25:51 -05007002static noinline int del_extent_zero(struct btrfs_trans_handle *trans,
Zheng Yan1a40e232008-09-26 10:09:34 -04007003 struct btrfs_root *extent_root,
7004 struct btrfs_path *path,
7005 struct btrfs_key *extent_key)
7006{
7007 int ret;
7008
Zheng Yan1a40e232008-09-26 10:09:34 -04007009 ret = btrfs_search_slot(trans, extent_root, extent_key, path, -1, 1);
7010 if (ret)
7011 goto out;
7012 ret = btrfs_del_item(trans, extent_root, path);
7013out:
Chris Masonedbd8d42007-12-21 16:27:24 -05007014 btrfs_release_path(extent_root, path);
Zheng Yan1a40e232008-09-26 10:09:34 -04007015 return ret;
7016}
7017
Chris Masond3977122009-01-05 21:25:51 -05007018static noinline struct btrfs_root *read_ref_root(struct btrfs_fs_info *fs_info,
Zheng Yan1a40e232008-09-26 10:09:34 -04007019 struct btrfs_ref_path *ref_path)
7020{
7021 struct btrfs_key root_key;
7022
7023 root_key.objectid = ref_path->root_objectid;
7024 root_key.type = BTRFS_ROOT_ITEM_KEY;
7025 if (is_cowonly_root(ref_path->root_objectid))
7026 root_key.offset = 0;
7027 else
7028 root_key.offset = (u64)-1;
7029
7030 return btrfs_read_fs_root_no_name(fs_info, &root_key);
7031}
7032
Chris Masond3977122009-01-05 21:25:51 -05007033static noinline int relocate_one_extent(struct btrfs_root *extent_root,
Zheng Yan1a40e232008-09-26 10:09:34 -04007034 struct btrfs_path *path,
7035 struct btrfs_key *extent_key,
7036 struct btrfs_block_group_cache *group,
7037 struct inode *reloc_inode, int pass)
7038{
7039 struct btrfs_trans_handle *trans;
7040 struct btrfs_root *found_root;
7041 struct btrfs_ref_path *ref_path = NULL;
7042 struct disk_extent *new_extents = NULL;
7043 int nr_extents = 0;
7044 int loops;
7045 int ret;
7046 int level;
7047 struct btrfs_key first_key;
7048 u64 prev_block = 0;
7049
Zheng Yan1a40e232008-09-26 10:09:34 -04007050
7051 trans = btrfs_start_transaction(extent_root, 1);
7052 BUG_ON(!trans);
7053
7054 if (extent_key->objectid == 0) {
7055 ret = del_extent_zero(trans, extent_root, path, extent_key);
7056 goto out;
7057 }
7058
7059 ref_path = kmalloc(sizeof(*ref_path), GFP_NOFS);
7060 if (!ref_path) {
Chris Masond3977122009-01-05 21:25:51 -05007061 ret = -ENOMEM;
7062 goto out;
Zheng Yan1a40e232008-09-26 10:09:34 -04007063 }
7064
7065 for (loops = 0; ; loops++) {
7066 if (loops == 0) {
7067 ret = btrfs_first_ref_path(trans, extent_root, ref_path,
7068 extent_key->objectid);
7069 } else {
7070 ret = btrfs_next_ref_path(trans, extent_root, ref_path);
7071 }
7072 if (ret < 0)
7073 goto out;
7074 if (ret > 0)
7075 break;
7076
7077 if (ref_path->root_objectid == BTRFS_TREE_LOG_OBJECTID ||
7078 ref_path->root_objectid == BTRFS_TREE_RELOC_OBJECTID)
7079 continue;
7080
7081 found_root = read_ref_root(extent_root->fs_info, ref_path);
7082 BUG_ON(!found_root);
7083 /*
7084 * for reference counted tree, only process reference paths
7085 * rooted at the latest committed root.
7086 */
7087 if (found_root->ref_cows &&
7088 ref_path->root_generation != found_root->root_key.offset)
7089 continue;
7090
7091 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
7092 if (pass == 0) {
7093 /*
7094 * copy data extents to new locations
7095 */
7096 u64 group_start = group->key.objectid;
7097 ret = relocate_data_extent(reloc_inode,
7098 extent_key,
7099 group_start);
7100 if (ret < 0)
7101 goto out;
7102 break;
7103 }
7104 level = 0;
7105 } else {
7106 level = ref_path->owner_objectid;
7107 }
7108
7109 if (prev_block != ref_path->nodes[level]) {
7110 struct extent_buffer *eb;
7111 u64 block_start = ref_path->nodes[level];
7112 u64 block_size = btrfs_level_size(found_root, level);
7113
7114 eb = read_tree_block(found_root, block_start,
7115 block_size, 0);
7116 btrfs_tree_lock(eb);
7117 BUG_ON(level != btrfs_header_level(eb));
7118
7119 if (level == 0)
7120 btrfs_item_key_to_cpu(eb, &first_key, 0);
7121 else
7122 btrfs_node_key_to_cpu(eb, &first_key, 0);
7123
7124 btrfs_tree_unlock(eb);
7125 free_extent_buffer(eb);
7126 prev_block = block_start;
7127 }
7128
Yan Zheng24562422009-02-12 14:14:53 -05007129 mutex_lock(&extent_root->fs_info->trans_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05007130 btrfs_record_root_in_trans(found_root);
Yan Zheng24562422009-02-12 14:14:53 -05007131 mutex_unlock(&extent_root->fs_info->trans_mutex);
Yan Zhenge4404d62008-12-12 10:03:26 -05007132 if (ref_path->owner_objectid >= BTRFS_FIRST_FREE_OBJECTID) {
7133 /*
7134 * try to update data extent references while
7135 * keeping metadata shared between snapshots.
7136 */
7137 if (pass == 1) {
7138 ret = relocate_one_path(trans, found_root,
7139 path, &first_key, ref_path,
7140 group, reloc_inode);
7141 if (ret < 0)
7142 goto out;
7143 continue;
7144 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007145 /*
7146 * use fallback method to process the remaining
7147 * references.
7148 */
7149 if (!new_extents) {
7150 u64 group_start = group->key.objectid;
Yan Zhengd899e052008-10-30 14:25:28 -04007151 new_extents = kmalloc(sizeof(*new_extents),
7152 GFP_NOFS);
7153 nr_extents = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04007154 ret = get_new_locations(reloc_inode,
7155 extent_key,
Yan Zhengd899e052008-10-30 14:25:28 -04007156 group_start, 1,
Zheng Yan1a40e232008-09-26 10:09:34 -04007157 &new_extents,
7158 &nr_extents);
Yan Zhengd899e052008-10-30 14:25:28 -04007159 if (ret)
Zheng Yan1a40e232008-09-26 10:09:34 -04007160 goto out;
7161 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007162 ret = replace_one_extent(trans, found_root,
7163 path, extent_key,
7164 &first_key, ref_path,
7165 new_extents, nr_extents);
Yan Zhenge4404d62008-12-12 10:03:26 -05007166 } else {
Zheng Yan1a40e232008-09-26 10:09:34 -04007167 ret = relocate_tree_block(trans, found_root, path,
7168 &first_key, ref_path);
Zheng Yan1a40e232008-09-26 10:09:34 -04007169 }
7170 if (ret < 0)
7171 goto out;
7172 }
7173 ret = 0;
7174out:
7175 btrfs_end_transaction(trans, extent_root);
7176 kfree(new_extents);
7177 kfree(ref_path);
Chris Masonedbd8d42007-12-21 16:27:24 -05007178 return ret;
7179}
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007180#endif
Chris Masonedbd8d42007-12-21 16:27:24 -05007181
Chris Masonec44a352008-04-28 15:29:52 -04007182static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
7183{
7184 u64 num_devices;
7185 u64 stripped = BTRFS_BLOCK_GROUP_RAID0 |
7186 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
7187
Yan Zheng2b820322008-11-17 21:11:30 -05007188 num_devices = root->fs_info->fs_devices->rw_devices;
Chris Masonec44a352008-04-28 15:29:52 -04007189 if (num_devices == 1) {
7190 stripped |= BTRFS_BLOCK_GROUP_DUP;
7191 stripped = flags & ~stripped;
7192
7193 /* turn raid0 into single device chunks */
7194 if (flags & BTRFS_BLOCK_GROUP_RAID0)
7195 return stripped;
7196
7197 /* turn mirroring into duplication */
7198 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
7199 BTRFS_BLOCK_GROUP_RAID10))
7200 return stripped | BTRFS_BLOCK_GROUP_DUP;
7201 return flags;
7202 } else {
7203 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04007204 if (flags & stripped)
7205 return flags;
7206
7207 stripped |= BTRFS_BLOCK_GROUP_DUP;
7208 stripped = flags & ~stripped;
7209
7210 /* switch duplicated blocks with raid1 */
7211 if (flags & BTRFS_BLOCK_GROUP_DUP)
7212 return stripped | BTRFS_BLOCK_GROUP_RAID1;
7213
7214 /* turn single device chunks into raid0 */
7215 return stripped | BTRFS_BLOCK_GROUP_RAID0;
7216 }
7217 return flags;
7218}
7219
Christoph Hellwigb2950862008-12-02 09:54:17 -05007220static int __alloc_chunk_for_shrink(struct btrfs_root *root,
Chris Mason0ef3e662008-05-24 14:04:53 -04007221 struct btrfs_block_group_cache *shrink_block_group,
7222 int force)
7223{
7224 struct btrfs_trans_handle *trans;
7225 u64 new_alloc_flags;
7226 u64 calc;
7227
Chris Masonc286ac42008-07-22 23:06:41 -04007228 spin_lock(&shrink_block_group->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007229 if (btrfs_block_group_used(&shrink_block_group->item) +
7230 shrink_block_group->reserved > 0) {
Chris Masonc286ac42008-07-22 23:06:41 -04007231 spin_unlock(&shrink_block_group->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04007232
Chris Mason0ef3e662008-05-24 14:04:53 -04007233 trans = btrfs_start_transaction(root, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04007234 spin_lock(&shrink_block_group->lock);
Chris Mason7d9eb122008-07-08 14:19:17 -04007235
Chris Mason0ef3e662008-05-24 14:04:53 -04007236 new_alloc_flags = update_block_group_flags(root,
7237 shrink_block_group->flags);
7238 if (new_alloc_flags != shrink_block_group->flags) {
7239 calc =
7240 btrfs_block_group_used(&shrink_block_group->item);
7241 } else {
7242 calc = shrink_block_group->key.offset;
7243 }
Chris Masonc286ac42008-07-22 23:06:41 -04007244 spin_unlock(&shrink_block_group->lock);
7245
Chris Mason0ef3e662008-05-24 14:04:53 -04007246 do_chunk_alloc(trans, root->fs_info->extent_root,
7247 calc + 2 * 1024 * 1024, new_alloc_flags, force);
Chris Mason7d9eb122008-07-08 14:19:17 -04007248
Chris Mason0ef3e662008-05-24 14:04:53 -04007249 btrfs_end_transaction(trans, root);
Chris Masonc286ac42008-07-22 23:06:41 -04007250 } else
7251 spin_unlock(&shrink_block_group->lock);
Chris Mason0ef3e662008-05-24 14:04:53 -04007252 return 0;
7253}
7254
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007255
7256int btrfs_prepare_block_group_relocation(struct btrfs_root *root,
7257 struct btrfs_block_group_cache *group)
7258
7259{
7260 __alloc_chunk_for_shrink(root, group, 1);
7261 set_block_group_readonly(group);
7262 return 0;
7263}
7264
Josef Bacikba1bf482009-09-11 16:11:19 -04007265/*
7266 * checks to see if its even possible to relocate this block group.
7267 *
7268 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
7269 * ok to go ahead and try.
7270 */
7271int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04007272{
Zheng Yan1a40e232008-09-26 10:09:34 -04007273 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04007274 struct btrfs_space_info *space_info;
7275 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
7276 struct btrfs_device *device;
7277 int full = 0;
7278 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05007279
Josef Bacikba1bf482009-09-11 16:11:19 -04007280 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04007281
Josef Bacikba1bf482009-09-11 16:11:19 -04007282 /* odd, couldn't find the block group, leave it alone */
7283 if (!block_group)
7284 return -1;
Chris Masonedbd8d42007-12-21 16:27:24 -05007285
Josef Bacikba1bf482009-09-11 16:11:19 -04007286 /* no bytes used, we're good */
7287 if (!btrfs_block_group_used(&block_group->item))
7288 goto out;
Chris Mason323da792008-05-09 11:46:48 -04007289
Josef Bacikba1bf482009-09-11 16:11:19 -04007290 space_info = block_group->space_info;
7291 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04007292
Josef Bacikba1bf482009-09-11 16:11:19 -04007293 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04007294
Josef Bacikba1bf482009-09-11 16:11:19 -04007295 /*
7296 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04007297 * relocate it unless we're able to allocate a new chunk below.
7298 *
7299 * Otherwise, we need to make sure we have room in the space to handle
7300 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04007301 */
Chris Mason7ce618d2009-09-22 14:48:44 -04007302 if ((space_info->total_bytes != block_group->key.offset) &&
7303 (space_info->bytes_used + space_info->bytes_reserved +
Josef Bacikba1bf482009-09-11 16:11:19 -04007304 space_info->bytes_pinned + space_info->bytes_readonly +
7305 btrfs_block_group_used(&block_group->item) <
Chris Mason7ce618d2009-09-22 14:48:44 -04007306 space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04007307 spin_unlock(&space_info->lock);
7308 goto out;
7309 }
7310 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04007311
Josef Bacikba1bf482009-09-11 16:11:19 -04007312 /*
7313 * ok we don't have enough space, but maybe we have free space on our
7314 * devices to allocate new chunks for relocation, so loop through our
7315 * alloc devices and guess if we have enough space. However, if we
7316 * were marked as full, then we know there aren't enough chunks, and we
7317 * can just return.
7318 */
7319 ret = -1;
7320 if (full)
7321 goto out;
Chris Mason4313b392008-01-03 09:08:48 -05007322
Josef Bacikba1bf482009-09-11 16:11:19 -04007323 mutex_lock(&root->fs_info->chunk_mutex);
7324 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
7325 u64 min_free = btrfs_block_group_used(&block_group->item);
7326 u64 dev_offset, max_avail;
Chris Masonea8c2812008-08-04 23:17:27 -04007327
Josef Bacikba1bf482009-09-11 16:11:19 -04007328 /*
7329 * check to make sure we can actually find a chunk with enough
7330 * space to fit our block group in.
7331 */
7332 if (device->total_bytes > device->bytes_used + min_free) {
7333 ret = find_free_dev_extent(NULL, device, min_free,
7334 &dev_offset, &max_avail);
7335 if (!ret)
Yan73e48b22008-01-03 14:14:39 -05007336 break;
Josef Bacikba1bf482009-09-11 16:11:19 -04007337 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05007338 }
Chris Masonedbd8d42007-12-21 16:27:24 -05007339 }
Josef Bacikba1bf482009-09-11 16:11:19 -04007340 mutex_unlock(&root->fs_info->chunk_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05007341out:
Josef Bacikba1bf482009-09-11 16:11:19 -04007342 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05007343 return ret;
7344}
7345
Christoph Hellwigb2950862008-12-02 09:54:17 -05007346static int find_first_block_group(struct btrfs_root *root,
7347 struct btrfs_path *path, struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04007348{
Chris Mason925baed2008-06-25 16:01:30 -04007349 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04007350 struct btrfs_key found_key;
7351 struct extent_buffer *leaf;
7352 int slot;
7353
7354 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
7355 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04007356 goto out;
7357
Chris Masond3977122009-01-05 21:25:51 -05007358 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04007359 slot = path->slots[0];
7360 leaf = path->nodes[0];
7361 if (slot >= btrfs_header_nritems(leaf)) {
7362 ret = btrfs_next_leaf(root, path);
7363 if (ret == 0)
7364 continue;
7365 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04007366 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04007367 break;
7368 }
7369 btrfs_item_key_to_cpu(leaf, &found_key, slot);
7370
7371 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04007372 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
7373 ret = 0;
7374 goto out;
7375 }
Chris Mason0b86a832008-03-24 15:01:56 -04007376 path->slots[0]++;
7377 }
Chris Mason925baed2008-06-25 16:01:30 -04007378out:
Chris Mason0b86a832008-03-24 15:01:56 -04007379 return ret;
7380}
7381
Zheng Yan1a40e232008-09-26 10:09:34 -04007382int btrfs_free_block_groups(struct btrfs_fs_info *info)
7383{
7384 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04007385 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04007386 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04007387 struct rb_node *n;
7388
Yan Zheng11833d62009-09-11 16:11:19 -04007389 down_write(&info->extent_commit_sem);
7390 while (!list_empty(&info->caching_block_groups)) {
7391 caching_ctl = list_entry(info->caching_block_groups.next,
7392 struct btrfs_caching_control, list);
7393 list_del(&caching_ctl->list);
7394 put_caching_control(caching_ctl);
7395 }
7396 up_write(&info->extent_commit_sem);
7397
Zheng Yan1a40e232008-09-26 10:09:34 -04007398 spin_lock(&info->block_group_cache_lock);
7399 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
7400 block_group = rb_entry(n, struct btrfs_block_group_cache,
7401 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04007402 rb_erase(&block_group->cache_node,
7403 &info->block_group_cache_tree);
Yan Zhengd899e052008-10-30 14:25:28 -04007404 spin_unlock(&info->block_group_cache_lock);
7405
Josef Bacik80eb2342008-10-29 14:49:05 -04007406 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04007407 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04007408 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05007409
Josef Bacik817d52f2009-07-13 21:29:25 -04007410 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04007411 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04007412
7413 btrfs_remove_free_space_cache(block_group);
Josef Bacik11dfe352009-11-13 20:12:59 +00007414 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04007415
7416 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04007417 }
7418 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -04007419
7420 /* now that all the block groups are freed, go through and
7421 * free all the space_info structs. This is only called during
7422 * the final stages of unmount, and so we know nobody is
7423 * using them. We call synchronize_rcu() once before we start,
7424 * just to be on the safe side.
7425 */
7426 synchronize_rcu();
7427
7428 while(!list_empty(&info->space_info)) {
7429 space_info = list_entry(info->space_info.next,
7430 struct btrfs_space_info,
7431 list);
7432
7433 list_del(&space_info->list);
7434 kfree(space_info);
7435 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007436 return 0;
7437}
7438
Chris Mason9078a3e2007-04-26 16:46:15 -04007439int btrfs_read_block_groups(struct btrfs_root *root)
7440{
7441 struct btrfs_path *path;
7442 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04007443 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04007444 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04007445 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04007446 struct btrfs_key key;
7447 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04007448 struct extent_buffer *leaf;
Chris Mason96b51792007-10-15 16:15:19 -04007449
Chris Masonbe744172007-05-06 10:15:01 -04007450 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04007451 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04007452 key.offset = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04007453 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason9078a3e2007-04-26 16:46:15 -04007454 path = btrfs_alloc_path();
7455 if (!path)
7456 return -ENOMEM;
7457
Chris Masond3977122009-01-05 21:25:51 -05007458 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04007459 ret = find_first_block_group(root, path, &key);
7460 if (ret > 0) {
7461 ret = 0;
7462 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04007463 }
Chris Mason0b86a832008-03-24 15:01:56 -04007464 if (ret != 0)
7465 goto error;
7466
Chris Mason5f39d392007-10-15 16:14:19 -04007467 leaf = path->nodes[0];
7468 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason8f18cf12008-04-25 16:53:30 -04007469 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04007470 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04007471 ret = -ENOMEM;
Chris Mason9078a3e2007-04-26 16:46:15 -04007472 break;
7473 }
Chris Mason3e1ad542007-05-07 20:03:49 -04007474
Yan Zhengd2fb3432008-12-11 16:30:39 -05007475 atomic_set(&cache->count, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04007476 spin_lock_init(&cache->lock);
Josef Bacik6226cb02009-04-03 10:14:18 -04007477 spin_lock_init(&cache->tree_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04007478 cache->fs_info = info;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007479 INIT_LIST_HEAD(&cache->list);
Chris Masonfa9c0d72009-04-03 09:47:43 -04007480 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik96303082009-07-13 21:29:25 -04007481
7482 /*
7483 * we only want to have 32k of ram per block group for keeping
7484 * track of free space, and if we pass 1/2 of that we want to
7485 * start converting things over to using bitmaps
7486 */
7487 cache->extents_thresh = ((1024 * 32) / 2) /
7488 sizeof(struct btrfs_free_space);
7489
Chris Mason5f39d392007-10-15 16:14:19 -04007490 read_extent_buffer(leaf, &cache->item,
7491 btrfs_item_ptr_offset(leaf, path->slots[0]),
7492 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04007493 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Mason0b86a832008-03-24 15:01:56 -04007494
Chris Mason9078a3e2007-04-26 16:46:15 -04007495 key.objectid = found_key.objectid + found_key.offset;
7496 btrfs_release_path(root, path);
Chris Mason0b86a832008-03-24 15:01:56 -04007497 cache->flags = btrfs_block_group_flags(&cache->item);
Josef Bacik817d52f2009-07-13 21:29:25 -04007498 cache->sectorsize = root->sectorsize;
7499
Josef Bacik817d52f2009-07-13 21:29:25 -04007500 /*
7501 * check for two cases, either we are full, and therefore
7502 * don't need to bother with the caching work since we won't
7503 * find any space, or we are empty, and we can just add all
7504 * the space in and be done with it. This saves us _alot_ of
7505 * time, particularly in the full case.
7506 */
7507 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Josef Bacik1b2da372009-09-11 16:11:20 -04007508 exclude_super_stripes(root, cache);
Yan Zheng11833d62009-09-11 16:11:19 -04007509 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04007510 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik1b2da372009-09-11 16:11:20 -04007511 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04007512 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -04007513 exclude_super_stripes(root, cache);
7514 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04007515 cache->cached = BTRFS_CACHE_FINISHED;
7516 add_new_free_space(cache, root->fs_info,
7517 found_key.objectid,
7518 found_key.objectid +
7519 found_key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -04007520 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04007521 }
Chris Mason96b51792007-10-15 16:15:19 -04007522
Chris Mason6324fbf2008-03-24 15:01:59 -04007523 ret = update_space_info(info, cache->flags, found_key.offset,
7524 btrfs_block_group_used(&cache->item),
7525 &space_info);
7526 BUG_ON(ret);
7527 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -04007528 spin_lock(&cache->space_info->lock);
7529 cache->space_info->bytes_super += cache->bytes_super;
7530 spin_unlock(&cache->space_info->lock);
7531
Josef Bacik80eb2342008-10-29 14:49:05 -04007532 down_write(&space_info->groups_sem);
7533 list_add_tail(&cache->list, &space_info->block_groups);
7534 up_write(&space_info->groups_sem);
Chris Mason6324fbf2008-03-24 15:01:59 -04007535
Josef Bacik0f9dd462008-09-23 13:14:11 -04007536 ret = btrfs_add_block_group_cache(root->fs_info, cache);
7537 BUG_ON(ret);
Chris Mason75ccf472008-09-30 19:24:06 -04007538
7539 set_avail_alloc_bits(root->fs_info, cache->flags);
Yan Zheng2b820322008-11-17 21:11:30 -05007540 if (btrfs_chunk_readonly(root, cache->key.objectid))
7541 set_block_group_readonly(cache);
Chris Mason9078a3e2007-04-26 16:46:15 -04007542 }
Chris Mason0b86a832008-03-24 15:01:56 -04007543 ret = 0;
7544error:
Chris Mason9078a3e2007-04-26 16:46:15 -04007545 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04007546 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04007547}
Chris Mason6324fbf2008-03-24 15:01:59 -04007548
7549int btrfs_make_block_group(struct btrfs_trans_handle *trans,
7550 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04007551 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04007552 u64 size)
7553{
7554 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04007555 struct btrfs_root *extent_root;
7556 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -04007557
7558 extent_root = root->fs_info->extent_root;
Chris Mason6324fbf2008-03-24 15:01:59 -04007559
Chris Mason12fcfd22009-03-24 10:24:20 -04007560 root->fs_info->last_trans_log_full_commit = trans->transid;
Chris Masone02119d2008-09-05 16:13:11 -04007561
Chris Mason8f18cf12008-04-25 16:53:30 -04007562 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Josef Bacik0f9dd462008-09-23 13:14:11 -04007563 if (!cache)
7564 return -ENOMEM;
7565
Chris Masone17cade2008-04-15 15:41:47 -04007566 cache->key.objectid = chunk_offset;
Chris Mason6324fbf2008-03-24 15:01:59 -04007567 cache->key.offset = size;
Yan Zhengd2fb3432008-12-11 16:30:39 -05007568 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Josef Bacik96303082009-07-13 21:29:25 -04007569 cache->sectorsize = root->sectorsize;
7570
7571 /*
7572 * we only want to have 32k of ram per block group for keeping track
7573 * of free space, and if we pass 1/2 of that we want to start
7574 * converting things over to using bitmaps
7575 */
7576 cache->extents_thresh = ((1024 * 32) / 2) /
7577 sizeof(struct btrfs_free_space);
Yan Zhengd2fb3432008-12-11 16:30:39 -05007578 atomic_set(&cache->count, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04007579 spin_lock_init(&cache->lock);
Josef Bacik6226cb02009-04-03 10:14:18 -04007580 spin_lock_init(&cache->tree_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04007581 INIT_LIST_HEAD(&cache->list);
Chris Masonfa9c0d72009-04-03 09:47:43 -04007582 INIT_LIST_HEAD(&cache->cluster_list);
Chris Mason0ef3e662008-05-24 14:04:53 -04007583
Chris Mason6324fbf2008-03-24 15:01:59 -04007584 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04007585 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
7586 cache->flags = type;
7587 btrfs_set_block_group_flags(&cache->item, type);
7588
Yan Zheng11833d62009-09-11 16:11:19 -04007589 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04007590 cache->cached = BTRFS_CACHE_FINISHED;
Yan Zheng11833d62009-09-11 16:11:19 -04007591 exclude_super_stripes(root, cache);
Josef Bacik96303082009-07-13 21:29:25 -04007592
Josef Bacik817d52f2009-07-13 21:29:25 -04007593 add_new_free_space(cache, root->fs_info, chunk_offset,
7594 chunk_offset + size);
7595
Yan Zheng11833d62009-09-11 16:11:19 -04007596 free_excluded_extents(root, cache);
7597
Chris Mason6324fbf2008-03-24 15:01:59 -04007598 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
7599 &cache->space_info);
7600 BUG_ON(ret);
Josef Bacik1b2da372009-09-11 16:11:20 -04007601
7602 spin_lock(&cache->space_info->lock);
7603 cache->space_info->bytes_super += cache->bytes_super;
7604 spin_unlock(&cache->space_info->lock);
7605
Josef Bacik80eb2342008-10-29 14:49:05 -04007606 down_write(&cache->space_info->groups_sem);
7607 list_add_tail(&cache->list, &cache->space_info->block_groups);
7608 up_write(&cache->space_info->groups_sem);
Chris Mason6324fbf2008-03-24 15:01:59 -04007609
Josef Bacik0f9dd462008-09-23 13:14:11 -04007610 ret = btrfs_add_block_group_cache(root->fs_info, cache);
7611 BUG_ON(ret);
Chris Masonc286ac42008-07-22 23:06:41 -04007612
Chris Mason6324fbf2008-03-24 15:01:59 -04007613 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
7614 sizeof(cache->item));
7615 BUG_ON(ret);
7616
Chris Masond18a2c42008-04-04 15:40:00 -04007617 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason925baed2008-06-25 16:01:30 -04007618
Chris Mason6324fbf2008-03-24 15:01:59 -04007619 return 0;
7620}
Zheng Yan1a40e232008-09-26 10:09:34 -04007621
7622int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
7623 struct btrfs_root *root, u64 group_start)
7624{
7625 struct btrfs_path *path;
7626 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -04007627 struct btrfs_free_cluster *cluster;
Zheng Yan1a40e232008-09-26 10:09:34 -04007628 struct btrfs_key key;
7629 int ret;
7630
Zheng Yan1a40e232008-09-26 10:09:34 -04007631 root = root->fs_info->extent_root;
7632
7633 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
7634 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -05007635 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -04007636
7637 memcpy(&key, &block_group->key, sizeof(key));
7638
Chris Mason44fb5512009-06-04 15:34:51 -04007639 /* make sure this block group isn't part of an allocation cluster */
7640 cluster = &root->fs_info->data_alloc_cluster;
7641 spin_lock(&cluster->refill_lock);
7642 btrfs_return_cluster_to_free_space(block_group, cluster);
7643 spin_unlock(&cluster->refill_lock);
7644
7645 /*
7646 * make sure this block group isn't part of a metadata
7647 * allocation cluster
7648 */
7649 cluster = &root->fs_info->meta_alloc_cluster;
7650 spin_lock(&cluster->refill_lock);
7651 btrfs_return_cluster_to_free_space(block_group, cluster);
7652 spin_unlock(&cluster->refill_lock);
7653
Zheng Yan1a40e232008-09-26 10:09:34 -04007654 path = btrfs_alloc_path();
7655 BUG_ON(!path);
7656
Yan Zheng3dfdb932009-01-21 10:49:16 -05007657 spin_lock(&root->fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04007658 rb_erase(&block_group->cache_node,
7659 &root->fs_info->block_group_cache_tree);
Yan Zheng3dfdb932009-01-21 10:49:16 -05007660 spin_unlock(&root->fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04007661
Josef Bacik80eb2342008-10-29 14:49:05 -04007662 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04007663 /*
7664 * we must use list_del_init so people can check to see if they
7665 * are still on the list after taking the semaphore
7666 */
7667 list_del_init(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04007668 up_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04007669
Josef Bacik817d52f2009-07-13 21:29:25 -04007670 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04007671 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04007672
7673 btrfs_remove_free_space_cache(block_group);
7674
Yan Zhengc146afa2008-11-12 14:34:12 -05007675 spin_lock(&block_group->space_info->lock);
7676 block_group->space_info->total_bytes -= block_group->key.offset;
7677 block_group->space_info->bytes_readonly -= block_group->key.offset;
7678 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -04007679
7680 btrfs_clear_space_info_full(root->fs_info);
Yan Zhengc146afa2008-11-12 14:34:12 -05007681
Chris Masonfa9c0d72009-04-03 09:47:43 -04007682 btrfs_put_block_group(block_group);
7683 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -04007684
7685 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
7686 if (ret > 0)
7687 ret = -EIO;
7688 if (ret < 0)
7689 goto out;
7690
7691 ret = btrfs_del_item(trans, root, path);
7692out:
7693 btrfs_free_path(path);
7694 return ret;
7695}