blob: 0f47b3e2010eaae223689a374c88874ca576bdb7 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
Zach Brownec6b9102007-07-11 10:00:37 -040018#include <linux/sched.h>
Chris Masonedbd8d42007-12-21 16:27:24 -050019#include <linux/pagemap.h>
Chris Masonec44a352008-04-28 15:29:52 -040020#include <linux/writeback.h>
David Woodhouse21af8042008-08-12 14:13:26 +010021#include <linux/blkdev.h>
Chris Masonb7a9f292009-02-04 09:23:45 -050022#include <linux/sort.h>
Chris Mason4184ea72009-03-10 12:39:20 -040023#include <linux/rcupdate.h>
Josef Bacik817d52f2009-07-13 21:29:25 -040024#include <linux/kthread.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
David Sterbadff51cd2011-06-14 12:52:17 +020026#include <linux/ratelimit.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050027#include "compat.h"
Chris Mason74493f72007-12-11 09:25:06 -050028#include "hash.h"
Chris Masonfec577f2007-02-26 10:40:21 -050029#include "ctree.h"
30#include "disk-io.h"
31#include "print-tree.h"
Chris Masone089f052007-03-16 16:20:31 -040032#include "transaction.h"
Chris Mason0b86a832008-03-24 15:01:56 -040033#include "volumes.h"
Chris Mason925baed2008-06-25 16:01:30 -040034#include "locking.h"
Chris Masonfa9c0d792009-04-03 09:47:43 -040035#include "free-space-cache.h"
Chris Masonfec577f2007-02-26 10:40:21 -050036
Chris Mason0e4f8f82011-04-15 16:05:44 -040037/* control flags for do_chunk_alloc's force field
38 * CHUNK_ALLOC_NO_FORCE means to only allocate a chunk
39 * if we really need one.
40 *
41 * CHUNK_ALLOC_FORCE means it must try to allocate one
42 *
43 * CHUNK_ALLOC_LIMITED means to only try and allocate one
44 * if we have very few chunks already allocated. This is
45 * used as part of the clustering code to help make sure
46 * we have a good pool of storage to cluster in, without
47 * filling the FS with empty chunks
48 *
49 */
50enum {
51 CHUNK_ALLOC_NO_FORCE = 0,
52 CHUNK_ALLOC_FORCE = 1,
53 CHUNK_ALLOC_LIMITED = 2,
54};
55
Josef Bacikfb25e912011-07-26 17:00:46 -040056/*
57 * Control how reservations are dealt with.
58 *
59 * RESERVE_FREE - freeing a reservation.
60 * RESERVE_ALLOC - allocating space and we need to update bytes_may_use for
61 * ENOSPC accounting
62 * RESERVE_ALLOC_NO_ACCOUNT - allocating space and we should not update
63 * bytes_may_use as the ENOSPC accounting is done elsewhere
64 */
65enum {
66 RESERVE_FREE = 0,
67 RESERVE_ALLOC = 1,
68 RESERVE_ALLOC_NO_ACCOUNT = 2,
69};
70
Josef Bacikf3465ca2008-11-12 14:19:50 -050071static int update_block_group(struct btrfs_trans_handle *trans,
72 struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -040073 u64 bytenr, u64 num_bytes, int alloc);
Yan Zheng5d4f98a2009-06-10 10:45:14 -040074static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
75 struct btrfs_root *root,
76 u64 bytenr, u64 num_bytes, u64 parent,
77 u64 root_objectid, u64 owner_objectid,
78 u64 owner_offset, int refs_to_drop,
79 struct btrfs_delayed_extent_op *extra_op);
80static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
81 struct extent_buffer *leaf,
82 struct btrfs_extent_item *ei);
83static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
84 struct btrfs_root *root,
85 u64 parent, u64 root_objectid,
86 u64 flags, u64 owner, u64 offset,
87 struct btrfs_key *ins, int ref_mod);
88static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
89 struct btrfs_root *root,
90 u64 parent, u64 root_objectid,
91 u64 flags, struct btrfs_disk_key *key,
92 int level, struct btrfs_key *ins);
Josef Bacik6a632092009-02-20 11:00:09 -050093static int do_chunk_alloc(struct btrfs_trans_handle *trans,
94 struct btrfs_root *extent_root, u64 alloc_bytes,
95 u64 flags, int force);
Yan Zheng11833d62009-09-11 16:11:19 -040096static int find_next_key(struct btrfs_path *path, int level,
97 struct btrfs_key *key);
Josef Bacik9ed74f22009-09-11 16:12:44 -040098static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
99 int dump_block_groups);
Josef Bacikfb25e912011-07-26 17:00:46 -0400100static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
101 u64 num_bytes, int reserve);
Josef Bacik6a632092009-02-20 11:00:09 -0500102
Josef Bacik817d52f2009-07-13 21:29:25 -0400103static noinline int
104block_group_cache_done(struct btrfs_block_group_cache *cache)
105{
106 smp_mb();
107 return cache->cached == BTRFS_CACHE_FINISHED;
108}
109
Josef Bacik0f9dd462008-09-23 13:14:11 -0400110static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
111{
112 return (cache->flags & bits) == bits;
113}
114
David Sterba62a45b62011-04-20 15:52:26 +0200115static void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
Josef Bacik11dfe352009-11-13 20:12:59 +0000116{
117 atomic_inc(&cache->count);
118}
119
120void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
121{
Yan, Zhengf0486c62010-05-16 10:46:25 -0400122 if (atomic_dec_and_test(&cache->count)) {
123 WARN_ON(cache->pinned > 0);
124 WARN_ON(cache->reserved > 0);
Li Zefan34d52cb2011-03-29 13:46:06 +0800125 kfree(cache->free_space_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000126 kfree(cache);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400127 }
Josef Bacik11dfe352009-11-13 20:12:59 +0000128}
129
Josef Bacik0f9dd462008-09-23 13:14:11 -0400130/*
131 * this adds the block group to the fs_info rb tree for the block group
132 * cache
133 */
Christoph Hellwigb2950862008-12-02 09:54:17 -0500134static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400135 struct btrfs_block_group_cache *block_group)
136{
137 struct rb_node **p;
138 struct rb_node *parent = NULL;
139 struct btrfs_block_group_cache *cache;
140
141 spin_lock(&info->block_group_cache_lock);
142 p = &info->block_group_cache_tree.rb_node;
143
144 while (*p) {
145 parent = *p;
146 cache = rb_entry(parent, struct btrfs_block_group_cache,
147 cache_node);
148 if (block_group->key.objectid < cache->key.objectid) {
149 p = &(*p)->rb_left;
150 } else if (block_group->key.objectid > cache->key.objectid) {
151 p = &(*p)->rb_right;
152 } else {
153 spin_unlock(&info->block_group_cache_lock);
154 return -EEXIST;
155 }
156 }
157
158 rb_link_node(&block_group->cache_node, parent, p);
159 rb_insert_color(&block_group->cache_node,
160 &info->block_group_cache_tree);
161 spin_unlock(&info->block_group_cache_lock);
162
163 return 0;
164}
165
166/*
167 * This will return the block group at or after bytenr if contains is 0, else
168 * it will return the block group that contains the bytenr
169 */
170static struct btrfs_block_group_cache *
171block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
172 int contains)
173{
174 struct btrfs_block_group_cache *cache, *ret = NULL;
175 struct rb_node *n;
176 u64 end, start;
177
178 spin_lock(&info->block_group_cache_lock);
179 n = info->block_group_cache_tree.rb_node;
180
181 while (n) {
182 cache = rb_entry(n, struct btrfs_block_group_cache,
183 cache_node);
184 end = cache->key.objectid + cache->key.offset - 1;
185 start = cache->key.objectid;
186
187 if (bytenr < start) {
188 if (!contains && (!ret || start < ret->key.objectid))
189 ret = cache;
190 n = n->rb_left;
191 } else if (bytenr > start) {
192 if (contains && bytenr <= end) {
193 ret = cache;
194 break;
195 }
196 n = n->rb_right;
197 } else {
198 ret = cache;
199 break;
200 }
201 }
Yan Zhengd2fb3432008-12-11 16:30:39 -0500202 if (ret)
Josef Bacik11dfe352009-11-13 20:12:59 +0000203 btrfs_get_block_group(ret);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400204 spin_unlock(&info->block_group_cache_lock);
205
206 return ret;
207}
208
Yan Zheng11833d62009-09-11 16:11:19 -0400209static int add_excluded_extent(struct btrfs_root *root,
210 u64 start, u64 num_bytes)
Josef Bacik817d52f2009-07-13 21:29:25 -0400211{
Yan Zheng11833d62009-09-11 16:11:19 -0400212 u64 end = start + num_bytes - 1;
213 set_extent_bits(&root->fs_info->freed_extents[0],
214 start, end, EXTENT_UPTODATE, GFP_NOFS);
215 set_extent_bits(&root->fs_info->freed_extents[1],
216 start, end, EXTENT_UPTODATE, GFP_NOFS);
217 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400218}
219
Yan Zheng11833d62009-09-11 16:11:19 -0400220static void free_excluded_extents(struct btrfs_root *root,
221 struct btrfs_block_group_cache *cache)
Josef Bacik817d52f2009-07-13 21:29:25 -0400222{
Yan Zheng11833d62009-09-11 16:11:19 -0400223 u64 start, end;
224
225 start = cache->key.objectid;
226 end = start + cache->key.offset - 1;
227
228 clear_extent_bits(&root->fs_info->freed_extents[0],
229 start, end, EXTENT_UPTODATE, GFP_NOFS);
230 clear_extent_bits(&root->fs_info->freed_extents[1],
231 start, end, EXTENT_UPTODATE, GFP_NOFS);
232}
233
234static int exclude_super_stripes(struct btrfs_root *root,
235 struct btrfs_block_group_cache *cache)
236{
Josef Bacik817d52f2009-07-13 21:29:25 -0400237 u64 bytenr;
238 u64 *logical;
239 int stripe_len;
240 int i, nr, ret;
241
Yan, Zheng06b23312009-11-26 09:31:11 +0000242 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
243 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
244 cache->bytes_super += stripe_len;
245 ret = add_excluded_extent(root, cache->key.objectid,
246 stripe_len);
247 BUG_ON(ret);
248 }
249
Josef Bacik817d52f2009-07-13 21:29:25 -0400250 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
251 bytenr = btrfs_sb_offset(i);
252 ret = btrfs_rmap_block(&root->fs_info->mapping_tree,
253 cache->key.objectid, bytenr,
254 0, &logical, &nr, &stripe_len);
255 BUG_ON(ret);
Yan Zheng11833d62009-09-11 16:11:19 -0400256
Josef Bacik817d52f2009-07-13 21:29:25 -0400257 while (nr--) {
Josef Bacik1b2da372009-09-11 16:11:20 -0400258 cache->bytes_super += stripe_len;
Yan Zheng11833d62009-09-11 16:11:19 -0400259 ret = add_excluded_extent(root, logical[nr],
260 stripe_len);
261 BUG_ON(ret);
Josef Bacik817d52f2009-07-13 21:29:25 -0400262 }
Yan Zheng11833d62009-09-11 16:11:19 -0400263
Josef Bacik817d52f2009-07-13 21:29:25 -0400264 kfree(logical);
265 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400266 return 0;
267}
268
Yan Zheng11833d62009-09-11 16:11:19 -0400269static struct btrfs_caching_control *
270get_caching_control(struct btrfs_block_group_cache *cache)
271{
272 struct btrfs_caching_control *ctl;
273
274 spin_lock(&cache->lock);
275 if (cache->cached != BTRFS_CACHE_STARTED) {
276 spin_unlock(&cache->lock);
277 return NULL;
278 }
279
Josef Bacikdde5abe2010-09-16 16:17:03 -0400280 /* We're loading it the fast way, so we don't have a caching_ctl. */
281 if (!cache->caching_ctl) {
282 spin_unlock(&cache->lock);
283 return NULL;
284 }
285
Yan Zheng11833d62009-09-11 16:11:19 -0400286 ctl = cache->caching_ctl;
287 atomic_inc(&ctl->count);
288 spin_unlock(&cache->lock);
289 return ctl;
290}
291
292static void put_caching_control(struct btrfs_caching_control *ctl)
293{
294 if (atomic_dec_and_test(&ctl->count))
295 kfree(ctl);
296}
297
Josef Bacik0f9dd462008-09-23 13:14:11 -0400298/*
299 * this is only called by cache_block_group, since we could have freed extents
300 * we need to check the pinned_extents for any extents that can't be used yet
301 * since their free space will be released as soon as the transaction commits.
302 */
Josef Bacik817d52f2009-07-13 21:29:25 -0400303static u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400304 struct btrfs_fs_info *info, u64 start, u64 end)
305{
Josef Bacik817d52f2009-07-13 21:29:25 -0400306 u64 extent_start, extent_end, size, total_added = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400307 int ret;
308
309 while (start < end) {
Yan Zheng11833d62009-09-11 16:11:19 -0400310 ret = find_first_extent_bit(info->pinned_extents, start,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400311 &extent_start, &extent_end,
Yan Zheng11833d62009-09-11 16:11:19 -0400312 EXTENT_DIRTY | EXTENT_UPTODATE);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400313 if (ret)
314 break;
315
Yan, Zheng06b23312009-11-26 09:31:11 +0000316 if (extent_start <= start) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400317 start = extent_end + 1;
318 } else if (extent_start > start && extent_start < end) {
319 size = extent_start - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400320 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500321 ret = btrfs_add_free_space(block_group, start,
322 size);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400323 BUG_ON(ret);
324 start = extent_end + 1;
325 } else {
326 break;
327 }
328 }
329
330 if (start < end) {
331 size = end - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400332 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500333 ret = btrfs_add_free_space(block_group, start, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400334 BUG_ON(ret);
335 }
336
Josef Bacik817d52f2009-07-13 21:29:25 -0400337 return total_added;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400338}
339
Josef Bacikbab39bf2011-06-30 14:42:28 -0400340static noinline void caching_thread(struct btrfs_work *work)
Chris Masone37c9e62007-05-09 20:13:14 -0400341{
Josef Bacikbab39bf2011-06-30 14:42:28 -0400342 struct btrfs_block_group_cache *block_group;
343 struct btrfs_fs_info *fs_info;
344 struct btrfs_caching_control *caching_ctl;
345 struct btrfs_root *extent_root;
Chris Masone37c9e62007-05-09 20:13:14 -0400346 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400347 struct extent_buffer *leaf;
Yan Zheng11833d62009-09-11 16:11:19 -0400348 struct btrfs_key key;
Josef Bacik817d52f2009-07-13 21:29:25 -0400349 u64 total_found = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400350 u64 last = 0;
351 u32 nritems;
352 int ret = 0;
Chris Masonf510cfe2007-10-15 16:14:48 -0400353
Josef Bacikbab39bf2011-06-30 14:42:28 -0400354 caching_ctl = container_of(work, struct btrfs_caching_control, work);
355 block_group = caching_ctl->block_group;
356 fs_info = block_group->fs_info;
357 extent_root = fs_info->extent_root;
358
Chris Masone37c9e62007-05-09 20:13:14 -0400359 path = btrfs_alloc_path();
360 if (!path)
Josef Bacikbab39bf2011-06-30 14:42:28 -0400361 goto out;
Yan7d7d6062007-09-14 16:15:28 -0400362
Josef Bacik817d52f2009-07-13 21:29:25 -0400363 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
Yan Zheng11833d62009-09-11 16:11:19 -0400364
Chris Mason5cd57b22008-06-25 16:01:30 -0400365 /*
Josef Bacik817d52f2009-07-13 21:29:25 -0400366 * We don't want to deadlock with somebody trying to allocate a new
367 * extent for the extent root while also trying to search the extent
368 * root to add free space. So we skip locking and search the commit
369 * root, since its read-only
Chris Mason5cd57b22008-06-25 16:01:30 -0400370 */
371 path->skip_locking = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400372 path->search_commit_root = 1;
Josef Bacik026fd312011-05-13 10:32:11 -0400373 path->reada = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400374
Yan Zhenge4404d62008-12-12 10:03:26 -0500375 key.objectid = last;
Chris Masone37c9e62007-05-09 20:13:14 -0400376 key.offset = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400377 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason013f1b12009-07-31 14:57:55 -0400378again:
Yan Zheng11833d62009-09-11 16:11:19 -0400379 mutex_lock(&caching_ctl->mutex);
Chris Mason013f1b12009-07-31 14:57:55 -0400380 /* need to make sure the commit_root doesn't disappear */
381 down_read(&fs_info->extent_commit_sem);
382
Yan Zheng11833d62009-09-11 16:11:19 -0400383 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
Chris Masone37c9e62007-05-09 20:13:14 -0400384 if (ret < 0)
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400385 goto err;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500386
Yan Zheng11833d62009-09-11 16:11:19 -0400387 leaf = path->nodes[0];
388 nritems = btrfs_header_nritems(leaf);
389
Chris Masond3977122009-01-05 21:25:51 -0500390 while (1) {
David Sterba7841cb22011-05-31 18:07:27 +0200391 if (btrfs_fs_closing(fs_info) > 1) {
Yan Zhengf25784b2009-07-28 08:41:57 -0400392 last = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400393 break;
Yan Zhengf25784b2009-07-28 08:41:57 -0400394 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400395
Yan Zheng11833d62009-09-11 16:11:19 -0400396 if (path->slots[0] < nritems) {
397 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
398 } else {
399 ret = find_next_key(path, 0, &key);
400 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -0400401 break;
Josef Bacik817d52f2009-07-13 21:29:25 -0400402
Josef Bacik589d8ad2011-05-11 17:30:53 -0400403 if (need_resched() ||
404 btrfs_next_leaf(extent_root, path)) {
405 caching_ctl->progress = last;
Chris Masonff5714c2011-05-28 07:00:39 -0400406 btrfs_release_path(path);
Josef Bacik589d8ad2011-05-11 17:30:53 -0400407 up_read(&fs_info->extent_commit_sem);
408 mutex_unlock(&caching_ctl->mutex);
Yan Zheng11833d62009-09-11 16:11:19 -0400409 cond_resched();
Josef Bacik589d8ad2011-05-11 17:30:53 -0400410 goto again;
411 }
412 leaf = path->nodes[0];
413 nritems = btrfs_header_nritems(leaf);
414 continue;
Yan Zheng11833d62009-09-11 16:11:19 -0400415 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400416
Yan Zheng11833d62009-09-11 16:11:19 -0400417 if (key.objectid < block_group->key.objectid) {
418 path->slots[0]++;
Josef Bacik817d52f2009-07-13 21:29:25 -0400419 continue;
Chris Masone37c9e62007-05-09 20:13:14 -0400420 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400421
Chris Masone37c9e62007-05-09 20:13:14 -0400422 if (key.objectid >= block_group->key.objectid +
Josef Bacik0f9dd462008-09-23 13:14:11 -0400423 block_group->key.offset)
Yan7d7d6062007-09-14 16:15:28 -0400424 break;
Yan7d7d6062007-09-14 16:15:28 -0400425
Yan Zheng11833d62009-09-11 16:11:19 -0400426 if (key.type == BTRFS_EXTENT_ITEM_KEY) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400427 total_found += add_new_free_space(block_group,
428 fs_info, last,
429 key.objectid);
Yan7d7d6062007-09-14 16:15:28 -0400430 last = key.objectid + key.offset;
Josef Bacik817d52f2009-07-13 21:29:25 -0400431
Yan Zheng11833d62009-09-11 16:11:19 -0400432 if (total_found > (1024 * 1024 * 2)) {
433 total_found = 0;
434 wake_up(&caching_ctl->wait);
435 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400436 }
Chris Masone37c9e62007-05-09 20:13:14 -0400437 path->slots[0]++;
438 }
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400439 ret = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400440
441 total_found += add_new_free_space(block_group, fs_info, last,
442 block_group->key.objectid +
443 block_group->key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -0400444 caching_ctl->progress = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400445
446 spin_lock(&block_group->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400447 block_group->caching_ctl = NULL;
Josef Bacik817d52f2009-07-13 21:29:25 -0400448 block_group->cached = BTRFS_CACHE_FINISHED;
449 spin_unlock(&block_group->lock);
450
Chris Mason54aa1f42007-06-22 14:16:25 -0400451err:
Chris Masone37c9e62007-05-09 20:13:14 -0400452 btrfs_free_path(path);
Yan Zheng276e6802009-07-30 09:40:40 -0400453 up_read(&fs_info->extent_commit_sem);
Josef Bacik817d52f2009-07-13 21:29:25 -0400454
Yan Zheng11833d62009-09-11 16:11:19 -0400455 free_excluded_extents(extent_root, block_group);
456
457 mutex_unlock(&caching_ctl->mutex);
Josef Bacikbab39bf2011-06-30 14:42:28 -0400458out:
Yan Zheng11833d62009-09-11 16:11:19 -0400459 wake_up(&caching_ctl->wait);
460
461 put_caching_control(caching_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000462 btrfs_put_block_group(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -0400463}
464
Josef Bacik9d66e232010-08-25 16:54:15 -0400465static int cache_block_group(struct btrfs_block_group_cache *cache,
466 struct btrfs_trans_handle *trans,
Josef Bacikb8399de2010-12-08 09:15:11 -0500467 struct btrfs_root *root,
Josef Bacik9d66e232010-08-25 16:54:15 -0400468 int load_cache_only)
Josef Bacik817d52f2009-07-13 21:29:25 -0400469{
Yan Zheng11833d62009-09-11 16:11:19 -0400470 struct btrfs_fs_info *fs_info = cache->fs_info;
471 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400472 int ret = 0;
473
Yan Zheng11833d62009-09-11 16:11:19 -0400474 smp_mb();
475 if (cache->cached != BTRFS_CACHE_NO)
476 return 0;
477
Josef Bacik9d66e232010-08-25 16:54:15 -0400478 /*
479 * We can't do the read from on-disk cache during a commit since we need
Josef Bacikb8399de2010-12-08 09:15:11 -0500480 * to have the normal tree locking. Also if we are currently trying to
481 * allocate blocks for the tree root we can't do the fast caching since
482 * we likely hold important locks.
Josef Bacik9d66e232010-08-25 16:54:15 -0400483 */
Li Dongyangf7039b12011-03-24 10:24:28 +0000484 if (trans && (!trans->transaction->in_commit) &&
Josef Bacik73bc1872011-10-03 14:07:49 -0400485 (root && root != root->fs_info->tree_root) &&
486 btrfs_test_opt(root, SPACE_CACHE)) {
Josef Bacik9d66e232010-08-25 16:54:15 -0400487 spin_lock(&cache->lock);
488 if (cache->cached != BTRFS_CACHE_NO) {
489 spin_unlock(&cache->lock);
490 return 0;
491 }
492 cache->cached = BTRFS_CACHE_STARTED;
493 spin_unlock(&cache->lock);
494
495 ret = load_free_space_cache(fs_info, cache);
496
497 spin_lock(&cache->lock);
498 if (ret == 1) {
499 cache->cached = BTRFS_CACHE_FINISHED;
500 cache->last_byte_to_unpin = (u64)-1;
501 } else {
502 cache->cached = BTRFS_CACHE_NO;
503 }
504 spin_unlock(&cache->lock);
Josef Bacik3c148742011-02-02 15:53:47 +0000505 if (ret == 1) {
506 free_excluded_extents(fs_info->extent_root, cache);
Josef Bacik9d66e232010-08-25 16:54:15 -0400507 return 0;
Josef Bacik3c148742011-02-02 15:53:47 +0000508 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400509 }
510
511 if (load_cache_only)
512 return 0;
513
Miao Xiefc0e4a32011-03-24 11:41:21 +0000514 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS);
Yan Zheng11833d62009-09-11 16:11:19 -0400515 BUG_ON(!caching_ctl);
516
517 INIT_LIST_HEAD(&caching_ctl->list);
518 mutex_init(&caching_ctl->mutex);
519 init_waitqueue_head(&caching_ctl->wait);
520 caching_ctl->block_group = cache;
521 caching_ctl->progress = cache->key.objectid;
522 /* one for caching kthread, one for caching block group list */
523 atomic_set(&caching_ctl->count, 2);
Josef Bacikbab39bf2011-06-30 14:42:28 -0400524 caching_ctl->work.func = caching_thread;
Yan Zheng11833d62009-09-11 16:11:19 -0400525
Josef Bacik817d52f2009-07-13 21:29:25 -0400526 spin_lock(&cache->lock);
527 if (cache->cached != BTRFS_CACHE_NO) {
528 spin_unlock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400529 kfree(caching_ctl);
530 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400531 }
Yan Zheng11833d62009-09-11 16:11:19 -0400532 cache->caching_ctl = caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400533 cache->cached = BTRFS_CACHE_STARTED;
534 spin_unlock(&cache->lock);
535
Yan Zheng11833d62009-09-11 16:11:19 -0400536 down_write(&fs_info->extent_commit_sem);
537 list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
538 up_write(&fs_info->extent_commit_sem);
539
Josef Bacik11dfe352009-11-13 20:12:59 +0000540 btrfs_get_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -0400541
Josef Bacikbab39bf2011-06-30 14:42:28 -0400542 btrfs_queue_worker(&fs_info->caching_workers, &caching_ctl->work);
Josef Bacik817d52f2009-07-13 21:29:25 -0400543
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400544 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -0400545}
546
Josef Bacik0f9dd462008-09-23 13:14:11 -0400547/*
548 * return the block group that starts at or after bytenr
549 */
Chris Masond3977122009-01-05 21:25:51 -0500550static struct btrfs_block_group_cache *
551btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
Chris Mason0ef3e662008-05-24 14:04:53 -0400552{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400553 struct btrfs_block_group_cache *cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400554
Josef Bacik0f9dd462008-09-23 13:14:11 -0400555 cache = block_group_cache_tree_search(info, bytenr, 0);
Chris Mason0ef3e662008-05-24 14:04:53 -0400556
Josef Bacik0f9dd462008-09-23 13:14:11 -0400557 return cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400558}
559
Josef Bacik0f9dd462008-09-23 13:14:11 -0400560/*
Sankar P9f556842009-05-14 13:52:22 -0400561 * return the block group that contains the given bytenr
Josef Bacik0f9dd462008-09-23 13:14:11 -0400562 */
Chris Masond3977122009-01-05 21:25:51 -0500563struct btrfs_block_group_cache *btrfs_lookup_block_group(
564 struct btrfs_fs_info *info,
565 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400566{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400567 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -0400568
Josef Bacik0f9dd462008-09-23 13:14:11 -0400569 cache = block_group_cache_tree_search(info, bytenr, 1);
Chris Mason96b51792007-10-15 16:15:19 -0400570
Josef Bacik0f9dd462008-09-23 13:14:11 -0400571 return cache;
Chris Masonbe744172007-05-06 10:15:01 -0400572}
Chris Mason0b86a832008-03-24 15:01:56 -0400573
Josef Bacik0f9dd462008-09-23 13:14:11 -0400574static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
575 u64 flags)
Chris Mason6324fbf2008-03-24 15:01:59 -0400576{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400577 struct list_head *head = &info->space_info;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400578 struct btrfs_space_info *found;
Chris Mason4184ea72009-03-10 12:39:20 -0400579
Yan, Zhengb742bb82010-05-16 10:46:24 -0400580 flags &= BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_SYSTEM |
581 BTRFS_BLOCK_GROUP_METADATA;
582
Chris Mason4184ea72009-03-10 12:39:20 -0400583 rcu_read_lock();
584 list_for_each_entry_rcu(found, head, list) {
Josef Bacik67377732010-09-16 16:19:09 -0400585 if (found->flags & flags) {
Chris Mason4184ea72009-03-10 12:39:20 -0400586 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400587 return found;
Chris Mason4184ea72009-03-10 12:39:20 -0400588 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400589 }
Chris Mason4184ea72009-03-10 12:39:20 -0400590 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400591 return NULL;
Chris Mason6324fbf2008-03-24 15:01:59 -0400592}
593
Chris Mason4184ea72009-03-10 12:39:20 -0400594/*
595 * after adding space to the filesystem, we need to clear the full flags
596 * on all the space infos.
597 */
598void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
599{
600 struct list_head *head = &info->space_info;
601 struct btrfs_space_info *found;
602
603 rcu_read_lock();
604 list_for_each_entry_rcu(found, head, list)
605 found->full = 0;
606 rcu_read_unlock();
607}
608
Josef Bacik80eb2342008-10-29 14:49:05 -0400609static u64 div_factor(u64 num, int factor)
610{
611 if (factor == 10)
612 return num;
613 num *= factor;
614 do_div(num, 10);
615 return num;
616}
617
Chris Masone5bc2452010-10-26 13:37:56 -0400618static u64 div_factor_fine(u64 num, int factor)
619{
620 if (factor == 100)
621 return num;
622 num *= factor;
623 do_div(num, 100);
624 return num;
625}
626
Yan Zhengd2fb3432008-12-11 16:30:39 -0500627u64 btrfs_find_block_group(struct btrfs_root *root,
628 u64 search_start, u64 search_hint, int owner)
Chris Masoncd1bc462007-04-27 10:08:34 -0400629{
Chris Mason96b51792007-10-15 16:15:19 -0400630 struct btrfs_block_group_cache *cache;
Chris Masoncd1bc462007-04-27 10:08:34 -0400631 u64 used;
Yan Zhengd2fb3432008-12-11 16:30:39 -0500632 u64 last = max(search_hint, search_start);
633 u64 group_start = 0;
Chris Mason31f3c992007-04-30 15:25:45 -0400634 int full_search = 0;
Yan Zhengd2fb3432008-12-11 16:30:39 -0500635 int factor = 9;
Chris Mason0ef3e662008-05-24 14:04:53 -0400636 int wrapped = 0;
Chris Mason31f3c992007-04-30 15:25:45 -0400637again:
Zheng Yane8569812008-09-26 10:05:48 -0400638 while (1) {
639 cache = btrfs_lookup_first_block_group(root->fs_info, last);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400640 if (!cache)
Chris Masoncd1bc462007-04-27 10:08:34 -0400641 break;
Chris Mason96b51792007-10-15 16:15:19 -0400642
Chris Masonc286ac42008-07-22 23:06:41 -0400643 spin_lock(&cache->lock);
Chris Mason96b51792007-10-15 16:15:19 -0400644 last = cache->key.objectid + cache->key.offset;
645 used = btrfs_block_group_used(&cache->item);
646
Yan Zhengd2fb3432008-12-11 16:30:39 -0500647 if ((full_search || !cache->ro) &&
648 block_group_bits(cache, BTRFS_BLOCK_GROUP_METADATA)) {
Zheng Yane8569812008-09-26 10:05:48 -0400649 if (used + cache->pinned + cache->reserved <
Yan Zhengd2fb3432008-12-11 16:30:39 -0500650 div_factor(cache->key.offset, factor)) {
651 group_start = cache->key.objectid;
Chris Masonc286ac42008-07-22 23:06:41 -0400652 spin_unlock(&cache->lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -0400653 btrfs_put_block_group(cache);
Chris Mason8790d502008-04-03 16:29:03 -0400654 goto found;
655 }
Chris Masoncd1bc462007-04-27 10:08:34 -0400656 }
Chris Masonc286ac42008-07-22 23:06:41 -0400657 spin_unlock(&cache->lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -0400658 btrfs_put_block_group(cache);
Chris Masonde428b62007-05-18 13:28:27 -0400659 cond_resched();
Chris Masoncd1bc462007-04-27 10:08:34 -0400660 }
Chris Mason0ef3e662008-05-24 14:04:53 -0400661 if (!wrapped) {
662 last = search_start;
663 wrapped = 1;
664 goto again;
665 }
666 if (!full_search && factor < 10) {
Chris Masonbe744172007-05-06 10:15:01 -0400667 last = search_start;
Chris Mason31f3c992007-04-30 15:25:45 -0400668 full_search = 1;
Chris Mason0ef3e662008-05-24 14:04:53 -0400669 factor = 10;
Chris Mason31f3c992007-04-30 15:25:45 -0400670 goto again;
671 }
Chris Masonbe744172007-05-06 10:15:01 -0400672found:
Yan Zhengd2fb3432008-12-11 16:30:39 -0500673 return group_start;
Chris Mason925baed2008-06-25 16:01:30 -0400674}
Josef Bacik0f9dd462008-09-23 13:14:11 -0400675
Chris Masone02119d2008-09-05 16:13:11 -0400676/* simple helper to search for an existing extent at a given offset */
Zheng Yan31840ae2008-09-23 13:14:14 -0400677int btrfs_lookup_extent(struct btrfs_root *root, u64 start, u64 len)
Chris Masone02119d2008-09-05 16:13:11 -0400678{
679 int ret;
680 struct btrfs_key key;
Zheng Yan31840ae2008-09-23 13:14:14 -0400681 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -0400682
Zheng Yan31840ae2008-09-23 13:14:14 -0400683 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700684 if (!path)
685 return -ENOMEM;
686
Chris Masone02119d2008-09-05 16:13:11 -0400687 key.objectid = start;
688 key.offset = len;
689 btrfs_set_key_type(&key, BTRFS_EXTENT_ITEM_KEY);
690 ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path,
691 0, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400692 btrfs_free_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -0500693 return ret;
694}
695
Chris Masond8d5f3e2007-12-11 12:42:00 -0500696/*
Yan, Zhenga22285a2010-05-16 10:48:46 -0400697 * helper function to lookup reference count and flags of extent.
698 *
699 * the head node for delayed ref is used to store the sum of all the
700 * reference count modifications queued up in the rbtree. the head
701 * node may also store the extent flags to set. This way you can check
702 * to see what the reference count and extent flags would be if all of
703 * the delayed refs are not processed.
704 */
705int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
706 struct btrfs_root *root, u64 bytenr,
707 u64 num_bytes, u64 *refs, u64 *flags)
708{
709 struct btrfs_delayed_ref_head *head;
710 struct btrfs_delayed_ref_root *delayed_refs;
711 struct btrfs_path *path;
712 struct btrfs_extent_item *ei;
713 struct extent_buffer *leaf;
714 struct btrfs_key key;
715 u32 item_size;
716 u64 num_refs;
717 u64 extent_flags;
718 int ret;
719
720 path = btrfs_alloc_path();
721 if (!path)
722 return -ENOMEM;
723
724 key.objectid = bytenr;
725 key.type = BTRFS_EXTENT_ITEM_KEY;
726 key.offset = num_bytes;
727 if (!trans) {
728 path->skip_locking = 1;
729 path->search_commit_root = 1;
730 }
731again:
732 ret = btrfs_search_slot(trans, root->fs_info->extent_root,
733 &key, path, 0, 0);
734 if (ret < 0)
735 goto out_free;
736
737 if (ret == 0) {
738 leaf = path->nodes[0];
739 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
740 if (item_size >= sizeof(*ei)) {
741 ei = btrfs_item_ptr(leaf, path->slots[0],
742 struct btrfs_extent_item);
743 num_refs = btrfs_extent_refs(leaf, ei);
744 extent_flags = btrfs_extent_flags(leaf, ei);
745 } else {
746#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
747 struct btrfs_extent_item_v0 *ei0;
748 BUG_ON(item_size != sizeof(*ei0));
749 ei0 = btrfs_item_ptr(leaf, path->slots[0],
750 struct btrfs_extent_item_v0);
751 num_refs = btrfs_extent_refs_v0(leaf, ei0);
752 /* FIXME: this isn't correct for data */
753 extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
754#else
755 BUG();
756#endif
757 }
758 BUG_ON(num_refs == 0);
759 } else {
760 num_refs = 0;
761 extent_flags = 0;
762 ret = 0;
763 }
764
765 if (!trans)
766 goto out;
767
768 delayed_refs = &trans->transaction->delayed_refs;
769 spin_lock(&delayed_refs->lock);
770 head = btrfs_find_delayed_ref_head(trans, bytenr);
771 if (head) {
772 if (!mutex_trylock(&head->mutex)) {
773 atomic_inc(&head->node.refs);
774 spin_unlock(&delayed_refs->lock);
775
David Sterbab3b4aa72011-04-21 01:20:15 +0200776 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400777
David Sterba8cc33e52011-05-02 15:29:25 +0200778 /*
779 * Mutex was contended, block until it's released and try
780 * again
781 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400782 mutex_lock(&head->mutex);
783 mutex_unlock(&head->mutex);
784 btrfs_put_delayed_ref(&head->node);
785 goto again;
786 }
787 if (head->extent_op && head->extent_op->update_flags)
788 extent_flags |= head->extent_op->flags_to_set;
789 else
790 BUG_ON(num_refs == 0);
791
792 num_refs += head->node.ref_mod;
793 mutex_unlock(&head->mutex);
794 }
795 spin_unlock(&delayed_refs->lock);
796out:
797 WARN_ON(num_refs == 0);
798 if (refs)
799 *refs = num_refs;
800 if (flags)
801 *flags = extent_flags;
802out_free:
803 btrfs_free_path(path);
804 return ret;
805}
806
807/*
Chris Masond8d5f3e2007-12-11 12:42:00 -0500808 * Back reference rules. Back refs have three main goals:
809 *
810 * 1) differentiate between all holders of references to an extent so that
811 * when a reference is dropped we can make sure it was a valid reference
812 * before freeing the extent.
813 *
814 * 2) Provide enough information to quickly find the holders of an extent
815 * if we notice a given block is corrupted or bad.
816 *
817 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
818 * maintenance. This is actually the same as #2, but with a slightly
819 * different use case.
820 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400821 * There are two kinds of back refs. The implicit back refs is optimized
822 * for pointers in non-shared tree blocks. For a given pointer in a block,
823 * back refs of this kind provide information about the block's owner tree
824 * and the pointer's key. These information allow us to find the block by
825 * b-tree searching. The full back refs is for pointers in tree blocks not
826 * referenced by their owner trees. The location of tree block is recorded
827 * in the back refs. Actually the full back refs is generic, and can be
828 * used in all cases the implicit back refs is used. The major shortcoming
829 * of the full back refs is its overhead. Every time a tree block gets
830 * COWed, we have to update back refs entry for all pointers in it.
831 *
832 * For a newly allocated tree block, we use implicit back refs for
833 * pointers in it. This means most tree related operations only involve
834 * implicit back refs. For a tree block created in old transaction, the
835 * only way to drop a reference to it is COW it. So we can detect the
836 * event that tree block loses its owner tree's reference and do the
837 * back refs conversion.
838 *
839 * When a tree block is COW'd through a tree, there are four cases:
840 *
841 * The reference count of the block is one and the tree is the block's
842 * owner tree. Nothing to do in this case.
843 *
844 * The reference count of the block is one and the tree is not the
845 * block's owner tree. In this case, full back refs is used for pointers
846 * in the block. Remove these full back refs, add implicit back refs for
847 * every pointers in the new block.
848 *
849 * The reference count of the block is greater than one and the tree is
850 * the block's owner tree. In this case, implicit back refs is used for
851 * pointers in the block. Add full back refs for every pointers in the
852 * block, increase lower level extents' reference counts. The original
853 * implicit back refs are entailed to the new block.
854 *
855 * The reference count of the block is greater than one and the tree is
856 * not the block's owner tree. Add implicit back refs for every pointer in
857 * the new block, increase lower level extents' reference count.
858 *
859 * Back Reference Key composing:
860 *
861 * The key objectid corresponds to the first byte in the extent,
862 * The key type is used to differentiate between types of back refs.
863 * There are different meanings of the key offset for different types
864 * of back refs.
865 *
Chris Masond8d5f3e2007-12-11 12:42:00 -0500866 * File extents can be referenced by:
867 *
868 * - multiple snapshots, subvolumes, or different generations in one subvol
Zheng Yan31840ae2008-09-23 13:14:14 -0400869 * - different files inside a single subvolume
Chris Masond8d5f3e2007-12-11 12:42:00 -0500870 * - different offsets inside a file (bookend extents in file.c)
871 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400872 * The extent ref structure for the implicit back refs has fields for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500873 *
874 * - Objectid of the subvolume root
Chris Masond8d5f3e2007-12-11 12:42:00 -0500875 * - objectid of the file holding the reference
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400876 * - original offset in the file
877 * - how many bookend extents
Zheng Yan31840ae2008-09-23 13:14:14 -0400878 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400879 * The key offset for the implicit back refs is hash of the first
880 * three fields.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500881 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400882 * The extent ref structure for the full back refs has field for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500883 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400884 * - number of pointers in the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500885 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400886 * The key offset for the implicit back refs is the first byte of
887 * the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500888 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400889 * When a file extent is allocated, The implicit back refs is used.
890 * the fields are filled in:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500891 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400892 * (root_key.objectid, inode objectid, offset in file, 1)
893 *
894 * When a file extent is removed file truncation, we find the
895 * corresponding implicit back refs and check the following fields:
896 *
897 * (btrfs_header_owner(leaf), inode objectid, offset in file)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500898 *
899 * Btree extents can be referenced by:
900 *
901 * - Different subvolumes
Chris Masond8d5f3e2007-12-11 12:42:00 -0500902 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400903 * Both the implicit back refs and the full back refs for tree blocks
904 * only consist of key. The key offset for the implicit back refs is
905 * objectid of block's owner tree. The key offset for the full back refs
906 * is the first byte of parent block.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500907 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400908 * When implicit back refs is used, information about the lowest key and
909 * level of the tree block are required. These information are stored in
910 * tree block info structure.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500911 */
Zheng Yan31840ae2008-09-23 13:14:14 -0400912
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400913#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
914static int convert_extent_item_v0(struct btrfs_trans_handle *trans,
915 struct btrfs_root *root,
916 struct btrfs_path *path,
917 u64 owner, u32 extra_size)
Chris Mason74493f72007-12-11 09:25:06 -0500918{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400919 struct btrfs_extent_item *item;
920 struct btrfs_extent_item_v0 *ei0;
921 struct btrfs_extent_ref_v0 *ref0;
922 struct btrfs_tree_block_info *bi;
Zheng Yan31840ae2008-09-23 13:14:14 -0400923 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400924 struct btrfs_key key;
925 struct btrfs_key found_key;
926 u32 new_size = sizeof(*item);
927 u64 refs;
Chris Mason74493f72007-12-11 09:25:06 -0500928 int ret;
929
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400930 leaf = path->nodes[0];
931 BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0));
Chris Mason74493f72007-12-11 09:25:06 -0500932
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400933 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
934 ei0 = btrfs_item_ptr(leaf, path->slots[0],
935 struct btrfs_extent_item_v0);
936 refs = btrfs_extent_refs_v0(leaf, ei0);
937
938 if (owner == (u64)-1) {
939 while (1) {
940 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
941 ret = btrfs_next_leaf(root, path);
942 if (ret < 0)
943 return ret;
944 BUG_ON(ret > 0);
945 leaf = path->nodes[0];
946 }
947 btrfs_item_key_to_cpu(leaf, &found_key,
948 path->slots[0]);
949 BUG_ON(key.objectid != found_key.objectid);
950 if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) {
951 path->slots[0]++;
952 continue;
953 }
954 ref0 = btrfs_item_ptr(leaf, path->slots[0],
955 struct btrfs_extent_ref_v0);
956 owner = btrfs_ref_objectid_v0(leaf, ref0);
957 break;
958 }
959 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200960 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400961
962 if (owner < BTRFS_FIRST_FREE_OBJECTID)
963 new_size += sizeof(*bi);
964
965 new_size -= sizeof(*ei0);
966 ret = btrfs_search_slot(trans, root, &key, path,
967 new_size + extra_size, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -0400968 if (ret < 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400969 return ret;
970 BUG_ON(ret);
971
972 ret = btrfs_extend_item(trans, root, path, new_size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400973
974 leaf = path->nodes[0];
975 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
976 btrfs_set_extent_refs(leaf, item, refs);
977 /* FIXME: get real generation */
978 btrfs_set_extent_generation(leaf, item, 0);
979 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
980 btrfs_set_extent_flags(leaf, item,
981 BTRFS_EXTENT_FLAG_TREE_BLOCK |
982 BTRFS_BLOCK_FLAG_FULL_BACKREF);
983 bi = (struct btrfs_tree_block_info *)(item + 1);
984 /* FIXME: get first key of the block */
985 memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi));
986 btrfs_set_tree_block_level(leaf, bi, (int)owner);
987 } else {
988 btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA);
989 }
990 btrfs_mark_buffer_dirty(leaf);
991 return 0;
992}
993#endif
994
995static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
996{
997 u32 high_crc = ~(u32)0;
998 u32 low_crc = ~(u32)0;
999 __le64 lenum;
1000
1001 lenum = cpu_to_le64(root_objectid);
David Woodhouse163e7832009-04-19 13:02:41 +01001002 high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001003 lenum = cpu_to_le64(owner);
David Woodhouse163e7832009-04-19 13:02:41 +01001004 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001005 lenum = cpu_to_le64(offset);
David Woodhouse163e7832009-04-19 13:02:41 +01001006 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001007
1008 return ((u64)high_crc << 31) ^ (u64)low_crc;
1009}
1010
1011static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
1012 struct btrfs_extent_data_ref *ref)
1013{
1014 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
1015 btrfs_extent_data_ref_objectid(leaf, ref),
1016 btrfs_extent_data_ref_offset(leaf, ref));
1017}
1018
1019static int match_extent_data_ref(struct extent_buffer *leaf,
1020 struct btrfs_extent_data_ref *ref,
1021 u64 root_objectid, u64 owner, u64 offset)
1022{
1023 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
1024 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
1025 btrfs_extent_data_ref_offset(leaf, ref) != offset)
1026 return 0;
1027 return 1;
1028}
1029
1030static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
1031 struct btrfs_root *root,
1032 struct btrfs_path *path,
1033 u64 bytenr, u64 parent,
1034 u64 root_objectid,
1035 u64 owner, u64 offset)
1036{
1037 struct btrfs_key key;
1038 struct btrfs_extent_data_ref *ref;
1039 struct extent_buffer *leaf;
1040 u32 nritems;
1041 int ret;
1042 int recow;
1043 int err = -ENOENT;
1044
1045 key.objectid = bytenr;
1046 if (parent) {
1047 key.type = BTRFS_SHARED_DATA_REF_KEY;
1048 key.offset = parent;
1049 } else {
1050 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1051 key.offset = hash_extent_data_ref(root_objectid,
1052 owner, offset);
1053 }
1054again:
1055 recow = 0;
1056 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1057 if (ret < 0) {
1058 err = ret;
1059 goto fail;
1060 }
1061
1062 if (parent) {
1063 if (!ret)
1064 return 0;
1065#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1066 key.type = BTRFS_EXTENT_REF_V0_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02001067 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001068 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1069 if (ret < 0) {
1070 err = ret;
1071 goto fail;
1072 }
1073 if (!ret)
1074 return 0;
1075#endif
1076 goto fail;
Zheng Yan31840ae2008-09-23 13:14:14 -04001077 }
1078
1079 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001080 nritems = btrfs_header_nritems(leaf);
1081 while (1) {
1082 if (path->slots[0] >= nritems) {
1083 ret = btrfs_next_leaf(root, path);
1084 if (ret < 0)
1085 err = ret;
1086 if (ret)
1087 goto fail;
1088
1089 leaf = path->nodes[0];
1090 nritems = btrfs_header_nritems(leaf);
1091 recow = 1;
1092 }
1093
1094 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1095 if (key.objectid != bytenr ||
1096 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1097 goto fail;
1098
1099 ref = btrfs_item_ptr(leaf, path->slots[0],
1100 struct btrfs_extent_data_ref);
1101
1102 if (match_extent_data_ref(leaf, ref, root_objectid,
1103 owner, offset)) {
1104 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001105 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001106 goto again;
1107 }
1108 err = 0;
1109 break;
1110 }
1111 path->slots[0]++;
Zheng Yan31840ae2008-09-23 13:14:14 -04001112 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001113fail:
1114 return err;
Zheng Yan31840ae2008-09-23 13:14:14 -04001115}
1116
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001117static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
1118 struct btrfs_root *root,
1119 struct btrfs_path *path,
1120 u64 bytenr, u64 parent,
1121 u64 root_objectid, u64 owner,
1122 u64 offset, int refs_to_add)
Zheng Yan31840ae2008-09-23 13:14:14 -04001123{
1124 struct btrfs_key key;
1125 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001126 u32 size;
Zheng Yan31840ae2008-09-23 13:14:14 -04001127 u32 num_refs;
1128 int ret;
1129
1130 key.objectid = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001131 if (parent) {
1132 key.type = BTRFS_SHARED_DATA_REF_KEY;
1133 key.offset = parent;
1134 size = sizeof(struct btrfs_shared_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001135 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001136 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1137 key.offset = hash_extent_data_ref(root_objectid,
1138 owner, offset);
1139 size = sizeof(struct btrfs_extent_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001140 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001141
1142 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1143 if (ret && ret != -EEXIST)
1144 goto fail;
1145
1146 leaf = path->nodes[0];
1147 if (parent) {
1148 struct btrfs_shared_data_ref *ref;
1149 ref = btrfs_item_ptr(leaf, path->slots[0],
1150 struct btrfs_shared_data_ref);
1151 if (ret == 0) {
1152 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1153 } else {
1154 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1155 num_refs += refs_to_add;
1156 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
1157 }
1158 } else {
1159 struct btrfs_extent_data_ref *ref;
1160 while (ret == -EEXIST) {
1161 ref = btrfs_item_ptr(leaf, path->slots[0],
1162 struct btrfs_extent_data_ref);
1163 if (match_extent_data_ref(leaf, ref, root_objectid,
1164 owner, offset))
1165 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02001166 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001167 key.offset++;
1168 ret = btrfs_insert_empty_item(trans, root, path, &key,
1169 size);
1170 if (ret && ret != -EEXIST)
1171 goto fail;
1172
1173 leaf = path->nodes[0];
1174 }
1175 ref = btrfs_item_ptr(leaf, path->slots[0],
1176 struct btrfs_extent_data_ref);
1177 if (ret == 0) {
1178 btrfs_set_extent_data_ref_root(leaf, ref,
1179 root_objectid);
1180 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1181 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1182 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1183 } else {
1184 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1185 num_refs += refs_to_add;
1186 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
1187 }
1188 }
1189 btrfs_mark_buffer_dirty(leaf);
1190 ret = 0;
1191fail:
David Sterbab3b4aa72011-04-21 01:20:15 +02001192 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05001193 return ret;
Chris Mason74493f72007-12-11 09:25:06 -05001194}
1195
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001196static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
1197 struct btrfs_root *root,
1198 struct btrfs_path *path,
1199 int refs_to_drop)
Zheng Yan31840ae2008-09-23 13:14:14 -04001200{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001201 struct btrfs_key key;
1202 struct btrfs_extent_data_ref *ref1 = NULL;
1203 struct btrfs_shared_data_ref *ref2 = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -04001204 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001205 u32 num_refs = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04001206 int ret = 0;
1207
1208 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001209 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1210
1211 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1212 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1213 struct btrfs_extent_data_ref);
1214 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1215 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1216 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1217 struct btrfs_shared_data_ref);
1218 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1219#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1220 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1221 struct btrfs_extent_ref_v0 *ref0;
1222 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1223 struct btrfs_extent_ref_v0);
1224 num_refs = btrfs_ref_count_v0(leaf, ref0);
1225#endif
1226 } else {
1227 BUG();
1228 }
1229
Chris Mason56bec292009-03-13 10:10:06 -04001230 BUG_ON(num_refs < refs_to_drop);
1231 num_refs -= refs_to_drop;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001232
Zheng Yan31840ae2008-09-23 13:14:14 -04001233 if (num_refs == 0) {
1234 ret = btrfs_del_item(trans, root, path);
1235 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001236 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1237 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1238 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1239 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
1240#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1241 else {
1242 struct btrfs_extent_ref_v0 *ref0;
1243 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1244 struct btrfs_extent_ref_v0);
1245 btrfs_set_ref_count_v0(leaf, ref0, num_refs);
1246 }
1247#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04001248 btrfs_mark_buffer_dirty(leaf);
1249 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001250 return ret;
1251}
1252
1253static noinline u32 extent_data_ref_count(struct btrfs_root *root,
1254 struct btrfs_path *path,
1255 struct btrfs_extent_inline_ref *iref)
1256{
1257 struct btrfs_key key;
1258 struct extent_buffer *leaf;
1259 struct btrfs_extent_data_ref *ref1;
1260 struct btrfs_shared_data_ref *ref2;
1261 u32 num_refs = 0;
1262
1263 leaf = path->nodes[0];
1264 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1265 if (iref) {
1266 if (btrfs_extent_inline_ref_type(leaf, iref) ==
1267 BTRFS_EXTENT_DATA_REF_KEY) {
1268 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1269 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1270 } else {
1271 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1272 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1273 }
1274 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1275 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1276 struct btrfs_extent_data_ref);
1277 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1278 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1279 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1280 struct btrfs_shared_data_ref);
1281 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1282#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1283 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1284 struct btrfs_extent_ref_v0 *ref0;
1285 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1286 struct btrfs_extent_ref_v0);
1287 num_refs = btrfs_ref_count_v0(leaf, ref0);
1288#endif
1289 } else {
1290 WARN_ON(1);
1291 }
1292 return num_refs;
1293}
1294
1295static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
1296 struct btrfs_root *root,
1297 struct btrfs_path *path,
1298 u64 bytenr, u64 parent,
1299 u64 root_objectid)
1300{
1301 struct btrfs_key key;
1302 int ret;
1303
1304 key.objectid = bytenr;
1305 if (parent) {
1306 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1307 key.offset = parent;
1308 } else {
1309 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1310 key.offset = root_objectid;
1311 }
1312
1313 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1314 if (ret > 0)
1315 ret = -ENOENT;
1316#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1317 if (ret == -ENOENT && parent) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001318 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001319 key.type = BTRFS_EXTENT_REF_V0_KEY;
1320 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1321 if (ret > 0)
1322 ret = -ENOENT;
1323 }
1324#endif
1325 return ret;
1326}
1327
1328static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
1329 struct btrfs_root *root,
1330 struct btrfs_path *path,
1331 u64 bytenr, u64 parent,
1332 u64 root_objectid)
1333{
1334 struct btrfs_key key;
1335 int ret;
1336
1337 key.objectid = bytenr;
1338 if (parent) {
1339 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1340 key.offset = parent;
1341 } else {
1342 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1343 key.offset = root_objectid;
1344 }
1345
1346 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
David Sterbab3b4aa72011-04-21 01:20:15 +02001347 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04001348 return ret;
1349}
1350
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001351static inline int extent_ref_type(u64 parent, u64 owner)
1352{
1353 int type;
1354 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1355 if (parent > 0)
1356 type = BTRFS_SHARED_BLOCK_REF_KEY;
1357 else
1358 type = BTRFS_TREE_BLOCK_REF_KEY;
1359 } else {
1360 if (parent > 0)
1361 type = BTRFS_SHARED_DATA_REF_KEY;
1362 else
1363 type = BTRFS_EXTENT_DATA_REF_KEY;
1364 }
1365 return type;
1366}
1367
Yan Zheng2c47e6052009-06-27 21:07:35 -04001368static int find_next_key(struct btrfs_path *path, int level,
1369 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001370
1371{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001372 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001373 if (!path->nodes[level])
1374 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001375 if (path->slots[level] + 1 >=
1376 btrfs_header_nritems(path->nodes[level]))
1377 continue;
1378 if (level == 0)
1379 btrfs_item_key_to_cpu(path->nodes[level], key,
1380 path->slots[level] + 1);
1381 else
1382 btrfs_node_key_to_cpu(path->nodes[level], key,
1383 path->slots[level] + 1);
1384 return 0;
1385 }
1386 return 1;
1387}
1388
1389/*
1390 * look for inline back ref. if back ref is found, *ref_ret is set
1391 * to the address of inline back ref, and 0 is returned.
1392 *
1393 * if back ref isn't found, *ref_ret is set to the address where it
1394 * should be inserted, and -ENOENT is returned.
1395 *
1396 * if insert is true and there are too many inline back refs, the path
1397 * points to the extent item, and -EAGAIN is returned.
1398 *
1399 * NOTE: inline back refs are ordered in the same way that back ref
1400 * items in the tree are ordered.
1401 */
1402static noinline_for_stack
1403int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
1404 struct btrfs_root *root,
1405 struct btrfs_path *path,
1406 struct btrfs_extent_inline_ref **ref_ret,
1407 u64 bytenr, u64 num_bytes,
1408 u64 parent, u64 root_objectid,
1409 u64 owner, u64 offset, int insert)
1410{
1411 struct btrfs_key key;
1412 struct extent_buffer *leaf;
1413 struct btrfs_extent_item *ei;
1414 struct btrfs_extent_inline_ref *iref;
1415 u64 flags;
1416 u64 item_size;
1417 unsigned long ptr;
1418 unsigned long end;
1419 int extra_size;
1420 int type;
1421 int want;
1422 int ret;
1423 int err = 0;
1424
1425 key.objectid = bytenr;
1426 key.type = BTRFS_EXTENT_ITEM_KEY;
1427 key.offset = num_bytes;
1428
1429 want = extent_ref_type(parent, owner);
1430 if (insert) {
1431 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001432 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001433 } else
1434 extra_size = -1;
1435 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1436 if (ret < 0) {
1437 err = ret;
1438 goto out;
1439 }
1440 BUG_ON(ret);
1441
1442 leaf = path->nodes[0];
1443 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1444#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1445 if (item_size < sizeof(*ei)) {
1446 if (!insert) {
1447 err = -ENOENT;
1448 goto out;
1449 }
1450 ret = convert_extent_item_v0(trans, root, path, owner,
1451 extra_size);
1452 if (ret < 0) {
1453 err = ret;
1454 goto out;
1455 }
1456 leaf = path->nodes[0];
1457 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1458 }
1459#endif
1460 BUG_ON(item_size < sizeof(*ei));
1461
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001462 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1463 flags = btrfs_extent_flags(leaf, ei);
1464
1465 ptr = (unsigned long)(ei + 1);
1466 end = (unsigned long)ei + item_size;
1467
1468 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
1469 ptr += sizeof(struct btrfs_tree_block_info);
1470 BUG_ON(ptr > end);
1471 } else {
1472 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_DATA));
1473 }
1474
1475 err = -ENOENT;
1476 while (1) {
1477 if (ptr >= end) {
1478 WARN_ON(ptr > end);
1479 break;
1480 }
1481 iref = (struct btrfs_extent_inline_ref *)ptr;
1482 type = btrfs_extent_inline_ref_type(leaf, iref);
1483 if (want < type)
1484 break;
1485 if (want > type) {
1486 ptr += btrfs_extent_inline_ref_size(type);
1487 continue;
1488 }
1489
1490 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1491 struct btrfs_extent_data_ref *dref;
1492 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1493 if (match_extent_data_ref(leaf, dref, root_objectid,
1494 owner, offset)) {
1495 err = 0;
1496 break;
1497 }
1498 if (hash_extent_data_ref_item(leaf, dref) <
1499 hash_extent_data_ref(root_objectid, owner, offset))
1500 break;
1501 } else {
1502 u64 ref_offset;
1503 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1504 if (parent > 0) {
1505 if (parent == ref_offset) {
1506 err = 0;
1507 break;
1508 }
1509 if (ref_offset < parent)
1510 break;
1511 } else {
1512 if (root_objectid == ref_offset) {
1513 err = 0;
1514 break;
1515 }
1516 if (ref_offset < root_objectid)
1517 break;
1518 }
1519 }
1520 ptr += btrfs_extent_inline_ref_size(type);
1521 }
1522 if (err == -ENOENT && insert) {
1523 if (item_size + extra_size >=
1524 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1525 err = -EAGAIN;
1526 goto out;
1527 }
1528 /*
1529 * To add new inline back ref, we have to make sure
1530 * there is no corresponding back ref item.
1531 * For simplicity, we just do not add new inline back
1532 * ref if there is any kind of item for this block
1533 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001534 if (find_next_key(path, 0, &key) == 0 &&
1535 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001536 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001537 err = -EAGAIN;
1538 goto out;
1539 }
1540 }
1541 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1542out:
Yan Zheng85d41982009-06-11 08:51:10 -04001543 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001544 path->keep_locks = 0;
1545 btrfs_unlock_up_safe(path, 1);
1546 }
1547 return err;
1548}
1549
1550/*
1551 * helper to add new inline back ref
1552 */
1553static noinline_for_stack
1554int setup_inline_extent_backref(struct btrfs_trans_handle *trans,
1555 struct btrfs_root *root,
1556 struct btrfs_path *path,
1557 struct btrfs_extent_inline_ref *iref,
1558 u64 parent, u64 root_objectid,
1559 u64 owner, u64 offset, int refs_to_add,
1560 struct btrfs_delayed_extent_op *extent_op)
1561{
1562 struct extent_buffer *leaf;
1563 struct btrfs_extent_item *ei;
1564 unsigned long ptr;
1565 unsigned long end;
1566 unsigned long item_offset;
1567 u64 refs;
1568 int size;
1569 int type;
1570 int ret;
1571
1572 leaf = path->nodes[0];
1573 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1574 item_offset = (unsigned long)iref - (unsigned long)ei;
1575
1576 type = extent_ref_type(parent, owner);
1577 size = btrfs_extent_inline_ref_size(type);
1578
1579 ret = btrfs_extend_item(trans, root, path, size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001580
1581 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1582 refs = btrfs_extent_refs(leaf, ei);
1583 refs += refs_to_add;
1584 btrfs_set_extent_refs(leaf, ei, refs);
1585 if (extent_op)
1586 __run_delayed_extent_op(extent_op, leaf, ei);
1587
1588 ptr = (unsigned long)ei + item_offset;
1589 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1590 if (ptr < end - size)
1591 memmove_extent_buffer(leaf, ptr + size, ptr,
1592 end - size - ptr);
1593
1594 iref = (struct btrfs_extent_inline_ref *)ptr;
1595 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1596 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1597 struct btrfs_extent_data_ref *dref;
1598 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1599 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1600 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1601 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1602 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1603 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1604 struct btrfs_shared_data_ref *sref;
1605 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1606 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1607 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1608 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1609 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1610 } else {
1611 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1612 }
1613 btrfs_mark_buffer_dirty(leaf);
1614 return 0;
1615}
1616
1617static int lookup_extent_backref(struct btrfs_trans_handle *trans,
1618 struct btrfs_root *root,
1619 struct btrfs_path *path,
1620 struct btrfs_extent_inline_ref **ref_ret,
1621 u64 bytenr, u64 num_bytes, u64 parent,
1622 u64 root_objectid, u64 owner, u64 offset)
1623{
1624 int ret;
1625
1626 ret = lookup_inline_extent_backref(trans, root, path, ref_ret,
1627 bytenr, num_bytes, parent,
1628 root_objectid, owner, offset, 0);
1629 if (ret != -ENOENT)
1630 return ret;
1631
David Sterbab3b4aa72011-04-21 01:20:15 +02001632 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001633 *ref_ret = NULL;
1634
1635 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1636 ret = lookup_tree_block_ref(trans, root, path, bytenr, parent,
1637 root_objectid);
1638 } else {
1639 ret = lookup_extent_data_ref(trans, root, path, bytenr, parent,
1640 root_objectid, owner, offset);
1641 }
1642 return ret;
1643}
1644
1645/*
1646 * helper to update/remove inline back ref
1647 */
1648static noinline_for_stack
1649int update_inline_extent_backref(struct btrfs_trans_handle *trans,
1650 struct btrfs_root *root,
1651 struct btrfs_path *path,
1652 struct btrfs_extent_inline_ref *iref,
1653 int refs_to_mod,
1654 struct btrfs_delayed_extent_op *extent_op)
1655{
1656 struct extent_buffer *leaf;
1657 struct btrfs_extent_item *ei;
1658 struct btrfs_extent_data_ref *dref = NULL;
1659 struct btrfs_shared_data_ref *sref = NULL;
1660 unsigned long ptr;
1661 unsigned long end;
1662 u32 item_size;
1663 int size;
1664 int type;
1665 int ret;
1666 u64 refs;
1667
1668 leaf = path->nodes[0];
1669 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1670 refs = btrfs_extent_refs(leaf, ei);
1671 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1672 refs += refs_to_mod;
1673 btrfs_set_extent_refs(leaf, ei, refs);
1674 if (extent_op)
1675 __run_delayed_extent_op(extent_op, leaf, ei);
1676
1677 type = btrfs_extent_inline_ref_type(leaf, iref);
1678
1679 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1680 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1681 refs = btrfs_extent_data_ref_count(leaf, dref);
1682 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1683 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1684 refs = btrfs_shared_data_ref_count(leaf, sref);
1685 } else {
1686 refs = 1;
1687 BUG_ON(refs_to_mod != -1);
1688 }
1689
1690 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1691 refs += refs_to_mod;
1692
1693 if (refs > 0) {
1694 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1695 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1696 else
1697 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1698 } else {
1699 size = btrfs_extent_inline_ref_size(type);
1700 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1701 ptr = (unsigned long)iref;
1702 end = (unsigned long)ei + item_size;
1703 if (ptr + size < end)
1704 memmove_extent_buffer(leaf, ptr, ptr + size,
1705 end - ptr - size);
1706 item_size -= size;
1707 ret = btrfs_truncate_item(trans, root, path, item_size, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001708 }
1709 btrfs_mark_buffer_dirty(leaf);
1710 return 0;
1711}
1712
1713static noinline_for_stack
1714int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
1715 struct btrfs_root *root,
1716 struct btrfs_path *path,
1717 u64 bytenr, u64 num_bytes, u64 parent,
1718 u64 root_objectid, u64 owner,
1719 u64 offset, int refs_to_add,
1720 struct btrfs_delayed_extent_op *extent_op)
1721{
1722 struct btrfs_extent_inline_ref *iref;
1723 int ret;
1724
1725 ret = lookup_inline_extent_backref(trans, root, path, &iref,
1726 bytenr, num_bytes, parent,
1727 root_objectid, owner, offset, 1);
1728 if (ret == 0) {
1729 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
1730 ret = update_inline_extent_backref(trans, root, path, iref,
1731 refs_to_add, extent_op);
1732 } else if (ret == -ENOENT) {
1733 ret = setup_inline_extent_backref(trans, root, path, iref,
1734 parent, root_objectid,
1735 owner, offset, refs_to_add,
1736 extent_op);
1737 }
1738 return ret;
1739}
1740
1741static int insert_extent_backref(struct btrfs_trans_handle *trans,
1742 struct btrfs_root *root,
1743 struct btrfs_path *path,
1744 u64 bytenr, u64 parent, u64 root_objectid,
1745 u64 owner, u64 offset, int refs_to_add)
1746{
1747 int ret;
1748 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1749 BUG_ON(refs_to_add != 1);
1750 ret = insert_tree_block_ref(trans, root, path, bytenr,
1751 parent, root_objectid);
1752 } else {
1753 ret = insert_extent_data_ref(trans, root, path, bytenr,
1754 parent, root_objectid,
1755 owner, offset, refs_to_add);
1756 }
1757 return ret;
1758}
1759
1760static int remove_extent_backref(struct btrfs_trans_handle *trans,
1761 struct btrfs_root *root,
1762 struct btrfs_path *path,
1763 struct btrfs_extent_inline_ref *iref,
1764 int refs_to_drop, int is_data)
1765{
1766 int ret;
1767
1768 BUG_ON(!is_data && refs_to_drop != 1);
1769 if (iref) {
1770 ret = update_inline_extent_backref(trans, root, path, iref,
1771 -refs_to_drop, NULL);
1772 } else if (is_data) {
1773 ret = remove_extent_data_ref(trans, root, path, refs_to_drop);
1774 } else {
1775 ret = btrfs_del_item(trans, root, path);
1776 }
1777 return ret;
1778}
1779
Li Dongyang5378e602011-03-24 10:24:27 +00001780static int btrfs_issue_discard(struct block_device *bdev,
Chris Mason15916de2008-11-19 21:17:22 -05001781 u64 start, u64 len)
1782{
Li Dongyang5378e602011-03-24 10:24:27 +00001783 return blkdev_issue_discard(bdev, start >> 9, len >> 9, GFP_NOFS, 0);
Chris Mason15916de2008-11-19 21:17:22 -05001784}
Chris Mason15916de2008-11-19 21:17:22 -05001785
Liu Hui1f3c79a2009-01-05 15:57:51 -05001786static int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr,
Li Dongyang5378e602011-03-24 10:24:27 +00001787 u64 num_bytes, u64 *actual_bytes)
Liu Hui1f3c79a2009-01-05 15:57:51 -05001788{
Liu Hui1f3c79a2009-01-05 15:57:51 -05001789 int ret;
Li Dongyang5378e602011-03-24 10:24:27 +00001790 u64 discarded_bytes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02001791 struct btrfs_bio *bbio = NULL;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001792
Christoph Hellwige244a0a2009-10-14 09:24:59 -04001793
Liu Hui1f3c79a2009-01-05 15:57:51 -05001794 /* Tell the block device(s) that the sectors can be discarded */
Li Dongyang5378e602011-03-24 10:24:27 +00001795 ret = btrfs_map_block(&root->fs_info->mapping_tree, REQ_DISCARD,
Jan Schmidta1d3c472011-08-04 17:15:33 +02001796 bytenr, &num_bytes, &bbio, 0);
Liu Hui1f3c79a2009-01-05 15:57:51 -05001797 if (!ret) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02001798 struct btrfs_bio_stripe *stripe = bbio->stripes;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001799 int i;
1800
Liu Hui1f3c79a2009-01-05 15:57:51 -05001801
Jan Schmidta1d3c472011-08-04 17:15:33 +02001802 for (i = 0; i < bbio->num_stripes; i++, stripe++) {
Josef Bacikd5e20032011-08-04 14:52:27 +00001803 if (!stripe->dev->can_discard)
1804 continue;
1805
Li Dongyang5378e602011-03-24 10:24:27 +00001806 ret = btrfs_issue_discard(stripe->dev->bdev,
1807 stripe->physical,
1808 stripe->length);
1809 if (!ret)
1810 discarded_bytes += stripe->length;
1811 else if (ret != -EOPNOTSUPP)
1812 break;
Josef Bacikd5e20032011-08-04 14:52:27 +00001813
1814 /*
1815 * Just in case we get back EOPNOTSUPP for some reason,
1816 * just ignore the return value so we don't screw up
1817 * people calling discard_extent.
1818 */
1819 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001820 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02001821 kfree(bbio);
Liu Hui1f3c79a2009-01-05 15:57:51 -05001822 }
Li Dongyang5378e602011-03-24 10:24:27 +00001823
1824 if (actual_bytes)
1825 *actual_bytes = discarded_bytes;
1826
Liu Hui1f3c79a2009-01-05 15:57:51 -05001827
1828 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001829}
1830
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001831int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1832 struct btrfs_root *root,
1833 u64 bytenr, u64 num_bytes, u64 parent,
1834 u64 root_objectid, u64 owner, u64 offset)
Zheng Yan31840ae2008-09-23 13:14:14 -04001835{
1836 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001837 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
1838 root_objectid == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04001839
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001840 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1841 ret = btrfs_add_delayed_tree_ref(trans, bytenr, num_bytes,
1842 parent, root_objectid, (int)owner,
1843 BTRFS_ADD_DELAYED_REF, NULL);
1844 } else {
1845 ret = btrfs_add_delayed_data_ref(trans, bytenr, num_bytes,
1846 parent, root_objectid, owner, offset,
1847 BTRFS_ADD_DELAYED_REF, NULL);
1848 }
Zheng Yan31840ae2008-09-23 13:14:14 -04001849 return ret;
1850}
1851
Chris Mason925baed2008-06-25 16:01:30 -04001852static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001853 struct btrfs_root *root,
1854 u64 bytenr, u64 num_bytes,
1855 u64 parent, u64 root_objectid,
1856 u64 owner, u64 offset, int refs_to_add,
1857 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04001858{
Chris Mason5caf2a02007-04-02 11:20:42 -04001859 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001860 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04001861 struct btrfs_extent_item *item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001862 u64 refs;
1863 int ret;
1864 int err = 0;
Chris Mason037e6392007-03-07 11:50:24 -05001865
Chris Mason5caf2a02007-04-02 11:20:42 -04001866 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001867 if (!path)
1868 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04001869
Chris Mason3c12ac72008-04-21 12:01:38 -04001870 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04001871 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001872 /* this will setup the path even if it fails to insert the back ref */
1873 ret = insert_inline_extent_backref(trans, root->fs_info->extent_root,
1874 path, bytenr, num_bytes, parent,
1875 root_objectid, owner, offset,
1876 refs_to_add, extent_op);
1877 if (ret == 0)
1878 goto out;
Zheng Yan31840ae2008-09-23 13:14:14 -04001879
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001880 if (ret != -EAGAIN) {
1881 err = ret;
1882 goto out;
Chris Masonb9473432009-03-13 11:00:37 -04001883 }
Zheng Yan31840ae2008-09-23 13:14:14 -04001884
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001885 leaf = path->nodes[0];
1886 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1887 refs = btrfs_extent_refs(leaf, item);
1888 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
1889 if (extent_op)
1890 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04001891
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001892 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02001893 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05001894
Chris Mason3c12ac72008-04-21 12:01:38 -04001895 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04001896 path->leave_spinning = 1;
1897
Chris Mason56bec292009-03-13 10:10:06 -04001898 /* now insert the actual backref */
Zheng Yan31840ae2008-09-23 13:14:14 -04001899 ret = insert_extent_backref(trans, root->fs_info->extent_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001900 path, bytenr, parent, root_objectid,
1901 owner, offset, refs_to_add);
Chris Mason7bb86312007-12-11 09:25:06 -05001902 BUG_ON(ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001903out:
Chris Mason74493f72007-12-11 09:25:06 -05001904 btrfs_free_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001905 return err;
Chris Mason02217ed2007-03-02 16:08:05 -05001906}
1907
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001908static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
1909 struct btrfs_root *root,
1910 struct btrfs_delayed_ref_node *node,
1911 struct btrfs_delayed_extent_op *extent_op,
1912 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04001913{
Chris Mason56bec292009-03-13 10:10:06 -04001914 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001915 struct btrfs_delayed_data_ref *ref;
1916 struct btrfs_key ins;
1917 u64 parent = 0;
1918 u64 ref_root = 0;
1919 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04001920
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001921 ins.objectid = node->bytenr;
1922 ins.offset = node->num_bytes;
1923 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04001924
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001925 ref = btrfs_delayed_node_to_data_ref(node);
1926 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
1927 parent = ref->parent;
1928 else
1929 ref_root = ref->root;
1930
1931 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
1932 if (extent_op) {
1933 BUG_ON(extent_op->update_key);
1934 flags |= extent_op->flags_to_set;
1935 }
1936 ret = alloc_reserved_file_extent(trans, root,
1937 parent, ref_root, flags,
1938 ref->objectid, ref->offset,
1939 &ins, node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001940 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
1941 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
1942 node->num_bytes, parent,
1943 ref_root, ref->objectid,
1944 ref->offset, node->ref_mod,
1945 extent_op);
1946 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
1947 ret = __btrfs_free_extent(trans, root, node->bytenr,
1948 node->num_bytes, parent,
1949 ref_root, ref->objectid,
1950 ref->offset, node->ref_mod,
1951 extent_op);
1952 } else {
1953 BUG();
1954 }
Chris Mason56bec292009-03-13 10:10:06 -04001955 return ret;
1956}
1957
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001958static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
1959 struct extent_buffer *leaf,
1960 struct btrfs_extent_item *ei)
1961{
1962 u64 flags = btrfs_extent_flags(leaf, ei);
1963 if (extent_op->update_flags) {
1964 flags |= extent_op->flags_to_set;
1965 btrfs_set_extent_flags(leaf, ei, flags);
1966 }
1967
1968 if (extent_op->update_key) {
1969 struct btrfs_tree_block_info *bi;
1970 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
1971 bi = (struct btrfs_tree_block_info *)(ei + 1);
1972 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
1973 }
1974}
1975
1976static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
1977 struct btrfs_root *root,
1978 struct btrfs_delayed_ref_node *node,
1979 struct btrfs_delayed_extent_op *extent_op)
1980{
1981 struct btrfs_key key;
1982 struct btrfs_path *path;
1983 struct btrfs_extent_item *ei;
1984 struct extent_buffer *leaf;
1985 u32 item_size;
1986 int ret;
1987 int err = 0;
1988
1989 path = btrfs_alloc_path();
1990 if (!path)
1991 return -ENOMEM;
1992
1993 key.objectid = node->bytenr;
1994 key.type = BTRFS_EXTENT_ITEM_KEY;
1995 key.offset = node->num_bytes;
1996
1997 path->reada = 1;
1998 path->leave_spinning = 1;
1999 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key,
2000 path, 0, 1);
2001 if (ret < 0) {
2002 err = ret;
2003 goto out;
2004 }
2005 if (ret > 0) {
2006 err = -EIO;
2007 goto out;
2008 }
2009
2010 leaf = path->nodes[0];
2011 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2012#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2013 if (item_size < sizeof(*ei)) {
2014 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
2015 path, (u64)-1, 0);
2016 if (ret < 0) {
2017 err = ret;
2018 goto out;
2019 }
2020 leaf = path->nodes[0];
2021 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2022 }
2023#endif
2024 BUG_ON(item_size < sizeof(*ei));
2025 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2026 __run_delayed_extent_op(extent_op, leaf, ei);
2027
2028 btrfs_mark_buffer_dirty(leaf);
2029out:
2030 btrfs_free_path(path);
2031 return err;
2032}
2033
2034static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
2035 struct btrfs_root *root,
2036 struct btrfs_delayed_ref_node *node,
2037 struct btrfs_delayed_extent_op *extent_op,
2038 int insert_reserved)
2039{
2040 int ret = 0;
2041 struct btrfs_delayed_tree_ref *ref;
2042 struct btrfs_key ins;
2043 u64 parent = 0;
2044 u64 ref_root = 0;
2045
2046 ins.objectid = node->bytenr;
2047 ins.offset = node->num_bytes;
2048 ins.type = BTRFS_EXTENT_ITEM_KEY;
2049
2050 ref = btrfs_delayed_node_to_tree_ref(node);
2051 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2052 parent = ref->parent;
2053 else
2054 ref_root = ref->root;
2055
2056 BUG_ON(node->ref_mod != 1);
2057 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
2058 BUG_ON(!extent_op || !extent_op->update_flags ||
2059 !extent_op->update_key);
2060 ret = alloc_reserved_tree_block(trans, root,
2061 parent, ref_root,
2062 extent_op->flags_to_set,
2063 &extent_op->key,
2064 ref->level, &ins);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002065 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
2066 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
2067 node->num_bytes, parent, ref_root,
2068 ref->level, 0, 1, extent_op);
2069 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
2070 ret = __btrfs_free_extent(trans, root, node->bytenr,
2071 node->num_bytes, parent, ref_root,
2072 ref->level, 0, 1, extent_op);
2073 } else {
2074 BUG();
2075 }
2076 return ret;
2077}
2078
Chris Mason56bec292009-03-13 10:10:06 -04002079/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002080static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
2081 struct btrfs_root *root,
2082 struct btrfs_delayed_ref_node *node,
2083 struct btrfs_delayed_extent_op *extent_op,
2084 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002085{
Josef Bacikeb099672009-02-12 09:27:38 -05002086 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002087 if (btrfs_delayed_ref_is_head(node)) {
Chris Mason56bec292009-03-13 10:10:06 -04002088 struct btrfs_delayed_ref_head *head;
2089 /*
2090 * we've hit the end of the chain and we were supposed
2091 * to insert this extent into the tree. But, it got
2092 * deleted before we ever needed to insert it, so all
2093 * we have to do is clean up the accounting
2094 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002095 BUG_ON(extent_op);
2096 head = btrfs_delayed_node_to_head(node);
Chris Mason56bec292009-03-13 10:10:06 -04002097 if (insert_reserved) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04002098 btrfs_pin_extent(root, node->bytenr,
2099 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002100 if (head->is_data) {
2101 ret = btrfs_del_csums(trans, root,
2102 node->bytenr,
2103 node->num_bytes);
2104 BUG_ON(ret);
2105 }
Chris Mason56bec292009-03-13 10:10:06 -04002106 }
Chris Mason56bec292009-03-13 10:10:06 -04002107 mutex_unlock(&head->mutex);
2108 return 0;
2109 }
Josef Bacikeb099672009-02-12 09:27:38 -05002110
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002111 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2112 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2113 ret = run_delayed_tree_ref(trans, root, node, extent_op,
2114 insert_reserved);
2115 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2116 node->type == BTRFS_SHARED_DATA_REF_KEY)
2117 ret = run_delayed_data_ref(trans, root, node, extent_op,
2118 insert_reserved);
2119 else
2120 BUG();
2121 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002122}
2123
Chris Mason56bec292009-03-13 10:10:06 -04002124static noinline struct btrfs_delayed_ref_node *
2125select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002126{
Chris Mason56bec292009-03-13 10:10:06 -04002127 struct rb_node *node;
2128 struct btrfs_delayed_ref_node *ref;
2129 int action = BTRFS_ADD_DELAYED_REF;
2130again:
2131 /*
2132 * select delayed ref of type BTRFS_ADD_DELAYED_REF first.
2133 * this prevents ref count from going down to zero when
2134 * there still are pending delayed ref.
2135 */
2136 node = rb_prev(&head->node.rb_node);
2137 while (1) {
2138 if (!node)
2139 break;
2140 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2141 rb_node);
2142 if (ref->bytenr != head->node.bytenr)
2143 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002144 if (ref->action == action)
Chris Mason56bec292009-03-13 10:10:06 -04002145 return ref;
2146 node = rb_prev(node);
Chris Mason5f39d392007-10-15 16:14:19 -04002147 }
Chris Mason56bec292009-03-13 10:10:06 -04002148 if (action == BTRFS_ADD_DELAYED_REF) {
2149 action = BTRFS_DROP_DELAYED_REF;
2150 goto again;
2151 }
2152 return NULL;
2153}
2154
Chris Masonc3e69d52009-03-13 10:17:05 -04002155static noinline int run_clustered_refs(struct btrfs_trans_handle *trans,
2156 struct btrfs_root *root,
2157 struct list_head *cluster)
Chris Mason56bec292009-03-13 10:10:06 -04002158{
Chris Mason56bec292009-03-13 10:10:06 -04002159 struct btrfs_delayed_ref_root *delayed_refs;
2160 struct btrfs_delayed_ref_node *ref;
2161 struct btrfs_delayed_ref_head *locked_ref = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002162 struct btrfs_delayed_extent_op *extent_op;
Chris Mason56bec292009-03-13 10:10:06 -04002163 int ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04002164 int count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002165 int must_insert_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002166
2167 delayed_refs = &trans->transaction->delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002168 while (1) {
2169 if (!locked_ref) {
Chris Masonc3e69d52009-03-13 10:17:05 -04002170 /* pick a new head ref from the cluster list */
2171 if (list_empty(cluster))
Chris Mason56bec292009-03-13 10:10:06 -04002172 break;
Chris Mason56bec292009-03-13 10:10:06 -04002173
Chris Masonc3e69d52009-03-13 10:17:05 -04002174 locked_ref = list_entry(cluster->next,
2175 struct btrfs_delayed_ref_head, cluster);
2176
2177 /* grab the lock that says we are going to process
2178 * all the refs for this head */
2179 ret = btrfs_delayed_ref_lock(trans, locked_ref);
2180
2181 /*
2182 * we may have dropped the spin lock to get the head
2183 * mutex lock, and that might have given someone else
2184 * time to free the head. If that's true, it has been
2185 * removed from our list and we can move on.
2186 */
2187 if (ret == -EAGAIN) {
2188 locked_ref = NULL;
2189 count++;
2190 continue;
Chris Mason56bec292009-03-13 10:10:06 -04002191 }
2192 }
2193
2194 /*
2195 * record the must insert reserved flag before we
2196 * drop the spin lock.
2197 */
2198 must_insert_reserved = locked_ref->must_insert_reserved;
2199 locked_ref->must_insert_reserved = 0;
2200
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002201 extent_op = locked_ref->extent_op;
2202 locked_ref->extent_op = NULL;
2203
Chris Mason56bec292009-03-13 10:10:06 -04002204 /*
2205 * locked_ref is the head node, so we have to go one
2206 * node back for any delayed ref updates
2207 */
Chris Mason56bec292009-03-13 10:10:06 -04002208 ref = select_delayed_ref(locked_ref);
2209 if (!ref) {
2210 /* All delayed refs have been processed, Go ahead
2211 * and send the head node to run_one_delayed_ref,
2212 * so that any accounting fixes can happen
2213 */
2214 ref = &locked_ref->node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002215
2216 if (extent_op && must_insert_reserved) {
2217 kfree(extent_op);
2218 extent_op = NULL;
2219 }
2220
2221 if (extent_op) {
2222 spin_unlock(&delayed_refs->lock);
2223
2224 ret = run_delayed_extent_op(trans, root,
2225 ref, extent_op);
2226 BUG_ON(ret);
2227 kfree(extent_op);
2228
2229 cond_resched();
2230 spin_lock(&delayed_refs->lock);
2231 continue;
2232 }
2233
Chris Masonc3e69d52009-03-13 10:17:05 -04002234 list_del_init(&locked_ref->cluster);
Chris Mason56bec292009-03-13 10:10:06 -04002235 locked_ref = NULL;
2236 }
2237
2238 ref->in_tree = 0;
2239 rb_erase(&ref->rb_node, &delayed_refs->root);
2240 delayed_refs->num_entries--;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002241
Chris Mason56bec292009-03-13 10:10:06 -04002242 spin_unlock(&delayed_refs->lock);
2243
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002244 ret = run_one_delayed_ref(trans, root, ref, extent_op,
Chris Mason56bec292009-03-13 10:10:06 -04002245 must_insert_reserved);
2246 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -04002247
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002248 btrfs_put_delayed_ref(ref);
2249 kfree(extent_op);
Chris Masonc3e69d52009-03-13 10:17:05 -04002250 count++;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002251
Chris Mason1887be62009-03-13 10:11:24 -04002252 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002253 spin_lock(&delayed_refs->lock);
2254 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002255 return count;
2256}
2257
2258/*
2259 * this starts processing the delayed reference count updates and
2260 * extent insertions we have queued up so far. count can be
2261 * 0, which means to process everything in the tree at the start
2262 * of the run (but not newly added entries), or it can be some target
2263 * number you'd like to process.
2264 */
2265int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2266 struct btrfs_root *root, unsigned long count)
2267{
2268 struct rb_node *node;
2269 struct btrfs_delayed_ref_root *delayed_refs;
2270 struct btrfs_delayed_ref_node *ref;
2271 struct list_head cluster;
2272 int ret;
2273 int run_all = count == (unsigned long)-1;
2274 int run_most = 0;
2275
2276 if (root == root->fs_info->extent_root)
2277 root = root->fs_info->tree_root;
2278
2279 delayed_refs = &trans->transaction->delayed_refs;
2280 INIT_LIST_HEAD(&cluster);
2281again:
2282 spin_lock(&delayed_refs->lock);
2283 if (count == 0) {
2284 count = delayed_refs->num_entries * 2;
2285 run_most = 1;
2286 }
2287 while (1) {
2288 if (!(run_all || run_most) &&
2289 delayed_refs->num_heads_ready < 64)
2290 break;
2291
2292 /*
2293 * go find something we can process in the rbtree. We start at
2294 * the beginning of the tree, and then build a cluster
2295 * of refs to process starting at the first one we are able to
2296 * lock
2297 */
2298 ret = btrfs_find_ref_cluster(trans, &cluster,
2299 delayed_refs->run_delayed_start);
2300 if (ret)
2301 break;
2302
2303 ret = run_clustered_refs(trans, root, &cluster);
2304 BUG_ON(ret < 0);
2305
2306 count -= min_t(unsigned long, ret, count);
2307
2308 if (count == 0)
2309 break;
2310 }
2311
Chris Mason56bec292009-03-13 10:10:06 -04002312 if (run_all) {
Chris Mason56bec292009-03-13 10:10:06 -04002313 node = rb_first(&delayed_refs->root);
Chris Masonc3e69d52009-03-13 10:17:05 -04002314 if (!node)
Chris Mason56bec292009-03-13 10:10:06 -04002315 goto out;
Chris Masonc3e69d52009-03-13 10:17:05 -04002316 count = (unsigned long)-1;
Chris Mason56bec292009-03-13 10:10:06 -04002317
2318 while (node) {
2319 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2320 rb_node);
2321 if (btrfs_delayed_ref_is_head(ref)) {
2322 struct btrfs_delayed_ref_head *head;
2323
2324 head = btrfs_delayed_node_to_head(ref);
2325 atomic_inc(&ref->refs);
2326
2327 spin_unlock(&delayed_refs->lock);
David Sterba8cc33e52011-05-02 15:29:25 +02002328 /*
2329 * Mutex was contended, block until it's
2330 * released and try again
2331 */
Chris Mason56bec292009-03-13 10:10:06 -04002332 mutex_lock(&head->mutex);
2333 mutex_unlock(&head->mutex);
2334
2335 btrfs_put_delayed_ref(ref);
Chris Mason1887be62009-03-13 10:11:24 -04002336 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002337 goto again;
2338 }
2339 node = rb_next(node);
2340 }
2341 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002342 schedule_timeout(1);
2343 goto again;
2344 }
Chris Mason54aa1f42007-06-22 14:16:25 -04002345out:
Chris Masonc3e69d52009-03-13 10:17:05 -04002346 spin_unlock(&delayed_refs->lock);
Chris Masona28ec192007-03-06 20:08:01 -05002347 return 0;
2348}
2349
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002350int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
2351 struct btrfs_root *root,
2352 u64 bytenr, u64 num_bytes, u64 flags,
2353 int is_data)
2354{
2355 struct btrfs_delayed_extent_op *extent_op;
2356 int ret;
2357
2358 extent_op = kmalloc(sizeof(*extent_op), GFP_NOFS);
2359 if (!extent_op)
2360 return -ENOMEM;
2361
2362 extent_op->flags_to_set = flags;
2363 extent_op->update_flags = 1;
2364 extent_op->update_key = 0;
2365 extent_op->is_data = is_data ? 1 : 0;
2366
2367 ret = btrfs_add_delayed_extent_op(trans, bytenr, num_bytes, extent_op);
2368 if (ret)
2369 kfree(extent_op);
2370 return ret;
2371}
2372
2373static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
2374 struct btrfs_root *root,
2375 struct btrfs_path *path,
2376 u64 objectid, u64 offset, u64 bytenr)
2377{
2378 struct btrfs_delayed_ref_head *head;
2379 struct btrfs_delayed_ref_node *ref;
2380 struct btrfs_delayed_data_ref *data_ref;
2381 struct btrfs_delayed_ref_root *delayed_refs;
2382 struct rb_node *node;
2383 int ret = 0;
2384
2385 ret = -ENOENT;
2386 delayed_refs = &trans->transaction->delayed_refs;
2387 spin_lock(&delayed_refs->lock);
2388 head = btrfs_find_delayed_ref_head(trans, bytenr);
2389 if (!head)
2390 goto out;
2391
2392 if (!mutex_trylock(&head->mutex)) {
2393 atomic_inc(&head->node.refs);
2394 spin_unlock(&delayed_refs->lock);
2395
David Sterbab3b4aa72011-04-21 01:20:15 +02002396 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002397
David Sterba8cc33e52011-05-02 15:29:25 +02002398 /*
2399 * Mutex was contended, block until it's released and let
2400 * caller try again
2401 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002402 mutex_lock(&head->mutex);
2403 mutex_unlock(&head->mutex);
2404 btrfs_put_delayed_ref(&head->node);
2405 return -EAGAIN;
2406 }
2407
2408 node = rb_prev(&head->node.rb_node);
2409 if (!node)
2410 goto out_unlock;
2411
2412 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
2413
2414 if (ref->bytenr != bytenr)
2415 goto out_unlock;
2416
2417 ret = 1;
2418 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY)
2419 goto out_unlock;
2420
2421 data_ref = btrfs_delayed_node_to_data_ref(ref);
2422
2423 node = rb_prev(node);
2424 if (node) {
2425 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
2426 if (ref->bytenr == bytenr)
2427 goto out_unlock;
2428 }
2429
2430 if (data_ref->root != root->root_key.objectid ||
2431 data_ref->objectid != objectid || data_ref->offset != offset)
2432 goto out_unlock;
2433
2434 ret = 0;
2435out_unlock:
2436 mutex_unlock(&head->mutex);
2437out:
2438 spin_unlock(&delayed_refs->lock);
2439 return ret;
2440}
2441
2442static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
2443 struct btrfs_root *root,
2444 struct btrfs_path *path,
2445 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05002446{
2447 struct btrfs_root *extent_root = root->fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04002448 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002449 struct btrfs_extent_data_ref *ref;
2450 struct btrfs_extent_inline_ref *iref;
2451 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05002452 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002453 u32 item_size;
Yan Zhengf321e492008-07-30 09:26:11 -04002454 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05002455
Chris Masonbe20aa92007-12-17 20:14:01 -05002456 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04002457 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04002458 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05002459
Chris Masonbe20aa92007-12-17 20:14:01 -05002460 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2461 if (ret < 0)
2462 goto out;
2463 BUG_ON(ret == 0);
Yan Zheng80ff3852008-10-30 14:20:02 -04002464
2465 ret = -ENOENT;
2466 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04002467 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002468
Zheng Yan31840ae2008-09-23 13:14:14 -04002469 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04002470 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002471 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05002472
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002473 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05002474 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002475
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002476 ret = 1;
2477 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2478#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2479 if (item_size < sizeof(*ei)) {
2480 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
2481 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002482 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002483#endif
2484 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2485
2486 if (item_size != sizeof(*ei) +
2487 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
2488 goto out;
2489
2490 if (btrfs_extent_generation(leaf, ei) <=
2491 btrfs_root_last_snapshot(&root->root_item))
2492 goto out;
2493
2494 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
2495 if (btrfs_extent_inline_ref_type(leaf, iref) !=
2496 BTRFS_EXTENT_DATA_REF_KEY)
2497 goto out;
2498
2499 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
2500 if (btrfs_extent_refs(leaf, ei) !=
2501 btrfs_extent_data_ref_count(leaf, ref) ||
2502 btrfs_extent_data_ref_root(leaf, ref) !=
2503 root->root_key.objectid ||
2504 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
2505 btrfs_extent_data_ref_offset(leaf, ref) != offset)
2506 goto out;
2507
Yan Zhengf321e492008-07-30 09:26:11 -04002508 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05002509out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002510 return ret;
2511}
2512
2513int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
2514 struct btrfs_root *root,
2515 u64 objectid, u64 offset, u64 bytenr)
2516{
2517 struct btrfs_path *path;
2518 int ret;
2519 int ret2;
2520
2521 path = btrfs_alloc_path();
2522 if (!path)
2523 return -ENOENT;
2524
2525 do {
2526 ret = check_committed_ref(trans, root, path, objectid,
2527 offset, bytenr);
2528 if (ret && ret != -ENOENT)
2529 goto out;
2530
2531 ret2 = check_delayed_ref(trans, root, path, objectid,
2532 offset, bytenr);
2533 } while (ret2 == -EAGAIN);
2534
2535 if (ret2 && ret2 != -ENOENT) {
2536 ret = ret2;
2537 goto out;
2538 }
2539
2540 if (ret != -ENOENT || ret2 != -ENOENT)
2541 ret = 0;
2542out:
Yan Zhengf321e492008-07-30 09:26:11 -04002543 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002544 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
2545 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04002546 return ret;
2547}
2548
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002549static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05002550 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002551 struct extent_buffer *buf,
2552 int full_backref, int inc)
Zheng Yan31840ae2008-09-23 13:14:14 -04002553{
2554 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002555 u64 num_bytes;
2556 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04002557 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04002558 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04002559 struct btrfs_key key;
2560 struct btrfs_file_extent_item *fi;
2561 int i;
2562 int level;
2563 int ret = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04002564 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002565 u64, u64, u64, u64, u64, u64);
Zheng Yan31840ae2008-09-23 13:14:14 -04002566
2567 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04002568 nritems = btrfs_header_nritems(buf);
2569 level = btrfs_header_level(buf);
2570
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002571 if (!root->ref_cows && level == 0)
2572 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05002573
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002574 if (inc)
2575 process_func = btrfs_inc_extent_ref;
2576 else
2577 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04002578
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002579 if (full_backref)
2580 parent = buf->start;
2581 else
2582 parent = 0;
2583
Zheng Yan31840ae2008-09-23 13:14:14 -04002584 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04002585 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04002586 btrfs_item_key_to_cpu(buf, &key, i);
2587 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04002588 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04002589 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04002590 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04002591 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04002592 BTRFS_FILE_EXTENT_INLINE)
2593 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04002594 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
2595 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04002596 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04002597
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002598 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
2599 key.offset -= btrfs_file_extent_offset(buf, fi);
2600 ret = process_func(trans, root, bytenr, num_bytes,
2601 parent, ref_root, key.objectid,
2602 key.offset);
2603 if (ret)
2604 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05002605 } else {
2606 bytenr = btrfs_node_blockptr(buf, i);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002607 num_bytes = btrfs_level_size(root, level - 1);
2608 ret = process_func(trans, root, bytenr, num_bytes,
2609 parent, ref_root, level - 1, 0);
2610 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04002611 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04002612 }
2613 }
Zheng Yan31840ae2008-09-23 13:14:14 -04002614 return 0;
2615fail:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002616 BUG();
Chris Mason54aa1f42007-06-22 14:16:25 -04002617 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002618}
2619
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002620int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2621 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04002622{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002623 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
2624}
Zheng Yan31840ae2008-09-23 13:14:14 -04002625
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002626int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
2627 struct extent_buffer *buf, int full_backref)
2628{
2629 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04002630}
2631
Chris Mason9078a3e2007-04-26 16:46:15 -04002632static int write_one_cache_group(struct btrfs_trans_handle *trans,
2633 struct btrfs_root *root,
2634 struct btrfs_path *path,
2635 struct btrfs_block_group_cache *cache)
2636{
2637 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04002638 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04002639 unsigned long bi;
2640 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04002641
Chris Mason9078a3e2007-04-26 16:46:15 -04002642 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04002643 if (ret < 0)
2644 goto fail;
Chris Mason9078a3e2007-04-26 16:46:15 -04002645 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04002646
2647 leaf = path->nodes[0];
2648 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
2649 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
2650 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002651 btrfs_release_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04002652fail:
Chris Mason9078a3e2007-04-26 16:46:15 -04002653 if (ret)
2654 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04002655 return 0;
2656
2657}
2658
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002659static struct btrfs_block_group_cache *
2660next_block_group(struct btrfs_root *root,
2661 struct btrfs_block_group_cache *cache)
2662{
2663 struct rb_node *node;
2664 spin_lock(&root->fs_info->block_group_cache_lock);
2665 node = rb_next(&cache->cache_node);
2666 btrfs_put_block_group(cache);
2667 if (node) {
2668 cache = rb_entry(node, struct btrfs_block_group_cache,
2669 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00002670 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002671 } else
2672 cache = NULL;
2673 spin_unlock(&root->fs_info->block_group_cache_lock);
2674 return cache;
2675}
2676
Josef Bacik0af3d002010-06-21 14:48:16 -04002677static int cache_save_setup(struct btrfs_block_group_cache *block_group,
2678 struct btrfs_trans_handle *trans,
2679 struct btrfs_path *path)
2680{
2681 struct btrfs_root *root = block_group->fs_info->tree_root;
2682 struct inode *inode = NULL;
2683 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05002684 int dcs = BTRFS_DC_ERROR;
Josef Bacik0af3d002010-06-21 14:48:16 -04002685 int num_pages = 0;
2686 int retries = 0;
2687 int ret = 0;
2688
2689 /*
2690 * If this block group is smaller than 100 megs don't bother caching the
2691 * block group.
2692 */
2693 if (block_group->key.offset < (100 * 1024 * 1024)) {
2694 spin_lock(&block_group->lock);
2695 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
2696 spin_unlock(&block_group->lock);
2697 return 0;
2698 }
2699
2700again:
2701 inode = lookup_free_space_inode(root, block_group, path);
2702 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
2703 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02002704 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04002705 goto out;
2706 }
2707
2708 if (IS_ERR(inode)) {
2709 BUG_ON(retries);
2710 retries++;
2711
2712 if (block_group->ro)
2713 goto out_free;
2714
2715 ret = create_free_space_inode(root, trans, block_group, path);
2716 if (ret)
2717 goto out_free;
2718 goto again;
2719 }
2720
Josef Bacik5b0e95b2011-10-06 08:58:24 -04002721 /* We've already setup this transaction, go ahead and exit */
2722 if (block_group->cache_generation == trans->transid &&
2723 i_size_read(inode)) {
2724 dcs = BTRFS_DC_SETUP;
2725 goto out_put;
2726 }
2727
Josef Bacik0af3d002010-06-21 14:48:16 -04002728 /*
2729 * We want to set the generation to 0, that way if anything goes wrong
2730 * from here on out we know not to trust this cache when we load up next
2731 * time.
2732 */
2733 BTRFS_I(inode)->generation = 0;
2734 ret = btrfs_update_inode(trans, root, inode);
2735 WARN_ON(ret);
2736
2737 if (i_size_read(inode) > 0) {
2738 ret = btrfs_truncate_free_space_cache(root, trans, path,
2739 inode);
2740 if (ret)
2741 goto out_put;
2742 }
2743
2744 spin_lock(&block_group->lock);
2745 if (block_group->cached != BTRFS_CACHE_FINISHED) {
Josef Bacik2b209822010-12-03 13:17:53 -05002746 /* We're not cached, don't bother trying to write stuff out */
2747 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04002748 spin_unlock(&block_group->lock);
2749 goto out_put;
2750 }
2751 spin_unlock(&block_group->lock);
2752
2753 num_pages = (int)div64_u64(block_group->key.offset, 1024 * 1024 * 1024);
2754 if (!num_pages)
2755 num_pages = 1;
2756
2757 /*
2758 * Just to make absolutely sure we have enough space, we're going to
2759 * preallocate 12 pages worth of space for each block group. In
2760 * practice we ought to use at most 8, but we need extra space so we can
2761 * add our header and have a terminator between the extents and the
2762 * bitmaps.
2763 */
2764 num_pages *= 16;
2765 num_pages *= PAGE_CACHE_SIZE;
2766
Josef Bacik5b0e95b2011-10-06 08:58:24 -04002767 ret = btrfs_check_data_free_space(inode, num_pages);
Josef Bacik0af3d002010-06-21 14:48:16 -04002768 if (ret)
2769 goto out_put;
2770
2771 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
2772 num_pages, num_pages,
2773 &alloc_hint);
Josef Bacik5b0e95b2011-10-06 08:58:24 -04002774 if (!ret)
Josef Bacik2b209822010-12-03 13:17:53 -05002775 dcs = BTRFS_DC_SETUP;
Josef Bacik5b0e95b2011-10-06 08:58:24 -04002776 btrfs_free_reserved_data_space(inode, num_pages);
Josef Bacikc09544e2011-08-30 10:19:10 -04002777
Josef Bacik0af3d002010-06-21 14:48:16 -04002778out_put:
2779 iput(inode);
2780out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02002781 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04002782out:
2783 spin_lock(&block_group->lock);
Josef Bacik5b0e95b2011-10-06 08:58:24 -04002784 if (!ret)
2785 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05002786 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04002787 spin_unlock(&block_group->lock);
2788
2789 return ret;
2790}
2791
Chris Mason96b51792007-10-15 16:15:19 -04002792int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
2793 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04002794{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002795 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04002796 int err = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002797 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -04002798 u64 last = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002799
2800 path = btrfs_alloc_path();
2801 if (!path)
2802 return -ENOMEM;
2803
Josef Bacik0af3d002010-06-21 14:48:16 -04002804again:
2805 while (1) {
2806 cache = btrfs_lookup_first_block_group(root->fs_info, last);
2807 while (cache) {
2808 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
2809 break;
2810 cache = next_block_group(root, cache);
2811 }
2812 if (!cache) {
2813 if (last == 0)
2814 break;
2815 last = 0;
2816 continue;
2817 }
2818 err = cache_save_setup(cache, trans, path);
2819 last = cache->key.objectid + cache->key.offset;
2820 btrfs_put_block_group(cache);
2821 }
2822
Chris Masond3977122009-01-05 21:25:51 -05002823 while (1) {
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002824 if (last == 0) {
2825 err = btrfs_run_delayed_refs(trans, root,
2826 (unsigned long)-1);
2827 BUG_ON(err);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002828 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002829
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002830 cache = btrfs_lookup_first_block_group(root->fs_info, last);
2831 while (cache) {
Josef Bacik0af3d002010-06-21 14:48:16 -04002832 if (cache->disk_cache_state == BTRFS_DC_CLEAR) {
2833 btrfs_put_block_group(cache);
2834 goto again;
2835 }
2836
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002837 if (cache->dirty)
2838 break;
2839 cache = next_block_group(root, cache);
2840 }
2841 if (!cache) {
2842 if (last == 0)
2843 break;
2844 last = 0;
Chris Mason96b51792007-10-15 16:15:19 -04002845 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -04002846 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002847
Josef Bacik0cb59c92010-07-02 12:14:14 -04002848 if (cache->disk_cache_state == BTRFS_DC_SETUP)
2849 cache->disk_cache_state = BTRFS_DC_NEED_WRITE;
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002850 cache->dirty = 0;
2851 last = cache->key.objectid + cache->key.offset;
2852
2853 err = write_one_cache_group(trans, root, path, cache);
2854 BUG_ON(err);
2855 btrfs_put_block_group(cache);
Chris Mason9078a3e2007-04-26 16:46:15 -04002856 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002857
Josef Bacik0cb59c92010-07-02 12:14:14 -04002858 while (1) {
2859 /*
2860 * I don't think this is needed since we're just marking our
2861 * preallocated extent as written, but just in case it can't
2862 * hurt.
2863 */
2864 if (last == 0) {
2865 err = btrfs_run_delayed_refs(trans, root,
2866 (unsigned long)-1);
2867 BUG_ON(err);
2868 }
2869
2870 cache = btrfs_lookup_first_block_group(root->fs_info, last);
2871 while (cache) {
2872 /*
2873 * Really this shouldn't happen, but it could if we
2874 * couldn't write the entire preallocated extent and
2875 * splitting the extent resulted in a new block.
2876 */
2877 if (cache->dirty) {
2878 btrfs_put_block_group(cache);
2879 goto again;
2880 }
2881 if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
2882 break;
2883 cache = next_block_group(root, cache);
2884 }
2885 if (!cache) {
2886 if (last == 0)
2887 break;
2888 last = 0;
2889 continue;
2890 }
2891
2892 btrfs_write_out_cache(root, trans, cache, path);
2893
2894 /*
2895 * If we didn't have an error then the cache state is still
2896 * NEED_WRITE, so we can set it to WRITTEN.
2897 */
2898 if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
2899 cache->disk_cache_state = BTRFS_DC_WRITTEN;
2900 last = cache->key.objectid + cache->key.offset;
2901 btrfs_put_block_group(cache);
2902 }
2903
Chris Mason9078a3e2007-04-26 16:46:15 -04002904 btrfs_free_path(path);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04002905 return 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04002906}
2907
Yan Zhengd2fb3432008-12-11 16:30:39 -05002908int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
2909{
2910 struct btrfs_block_group_cache *block_group;
2911 int readonly = 0;
2912
2913 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
2914 if (!block_group || block_group->ro)
2915 readonly = 1;
2916 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04002917 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05002918 return readonly;
2919}
2920
Chris Mason593060d2008-03-25 16:50:33 -04002921static int update_space_info(struct btrfs_fs_info *info, u64 flags,
2922 u64 total_bytes, u64 bytes_used,
2923 struct btrfs_space_info **space_info)
2924{
2925 struct btrfs_space_info *found;
Yan, Zhengb742bb82010-05-16 10:46:24 -04002926 int i;
2927 int factor;
2928
2929 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
2930 BTRFS_BLOCK_GROUP_RAID10))
2931 factor = 2;
2932 else
2933 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04002934
2935 found = __find_space_info(info, flags);
2936 if (found) {
Josef Bacik25179202008-10-29 14:49:05 -04002937 spin_lock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04002938 found->total_bytes += total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04002939 found->disk_total += total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04002940 found->bytes_used += bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04002941 found->disk_used += bytes_used * factor;
Chris Mason8f18cf12008-04-25 16:53:30 -04002942 found->full = 0;
Josef Bacik25179202008-10-29 14:49:05 -04002943 spin_unlock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04002944 *space_info = found;
2945 return 0;
2946 }
Yan Zhengc146afa2008-11-12 14:34:12 -05002947 found = kzalloc(sizeof(*found), GFP_NOFS);
Chris Mason593060d2008-03-25 16:50:33 -04002948 if (!found)
2949 return -ENOMEM;
2950
Yan, Zhengb742bb82010-05-16 10:46:24 -04002951 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
2952 INIT_LIST_HEAD(&found->block_groups[i]);
Josef Bacik80eb2342008-10-29 14:49:05 -04002953 init_rwsem(&found->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002954 spin_lock_init(&found->lock);
Yan, Zhengb742bb82010-05-16 10:46:24 -04002955 found->flags = flags & (BTRFS_BLOCK_GROUP_DATA |
2956 BTRFS_BLOCK_GROUP_SYSTEM |
2957 BTRFS_BLOCK_GROUP_METADATA);
Chris Mason593060d2008-03-25 16:50:33 -04002958 found->total_bytes = total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04002959 found->disk_total = total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04002960 found->bytes_used = bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04002961 found->disk_used = bytes_used * factor;
Chris Mason593060d2008-03-25 16:50:33 -04002962 found->bytes_pinned = 0;
Zheng Yane8569812008-09-26 10:05:48 -04002963 found->bytes_reserved = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05002964 found->bytes_readonly = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04002965 found->bytes_may_use = 0;
Chris Mason593060d2008-03-25 16:50:33 -04002966 found->full = 0;
Chris Mason0e4f8f82011-04-15 16:05:44 -04002967 found->force_alloc = CHUNK_ALLOC_NO_FORCE;
Josef Bacik6d741192011-04-11 20:20:11 -04002968 found->chunk_alloc = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04002969 found->flush = 0;
2970 init_waitqueue_head(&found->wait);
Chris Mason593060d2008-03-25 16:50:33 -04002971 *space_info = found;
Chris Mason4184ea72009-03-10 12:39:20 -04002972 list_add_rcu(&found->list, &info->space_info);
Chris Mason593060d2008-03-25 16:50:33 -04002973 return 0;
2974}
2975
Chris Mason8790d502008-04-03 16:29:03 -04002976static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
2977{
2978 u64 extra_flags = flags & (BTRFS_BLOCK_GROUP_RAID0 |
Chris Mason611f0e02008-04-03 16:29:03 -04002979 BTRFS_BLOCK_GROUP_RAID1 |
Chris Mason321aecc2008-04-16 10:49:51 -04002980 BTRFS_BLOCK_GROUP_RAID10 |
Chris Mason611f0e02008-04-03 16:29:03 -04002981 BTRFS_BLOCK_GROUP_DUP);
Chris Mason8790d502008-04-03 16:29:03 -04002982 if (extra_flags) {
2983 if (flags & BTRFS_BLOCK_GROUP_DATA)
2984 fs_info->avail_data_alloc_bits |= extra_flags;
2985 if (flags & BTRFS_BLOCK_GROUP_METADATA)
2986 fs_info->avail_metadata_alloc_bits |= extra_flags;
2987 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
2988 fs_info->avail_system_alloc_bits |= extra_flags;
2989 }
2990}
Chris Mason593060d2008-03-25 16:50:33 -04002991
Yan Zheng2b820322008-11-17 21:11:30 -05002992u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04002993{
Chris Masoncd02dca2010-12-13 14:56:23 -05002994 /*
2995 * we add in the count of missing devices because we want
2996 * to make sure that any RAID levels on a degraded FS
2997 * continue to be honored.
2998 */
2999 u64 num_devices = root->fs_info->fs_devices->rw_devices +
3000 root->fs_info->fs_devices->missing_devices;
Chris Masona061fc82008-05-07 11:43:44 -04003001
3002 if (num_devices == 1)
3003 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0);
3004 if (num_devices < 4)
3005 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
3006
Chris Masonec44a352008-04-28 15:29:52 -04003007 if ((flags & BTRFS_BLOCK_GROUP_DUP) &&
3008 (flags & (BTRFS_BLOCK_GROUP_RAID1 |
Chris Masona061fc82008-05-07 11:43:44 -04003009 BTRFS_BLOCK_GROUP_RAID10))) {
Chris Masonec44a352008-04-28 15:29:52 -04003010 flags &= ~BTRFS_BLOCK_GROUP_DUP;
Chris Masona061fc82008-05-07 11:43:44 -04003011 }
Chris Masonec44a352008-04-28 15:29:52 -04003012
3013 if ((flags & BTRFS_BLOCK_GROUP_RAID1) &&
Chris Masona061fc82008-05-07 11:43:44 -04003014 (flags & BTRFS_BLOCK_GROUP_RAID10)) {
Chris Masonec44a352008-04-28 15:29:52 -04003015 flags &= ~BTRFS_BLOCK_GROUP_RAID1;
Chris Masona061fc82008-05-07 11:43:44 -04003016 }
Chris Masonec44a352008-04-28 15:29:52 -04003017
3018 if ((flags & BTRFS_BLOCK_GROUP_RAID0) &&
3019 ((flags & BTRFS_BLOCK_GROUP_RAID1) |
3020 (flags & BTRFS_BLOCK_GROUP_RAID10) |
3021 (flags & BTRFS_BLOCK_GROUP_DUP)))
3022 flags &= ~BTRFS_BLOCK_GROUP_RAID0;
3023 return flags;
3024}
3025
Yan, Zhengb742bb82010-05-16 10:46:24 -04003026static u64 get_alloc_profile(struct btrfs_root *root, u64 flags)
Josef Bacik6a632092009-02-20 11:00:09 -05003027{
Yan, Zhengb742bb82010-05-16 10:46:24 -04003028 if (flags & BTRFS_BLOCK_GROUP_DATA)
3029 flags |= root->fs_info->avail_data_alloc_bits &
3030 root->fs_info->data_alloc_profile;
3031 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3032 flags |= root->fs_info->avail_system_alloc_bits &
3033 root->fs_info->system_alloc_profile;
3034 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
3035 flags |= root->fs_info->avail_metadata_alloc_bits &
3036 root->fs_info->metadata_alloc_profile;
3037 return btrfs_reduce_alloc_profile(root, flags);
3038}
Josef Bacik6a632092009-02-20 11:00:09 -05003039
Miao Xie6d07bce2011-01-05 10:07:31 +00003040u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
Yan, Zhengb742bb82010-05-16 10:46:24 -04003041{
3042 u64 flags;
Josef Bacik6a632092009-02-20 11:00:09 -05003043
Yan, Zhengb742bb82010-05-16 10:46:24 -04003044 if (data)
3045 flags = BTRFS_BLOCK_GROUP_DATA;
3046 else if (root == root->fs_info->chunk_root)
3047 flags = BTRFS_BLOCK_GROUP_SYSTEM;
3048 else
3049 flags = BTRFS_BLOCK_GROUP_METADATA;
3050
3051 return get_alloc_profile(root, flags);
Josef Bacik6a632092009-02-20 11:00:09 -05003052}
3053
3054void btrfs_set_inode_space_info(struct btrfs_root *root, struct inode *inode)
3055{
Josef Bacik6a632092009-02-20 11:00:09 -05003056 BTRFS_I(inode)->space_info = __find_space_info(root->fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04003057 BTRFS_BLOCK_GROUP_DATA);
Josef Bacik6a632092009-02-20 11:00:09 -05003058}
3059
3060/*
3061 * This will check the space that the inode allocates from to make sure we have
3062 * enough space for bytes.
3063 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003064int btrfs_check_data_free_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003065{
3066 struct btrfs_space_info *data_sinfo;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003067 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacikab6e24102010-03-19 14:38:13 +00003068 u64 used;
Josef Bacik0af3d002010-06-21 14:48:16 -04003069 int ret = 0, committed = 0, alloc_chunk = 1;
Josef Bacik6a632092009-02-20 11:00:09 -05003070
3071 /* make sure bytes are sectorsize aligned */
3072 bytes = (bytes + root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
3073
Li Zefan82d59022011-04-20 10:33:24 +08003074 if (root == root->fs_info->tree_root ||
3075 BTRFS_I(inode)->location.objectid == BTRFS_FREE_INO_OBJECTID) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003076 alloc_chunk = 0;
3077 committed = 1;
3078 }
3079
Josef Bacik6a632092009-02-20 11:00:09 -05003080 data_sinfo = BTRFS_I(inode)->space_info;
Chris Mason33b4d472009-09-22 14:45:50 -04003081 if (!data_sinfo)
3082 goto alloc;
3083
Josef Bacik6a632092009-02-20 11:00:09 -05003084again:
3085 /* make sure we have enough space to handle the data first */
3086 spin_lock(&data_sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003087 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
3088 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
3089 data_sinfo->bytes_may_use;
Josef Bacikab6e24102010-03-19 14:38:13 +00003090
3091 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003092 struct btrfs_trans_handle *trans;
3093
Josef Bacik6a632092009-02-20 11:00:09 -05003094 /*
3095 * if we don't have enough free bytes in this space then we need
3096 * to alloc a new chunk.
3097 */
Josef Bacik0af3d002010-06-21 14:48:16 -04003098 if (!data_sinfo->full && alloc_chunk) {
Josef Bacik6a632092009-02-20 11:00:09 -05003099 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05003100
Chris Mason0e4f8f82011-04-15 16:05:44 -04003101 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05003102 spin_unlock(&data_sinfo->lock);
Chris Mason33b4d472009-09-22 14:45:50 -04003103alloc:
Josef Bacik6a632092009-02-20 11:00:09 -05003104 alloc_target = btrfs_get_alloc_profile(root, 1);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003105 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003106 if (IS_ERR(trans))
3107 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05003108
3109 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
3110 bytes + 2 * 1024 * 1024,
Chris Mason0e4f8f82011-04-15 16:05:44 -04003111 alloc_target,
3112 CHUNK_ALLOC_NO_FORCE);
Josef Bacik6a632092009-02-20 11:00:09 -05003113 btrfs_end_transaction(trans, root);
Miao Xied52a5b52011-01-05 10:07:18 +00003114 if (ret < 0) {
3115 if (ret != -ENOSPC)
3116 return ret;
3117 else
3118 goto commit_trans;
3119 }
Chris Mason33b4d472009-09-22 14:45:50 -04003120
3121 if (!data_sinfo) {
3122 btrfs_set_inode_space_info(root, inode);
3123 data_sinfo = BTRFS_I(inode)->space_info;
3124 }
Josef Bacik6a632092009-02-20 11:00:09 -05003125 goto again;
3126 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003127
3128 /*
3129 * If we have less pinned bytes than we want to allocate then
3130 * don't bother committing the transaction, it won't help us.
3131 */
3132 if (data_sinfo->bytes_pinned < bytes)
3133 committed = 1;
Josef Bacik6a632092009-02-20 11:00:09 -05003134 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003135
3136 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00003137commit_trans:
Josef Bacika4abeea2011-04-11 17:25:13 -04003138 if (!committed &&
3139 !atomic_read(&root->fs_info->open_ioctl_trans)) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003140 committed = 1;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003141 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003142 if (IS_ERR(trans))
3143 return PTR_ERR(trans);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003144 ret = btrfs_commit_transaction(trans, root);
3145 if (ret)
3146 return ret;
3147 goto again;
3148 }
3149
Josef Bacik6a632092009-02-20 11:00:09 -05003150 return -ENOSPC;
3151 }
3152 data_sinfo->bytes_may_use += bytes;
Josef Bacik6a632092009-02-20 11:00:09 -05003153 spin_unlock(&data_sinfo->lock);
3154
Josef Bacik9ed74f22009-09-11 16:12:44 -04003155 return 0;
Josef Bacik6a632092009-02-20 11:00:09 -05003156}
3157
3158/*
Josef Bacikfb25e912011-07-26 17:00:46 -04003159 * Called if we need to clear a data reservation for this inode.
Josef Bacik6a632092009-02-20 11:00:09 -05003160 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003161void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003162{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003163 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003164 struct btrfs_space_info *data_sinfo;
3165
3166 /* make sure bytes are sectorsize aligned */
3167 bytes = (bytes + root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
3168
3169 data_sinfo = BTRFS_I(inode)->space_info;
3170 spin_lock(&data_sinfo->lock);
3171 data_sinfo->bytes_may_use -= bytes;
Josef Bacik6a632092009-02-20 11:00:09 -05003172 spin_unlock(&data_sinfo->lock);
3173}
3174
Josef Bacik97e728d2009-04-21 17:40:57 -04003175static void force_metadata_allocation(struct btrfs_fs_info *info)
3176{
3177 struct list_head *head = &info->space_info;
3178 struct btrfs_space_info *found;
3179
3180 rcu_read_lock();
3181 list_for_each_entry_rcu(found, head, list) {
3182 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04003183 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04003184 }
3185 rcu_read_unlock();
3186}
3187
Chris Masone5bc2452010-10-26 13:37:56 -04003188static int should_alloc_chunk(struct btrfs_root *root,
Chris Mason0e4f8f82011-04-15 16:05:44 -04003189 struct btrfs_space_info *sinfo, u64 alloc_bytes,
3190 int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04003191{
Josef Bacikfb25e912011-07-26 17:00:46 -04003192 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zheng424499d2010-05-16 10:46:25 -04003193 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003194 u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved;
Chris Masone5bc2452010-10-26 13:37:56 -04003195 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04003196
Chris Mason0e4f8f82011-04-15 16:05:44 -04003197 if (force == CHUNK_ALLOC_FORCE)
3198 return 1;
3199
3200 /*
Josef Bacikfb25e912011-07-26 17:00:46 -04003201 * We need to take into account the global rsv because for all intents
3202 * and purposes it's used space. Don't worry about locking the
3203 * global_rsv, it doesn't change except when the transaction commits.
3204 */
3205 num_allocated += global_rsv->size;
3206
3207 /*
Chris Mason0e4f8f82011-04-15 16:05:44 -04003208 * in limited mode, we want to have some free space up to
3209 * about 1% of the FS size.
3210 */
3211 if (force == CHUNK_ALLOC_LIMITED) {
David Sterba6c417612011-04-13 15:41:04 +02003212 thresh = btrfs_super_total_bytes(root->fs_info->super_copy);
Chris Mason0e4f8f82011-04-15 16:05:44 -04003213 thresh = max_t(u64, 64 * 1024 * 1024,
3214 div_factor_fine(thresh, 1));
3215
3216 if (num_bytes - num_allocated < thresh)
3217 return 1;
3218 }
3219
3220 /*
3221 * we have two similar checks here, one based on percentage
3222 * and once based on a hard number of 256MB. The idea
3223 * is that if we have a good amount of free
3224 * room, don't allocate a chunk. A good mount is
3225 * less than 80% utilized of the chunks we have allocated,
3226 * or more than 256MB free
3227 */
3228 if (num_allocated + alloc_bytes + 256 * 1024 * 1024 < num_bytes)
Yan, Zheng424499d2010-05-16 10:46:25 -04003229 return 0;
3230
Chris Mason0e4f8f82011-04-15 16:05:44 -04003231 if (num_allocated + alloc_bytes < div_factor(num_bytes, 8))
Yan, Zheng424499d2010-05-16 10:46:25 -04003232 return 0;
3233
David Sterba6c417612011-04-13 15:41:04 +02003234 thresh = btrfs_super_total_bytes(root->fs_info->super_copy);
Chris Mason0e4f8f82011-04-15 16:05:44 -04003235
3236 /* 256MB or 5% of the FS */
Chris Masone5bc2452010-10-26 13:37:56 -04003237 thresh = max_t(u64, 256 * 1024 * 1024, div_factor_fine(thresh, 5));
3238
3239 if (num_bytes > thresh && sinfo->bytes_used < div_factor(num_bytes, 3))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04003240 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04003241 return 1;
3242}
3243
Chris Mason6324fbf2008-03-24 15:01:59 -04003244static int do_chunk_alloc(struct btrfs_trans_handle *trans,
3245 struct btrfs_root *extent_root, u64 alloc_bytes,
Chris Mason0ef3e662008-05-24 14:04:53 -04003246 u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04003247{
3248 struct btrfs_space_info *space_info;
Josef Bacik97e728d2009-04-21 17:40:57 -04003249 struct btrfs_fs_info *fs_info = extent_root->fs_info;
Josef Bacik6d741192011-04-11 20:20:11 -04003250 int wait_for_alloc = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003251 int ret = 0;
3252
Yan Zheng2b820322008-11-17 21:11:30 -05003253 flags = btrfs_reduce_alloc_profile(extent_root, flags);
Chris Masonec44a352008-04-28 15:29:52 -04003254
Chris Mason6324fbf2008-03-24 15:01:59 -04003255 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04003256 if (!space_info) {
3257 ret = update_space_info(extent_root->fs_info, flags,
3258 0, 0, &space_info);
3259 BUG_ON(ret);
3260 }
Chris Mason6324fbf2008-03-24 15:01:59 -04003261 BUG_ON(!space_info);
3262
Josef Bacik6d741192011-04-11 20:20:11 -04003263again:
Josef Bacik25179202008-10-29 14:49:05 -04003264 spin_lock(&space_info->lock);
Josef Bacik9ed74f22009-09-11 16:12:44 -04003265 if (space_info->force_alloc)
Chris Mason0e4f8f82011-04-15 16:05:44 -04003266 force = space_info->force_alloc;
Josef Bacik25179202008-10-29 14:49:05 -04003267 if (space_info->full) {
3268 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04003269 return 0;
Josef Bacik25179202008-10-29 14:49:05 -04003270 }
Chris Mason6324fbf2008-03-24 15:01:59 -04003271
Chris Mason0e4f8f82011-04-15 16:05:44 -04003272 if (!should_alloc_chunk(extent_root, space_info, alloc_bytes, force)) {
Josef Bacik25179202008-10-29 14:49:05 -04003273 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04003274 return 0;
3275 } else if (space_info->chunk_alloc) {
3276 wait_for_alloc = 1;
3277 } else {
3278 space_info->chunk_alloc = 1;
Josef Bacik25179202008-10-29 14:49:05 -04003279 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04003280
Josef Bacik25179202008-10-29 14:49:05 -04003281 spin_unlock(&space_info->lock);
3282
Josef Bacik6d741192011-04-11 20:20:11 -04003283 mutex_lock(&fs_info->chunk_mutex);
3284
3285 /*
3286 * The chunk_mutex is held throughout the entirety of a chunk
3287 * allocation, so once we've acquired the chunk_mutex we know that the
3288 * other guy is done and we need to recheck and see if we should
3289 * allocate.
3290 */
3291 if (wait_for_alloc) {
3292 mutex_unlock(&fs_info->chunk_mutex);
3293 wait_for_alloc = 0;
3294 goto again;
3295 }
3296
Josef Bacik97e728d2009-04-21 17:40:57 -04003297 /*
Josef Bacik67377732010-09-16 16:19:09 -04003298 * If we have mixed data/metadata chunks we want to make sure we keep
3299 * allocating mixed chunks instead of individual chunks.
3300 */
3301 if (btrfs_mixed_space_info(space_info))
3302 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
3303
3304 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04003305 * if we're doing a data chunk, go ahead and make sure that
3306 * we keep a reasonable number of metadata chunks allocated in the
3307 * FS as well.
3308 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04003309 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04003310 fs_info->data_chunk_allocations++;
3311 if (!(fs_info->data_chunk_allocations %
3312 fs_info->metadata_ratio))
3313 force_metadata_allocation(fs_info);
3314 }
3315
Yan Zheng2b820322008-11-17 21:11:30 -05003316 ret = btrfs_alloc_chunk(trans, extent_root, flags);
Mark Fasheh92b8e8972011-07-12 10:57:59 -07003317 if (ret < 0 && ret != -ENOSPC)
3318 goto out;
3319
Josef Bacik9ed74f22009-09-11 16:12:44 -04003320 spin_lock(&space_info->lock);
Chris Masond3977122009-01-05 21:25:51 -05003321 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04003322 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04003323 else
3324 ret = 1;
Josef Bacik6d741192011-04-11 20:20:11 -04003325
Chris Mason0e4f8f82011-04-15 16:05:44 -04003326 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Josef Bacik6d741192011-04-11 20:20:11 -04003327 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003328 spin_unlock(&space_info->lock);
Mark Fasheh92b8e8972011-07-12 10:57:59 -07003329out:
Yan Zhengc146afa2008-11-12 14:34:12 -05003330 mutex_unlock(&extent_root->fs_info->chunk_mutex);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003331 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04003332}
3333
Yan, Zheng5da9d012010-05-16 10:46:25 -04003334/*
3335 * shrink metadata reservation for delalloc
3336 */
Josef Bacik663350a2011-11-03 22:54:25 -04003337static int shrink_delalloc(struct btrfs_root *root, u64 to_reclaim,
Josef Bacikf104d042011-10-14 13:56:58 -04003338 bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04003339{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003340 struct btrfs_block_rsv *block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04003341 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04003342 struct btrfs_trans_handle *trans;
Yan, Zheng5da9d012010-05-16 10:46:25 -04003343 u64 reserved;
3344 u64 max_reclaim;
3345 u64 reclaimed = 0;
Josef Bacikb1953bc2011-01-21 21:10:01 +00003346 long time_left;
Josef Bacik877da172011-10-14 14:02:10 -04003347 unsigned long nr_pages = (2 * 1024 * 1024) >> PAGE_CACHE_SHIFT;
Josef Bacikb1953bc2011-01-21 21:10:01 +00003348 int loops = 0;
Chris Mason36e39c42011-03-12 07:08:42 -05003349 unsigned long progress;
Yan, Zheng5da9d012010-05-16 10:46:25 -04003350
Josef Bacik663350a2011-11-03 22:54:25 -04003351 trans = (struct btrfs_trans_handle *)current->journal_info;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003352 block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04003353 space_info = block_rsv->space_info;
Chris Masonbf9022e2010-10-26 13:40:45 -04003354
3355 smp_mb();
Josef Bacikfb25e912011-07-26 17:00:46 -04003356 reserved = space_info->bytes_may_use;
Chris Mason36e39c42011-03-12 07:08:42 -05003357 progress = space_info->reservation_progress;
Yan, Zheng5da9d012010-05-16 10:46:25 -04003358
3359 if (reserved == 0)
3360 return 0;
3361
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003362 smp_mb();
3363 if (root->fs_info->delalloc_bytes == 0) {
3364 if (trans)
3365 return 0;
3366 btrfs_wait_ordered_extents(root, 0, 0);
3367 return 0;
3368 }
3369
Yan, Zheng5da9d012010-05-16 10:46:25 -04003370 max_reclaim = min(reserved, to_reclaim);
Josef Bacik877da172011-10-14 14:02:10 -04003371 nr_pages = max_t(unsigned long, nr_pages,
3372 max_reclaim >> PAGE_CACHE_SHIFT);
Josef Bacikb1953bc2011-01-21 21:10:01 +00003373 while (loops < 1024) {
Chris Masonbf9022e2010-10-26 13:40:45 -04003374 /* have the flusher threads jump in and do some IO */
3375 smp_mb();
3376 nr_pages = min_t(unsigned long, nr_pages,
3377 root->fs_info->delalloc_bytes >> PAGE_CACHE_SHIFT);
3378 writeback_inodes_sb_nr_if_idle(root->fs_info->sb, nr_pages);
Yan, Zheng5da9d012010-05-16 10:46:25 -04003379
Josef Bacik0019f102010-10-15 15:18:40 -04003380 spin_lock(&space_info->lock);
Josef Bacikfb25e912011-07-26 17:00:46 -04003381 if (reserved > space_info->bytes_may_use)
3382 reclaimed += reserved - space_info->bytes_may_use;
3383 reserved = space_info->bytes_may_use;
Josef Bacik0019f102010-10-15 15:18:40 -04003384 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04003385
Chris Mason36e39c42011-03-12 07:08:42 -05003386 loops++;
3387
Yan, Zheng5da9d012010-05-16 10:46:25 -04003388 if (reserved == 0 || reclaimed >= max_reclaim)
3389 break;
3390
3391 if (trans && trans->transaction->blocked)
3392 return -EAGAIN;
Chris Masonbf9022e2010-10-26 13:40:45 -04003393
Josef Bacikf104d042011-10-14 13:56:58 -04003394 if (wait_ordered && !trans) {
3395 btrfs_wait_ordered_extents(root, 0, 0);
3396 } else {
3397 time_left = schedule_timeout_interruptible(1);
Josef Bacikb1953bc2011-01-21 21:10:01 +00003398
Josef Bacikf104d042011-10-14 13:56:58 -04003399 /* We were interrupted, exit */
3400 if (time_left)
3401 break;
3402 }
Josef Bacikb1953bc2011-01-21 21:10:01 +00003403
Chris Mason36e39c42011-03-12 07:08:42 -05003404 /* we've kicked the IO a few times, if anything has been freed,
3405 * exit. There is no sense in looping here for a long time
3406 * when we really need to commit the transaction, or there are
3407 * just too many writers without enough free space
3408 */
3409
3410 if (loops > 3) {
3411 smp_mb();
3412 if (progress != space_info->reservation_progress)
3413 break;
3414 }
Chris Masonbf9022e2010-10-26 13:40:45 -04003415
Yan, Zheng5da9d012010-05-16 10:46:25 -04003416 }
Josef Bacikf104d042011-10-14 13:56:58 -04003417
Yan, Zheng5da9d012010-05-16 10:46:25 -04003418 return reclaimed >= to_reclaim;
3419}
3420
Josef Bacik4a92b1b2011-08-30 12:34:28 -04003421/**
Josef Bacik663350a2011-11-03 22:54:25 -04003422 * maybe_commit_transaction - possibly commit the transaction if its ok to
3423 * @root - the root we're allocating for
3424 * @bytes - the number of bytes we want to reserve
3425 * @force - force the commit
3426 *
3427 * This will check to make sure that committing the transaction will actually
3428 * get us somewhere and then commit the transaction if it does. Otherwise it
3429 * will return -ENOSPC.
3430 */
3431static int may_commit_transaction(struct btrfs_root *root,
3432 struct btrfs_space_info *space_info,
3433 u64 bytes, int force)
3434{
3435 struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv;
3436 struct btrfs_trans_handle *trans;
3437
3438 trans = (struct btrfs_trans_handle *)current->journal_info;
3439 if (trans)
3440 return -EAGAIN;
3441
3442 if (force)
3443 goto commit;
3444
3445 /* See if there is enough pinned space to make this reservation */
3446 spin_lock(&space_info->lock);
3447 if (space_info->bytes_pinned >= bytes) {
3448 spin_unlock(&space_info->lock);
3449 goto commit;
3450 }
3451 spin_unlock(&space_info->lock);
3452
3453 /*
3454 * See if there is some space in the delayed insertion reservation for
3455 * this reservation.
3456 */
3457 if (space_info != delayed_rsv->space_info)
3458 return -ENOSPC;
3459
3460 spin_lock(&delayed_rsv->lock);
3461 if (delayed_rsv->size < bytes) {
3462 spin_unlock(&delayed_rsv->lock);
3463 return -ENOSPC;
3464 }
3465 spin_unlock(&delayed_rsv->lock);
3466
3467commit:
3468 trans = btrfs_join_transaction(root);
3469 if (IS_ERR(trans))
3470 return -ENOSPC;
3471
3472 return btrfs_commit_transaction(trans, root);
3473}
3474
3475/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04003476 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
3477 * @root - the root we're allocating for
3478 * @block_rsv - the block_rsv we're allocating for
3479 * @orig_bytes - the number of bytes we want
3480 * @flush - wether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003481 *
Josef Bacik4a92b1b2011-08-30 12:34:28 -04003482 * This will reserve orgi_bytes number of bytes from the space info associated
3483 * with the block_rsv. If there is not enough space it will make an attempt to
3484 * flush out space to make room. It will do this by flushing delalloc if
3485 * possible or committing the transaction. If flush is 0 then no attempts to
3486 * regain reservations will be made and this will fail if there is not enough
3487 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003488 */
Josef Bacik4a92b1b2011-08-30 12:34:28 -04003489static int reserve_metadata_bytes(struct btrfs_root *root,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003490 struct btrfs_block_rsv *block_rsv,
Josef Bacik36ba0222011-10-18 12:15:48 -04003491 u64 orig_bytes, int flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04003492{
3493 struct btrfs_space_info *space_info = block_rsv->space_info;
Josef Bacik2bf64752011-09-26 17:12:22 -04003494 u64 used;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003495 u64 num_bytes = orig_bytes;
3496 int retries = 0;
3497 int ret = 0;
Josef Bacik38227932010-10-26 12:52:53 -04003498 bool committed = false;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003499 bool flushing = false;
Josef Bacikf104d042011-10-14 13:56:58 -04003500 bool wait_ordered = false;
Josef Bacik4a92b1b2011-08-30 12:34:28 -04003501
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003502again:
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003503 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003504 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003505 /*
3506 * We only want to wait if somebody other than us is flushing and we are
3507 * actually alloed to flush.
3508 */
3509 while (flush && !flushing && space_info->flush) {
3510 spin_unlock(&space_info->lock);
3511 /*
3512 * If we have a trans handle we can't wait because the flusher
3513 * may have to commit the transaction, which would mean we would
3514 * deadlock since we are waiting for the flusher to finish, but
3515 * hold the current transaction open.
3516 */
Josef Bacik663350a2011-11-03 22:54:25 -04003517 if (current->journal_info)
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003518 return -EAGAIN;
3519 ret = wait_event_interruptible(space_info->wait,
3520 !space_info->flush);
3521 /* Must have been interrupted, return */
3522 if (ret)
3523 return -EINTR;
3524
3525 spin_lock(&space_info->lock);
3526 }
3527
3528 ret = -ENOSPC;
Josef Bacik2bf64752011-09-26 17:12:22 -04003529 used = space_info->bytes_used + space_info->bytes_reserved +
3530 space_info->bytes_pinned + space_info->bytes_readonly +
3531 space_info->bytes_may_use;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003532
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003533 /*
3534 * The idea here is that we've not already over-reserved the block group
3535 * then we can go ahead and save our reservation first and then start
3536 * flushing if we need to. Otherwise if we've already overcommitted
3537 * lets start flushing stuff first and then come back and try to make
3538 * our reservation.
3539 */
Josef Bacik2bf64752011-09-26 17:12:22 -04003540 if (used <= space_info->total_bytes) {
3541 if (used + orig_bytes <= space_info->total_bytes) {
Josef Bacikfb25e912011-07-26 17:00:46 -04003542 space_info->bytes_may_use += orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003543 ret = 0;
3544 } else {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003545 /*
3546 * Ok set num_bytes to orig_bytes since we aren't
3547 * overocmmitted, this way we only try and reclaim what
3548 * we need.
3549 */
3550 num_bytes = orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003551 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003552 } else {
3553 /*
3554 * Ok we're over committed, set num_bytes to the overcommitted
3555 * amount plus the amount of bytes that we need for this
3556 * reservation.
3557 */
Josef Bacikf104d042011-10-14 13:56:58 -04003558 wait_ordered = true;
Josef Bacik2bf64752011-09-26 17:12:22 -04003559 num_bytes = used - space_info->total_bytes +
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003560 (orig_bytes * (retries + 1));
Yan, Zhengf0486c62010-05-16 10:46:25 -04003561 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003562
Josef Bacik36ba0222011-10-18 12:15:48 -04003563 if (ret) {
Josef Bacik2bf64752011-09-26 17:12:22 -04003564 u64 profile = btrfs_get_alloc_profile(root, 0);
3565 u64 avail;
3566
Josef Bacik7e355b82011-10-18 13:07:31 -04003567 /*
3568 * If we have a lot of space that's pinned, don't bother doing
3569 * the overcommit dance yet and just commit the transaction.
3570 */
3571 avail = (space_info->total_bytes - space_info->bytes_used) * 8;
3572 do_div(avail, 10);
Josef Bacik663350a2011-11-03 22:54:25 -04003573 if (space_info->bytes_pinned >= avail && flush && !committed) {
Josef Bacik7e355b82011-10-18 13:07:31 -04003574 space_info->flush = 1;
3575 flushing = true;
3576 spin_unlock(&space_info->lock);
Josef Bacik663350a2011-11-03 22:54:25 -04003577 ret = may_commit_transaction(root, space_info,
3578 orig_bytes, 1);
3579 if (ret)
3580 goto out;
3581 committed = true;
3582 goto again;
Josef Bacik7e355b82011-10-18 13:07:31 -04003583 }
3584
Josef Bacik2bf64752011-09-26 17:12:22 -04003585 spin_lock(&root->fs_info->free_chunk_lock);
3586 avail = root->fs_info->free_chunk_space;
3587
3588 /*
3589 * If we have dup, raid1 or raid10 then only half of the free
3590 * space is actually useable.
3591 */
3592 if (profile & (BTRFS_BLOCK_GROUP_DUP |
3593 BTRFS_BLOCK_GROUP_RAID1 |
3594 BTRFS_BLOCK_GROUP_RAID10))
3595 avail >>= 1;
3596
3597 /*
3598 * If we aren't flushing don't let us overcommit too much, say
3599 * 1/8th of the space. If we can flush, let it overcommit up to
3600 * 1/2 of the space.
3601 */
3602 if (flush)
3603 avail >>= 3;
3604 else
3605 avail >>= 1;
3606 spin_unlock(&root->fs_info->free_chunk_lock);
3607
Josef Bacik9a82ca62011-10-05 16:35:28 -04003608 if (used + num_bytes < space_info->total_bytes + avail) {
Josef Bacik2bf64752011-09-26 17:12:22 -04003609 space_info->bytes_may_use += orig_bytes;
3610 ret = 0;
Josef Bacikf104d042011-10-14 13:56:58 -04003611 } else {
3612 wait_ordered = true;
Josef Bacik2bf64752011-09-26 17:12:22 -04003613 }
3614 }
3615
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003616 /*
3617 * Couldn't make our reservation, save our place so while we're trying
3618 * to reclaim space we can actually use it instead of somebody else
3619 * stealing it from us.
3620 */
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003621 if (ret && flush) {
3622 flushing = true;
3623 space_info->flush = 1;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003624 }
3625
Yan, Zhengf0486c62010-05-16 10:46:25 -04003626 spin_unlock(&space_info->lock);
3627
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003628 if (!ret || !flush)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003629 goto out;
3630
3631 /*
3632 * We do synchronous shrinking since we don't actually unreserve
3633 * metadata until after the IO is completed.
3634 */
Josef Bacik663350a2011-11-03 22:54:25 -04003635 ret = shrink_delalloc(root, num_bytes, wait_ordered);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003636 if (ret < 0)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003637 goto out;
3638
Chris Mason75c195a2011-07-27 15:57:44 -04003639 ret = 0;
3640
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003641 /*
3642 * So if we were overcommitted it's possible that somebody else flushed
3643 * out enough space and we simply didn't have enough space to reclaim,
3644 * so go back around and try again.
3645 */
3646 if (retries < 2) {
Josef Bacikf104d042011-10-14 13:56:58 -04003647 wait_ordered = true;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003648 retries++;
3649 goto again;
3650 }
3651
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003652 ret = -ENOSPC;
Chris Mason75c195a2011-07-27 15:57:44 -04003653 if (committed)
3654 goto out;
3655
Josef Bacik663350a2011-11-03 22:54:25 -04003656 ret = may_commit_transaction(root, space_info, orig_bytes, 0);
Josef Bacik38227932010-10-26 12:52:53 -04003657 if (!ret) {
Josef Bacik38227932010-10-26 12:52:53 -04003658 committed = true;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003659 goto again;
Josef Bacik38227932010-10-26 12:52:53 -04003660 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003661
3662out:
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003663 if (flushing) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003664 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003665 space_info->flush = 0;
3666 wake_up_all(&space_info->wait);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003667 spin_unlock(&space_info->lock);
3668 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04003669 return ret;
3670}
3671
3672static struct btrfs_block_rsv *get_block_rsv(struct btrfs_trans_handle *trans,
3673 struct btrfs_root *root)
3674{
Josef Bacik4c13d752011-08-30 11:31:29 -04003675 struct btrfs_block_rsv *block_rsv = NULL;
3676
3677 if (root->ref_cows || root == root->fs_info->csum_root)
Yan, Zhengf0486c62010-05-16 10:46:25 -04003678 block_rsv = trans->block_rsv;
Josef Bacik4c13d752011-08-30 11:31:29 -04003679
3680 if (!block_rsv)
Yan, Zhengf0486c62010-05-16 10:46:25 -04003681 block_rsv = root->block_rsv;
3682
3683 if (!block_rsv)
3684 block_rsv = &root->fs_info->empty_block_rsv;
3685
3686 return block_rsv;
3687}
3688
3689static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
3690 u64 num_bytes)
3691{
3692 int ret = -ENOSPC;
3693 spin_lock(&block_rsv->lock);
3694 if (block_rsv->reserved >= num_bytes) {
3695 block_rsv->reserved -= num_bytes;
3696 if (block_rsv->reserved < block_rsv->size)
3697 block_rsv->full = 0;
3698 ret = 0;
3699 }
3700 spin_unlock(&block_rsv->lock);
3701 return ret;
3702}
3703
3704static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
3705 u64 num_bytes, int update_size)
3706{
3707 spin_lock(&block_rsv->lock);
3708 block_rsv->reserved += num_bytes;
3709 if (update_size)
3710 block_rsv->size += num_bytes;
3711 else if (block_rsv->reserved >= block_rsv->size)
3712 block_rsv->full = 1;
3713 spin_unlock(&block_rsv->lock);
3714}
3715
David Sterba62a45b62011-04-20 15:52:26 +02003716static void block_rsv_release_bytes(struct btrfs_block_rsv *block_rsv,
3717 struct btrfs_block_rsv *dest, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04003718{
3719 struct btrfs_space_info *space_info = block_rsv->space_info;
3720
3721 spin_lock(&block_rsv->lock);
3722 if (num_bytes == (u64)-1)
3723 num_bytes = block_rsv->size;
3724 block_rsv->size -= num_bytes;
3725 if (block_rsv->reserved >= block_rsv->size) {
3726 num_bytes = block_rsv->reserved - block_rsv->size;
3727 block_rsv->reserved = block_rsv->size;
3728 block_rsv->full = 1;
3729 } else {
3730 num_bytes = 0;
3731 }
3732 spin_unlock(&block_rsv->lock);
3733
3734 if (num_bytes > 0) {
3735 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00003736 spin_lock(&dest->lock);
3737 if (!dest->full) {
3738 u64 bytes_to_add;
3739
3740 bytes_to_add = dest->size - dest->reserved;
3741 bytes_to_add = min(num_bytes, bytes_to_add);
3742 dest->reserved += bytes_to_add;
3743 if (dest->reserved >= dest->size)
3744 dest->full = 1;
3745 num_bytes -= bytes_to_add;
3746 }
3747 spin_unlock(&dest->lock);
3748 }
3749 if (num_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04003750 spin_lock(&space_info->lock);
Josef Bacikfb25e912011-07-26 17:00:46 -04003751 space_info->bytes_may_use -= num_bytes;
Chris Mason36e39c42011-03-12 07:08:42 -05003752 space_info->reservation_progress++;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003753 spin_unlock(&space_info->lock);
3754 }
3755 }
3756}
3757
3758static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src,
3759 struct btrfs_block_rsv *dst, u64 num_bytes)
3760{
3761 int ret;
3762
3763 ret = block_rsv_use_bytes(src, num_bytes);
3764 if (ret)
3765 return ret;
3766
3767 block_rsv_add_bytes(dst, num_bytes, 1);
3768 return 0;
3769}
3770
3771void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv)
3772{
3773 memset(rsv, 0, sizeof(*rsv));
3774 spin_lock_init(&rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003775}
3776
3777struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root)
3778{
3779 struct btrfs_block_rsv *block_rsv;
3780 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003781
3782 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
3783 if (!block_rsv)
3784 return NULL;
3785
3786 btrfs_init_block_rsv(block_rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003787 block_rsv->space_info = __find_space_info(fs_info,
3788 BTRFS_BLOCK_GROUP_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003789 return block_rsv;
3790}
3791
3792void btrfs_free_block_rsv(struct btrfs_root *root,
3793 struct btrfs_block_rsv *rsv)
3794{
Josef Bacikdabdb642011-08-08 12:50:18 -04003795 btrfs_block_rsv_release(root, rsv, (u64)-1);
3796 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003797}
3798
Miao Xie61b520a2011-11-10 20:45:05 -05003799static inline int __block_rsv_add(struct btrfs_root *root,
3800 struct btrfs_block_rsv *block_rsv,
3801 u64 num_bytes, int flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04003802{
3803 int ret;
3804
3805 if (num_bytes == 0)
3806 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04003807
Miao Xie61b520a2011-11-10 20:45:05 -05003808 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003809 if (!ret) {
3810 block_rsv_add_bytes(block_rsv, num_bytes, 1);
3811 return 0;
3812 }
3813
Yan, Zhengf0486c62010-05-16 10:46:25 -04003814 return ret;
3815}
3816
Miao Xie61b520a2011-11-10 20:45:05 -05003817int btrfs_block_rsv_add(struct btrfs_root *root,
3818 struct btrfs_block_rsv *block_rsv,
3819 u64 num_bytes)
3820{
3821 return __block_rsv_add(root, block_rsv, num_bytes, 1);
3822}
3823
Josef Bacikc06a0e12011-11-04 19:56:02 -04003824int btrfs_block_rsv_add_noflush(struct btrfs_root *root,
3825 struct btrfs_block_rsv *block_rsv,
3826 u64 num_bytes)
3827{
Miao Xie61b520a2011-11-10 20:45:05 -05003828 return __block_rsv_add(root, block_rsv, num_bytes, 0);
Josef Bacikc06a0e12011-11-04 19:56:02 -04003829}
3830
Josef Bacik4a92b1b2011-08-30 12:34:28 -04003831int btrfs_block_rsv_check(struct btrfs_root *root,
Josef Bacik36ba0222011-10-18 12:15:48 -04003832 struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04003833{
3834 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003835 int ret = -ENOSPC;
3836
3837 if (!block_rsv)
3838 return 0;
3839
3840 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04003841 num_bytes = div_factor(block_rsv->size, min_factor);
3842 if (block_rsv->reserved >= num_bytes)
3843 ret = 0;
3844 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003845
Josef Bacik36ba0222011-10-18 12:15:48 -04003846 return ret;
3847}
3848
3849int btrfs_block_rsv_refill(struct btrfs_root *root,
3850 struct btrfs_block_rsv *block_rsv,
3851 u64 min_reserved)
3852{
3853 u64 num_bytes = 0;
3854 int ret = -ENOSPC;
3855
3856 if (!block_rsv)
3857 return 0;
3858
3859 spin_lock(&block_rsv->lock);
3860 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04003861 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04003862 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04003863 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04003864 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003865 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04003866
Yan, Zhengf0486c62010-05-16 10:46:25 -04003867 if (!ret)
3868 return 0;
3869
Josef Bacik36ba0222011-10-18 12:15:48 -04003870 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, 1);
Josef Bacikdabdb642011-08-08 12:50:18 -04003871 if (!ret) {
3872 block_rsv_add_bytes(block_rsv, num_bytes, 0);
3873 return 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003874 }
3875
Josef Bacik13553e52011-08-08 13:33:21 -04003876 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003877}
3878
3879int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv,
3880 struct btrfs_block_rsv *dst_rsv,
3881 u64 num_bytes)
3882{
3883 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
3884}
3885
3886void btrfs_block_rsv_release(struct btrfs_root *root,
3887 struct btrfs_block_rsv *block_rsv,
3888 u64 num_bytes)
3889{
3890 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
3891 if (global_rsv->full || global_rsv == block_rsv ||
3892 block_rsv->space_info != global_rsv->space_info)
3893 global_rsv = NULL;
3894 block_rsv_release_bytes(block_rsv, global_rsv, num_bytes);
3895}
3896
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003897/*
3898 * helper to calculate size of global block reservation.
3899 * the desired value is sum of space used by extent tree,
3900 * checksum tree and root tree
3901 */
3902static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info)
3903{
3904 struct btrfs_space_info *sinfo;
3905 u64 num_bytes;
3906 u64 meta_used;
3907 u64 data_used;
David Sterba6c417612011-04-13 15:41:04 +02003908 int csum_size = btrfs_super_csum_size(fs_info->super_copy);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003909
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003910 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA);
3911 spin_lock(&sinfo->lock);
3912 data_used = sinfo->bytes_used;
3913 spin_unlock(&sinfo->lock);
3914
3915 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
3916 spin_lock(&sinfo->lock);
Josef Bacik6d487552010-10-15 15:13:32 -04003917 if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA)
3918 data_used = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003919 meta_used = sinfo->bytes_used;
3920 spin_unlock(&sinfo->lock);
3921
3922 num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) *
3923 csum_size * 2;
3924 num_bytes += div64_u64(data_used + meta_used, 50);
3925
3926 if (num_bytes * 3 > meta_used)
3927 num_bytes = div64_u64(meta_used, 3);
3928
3929 return ALIGN(num_bytes, fs_info->extent_root->leafsize << 10);
3930}
3931
3932static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
3933{
3934 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
3935 struct btrfs_space_info *sinfo = block_rsv->space_info;
3936 u64 num_bytes;
3937
3938 num_bytes = calc_global_metadata_size(fs_info);
3939
3940 spin_lock(&block_rsv->lock);
3941 spin_lock(&sinfo->lock);
3942
3943 block_rsv->size = num_bytes;
3944
3945 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
Josef Bacik6d487552010-10-15 15:13:32 -04003946 sinfo->bytes_reserved + sinfo->bytes_readonly +
3947 sinfo->bytes_may_use;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003948
3949 if (sinfo->total_bytes > num_bytes) {
3950 num_bytes = sinfo->total_bytes - num_bytes;
3951 block_rsv->reserved += num_bytes;
Josef Bacikfb25e912011-07-26 17:00:46 -04003952 sinfo->bytes_may_use += num_bytes;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003953 }
3954
3955 if (block_rsv->reserved >= block_rsv->size) {
3956 num_bytes = block_rsv->reserved - block_rsv->size;
Josef Bacikfb25e912011-07-26 17:00:46 -04003957 sinfo->bytes_may_use -= num_bytes;
Chris Mason36e39c42011-03-12 07:08:42 -05003958 sinfo->reservation_progress++;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003959 block_rsv->reserved = block_rsv->size;
3960 block_rsv->full = 1;
3961 }
David Sterba182608c2011-05-05 13:13:16 +02003962
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003963 spin_unlock(&sinfo->lock);
3964 spin_unlock(&block_rsv->lock);
3965}
3966
Yan, Zhengf0486c62010-05-16 10:46:25 -04003967static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
3968{
3969 struct btrfs_space_info *space_info;
3970
3971 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
3972 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003973
3974 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003975 fs_info->global_block_rsv.space_info = space_info;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003976 fs_info->delalloc_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003977 fs_info->trans_block_rsv.space_info = space_info;
3978 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04003979 fs_info->delayed_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003980
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003981 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
3982 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
3983 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
3984 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003985 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003986
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003987 update_global_block_rsv(fs_info);
3988}
3989
3990static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
3991{
3992 block_rsv_release_bytes(&fs_info->global_block_rsv, NULL, (u64)-1);
3993 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
3994 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
3995 WARN_ON(fs_info->trans_block_rsv.size > 0);
3996 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
3997 WARN_ON(fs_info->chunk_block_rsv.size > 0);
3998 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04003999 WARN_ON(fs_info->delayed_block_rsv.size > 0);
4000 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004001}
4002
Yan, Zhenga22285a2010-05-16 10:48:46 -04004003void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
4004 struct btrfs_root *root)
4005{
4006 if (!trans->bytes_reserved)
4007 return;
4008
Josef Bacikb24e03d2011-10-14 14:40:17 -04004009 btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004010 trans->bytes_reserved = 0;
4011}
4012
Yan, Zhengd68fc572010-05-16 10:49:58 -04004013int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
4014 struct inode *inode)
4015{
4016 struct btrfs_root *root = BTRFS_I(inode)->root;
4017 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
4018 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
4019
4020 /*
Josef Bacikfcb80c22011-05-03 10:40:22 -04004021 * We need to hold space in order to delete our orphan item once we've
4022 * added it, so this takes the reservation so we can release it later
4023 * when we are truly done with the orphan item.
Yan, Zhengd68fc572010-05-16 10:49:58 -04004024 */
Chris Masonff5714c2011-05-28 07:00:39 -04004025 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04004026 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
4027}
4028
4029void btrfs_orphan_release_metadata(struct inode *inode)
4030{
4031 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonff5714c2011-05-28 07:00:39 -04004032 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04004033 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
4034}
4035
Yan, Zhenga22285a2010-05-16 10:48:46 -04004036int btrfs_snap_reserve_metadata(struct btrfs_trans_handle *trans,
4037 struct btrfs_pending_snapshot *pending)
4038{
4039 struct btrfs_root *root = pending->root;
4040 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
4041 struct btrfs_block_rsv *dst_rsv = &pending->block_rsv;
4042 /*
4043 * two for root back/forward refs, two for directory entries
4044 * and one for root of the snapshot.
4045 */
Miao Xie16cdcec2011-04-22 18:12:22 +08004046 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 5);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004047 dst_rsv->space_info = src_rsv->space_info;
4048 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
4049}
4050
Josef Bacik7709cde2011-08-04 10:25:02 -04004051/**
4052 * drop_outstanding_extent - drop an outstanding extent
4053 * @inode: the inode we're dropping the extent for
4054 *
4055 * This is called when we are freeing up an outstanding extent, either called
4056 * after an error or after an extent is written. This will return the number of
4057 * reserved extents that need to be freed. This must be called with
4058 * BTRFS_I(inode)->lock held.
4059 */
Josef Bacik9e0baf62011-07-15 15:16:44 +00004060static unsigned drop_outstanding_extent(struct inode *inode)
4061{
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004062 unsigned drop_inode_space = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004063 unsigned dropped_extents = 0;
4064
Josef Bacik9e0baf62011-07-15 15:16:44 +00004065 BUG_ON(!BTRFS_I(inode)->outstanding_extents);
4066 BTRFS_I(inode)->outstanding_extents--;
4067
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004068 if (BTRFS_I(inode)->outstanding_extents == 0 &&
4069 BTRFS_I(inode)->delalloc_meta_reserved) {
4070 drop_inode_space = 1;
4071 BTRFS_I(inode)->delalloc_meta_reserved = 0;
4072 }
4073
Josef Bacik9e0baf62011-07-15 15:16:44 +00004074 /*
4075 * If we have more or the same amount of outsanding extents than we have
4076 * reserved then we need to leave the reserved extents count alone.
4077 */
4078 if (BTRFS_I(inode)->outstanding_extents >=
4079 BTRFS_I(inode)->reserved_extents)
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004080 return drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004081
4082 dropped_extents = BTRFS_I(inode)->reserved_extents -
4083 BTRFS_I(inode)->outstanding_extents;
4084 BTRFS_I(inode)->reserved_extents -= dropped_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004085 return dropped_extents + drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004086}
4087
Josef Bacik7709cde2011-08-04 10:25:02 -04004088/**
4089 * calc_csum_metadata_size - return the amount of metada space that must be
4090 * reserved/free'd for the given bytes.
4091 * @inode: the inode we're manipulating
4092 * @num_bytes: the number of bytes in question
4093 * @reserve: 1 if we are reserving space, 0 if we are freeing space
4094 *
4095 * This adjusts the number of csum_bytes in the inode and then returns the
4096 * correct amount of metadata that must either be reserved or freed. We
4097 * calculate how many checksums we can fit into one leaf and then divide the
4098 * number of bytes that will need to be checksumed by this value to figure out
4099 * how many checksums will be required. If we are adding bytes then the number
4100 * may go up and we will return the number of additional bytes that must be
4101 * reserved. If it is going down we will return the number of bytes that must
4102 * be freed.
4103 *
4104 * This must be called with BTRFS_I(inode)->lock held.
4105 */
4106static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes,
4107 int reserve)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004108{
Josef Bacik7709cde2011-08-04 10:25:02 -04004109 struct btrfs_root *root = BTRFS_I(inode)->root;
4110 u64 csum_size;
4111 int num_csums_per_leaf;
4112 int num_csums;
4113 int old_csums;
4114
4115 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM &&
4116 BTRFS_I(inode)->csum_bytes == 0)
4117 return 0;
4118
4119 old_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize);
4120 if (reserve)
4121 BTRFS_I(inode)->csum_bytes += num_bytes;
4122 else
4123 BTRFS_I(inode)->csum_bytes -= num_bytes;
4124 csum_size = BTRFS_LEAF_DATA_SIZE(root) - sizeof(struct btrfs_item);
4125 num_csums_per_leaf = (int)div64_u64(csum_size,
4126 sizeof(struct btrfs_csum_item) +
4127 sizeof(struct btrfs_disk_key));
4128 num_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize);
4129 num_csums = num_csums + num_csums_per_leaf - 1;
4130 num_csums = num_csums / num_csums_per_leaf;
4131
4132 old_csums = old_csums + num_csums_per_leaf - 1;
4133 old_csums = old_csums / num_csums_per_leaf;
4134
4135 /* No change, no need to reserve more */
4136 if (old_csums == num_csums)
4137 return 0;
4138
4139 if (reserve)
4140 return btrfs_calc_trans_metadata_size(root,
4141 num_csums - old_csums);
4142
4143 return btrfs_calc_trans_metadata_size(root, old_csums - num_csums);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004144}
4145
4146int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
4147{
4148 struct btrfs_root *root = BTRFS_I(inode)->root;
4149 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004150 u64 to_reserve = 0;
4151 unsigned nr_extents = 0;
Josef Bacikc09544e2011-08-30 10:19:10 -04004152 int flush = 1;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004153 int ret;
4154
Josef Bacikc09544e2011-08-30 10:19:10 -04004155 if (btrfs_is_free_space_inode(root, inode))
4156 flush = 0;
4157
4158 if (flush && btrfs_transaction_in_commit(root->fs_info))
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004159 schedule_timeout(1);
4160
4161 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004162
Josef Bacik9e0baf62011-07-15 15:16:44 +00004163 spin_lock(&BTRFS_I(inode)->lock);
4164 BTRFS_I(inode)->outstanding_extents++;
Josef Bacik57a45ced2011-01-25 16:30:38 -05004165
Josef Bacik9e0baf62011-07-15 15:16:44 +00004166 if (BTRFS_I(inode)->outstanding_extents >
4167 BTRFS_I(inode)->reserved_extents) {
4168 nr_extents = BTRFS_I(inode)->outstanding_extents -
4169 BTRFS_I(inode)->reserved_extents;
4170 BTRFS_I(inode)->reserved_extents += nr_extents;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004171 }
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004172
4173 /*
4174 * Add an item to reserve for updating the inode when we complete the
4175 * delalloc io.
4176 */
4177 if (!BTRFS_I(inode)->delalloc_meta_reserved) {
4178 nr_extents++;
4179 BTRFS_I(inode)->delalloc_meta_reserved = 1;
4180 }
4181
4182 to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04004183 to_reserve += calc_csum_metadata_size(inode, num_bytes, 1);
Josef Bacik9e0baf62011-07-15 15:16:44 +00004184 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05004185
Josef Bacik36ba0222011-10-18 12:15:48 -04004186 ret = reserve_metadata_bytes(root, block_rsv, to_reserve, flush);
Josef Bacik9e0baf62011-07-15 15:16:44 +00004187 if (ret) {
Josef Bacik7ed49f12011-08-19 15:45:52 -04004188 u64 to_free = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004189 unsigned dropped;
Josef Bacik7ed49f12011-08-19 15:45:52 -04004190
Josef Bacik7709cde2011-08-04 10:25:02 -04004191 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00004192 dropped = drop_outstanding_extent(inode);
Josef Bacik7ed49f12011-08-19 15:45:52 -04004193 to_free = calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacik7709cde2011-08-04 10:25:02 -04004194 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik7ed49f12011-08-19 15:45:52 -04004195 to_free += btrfs_calc_trans_metadata_size(root, dropped);
4196
4197 /*
4198 * Somebody could have come in and twiddled with the
4199 * reservation, so if we have to free more than we would have
4200 * reserved from this reservation go ahead and release those
4201 * bytes.
4202 */
4203 to_free -= to_reserve;
4204 if (to_free)
4205 btrfs_block_rsv_release(root, block_rsv, to_free);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004206 return ret;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004207 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004208
4209 block_rsv_add_bytes(block_rsv, to_reserve, 1);
4210
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004211 return 0;
4212}
4213
Josef Bacik7709cde2011-08-04 10:25:02 -04004214/**
4215 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
4216 * @inode: the inode to release the reservation for
4217 * @num_bytes: the number of bytes we're releasing
4218 *
4219 * This will release the metadata reservation for an inode. This can be called
4220 * once we complete IO for a given set of bytes to release their metadata
4221 * reservations.
4222 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004223void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
4224{
4225 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004226 u64 to_free = 0;
4227 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004228
4229 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik7709cde2011-08-04 10:25:02 -04004230 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00004231 dropped = drop_outstanding_extent(inode);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004232
Josef Bacik7709cde2011-08-04 10:25:02 -04004233 to_free = calc_csum_metadata_size(inode, num_bytes, 0);
4234 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00004235 if (dropped > 0)
4236 to_free += btrfs_calc_trans_metadata_size(root, dropped);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004237
4238 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
4239 to_free);
4240}
4241
Josef Bacik7709cde2011-08-04 10:25:02 -04004242/**
4243 * btrfs_delalloc_reserve_space - reserve data and metadata space for delalloc
4244 * @inode: inode we're writing to
4245 * @num_bytes: the number of bytes we want to allocate
4246 *
4247 * This will do the following things
4248 *
4249 * o reserve space in the data space info for num_bytes
4250 * o reserve space in the metadata space info based on number of outstanding
4251 * extents and how much csums will be needed
4252 * o add to the inodes ->delalloc_bytes
4253 * o add it to the fs_info's delalloc inodes list.
4254 *
4255 * This will return 0 for success and -ENOSPC if there is no space left.
4256 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004257int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes)
4258{
4259 int ret;
4260
4261 ret = btrfs_check_data_free_space(inode, num_bytes);
4262 if (ret)
4263 return ret;
4264
4265 ret = btrfs_delalloc_reserve_metadata(inode, num_bytes);
4266 if (ret) {
4267 btrfs_free_reserved_data_space(inode, num_bytes);
4268 return ret;
4269 }
4270
4271 return 0;
4272}
4273
Josef Bacik7709cde2011-08-04 10:25:02 -04004274/**
4275 * btrfs_delalloc_release_space - release data and metadata space for delalloc
4276 * @inode: inode we're releasing space for
4277 * @num_bytes: the number of bytes we want to free up
4278 *
4279 * This must be matched with a call to btrfs_delalloc_reserve_space. This is
4280 * called in the case that we don't need the metadata AND data reservations
4281 * anymore. So if there is an error or we insert an inline extent.
4282 *
4283 * This function will release the metadata space that was not used and will
4284 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
4285 * list if there are no delalloc bytes left.
4286 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004287void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes)
4288{
4289 btrfs_delalloc_release_metadata(inode, num_bytes);
4290 btrfs_free_reserved_data_space(inode, num_bytes);
4291}
4292
Chris Mason9078a3e2007-04-26 16:46:15 -04004293static int update_block_group(struct btrfs_trans_handle *trans,
4294 struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04004295 u64 bytenr, u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04004296{
Josef Bacik0af3d002010-06-21 14:48:16 -04004297 struct btrfs_block_group_cache *cache = NULL;
Chris Mason9078a3e2007-04-26 16:46:15 -04004298 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04004299 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04004300 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04004301 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04004302 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04004303
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004304 /* block accounting for super block */
4305 spin_lock(&info->delalloc_lock);
David Sterba6c417612011-04-13 15:41:04 +02004306 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004307 if (alloc)
4308 old_val += num_bytes;
4309 else
4310 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02004311 btrfs_set_super_bytes_used(info->super_copy, old_val);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004312 spin_unlock(&info->delalloc_lock);
4313
Chris Masond3977122009-01-05 21:25:51 -05004314 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04004315 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05004316 if (!cache)
Chris Mason9078a3e2007-04-26 16:46:15 -04004317 return -1;
Yan, Zhengb742bb82010-05-16 10:46:24 -04004318 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
4319 BTRFS_BLOCK_GROUP_RAID1 |
4320 BTRFS_BLOCK_GROUP_RAID10))
4321 factor = 2;
4322 else
4323 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04004324 /*
4325 * If this block group has free space cache written out, we
4326 * need to make sure to load it if we are removing space. This
4327 * is because we need the unpinning stage to actually add the
4328 * space back to the block group, otherwise we will leak space.
4329 */
4330 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Josef Bacikb8399de2010-12-08 09:15:11 -05004331 cache_block_group(cache, trans, NULL, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04004332
Chris Masondb945352007-10-15 16:15:53 -04004333 byte_in_group = bytenr - cache->key.objectid;
4334 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04004335
Josef Bacik25179202008-10-29 14:49:05 -04004336 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04004337 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04004338
Josef Bacik73bc1872011-10-03 14:07:49 -04004339 if (btrfs_test_opt(root, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04004340 cache->disk_cache_state < BTRFS_DC_CLEAR)
4341 cache->disk_cache_state = BTRFS_DC_CLEAR;
4342
Josef Bacik0f9dd462008-09-23 13:14:11 -04004343 cache->dirty = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04004344 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04004345 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04004346 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04004347 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04004348 btrfs_set_block_group_used(&cache->item, old_val);
4349 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04004350 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04004351 cache->space_info->bytes_used += num_bytes;
4352 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04004353 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04004354 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04004355 } else {
Chris Masondb945352007-10-15 16:15:53 -04004356 old_val -= num_bytes;
Chris Masonc286ac42008-07-22 23:06:41 -04004357 btrfs_set_block_group_used(&cache->item, old_val);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004358 cache->pinned += num_bytes;
4359 cache->space_info->bytes_pinned += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04004360 cache->space_info->bytes_used -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04004361 cache->space_info->disk_used -= num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04004362 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04004363 spin_unlock(&cache->space_info->lock);
Liu Hui1f3c79a2009-01-05 15:57:51 -05004364
Yan, Zhengf0486c62010-05-16 10:46:25 -04004365 set_extent_dirty(info->pinned_extents,
4366 bytenr, bytenr + num_bytes - 1,
4367 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04004368 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04004369 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04004370 total -= num_bytes;
4371 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04004372 }
4373 return 0;
4374}
Chris Mason6324fbf2008-03-24 15:01:59 -04004375
Chris Masona061fc82008-05-07 11:43:44 -04004376static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
4377{
Josef Bacik0f9dd462008-09-23 13:14:11 -04004378 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05004379 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04004380
4381 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
4382 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04004383 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04004384
Yan Zhengd2fb3432008-12-11 16:30:39 -05004385 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04004386 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05004387
4388 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04004389}
4390
Yan, Zhengf0486c62010-05-16 10:46:25 -04004391static int pin_down_extent(struct btrfs_root *root,
4392 struct btrfs_block_group_cache *cache,
4393 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05004394{
Yan Zheng11833d62009-09-11 16:11:19 -04004395 spin_lock(&cache->space_info->lock);
4396 spin_lock(&cache->lock);
4397 cache->pinned += num_bytes;
4398 cache->space_info->bytes_pinned += num_bytes;
4399 if (reserved) {
4400 cache->reserved -= num_bytes;
4401 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05004402 }
Yan Zheng11833d62009-09-11 16:11:19 -04004403 spin_unlock(&cache->lock);
4404 spin_unlock(&cache->space_info->lock);
4405
Yan, Zhengf0486c62010-05-16 10:46:25 -04004406 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
4407 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Yan324ae4d2007-11-16 14:57:08 -05004408 return 0;
4409}
Chris Mason9078a3e2007-04-26 16:46:15 -04004410
Yan, Zhengf0486c62010-05-16 10:46:25 -04004411/*
4412 * this function must be called within transaction
4413 */
4414int btrfs_pin_extent(struct btrfs_root *root,
4415 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04004416{
Yan, Zhengf0486c62010-05-16 10:46:25 -04004417 struct btrfs_block_group_cache *cache;
4418
4419 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
4420 BUG_ON(!cache);
4421
4422 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
4423
4424 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04004425 return 0;
4426}
Zheng Yane8569812008-09-26 10:05:48 -04004427
Chris Masone688b7252011-10-31 20:52:39 -04004428/*
4429 * this function must be called within transaction
4430 */
4431int btrfs_pin_extent_for_log_replay(struct btrfs_trans_handle *trans,
4432 struct btrfs_root *root,
4433 u64 bytenr, u64 num_bytes)
4434{
4435 struct btrfs_block_group_cache *cache;
4436
4437 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
4438 BUG_ON(!cache);
4439
4440 /*
4441 * pull in the free space cache (if any) so that our pin
4442 * removes the free space from the cache. We have load_only set
4443 * to one because the slow code to read in the free extents does check
4444 * the pinned extents.
4445 */
4446 cache_block_group(cache, trans, root, 1);
4447
4448 pin_down_extent(root, cache, bytenr, num_bytes, 0);
4449
4450 /* remove us from the free space cache (if we're there at all) */
4451 btrfs_remove_free_space(cache, bytenr, num_bytes);
4452 btrfs_put_block_group(cache);
4453 return 0;
4454}
4455
Josef Bacikfb25e912011-07-26 17:00:46 -04004456/**
4457 * btrfs_update_reserved_bytes - update the block_group and space info counters
4458 * @cache: The cache we are manipulating
4459 * @num_bytes: The number of bytes in question
4460 * @reserve: One of the reservation enums
4461 *
4462 * This is called by the allocator when it reserves space, or by somebody who is
4463 * freeing space that was never actually used on disk. For example if you
4464 * reserve some space for a new leaf in transaction A and before transaction A
4465 * commits you free that leaf, you call this with reserve set to 0 in order to
4466 * clear the reservation.
4467 *
4468 * Metadata reservations should be called with RESERVE_ALLOC so we do the proper
4469 * ENOSPC accounting. For data we handle the reservation through clearing the
4470 * delalloc bits in the io_tree. We have to do this since we could end up
4471 * allocating less disk space for the amount of data we have reserved in the
4472 * case of compression.
4473 *
4474 * If this is a reservation and the block group has become read only we cannot
4475 * make the reservation and return -EAGAIN, otherwise this function always
4476 * succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04004477 */
Josef Bacikfb25e912011-07-26 17:00:46 -04004478static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
4479 u64 num_bytes, int reserve)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004480{
Josef Bacikfb25e912011-07-26 17:00:46 -04004481 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004482 int ret = 0;
Josef Bacikfb25e912011-07-26 17:00:46 -04004483 spin_lock(&space_info->lock);
4484 spin_lock(&cache->lock);
4485 if (reserve != RESERVE_FREE) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04004486 if (cache->ro) {
4487 ret = -EAGAIN;
4488 } else {
Josef Bacikfb25e912011-07-26 17:00:46 -04004489 cache->reserved += num_bytes;
4490 space_info->bytes_reserved += num_bytes;
4491 if (reserve == RESERVE_ALLOC) {
4492 BUG_ON(space_info->bytes_may_use < num_bytes);
4493 space_info->bytes_may_use -= num_bytes;
4494 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004495 }
Josef Bacikfb25e912011-07-26 17:00:46 -04004496 } else {
4497 if (cache->ro)
4498 space_info->bytes_readonly += num_bytes;
4499 cache->reserved -= num_bytes;
4500 space_info->bytes_reserved -= num_bytes;
4501 space_info->reservation_progress++;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004502 }
Josef Bacikfb25e912011-07-26 17:00:46 -04004503 spin_unlock(&cache->lock);
4504 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004505 return ret;
4506}
4507
Yan Zheng11833d62009-09-11 16:11:19 -04004508int btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
4509 struct btrfs_root *root)
4510{
4511 struct btrfs_fs_info *fs_info = root->fs_info;
4512 struct btrfs_caching_control *next;
4513 struct btrfs_caching_control *caching_ctl;
4514 struct btrfs_block_group_cache *cache;
4515
4516 down_write(&fs_info->extent_commit_sem);
4517
4518 list_for_each_entry_safe(caching_ctl, next,
4519 &fs_info->caching_block_groups, list) {
4520 cache = caching_ctl->block_group;
4521 if (block_group_cache_done(cache)) {
4522 cache->last_byte_to_unpin = (u64)-1;
4523 list_del_init(&caching_ctl->list);
4524 put_caching_control(caching_ctl);
4525 } else {
4526 cache->last_byte_to_unpin = caching_ctl->progress;
4527 }
4528 }
4529
4530 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
4531 fs_info->pinned_extents = &fs_info->freed_extents[1];
4532 else
4533 fs_info->pinned_extents = &fs_info->freed_extents[0];
4534
4535 up_write(&fs_info->extent_commit_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004536
4537 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04004538 return 0;
4539}
4540
4541static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
4542{
4543 struct btrfs_fs_info *fs_info = root->fs_info;
4544 struct btrfs_block_group_cache *cache = NULL;
4545 u64 len;
4546
4547 while (start <= end) {
4548 if (!cache ||
4549 start >= cache->key.objectid + cache->key.offset) {
4550 if (cache)
4551 btrfs_put_block_group(cache);
4552 cache = btrfs_lookup_block_group(fs_info, start);
4553 BUG_ON(!cache);
4554 }
4555
4556 len = cache->key.objectid + cache->key.offset - start;
4557 len = min(len, end + 1 - start);
4558
4559 if (start < cache->last_byte_to_unpin) {
4560 len = min(len, cache->last_byte_to_unpin - start);
4561 btrfs_add_free_space(cache, start, len);
4562 }
Josef Bacik25179202008-10-29 14:49:05 -04004563
Yan, Zhengf0486c62010-05-16 10:46:25 -04004564 start += len;
4565
Josef Bacik25179202008-10-29 14:49:05 -04004566 spin_lock(&cache->space_info->lock);
4567 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04004568 cache->pinned -= len;
4569 cache->space_info->bytes_pinned -= len;
Josef Bacik37be25b2011-08-05 10:25:38 -04004570 if (cache->ro)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004571 cache->space_info->bytes_readonly += len;
Josef Bacik25179202008-10-29 14:49:05 -04004572 spin_unlock(&cache->lock);
4573 spin_unlock(&cache->space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04004574 }
4575
4576 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04004577 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04004578 return 0;
4579}
4580
4581int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04004582 struct btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -05004583{
Yan Zheng11833d62009-09-11 16:11:19 -04004584 struct btrfs_fs_info *fs_info = root->fs_info;
4585 struct extent_io_tree *unpin;
Chris Mason1a5bc1672007-10-15 16:15:26 -04004586 u64 start;
4587 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05004588 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05004589
Yan Zheng11833d62009-09-11 16:11:19 -04004590 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
4591 unpin = &fs_info->freed_extents[1];
4592 else
4593 unpin = &fs_info->freed_extents[0];
4594
Chris Masond3977122009-01-05 21:25:51 -05004595 while (1) {
Chris Mason1a5bc1672007-10-15 16:15:26 -04004596 ret = find_first_extent_bit(unpin, 0, &start, &end,
4597 EXTENT_DIRTY);
4598 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05004599 break;
Liu Hui1f3c79a2009-01-05 15:57:51 -05004600
Li Dongyang5378e602011-03-24 10:24:27 +00004601 if (btrfs_test_opt(root, DISCARD))
4602 ret = btrfs_discard_extent(root, start,
4603 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05004604
Chris Mason1a5bc1672007-10-15 16:15:26 -04004605 clear_extent_dirty(unpin, start, end, GFP_NOFS);
Yan Zheng11833d62009-09-11 16:11:19 -04004606 unpin_extent_range(root, start, end);
Chris Masonb9473432009-03-13 11:00:37 -04004607 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05004608 }
Josef Bacik817d52f2009-07-13 21:29:25 -04004609
Chris Masone20d96d2007-03-22 12:13:20 -04004610 return 0;
4611}
4612
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004613static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
4614 struct btrfs_root *root,
4615 u64 bytenr, u64 num_bytes, u64 parent,
4616 u64 root_objectid, u64 owner_objectid,
4617 u64 owner_offset, int refs_to_drop,
4618 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05004619{
Chris Masone2fa7222007-03-12 16:22:34 -04004620 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004621 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04004622 struct btrfs_fs_info *info = root->fs_info;
4623 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04004624 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004625 struct btrfs_extent_item *ei;
4626 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05004627 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004628 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05004629 int extent_slot = 0;
4630 int found_extent = 0;
4631 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004632 u32 item_size;
4633 u64 refs;
Chris Mason037e6392007-03-07 11:50:24 -05004634
Chris Mason5caf2a02007-04-02 11:20:42 -04004635 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04004636 if (!path)
4637 return -ENOMEM;
4638
Chris Mason3c12ac72008-04-21 12:01:38 -04004639 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04004640 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004641
4642 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
4643 BUG_ON(!is_data && refs_to_drop != 1);
4644
4645 ret = lookup_extent_backref(trans, extent_root, path, &iref,
4646 bytenr, num_bytes, parent,
4647 root_objectid, owner_objectid,
4648 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05004649 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05004650 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004651 while (extent_slot >= 0) {
4652 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05004653 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004654 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05004655 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004656 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
4657 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05004658 found_extent = 1;
4659 break;
4660 }
4661 if (path->slots[0] - extent_slot > 5)
4662 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004663 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05004664 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004665#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
4666 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
4667 if (found_extent && item_size < sizeof(*ei))
4668 found_extent = 0;
4669#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04004670 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004671 BUG_ON(iref);
Chris Mason56bec292009-03-13 10:10:06 -04004672 ret = remove_extent_backref(trans, extent_root, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004673 NULL, refs_to_drop,
4674 is_data);
Zheng Yan31840ae2008-09-23 13:14:14 -04004675 BUG_ON(ret);
David Sterbab3b4aa72011-04-21 01:20:15 +02004676 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04004677 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004678
4679 key.objectid = bytenr;
4680 key.type = BTRFS_EXTENT_ITEM_KEY;
4681 key.offset = num_bytes;
4682
Zheng Yan31840ae2008-09-23 13:14:14 -04004683 ret = btrfs_search_slot(trans, extent_root,
4684 &key, path, -1, 1);
Josef Bacikf3465ca2008-11-12 14:19:50 -05004685 if (ret) {
4686 printk(KERN_ERR "umm, got %d back from search"
Chris Masond3977122009-01-05 21:25:51 -05004687 ", was looking for %llu\n", ret,
4688 (unsigned long long)bytenr);
Josef Bacikb783e622011-07-13 15:03:50 +00004689 if (ret > 0)
4690 btrfs_print_leaf(extent_root,
4691 path->nodes[0]);
Josef Bacikf3465ca2008-11-12 14:19:50 -05004692 }
Zheng Yan31840ae2008-09-23 13:14:14 -04004693 BUG_ON(ret);
4694 extent_slot = path->slots[0];
4695 }
Chris Mason7bb86312007-12-11 09:25:06 -05004696 } else {
4697 btrfs_print_leaf(extent_root, path->nodes[0]);
4698 WARN_ON(1);
Chris Masond3977122009-01-05 21:25:51 -05004699 printk(KERN_ERR "btrfs unable to find ref byte nr %llu "
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004700 "parent %llu root %llu owner %llu offset %llu\n",
Chris Masond3977122009-01-05 21:25:51 -05004701 (unsigned long long)bytenr,
Chris Mason56bec292009-03-13 10:10:06 -04004702 (unsigned long long)parent,
Chris Masond3977122009-01-05 21:25:51 -05004703 (unsigned long long)root_objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004704 (unsigned long long)owner_objectid,
4705 (unsigned long long)owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05004706 }
Chris Mason5f39d392007-10-15 16:14:19 -04004707
4708 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004709 item_size = btrfs_item_size_nr(leaf, extent_slot);
4710#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
4711 if (item_size < sizeof(*ei)) {
4712 BUG_ON(found_extent || extent_slot != path->slots[0]);
4713 ret = convert_extent_item_v0(trans, extent_root, path,
4714 owner_objectid, 0);
4715 BUG_ON(ret < 0);
4716
David Sterbab3b4aa72011-04-21 01:20:15 +02004717 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004718 path->leave_spinning = 1;
4719
4720 key.objectid = bytenr;
4721 key.type = BTRFS_EXTENT_ITEM_KEY;
4722 key.offset = num_bytes;
4723
4724 ret = btrfs_search_slot(trans, extent_root, &key, path,
4725 -1, 1);
4726 if (ret) {
4727 printk(KERN_ERR "umm, got %d back from search"
4728 ", was looking for %llu\n", ret,
4729 (unsigned long long)bytenr);
4730 btrfs_print_leaf(extent_root, path->nodes[0]);
4731 }
4732 BUG_ON(ret);
4733 extent_slot = path->slots[0];
4734 leaf = path->nodes[0];
4735 item_size = btrfs_item_size_nr(leaf, extent_slot);
4736 }
4737#endif
4738 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05004739 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04004740 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004741 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID) {
4742 struct btrfs_tree_block_info *bi;
4743 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
4744 bi = (struct btrfs_tree_block_info *)(ei + 1);
4745 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05004746 }
4747
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004748 refs = btrfs_extent_refs(leaf, ei);
4749 BUG_ON(refs < refs_to_drop);
4750 refs -= refs_to_drop;
4751
4752 if (refs > 0) {
4753 if (extent_op)
4754 __run_delayed_extent_op(extent_op, leaf, ei);
4755 /*
4756 * In the case of inline back ref, reference count will
4757 * be updated by remove_extent_backref
4758 */
4759 if (iref) {
4760 BUG_ON(!found_extent);
4761 } else {
4762 btrfs_set_extent_refs(leaf, ei, refs);
4763 btrfs_mark_buffer_dirty(leaf);
4764 }
4765 if (found_extent) {
4766 ret = remove_extent_backref(trans, extent_root, path,
4767 iref, refs_to_drop,
4768 is_data);
4769 BUG_ON(ret);
4770 }
4771 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004772 if (found_extent) {
4773 BUG_ON(is_data && refs_to_drop !=
4774 extent_data_ref_count(root, path, iref));
4775 if (iref) {
4776 BUG_ON(path->slots[0] != extent_slot);
4777 } else {
4778 BUG_ON(path->slots[0] != extent_slot + 1);
4779 path->slots[0] = extent_slot;
4780 num_to_del = 2;
4781 }
Chris Mason78fae272007-03-25 11:35:08 -04004782 }
Chris Masonb9473432009-03-13 11:00:37 -04004783
Chris Mason952fcca2008-02-18 16:33:44 -05004784 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
4785 num_to_del);
Zheng Yan31840ae2008-09-23 13:14:14 -04004786 BUG_ON(ret);
David Sterbab3b4aa72011-04-21 01:20:15 +02004787 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01004788
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004789 if (is_data) {
Chris Mason459931e2008-12-10 09:10:46 -05004790 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
4791 BUG_ON(ret);
Chris Masond57e62b2009-03-31 13:47:50 -04004792 } else {
4793 invalidate_mapping_pages(info->btree_inode->i_mapping,
4794 bytenr >> PAGE_CACHE_SHIFT,
4795 (bytenr + num_bytes - 1) >> PAGE_CACHE_SHIFT);
Chris Mason459931e2008-12-10 09:10:46 -05004796 }
4797
Yan, Zhengf0486c62010-05-16 10:46:25 -04004798 ret = update_block_group(trans, root, bytenr, num_bytes, 0);
Chris Masondcbdd4d2008-12-16 13:51:01 -05004799 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -05004800 }
Chris Mason5caf2a02007-04-02 11:20:42 -04004801 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05004802 return ret;
4803}
4804
4805/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04004806 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04004807 * delayed ref for that extent as well. This searches the delayed ref tree for
4808 * a given extent, and if there are no other delayed refs to be processed, it
4809 * removes it from the tree.
4810 */
4811static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
4812 struct btrfs_root *root, u64 bytenr)
4813{
4814 struct btrfs_delayed_ref_head *head;
4815 struct btrfs_delayed_ref_root *delayed_refs;
4816 struct btrfs_delayed_ref_node *ref;
4817 struct rb_node *node;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004818 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04004819
4820 delayed_refs = &trans->transaction->delayed_refs;
4821 spin_lock(&delayed_refs->lock);
4822 head = btrfs_find_delayed_ref_head(trans, bytenr);
4823 if (!head)
4824 goto out;
4825
4826 node = rb_prev(&head->node.rb_node);
4827 if (!node)
4828 goto out;
4829
4830 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
4831
4832 /* there are still entries for this ref, we can't drop it */
4833 if (ref->bytenr == bytenr)
4834 goto out;
4835
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004836 if (head->extent_op) {
4837 if (!head->must_insert_reserved)
4838 goto out;
4839 kfree(head->extent_op);
4840 head->extent_op = NULL;
4841 }
4842
Chris Mason1887be62009-03-13 10:11:24 -04004843 /*
4844 * waiting for the lock here would deadlock. If someone else has it
4845 * locked they are already in the process of dropping it anyway
4846 */
4847 if (!mutex_trylock(&head->mutex))
4848 goto out;
4849
4850 /*
4851 * at this point we have a head with no other entries. Go
4852 * ahead and process it.
4853 */
4854 head->node.in_tree = 0;
4855 rb_erase(&head->node.rb_node, &delayed_refs->root);
Chris Masonc3e69d52009-03-13 10:17:05 -04004856
Chris Mason1887be62009-03-13 10:11:24 -04004857 delayed_refs->num_entries--;
4858
4859 /*
4860 * we don't take a ref on the node because we're removing it from the
4861 * tree, so we just steal the ref the tree was holding.
4862 */
Chris Masonc3e69d52009-03-13 10:17:05 -04004863 delayed_refs->num_heads--;
4864 if (list_empty(&head->cluster))
4865 delayed_refs->num_heads_ready--;
4866
4867 list_del_init(&head->cluster);
Chris Mason1887be62009-03-13 10:11:24 -04004868 spin_unlock(&delayed_refs->lock);
4869
Yan, Zhengf0486c62010-05-16 10:46:25 -04004870 BUG_ON(head->extent_op);
4871 if (head->must_insert_reserved)
4872 ret = 1;
4873
4874 mutex_unlock(&head->mutex);
Chris Mason1887be62009-03-13 10:11:24 -04004875 btrfs_put_delayed_ref(&head->node);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004876 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04004877out:
4878 spin_unlock(&delayed_refs->lock);
4879 return 0;
4880}
4881
Yan, Zhengf0486c62010-05-16 10:46:25 -04004882void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
4883 struct btrfs_root *root,
4884 struct extent_buffer *buf,
4885 u64 parent, int last_ref)
4886{
Yan, Zhengf0486c62010-05-16 10:46:25 -04004887 struct btrfs_block_group_cache *cache = NULL;
4888 int ret;
4889
4890 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4891 ret = btrfs_add_delayed_tree_ref(trans, buf->start, buf->len,
4892 parent, root->root_key.objectid,
4893 btrfs_header_level(buf),
4894 BTRFS_DROP_DELAYED_REF, NULL);
4895 BUG_ON(ret);
4896 }
4897
4898 if (!last_ref)
4899 return;
4900
Yan, Zhengf0486c62010-05-16 10:46:25 -04004901 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004902
4903 if (btrfs_header_generation(buf) == trans->transid) {
4904 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
4905 ret = check_ref_cleanup(trans, root, buf->start);
4906 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04004907 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004908 }
4909
4910 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
4911 pin_down_extent(root, cache, buf->start, buf->len, 1);
Josef Bacik37be25b2011-08-05 10:25:38 -04004912 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004913 }
4914
4915 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
4916
4917 btrfs_add_free_space(cache, buf->start, buf->len);
Josef Bacikfb25e912011-07-26 17:00:46 -04004918 btrfs_update_reserved_bytes(cache, buf->len, RESERVE_FREE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004919 }
4920out:
Josef Bacika826d6d2011-03-16 13:42:43 -04004921 /*
4922 * Deleting the buffer, clear the corrupt flag since it doesn't matter
4923 * anymore.
4924 */
4925 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004926 btrfs_put_block_group(cache);
4927}
4928
Chris Mason925baed2008-06-25 16:01:30 -04004929int btrfs_free_extent(struct btrfs_trans_handle *trans,
Zheng Yan31840ae2008-09-23 13:14:14 -04004930 struct btrfs_root *root,
4931 u64 bytenr, u64 num_bytes, u64 parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004932 u64 root_objectid, u64 owner, u64 offset)
Chris Mason925baed2008-06-25 16:01:30 -04004933{
4934 int ret;
4935
Chris Mason56bec292009-03-13 10:10:06 -04004936 /*
4937 * tree log blocks never actually go into the extent allocation
4938 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04004939 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004940 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
4941 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04004942 /* unlocks the pinned mutex */
Yan Zheng11833d62009-09-11 16:11:19 -04004943 btrfs_pin_extent(root, bytenr, num_bytes, 1);
Chris Mason56bec292009-03-13 10:10:06 -04004944 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004945 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
4946 ret = btrfs_add_delayed_tree_ref(trans, bytenr, num_bytes,
4947 parent, root_objectid, (int)owner,
4948 BTRFS_DROP_DELAYED_REF, NULL);
Chris Mason1887be62009-03-13 10:11:24 -04004949 BUG_ON(ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004950 } else {
4951 ret = btrfs_add_delayed_data_ref(trans, bytenr, num_bytes,
4952 parent, root_objectid, owner,
4953 offset, BTRFS_DROP_DELAYED_REF, NULL);
4954 BUG_ON(ret);
Chris Mason56bec292009-03-13 10:10:06 -04004955 }
Chris Mason925baed2008-06-25 16:01:30 -04004956 return ret;
4957}
4958
Chris Mason87ee04e2007-11-30 11:30:34 -05004959static u64 stripe_align(struct btrfs_root *root, u64 val)
4960{
4961 u64 mask = ((u64)root->stripesize - 1);
4962 u64 ret = (val + mask) & ~mask;
4963 return ret;
4964}
4965
Chris Masonfec577f2007-02-26 10:40:21 -05004966/*
Josef Bacik817d52f2009-07-13 21:29:25 -04004967 * when we wait for progress in the block group caching, its because
4968 * our allocation attempt failed at least once. So, we must sleep
4969 * and let some progress happen before we try again.
4970 *
4971 * This function will sleep at least once waiting for new free space to
4972 * show up, and then it will check the block group free space numbers
4973 * for our min num_bytes. Another option is to have it go ahead
4974 * and look in the rbtree for a free extent of a given size, but this
4975 * is a good start.
4976 */
4977static noinline int
4978wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
4979 u64 num_bytes)
4980{
Yan Zheng11833d62009-09-11 16:11:19 -04004981 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04004982 DEFINE_WAIT(wait);
4983
Yan Zheng11833d62009-09-11 16:11:19 -04004984 caching_ctl = get_caching_control(cache);
4985 if (!caching_ctl)
Josef Bacik817d52f2009-07-13 21:29:25 -04004986 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -04004987
Yan Zheng11833d62009-09-11 16:11:19 -04004988 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08004989 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04004990
4991 put_caching_control(caching_ctl);
4992 return 0;
4993}
4994
4995static noinline int
4996wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
4997{
4998 struct btrfs_caching_control *caching_ctl;
4999 DEFINE_WAIT(wait);
5000
5001 caching_ctl = get_caching_control(cache);
5002 if (!caching_ctl)
5003 return 0;
5004
5005 wait_event(caching_ctl->wait, block_group_cache_done(cache));
5006
5007 put_caching_control(caching_ctl);
Josef Bacik817d52f2009-07-13 21:29:25 -04005008 return 0;
5009}
5010
Yan, Zhengb742bb82010-05-16 10:46:24 -04005011static int get_block_group_index(struct btrfs_block_group_cache *cache)
5012{
5013 int index;
5014 if (cache->flags & BTRFS_BLOCK_GROUP_RAID10)
5015 index = 0;
5016 else if (cache->flags & BTRFS_BLOCK_GROUP_RAID1)
5017 index = 1;
5018 else if (cache->flags & BTRFS_BLOCK_GROUP_DUP)
5019 index = 2;
5020 else if (cache->flags & BTRFS_BLOCK_GROUP_RAID0)
5021 index = 3;
5022 else
5023 index = 4;
5024 return index;
5025}
5026
Josef Bacik817d52f2009-07-13 21:29:25 -04005027enum btrfs_loop_type {
Josef Bacikccf0e722009-11-10 21:23:48 -05005028 LOOP_FIND_IDEAL = 0,
Josef Bacik817d52f2009-07-13 21:29:25 -04005029 LOOP_CACHING_NOWAIT = 1,
5030 LOOP_CACHING_WAIT = 2,
5031 LOOP_ALLOC_CHUNK = 3,
5032 LOOP_NO_EMPTY_SIZE = 4,
5033};
5034
5035/*
Chris Masonfec577f2007-02-26 10:40:21 -05005036 * walks the btree of allocated extents and find a hole of a given size.
5037 * The key ins is changed to record the hole:
5038 * ins->objectid == block start
Chris Mason62e27492007-03-15 12:56:47 -04005039 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Chris Masonfec577f2007-02-26 10:40:21 -05005040 * ins->offset == number of blocks
5041 * Any available blocks before search_start are skipped.
5042 */
Chris Masond3977122009-01-05 21:25:51 -05005043static noinline int find_free_extent(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05005044 struct btrfs_root *orig_root,
5045 u64 num_bytes, u64 empty_size,
5046 u64 search_start, u64 search_end,
5047 u64 hint_byte, struct btrfs_key *ins,
Ilya Dryomove0f54062011-06-18 20:26:38 +00005048 u64 data)
Chris Masonfec577f2007-02-26 10:40:21 -05005049{
Josef Bacik80eb2342008-10-29 14:49:05 -04005050 int ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05005051 struct btrfs_root *root = orig_root->fs_info->extent_root;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005052 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04005053 struct btrfs_block_group_cache *block_group = NULL;
Chris Mason239b14b2008-03-24 15:02:07 -04005054 int empty_cluster = 2 * 1024 * 1024;
Chris Mason0ef3e662008-05-24 14:04:53 -04005055 int allowed_chunk_alloc = 0;
Josef Bacikccf0e722009-11-10 21:23:48 -05005056 int done_chunk_alloc = 0;
Josef Bacik80eb2342008-10-29 14:49:05 -04005057 struct btrfs_space_info *space_info;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005058 int last_ptr_loop = 0;
5059 int loop = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005060 int index = 0;
Josef Bacikfb25e912011-07-26 17:00:46 -04005061 int alloc_type = (data & BTRFS_BLOCK_GROUP_DATA) ?
5062 RESERVE_ALLOC_NO_ACCOUNT : RESERVE_ALLOC;
Josef Bacik817d52f2009-07-13 21:29:25 -04005063 bool found_uncached_bg = false;
Josef Bacik0a243252009-09-11 16:11:20 -04005064 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005065 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04005066 bool use_cluster = true;
Miao Xie60d2adb2011-09-09 17:34:35 +08005067 bool have_caching_bg = false;
Josef Bacikccf0e722009-11-10 21:23:48 -05005068 u64 ideal_cache_percent = 0;
5069 u64 ideal_cache_offset = 0;
Chris Masonfec577f2007-02-26 10:40:21 -05005070
Chris Masondb945352007-10-15 16:15:53 -04005071 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04005072 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
Josef Bacik80eb2342008-10-29 14:49:05 -04005073 ins->objectid = 0;
5074 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04005075
Josef Bacik2552d172009-04-03 10:14:19 -04005076 space_info = __find_space_info(root->fs_info, data);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00005077 if (!space_info) {
Ilya Dryomove0f54062011-06-18 20:26:38 +00005078 printk(KERN_ERR "No space info for %llu\n", data);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00005079 return -ENOSPC;
5080 }
Josef Bacik2552d172009-04-03 10:14:19 -04005081
Josef Bacik67377732010-09-16 16:19:09 -04005082 /*
5083 * If the space info is for both data and metadata it means we have a
5084 * small filesystem and we can't use the clustering stuff.
5085 */
5086 if (btrfs_mixed_space_info(space_info))
5087 use_cluster = false;
5088
Chris Mason0ef3e662008-05-24 14:04:53 -04005089 if (orig_root->ref_cows || empty_size)
5090 allowed_chunk_alloc = 1;
5091
Josef Bacik67377732010-09-16 16:19:09 -04005092 if (data & BTRFS_BLOCK_GROUP_METADATA && use_cluster) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04005093 last_ptr = &root->fs_info->meta_alloc_cluster;
Chris Mason536ac8a2009-02-12 09:41:38 -05005094 if (!btrfs_test_opt(root, SSD))
5095 empty_cluster = 64 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04005096 }
5097
Josef Bacik67377732010-09-16 16:19:09 -04005098 if ((data & BTRFS_BLOCK_GROUP_DATA) && use_cluster &&
5099 btrfs_test_opt(root, SSD)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04005100 last_ptr = &root->fs_info->data_alloc_cluster;
5101 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04005102
Chris Mason239b14b2008-03-24 15:02:07 -04005103 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04005104 spin_lock(&last_ptr->lock);
5105 if (last_ptr->block_group)
5106 hint_byte = last_ptr->window_start;
5107 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04005108 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04005109
Chris Masona061fc82008-05-07 11:43:44 -04005110 search_start = max(search_start, first_logical_byte(root, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04005111 search_start = max(search_start, hint_byte);
Chris Mason0b86a832008-03-24 15:01:56 -04005112
Josef Bacik817d52f2009-07-13 21:29:25 -04005113 if (!last_ptr)
Chris Masonfa9c0d792009-04-03 09:47:43 -04005114 empty_cluster = 0;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005115
Josef Bacik2552d172009-04-03 10:14:19 -04005116 if (search_start == hint_byte) {
Josef Bacikccf0e722009-11-10 21:23:48 -05005117ideal_cache:
Josef Bacik2552d172009-04-03 10:14:19 -04005118 block_group = btrfs_lookup_block_group(root->fs_info,
5119 search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04005120 /*
5121 * we don't want to use the block group if it doesn't match our
5122 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05005123 *
5124 * However if we are re-searching with an ideal block group
5125 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04005126 */
5127 if (block_group && block_group_bits(block_group, data) &&
Josef Bacikccf0e722009-11-10 21:23:48 -05005128 (block_group->cached != BTRFS_CACHE_NO ||
5129 search_start == ideal_cache_offset)) {
Josef Bacik2552d172009-04-03 10:14:19 -04005130 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04005131 if (list_empty(&block_group->list) ||
5132 block_group->ro) {
5133 /*
5134 * someone is removing this block group,
5135 * we can't jump into the have_block_group
5136 * target because our list pointers are not
5137 * valid
5138 */
5139 btrfs_put_block_group(block_group);
5140 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05005141 } else {
Yan, Zhengb742bb82010-05-16 10:46:24 -04005142 index = get_block_group_index(block_group);
Chris Mason44fb5512009-06-04 15:34:51 -04005143 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05005144 }
Josef Bacik2552d172009-04-03 10:14:19 -04005145 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04005146 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04005147 }
Chris Mason42e70e72008-11-07 18:17:11 -05005148 }
Josef Bacik2552d172009-04-03 10:14:19 -04005149search:
Miao Xie60d2adb2011-09-09 17:34:35 +08005150 have_caching_bg = false;
Josef Bacik80eb2342008-10-29 14:49:05 -04005151 down_read(&space_info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04005152 list_for_each_entry(block_group, &space_info->block_groups[index],
5153 list) {
Josef Bacik6226cb0a2009-04-03 10:14:18 -04005154 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04005155 int cached;
Chris Mason8a1413a2008-11-10 16:13:54 -05005156
Josef Bacik11dfe352009-11-13 20:12:59 +00005157 btrfs_get_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04005158 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05005159
Chris Mason83a50de2010-12-13 15:06:46 -05005160 /*
5161 * this can happen if we end up cycling through all the
5162 * raid types, but we want to make sure we only allocate
5163 * for the proper type.
5164 */
5165 if (!block_group_bits(block_group, data)) {
5166 u64 extra = BTRFS_BLOCK_GROUP_DUP |
5167 BTRFS_BLOCK_GROUP_RAID1 |
5168 BTRFS_BLOCK_GROUP_RAID10;
5169
5170 /*
5171 * if they asked for extra copies and this block group
5172 * doesn't provide them, bail. This does allow us to
5173 * fill raid0 from raid1.
5174 */
5175 if ((data & extra) && !(block_group->flags & extra))
5176 goto loop;
5177 }
5178
Josef Bacik2552d172009-04-03 10:14:19 -04005179have_block_group:
Josef Bacik817d52f2009-07-13 21:29:25 -04005180 if (unlikely(block_group->cached == BTRFS_CACHE_NO)) {
Josef Bacikccf0e722009-11-10 21:23:48 -05005181 u64 free_percent;
5182
Josef Bacikb8399de2010-12-08 09:15:11 -05005183 ret = cache_block_group(block_group, trans,
5184 orig_root, 1);
Josef Bacik9d66e232010-08-25 16:54:15 -04005185 if (block_group->cached == BTRFS_CACHE_FINISHED)
5186 goto have_block_group;
5187
Josef Bacikccf0e722009-11-10 21:23:48 -05005188 free_percent = btrfs_block_group_used(&block_group->item);
5189 free_percent *= 100;
5190 free_percent = div64_u64(free_percent,
5191 block_group->key.offset);
5192 free_percent = 100 - free_percent;
5193 if (free_percent > ideal_cache_percent &&
5194 likely(!block_group->ro)) {
5195 ideal_cache_offset = block_group->key.objectid;
5196 ideal_cache_percent = free_percent;
5197 }
5198
Josef Bacik817d52f2009-07-13 21:29:25 -04005199 /*
Josef Bacikbab39bf2011-06-30 14:42:28 -04005200 * The caching workers are limited to 2 threads, so we
5201 * can queue as much work as we care to.
Josef Bacik817d52f2009-07-13 21:29:25 -04005202 */
Josef Bacikbab39bf2011-06-30 14:42:28 -04005203 if (loop > LOOP_FIND_IDEAL) {
Josef Bacikb8399de2010-12-08 09:15:11 -05005204 ret = cache_block_group(block_group, trans,
5205 orig_root, 0);
Josef Bacik817d52f2009-07-13 21:29:25 -04005206 BUG_ON(ret);
Josef Bacik2552d172009-04-03 10:14:19 -04005207 }
Josef Bacikccf0e722009-11-10 21:23:48 -05005208 found_uncached_bg = true;
5209
5210 /*
5211 * If loop is set for cached only, try the next block
5212 * group.
5213 */
5214 if (loop == LOOP_FIND_IDEAL)
5215 goto loop;
Josef Bacikea6a4782008-11-20 12:16:16 -05005216 }
5217
Josef Bacik817d52f2009-07-13 21:29:25 -04005218 cached = block_group_cache_done(block_group);
Josef Bacikccf0e722009-11-10 21:23:48 -05005219 if (unlikely(!cached))
Josef Bacik817d52f2009-07-13 21:29:25 -04005220 found_uncached_bg = true;
5221
Josef Bacikea6a4782008-11-20 12:16:16 -05005222 if (unlikely(block_group->ro))
Josef Bacik2552d172009-04-03 10:14:19 -04005223 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005224
Chris Masonff5714c2011-05-28 07:00:39 -04005225 spin_lock(&block_group->free_space_ctl->tree_lock);
Josef Bacikcca1c812011-05-13 11:07:12 -04005226 if (cached &&
Chris Masonff5714c2011-05-28 07:00:39 -04005227 block_group->free_space_ctl->free_space <
5228 num_bytes + empty_size) {
5229 spin_unlock(&block_group->free_space_ctl->tree_lock);
Josef Bacikcca1c812011-05-13 11:07:12 -04005230 goto loop;
5231 }
Chris Masonff5714c2011-05-28 07:00:39 -04005232 spin_unlock(&block_group->free_space_ctl->tree_lock);
Josef Bacikcca1c812011-05-13 11:07:12 -04005233
Josef Bacik0a243252009-09-11 16:11:20 -04005234 /*
5235 * Ok we want to try and use the cluster allocator, so lets look
5236 * there, unless we are on LOOP_NO_EMPTY_SIZE, since we will
5237 * have tried the cluster allocator plenty of times at this
5238 * point and not have found anything, so we are likely way too
5239 * fragmented for the clustering stuff to find anything, so lets
5240 * just skip it and let the allocator find whatever block it can
5241 * find
5242 */
5243 if (last_ptr && loop < LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04005244 /*
5245 * the refill lock keeps out other
5246 * people trying to start a new cluster
5247 */
5248 spin_lock(&last_ptr->refill_lock);
Chris Mason44fb5512009-06-04 15:34:51 -04005249 if (last_ptr->block_group &&
5250 (last_ptr->block_group->ro ||
5251 !block_group_bits(last_ptr->block_group, data))) {
5252 offset = 0;
5253 goto refill_cluster;
5254 }
5255
Chris Masonfa9c0d792009-04-03 09:47:43 -04005256 offset = btrfs_alloc_from_cluster(block_group, last_ptr,
5257 num_bytes, search_start);
5258 if (offset) {
5259 /* we have a block, we're done */
5260 spin_unlock(&last_ptr->refill_lock);
5261 goto checks;
5262 }
5263
5264 spin_lock(&last_ptr->lock);
5265 /*
5266 * whoops, this cluster doesn't actually point to
5267 * this block group. Get a ref on the block
5268 * group is does point to and try again
5269 */
5270 if (!last_ptr_loop && last_ptr->block_group &&
liuboff1f2b42011-07-27 09:49:18 +00005271 last_ptr->block_group != block_group &&
5272 index <=
5273 get_block_group_index(last_ptr->block_group)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04005274
5275 btrfs_put_block_group(block_group);
5276 block_group = last_ptr->block_group;
Josef Bacik11dfe352009-11-13 20:12:59 +00005277 btrfs_get_block_group(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04005278 spin_unlock(&last_ptr->lock);
5279 spin_unlock(&last_ptr->refill_lock);
5280
5281 last_ptr_loop = 1;
5282 search_start = block_group->key.objectid;
Chris Mason44fb5512009-06-04 15:34:51 -04005283 /*
5284 * we know this block group is properly
5285 * in the list because
5286 * btrfs_remove_block_group, drops the
5287 * cluster before it removes the block
5288 * group from the list
5289 */
Chris Masonfa9c0d792009-04-03 09:47:43 -04005290 goto have_block_group;
5291 }
5292 spin_unlock(&last_ptr->lock);
Chris Mason44fb5512009-06-04 15:34:51 -04005293refill_cluster:
Chris Masonfa9c0d792009-04-03 09:47:43 -04005294 /*
5295 * this cluster didn't work out, free it and
5296 * start over
5297 */
5298 btrfs_return_cluster_to_free_space(NULL, last_ptr);
5299
5300 last_ptr_loop = 0;
5301
5302 /* allocate a cluster in this block group */
Chris Mason451d7582009-06-09 20:28:34 -04005303 ret = btrfs_find_space_cluster(trans, root,
Chris Masonfa9c0d792009-04-03 09:47:43 -04005304 block_group, last_ptr,
5305 offset, num_bytes,
5306 empty_cluster + empty_size);
5307 if (ret == 0) {
5308 /*
5309 * now pull our allocation out of this
5310 * cluster
5311 */
5312 offset = btrfs_alloc_from_cluster(block_group,
5313 last_ptr, num_bytes,
5314 search_start);
5315 if (offset) {
5316 /* we found one, proceed */
5317 spin_unlock(&last_ptr->refill_lock);
5318 goto checks;
5319 }
Josef Bacik0a243252009-09-11 16:11:20 -04005320 } else if (!cached && loop > LOOP_CACHING_NOWAIT
5321 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04005322 spin_unlock(&last_ptr->refill_lock);
5323
Josef Bacik0a243252009-09-11 16:11:20 -04005324 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04005325 wait_block_group_cache_progress(block_group,
5326 num_bytes + empty_cluster + empty_size);
5327 goto have_block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005328 }
Josef Bacik817d52f2009-07-13 21:29:25 -04005329
Chris Masonfa9c0d792009-04-03 09:47:43 -04005330 /*
5331 * at this point we either didn't find a cluster
5332 * or we weren't able to allocate a block from our
5333 * cluster. Free the cluster we've been trying
5334 * to use, and go to the next block group
5335 */
Josef Bacik0a243252009-09-11 16:11:20 -04005336 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d792009-04-03 09:47:43 -04005337 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04005338 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005339 }
5340
Josef Bacik6226cb0a2009-04-03 10:14:18 -04005341 offset = btrfs_find_space_for_alloc(block_group, search_start,
5342 num_bytes, empty_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005343 /*
5344 * If we didn't find a chunk, and we haven't failed on this
5345 * block group before, and this block group is in the middle of
5346 * caching and we are ok with waiting, then go ahead and wait
5347 * for progress to be made, and set failed_alloc to true.
5348 *
5349 * If failed_alloc is true then we've already waited on this
5350 * block group once and should move on to the next block group.
5351 */
5352 if (!offset && !failed_alloc && !cached &&
5353 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04005354 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005355 num_bytes + empty_size);
5356 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04005357 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005358 } else if (!offset) {
Miao Xie60d2adb2011-09-09 17:34:35 +08005359 if (!cached)
5360 have_caching_bg = true;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005361 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04005362 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04005363checks:
Josef Bacik6226cb0a2009-04-03 10:14:18 -04005364 search_start = stripe_align(root, offset);
Josef Bacik2552d172009-04-03 10:14:19 -04005365 /* move on to the next group */
Josef Bacik6226cb0a2009-04-03 10:14:18 -04005366 if (search_start + num_bytes >= search_end) {
5367 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04005368 goto loop;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04005369 }
Chris Masone37c9e62007-05-09 20:13:14 -04005370
Josef Bacik2552d172009-04-03 10:14:19 -04005371 /* move on to the next group */
5372 if (search_start + num_bytes >
Josef Bacik6226cb0a2009-04-03 10:14:18 -04005373 block_group->key.objectid + block_group->key.offset) {
5374 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04005375 goto loop;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04005376 }
Josef Bacik80eb2342008-10-29 14:49:05 -04005377
Josef Bacik2552d172009-04-03 10:14:19 -04005378 ins->objectid = search_start;
5379 ins->offset = num_bytes;
5380
Josef Bacik6226cb0a2009-04-03 10:14:18 -04005381 if (offset < search_start)
5382 btrfs_add_free_space(block_group, offset,
5383 search_start - offset);
5384 BUG_ON(offset > search_start);
5385
Josef Bacikfb25e912011-07-26 17:00:46 -04005386 ret = btrfs_update_reserved_bytes(block_group, num_bytes,
5387 alloc_type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005388 if (ret == -EAGAIN) {
5389 btrfs_add_free_space(block_group, offset, num_bytes);
5390 goto loop;
5391 }
Yan Zheng11833d62009-09-11 16:11:19 -04005392
Josef Bacik2552d172009-04-03 10:14:19 -04005393 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04005394 ins->objectid = search_start;
5395 ins->offset = num_bytes;
5396
5397 if (offset < search_start)
5398 btrfs_add_free_space(block_group, offset,
5399 search_start - offset);
5400 BUG_ON(offset > search_start);
Josef Bacikd82a6f12011-05-11 15:26:06 -04005401 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04005402 break;
5403loop:
Josef Bacik0a243252009-09-11 16:11:20 -04005404 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04005405 failed_alloc = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005406 BUG_ON(index != get_block_group_index(block_group));
Chris Masonfa9c0d792009-04-03 09:47:43 -04005407 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04005408 }
5409 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05005410
Miao Xie60d2adb2011-09-09 17:34:35 +08005411 if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg)
5412 goto search;
5413
Yan, Zhengb742bb82010-05-16 10:46:24 -04005414 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
5415 goto search;
5416
Josef Bacikccf0e722009-11-10 21:23:48 -05005417 /* LOOP_FIND_IDEAL, only search caching/cached bg's, and don't wait for
5418 * for them to make caching progress. Also
5419 * determine the best possible bg to cache
5420 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
5421 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04005422 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
5423 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
5424 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
5425 * again
Chris Masonfa9c0d792009-04-03 09:47:43 -04005426 */
Josef Bacik723bda22011-05-27 16:11:38 -04005427 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) {
Yan, Zhengb742bb82010-05-16 10:46:24 -04005428 index = 0;
Josef Bacikccf0e722009-11-10 21:23:48 -05005429 if (loop == LOOP_FIND_IDEAL && found_uncached_bg) {
Josef Bacik817d52f2009-07-13 21:29:25 -04005430 found_uncached_bg = false;
Josef Bacikccf0e722009-11-10 21:23:48 -05005431 loop++;
Josef Bacikbab39bf2011-06-30 14:42:28 -04005432 if (!ideal_cache_percent)
Josef Bacik817d52f2009-07-13 21:29:25 -04005433 goto search;
Josef Bacikccf0e722009-11-10 21:23:48 -05005434
5435 /*
5436 * 1 of the following 2 things have happened so far
5437 *
5438 * 1) We found an ideal block group for caching that
5439 * is mostly full and will cache quickly, so we might
5440 * as well wait for it.
5441 *
5442 * 2) We searched for cached only and we didn't find
5443 * anything, and we didn't start any caching kthreads
5444 * either, so chances are we will loop through and
5445 * start a couple caching kthreads, and then come back
5446 * around and just wait for them. This will be slower
5447 * because we will have 2 caching kthreads reading at
5448 * the same time when we could have just started one
5449 * and waited for it to get far enough to give us an
5450 * allocation, so go ahead and go to the wait caching
5451 * loop.
5452 */
5453 loop = LOOP_CACHING_WAIT;
5454 search_start = ideal_cache_offset;
5455 ideal_cache_percent = 0;
5456 goto ideal_cache;
5457 } else if (loop == LOOP_FIND_IDEAL) {
5458 /*
5459 * Didn't find a uncached bg, wait on anything we find
5460 * next.
5461 */
5462 loop = LOOP_CACHING_WAIT;
5463 goto search;
5464 }
5465
Josef Bacik723bda22011-05-27 16:11:38 -04005466 loop++;
Josef Bacik817d52f2009-07-13 21:29:25 -04005467
5468 if (loop == LOOP_ALLOC_CHUNK) {
Josef Bacik723bda22011-05-27 16:11:38 -04005469 if (allowed_chunk_alloc) {
5470 ret = do_chunk_alloc(trans, root, num_bytes +
5471 2 * 1024 * 1024, data,
5472 CHUNK_ALLOC_LIMITED);
5473 allowed_chunk_alloc = 0;
5474 if (ret == 1)
5475 done_chunk_alloc = 1;
5476 } else if (!done_chunk_alloc &&
5477 space_info->force_alloc ==
5478 CHUNK_ALLOC_NO_FORCE) {
5479 space_info->force_alloc = CHUNK_ALLOC_LIMITED;
5480 }
5481
5482 /*
5483 * We didn't allocate a chunk, go ahead and drop the
5484 * empty size and loop again.
5485 */
5486 if (!done_chunk_alloc)
5487 loop = LOOP_NO_EMPTY_SIZE;
5488 }
5489
5490 if (loop == LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04005491 empty_size = 0;
5492 empty_cluster = 0;
5493 }
Chris Mason42e70e72008-11-07 18:17:11 -05005494
Josef Bacik723bda22011-05-27 16:11:38 -04005495 goto search;
Josef Bacik2552d172009-04-03 10:14:19 -04005496 } else if (!ins->objectid) {
5497 ret = -ENOSPC;
Josef Bacikd82a6f12011-05-11 15:26:06 -04005498 } else if (ins->objectid) {
Josef Bacik2552d172009-04-03 10:14:19 -04005499 ret = 0;
5500 }
Chris Mason0b86a832008-03-24 15:01:56 -04005501
Chris Mason0f70abe2007-02-28 16:46:22 -05005502 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05005503}
Chris Masonec44a352008-04-28 15:29:52 -04005504
Josef Bacik9ed74f22009-09-11 16:12:44 -04005505static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
5506 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04005507{
5508 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005509 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005510
Josef Bacik9ed74f22009-09-11 16:12:44 -04005511 spin_lock(&info->lock);
Josef Bacikfb25e912011-07-26 17:00:46 -04005512 printk(KERN_INFO "space_info %llu has %llu free, is %sfull\n",
5513 (unsigned long long)info->flags,
Chris Masond3977122009-01-05 21:25:51 -05005514 (unsigned long long)(info->total_bytes - info->bytes_used -
Josef Bacik9ed74f22009-09-11 16:12:44 -04005515 info->bytes_pinned - info->bytes_reserved -
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005516 info->bytes_readonly),
Chris Masond3977122009-01-05 21:25:51 -05005517 (info->full) ? "" : "not ");
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005518 printk(KERN_INFO "space_info total=%llu, used=%llu, pinned=%llu, "
5519 "reserved=%llu, may_use=%llu, readonly=%llu\n",
Joel Becker21380932009-04-21 12:38:29 -07005520 (unsigned long long)info->total_bytes,
Josef Bacik9ed74f22009-09-11 16:12:44 -04005521 (unsigned long long)info->bytes_used,
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005522 (unsigned long long)info->bytes_pinned,
5523 (unsigned long long)info->bytes_reserved,
5524 (unsigned long long)info->bytes_may_use,
5525 (unsigned long long)info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005526 spin_unlock(&info->lock);
5527
5528 if (!dump_block_groups)
5529 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005530
Josef Bacik80eb2342008-10-29 14:49:05 -04005531 down_read(&info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04005532again:
5533 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04005534 spin_lock(&cache->lock);
Chris Masond3977122009-01-05 21:25:51 -05005535 printk(KERN_INFO "block group %llu has %llu bytes, %llu used "
5536 "%llu pinned %llu reserved\n",
5537 (unsigned long long)cache->key.objectid,
5538 (unsigned long long)cache->key.offset,
5539 (unsigned long long)btrfs_block_group_used(&cache->item),
5540 (unsigned long long)cache->pinned,
5541 (unsigned long long)cache->reserved);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005542 btrfs_dump_free_space(cache, bytes);
5543 spin_unlock(&cache->lock);
5544 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04005545 if (++index < BTRFS_NR_RAID_TYPES)
5546 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04005547 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005548}
Zheng Yane8569812008-09-26 10:05:48 -04005549
Yan Zheng11833d62009-09-11 16:11:19 -04005550int btrfs_reserve_extent(struct btrfs_trans_handle *trans,
5551 struct btrfs_root *root,
5552 u64 num_bytes, u64 min_alloc_size,
5553 u64 empty_size, u64 hint_byte,
5554 u64 search_end, struct btrfs_key *ins,
5555 u64 data)
Chris Masonfec577f2007-02-26 10:40:21 -05005556{
5557 int ret;
Chris Masonfbdc7622007-05-30 10:22:12 -04005558 u64 search_start = 0;
Chris Mason925baed2008-06-25 16:01:30 -04005559
Josef Bacik6a632092009-02-20 11:00:09 -05005560 data = btrfs_get_alloc_profile(root, data);
Chris Mason98d20f62008-04-14 09:46:10 -04005561again:
Chris Mason0ef3e662008-05-24 14:04:53 -04005562 /*
5563 * the only place that sets empty_size is btrfs_realloc_node, which
5564 * is not called recursively on allocations
5565 */
Josef Bacik83d3c962009-12-07 21:45:59 +00005566 if (empty_size || root->ref_cows)
Chris Mason6324fbf2008-03-24 15:01:59 -04005567 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0e4f8f82011-04-15 16:05:44 -04005568 num_bytes + 2 * 1024 * 1024, data,
5569 CHUNK_ALLOC_NO_FORCE);
Chris Mason0b86a832008-03-24 15:01:56 -04005570
Chris Masondb945352007-10-15 16:15:53 -04005571 WARN_ON(num_bytes < root->sectorsize);
5572 ret = find_free_extent(trans, root, num_bytes, empty_size,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005573 search_start, search_end, hint_byte,
5574 ins, data);
Chris Mason3b951512008-04-17 11:29:12 -04005575
Chris Mason98d20f62008-04-14 09:46:10 -04005576 if (ret == -ENOSPC && num_bytes > min_alloc_size) {
5577 num_bytes = num_bytes >> 1;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005578 num_bytes = num_bytes & ~(root->sectorsize - 1);
Chris Mason98d20f62008-04-14 09:46:10 -04005579 num_bytes = max(num_bytes, min_alloc_size);
Chris Mason0ef3e662008-05-24 14:04:53 -04005580 do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0e4f8f82011-04-15 16:05:44 -04005581 num_bytes, data, CHUNK_ALLOC_FORCE);
Chris Mason98d20f62008-04-14 09:46:10 -04005582 goto again;
5583 }
Chris Mason91435652011-02-16 13:10:41 -05005584 if (ret == -ENOSPC && btrfs_test_opt(root, ENOSPC_DEBUG)) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04005585 struct btrfs_space_info *sinfo;
5586
5587 sinfo = __find_space_info(root->fs_info, data);
Chris Masond3977122009-01-05 21:25:51 -05005588 printk(KERN_ERR "btrfs allocation failed flags %llu, "
5589 "wanted %llu\n", (unsigned long long)data,
5590 (unsigned long long)num_bytes);
Josef Bacik9ed74f22009-09-11 16:12:44 -04005591 dump_space_info(sinfo, num_bytes, 1);
Chris Mason925baed2008-06-25 16:01:30 -04005592 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04005593
liubo1abe9b82011-03-24 11:18:59 +00005594 trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset);
5595
Josef Bacik0f9dd462008-09-23 13:14:11 -04005596 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005597}
5598
Chris Masone688b7252011-10-31 20:52:39 -04005599static int __btrfs_free_reserved_extent(struct btrfs_root *root,
5600 u64 start, u64 len, int pin)
Chris Mason65b51a02008-08-01 15:11:20 -04005601{
Josef Bacik0f9dd462008-09-23 13:14:11 -04005602 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05005603 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005604
Josef Bacik0f9dd462008-09-23 13:14:11 -04005605 cache = btrfs_lookup_block_group(root->fs_info, start);
5606 if (!cache) {
Chris Masond3977122009-01-05 21:25:51 -05005607 printk(KERN_ERR "Unable to find block group for %llu\n",
5608 (unsigned long long)start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005609 return -ENOSPC;
5610 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05005611
Li Dongyang5378e602011-03-24 10:24:27 +00005612 if (btrfs_test_opt(root, DISCARD))
5613 ret = btrfs_discard_extent(root, start, len, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05005614
Chris Masone688b7252011-10-31 20:52:39 -04005615 if (pin)
5616 pin_down_extent(root, cache, start, len, 1);
5617 else {
5618 btrfs_add_free_space(cache, start, len);
5619 btrfs_update_reserved_bytes(cache, len, RESERVE_FREE);
5620 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04005621 btrfs_put_block_group(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04005622
liubo1abe9b82011-03-24 11:18:59 +00005623 trace_btrfs_reserved_extent_free(root, start, len);
5624
Chris Masone6dcd2d2008-07-17 12:53:50 -04005625 return ret;
5626}
5627
Chris Masone688b7252011-10-31 20:52:39 -04005628int btrfs_free_reserved_extent(struct btrfs_root *root,
5629 u64 start, u64 len)
5630{
5631 return __btrfs_free_reserved_extent(root, start, len, 0);
5632}
5633
5634int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root,
5635 u64 start, u64 len)
5636{
5637 return __btrfs_free_reserved_extent(root, start, len, 1);
5638}
5639
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005640static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
5641 struct btrfs_root *root,
5642 u64 parent, u64 root_objectid,
5643 u64 flags, u64 owner, u64 offset,
5644 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04005645{
5646 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005647 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005648 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005649 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04005650 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005651 struct extent_buffer *leaf;
5652 int type;
5653 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04005654
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005655 if (parent > 0)
5656 type = BTRFS_SHARED_DATA_REF_KEY;
5657 else
5658 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04005659
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005660 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05005661
5662 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00005663 if (!path)
5664 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05005665
Chris Masonb9473432009-03-13 11:00:37 -04005666 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005667 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
5668 ins, size);
Chris Masonccd467d2007-06-28 15:57:36 -04005669 BUG_ON(ret);
Josef Bacik0f9dd462008-09-23 13:14:11 -04005670
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005671 leaf = path->nodes[0];
5672 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05005673 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005674 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
5675 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
5676 btrfs_set_extent_flags(leaf, extent_item,
5677 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05005678
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005679 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
5680 btrfs_set_extent_inline_ref_type(leaf, iref, type);
5681 if (parent > 0) {
5682 struct btrfs_shared_data_ref *ref;
5683 ref = (struct btrfs_shared_data_ref *)(iref + 1);
5684 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
5685 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
5686 } else {
5687 struct btrfs_extent_data_ref *ref;
5688 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
5689 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
5690 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
5691 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
5692 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
5693 }
Chris Mason47e4bb92008-02-01 14:51:59 -05005694
5695 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05005696 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04005697
Yan, Zhengf0486c62010-05-16 10:46:25 -04005698 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
Chris Masonf5947062008-02-04 10:10:13 -05005699 if (ret) {
Chris Masond3977122009-01-05 21:25:51 -05005700 printk(KERN_ERR "btrfs update block group failed for %llu "
5701 "%llu\n", (unsigned long long)ins->objectid,
5702 (unsigned long long)ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05005703 BUG();
5704 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04005705 return ret;
5706}
5707
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005708static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
5709 struct btrfs_root *root,
5710 u64 parent, u64 root_objectid,
5711 u64 flags, struct btrfs_disk_key *key,
5712 int level, struct btrfs_key *ins)
5713{
5714 int ret;
5715 struct btrfs_fs_info *fs_info = root->fs_info;
5716 struct btrfs_extent_item *extent_item;
5717 struct btrfs_tree_block_info *block_info;
5718 struct btrfs_extent_inline_ref *iref;
5719 struct btrfs_path *path;
5720 struct extent_buffer *leaf;
5721 u32 size = sizeof(*extent_item) + sizeof(*block_info) + sizeof(*iref);
5722
5723 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07005724 if (!path)
5725 return -ENOMEM;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005726
5727 path->leave_spinning = 1;
5728 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
5729 ins, size);
5730 BUG_ON(ret);
5731
5732 leaf = path->nodes[0];
5733 extent_item = btrfs_item_ptr(leaf, path->slots[0],
5734 struct btrfs_extent_item);
5735 btrfs_set_extent_refs(leaf, extent_item, 1);
5736 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
5737 btrfs_set_extent_flags(leaf, extent_item,
5738 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
5739 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
5740
5741 btrfs_set_tree_block_key(leaf, block_info, key);
5742 btrfs_set_tree_block_level(leaf, block_info, level);
5743
5744 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
5745 if (parent > 0) {
5746 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
5747 btrfs_set_extent_inline_ref_type(leaf, iref,
5748 BTRFS_SHARED_BLOCK_REF_KEY);
5749 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
5750 } else {
5751 btrfs_set_extent_inline_ref_type(leaf, iref,
5752 BTRFS_TREE_BLOCK_REF_KEY);
5753 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
5754 }
5755
5756 btrfs_mark_buffer_dirty(leaf);
5757 btrfs_free_path(path);
5758
Yan, Zhengf0486c62010-05-16 10:46:25 -04005759 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005760 if (ret) {
5761 printk(KERN_ERR "btrfs update block group failed for %llu "
5762 "%llu\n", (unsigned long long)ins->objectid,
5763 (unsigned long long)ins->offset);
5764 BUG();
5765 }
5766 return ret;
5767}
5768
5769int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
5770 struct btrfs_root *root,
5771 u64 root_objectid, u64 owner,
5772 u64 offset, struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04005773{
5774 int ret;
Chris Mason1c2308f2008-09-23 13:14:13 -04005775
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005776 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04005777
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005778 ret = btrfs_add_delayed_data_ref(trans, ins->objectid, ins->offset,
5779 0, root_objectid, owner, offset,
5780 BTRFS_ADD_DELAYED_EXTENT, NULL);
Chris Masone6dcd2d2008-07-17 12:53:50 -04005781 return ret;
5782}
Chris Masone02119d2008-09-05 16:13:11 -04005783
5784/*
5785 * this is used by the tree logging recovery code. It records that
5786 * an extent has been allocated and makes sure to clear the free
5787 * space cache bits as well
5788 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005789int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
5790 struct btrfs_root *root,
5791 u64 root_objectid, u64 owner, u64 offset,
5792 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04005793{
5794 int ret;
5795 struct btrfs_block_group_cache *block_group;
Yan Zheng11833d62009-09-11 16:11:19 -04005796 struct btrfs_caching_control *caching_ctl;
5797 u64 start = ins->objectid;
5798 u64 num_bytes = ins->offset;
Chris Masone02119d2008-09-05 16:13:11 -04005799
Chris Masone02119d2008-09-05 16:13:11 -04005800 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
Josef Bacikb8399de2010-12-08 09:15:11 -05005801 cache_block_group(block_group, trans, NULL, 0);
Yan Zheng11833d62009-09-11 16:11:19 -04005802 caching_ctl = get_caching_control(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04005803
Yan Zheng11833d62009-09-11 16:11:19 -04005804 if (!caching_ctl) {
5805 BUG_ON(!block_group_cache_done(block_group));
5806 ret = btrfs_remove_free_space(block_group, start, num_bytes);
5807 BUG_ON(ret);
5808 } else {
5809 mutex_lock(&caching_ctl->mutex);
5810
5811 if (start >= caching_ctl->progress) {
5812 ret = add_excluded_extent(root, start, num_bytes);
5813 BUG_ON(ret);
5814 } else if (start + num_bytes <= caching_ctl->progress) {
5815 ret = btrfs_remove_free_space(block_group,
5816 start, num_bytes);
5817 BUG_ON(ret);
5818 } else {
5819 num_bytes = caching_ctl->progress - start;
5820 ret = btrfs_remove_free_space(block_group,
5821 start, num_bytes);
5822 BUG_ON(ret);
5823
5824 start = caching_ctl->progress;
5825 num_bytes = ins->objectid + ins->offset -
5826 caching_ctl->progress;
5827 ret = add_excluded_extent(root, start, num_bytes);
5828 BUG_ON(ret);
5829 }
5830
5831 mutex_unlock(&caching_ctl->mutex);
5832 put_caching_control(caching_ctl);
5833 }
5834
Josef Bacikfb25e912011-07-26 17:00:46 -04005835 ret = btrfs_update_reserved_bytes(block_group, ins->offset,
5836 RESERVE_ALLOC_NO_ACCOUNT);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005837 BUG_ON(ret);
Chris Masonfa9c0d792009-04-03 09:47:43 -04005838 btrfs_put_block_group(block_group);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005839 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
5840 0, owner, offset, ins, 1);
Chris Masone02119d2008-09-05 16:13:11 -04005841 return ret;
5842}
5843
Chris Mason65b51a02008-08-01 15:11:20 -04005844struct extent_buffer *btrfs_init_new_buffer(struct btrfs_trans_handle *trans,
5845 struct btrfs_root *root,
Chris Mason4008c042009-02-12 14:09:45 -05005846 u64 bytenr, u32 blocksize,
5847 int level)
Chris Mason65b51a02008-08-01 15:11:20 -04005848{
5849 struct extent_buffer *buf;
5850
5851 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
5852 if (!buf)
5853 return ERR_PTR(-ENOMEM);
5854 btrfs_set_header_generation(buf, trans->transid);
Chris Mason85d4e462011-07-26 16:11:19 -04005855 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04005856 btrfs_tree_lock(buf);
5857 clean_tree_block(trans, root, buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05005858
5859 btrfs_set_lock_blocking(buf);
Chris Mason65b51a02008-08-01 15:11:20 -04005860 btrfs_set_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05005861
Chris Masond0c803c2008-09-11 16:17:57 -04005862 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +00005863 /*
5864 * we allow two log transactions at a time, use different
5865 * EXENT bit to differentiate dirty pages.
5866 */
5867 if (root->log_transid % 2 == 0)
5868 set_extent_dirty(&root->dirty_log_pages, buf->start,
5869 buf->start + buf->len - 1, GFP_NOFS);
5870 else
5871 set_extent_new(&root->dirty_log_pages, buf->start,
5872 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond0c803c2008-09-11 16:17:57 -04005873 } else {
5874 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
5875 buf->start + buf->len - 1, GFP_NOFS);
5876 }
Chris Mason65b51a02008-08-01 15:11:20 -04005877 trans->blocks_used++;
Chris Masonb4ce94d2009-02-04 09:25:08 -05005878 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04005879 return buf;
5880}
5881
Yan, Zhengf0486c62010-05-16 10:46:25 -04005882static struct btrfs_block_rsv *
5883use_block_rsv(struct btrfs_trans_handle *trans,
5884 struct btrfs_root *root, u32 blocksize)
5885{
5886 struct btrfs_block_rsv *block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00005887 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005888 int ret;
5889
5890 block_rsv = get_block_rsv(trans, root);
5891
5892 if (block_rsv->size == 0) {
Josef Bacik36ba0222011-10-18 12:15:48 -04005893 ret = reserve_metadata_bytes(root, block_rsv, blocksize, 0);
Josef Bacik68a82272011-01-24 21:43:20 +00005894 /*
5895 * If we couldn't reserve metadata bytes try and use some from
5896 * the global reserve.
5897 */
5898 if (ret && block_rsv != global_rsv) {
5899 ret = block_rsv_use_bytes(global_rsv, blocksize);
5900 if (!ret)
5901 return global_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005902 return ERR_PTR(ret);
Josef Bacik68a82272011-01-24 21:43:20 +00005903 } else if (ret) {
5904 return ERR_PTR(ret);
5905 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005906 return block_rsv;
5907 }
5908
5909 ret = block_rsv_use_bytes(block_rsv, blocksize);
5910 if (!ret)
5911 return block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00005912 if (ret) {
David Sterbadff51cd2011-06-14 12:52:17 +02005913 static DEFINE_RATELIMIT_STATE(_rs,
5914 DEFAULT_RATELIMIT_INTERVAL,
5915 /*DEFAULT_RATELIMIT_BURST*/ 2);
5916 if (__ratelimit(&_rs)) {
5917 printk(KERN_DEBUG "btrfs: block rsv returned %d\n", ret);
5918 WARN_ON(1);
5919 }
Josef Bacik36ba0222011-10-18 12:15:48 -04005920 ret = reserve_metadata_bytes(root, block_rsv, blocksize, 0);
Josef Bacik68a82272011-01-24 21:43:20 +00005921 if (!ret) {
Josef Bacik68a82272011-01-24 21:43:20 +00005922 return block_rsv;
5923 } else if (ret && block_rsv != global_rsv) {
5924 ret = block_rsv_use_bytes(global_rsv, blocksize);
5925 if (!ret)
5926 return global_rsv;
5927 }
5928 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005929
Yan, Zhengf0486c62010-05-16 10:46:25 -04005930 return ERR_PTR(-ENOSPC);
5931}
5932
5933static void unuse_block_rsv(struct btrfs_block_rsv *block_rsv, u32 blocksize)
5934{
5935 block_rsv_add_bytes(block_rsv, blocksize, 0);
5936 block_rsv_release_bytes(block_rsv, NULL, 0);
5937}
5938
Chris Masonfec577f2007-02-26 10:40:21 -05005939/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04005940 * finds a free extent and does all the dirty work required for allocation
5941 * returns the key for the extent through ins, and a tree buffer for
5942 * the first block of the extent through buf.
5943 *
Chris Masonfec577f2007-02-26 10:40:21 -05005944 * returns the tree buffer or NULL.
5945 */
Chris Mason5f39d392007-10-15 16:14:19 -04005946struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005947 struct btrfs_root *root, u32 blocksize,
5948 u64 parent, u64 root_objectid,
5949 struct btrfs_disk_key *key, int level,
5950 u64 hint, u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05005951{
Chris Masone2fa7222007-03-12 16:22:34 -04005952 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005953 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04005954 struct extent_buffer *buf;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005955 u64 flags = 0;
5956 int ret;
Chris Masonfec577f2007-02-26 10:40:21 -05005957
Yan, Zhengf0486c62010-05-16 10:46:25 -04005958
5959 block_rsv = use_block_rsv(trans, root, blocksize);
5960 if (IS_ERR(block_rsv))
5961 return ERR_CAST(block_rsv);
5962
5963 ret = btrfs_reserve_extent(trans, root, blocksize, blocksize,
5964 empty_size, hint, (u64)-1, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05005965 if (ret) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005966 unuse_block_rsv(block_rsv, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04005967 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05005968 }
Chris Mason55c69072008-01-09 15:55:33 -05005969
Chris Mason4008c042009-02-12 14:09:45 -05005970 buf = btrfs_init_new_buffer(trans, root, ins.objectid,
5971 blocksize, level);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005972 BUG_ON(IS_ERR(buf));
5973
5974 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
5975 if (parent == 0)
5976 parent = ins.objectid;
5977 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
5978 } else
5979 BUG_ON(parent > 0);
5980
5981 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
5982 struct btrfs_delayed_extent_op *extent_op;
5983 extent_op = kmalloc(sizeof(*extent_op), GFP_NOFS);
5984 BUG_ON(!extent_op);
5985 if (key)
5986 memcpy(&extent_op->key, key, sizeof(extent_op->key));
5987 else
5988 memset(&extent_op->key, 0, sizeof(extent_op->key));
5989 extent_op->flags_to_set = flags;
5990 extent_op->update_key = 1;
5991 extent_op->update_flags = 1;
5992 extent_op->is_data = 0;
5993
5994 ret = btrfs_add_delayed_tree_ref(trans, ins.objectid,
5995 ins.offset, parent, root_objectid,
5996 level, BTRFS_ADD_DELAYED_EXTENT,
5997 extent_op);
5998 BUG_ON(ret);
5999 }
Chris Masonfec577f2007-02-26 10:40:21 -05006000 return buf;
6001}
Chris Masona28ec192007-03-06 20:08:01 -05006002
Yan Zheng2c47e6052009-06-27 21:07:35 -04006003struct walk_control {
6004 u64 refs[BTRFS_MAX_LEVEL];
6005 u64 flags[BTRFS_MAX_LEVEL];
6006 struct btrfs_key update_progress;
6007 int stage;
6008 int level;
6009 int shared_level;
6010 int update_ref;
6011 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006012 int reada_slot;
6013 int reada_count;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006014};
6015
6016#define DROP_REFERENCE 1
6017#define UPDATE_BACKREF 2
6018
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006019static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
6020 struct btrfs_root *root,
6021 struct walk_control *wc,
6022 struct btrfs_path *path)
6023{
6024 u64 bytenr;
6025 u64 generation;
6026 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04006027 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006028 u32 nritems;
6029 u32 blocksize;
6030 struct btrfs_key key;
6031 struct extent_buffer *eb;
6032 int ret;
6033 int slot;
6034 int nread = 0;
6035
6036 if (path->slots[wc->level] < wc->reada_slot) {
6037 wc->reada_count = wc->reada_count * 2 / 3;
6038 wc->reada_count = max(wc->reada_count, 2);
6039 } else {
6040 wc->reada_count = wc->reada_count * 3 / 2;
6041 wc->reada_count = min_t(int, wc->reada_count,
6042 BTRFS_NODEPTRS_PER_BLOCK(root));
6043 }
6044
6045 eb = path->nodes[wc->level];
6046 nritems = btrfs_header_nritems(eb);
6047 blocksize = btrfs_level_size(root, wc->level - 1);
6048
6049 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
6050 if (nread >= wc->reada_count)
6051 break;
6052
6053 cond_resched();
6054 bytenr = btrfs_node_blockptr(eb, slot);
6055 generation = btrfs_node_ptr_generation(eb, slot);
6056
6057 if (slot == path->slots[wc->level])
6058 goto reada;
6059
6060 if (wc->stage == UPDATE_BACKREF &&
6061 generation <= root->root_key.offset)
6062 continue;
6063
Yan, Zheng94fcca92009-10-09 09:25:16 -04006064 /* We don't lock the tree block, it's OK to be racy here */
6065 ret = btrfs_lookup_extent_info(trans, root, bytenr, blocksize,
6066 &refs, &flags);
6067 BUG_ON(ret);
6068 BUG_ON(refs == 0);
6069
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006070 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006071 if (refs == 1)
6072 goto reada;
6073
Yan, Zheng94fcca92009-10-09 09:25:16 -04006074 if (wc->level == 1 &&
6075 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
6076 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006077 if (!wc->update_ref ||
6078 generation <= root->root_key.offset)
6079 continue;
6080 btrfs_node_key_to_cpu(eb, &key, slot);
6081 ret = btrfs_comp_cpu_keys(&key,
6082 &wc->update_progress);
6083 if (ret < 0)
6084 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04006085 } else {
6086 if (wc->level == 1 &&
6087 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
6088 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006089 }
6090reada:
6091 ret = readahead_tree_block(root, bytenr, blocksize,
6092 generation);
6093 if (ret)
6094 break;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006095 nread++;
6096 }
6097 wc->reada_slot = slot;
6098}
6099
Chris Mason9aca1d52007-03-13 11:09:37 -04006100/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04006101 * hepler to process tree block while walking down the tree.
6102 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04006103 * when wc->stage == UPDATE_BACKREF, this function updates
6104 * back refs for pointers in the block.
6105 *
6106 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04006107 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04006108static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
6109 struct btrfs_root *root,
6110 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04006111 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04006112{
6113 int level = wc->level;
6114 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04006115 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
6116 int ret;
6117
6118 if (wc->stage == UPDATE_BACKREF &&
6119 btrfs_header_owner(eb) != root->root_key.objectid)
6120 return 1;
6121
6122 /*
6123 * when reference count of tree block is 1, it won't increase
6124 * again. once full backref flag is set, we never clear it.
6125 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04006126 if (lookup_info &&
6127 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
6128 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006129 BUG_ON(!path->locks[level]);
6130 ret = btrfs_lookup_extent_info(trans, root,
6131 eb->start, eb->len,
6132 &wc->refs[level],
6133 &wc->flags[level]);
6134 BUG_ON(ret);
6135 BUG_ON(wc->refs[level] == 0);
6136 }
6137
Yan Zheng2c47e6052009-06-27 21:07:35 -04006138 if (wc->stage == DROP_REFERENCE) {
6139 if (wc->refs[level] > 1)
6140 return 1;
6141
6142 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04006143 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006144 path->locks[level] = 0;
6145 }
6146 return 0;
6147 }
6148
6149 /* wc->stage == UPDATE_BACKREF */
6150 if (!(wc->flags[level] & flag)) {
6151 BUG_ON(!path->locks[level]);
6152 ret = btrfs_inc_ref(trans, root, eb, 1);
6153 BUG_ON(ret);
6154 ret = btrfs_dec_ref(trans, root, eb, 0);
6155 BUG_ON(ret);
6156 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
6157 eb->len, flag, 0);
6158 BUG_ON(ret);
6159 wc->flags[level] |= flag;
6160 }
6161
6162 /*
6163 * the block is shared by multiple trees, so it's not good to
6164 * keep the tree lock
6165 */
6166 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04006167 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006168 path->locks[level] = 0;
6169 }
6170 return 0;
6171}
6172
6173/*
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006174 * hepler to process tree block pointer.
6175 *
6176 * when wc->stage == DROP_REFERENCE, this function checks
6177 * reference count of the block pointed to. if the block
6178 * is shared and we need update back refs for the subtree
6179 * rooted at the block, this function changes wc->stage to
6180 * UPDATE_BACKREF. if the block is shared and there is no
6181 * need to update back, this function drops the reference
6182 * to the block.
6183 *
6184 * NOTE: return value 1 means we should stop walking down.
6185 */
6186static noinline int do_walk_down(struct btrfs_trans_handle *trans,
6187 struct btrfs_root *root,
6188 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04006189 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006190{
6191 u64 bytenr;
6192 u64 generation;
6193 u64 parent;
6194 u32 blocksize;
6195 struct btrfs_key key;
6196 struct extent_buffer *next;
6197 int level = wc->level;
6198 int reada = 0;
6199 int ret = 0;
6200
6201 generation = btrfs_node_ptr_generation(path->nodes[level],
6202 path->slots[level]);
6203 /*
6204 * if the lower level block was created before the snapshot
6205 * was created, we know there is no need to update back refs
6206 * for the subtree
6207 */
6208 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04006209 generation <= root->root_key.offset) {
6210 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006211 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04006212 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006213
6214 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
6215 blocksize = btrfs_level_size(root, level - 1);
6216
6217 next = btrfs_find_tree_block(root, bytenr, blocksize);
6218 if (!next) {
6219 next = btrfs_find_create_tree_block(root, bytenr, blocksize);
Miao Xie90d2c51d2010-03-25 12:37:12 +00006220 if (!next)
6221 return -ENOMEM;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006222 reada = 1;
6223 }
6224 btrfs_tree_lock(next);
6225 btrfs_set_lock_blocking(next);
6226
Yan, Zheng94fcca92009-10-09 09:25:16 -04006227 ret = btrfs_lookup_extent_info(trans, root, bytenr, blocksize,
6228 &wc->refs[level - 1],
6229 &wc->flags[level - 1]);
6230 BUG_ON(ret);
6231 BUG_ON(wc->refs[level - 1] == 0);
6232 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006233
Yan, Zheng94fcca92009-10-09 09:25:16 -04006234 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006235 if (wc->refs[level - 1] > 1) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04006236 if (level == 1 &&
6237 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
6238 goto skip;
6239
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006240 if (!wc->update_ref ||
6241 generation <= root->root_key.offset)
6242 goto skip;
6243
6244 btrfs_node_key_to_cpu(path->nodes[level], &key,
6245 path->slots[level]);
6246 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
6247 if (ret < 0)
6248 goto skip;
6249
6250 wc->stage = UPDATE_BACKREF;
6251 wc->shared_level = level - 1;
6252 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04006253 } else {
6254 if (level == 1 &&
6255 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
6256 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006257 }
6258
6259 if (!btrfs_buffer_uptodate(next, generation)) {
6260 btrfs_tree_unlock(next);
6261 free_extent_buffer(next);
6262 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04006263 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006264 }
6265
6266 if (!next) {
6267 if (reada && level == 1)
6268 reada_walk_down(trans, root, wc, path);
6269 next = read_tree_block(root, bytenr, blocksize, generation);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00006270 if (!next)
6271 return -EIO;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006272 btrfs_tree_lock(next);
6273 btrfs_set_lock_blocking(next);
6274 }
6275
6276 level--;
6277 BUG_ON(level != btrfs_header_level(next));
6278 path->nodes[level] = next;
6279 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04006280 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006281 wc->level = level;
6282 if (wc->level == 1)
6283 wc->reada_slot = 0;
6284 return 0;
6285skip:
6286 wc->refs[level - 1] = 0;
6287 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04006288 if (wc->stage == DROP_REFERENCE) {
6289 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
6290 parent = path->nodes[level]->start;
6291 } else {
6292 BUG_ON(root->root_key.objectid !=
6293 btrfs_header_owner(path->nodes[level]));
6294 parent = 0;
6295 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006296
Yan, Zheng94fcca92009-10-09 09:25:16 -04006297 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
6298 root->root_key.objectid, level - 1, 0);
6299 BUG_ON(ret);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006300 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006301 btrfs_tree_unlock(next);
6302 free_extent_buffer(next);
Yan, Zheng94fcca92009-10-09 09:25:16 -04006303 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006304 return 1;
6305}
6306
6307/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04006308 * hepler to process tree block while walking up the tree.
6309 *
6310 * when wc->stage == DROP_REFERENCE, this function drops
6311 * reference count on the block.
6312 *
6313 * when wc->stage == UPDATE_BACKREF, this function changes
6314 * wc->stage back to DROP_REFERENCE if we changed wc->stage
6315 * to UPDATE_BACKREF previously while processing the block.
6316 *
6317 * NOTE: return value 1 means we should stop walking up.
6318 */
6319static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
6320 struct btrfs_root *root,
6321 struct btrfs_path *path,
6322 struct walk_control *wc)
6323{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006324 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006325 int level = wc->level;
6326 struct extent_buffer *eb = path->nodes[level];
6327 u64 parent = 0;
6328
6329 if (wc->stage == UPDATE_BACKREF) {
6330 BUG_ON(wc->shared_level < level);
6331 if (level < wc->shared_level)
6332 goto out;
6333
Yan Zheng2c47e6052009-06-27 21:07:35 -04006334 ret = find_next_key(path, level + 1, &wc->update_progress);
6335 if (ret > 0)
6336 wc->update_ref = 0;
6337
6338 wc->stage = DROP_REFERENCE;
6339 wc->shared_level = -1;
6340 path->slots[level] = 0;
6341
6342 /*
6343 * check reference count again if the block isn't locked.
6344 * we should start walking down the tree again if reference
6345 * count is one.
6346 */
6347 if (!path->locks[level]) {
6348 BUG_ON(level == 0);
6349 btrfs_tree_lock(eb);
6350 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04006351 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006352
6353 ret = btrfs_lookup_extent_info(trans, root,
6354 eb->start, eb->len,
6355 &wc->refs[level],
6356 &wc->flags[level]);
6357 BUG_ON(ret);
6358 BUG_ON(wc->refs[level] == 0);
6359 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04006360 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006361 return 1;
6362 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006363 }
6364 }
6365
6366 /* wc->stage == DROP_REFERENCE */
6367 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
6368
6369 if (wc->refs[level] == 1) {
6370 if (level == 0) {
6371 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6372 ret = btrfs_dec_ref(trans, root, eb, 1);
6373 else
6374 ret = btrfs_dec_ref(trans, root, eb, 0);
6375 BUG_ON(ret);
6376 }
6377 /* make block locked assertion in clean_tree_block happy */
6378 if (!path->locks[level] &&
6379 btrfs_header_generation(eb) == trans->transid) {
6380 btrfs_tree_lock(eb);
6381 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04006382 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006383 }
6384 clean_tree_block(trans, root, eb);
6385 }
6386
6387 if (eb == root->node) {
6388 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6389 parent = eb->start;
6390 else
6391 BUG_ON(root->root_key.objectid !=
6392 btrfs_header_owner(eb));
6393 } else {
6394 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
6395 parent = path->nodes[level + 1]->start;
6396 else
6397 BUG_ON(root->root_key.objectid !=
6398 btrfs_header_owner(path->nodes[level + 1]));
6399 }
6400
Yan, Zhengf0486c62010-05-16 10:46:25 -04006401 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006402out:
6403 wc->refs[level] = 0;
6404 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006405 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006406}
6407
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006408static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
6409 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04006410 struct btrfs_path *path,
6411 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04006412{
Yan Zheng2c47e6052009-06-27 21:07:35 -04006413 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04006414 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006415 int ret;
6416
Yan Zheng2c47e6052009-06-27 21:07:35 -04006417 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04006418 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006419 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04006420 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006421
Yan Zheng2c47e6052009-06-27 21:07:35 -04006422 if (level == 0)
6423 break;
6424
Yan, Zheng7a7965f2010-02-01 02:41:17 +00006425 if (path->slots[level] >=
6426 btrfs_header_nritems(path->nodes[level]))
6427 break;
6428
Yan, Zheng94fcca92009-10-09 09:25:16 -04006429 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006430 if (ret > 0) {
6431 path->slots[level]++;
6432 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00006433 } else if (ret < 0)
6434 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006435 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006436 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04006437 return 0;
6438}
6439
Chris Masond3977122009-01-05 21:25:51 -05006440static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05006441 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04006442 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04006443 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05006444{
Yan Zheng2c47e6052009-06-27 21:07:35 -04006445 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05006446 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04006447
Yan Zheng2c47e6052009-06-27 21:07:35 -04006448 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
6449 while (level < max_level && path->nodes[level]) {
6450 wc->level = level;
6451 if (path->slots[level] + 1 <
6452 btrfs_header_nritems(path->nodes[level])) {
6453 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05006454 return 0;
6455 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006456 ret = walk_up_proc(trans, root, path, wc);
6457 if (ret > 0)
6458 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05006459
Yan Zheng2c47e6052009-06-27 21:07:35 -04006460 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04006461 btrfs_tree_unlock_rw(path->nodes[level],
6462 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006463 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006464 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006465 free_extent_buffer(path->nodes[level]);
6466 path->nodes[level] = NULL;
6467 level++;
Chris Mason20524f02007-03-10 06:35:47 -05006468 }
6469 }
6470 return 1;
6471}
6472
Chris Mason9aca1d52007-03-13 11:09:37 -04006473/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04006474 * drop a subvolume tree.
6475 *
6476 * this function traverses the tree freeing any blocks that only
6477 * referenced by the tree.
6478 *
6479 * when a shared tree block is found. this function decreases its
6480 * reference count by one. if update_ref is true, this function
6481 * also make sure backrefs for the shared block and all lower level
6482 * blocks are properly updated.
Chris Mason9aca1d52007-03-13 11:09:37 -04006483 */
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00006484void btrfs_drop_snapshot(struct btrfs_root *root,
6485 struct btrfs_block_rsv *block_rsv, int update_ref)
Chris Mason20524f02007-03-10 06:35:47 -05006486{
Chris Mason5caf2a02007-04-02 11:20:42 -04006487 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006488 struct btrfs_trans_handle *trans;
6489 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04006490 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006491 struct walk_control *wc;
6492 struct btrfs_key key;
6493 int err = 0;
6494 int ret;
6495 int level;
Chris Mason20524f02007-03-10 06:35:47 -05006496
Chris Mason5caf2a02007-04-02 11:20:42 -04006497 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00006498 if (!path) {
6499 err = -ENOMEM;
6500 goto out;
6501 }
Chris Mason20524f02007-03-10 06:35:47 -05006502
Yan Zheng2c47e6052009-06-27 21:07:35 -04006503 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07006504 if (!wc) {
6505 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00006506 err = -ENOMEM;
6507 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07006508 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006509
Yan, Zhenga22285a2010-05-16 10:48:46 -04006510 trans = btrfs_start_transaction(tree_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00006511 BUG_ON(IS_ERR(trans));
6512
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006513 if (block_rsv)
6514 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006515
Chris Mason9f3a7422007-08-07 15:52:19 -04006516 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006517 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006518 path->nodes[level] = btrfs_lock_root_node(root);
6519 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04006520 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04006521 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006522 memset(&wc->update_progress, 0,
6523 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04006524 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04006525 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006526 memcpy(&wc->update_progress, &key,
6527 sizeof(wc->update_progress));
6528
Chris Mason6702ed42007-08-07 16:15:09 -04006529 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006530 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04006531 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006532 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6533 path->lowest_level = 0;
6534 if (ret < 0) {
6535 err = ret;
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00006536 goto out_free;
Chris Mason9f3a7422007-08-07 15:52:19 -04006537 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006538 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006539
Chris Mason7d9eb122008-07-08 14:19:17 -04006540 /*
6541 * unlock our path, this is safe because only this
6542 * function is allowed to delete this snapshot
6543 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006544 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04006545
Yan Zheng2c47e6052009-06-27 21:07:35 -04006546 level = btrfs_header_level(root->node);
6547 while (1) {
6548 btrfs_tree_lock(path->nodes[level]);
6549 btrfs_set_lock_blocking(path->nodes[level]);
6550
6551 ret = btrfs_lookup_extent_info(trans, root,
6552 path->nodes[level]->start,
6553 path->nodes[level]->len,
6554 &wc->refs[level],
6555 &wc->flags[level]);
6556 BUG_ON(ret);
6557 BUG_ON(wc->refs[level] == 0);
6558
6559 if (level == root_item->drop_level)
6560 break;
6561
6562 btrfs_tree_unlock(path->nodes[level]);
6563 WARN_ON(wc->refs[level] != 1);
6564 level--;
6565 }
6566 }
6567
6568 wc->level = level;
6569 wc->shared_level = -1;
6570 wc->stage = DROP_REFERENCE;
6571 wc->update_ref = update_ref;
6572 wc->keep_locks = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006573 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006574
6575 while (1) {
6576 ret = walk_down_tree(trans, root, path, wc);
6577 if (ret < 0) {
6578 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04006579 break;
6580 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006581
6582 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
6583 if (ret < 0) {
6584 err = ret;
6585 break;
6586 }
6587
6588 if (ret > 0) {
6589 BUG_ON(wc->stage != DROP_REFERENCE);
6590 break;
6591 }
6592
6593 if (wc->stage == DROP_REFERENCE) {
6594 level = wc->level;
6595 btrfs_node_key(path->nodes[level],
6596 &root_item->drop_progress,
6597 path->slots[level]);
6598 root_item->drop_level = level;
6599 }
6600
6601 BUG_ON(wc->level == 0);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006602 if (btrfs_should_end_transaction(trans, tree_root)) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006603 ret = btrfs_update_root(trans, tree_root,
6604 &root->root_key,
6605 root_item);
6606 BUG_ON(ret);
6607
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006608 btrfs_end_transaction_throttle(trans, tree_root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006609 trans = btrfs_start_transaction(tree_root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00006610 BUG_ON(IS_ERR(trans));
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006611 if (block_rsv)
6612 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04006613 }
Chris Mason20524f02007-03-10 06:35:47 -05006614 }
David Sterbab3b4aa72011-04-21 01:20:15 +02006615 btrfs_release_path(path);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006616 BUG_ON(err);
6617
6618 ret = btrfs_del_root(trans, tree_root, &root->root_key);
6619 BUG_ON(ret);
6620
Yan, Zheng76dda932009-09-21 16:00:26 -04006621 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
6622 ret = btrfs_find_last_root(tree_root, root->root_key.objectid,
6623 NULL, NULL);
6624 BUG_ON(ret < 0);
6625 if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05006626 /* if we fail to delete the orphan item this time
6627 * around, it'll get picked up the next time.
6628 *
6629 * The most common failure here is just -ENOENT.
6630 */
6631 btrfs_del_orphan_item(trans, tree_root,
6632 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04006633 }
6634 }
6635
6636 if (root->in_radix) {
6637 btrfs_free_fs_root(tree_root->fs_info, root);
6638 } else {
6639 free_extent_buffer(root->node);
6640 free_extent_buffer(root->commit_root);
6641 kfree(root);
6642 }
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00006643out_free:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04006644 btrfs_end_transaction_throttle(trans, tree_root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04006645 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04006646 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00006647out:
6648 if (err)
6649 btrfs_std_error(root->fs_info, err);
6650 return;
Chris Mason20524f02007-03-10 06:35:47 -05006651}
Chris Mason9078a3e2007-04-26 16:46:15 -04006652
Yan Zheng2c47e6052009-06-27 21:07:35 -04006653/*
6654 * drop subtree rooted at tree block 'node'.
6655 *
6656 * NOTE: this function will unlock and release tree block 'node'
6657 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04006658int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
6659 struct btrfs_root *root,
6660 struct extent_buffer *node,
6661 struct extent_buffer *parent)
6662{
6663 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006664 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006665 int level;
6666 int parent_level;
6667 int ret = 0;
6668 int wret;
6669
Yan Zheng2c47e6052009-06-27 21:07:35 -04006670 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
6671
Yan Zhengf82d02d2008-10-29 14:49:05 -04006672 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00006673 if (!path)
6674 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006675
Yan Zheng2c47e6052009-06-27 21:07:35 -04006676 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00006677 if (!wc) {
6678 btrfs_free_path(path);
6679 return -ENOMEM;
6680 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04006681
Chris Masonb9447ef2009-03-09 11:45:38 -04006682 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006683 parent_level = btrfs_header_level(parent);
6684 extent_buffer_get(parent);
6685 path->nodes[parent_level] = parent;
6686 path->slots[parent_level] = btrfs_header_nritems(parent);
6687
Chris Masonb9447ef2009-03-09 11:45:38 -04006688 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006689 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006690 path->nodes[level] = node;
6691 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04006692 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006693
6694 wc->refs[parent_level] = 1;
6695 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
6696 wc->level = level;
6697 wc->shared_level = -1;
6698 wc->stage = DROP_REFERENCE;
6699 wc->update_ref = 0;
6700 wc->keep_locks = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04006701 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006702
6703 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04006704 wret = walk_down_tree(trans, root, path, wc);
6705 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04006706 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04006707 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04006708 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04006709
Yan Zheng2c47e6052009-06-27 21:07:35 -04006710 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006711 if (wret < 0)
6712 ret = wret;
6713 if (wret != 0)
6714 break;
6715 }
6716
Yan Zheng2c47e6052009-06-27 21:07:35 -04006717 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04006718 btrfs_free_path(path);
6719 return ret;
6720}
6721
Chris Masonec44a352008-04-28 15:29:52 -04006722static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
6723{
6724 u64 num_devices;
6725 u64 stripped = BTRFS_BLOCK_GROUP_RAID0 |
6726 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
6727
Chris Masoncd02dca2010-12-13 14:56:23 -05006728 /*
6729 * we add in the count of missing devices because we want
6730 * to make sure that any RAID levels on a degraded FS
6731 * continue to be honored.
6732 */
6733 num_devices = root->fs_info->fs_devices->rw_devices +
6734 root->fs_info->fs_devices->missing_devices;
6735
Chris Masonec44a352008-04-28 15:29:52 -04006736 if (num_devices == 1) {
6737 stripped |= BTRFS_BLOCK_GROUP_DUP;
6738 stripped = flags & ~stripped;
6739
6740 /* turn raid0 into single device chunks */
6741 if (flags & BTRFS_BLOCK_GROUP_RAID0)
6742 return stripped;
6743
6744 /* turn mirroring into duplication */
6745 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
6746 BTRFS_BLOCK_GROUP_RAID10))
6747 return stripped | BTRFS_BLOCK_GROUP_DUP;
6748 return flags;
6749 } else {
6750 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04006751 if (flags & stripped)
6752 return flags;
6753
6754 stripped |= BTRFS_BLOCK_GROUP_DUP;
6755 stripped = flags & ~stripped;
6756
6757 /* switch duplicated blocks with raid1 */
6758 if (flags & BTRFS_BLOCK_GROUP_DUP)
6759 return stripped | BTRFS_BLOCK_GROUP_RAID1;
6760
6761 /* turn single device chunks into raid0 */
6762 return stripped | BTRFS_BLOCK_GROUP_RAID0;
6763 }
6764 return flags;
6765}
6766
Miao Xie199c36e2011-07-15 10:34:36 +00006767static int set_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04006768{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006769 struct btrfs_space_info *sinfo = cache->space_info;
6770 u64 num_bytes;
Miao Xie199c36e2011-07-15 10:34:36 +00006771 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006772 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04006773
Chris Masonc286ac42008-07-22 23:06:41 -04006774
Miao Xie199c36e2011-07-15 10:34:36 +00006775 /*
6776 * We need some metadata space and system metadata space for
6777 * allocating chunks in some corner cases until we force to set
6778 * it to be readonly.
6779 */
6780 if ((sinfo->flags &
6781 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
6782 !force)
6783 min_allocable_bytes = 1 * 1024 * 1024;
6784 else
6785 min_allocable_bytes = 0;
6786
Yan, Zhengf0486c62010-05-16 10:46:25 -04006787 spin_lock(&sinfo->lock);
6788 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00006789
6790 if (cache->ro) {
6791 ret = 0;
6792 goto out;
6793 }
6794
Yan, Zhengf0486c62010-05-16 10:46:25 -04006795 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
6796 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04006797
Yan, Zhengf0486c62010-05-16 10:46:25 -04006798 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
Josef Bacik37be25b2011-08-05 10:25:38 -04006799 sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes +
6800 min_allocable_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04006801 sinfo->bytes_readonly += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006802 cache->ro = 1;
6803 ret = 0;
6804 }
WuBo61cfea92011-07-26 03:30:11 +00006805out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04006806 spin_unlock(&cache->lock);
6807 spin_unlock(&sinfo->lock);
6808 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04006809}
6810
Yan, Zhengf0486c62010-05-16 10:46:25 -04006811int btrfs_set_block_group_ro(struct btrfs_root *root,
6812 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006813
6814{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006815 struct btrfs_trans_handle *trans;
6816 u64 alloc_flags;
6817 int ret;
6818
6819 BUG_ON(cache->ro);
6820
Josef Bacik7a7eaa42011-04-13 12:54:33 -04006821 trans = btrfs_join_transaction(root);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006822 BUG_ON(IS_ERR(trans));
6823
6824 alloc_flags = update_block_group_flags(root, cache->flags);
6825 if (alloc_flags != cache->flags)
Chris Mason0e4f8f82011-04-15 16:05:44 -04006826 do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags,
6827 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006828
Miao Xie199c36e2011-07-15 10:34:36 +00006829 ret = set_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006830 if (!ret)
6831 goto out;
6832 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
Chris Mason0e4f8f82011-04-15 16:05:44 -04006833 ret = do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags,
6834 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006835 if (ret < 0)
6836 goto out;
Miao Xie199c36e2011-07-15 10:34:36 +00006837 ret = set_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006838out:
6839 btrfs_end_transaction(trans, root);
6840 return ret;
6841}
6842
Chris Masonc87f08c2011-02-16 13:57:04 -05006843int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
6844 struct btrfs_root *root, u64 type)
6845{
6846 u64 alloc_flags = get_alloc_profile(root, type);
Chris Mason0e4f8f82011-04-15 16:05:44 -04006847 return do_chunk_alloc(trans, root, 2 * 1024 * 1024, alloc_flags,
6848 CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05006849}
6850
Miao Xie6d07bce2011-01-05 10:07:31 +00006851/*
6852 * helper to account the unused space of all the readonly block group in the
6853 * list. takes mirrors into account.
6854 */
6855static u64 __btrfs_get_ro_block_group_free_space(struct list_head *groups_list)
6856{
6857 struct btrfs_block_group_cache *block_group;
6858 u64 free_bytes = 0;
6859 int factor;
6860
6861 list_for_each_entry(block_group, groups_list, list) {
6862 spin_lock(&block_group->lock);
6863
6864 if (!block_group->ro) {
6865 spin_unlock(&block_group->lock);
6866 continue;
6867 }
6868
6869 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
6870 BTRFS_BLOCK_GROUP_RAID10 |
6871 BTRFS_BLOCK_GROUP_DUP))
6872 factor = 2;
6873 else
6874 factor = 1;
6875
6876 free_bytes += (block_group->key.offset -
6877 btrfs_block_group_used(&block_group->item)) *
6878 factor;
6879
6880 spin_unlock(&block_group->lock);
6881 }
6882
6883 return free_bytes;
6884}
6885
6886/*
6887 * helper to account the unused space of all the readonly block group in the
6888 * space_info. takes mirrors into account.
6889 */
6890u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
6891{
6892 int i;
6893 u64 free_bytes = 0;
6894
6895 spin_lock(&sinfo->lock);
6896
6897 for(i = 0; i < BTRFS_NR_RAID_TYPES; i++)
6898 if (!list_empty(&sinfo->block_groups[i]))
6899 free_bytes += __btrfs_get_ro_block_group_free_space(
6900 &sinfo->block_groups[i]);
6901
6902 spin_unlock(&sinfo->lock);
6903
6904 return free_bytes;
6905}
6906
Yan, Zhengf0486c62010-05-16 10:46:25 -04006907int btrfs_set_block_group_rw(struct btrfs_root *root,
6908 struct btrfs_block_group_cache *cache)
6909{
6910 struct btrfs_space_info *sinfo = cache->space_info;
6911 u64 num_bytes;
6912
6913 BUG_ON(!cache->ro);
6914
6915 spin_lock(&sinfo->lock);
6916 spin_lock(&cache->lock);
6917 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
6918 cache->bytes_super - btrfs_block_group_used(&cache->item);
6919 sinfo->bytes_readonly -= num_bytes;
6920 cache->ro = 0;
6921 spin_unlock(&cache->lock);
6922 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006923 return 0;
6924}
6925
Josef Bacikba1bf482009-09-11 16:11:19 -04006926/*
6927 * checks to see if its even possible to relocate this block group.
6928 *
6929 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
6930 * ok to go ahead and try.
6931 */
6932int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04006933{
Zheng Yan1a40e232008-09-26 10:09:34 -04006934 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04006935 struct btrfs_space_info *space_info;
6936 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
6937 struct btrfs_device *device;
liubocdcb7252011-08-03 10:15:25 +00006938 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04006939 u64 dev_min = 1;
6940 u64 dev_nr = 0;
liubocdcb7252011-08-03 10:15:25 +00006941 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04006942 int full = 0;
6943 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05006944
Josef Bacikba1bf482009-09-11 16:11:19 -04006945 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04006946
Josef Bacikba1bf482009-09-11 16:11:19 -04006947 /* odd, couldn't find the block group, leave it alone */
6948 if (!block_group)
6949 return -1;
Chris Masonedbd8d42007-12-21 16:27:24 -05006950
liubocdcb7252011-08-03 10:15:25 +00006951 min_free = btrfs_block_group_used(&block_group->item);
6952
Josef Bacikba1bf482009-09-11 16:11:19 -04006953 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00006954 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04006955 goto out;
Chris Mason323da792008-05-09 11:46:48 -04006956
Josef Bacikba1bf482009-09-11 16:11:19 -04006957 space_info = block_group->space_info;
6958 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04006959
Josef Bacikba1bf482009-09-11 16:11:19 -04006960 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04006961
Josef Bacikba1bf482009-09-11 16:11:19 -04006962 /*
6963 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04006964 * relocate it unless we're able to allocate a new chunk below.
6965 *
6966 * Otherwise, we need to make sure we have room in the space to handle
6967 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04006968 */
Chris Mason7ce618d2009-09-22 14:48:44 -04006969 if ((space_info->total_bytes != block_group->key.offset) &&
liubocdcb7252011-08-03 10:15:25 +00006970 (space_info->bytes_used + space_info->bytes_reserved +
6971 space_info->bytes_pinned + space_info->bytes_readonly +
6972 min_free < space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04006973 spin_unlock(&space_info->lock);
6974 goto out;
6975 }
6976 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04006977
Josef Bacikba1bf482009-09-11 16:11:19 -04006978 /*
6979 * ok we don't have enough space, but maybe we have free space on our
6980 * devices to allocate new chunks for relocation, so loop through our
6981 * alloc devices and guess if we have enough space. However, if we
6982 * were marked as full, then we know there aren't enough chunks, and we
6983 * can just return.
6984 */
6985 ret = -1;
6986 if (full)
6987 goto out;
Chris Mason4313b392008-01-03 09:08:48 -05006988
liubocdcb7252011-08-03 10:15:25 +00006989 /*
6990 * index:
6991 * 0: raid10
6992 * 1: raid1
6993 * 2: dup
6994 * 3: raid0
6995 * 4: single
6996 */
6997 index = get_block_group_index(block_group);
6998 if (index == 0) {
6999 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04007000 /* Divide by 2 */
7001 min_free >>= 1;
liubocdcb7252011-08-03 10:15:25 +00007002 } else if (index == 1) {
7003 dev_min = 2;
7004 } else if (index == 2) {
Josef Bacik6719db62011-08-20 08:29:51 -04007005 /* Multiply by 2 */
7006 min_free <<= 1;
liubocdcb7252011-08-03 10:15:25 +00007007 } else if (index == 3) {
7008 dev_min = fs_devices->rw_devices;
Josef Bacik6719db62011-08-20 08:29:51 -04007009 do_div(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00007010 }
7011
Josef Bacikba1bf482009-09-11 16:11:19 -04007012 mutex_lock(&root->fs_info->chunk_mutex);
7013 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00007014 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04007015
Josef Bacikba1bf482009-09-11 16:11:19 -04007016 /*
7017 * check to make sure we can actually find a chunk with enough
7018 * space to fit our block group in.
7019 */
7020 if (device->total_bytes > device->bytes_used + min_free) {
7021 ret = find_free_dev_extent(NULL, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00007022 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04007023 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00007024 dev_nr++;
7025
7026 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05007027 break;
liubocdcb7252011-08-03 10:15:25 +00007028
Josef Bacikba1bf482009-09-11 16:11:19 -04007029 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05007030 }
Chris Masonedbd8d42007-12-21 16:27:24 -05007031 }
Josef Bacikba1bf482009-09-11 16:11:19 -04007032 mutex_unlock(&root->fs_info->chunk_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05007033out:
Josef Bacikba1bf482009-09-11 16:11:19 -04007034 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05007035 return ret;
7036}
7037
Christoph Hellwigb2950862008-12-02 09:54:17 -05007038static int find_first_block_group(struct btrfs_root *root,
7039 struct btrfs_path *path, struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04007040{
Chris Mason925baed2008-06-25 16:01:30 -04007041 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04007042 struct btrfs_key found_key;
7043 struct extent_buffer *leaf;
7044 int slot;
7045
7046 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
7047 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04007048 goto out;
7049
Chris Masond3977122009-01-05 21:25:51 -05007050 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04007051 slot = path->slots[0];
7052 leaf = path->nodes[0];
7053 if (slot >= btrfs_header_nritems(leaf)) {
7054 ret = btrfs_next_leaf(root, path);
7055 if (ret == 0)
7056 continue;
7057 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04007058 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04007059 break;
7060 }
7061 btrfs_item_key_to_cpu(leaf, &found_key, slot);
7062
7063 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04007064 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
7065 ret = 0;
7066 goto out;
7067 }
Chris Mason0b86a832008-03-24 15:01:56 -04007068 path->slots[0]++;
7069 }
Chris Mason925baed2008-06-25 16:01:30 -04007070out:
Chris Mason0b86a832008-03-24 15:01:56 -04007071 return ret;
7072}
7073
Josef Bacik0af3d002010-06-21 14:48:16 -04007074void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
7075{
7076 struct btrfs_block_group_cache *block_group;
7077 u64 last = 0;
7078
7079 while (1) {
7080 struct inode *inode;
7081
7082 block_group = btrfs_lookup_first_block_group(info, last);
7083 while (block_group) {
7084 spin_lock(&block_group->lock);
7085 if (block_group->iref)
7086 break;
7087 spin_unlock(&block_group->lock);
7088 block_group = next_block_group(info->tree_root,
7089 block_group);
7090 }
7091 if (!block_group) {
7092 if (last == 0)
7093 break;
7094 last = 0;
7095 continue;
7096 }
7097
7098 inode = block_group->inode;
7099 block_group->iref = 0;
7100 block_group->inode = NULL;
7101 spin_unlock(&block_group->lock);
7102 iput(inode);
7103 last = block_group->key.objectid + block_group->key.offset;
7104 btrfs_put_block_group(block_group);
7105 }
7106}
7107
Zheng Yan1a40e232008-09-26 10:09:34 -04007108int btrfs_free_block_groups(struct btrfs_fs_info *info)
7109{
7110 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04007111 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04007112 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04007113 struct rb_node *n;
7114
Yan Zheng11833d62009-09-11 16:11:19 -04007115 down_write(&info->extent_commit_sem);
7116 while (!list_empty(&info->caching_block_groups)) {
7117 caching_ctl = list_entry(info->caching_block_groups.next,
7118 struct btrfs_caching_control, list);
7119 list_del(&caching_ctl->list);
7120 put_caching_control(caching_ctl);
7121 }
7122 up_write(&info->extent_commit_sem);
7123
Zheng Yan1a40e232008-09-26 10:09:34 -04007124 spin_lock(&info->block_group_cache_lock);
7125 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
7126 block_group = rb_entry(n, struct btrfs_block_group_cache,
7127 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04007128 rb_erase(&block_group->cache_node,
7129 &info->block_group_cache_tree);
Yan Zhengd899e052008-10-30 14:25:28 -04007130 spin_unlock(&info->block_group_cache_lock);
7131
Josef Bacik80eb2342008-10-29 14:49:05 -04007132 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04007133 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04007134 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05007135
Josef Bacik817d52f2009-07-13 21:29:25 -04007136 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04007137 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04007138
Josef Bacik3c148742011-02-02 15:53:47 +00007139 /*
7140 * We haven't cached this block group, which means we could
7141 * possibly have excluded extents on this block group.
7142 */
7143 if (block_group->cached == BTRFS_CACHE_NO)
7144 free_excluded_extents(info->extent_root, block_group);
7145
Josef Bacik817d52f2009-07-13 21:29:25 -04007146 btrfs_remove_free_space_cache(block_group);
Josef Bacik11dfe352009-11-13 20:12:59 +00007147 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04007148
7149 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04007150 }
7151 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -04007152
7153 /* now that all the block groups are freed, go through and
7154 * free all the space_info structs. This is only called during
7155 * the final stages of unmount, and so we know nobody is
7156 * using them. We call synchronize_rcu() once before we start,
7157 * just to be on the safe side.
7158 */
7159 synchronize_rcu();
7160
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04007161 release_global_block_rsv(info);
7162
Chris Mason4184ea72009-03-10 12:39:20 -04007163 while(!list_empty(&info->space_info)) {
7164 space_info = list_entry(info->space_info.next,
7165 struct btrfs_space_info,
7166 list);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007167 if (space_info->bytes_pinned > 0 ||
Josef Bacikfb25e912011-07-26 17:00:46 -04007168 space_info->bytes_reserved > 0 ||
7169 space_info->bytes_may_use > 0) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04007170 WARN_ON(1);
7171 dump_space_info(space_info, 0, 0);
7172 }
Chris Mason4184ea72009-03-10 12:39:20 -04007173 list_del(&space_info->list);
7174 kfree(space_info);
7175 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007176 return 0;
7177}
7178
Yan, Zhengb742bb82010-05-16 10:46:24 -04007179static void __link_block_group(struct btrfs_space_info *space_info,
7180 struct btrfs_block_group_cache *cache)
7181{
7182 int index = get_block_group_index(cache);
7183
7184 down_write(&space_info->groups_sem);
7185 list_add_tail(&cache->list, &space_info->block_groups[index]);
7186 up_write(&space_info->groups_sem);
7187}
7188
Chris Mason9078a3e2007-04-26 16:46:15 -04007189int btrfs_read_block_groups(struct btrfs_root *root)
7190{
7191 struct btrfs_path *path;
7192 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04007193 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04007194 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04007195 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04007196 struct btrfs_key key;
7197 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04007198 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -04007199 int need_clear = 0;
7200 u64 cache_gen;
Chris Mason96b51792007-10-15 16:15:19 -04007201
Chris Masonbe744172007-05-06 10:15:01 -04007202 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04007203 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04007204 key.offset = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04007205 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason9078a3e2007-04-26 16:46:15 -04007206 path = btrfs_alloc_path();
7207 if (!path)
7208 return -ENOMEM;
Josef Bacik026fd312011-05-13 10:32:11 -04007209 path->reada = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04007210
David Sterba6c417612011-04-13 15:41:04 +02007211 cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
Josef Bacik73bc1872011-10-03 14:07:49 -04007212 if (btrfs_test_opt(root, SPACE_CACHE) &&
David Sterba6c417612011-04-13 15:41:04 +02007213 btrfs_super_generation(root->fs_info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -04007214 need_clear = 1;
Josef Bacik88c2ba32010-09-21 14:21:34 -04007215 if (btrfs_test_opt(root, CLEAR_CACHE))
7216 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -04007217
Chris Masond3977122009-01-05 21:25:51 -05007218 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04007219 ret = find_first_block_group(root, path, &key);
Yan, Zhengb742bb82010-05-16 10:46:24 -04007220 if (ret > 0)
7221 break;
Chris Mason0b86a832008-03-24 15:01:56 -04007222 if (ret != 0)
7223 goto error;
Chris Mason5f39d392007-10-15 16:14:19 -04007224 leaf = path->nodes[0];
7225 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason8f18cf12008-04-25 16:53:30 -04007226 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04007227 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04007228 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007229 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04007230 }
Li Zefan34d52cb2011-03-29 13:46:06 +08007231 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
7232 GFP_NOFS);
7233 if (!cache->free_space_ctl) {
7234 kfree(cache);
7235 ret = -ENOMEM;
7236 goto error;
7237 }
Chris Mason3e1ad542007-05-07 20:03:49 -04007238
Yan Zhengd2fb3432008-12-11 16:30:39 -05007239 atomic_set(&cache->count, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04007240 spin_lock_init(&cache->lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04007241 cache->fs_info = info;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007242 INIT_LIST_HEAD(&cache->list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007243 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik96303082009-07-13 21:29:25 -04007244
Josef Bacik0af3d002010-06-21 14:48:16 -04007245 if (need_clear)
7246 cache->disk_cache_state = BTRFS_DC_CLEAR;
7247
Chris Mason5f39d392007-10-15 16:14:19 -04007248 read_extent_buffer(leaf, &cache->item,
7249 btrfs_item_ptr_offset(leaf, path->slots[0]),
7250 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04007251 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Mason0b86a832008-03-24 15:01:56 -04007252
Chris Mason9078a3e2007-04-26 16:46:15 -04007253 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +02007254 btrfs_release_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04007255 cache->flags = btrfs_block_group_flags(&cache->item);
Josef Bacik817d52f2009-07-13 21:29:25 -04007256 cache->sectorsize = root->sectorsize;
7257
Li Zefan34d52cb2011-03-29 13:46:06 +08007258 btrfs_init_free_space_ctl(cache);
7259
Josef Bacik817d52f2009-07-13 21:29:25 -04007260 /*
Josef Bacik3c148742011-02-02 15:53:47 +00007261 * We need to exclude the super stripes now so that the space
7262 * info has super bytes accounted for, otherwise we'll think
7263 * we have more space than we actually do.
7264 */
7265 exclude_super_stripes(root, cache);
7266
7267 /*
Josef Bacik817d52f2009-07-13 21:29:25 -04007268 * check for two cases, either we are full, and therefore
7269 * don't need to bother with the caching work since we won't
7270 * find any space, or we are empty, and we can just add all
7271 * the space in and be done with it. This saves us _alot_ of
7272 * time, particularly in the full case.
7273 */
7274 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -04007275 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04007276 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik1b2da372009-09-11 16:11:20 -04007277 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04007278 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -04007279 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04007280 cache->cached = BTRFS_CACHE_FINISHED;
7281 add_new_free_space(cache, root->fs_info,
7282 found_key.objectid,
7283 found_key.objectid +
7284 found_key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -04007285 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04007286 }
Chris Mason96b51792007-10-15 16:15:19 -04007287
Chris Mason6324fbf2008-03-24 15:01:59 -04007288 ret = update_space_info(info, cache->flags, found_key.offset,
7289 btrfs_block_group_used(&cache->item),
7290 &space_info);
7291 BUG_ON(ret);
7292 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -04007293 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007294 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04007295 spin_unlock(&cache->space_info->lock);
7296
Yan, Zhengb742bb82010-05-16 10:46:24 -04007297 __link_block_group(space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04007298
Josef Bacik0f9dd462008-09-23 13:14:11 -04007299 ret = btrfs_add_block_group_cache(root->fs_info, cache);
7300 BUG_ON(ret);
Chris Mason75ccf472008-09-30 19:24:06 -04007301
7302 set_avail_alloc_bits(root->fs_info, cache->flags);
Yan Zheng2b820322008-11-17 21:11:30 -05007303 if (btrfs_chunk_readonly(root, cache->key.objectid))
Miao Xie199c36e2011-07-15 10:34:36 +00007304 set_block_group_ro(cache, 1);
Chris Mason9078a3e2007-04-26 16:46:15 -04007305 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04007306
7307 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
7308 if (!(get_alloc_profile(root, space_info->flags) &
7309 (BTRFS_BLOCK_GROUP_RAID10 |
7310 BTRFS_BLOCK_GROUP_RAID1 |
7311 BTRFS_BLOCK_GROUP_DUP)))
7312 continue;
7313 /*
7314 * avoid allocating from un-mirrored block group if there are
7315 * mirrored block groups.
7316 */
7317 list_for_each_entry(cache, &space_info->block_groups[3], list)
Miao Xie199c36e2011-07-15 10:34:36 +00007318 set_block_group_ro(cache, 1);
Yan, Zhengb742bb82010-05-16 10:46:24 -04007319 list_for_each_entry(cache, &space_info->block_groups[4], list)
Miao Xie199c36e2011-07-15 10:34:36 +00007320 set_block_group_ro(cache, 1);
Yan, Zhengb742bb82010-05-16 10:46:24 -04007321 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04007322
7323 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -04007324 ret = 0;
7325error:
Chris Mason9078a3e2007-04-26 16:46:15 -04007326 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04007327 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04007328}
Chris Mason6324fbf2008-03-24 15:01:59 -04007329
7330int btrfs_make_block_group(struct btrfs_trans_handle *trans,
7331 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04007332 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04007333 u64 size)
7334{
7335 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04007336 struct btrfs_root *extent_root;
7337 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -04007338
7339 extent_root = root->fs_info->extent_root;
Chris Mason6324fbf2008-03-24 15:01:59 -04007340
Chris Mason12fcfd22009-03-24 10:24:20 -04007341 root->fs_info->last_trans_log_full_commit = trans->transid;
Chris Masone02119d2008-09-05 16:13:11 -04007342
Chris Mason8f18cf12008-04-25 16:53:30 -04007343 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Josef Bacik0f9dd462008-09-23 13:14:11 -04007344 if (!cache)
7345 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +08007346 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
7347 GFP_NOFS);
7348 if (!cache->free_space_ctl) {
7349 kfree(cache);
7350 return -ENOMEM;
7351 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04007352
Chris Masone17cade2008-04-15 15:41:47 -04007353 cache->key.objectid = chunk_offset;
Chris Mason6324fbf2008-03-24 15:01:59 -04007354 cache->key.offset = size;
Yan Zhengd2fb3432008-12-11 16:30:39 -05007355 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Josef Bacik96303082009-07-13 21:29:25 -04007356 cache->sectorsize = root->sectorsize;
Josef Bacik0af3d002010-06-21 14:48:16 -04007357 cache->fs_info = root->fs_info;
Josef Bacik96303082009-07-13 21:29:25 -04007358
Yan Zhengd2fb3432008-12-11 16:30:39 -05007359 atomic_set(&cache->count, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04007360 spin_lock_init(&cache->lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04007361 INIT_LIST_HEAD(&cache->list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007362 INIT_LIST_HEAD(&cache->cluster_list);
Chris Mason0ef3e662008-05-24 14:04:53 -04007363
Li Zefan34d52cb2011-03-29 13:46:06 +08007364 btrfs_init_free_space_ctl(cache);
7365
Chris Mason6324fbf2008-03-24 15:01:59 -04007366 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04007367 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
7368 cache->flags = type;
7369 btrfs_set_block_group_flags(&cache->item, type);
7370
Yan Zheng11833d62009-09-11 16:11:19 -04007371 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04007372 cache->cached = BTRFS_CACHE_FINISHED;
Yan Zheng11833d62009-09-11 16:11:19 -04007373 exclude_super_stripes(root, cache);
Josef Bacik96303082009-07-13 21:29:25 -04007374
Josef Bacik817d52f2009-07-13 21:29:25 -04007375 add_new_free_space(cache, root->fs_info, chunk_offset,
7376 chunk_offset + size);
7377
Yan Zheng11833d62009-09-11 16:11:19 -04007378 free_excluded_extents(root, cache);
7379
Chris Mason6324fbf2008-03-24 15:01:59 -04007380 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
7381 &cache->space_info);
7382 BUG_ON(ret);
Josef Bacik1b2da372009-09-11 16:11:20 -04007383
7384 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007385 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04007386 spin_unlock(&cache->space_info->lock);
7387
Yan, Zhengb742bb82010-05-16 10:46:24 -04007388 __link_block_group(cache->space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04007389
Josef Bacik0f9dd462008-09-23 13:14:11 -04007390 ret = btrfs_add_block_group_cache(root->fs_info, cache);
7391 BUG_ON(ret);
Chris Masonc286ac42008-07-22 23:06:41 -04007392
Chris Mason6324fbf2008-03-24 15:01:59 -04007393 ret = btrfs_insert_item(trans, extent_root, &cache->key, &cache->item,
7394 sizeof(cache->item));
7395 BUG_ON(ret);
7396
Chris Masond18a2c42008-04-04 15:40:00 -04007397 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason925baed2008-06-25 16:01:30 -04007398
Chris Mason6324fbf2008-03-24 15:01:59 -04007399 return 0;
7400}
Zheng Yan1a40e232008-09-26 10:09:34 -04007401
7402int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
7403 struct btrfs_root *root, u64 group_start)
7404{
7405 struct btrfs_path *path;
7406 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -04007407 struct btrfs_free_cluster *cluster;
Josef Bacik0af3d002010-06-21 14:48:16 -04007408 struct btrfs_root *tree_root = root->fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -04007409 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -04007410 struct inode *inode;
Zheng Yan1a40e232008-09-26 10:09:34 -04007411 int ret;
Josef Bacik89a55892010-10-14 14:52:27 -04007412 int factor;
Zheng Yan1a40e232008-09-26 10:09:34 -04007413
Zheng Yan1a40e232008-09-26 10:09:34 -04007414 root = root->fs_info->extent_root;
7415
7416 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
7417 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -05007418 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -04007419
liubo9f7c43c2011-03-07 02:13:33 +00007420 /*
7421 * Free the reserved super bytes from this block group before
7422 * remove it.
7423 */
7424 free_excluded_extents(root, block_group);
7425
Zheng Yan1a40e232008-09-26 10:09:34 -04007426 memcpy(&key, &block_group->key, sizeof(key));
Josef Bacik89a55892010-10-14 14:52:27 -04007427 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
7428 BTRFS_BLOCK_GROUP_RAID1 |
7429 BTRFS_BLOCK_GROUP_RAID10))
7430 factor = 2;
7431 else
7432 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04007433
Chris Mason44fb5512009-06-04 15:34:51 -04007434 /* make sure this block group isn't part of an allocation cluster */
7435 cluster = &root->fs_info->data_alloc_cluster;
7436 spin_lock(&cluster->refill_lock);
7437 btrfs_return_cluster_to_free_space(block_group, cluster);
7438 spin_unlock(&cluster->refill_lock);
7439
7440 /*
7441 * make sure this block group isn't part of a metadata
7442 * allocation cluster
7443 */
7444 cluster = &root->fs_info->meta_alloc_cluster;
7445 spin_lock(&cluster->refill_lock);
7446 btrfs_return_cluster_to_free_space(block_group, cluster);
7447 spin_unlock(&cluster->refill_lock);
7448
Zheng Yan1a40e232008-09-26 10:09:34 -04007449 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07007450 if (!path) {
7451 ret = -ENOMEM;
7452 goto out;
7453 }
Zheng Yan1a40e232008-09-26 10:09:34 -04007454
Ilya Dryomov10b2f342011-10-02 13:56:53 +03007455 inode = lookup_free_space_inode(tree_root, block_group, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04007456 if (!IS_ERR(inode)) {
Tsutomu Itohb5324022011-07-19 07:27:20 +00007457 ret = btrfs_orphan_add(trans, inode);
7458 BUG_ON(ret);
Josef Bacik0af3d002010-06-21 14:48:16 -04007459 clear_nlink(inode);
7460 /* One for the block groups ref */
7461 spin_lock(&block_group->lock);
7462 if (block_group->iref) {
7463 block_group->iref = 0;
7464 block_group->inode = NULL;
7465 spin_unlock(&block_group->lock);
7466 iput(inode);
7467 } else {
7468 spin_unlock(&block_group->lock);
7469 }
7470 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -04007471 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04007472 }
7473
7474 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
7475 key.offset = block_group->key.objectid;
7476 key.type = 0;
7477
7478 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
7479 if (ret < 0)
7480 goto out;
7481 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +02007482 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04007483 if (ret == 0) {
7484 ret = btrfs_del_item(trans, tree_root, path);
7485 if (ret)
7486 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02007487 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04007488 }
7489
Yan Zheng3dfdb932009-01-21 10:49:16 -05007490 spin_lock(&root->fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04007491 rb_erase(&block_group->cache_node,
7492 &root->fs_info->block_group_cache_tree);
Yan Zheng3dfdb932009-01-21 10:49:16 -05007493 spin_unlock(&root->fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04007494
Josef Bacik80eb2342008-10-29 14:49:05 -04007495 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04007496 /*
7497 * we must use list_del_init so people can check to see if they
7498 * are still on the list after taking the semaphore
7499 */
7500 list_del_init(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04007501 up_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04007502
Josef Bacik817d52f2009-07-13 21:29:25 -04007503 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04007504 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04007505
7506 btrfs_remove_free_space_cache(block_group);
7507
Yan Zhengc146afa2008-11-12 14:34:12 -05007508 spin_lock(&block_group->space_info->lock);
7509 block_group->space_info->total_bytes -= block_group->key.offset;
7510 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -04007511 block_group->space_info->disk_total -= block_group->key.offset * factor;
Yan Zhengc146afa2008-11-12 14:34:12 -05007512 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -04007513
Josef Bacik0af3d002010-06-21 14:48:16 -04007514 memcpy(&key, &block_group->key, sizeof(key));
7515
Chris Mason283bb192009-07-24 16:30:55 -04007516 btrfs_clear_space_info_full(root->fs_info);
Yan Zhengc146afa2008-11-12 14:34:12 -05007517
Chris Masonfa9c0d792009-04-03 09:47:43 -04007518 btrfs_put_block_group(block_group);
7519 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -04007520
7521 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
7522 if (ret > 0)
7523 ret = -EIO;
7524 if (ret < 0)
7525 goto out;
7526
7527 ret = btrfs_del_item(trans, root, path);
7528out:
7529 btrfs_free_path(path);
7530 return ret;
7531}
liuboacce9522011-01-06 19:30:25 +08007532
liuboc59021f2011-03-07 02:13:14 +00007533int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
7534{
7535 struct btrfs_space_info *space_info;
liubo1aba86d2011-04-08 08:44:37 +00007536 struct btrfs_super_block *disk_super;
7537 u64 features;
7538 u64 flags;
7539 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +00007540 int ret;
7541
David Sterba6c417612011-04-13 15:41:04 +02007542 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +00007543 if (!btrfs_super_root(disk_super))
7544 return 1;
liuboc59021f2011-03-07 02:13:14 +00007545
liubo1aba86d2011-04-08 08:44:37 +00007546 features = btrfs_super_incompat_flags(disk_super);
7547 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
7548 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +00007549
liubo1aba86d2011-04-08 08:44:37 +00007550 flags = BTRFS_BLOCK_GROUP_SYSTEM;
7551 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
liuboc59021f2011-03-07 02:13:14 +00007552 if (ret)
liubo1aba86d2011-04-08 08:44:37 +00007553 goto out;
liuboc59021f2011-03-07 02:13:14 +00007554
liubo1aba86d2011-04-08 08:44:37 +00007555 if (mixed) {
7556 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
7557 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
7558 } else {
7559 flags = BTRFS_BLOCK_GROUP_METADATA;
7560 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
7561 if (ret)
7562 goto out;
7563
7564 flags = BTRFS_BLOCK_GROUP_DATA;
7565 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
7566 }
7567out:
liuboc59021f2011-03-07 02:13:14 +00007568 return ret;
7569}
7570
liuboacce9522011-01-06 19:30:25 +08007571int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
7572{
7573 return unpin_extent_range(root, start, end);
7574}
7575
7576int btrfs_error_discard_extent(struct btrfs_root *root, u64 bytenr,
Li Dongyang5378e602011-03-24 10:24:27 +00007577 u64 num_bytes, u64 *actual_bytes)
liuboacce9522011-01-06 19:30:25 +08007578{
Li Dongyang5378e602011-03-24 10:24:27 +00007579 return btrfs_discard_extent(root, bytenr, num_bytes, actual_bytes);
liuboacce9522011-01-06 19:30:25 +08007580}
Li Dongyangf7039b12011-03-24 10:24:28 +00007581
7582int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range)
7583{
7584 struct btrfs_fs_info *fs_info = root->fs_info;
7585 struct btrfs_block_group_cache *cache = NULL;
7586 u64 group_trimmed;
7587 u64 start;
7588 u64 end;
7589 u64 trimmed = 0;
7590 int ret = 0;
7591
7592 cache = btrfs_lookup_block_group(fs_info, range->start);
7593
7594 while (cache) {
7595 if (cache->key.objectid >= (range->start + range->len)) {
7596 btrfs_put_block_group(cache);
7597 break;
7598 }
7599
7600 start = max(range->start, cache->key.objectid);
7601 end = min(range->start + range->len,
7602 cache->key.objectid + cache->key.offset);
7603
7604 if (end - start >= range->minlen) {
7605 if (!block_group_cache_done(cache)) {
7606 ret = cache_block_group(cache, NULL, root, 0);
7607 if (!ret)
7608 wait_block_group_cache_done(cache);
7609 }
7610 ret = btrfs_trim_block_group(cache,
7611 &group_trimmed,
7612 start,
7613 end,
7614 range->minlen);
7615
7616 trimmed += group_trimmed;
7617 if (ret) {
7618 btrfs_put_block_group(cache);
7619 break;
7620 }
7621 }
7622
7623 cache = next_block_group(fs_info->tree_root, cache);
7624 }
7625
7626 range->len = trimmed;
7627 return ret;
7628}