blob: 44d04979f071711f99989d00fc2aeb073bdffa4d [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>
Josef Bacikb150a4f2013-06-19 15:00:04 -040027#include <linux/percpu_counter.h>
Chris Mason74493f72007-12-11 09:25:06 -050028#include "hash.h"
Miao Xie995946d2014-04-02 19:51:06 +080029#include "tree-log.h"
Chris Masonfec577f2007-02-26 10:40:21 -050030#include "disk-io.h"
31#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040032#include "volumes.h"
David Woodhouse53b381b2013-01-29 18:40:14 -050033#include "raid56.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"
Miao Xie3fed40c2012-09-13 04:51:36 -060036#include "math.h"
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040037#include "sysfs.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070038#include "qgroup.h"
Chris Masonfec577f2007-02-26 10:40:21 -050039
Arne Jansen709c0482011-09-12 12:22:57 +020040#undef SCRAMBLE_DELAYED_REFS
41
Miao Xie9e622d62012-01-26 15:01:12 -050042/*
43 * control flags for do_chunk_alloc's force field
Chris Mason0e4f8f82011-04-15 16:05:44 -040044 * CHUNK_ALLOC_NO_FORCE means to only allocate a chunk
45 * if we really need one.
46 *
Chris Mason0e4f8f82011-04-15 16:05:44 -040047 * CHUNK_ALLOC_LIMITED means to only try and allocate one
48 * if we have very few chunks already allocated. This is
49 * used as part of the clustering code to help make sure
50 * we have a good pool of storage to cluster in, without
51 * filling the FS with empty chunks
52 *
Miao Xie9e622d62012-01-26 15:01:12 -050053 * CHUNK_ALLOC_FORCE means it must try to allocate one
54 *
Chris Mason0e4f8f82011-04-15 16:05:44 -040055 */
56enum {
57 CHUNK_ALLOC_NO_FORCE = 0,
Miao Xie9e622d62012-01-26 15:01:12 -050058 CHUNK_ALLOC_LIMITED = 1,
59 CHUNK_ALLOC_FORCE = 2,
Chris Mason0e4f8f82011-04-15 16:05:44 -040060};
61
Josef Bacikfb25e912011-07-26 17:00:46 -040062/*
63 * Control how reservations are dealt with.
64 *
65 * RESERVE_FREE - freeing a reservation.
66 * RESERVE_ALLOC - allocating space and we need to update bytes_may_use for
67 * ENOSPC accounting
68 * RESERVE_ALLOC_NO_ACCOUNT - allocating space and we should not update
69 * bytes_may_use as the ENOSPC accounting is done elsewhere
70 */
71enum {
72 RESERVE_FREE = 0,
73 RESERVE_ALLOC = 1,
74 RESERVE_ALLOC_NO_ACCOUNT = 2,
75};
76
Liu Boc53d6132012-12-27 09:01:19 +000077static int update_block_group(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -040078 u64 bytenr, u64 num_bytes, int alloc);
Yan Zheng5d4f98a2009-06-10 10:45:14 -040079static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
80 struct btrfs_root *root,
81 u64 bytenr, u64 num_bytes, u64 parent,
82 u64 root_objectid, u64 owner_objectid,
83 u64 owner_offset, int refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -070084 struct btrfs_delayed_extent_op *extra_op,
85 int no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -040086static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
87 struct extent_buffer *leaf,
88 struct btrfs_extent_item *ei);
89static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
90 struct btrfs_root *root,
91 u64 parent, u64 root_objectid,
92 u64 flags, u64 owner, u64 offset,
93 struct btrfs_key *ins, int ref_mod);
94static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
95 struct btrfs_root *root,
96 u64 parent, u64 root_objectid,
97 u64 flags, struct btrfs_disk_key *key,
Josef Bacikfcebe452014-05-13 17:30:47 -070098 int level, struct btrfs_key *ins,
99 int no_quota);
Josef Bacik6a632092009-02-20 11:00:09 -0500100static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Josef Bacik698d0082012-09-12 14:08:47 -0400101 struct btrfs_root *extent_root, u64 flags,
102 int force);
Yan Zheng11833d62009-09-11 16:11:19 -0400103static int find_next_key(struct btrfs_path *path, int level,
104 struct btrfs_key *key);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400105static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
106 int dump_block_groups);
Josef Bacikfb25e912011-07-26 17:00:46 -0400107static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
Miao Xiee570fd22014-06-19 10:42:50 +0800108 u64 num_bytes, int reserve,
109 int delalloc);
Josef Bacik5d803662013-02-07 16:06:02 -0500110static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
111 u64 num_bytes);
Eric Sandeen48a3b632013-04-25 20:41:01 +0000112int btrfs_pin_extent(struct btrfs_root *root,
113 u64 bytenr, u64 num_bytes, int reserved);
Josef Bacik6a632092009-02-20 11:00:09 -0500114
Josef Bacik817d52f2009-07-13 21:29:25 -0400115static noinline int
116block_group_cache_done(struct btrfs_block_group_cache *cache)
117{
118 smp_mb();
Josef Bacik36cce922013-08-05 11:15:21 -0400119 return cache->cached == BTRFS_CACHE_FINISHED ||
120 cache->cached == BTRFS_CACHE_ERROR;
Josef Bacik817d52f2009-07-13 21:29:25 -0400121}
122
Josef Bacik0f9dd462008-09-23 13:14:11 -0400123static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
124{
125 return (cache->flags & bits) == bits;
126}
127
David Sterba62a45b62011-04-20 15:52:26 +0200128static void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
Josef Bacik11dfe352009-11-13 20:12:59 +0000129{
130 atomic_inc(&cache->count);
131}
132
133void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
134{
Yan, Zhengf0486c62010-05-16 10:46:25 -0400135 if (atomic_dec_and_test(&cache->count)) {
136 WARN_ON(cache->pinned > 0);
137 WARN_ON(cache->reserved > 0);
Li Zefan34d52cb2011-03-29 13:46:06 +0800138 kfree(cache->free_space_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000139 kfree(cache);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400140 }
Josef Bacik11dfe352009-11-13 20:12:59 +0000141}
142
Josef Bacik0f9dd462008-09-23 13:14:11 -0400143/*
144 * this adds the block group to the fs_info rb tree for the block group
145 * cache
146 */
Christoph Hellwigb2950862008-12-02 09:54:17 -0500147static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400148 struct btrfs_block_group_cache *block_group)
149{
150 struct rb_node **p;
151 struct rb_node *parent = NULL;
152 struct btrfs_block_group_cache *cache;
153
154 spin_lock(&info->block_group_cache_lock);
155 p = &info->block_group_cache_tree.rb_node;
156
157 while (*p) {
158 parent = *p;
159 cache = rb_entry(parent, struct btrfs_block_group_cache,
160 cache_node);
161 if (block_group->key.objectid < cache->key.objectid) {
162 p = &(*p)->rb_left;
163 } else if (block_group->key.objectid > cache->key.objectid) {
164 p = &(*p)->rb_right;
165 } else {
166 spin_unlock(&info->block_group_cache_lock);
167 return -EEXIST;
168 }
169 }
170
171 rb_link_node(&block_group->cache_node, parent, p);
172 rb_insert_color(&block_group->cache_node,
173 &info->block_group_cache_tree);
Liu Boa1897fd2012-12-27 09:01:23 +0000174
175 if (info->first_logical_byte > block_group->key.objectid)
176 info->first_logical_byte = block_group->key.objectid;
177
Josef Bacik0f9dd462008-09-23 13:14:11 -0400178 spin_unlock(&info->block_group_cache_lock);
179
180 return 0;
181}
182
183/*
184 * This will return the block group at or after bytenr if contains is 0, else
185 * it will return the block group that contains the bytenr
186 */
187static struct btrfs_block_group_cache *
188block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
189 int contains)
190{
191 struct btrfs_block_group_cache *cache, *ret = NULL;
192 struct rb_node *n;
193 u64 end, start;
194
195 spin_lock(&info->block_group_cache_lock);
196 n = info->block_group_cache_tree.rb_node;
197
198 while (n) {
199 cache = rb_entry(n, struct btrfs_block_group_cache,
200 cache_node);
201 end = cache->key.objectid + cache->key.offset - 1;
202 start = cache->key.objectid;
203
204 if (bytenr < start) {
205 if (!contains && (!ret || start < ret->key.objectid))
206 ret = cache;
207 n = n->rb_left;
208 } else if (bytenr > start) {
209 if (contains && bytenr <= end) {
210 ret = cache;
211 break;
212 }
213 n = n->rb_right;
214 } else {
215 ret = cache;
216 break;
217 }
218 }
Liu Boa1897fd2012-12-27 09:01:23 +0000219 if (ret) {
Josef Bacik11dfe352009-11-13 20:12:59 +0000220 btrfs_get_block_group(ret);
Liu Boa1897fd2012-12-27 09:01:23 +0000221 if (bytenr == 0 && info->first_logical_byte > ret->key.objectid)
222 info->first_logical_byte = ret->key.objectid;
223 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400224 spin_unlock(&info->block_group_cache_lock);
225
226 return ret;
227}
228
Yan Zheng11833d62009-09-11 16:11:19 -0400229static int add_excluded_extent(struct btrfs_root *root,
230 u64 start, u64 num_bytes)
Josef Bacik817d52f2009-07-13 21:29:25 -0400231{
Yan Zheng11833d62009-09-11 16:11:19 -0400232 u64 end = start + num_bytes - 1;
233 set_extent_bits(&root->fs_info->freed_extents[0],
234 start, end, EXTENT_UPTODATE, GFP_NOFS);
235 set_extent_bits(&root->fs_info->freed_extents[1],
236 start, end, EXTENT_UPTODATE, GFP_NOFS);
237 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400238}
239
Yan Zheng11833d62009-09-11 16:11:19 -0400240static void free_excluded_extents(struct btrfs_root *root,
241 struct btrfs_block_group_cache *cache)
Josef Bacik817d52f2009-07-13 21:29:25 -0400242{
Yan Zheng11833d62009-09-11 16:11:19 -0400243 u64 start, end;
244
245 start = cache->key.objectid;
246 end = start + cache->key.offset - 1;
247
248 clear_extent_bits(&root->fs_info->freed_extents[0],
249 start, end, EXTENT_UPTODATE, GFP_NOFS);
250 clear_extent_bits(&root->fs_info->freed_extents[1],
251 start, end, EXTENT_UPTODATE, GFP_NOFS);
252}
253
254static int exclude_super_stripes(struct btrfs_root *root,
255 struct btrfs_block_group_cache *cache)
256{
Josef Bacik817d52f2009-07-13 21:29:25 -0400257 u64 bytenr;
258 u64 *logical;
259 int stripe_len;
260 int i, nr, ret;
261
Yan, Zheng06b23312009-11-26 09:31:11 +0000262 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
263 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
264 cache->bytes_super += stripe_len;
265 ret = add_excluded_extent(root, cache->key.objectid,
266 stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400267 if (ret)
268 return ret;
Yan, Zheng06b23312009-11-26 09:31:11 +0000269 }
270
Josef Bacik817d52f2009-07-13 21:29:25 -0400271 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
272 bytenr = btrfs_sb_offset(i);
273 ret = btrfs_rmap_block(&root->fs_info->mapping_tree,
274 cache->key.objectid, bytenr,
275 0, &logical, &nr, &stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400276 if (ret)
277 return ret;
Yan Zheng11833d62009-09-11 16:11:19 -0400278
Josef Bacik817d52f2009-07-13 21:29:25 -0400279 while (nr--) {
Josef Bacik51bf5f02013-04-23 12:55:21 -0400280 u64 start, len;
281
282 if (logical[nr] > cache->key.objectid +
283 cache->key.offset)
284 continue;
285
286 if (logical[nr] + stripe_len <= cache->key.objectid)
287 continue;
288
289 start = logical[nr];
290 if (start < cache->key.objectid) {
291 start = cache->key.objectid;
292 len = (logical[nr] + stripe_len) - start;
293 } else {
294 len = min_t(u64, stripe_len,
295 cache->key.objectid +
296 cache->key.offset - start);
297 }
298
299 cache->bytes_super += len;
300 ret = add_excluded_extent(root, start, len);
Josef Bacik835d9742013-03-19 12:13:25 -0400301 if (ret) {
302 kfree(logical);
303 return ret;
304 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400305 }
Yan Zheng11833d62009-09-11 16:11:19 -0400306
Josef Bacik817d52f2009-07-13 21:29:25 -0400307 kfree(logical);
308 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400309 return 0;
310}
311
Yan Zheng11833d62009-09-11 16:11:19 -0400312static struct btrfs_caching_control *
313get_caching_control(struct btrfs_block_group_cache *cache)
314{
315 struct btrfs_caching_control *ctl;
316
317 spin_lock(&cache->lock);
318 if (cache->cached != BTRFS_CACHE_STARTED) {
319 spin_unlock(&cache->lock);
320 return NULL;
321 }
322
Josef Bacikdde5abe2010-09-16 16:17:03 -0400323 /* We're loading it the fast way, so we don't have a caching_ctl. */
324 if (!cache->caching_ctl) {
325 spin_unlock(&cache->lock);
326 return NULL;
327 }
328
Yan Zheng11833d62009-09-11 16:11:19 -0400329 ctl = cache->caching_ctl;
330 atomic_inc(&ctl->count);
331 spin_unlock(&cache->lock);
332 return ctl;
333}
334
335static void put_caching_control(struct btrfs_caching_control *ctl)
336{
337 if (atomic_dec_and_test(&ctl->count))
338 kfree(ctl);
339}
340
Josef Bacik0f9dd462008-09-23 13:14:11 -0400341/*
342 * this is only called by cache_block_group, since we could have freed extents
343 * we need to check the pinned_extents for any extents that can't be used yet
344 * since their free space will be released as soon as the transaction commits.
345 */
Josef Bacik817d52f2009-07-13 21:29:25 -0400346static u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400347 struct btrfs_fs_info *info, u64 start, u64 end)
348{
Josef Bacik817d52f2009-07-13 21:29:25 -0400349 u64 extent_start, extent_end, size, total_added = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400350 int ret;
351
352 while (start < end) {
Yan Zheng11833d62009-09-11 16:11:19 -0400353 ret = find_first_extent_bit(info->pinned_extents, start,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400354 &extent_start, &extent_end,
Josef Bacike6138872012-09-27 17:07:30 -0400355 EXTENT_DIRTY | EXTENT_UPTODATE,
356 NULL);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400357 if (ret)
358 break;
359
Yan, Zheng06b23312009-11-26 09:31:11 +0000360 if (extent_start <= start) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400361 start = extent_end + 1;
362 } else if (extent_start > start && extent_start < end) {
363 size = extent_start - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400364 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500365 ret = btrfs_add_free_space(block_group, start,
366 size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100367 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400368 start = extent_end + 1;
369 } else {
370 break;
371 }
372 }
373
374 if (start < end) {
375 size = end - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400376 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500377 ret = btrfs_add_free_space(block_group, start, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100378 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400379 }
380
Josef Bacik817d52f2009-07-13 21:29:25 -0400381 return total_added;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400382}
383
Qu Wenruod458b052014-02-28 10:46:19 +0800384static noinline void caching_thread(struct btrfs_work *work)
Chris Masone37c9e62007-05-09 20:13:14 -0400385{
Josef Bacikbab39bf2011-06-30 14:42:28 -0400386 struct btrfs_block_group_cache *block_group;
387 struct btrfs_fs_info *fs_info;
388 struct btrfs_caching_control *caching_ctl;
389 struct btrfs_root *extent_root;
Chris Masone37c9e62007-05-09 20:13:14 -0400390 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400391 struct extent_buffer *leaf;
Yan Zheng11833d62009-09-11 16:11:19 -0400392 struct btrfs_key key;
Josef Bacik817d52f2009-07-13 21:29:25 -0400393 u64 total_found = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400394 u64 last = 0;
395 u32 nritems;
Josef Bacik36cce922013-08-05 11:15:21 -0400396 int ret = -ENOMEM;
Chris Masonf510cfe2007-10-15 16:14:48 -0400397
Josef Bacikbab39bf2011-06-30 14:42:28 -0400398 caching_ctl = container_of(work, struct btrfs_caching_control, work);
399 block_group = caching_ctl->block_group;
400 fs_info = block_group->fs_info;
401 extent_root = fs_info->extent_root;
402
Chris Masone37c9e62007-05-09 20:13:14 -0400403 path = btrfs_alloc_path();
404 if (!path)
Josef Bacikbab39bf2011-06-30 14:42:28 -0400405 goto out;
Yan7d7d6062007-09-14 16:15:28 -0400406
Josef Bacik817d52f2009-07-13 21:29:25 -0400407 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
Yan Zheng11833d62009-09-11 16:11:19 -0400408
Chris Mason5cd57b22008-06-25 16:01:30 -0400409 /*
Josef Bacik817d52f2009-07-13 21:29:25 -0400410 * We don't want to deadlock with somebody trying to allocate a new
411 * extent for the extent root while also trying to search the extent
412 * root to add free space. So we skip locking and search the commit
413 * root, since its read-only
Chris Mason5cd57b22008-06-25 16:01:30 -0400414 */
415 path->skip_locking = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400416 path->search_commit_root = 1;
Josef Bacik026fd312011-05-13 10:32:11 -0400417 path->reada = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400418
Yan Zhenge4404d62008-12-12 10:03:26 -0500419 key.objectid = last;
Chris Masone37c9e62007-05-09 20:13:14 -0400420 key.offset = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400421 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason013f1b12009-07-31 14:57:55 -0400422again:
Yan Zheng11833d62009-09-11 16:11:19 -0400423 mutex_lock(&caching_ctl->mutex);
Chris Mason013f1b12009-07-31 14:57:55 -0400424 /* need to make sure the commit_root doesn't disappear */
Josef Bacik9e351cc2014-03-13 15:42:13 -0400425 down_read(&fs_info->commit_root_sem);
Chris Mason013f1b12009-07-31 14:57:55 -0400426
Liu Bo52ee28d2013-07-11 17:51:15 +0800427next:
Yan Zheng11833d62009-09-11 16:11:19 -0400428 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
Chris Masone37c9e62007-05-09 20:13:14 -0400429 if (ret < 0)
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400430 goto err;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500431
Yan Zheng11833d62009-09-11 16:11:19 -0400432 leaf = path->nodes[0];
433 nritems = btrfs_header_nritems(leaf);
434
Chris Masond3977122009-01-05 21:25:51 -0500435 while (1) {
David Sterba7841cb22011-05-31 18:07:27 +0200436 if (btrfs_fs_closing(fs_info) > 1) {
Yan Zhengf25784b2009-07-28 08:41:57 -0400437 last = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400438 break;
Yan Zhengf25784b2009-07-28 08:41:57 -0400439 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400440
Yan Zheng11833d62009-09-11 16:11:19 -0400441 if (path->slots[0] < nritems) {
442 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
443 } else {
444 ret = find_next_key(path, 0, &key);
445 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -0400446 break;
Josef Bacik817d52f2009-07-13 21:29:25 -0400447
Josef Bacikc9ea7b22013-09-19 10:02:11 -0400448 if (need_resched() ||
Josef Bacik9e351cc2014-03-13 15:42:13 -0400449 rwsem_is_contended(&fs_info->commit_root_sem)) {
Josef Bacik589d8ad2011-05-11 17:30:53 -0400450 caching_ctl->progress = last;
Chris Masonff5714c2011-05-28 07:00:39 -0400451 btrfs_release_path(path);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400452 up_read(&fs_info->commit_root_sem);
Josef Bacik589d8ad2011-05-11 17:30:53 -0400453 mutex_unlock(&caching_ctl->mutex);
Yan Zheng11833d62009-09-11 16:11:19 -0400454 cond_resched();
Josef Bacik589d8ad2011-05-11 17:30:53 -0400455 goto again;
456 }
Josef Bacik0a3896d2013-04-19 14:37:26 -0400457
458 ret = btrfs_next_leaf(extent_root, path);
459 if (ret < 0)
460 goto err;
461 if (ret)
462 break;
Josef Bacik589d8ad2011-05-11 17:30:53 -0400463 leaf = path->nodes[0];
464 nritems = btrfs_header_nritems(leaf);
465 continue;
Yan Zheng11833d62009-09-11 16:11:19 -0400466 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400467
Liu Bo52ee28d2013-07-11 17:51:15 +0800468 if (key.objectid < last) {
469 key.objectid = last;
470 key.offset = 0;
471 key.type = BTRFS_EXTENT_ITEM_KEY;
472
473 caching_ctl->progress = last;
474 btrfs_release_path(path);
475 goto next;
476 }
477
Yan Zheng11833d62009-09-11 16:11:19 -0400478 if (key.objectid < block_group->key.objectid) {
479 path->slots[0]++;
Josef Bacik817d52f2009-07-13 21:29:25 -0400480 continue;
Chris Masone37c9e62007-05-09 20:13:14 -0400481 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400482
Chris Masone37c9e62007-05-09 20:13:14 -0400483 if (key.objectid >= block_group->key.objectid +
Josef Bacik0f9dd462008-09-23 13:14:11 -0400484 block_group->key.offset)
Yan7d7d6062007-09-14 16:15:28 -0400485 break;
Yan7d7d6062007-09-14 16:15:28 -0400486
Josef Bacik3173a182013-03-07 14:22:04 -0500487 if (key.type == BTRFS_EXTENT_ITEM_KEY ||
488 key.type == BTRFS_METADATA_ITEM_KEY) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400489 total_found += add_new_free_space(block_group,
490 fs_info, last,
491 key.objectid);
Josef Bacik3173a182013-03-07 14:22:04 -0500492 if (key.type == BTRFS_METADATA_ITEM_KEY)
493 last = key.objectid +
David Sterba707e8a02014-06-04 19:22:26 +0200494 fs_info->tree_root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500495 else
496 last = key.objectid + key.offset;
Josef Bacik817d52f2009-07-13 21:29:25 -0400497
Yan Zheng11833d62009-09-11 16:11:19 -0400498 if (total_found > (1024 * 1024 * 2)) {
499 total_found = 0;
500 wake_up(&caching_ctl->wait);
501 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400502 }
Chris Masone37c9e62007-05-09 20:13:14 -0400503 path->slots[0]++;
504 }
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400505 ret = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400506
507 total_found += add_new_free_space(block_group, fs_info, last,
508 block_group->key.objectid +
509 block_group->key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -0400510 caching_ctl->progress = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400511
512 spin_lock(&block_group->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400513 block_group->caching_ctl = NULL;
Josef Bacik817d52f2009-07-13 21:29:25 -0400514 block_group->cached = BTRFS_CACHE_FINISHED;
515 spin_unlock(&block_group->lock);
516
Chris Mason54aa1f42007-06-22 14:16:25 -0400517err:
Chris Masone37c9e62007-05-09 20:13:14 -0400518 btrfs_free_path(path);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400519 up_read(&fs_info->commit_root_sem);
Josef Bacik817d52f2009-07-13 21:29:25 -0400520
Yan Zheng11833d62009-09-11 16:11:19 -0400521 free_excluded_extents(extent_root, block_group);
522
523 mutex_unlock(&caching_ctl->mutex);
Josef Bacikbab39bf2011-06-30 14:42:28 -0400524out:
Josef Bacik36cce922013-08-05 11:15:21 -0400525 if (ret) {
526 spin_lock(&block_group->lock);
527 block_group->caching_ctl = NULL;
528 block_group->cached = BTRFS_CACHE_ERROR;
529 spin_unlock(&block_group->lock);
530 }
Yan Zheng11833d62009-09-11 16:11:19 -0400531 wake_up(&caching_ctl->wait);
532
533 put_caching_control(caching_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000534 btrfs_put_block_group(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -0400535}
536
Josef Bacik9d66e232010-08-25 16:54:15 -0400537static int cache_block_group(struct btrfs_block_group_cache *cache,
Josef Bacik9d66e232010-08-25 16:54:15 -0400538 int load_cache_only)
Josef Bacik817d52f2009-07-13 21:29:25 -0400539{
Josef Bacik291c7d22011-11-14 13:52:14 -0500540 DEFINE_WAIT(wait);
Yan Zheng11833d62009-09-11 16:11:19 -0400541 struct btrfs_fs_info *fs_info = cache->fs_info;
542 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400543 int ret = 0;
544
Josef Bacik291c7d22011-11-14 13:52:14 -0500545 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100546 if (!caching_ctl)
547 return -ENOMEM;
Josef Bacik291c7d22011-11-14 13:52:14 -0500548
549 INIT_LIST_HEAD(&caching_ctl->list);
550 mutex_init(&caching_ctl->mutex);
551 init_waitqueue_head(&caching_ctl->wait);
552 caching_ctl->block_group = cache;
553 caching_ctl->progress = cache->key.objectid;
554 atomic_set(&caching_ctl->count, 1);
Liu Bo9e0af232014-08-15 23:36:53 +0800555 btrfs_init_work(&caching_ctl->work, btrfs_cache_helper,
556 caching_thread, NULL, NULL);
Josef Bacik291c7d22011-11-14 13:52:14 -0500557
558 spin_lock(&cache->lock);
559 /*
560 * This should be a rare occasion, but this could happen I think in the
561 * case where one thread starts to load the space cache info, and then
562 * some other thread starts a transaction commit which tries to do an
563 * allocation while the other thread is still loading the space cache
564 * info. The previous loop should have kept us from choosing this block
565 * group, but if we've moved to the state where we will wait on caching
566 * block groups we need to first check if we're doing a fast load here,
567 * so we can wait for it to finish, otherwise we could end up allocating
568 * from a block group who's cache gets evicted for one reason or
569 * another.
570 */
571 while (cache->cached == BTRFS_CACHE_FAST) {
572 struct btrfs_caching_control *ctl;
573
574 ctl = cache->caching_ctl;
575 atomic_inc(&ctl->count);
576 prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE);
577 spin_unlock(&cache->lock);
578
579 schedule();
580
581 finish_wait(&ctl->wait, &wait);
582 put_caching_control(ctl);
583 spin_lock(&cache->lock);
584 }
585
586 if (cache->cached != BTRFS_CACHE_NO) {
587 spin_unlock(&cache->lock);
588 kfree(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400589 return 0;
Josef Bacik291c7d22011-11-14 13:52:14 -0500590 }
591 WARN_ON(cache->caching_ctl);
592 cache->caching_ctl = caching_ctl;
593 cache->cached = BTRFS_CACHE_FAST;
594 spin_unlock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400595
Josef Bacikd53ba472012-04-12 16:03:57 -0400596 if (fs_info->mount_opt & BTRFS_MOUNT_SPACE_CACHE) {
Josef Bacik9d66e232010-08-25 16:54:15 -0400597 ret = load_free_space_cache(fs_info, cache);
598
599 spin_lock(&cache->lock);
600 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500601 cache->caching_ctl = NULL;
Josef Bacik9d66e232010-08-25 16:54:15 -0400602 cache->cached = BTRFS_CACHE_FINISHED;
603 cache->last_byte_to_unpin = (u64)-1;
604 } else {
Josef Bacik291c7d22011-11-14 13:52:14 -0500605 if (load_cache_only) {
606 cache->caching_ctl = NULL;
607 cache->cached = BTRFS_CACHE_NO;
608 } else {
609 cache->cached = BTRFS_CACHE_STARTED;
610 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400611 }
612 spin_unlock(&cache->lock);
Josef Bacik291c7d22011-11-14 13:52:14 -0500613 wake_up(&caching_ctl->wait);
Josef Bacik3c148742011-02-02 15:53:47 +0000614 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500615 put_caching_control(caching_ctl);
Josef Bacik3c148742011-02-02 15:53:47 +0000616 free_excluded_extents(fs_info->extent_root, cache);
Josef Bacik9d66e232010-08-25 16:54:15 -0400617 return 0;
Josef Bacik3c148742011-02-02 15:53:47 +0000618 }
Josef Bacik291c7d22011-11-14 13:52:14 -0500619 } else {
620 /*
621 * We are not going to do the fast caching, set cached to the
622 * appropriate value and wakeup any waiters.
623 */
624 spin_lock(&cache->lock);
625 if (load_cache_only) {
626 cache->caching_ctl = NULL;
627 cache->cached = BTRFS_CACHE_NO;
628 } else {
629 cache->cached = BTRFS_CACHE_STARTED;
630 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400631 spin_unlock(&cache->lock);
Josef Bacik291c7d22011-11-14 13:52:14 -0500632 wake_up(&caching_ctl->wait);
633 }
634
635 if (load_cache_only) {
636 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400637 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400638 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400639
Josef Bacik9e351cc2014-03-13 15:42:13 -0400640 down_write(&fs_info->commit_root_sem);
Josef Bacik291c7d22011-11-14 13:52:14 -0500641 atomic_inc(&caching_ctl->count);
Yan Zheng11833d62009-09-11 16:11:19 -0400642 list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400643 up_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -0400644
Josef Bacik11dfe352009-11-13 20:12:59 +0000645 btrfs_get_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -0400646
Qu Wenruoe66f0bb2014-02-28 10:46:12 +0800647 btrfs_queue_work(fs_info->caching_workers, &caching_ctl->work);
Josef Bacik817d52f2009-07-13 21:29:25 -0400648
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400649 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -0400650}
651
Josef Bacik0f9dd462008-09-23 13:14:11 -0400652/*
653 * return the block group that starts at or after bytenr
654 */
Chris Masond3977122009-01-05 21:25:51 -0500655static struct btrfs_block_group_cache *
656btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
Chris Mason0ef3e662008-05-24 14:04:53 -0400657{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400658 struct btrfs_block_group_cache *cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400659
Josef Bacik0f9dd462008-09-23 13:14:11 -0400660 cache = block_group_cache_tree_search(info, bytenr, 0);
Chris Mason0ef3e662008-05-24 14:04:53 -0400661
Josef Bacik0f9dd462008-09-23 13:14:11 -0400662 return cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400663}
664
Josef Bacik0f9dd462008-09-23 13:14:11 -0400665/*
Sankar P9f556842009-05-14 13:52:22 -0400666 * return the block group that contains the given bytenr
Josef Bacik0f9dd462008-09-23 13:14:11 -0400667 */
Chris Masond3977122009-01-05 21:25:51 -0500668struct btrfs_block_group_cache *btrfs_lookup_block_group(
669 struct btrfs_fs_info *info,
670 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400671{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400672 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -0400673
Josef Bacik0f9dd462008-09-23 13:14:11 -0400674 cache = block_group_cache_tree_search(info, bytenr, 1);
Chris Mason96b51792007-10-15 16:15:19 -0400675
Josef Bacik0f9dd462008-09-23 13:14:11 -0400676 return cache;
Chris Masonbe744172007-05-06 10:15:01 -0400677}
Chris Mason0b86a832008-03-24 15:01:56 -0400678
Josef Bacik0f9dd462008-09-23 13:14:11 -0400679static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
680 u64 flags)
Chris Mason6324fbf2008-03-24 15:01:59 -0400681{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400682 struct list_head *head = &info->space_info;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400683 struct btrfs_space_info *found;
Chris Mason4184ea72009-03-10 12:39:20 -0400684
Ilya Dryomov52ba6922012-01-16 22:04:47 +0200685 flags &= BTRFS_BLOCK_GROUP_TYPE_MASK;
Yan, Zhengb742bb82010-05-16 10:46:24 -0400686
Chris Mason4184ea72009-03-10 12:39:20 -0400687 rcu_read_lock();
688 list_for_each_entry_rcu(found, head, list) {
Josef Bacik67377732010-09-16 16:19:09 -0400689 if (found->flags & flags) {
Chris Mason4184ea72009-03-10 12:39:20 -0400690 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400691 return found;
Chris Mason4184ea72009-03-10 12:39:20 -0400692 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400693 }
Chris Mason4184ea72009-03-10 12:39:20 -0400694 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400695 return NULL;
Chris Mason6324fbf2008-03-24 15:01:59 -0400696}
697
Chris Mason4184ea72009-03-10 12:39:20 -0400698/*
699 * after adding space to the filesystem, we need to clear the full flags
700 * on all the space infos.
701 */
702void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
703{
704 struct list_head *head = &info->space_info;
705 struct btrfs_space_info *found;
706
707 rcu_read_lock();
708 list_for_each_entry_rcu(found, head, list)
709 found->full = 0;
710 rcu_read_unlock();
711}
712
Chris Masone02119d2008-09-05 16:13:11 -0400713/* simple helper to search for an existing extent at a given offset */
Zheng Yan31840ae2008-09-23 13:14:14 -0400714int btrfs_lookup_extent(struct btrfs_root *root, u64 start, u64 len)
Chris Masone02119d2008-09-05 16:13:11 -0400715{
716 int ret;
717 struct btrfs_key key;
Zheng Yan31840ae2008-09-23 13:14:14 -0400718 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -0400719
Zheng Yan31840ae2008-09-23 13:14:14 -0400720 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700721 if (!path)
722 return -ENOMEM;
723
Chris Masone02119d2008-09-05 16:13:11 -0400724 key.objectid = start;
725 key.offset = len;
Josef Bacik3173a182013-03-07 14:22:04 -0500726 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -0400727 ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path,
728 0, 0);
Josef Bacik3173a182013-03-07 14:22:04 -0500729 if (ret > 0) {
730 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
731 if (key.objectid == start &&
732 key.type == BTRFS_METADATA_ITEM_KEY)
733 ret = 0;
734 }
Zheng Yan31840ae2008-09-23 13:14:14 -0400735 btrfs_free_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -0500736 return ret;
737}
738
Chris Masond8d5f3e2007-12-11 12:42:00 -0500739/*
Josef Bacik3173a182013-03-07 14:22:04 -0500740 * helper function to lookup reference count and flags of a tree block.
Yan, Zhenga22285a2010-05-16 10:48:46 -0400741 *
742 * the head node for delayed ref is used to store the sum of all the
743 * reference count modifications queued up in the rbtree. the head
744 * node may also store the extent flags to set. This way you can check
745 * to see what the reference count and extent flags would be if all of
746 * the delayed refs are not processed.
747 */
748int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
749 struct btrfs_root *root, u64 bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -0500750 u64 offset, int metadata, u64 *refs, u64 *flags)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400751{
752 struct btrfs_delayed_ref_head *head;
753 struct btrfs_delayed_ref_root *delayed_refs;
754 struct btrfs_path *path;
755 struct btrfs_extent_item *ei;
756 struct extent_buffer *leaf;
757 struct btrfs_key key;
758 u32 item_size;
759 u64 num_refs;
760 u64 extent_flags;
761 int ret;
762
Josef Bacik3173a182013-03-07 14:22:04 -0500763 /*
764 * If we don't have skinny metadata, don't bother doing anything
765 * different
766 */
767 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) {
David Sterba707e8a02014-06-04 19:22:26 +0200768 offset = root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500769 metadata = 0;
770 }
771
Yan, Zhenga22285a2010-05-16 10:48:46 -0400772 path = btrfs_alloc_path();
773 if (!path)
774 return -ENOMEM;
775
Yan, Zhenga22285a2010-05-16 10:48:46 -0400776 if (!trans) {
777 path->skip_locking = 1;
778 path->search_commit_root = 1;
779 }
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000780
781search_again:
782 key.objectid = bytenr;
783 key.offset = offset;
784 if (metadata)
785 key.type = BTRFS_METADATA_ITEM_KEY;
786 else
787 key.type = BTRFS_EXTENT_ITEM_KEY;
788
Yan, Zhenga22285a2010-05-16 10:48:46 -0400789again:
790 ret = btrfs_search_slot(trans, root->fs_info->extent_root,
791 &key, path, 0, 0);
792 if (ret < 0)
793 goto out_free;
794
Josef Bacik3173a182013-03-07 14:22:04 -0500795 if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) {
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100796 if (path->slots[0]) {
797 path->slots[0]--;
798 btrfs_item_key_to_cpu(path->nodes[0], &key,
799 path->slots[0]);
800 if (key.objectid == bytenr &&
801 key.type == BTRFS_EXTENT_ITEM_KEY &&
David Sterba707e8a02014-06-04 19:22:26 +0200802 key.offset == root->nodesize)
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100803 ret = 0;
804 }
805 if (ret) {
806 key.objectid = bytenr;
807 key.type = BTRFS_EXTENT_ITEM_KEY;
David Sterba707e8a02014-06-04 19:22:26 +0200808 key.offset = root->nodesize;
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100809 btrfs_release_path(path);
810 goto again;
811 }
Josef Bacik3173a182013-03-07 14:22:04 -0500812 }
813
Yan, Zhenga22285a2010-05-16 10:48:46 -0400814 if (ret == 0) {
815 leaf = path->nodes[0];
816 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
817 if (item_size >= sizeof(*ei)) {
818 ei = btrfs_item_ptr(leaf, path->slots[0],
819 struct btrfs_extent_item);
820 num_refs = btrfs_extent_refs(leaf, ei);
821 extent_flags = btrfs_extent_flags(leaf, ei);
822 } else {
823#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
824 struct btrfs_extent_item_v0 *ei0;
825 BUG_ON(item_size != sizeof(*ei0));
826 ei0 = btrfs_item_ptr(leaf, path->slots[0],
827 struct btrfs_extent_item_v0);
828 num_refs = btrfs_extent_refs_v0(leaf, ei0);
829 /* FIXME: this isn't correct for data */
830 extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
831#else
832 BUG();
833#endif
834 }
835 BUG_ON(num_refs == 0);
836 } else {
837 num_refs = 0;
838 extent_flags = 0;
839 ret = 0;
840 }
841
842 if (!trans)
843 goto out;
844
845 delayed_refs = &trans->transaction->delayed_refs;
846 spin_lock(&delayed_refs->lock);
847 head = btrfs_find_delayed_ref_head(trans, bytenr);
848 if (head) {
849 if (!mutex_trylock(&head->mutex)) {
850 atomic_inc(&head->node.refs);
851 spin_unlock(&delayed_refs->lock);
852
David Sterbab3b4aa72011-04-21 01:20:15 +0200853 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400854
David Sterba8cc33e52011-05-02 15:29:25 +0200855 /*
856 * Mutex was contended, block until it's released and try
857 * again
858 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400859 mutex_lock(&head->mutex);
860 mutex_unlock(&head->mutex);
861 btrfs_put_delayed_ref(&head->node);
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000862 goto search_again;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400863 }
Josef Bacikd7df2c72014-01-23 09:21:38 -0500864 spin_lock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400865 if (head->extent_op && head->extent_op->update_flags)
866 extent_flags |= head->extent_op->flags_to_set;
867 else
868 BUG_ON(num_refs == 0);
869
870 num_refs += head->node.ref_mod;
Josef Bacikd7df2c72014-01-23 09:21:38 -0500871 spin_unlock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400872 mutex_unlock(&head->mutex);
873 }
874 spin_unlock(&delayed_refs->lock);
875out:
876 WARN_ON(num_refs == 0);
877 if (refs)
878 *refs = num_refs;
879 if (flags)
880 *flags = extent_flags;
881out_free:
882 btrfs_free_path(path);
883 return ret;
884}
885
886/*
Chris Masond8d5f3e2007-12-11 12:42:00 -0500887 * Back reference rules. Back refs have three main goals:
888 *
889 * 1) differentiate between all holders of references to an extent so that
890 * when a reference is dropped we can make sure it was a valid reference
891 * before freeing the extent.
892 *
893 * 2) Provide enough information to quickly find the holders of an extent
894 * if we notice a given block is corrupted or bad.
895 *
896 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
897 * maintenance. This is actually the same as #2, but with a slightly
898 * different use case.
899 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400900 * There are two kinds of back refs. The implicit back refs is optimized
901 * for pointers in non-shared tree blocks. For a given pointer in a block,
902 * back refs of this kind provide information about the block's owner tree
903 * and the pointer's key. These information allow us to find the block by
904 * b-tree searching. The full back refs is for pointers in tree blocks not
905 * referenced by their owner trees. The location of tree block is recorded
906 * in the back refs. Actually the full back refs is generic, and can be
907 * used in all cases the implicit back refs is used. The major shortcoming
908 * of the full back refs is its overhead. Every time a tree block gets
909 * COWed, we have to update back refs entry for all pointers in it.
910 *
911 * For a newly allocated tree block, we use implicit back refs for
912 * pointers in it. This means most tree related operations only involve
913 * implicit back refs. For a tree block created in old transaction, the
914 * only way to drop a reference to it is COW it. So we can detect the
915 * event that tree block loses its owner tree's reference and do the
916 * back refs conversion.
917 *
918 * When a tree block is COW'd through a tree, there are four cases:
919 *
920 * The reference count of the block is one and the tree is the block's
921 * owner tree. Nothing to do in this case.
922 *
923 * The reference count of the block is one and the tree is not the
924 * block's owner tree. In this case, full back refs is used for pointers
925 * in the block. Remove these full back refs, add implicit back refs for
926 * every pointers in the new block.
927 *
928 * The reference count of the block is greater than one and the tree is
929 * the block's owner tree. In this case, implicit back refs is used for
930 * pointers in the block. Add full back refs for every pointers in the
931 * block, increase lower level extents' reference counts. The original
932 * implicit back refs are entailed to the new block.
933 *
934 * The reference count of the block is greater than one and the tree is
935 * not the block's owner tree. Add implicit back refs for every pointer in
936 * the new block, increase lower level extents' reference count.
937 *
938 * Back Reference Key composing:
939 *
940 * The key objectid corresponds to the first byte in the extent,
941 * The key type is used to differentiate between types of back refs.
942 * There are different meanings of the key offset for different types
943 * of back refs.
944 *
Chris Masond8d5f3e2007-12-11 12:42:00 -0500945 * File extents can be referenced by:
946 *
947 * - multiple snapshots, subvolumes, or different generations in one subvol
Zheng Yan31840ae2008-09-23 13:14:14 -0400948 * - different files inside a single subvolume
Chris Masond8d5f3e2007-12-11 12:42:00 -0500949 * - different offsets inside a file (bookend extents in file.c)
950 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400951 * The extent ref structure for the implicit back refs has fields for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500952 *
953 * - Objectid of the subvolume root
Chris Masond8d5f3e2007-12-11 12:42:00 -0500954 * - objectid of the file holding the reference
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400955 * - original offset in the file
956 * - how many bookend extents
Zheng Yan31840ae2008-09-23 13:14:14 -0400957 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400958 * The key offset for the implicit back refs is hash of the first
959 * three fields.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500960 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400961 * The extent ref structure for the full back refs has field for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500962 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400963 * - number of pointers in the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500964 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400965 * The key offset for the implicit back refs is the first byte of
966 * the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500967 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400968 * When a file extent is allocated, The implicit back refs is used.
969 * the fields are filled in:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500970 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400971 * (root_key.objectid, inode objectid, offset in file, 1)
972 *
973 * When a file extent is removed file truncation, we find the
974 * corresponding implicit back refs and check the following fields:
975 *
976 * (btrfs_header_owner(leaf), inode objectid, offset in file)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500977 *
978 * Btree extents can be referenced by:
979 *
980 * - Different subvolumes
Chris Masond8d5f3e2007-12-11 12:42:00 -0500981 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400982 * Both the implicit back refs and the full back refs for tree blocks
983 * only consist of key. The key offset for the implicit back refs is
984 * objectid of block's owner tree. The key offset for the full back refs
985 * is the first byte of parent block.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500986 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400987 * When implicit back refs is used, information about the lowest key and
988 * level of the tree block are required. These information are stored in
989 * tree block info structure.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500990 */
Zheng Yan31840ae2008-09-23 13:14:14 -0400991
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400992#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
993static int convert_extent_item_v0(struct btrfs_trans_handle *trans,
994 struct btrfs_root *root,
995 struct btrfs_path *path,
996 u64 owner, u32 extra_size)
Chris Mason74493f72007-12-11 09:25:06 -0500997{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400998 struct btrfs_extent_item *item;
999 struct btrfs_extent_item_v0 *ei0;
1000 struct btrfs_extent_ref_v0 *ref0;
1001 struct btrfs_tree_block_info *bi;
Zheng Yan31840ae2008-09-23 13:14:14 -04001002 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001003 struct btrfs_key key;
1004 struct btrfs_key found_key;
1005 u32 new_size = sizeof(*item);
1006 u64 refs;
Chris Mason74493f72007-12-11 09:25:06 -05001007 int ret;
1008
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001009 leaf = path->nodes[0];
1010 BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0));
Chris Mason74493f72007-12-11 09:25:06 -05001011
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001012 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1013 ei0 = btrfs_item_ptr(leaf, path->slots[0],
1014 struct btrfs_extent_item_v0);
1015 refs = btrfs_extent_refs_v0(leaf, ei0);
1016
1017 if (owner == (u64)-1) {
1018 while (1) {
1019 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1020 ret = btrfs_next_leaf(root, path);
1021 if (ret < 0)
1022 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001023 BUG_ON(ret > 0); /* Corruption */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001024 leaf = path->nodes[0];
1025 }
1026 btrfs_item_key_to_cpu(leaf, &found_key,
1027 path->slots[0]);
1028 BUG_ON(key.objectid != found_key.objectid);
1029 if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) {
1030 path->slots[0]++;
1031 continue;
1032 }
1033 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1034 struct btrfs_extent_ref_v0);
1035 owner = btrfs_ref_objectid_v0(leaf, ref0);
1036 break;
1037 }
1038 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001039 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001040
1041 if (owner < BTRFS_FIRST_FREE_OBJECTID)
1042 new_size += sizeof(*bi);
1043
1044 new_size -= sizeof(*ei0);
1045 ret = btrfs_search_slot(trans, root, &key, path,
1046 new_size + extra_size, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04001047 if (ret < 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001048 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001049 BUG_ON(ret); /* Corruption */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001050
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00001051 btrfs_extend_item(root, path, new_size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001052
1053 leaf = path->nodes[0];
1054 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1055 btrfs_set_extent_refs(leaf, item, refs);
1056 /* FIXME: get real generation */
1057 btrfs_set_extent_generation(leaf, item, 0);
1058 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1059 btrfs_set_extent_flags(leaf, item,
1060 BTRFS_EXTENT_FLAG_TREE_BLOCK |
1061 BTRFS_BLOCK_FLAG_FULL_BACKREF);
1062 bi = (struct btrfs_tree_block_info *)(item + 1);
1063 /* FIXME: get first key of the block */
1064 memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi));
1065 btrfs_set_tree_block_level(leaf, bi, (int)owner);
1066 } else {
1067 btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA);
1068 }
1069 btrfs_mark_buffer_dirty(leaf);
1070 return 0;
1071}
1072#endif
1073
1074static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
1075{
1076 u32 high_crc = ~(u32)0;
1077 u32 low_crc = ~(u32)0;
1078 __le64 lenum;
1079
1080 lenum = cpu_to_le64(root_objectid);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001081 high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001082 lenum = cpu_to_le64(owner);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001083 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001084 lenum = cpu_to_le64(offset);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001085 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001086
1087 return ((u64)high_crc << 31) ^ (u64)low_crc;
1088}
1089
1090static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
1091 struct btrfs_extent_data_ref *ref)
1092{
1093 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
1094 btrfs_extent_data_ref_objectid(leaf, ref),
1095 btrfs_extent_data_ref_offset(leaf, ref));
1096}
1097
1098static int match_extent_data_ref(struct extent_buffer *leaf,
1099 struct btrfs_extent_data_ref *ref,
1100 u64 root_objectid, u64 owner, u64 offset)
1101{
1102 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
1103 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
1104 btrfs_extent_data_ref_offset(leaf, ref) != offset)
1105 return 0;
1106 return 1;
1107}
1108
1109static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
1110 struct btrfs_root *root,
1111 struct btrfs_path *path,
1112 u64 bytenr, u64 parent,
1113 u64 root_objectid,
1114 u64 owner, u64 offset)
1115{
1116 struct btrfs_key key;
1117 struct btrfs_extent_data_ref *ref;
1118 struct extent_buffer *leaf;
1119 u32 nritems;
1120 int ret;
1121 int recow;
1122 int err = -ENOENT;
1123
1124 key.objectid = bytenr;
1125 if (parent) {
1126 key.type = BTRFS_SHARED_DATA_REF_KEY;
1127 key.offset = parent;
1128 } else {
1129 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1130 key.offset = hash_extent_data_ref(root_objectid,
1131 owner, offset);
1132 }
1133again:
1134 recow = 0;
1135 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1136 if (ret < 0) {
1137 err = ret;
1138 goto fail;
1139 }
1140
1141 if (parent) {
1142 if (!ret)
1143 return 0;
1144#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1145 key.type = BTRFS_EXTENT_REF_V0_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02001146 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001147 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1148 if (ret < 0) {
1149 err = ret;
1150 goto fail;
1151 }
1152 if (!ret)
1153 return 0;
1154#endif
1155 goto fail;
Zheng Yan31840ae2008-09-23 13:14:14 -04001156 }
1157
1158 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001159 nritems = btrfs_header_nritems(leaf);
1160 while (1) {
1161 if (path->slots[0] >= nritems) {
1162 ret = btrfs_next_leaf(root, path);
1163 if (ret < 0)
1164 err = ret;
1165 if (ret)
1166 goto fail;
1167
1168 leaf = path->nodes[0];
1169 nritems = btrfs_header_nritems(leaf);
1170 recow = 1;
1171 }
1172
1173 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1174 if (key.objectid != bytenr ||
1175 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1176 goto fail;
1177
1178 ref = btrfs_item_ptr(leaf, path->slots[0],
1179 struct btrfs_extent_data_ref);
1180
1181 if (match_extent_data_ref(leaf, ref, root_objectid,
1182 owner, offset)) {
1183 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001184 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001185 goto again;
1186 }
1187 err = 0;
1188 break;
1189 }
1190 path->slots[0]++;
Zheng Yan31840ae2008-09-23 13:14:14 -04001191 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001192fail:
1193 return err;
Zheng Yan31840ae2008-09-23 13:14:14 -04001194}
1195
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001196static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
1197 struct btrfs_root *root,
1198 struct btrfs_path *path,
1199 u64 bytenr, u64 parent,
1200 u64 root_objectid, u64 owner,
1201 u64 offset, int refs_to_add)
Zheng Yan31840ae2008-09-23 13:14:14 -04001202{
1203 struct btrfs_key key;
1204 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001205 u32 size;
Zheng Yan31840ae2008-09-23 13:14:14 -04001206 u32 num_refs;
1207 int ret;
1208
1209 key.objectid = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001210 if (parent) {
1211 key.type = BTRFS_SHARED_DATA_REF_KEY;
1212 key.offset = parent;
1213 size = sizeof(struct btrfs_shared_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001214 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001215 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1216 key.offset = hash_extent_data_ref(root_objectid,
1217 owner, offset);
1218 size = sizeof(struct btrfs_extent_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001219 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001220
1221 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1222 if (ret && ret != -EEXIST)
1223 goto fail;
1224
1225 leaf = path->nodes[0];
1226 if (parent) {
1227 struct btrfs_shared_data_ref *ref;
1228 ref = btrfs_item_ptr(leaf, path->slots[0],
1229 struct btrfs_shared_data_ref);
1230 if (ret == 0) {
1231 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1232 } else {
1233 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1234 num_refs += refs_to_add;
1235 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
1236 }
1237 } else {
1238 struct btrfs_extent_data_ref *ref;
1239 while (ret == -EEXIST) {
1240 ref = btrfs_item_ptr(leaf, path->slots[0],
1241 struct btrfs_extent_data_ref);
1242 if (match_extent_data_ref(leaf, ref, root_objectid,
1243 owner, offset))
1244 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02001245 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001246 key.offset++;
1247 ret = btrfs_insert_empty_item(trans, root, path, &key,
1248 size);
1249 if (ret && ret != -EEXIST)
1250 goto fail;
1251
1252 leaf = path->nodes[0];
1253 }
1254 ref = btrfs_item_ptr(leaf, path->slots[0],
1255 struct btrfs_extent_data_ref);
1256 if (ret == 0) {
1257 btrfs_set_extent_data_ref_root(leaf, ref,
1258 root_objectid);
1259 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1260 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1261 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1262 } else {
1263 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1264 num_refs += refs_to_add;
1265 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
1266 }
1267 }
1268 btrfs_mark_buffer_dirty(leaf);
1269 ret = 0;
1270fail:
David Sterbab3b4aa72011-04-21 01:20:15 +02001271 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05001272 return ret;
Chris Mason74493f72007-12-11 09:25:06 -05001273}
1274
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001275static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
1276 struct btrfs_root *root,
1277 struct btrfs_path *path,
Josef Bacikfcebe452014-05-13 17:30:47 -07001278 int refs_to_drop, int *last_ref)
Zheng Yan31840ae2008-09-23 13:14:14 -04001279{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001280 struct btrfs_key key;
1281 struct btrfs_extent_data_ref *ref1 = NULL;
1282 struct btrfs_shared_data_ref *ref2 = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -04001283 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001284 u32 num_refs = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04001285 int ret = 0;
1286
1287 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001288 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1289
1290 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1291 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1292 struct btrfs_extent_data_ref);
1293 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1294 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1295 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1296 struct btrfs_shared_data_ref);
1297 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1298#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1299 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1300 struct btrfs_extent_ref_v0 *ref0;
1301 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1302 struct btrfs_extent_ref_v0);
1303 num_refs = btrfs_ref_count_v0(leaf, ref0);
1304#endif
1305 } else {
1306 BUG();
1307 }
1308
Chris Mason56bec292009-03-13 10:10:06 -04001309 BUG_ON(num_refs < refs_to_drop);
1310 num_refs -= refs_to_drop;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001311
Zheng Yan31840ae2008-09-23 13:14:14 -04001312 if (num_refs == 0) {
1313 ret = btrfs_del_item(trans, root, path);
Josef Bacikfcebe452014-05-13 17:30:47 -07001314 *last_ref = 1;
Zheng Yan31840ae2008-09-23 13:14:14 -04001315 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001316 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1317 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1318 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1319 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
1320#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1321 else {
1322 struct btrfs_extent_ref_v0 *ref0;
1323 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1324 struct btrfs_extent_ref_v0);
1325 btrfs_set_ref_count_v0(leaf, ref0, num_refs);
1326 }
1327#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04001328 btrfs_mark_buffer_dirty(leaf);
1329 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001330 return ret;
1331}
1332
1333static noinline u32 extent_data_ref_count(struct btrfs_root *root,
1334 struct btrfs_path *path,
1335 struct btrfs_extent_inline_ref *iref)
1336{
1337 struct btrfs_key key;
1338 struct extent_buffer *leaf;
1339 struct btrfs_extent_data_ref *ref1;
1340 struct btrfs_shared_data_ref *ref2;
1341 u32 num_refs = 0;
1342
1343 leaf = path->nodes[0];
1344 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1345 if (iref) {
1346 if (btrfs_extent_inline_ref_type(leaf, iref) ==
1347 BTRFS_EXTENT_DATA_REF_KEY) {
1348 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1349 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1350 } else {
1351 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1352 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1353 }
1354 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1355 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1356 struct btrfs_extent_data_ref);
1357 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1358 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1359 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1360 struct btrfs_shared_data_ref);
1361 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1362#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1363 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1364 struct btrfs_extent_ref_v0 *ref0;
1365 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1366 struct btrfs_extent_ref_v0);
1367 num_refs = btrfs_ref_count_v0(leaf, ref0);
1368#endif
1369 } else {
1370 WARN_ON(1);
1371 }
1372 return num_refs;
1373}
1374
1375static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
1376 struct btrfs_root *root,
1377 struct btrfs_path *path,
1378 u64 bytenr, u64 parent,
1379 u64 root_objectid)
1380{
1381 struct btrfs_key key;
1382 int ret;
1383
1384 key.objectid = bytenr;
1385 if (parent) {
1386 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1387 key.offset = parent;
1388 } else {
1389 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1390 key.offset = root_objectid;
1391 }
1392
1393 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1394 if (ret > 0)
1395 ret = -ENOENT;
1396#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1397 if (ret == -ENOENT && parent) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001398 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001399 key.type = BTRFS_EXTENT_REF_V0_KEY;
1400 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1401 if (ret > 0)
1402 ret = -ENOENT;
1403 }
1404#endif
1405 return ret;
1406}
1407
1408static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
1409 struct btrfs_root *root,
1410 struct btrfs_path *path,
1411 u64 bytenr, u64 parent,
1412 u64 root_objectid)
1413{
1414 struct btrfs_key key;
1415 int ret;
1416
1417 key.objectid = bytenr;
1418 if (parent) {
1419 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1420 key.offset = parent;
1421 } else {
1422 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1423 key.offset = root_objectid;
1424 }
1425
1426 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
David Sterbab3b4aa72011-04-21 01:20:15 +02001427 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04001428 return ret;
1429}
1430
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001431static inline int extent_ref_type(u64 parent, u64 owner)
1432{
1433 int type;
1434 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1435 if (parent > 0)
1436 type = BTRFS_SHARED_BLOCK_REF_KEY;
1437 else
1438 type = BTRFS_TREE_BLOCK_REF_KEY;
1439 } else {
1440 if (parent > 0)
1441 type = BTRFS_SHARED_DATA_REF_KEY;
1442 else
1443 type = BTRFS_EXTENT_DATA_REF_KEY;
1444 }
1445 return type;
1446}
1447
Yan Zheng2c47e6052009-06-27 21:07:35 -04001448static int find_next_key(struct btrfs_path *path, int level,
1449 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001450
1451{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001452 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001453 if (!path->nodes[level])
1454 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001455 if (path->slots[level] + 1 >=
1456 btrfs_header_nritems(path->nodes[level]))
1457 continue;
1458 if (level == 0)
1459 btrfs_item_key_to_cpu(path->nodes[level], key,
1460 path->slots[level] + 1);
1461 else
1462 btrfs_node_key_to_cpu(path->nodes[level], key,
1463 path->slots[level] + 1);
1464 return 0;
1465 }
1466 return 1;
1467}
1468
1469/*
1470 * look for inline back ref. if back ref is found, *ref_ret is set
1471 * to the address of inline back ref, and 0 is returned.
1472 *
1473 * if back ref isn't found, *ref_ret is set to the address where it
1474 * should be inserted, and -ENOENT is returned.
1475 *
1476 * if insert is true and there are too many inline back refs, the path
1477 * points to the extent item, and -EAGAIN is returned.
1478 *
1479 * NOTE: inline back refs are ordered in the same way that back ref
1480 * items in the tree are ordered.
1481 */
1482static noinline_for_stack
1483int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
1484 struct btrfs_root *root,
1485 struct btrfs_path *path,
1486 struct btrfs_extent_inline_ref **ref_ret,
1487 u64 bytenr, u64 num_bytes,
1488 u64 parent, u64 root_objectid,
1489 u64 owner, u64 offset, int insert)
1490{
1491 struct btrfs_key key;
1492 struct extent_buffer *leaf;
1493 struct btrfs_extent_item *ei;
1494 struct btrfs_extent_inline_ref *iref;
1495 u64 flags;
1496 u64 item_size;
1497 unsigned long ptr;
1498 unsigned long end;
1499 int extra_size;
1500 int type;
1501 int want;
1502 int ret;
1503 int err = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05001504 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
1505 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001506
1507 key.objectid = bytenr;
1508 key.type = BTRFS_EXTENT_ITEM_KEY;
1509 key.offset = num_bytes;
1510
1511 want = extent_ref_type(parent, owner);
1512 if (insert) {
1513 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001514 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001515 } else
1516 extra_size = -1;
Josef Bacik3173a182013-03-07 14:22:04 -05001517
1518 /*
1519 * Owner is our parent level, so we can just add one to get the level
1520 * for the block we are interested in.
1521 */
1522 if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) {
1523 key.type = BTRFS_METADATA_ITEM_KEY;
1524 key.offset = owner;
1525 }
1526
1527again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001528 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1529 if (ret < 0) {
1530 err = ret;
1531 goto out;
1532 }
Josef Bacik3173a182013-03-07 14:22:04 -05001533
1534 /*
1535 * We may be a newly converted file system which still has the old fat
1536 * extent entries for metadata, so try and see if we have one of those.
1537 */
1538 if (ret > 0 && skinny_metadata) {
1539 skinny_metadata = false;
1540 if (path->slots[0]) {
1541 path->slots[0]--;
1542 btrfs_item_key_to_cpu(path->nodes[0], &key,
1543 path->slots[0]);
1544 if (key.objectid == bytenr &&
1545 key.type == BTRFS_EXTENT_ITEM_KEY &&
1546 key.offset == num_bytes)
1547 ret = 0;
1548 }
1549 if (ret) {
Filipe Manana9ce49a02014-04-24 15:15:28 +01001550 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05001551 key.type = BTRFS_EXTENT_ITEM_KEY;
1552 key.offset = num_bytes;
1553 btrfs_release_path(path);
1554 goto again;
1555 }
1556 }
1557
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001558 if (ret && !insert) {
1559 err = -ENOENT;
1560 goto out;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301561 } else if (WARN_ON(ret)) {
Josef Bacik492104c2013-03-08 15:41:02 -05001562 err = -EIO;
Josef Bacik492104c2013-03-08 15:41:02 -05001563 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001564 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001565
1566 leaf = path->nodes[0];
1567 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1568#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1569 if (item_size < sizeof(*ei)) {
1570 if (!insert) {
1571 err = -ENOENT;
1572 goto out;
1573 }
1574 ret = convert_extent_item_v0(trans, root, path, owner,
1575 extra_size);
1576 if (ret < 0) {
1577 err = ret;
1578 goto out;
1579 }
1580 leaf = path->nodes[0];
1581 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1582 }
1583#endif
1584 BUG_ON(item_size < sizeof(*ei));
1585
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001586 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1587 flags = btrfs_extent_flags(leaf, ei);
1588
1589 ptr = (unsigned long)(ei + 1);
1590 end = (unsigned long)ei + item_size;
1591
Josef Bacik3173a182013-03-07 14:22:04 -05001592 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001593 ptr += sizeof(struct btrfs_tree_block_info);
1594 BUG_ON(ptr > end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001595 }
1596
1597 err = -ENOENT;
1598 while (1) {
1599 if (ptr >= end) {
1600 WARN_ON(ptr > end);
1601 break;
1602 }
1603 iref = (struct btrfs_extent_inline_ref *)ptr;
1604 type = btrfs_extent_inline_ref_type(leaf, iref);
1605 if (want < type)
1606 break;
1607 if (want > type) {
1608 ptr += btrfs_extent_inline_ref_size(type);
1609 continue;
1610 }
1611
1612 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1613 struct btrfs_extent_data_ref *dref;
1614 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1615 if (match_extent_data_ref(leaf, dref, root_objectid,
1616 owner, offset)) {
1617 err = 0;
1618 break;
1619 }
1620 if (hash_extent_data_ref_item(leaf, dref) <
1621 hash_extent_data_ref(root_objectid, owner, offset))
1622 break;
1623 } else {
1624 u64 ref_offset;
1625 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1626 if (parent > 0) {
1627 if (parent == ref_offset) {
1628 err = 0;
1629 break;
1630 }
1631 if (ref_offset < parent)
1632 break;
1633 } else {
1634 if (root_objectid == ref_offset) {
1635 err = 0;
1636 break;
1637 }
1638 if (ref_offset < root_objectid)
1639 break;
1640 }
1641 }
1642 ptr += btrfs_extent_inline_ref_size(type);
1643 }
1644 if (err == -ENOENT && insert) {
1645 if (item_size + extra_size >=
1646 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1647 err = -EAGAIN;
1648 goto out;
1649 }
1650 /*
1651 * To add new inline back ref, we have to make sure
1652 * there is no corresponding back ref item.
1653 * For simplicity, we just do not add new inline back
1654 * ref if there is any kind of item for this block
1655 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001656 if (find_next_key(path, 0, &key) == 0 &&
1657 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001658 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001659 err = -EAGAIN;
1660 goto out;
1661 }
1662 }
1663 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1664out:
Yan Zheng85d41982009-06-11 08:51:10 -04001665 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001666 path->keep_locks = 0;
1667 btrfs_unlock_up_safe(path, 1);
1668 }
1669 return err;
1670}
1671
1672/*
1673 * helper to add new inline back ref
1674 */
1675static noinline_for_stack
Tsutomu Itohfd279fa2013-04-16 05:19:11 +00001676void setup_inline_extent_backref(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001677 struct btrfs_path *path,
1678 struct btrfs_extent_inline_ref *iref,
1679 u64 parent, u64 root_objectid,
1680 u64 owner, u64 offset, int refs_to_add,
1681 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001682{
1683 struct extent_buffer *leaf;
1684 struct btrfs_extent_item *ei;
1685 unsigned long ptr;
1686 unsigned long end;
1687 unsigned long item_offset;
1688 u64 refs;
1689 int size;
1690 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001691
1692 leaf = path->nodes[0];
1693 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1694 item_offset = (unsigned long)iref - (unsigned long)ei;
1695
1696 type = extent_ref_type(parent, owner);
1697 size = btrfs_extent_inline_ref_size(type);
1698
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00001699 btrfs_extend_item(root, path, size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001700
1701 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1702 refs = btrfs_extent_refs(leaf, ei);
1703 refs += refs_to_add;
1704 btrfs_set_extent_refs(leaf, ei, refs);
1705 if (extent_op)
1706 __run_delayed_extent_op(extent_op, leaf, ei);
1707
1708 ptr = (unsigned long)ei + item_offset;
1709 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1710 if (ptr < end - size)
1711 memmove_extent_buffer(leaf, ptr + size, ptr,
1712 end - size - ptr);
1713
1714 iref = (struct btrfs_extent_inline_ref *)ptr;
1715 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1716 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1717 struct btrfs_extent_data_ref *dref;
1718 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1719 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1720 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1721 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1722 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1723 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1724 struct btrfs_shared_data_ref *sref;
1725 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1726 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1727 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1728 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1729 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1730 } else {
1731 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1732 }
1733 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001734}
1735
1736static int lookup_extent_backref(struct btrfs_trans_handle *trans,
1737 struct btrfs_root *root,
1738 struct btrfs_path *path,
1739 struct btrfs_extent_inline_ref **ref_ret,
1740 u64 bytenr, u64 num_bytes, u64 parent,
1741 u64 root_objectid, u64 owner, u64 offset)
1742{
1743 int ret;
1744
1745 ret = lookup_inline_extent_backref(trans, root, path, ref_ret,
1746 bytenr, num_bytes, parent,
1747 root_objectid, owner, offset, 0);
1748 if (ret != -ENOENT)
1749 return ret;
1750
David Sterbab3b4aa72011-04-21 01:20:15 +02001751 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001752 *ref_ret = NULL;
1753
1754 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1755 ret = lookup_tree_block_ref(trans, root, path, bytenr, parent,
1756 root_objectid);
1757 } else {
1758 ret = lookup_extent_data_ref(trans, root, path, bytenr, parent,
1759 root_objectid, owner, offset);
1760 }
1761 return ret;
1762}
1763
1764/*
1765 * helper to update/remove inline back ref
1766 */
1767static noinline_for_stack
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001768void update_inline_extent_backref(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001769 struct btrfs_path *path,
1770 struct btrfs_extent_inline_ref *iref,
1771 int refs_to_mod,
Josef Bacikfcebe452014-05-13 17:30:47 -07001772 struct btrfs_delayed_extent_op *extent_op,
1773 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001774{
1775 struct extent_buffer *leaf;
1776 struct btrfs_extent_item *ei;
1777 struct btrfs_extent_data_ref *dref = NULL;
1778 struct btrfs_shared_data_ref *sref = NULL;
1779 unsigned long ptr;
1780 unsigned long end;
1781 u32 item_size;
1782 int size;
1783 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001784 u64 refs;
1785
1786 leaf = path->nodes[0];
1787 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1788 refs = btrfs_extent_refs(leaf, ei);
1789 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1790 refs += refs_to_mod;
1791 btrfs_set_extent_refs(leaf, ei, refs);
1792 if (extent_op)
1793 __run_delayed_extent_op(extent_op, leaf, ei);
1794
1795 type = btrfs_extent_inline_ref_type(leaf, iref);
1796
1797 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1798 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1799 refs = btrfs_extent_data_ref_count(leaf, dref);
1800 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1801 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1802 refs = btrfs_shared_data_ref_count(leaf, sref);
1803 } else {
1804 refs = 1;
1805 BUG_ON(refs_to_mod != -1);
1806 }
1807
1808 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1809 refs += refs_to_mod;
1810
1811 if (refs > 0) {
1812 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1813 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1814 else
1815 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1816 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001817 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001818 size = btrfs_extent_inline_ref_size(type);
1819 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1820 ptr = (unsigned long)iref;
1821 end = (unsigned long)ei + item_size;
1822 if (ptr + size < end)
1823 memmove_extent_buffer(leaf, ptr, ptr + size,
1824 end - ptr - size);
1825 item_size -= size;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001826 btrfs_truncate_item(root, path, item_size, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001827 }
1828 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001829}
1830
1831static noinline_for_stack
1832int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
1833 struct btrfs_root *root,
1834 struct btrfs_path *path,
1835 u64 bytenr, u64 num_bytes, u64 parent,
1836 u64 root_objectid, u64 owner,
1837 u64 offset, int refs_to_add,
1838 struct btrfs_delayed_extent_op *extent_op)
1839{
1840 struct btrfs_extent_inline_ref *iref;
1841 int ret;
1842
1843 ret = lookup_inline_extent_backref(trans, root, path, &iref,
1844 bytenr, num_bytes, parent,
1845 root_objectid, owner, offset, 1);
1846 if (ret == 0) {
1847 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001848 update_inline_extent_backref(root, path, iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001849 refs_to_add, extent_op, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001850 } else if (ret == -ENOENT) {
Tsutomu Itohfd279fa2013-04-16 05:19:11 +00001851 setup_inline_extent_backref(root, path, iref, parent,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001852 root_objectid, owner, offset,
1853 refs_to_add, extent_op);
1854 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001855 }
1856 return ret;
1857}
1858
1859static int insert_extent_backref(struct btrfs_trans_handle *trans,
1860 struct btrfs_root *root,
1861 struct btrfs_path *path,
1862 u64 bytenr, u64 parent, u64 root_objectid,
1863 u64 owner, u64 offset, int refs_to_add)
1864{
1865 int ret;
1866 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1867 BUG_ON(refs_to_add != 1);
1868 ret = insert_tree_block_ref(trans, root, path, bytenr,
1869 parent, root_objectid);
1870 } else {
1871 ret = insert_extent_data_ref(trans, root, path, bytenr,
1872 parent, root_objectid,
1873 owner, offset, refs_to_add);
1874 }
1875 return ret;
1876}
1877
1878static int remove_extent_backref(struct btrfs_trans_handle *trans,
1879 struct btrfs_root *root,
1880 struct btrfs_path *path,
1881 struct btrfs_extent_inline_ref *iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001882 int refs_to_drop, int is_data, int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001883{
Jeff Mahoney143bede2012-03-01 14:56:26 +01001884 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001885
1886 BUG_ON(!is_data && refs_to_drop != 1);
1887 if (iref) {
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001888 update_inline_extent_backref(root, path, iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001889 -refs_to_drop, NULL, last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001890 } else if (is_data) {
Josef Bacikfcebe452014-05-13 17:30:47 -07001891 ret = remove_extent_data_ref(trans, root, path, refs_to_drop,
1892 last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001893 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001894 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001895 ret = btrfs_del_item(trans, root, path);
1896 }
1897 return ret;
1898}
1899
Li Dongyang5378e602011-03-24 10:24:27 +00001900static int btrfs_issue_discard(struct block_device *bdev,
Chris Mason15916de2008-11-19 21:17:22 -05001901 u64 start, u64 len)
1902{
Li Dongyang5378e602011-03-24 10:24:27 +00001903 return blkdev_issue_discard(bdev, start >> 9, len >> 9, GFP_NOFS, 0);
Chris Mason15916de2008-11-19 21:17:22 -05001904}
Chris Mason15916de2008-11-19 21:17:22 -05001905
Liu Hui1f3c79a2009-01-05 15:57:51 -05001906static int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr,
Li Dongyang5378e602011-03-24 10:24:27 +00001907 u64 num_bytes, u64 *actual_bytes)
Liu Hui1f3c79a2009-01-05 15:57:51 -05001908{
Liu Hui1f3c79a2009-01-05 15:57:51 -05001909 int ret;
Li Dongyang5378e602011-03-24 10:24:27 +00001910 u64 discarded_bytes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02001911 struct btrfs_bio *bbio = NULL;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001912
Christoph Hellwige244a0a2009-10-14 09:24:59 -04001913
Liu Hui1f3c79a2009-01-05 15:57:51 -05001914 /* Tell the block device(s) that the sectors can be discarded */
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001915 ret = btrfs_map_block(root->fs_info, REQ_DISCARD,
Jan Schmidta1d3c472011-08-04 17:15:33 +02001916 bytenr, &num_bytes, &bbio, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001917 /* Error condition is -ENOMEM */
Liu Hui1f3c79a2009-01-05 15:57:51 -05001918 if (!ret) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02001919 struct btrfs_bio_stripe *stripe = bbio->stripes;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001920 int i;
1921
Liu Hui1f3c79a2009-01-05 15:57:51 -05001922
Jan Schmidta1d3c472011-08-04 17:15:33 +02001923 for (i = 0; i < bbio->num_stripes; i++, stripe++) {
Josef Bacikd5e20032011-08-04 14:52:27 +00001924 if (!stripe->dev->can_discard)
1925 continue;
1926
Li Dongyang5378e602011-03-24 10:24:27 +00001927 ret = btrfs_issue_discard(stripe->dev->bdev,
1928 stripe->physical,
1929 stripe->length);
1930 if (!ret)
1931 discarded_bytes += stripe->length;
1932 else if (ret != -EOPNOTSUPP)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001933 break; /* Logic errors or -ENOMEM, or -EIO but I don't know how that could happen JDM */
Josef Bacikd5e20032011-08-04 14:52:27 +00001934
1935 /*
1936 * Just in case we get back EOPNOTSUPP for some reason,
1937 * just ignore the return value so we don't screw up
1938 * people calling discard_extent.
1939 */
1940 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001941 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02001942 kfree(bbio);
Liu Hui1f3c79a2009-01-05 15:57:51 -05001943 }
Li Dongyang5378e602011-03-24 10:24:27 +00001944
1945 if (actual_bytes)
1946 *actual_bytes = discarded_bytes;
1947
Liu Hui1f3c79a2009-01-05 15:57:51 -05001948
David Woodhouse53b381b2013-01-29 18:40:14 -05001949 if (ret == -EOPNOTSUPP)
1950 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001951 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001952}
1953
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001954/* Can return -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001955int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1956 struct btrfs_root *root,
1957 u64 bytenr, u64 num_bytes, u64 parent,
Josef Bacikfcebe452014-05-13 17:30:47 -07001958 u64 root_objectid, u64 owner, u64 offset,
1959 int no_quota)
Zheng Yan31840ae2008-09-23 13:14:14 -04001960{
1961 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001962 struct btrfs_fs_info *fs_info = root->fs_info;
1963
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001964 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
1965 root_objectid == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04001966
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001967 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001968 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
1969 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001970 parent, root_objectid, (int)owner,
Josef Bacikfcebe452014-05-13 17:30:47 -07001971 BTRFS_ADD_DELAYED_REF, NULL, no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001972 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001973 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
1974 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001975 parent, root_objectid, owner, offset,
Josef Bacikfcebe452014-05-13 17:30:47 -07001976 BTRFS_ADD_DELAYED_REF, NULL, no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001977 }
Zheng Yan31840ae2008-09-23 13:14:14 -04001978 return ret;
1979}
1980
Chris Mason925baed2008-06-25 16:01:30 -04001981static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001982 struct btrfs_root *root,
1983 u64 bytenr, u64 num_bytes,
1984 u64 parent, u64 root_objectid,
1985 u64 owner, u64 offset, int refs_to_add,
Josef Bacikfcebe452014-05-13 17:30:47 -07001986 int no_quota,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001987 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04001988{
Josef Bacikfcebe452014-05-13 17:30:47 -07001989 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5caf2a02007-04-02 11:20:42 -04001990 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001991 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04001992 struct btrfs_extent_item *item;
Josef Bacikfcebe452014-05-13 17:30:47 -07001993 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001994 u64 refs;
1995 int ret;
Josef Bacikfcebe452014-05-13 17:30:47 -07001996 enum btrfs_qgroup_operation_type type = BTRFS_QGROUP_OPER_ADD_EXCL;
Chris Mason037e6392007-03-07 11:50:24 -05001997
Chris Mason5caf2a02007-04-02 11:20:42 -04001998 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001999 if (!path)
2000 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04002001
Josef Bacikfcebe452014-05-13 17:30:47 -07002002 if (!is_fstree(root_objectid) || !root->fs_info->quota_enabled)
2003 no_quota = 1;
2004
Chris Mason3c12ac72008-04-21 12:01:38 -04002005 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04002006 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002007 /* this will setup the path even if it fails to insert the back ref */
Josef Bacikfcebe452014-05-13 17:30:47 -07002008 ret = insert_inline_extent_backref(trans, fs_info->extent_root, path,
2009 bytenr, num_bytes, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002010 root_objectid, owner, offset,
2011 refs_to_add, extent_op);
Josef Bacikfcebe452014-05-13 17:30:47 -07002012 if ((ret < 0 && ret != -EAGAIN) || (!ret && no_quota))
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002013 goto out;
Josef Bacikfcebe452014-05-13 17:30:47 -07002014 /*
2015 * Ok we were able to insert an inline extent and it appears to be a new
2016 * reference, deal with the qgroup accounting.
2017 */
2018 if (!ret && !no_quota) {
2019 ASSERT(root->fs_info->quota_enabled);
2020 leaf = path->nodes[0];
2021 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2022 item = btrfs_item_ptr(leaf, path->slots[0],
2023 struct btrfs_extent_item);
2024 if (btrfs_extent_refs(leaf, item) > (u64)refs_to_add)
2025 type = BTRFS_QGROUP_OPER_ADD_SHARED;
2026 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04002027
Josef Bacikfcebe452014-05-13 17:30:47 -07002028 ret = btrfs_qgroup_record_ref(trans, fs_info, root_objectid,
2029 bytenr, num_bytes, type, 0);
2030 goto out;
2031 }
2032
2033 /*
2034 * Ok we had -EAGAIN which means we didn't have space to insert and
2035 * inline extent ref, so just update the reference count and add a
2036 * normal backref.
2037 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002038 leaf = path->nodes[0];
Josef Bacikfcebe452014-05-13 17:30:47 -07002039 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002040 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2041 refs = btrfs_extent_refs(leaf, item);
Josef Bacikfcebe452014-05-13 17:30:47 -07002042 if (refs)
2043 type = BTRFS_QGROUP_OPER_ADD_SHARED;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002044 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
2045 if (extent_op)
2046 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04002047
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002048 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002049 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05002050
Josef Bacikfcebe452014-05-13 17:30:47 -07002051 if (!no_quota) {
2052 ret = btrfs_qgroup_record_ref(trans, fs_info, root_objectid,
2053 bytenr, num_bytes, type, 0);
2054 if (ret)
2055 goto out;
2056 }
2057
Chris Mason3c12ac72008-04-21 12:01:38 -04002058 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04002059 path->leave_spinning = 1;
Chris Mason56bec292009-03-13 10:10:06 -04002060 /* now insert the actual backref */
Zheng Yan31840ae2008-09-23 13:14:14 -04002061 ret = insert_extent_backref(trans, root->fs_info->extent_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002062 path, bytenr, parent, root_objectid,
2063 owner, offset, refs_to_add);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002064 if (ret)
2065 btrfs_abort_transaction(trans, root, ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002066out:
Chris Mason74493f72007-12-11 09:25:06 -05002067 btrfs_free_path(path);
Liu Bo30d133f2013-10-11 16:30:23 +08002068 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002069}
2070
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002071static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
2072 struct btrfs_root *root,
2073 struct btrfs_delayed_ref_node *node,
2074 struct btrfs_delayed_extent_op *extent_op,
2075 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04002076{
Chris Mason56bec292009-03-13 10:10:06 -04002077 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002078 struct btrfs_delayed_data_ref *ref;
2079 struct btrfs_key ins;
2080 u64 parent = 0;
2081 u64 ref_root = 0;
2082 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002083
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002084 ins.objectid = node->bytenr;
2085 ins.offset = node->num_bytes;
2086 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04002087
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002088 ref = btrfs_delayed_node_to_data_ref(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002089 trace_run_delayed_data_ref(node, ref, node->action);
2090
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002091 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
2092 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002093 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002094
2095 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002096 if (extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002097 flags |= extent_op->flags_to_set;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002098 ret = alloc_reserved_file_extent(trans, root,
2099 parent, ref_root, flags,
2100 ref->objectid, ref->offset,
2101 &ins, node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002102 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
2103 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
2104 node->num_bytes, parent,
2105 ref_root, ref->objectid,
2106 ref->offset, node->ref_mod,
Josef Bacikfcebe452014-05-13 17:30:47 -07002107 node->no_quota, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002108 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
2109 ret = __btrfs_free_extent(trans, root, node->bytenr,
2110 node->num_bytes, parent,
2111 ref_root, ref->objectid,
2112 ref->offset, node->ref_mod,
Josef Bacikfcebe452014-05-13 17:30:47 -07002113 extent_op, node->no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002114 } else {
2115 BUG();
2116 }
Chris Mason56bec292009-03-13 10:10:06 -04002117 return ret;
2118}
2119
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002120static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
2121 struct extent_buffer *leaf,
2122 struct btrfs_extent_item *ei)
2123{
2124 u64 flags = btrfs_extent_flags(leaf, ei);
2125 if (extent_op->update_flags) {
2126 flags |= extent_op->flags_to_set;
2127 btrfs_set_extent_flags(leaf, ei, flags);
2128 }
2129
2130 if (extent_op->update_key) {
2131 struct btrfs_tree_block_info *bi;
2132 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
2133 bi = (struct btrfs_tree_block_info *)(ei + 1);
2134 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
2135 }
2136}
2137
2138static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
2139 struct btrfs_root *root,
2140 struct btrfs_delayed_ref_node *node,
2141 struct btrfs_delayed_extent_op *extent_op)
2142{
2143 struct btrfs_key key;
2144 struct btrfs_path *path;
2145 struct btrfs_extent_item *ei;
2146 struct extent_buffer *leaf;
2147 u32 item_size;
2148 int ret;
2149 int err = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002150 int metadata = !extent_op->is_data;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002151
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002152 if (trans->aborted)
2153 return 0;
2154
Josef Bacik3173a182013-03-07 14:22:04 -05002155 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2156 metadata = 0;
2157
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002158 path = btrfs_alloc_path();
2159 if (!path)
2160 return -ENOMEM;
2161
2162 key.objectid = node->bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002163
Josef Bacik3173a182013-03-07 14:22:04 -05002164 if (metadata) {
Josef Bacik3173a182013-03-07 14:22:04 -05002165 key.type = BTRFS_METADATA_ITEM_KEY;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002166 key.offset = extent_op->level;
Josef Bacik3173a182013-03-07 14:22:04 -05002167 } else {
2168 key.type = BTRFS_EXTENT_ITEM_KEY;
2169 key.offset = node->num_bytes;
2170 }
2171
2172again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002173 path->reada = 1;
2174 path->leave_spinning = 1;
2175 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key,
2176 path, 0, 1);
2177 if (ret < 0) {
2178 err = ret;
2179 goto out;
2180 }
2181 if (ret > 0) {
Josef Bacik3173a182013-03-07 14:22:04 -05002182 if (metadata) {
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002183 if (path->slots[0] > 0) {
2184 path->slots[0]--;
2185 btrfs_item_key_to_cpu(path->nodes[0], &key,
2186 path->slots[0]);
2187 if (key.objectid == node->bytenr &&
2188 key.type == BTRFS_EXTENT_ITEM_KEY &&
2189 key.offset == node->num_bytes)
2190 ret = 0;
2191 }
2192 if (ret > 0) {
2193 btrfs_release_path(path);
2194 metadata = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002195
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002196 key.objectid = node->bytenr;
2197 key.offset = node->num_bytes;
2198 key.type = BTRFS_EXTENT_ITEM_KEY;
2199 goto again;
2200 }
2201 } else {
2202 err = -EIO;
2203 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05002204 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002205 }
2206
2207 leaf = path->nodes[0];
2208 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2209#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2210 if (item_size < sizeof(*ei)) {
2211 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
2212 path, (u64)-1, 0);
2213 if (ret < 0) {
2214 err = ret;
2215 goto out;
2216 }
2217 leaf = path->nodes[0];
2218 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2219 }
2220#endif
2221 BUG_ON(item_size < sizeof(*ei));
2222 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2223 __run_delayed_extent_op(extent_op, leaf, ei);
2224
2225 btrfs_mark_buffer_dirty(leaf);
2226out:
2227 btrfs_free_path(path);
2228 return err;
2229}
2230
2231static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
2232 struct btrfs_root *root,
2233 struct btrfs_delayed_ref_node *node,
2234 struct btrfs_delayed_extent_op *extent_op,
2235 int insert_reserved)
2236{
2237 int ret = 0;
2238 struct btrfs_delayed_tree_ref *ref;
2239 struct btrfs_key ins;
2240 u64 parent = 0;
2241 u64 ref_root = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002242 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
2243 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002244
2245 ref = btrfs_delayed_node_to_tree_ref(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002246 trace_run_delayed_tree_ref(node, ref, node->action);
2247
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002248 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2249 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002250 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002251
Josef Bacik3173a182013-03-07 14:22:04 -05002252 ins.objectid = node->bytenr;
2253 if (skinny_metadata) {
2254 ins.offset = ref->level;
2255 ins.type = BTRFS_METADATA_ITEM_KEY;
2256 } else {
2257 ins.offset = node->num_bytes;
2258 ins.type = BTRFS_EXTENT_ITEM_KEY;
2259 }
2260
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002261 BUG_ON(node->ref_mod != 1);
2262 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002263 BUG_ON(!extent_op || !extent_op->update_flags);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002264 ret = alloc_reserved_tree_block(trans, root,
2265 parent, ref_root,
2266 extent_op->flags_to_set,
2267 &extent_op->key,
Josef Bacikfcebe452014-05-13 17:30:47 -07002268 ref->level, &ins,
2269 node->no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002270 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
2271 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
2272 node->num_bytes, parent, ref_root,
Josef Bacikfcebe452014-05-13 17:30:47 -07002273 ref->level, 0, 1, node->no_quota,
2274 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002275 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
2276 ret = __btrfs_free_extent(trans, root, node->bytenr,
2277 node->num_bytes, parent, ref_root,
Josef Bacikfcebe452014-05-13 17:30:47 -07002278 ref->level, 0, 1, extent_op,
2279 node->no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002280 } else {
2281 BUG();
2282 }
2283 return ret;
2284}
2285
Chris Mason56bec292009-03-13 10:10:06 -04002286/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002287static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
2288 struct btrfs_root *root,
2289 struct btrfs_delayed_ref_node *node,
2290 struct btrfs_delayed_extent_op *extent_op,
2291 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002292{
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002293 int ret = 0;
2294
Josef Bacik857cc2f2013-10-07 15:21:08 -04002295 if (trans->aborted) {
2296 if (insert_reserved)
2297 btrfs_pin_extent(root, node->bytenr,
2298 node->num_bytes, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002299 return 0;
Josef Bacik857cc2f2013-10-07 15:21:08 -04002300 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002301
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002302 if (btrfs_delayed_ref_is_head(node)) {
Chris Mason56bec292009-03-13 10:10:06 -04002303 struct btrfs_delayed_ref_head *head;
2304 /*
2305 * we've hit the end of the chain and we were supposed
2306 * to insert this extent into the tree. But, it got
2307 * deleted before we ever needed to insert it, so all
2308 * we have to do is clean up the accounting
2309 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002310 BUG_ON(extent_op);
2311 head = btrfs_delayed_node_to_head(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002312 trace_run_delayed_ref_head(node, head, node->action);
2313
Chris Mason56bec292009-03-13 10:10:06 -04002314 if (insert_reserved) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04002315 btrfs_pin_extent(root, node->bytenr,
2316 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002317 if (head->is_data) {
2318 ret = btrfs_del_csums(trans, root,
2319 node->bytenr,
2320 node->num_bytes);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002321 }
Chris Mason56bec292009-03-13 10:10:06 -04002322 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002323 return ret;
Chris Mason56bec292009-03-13 10:10:06 -04002324 }
Josef Bacikeb099672009-02-12 09:27:38 -05002325
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002326 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2327 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2328 ret = run_delayed_tree_ref(trans, root, node, extent_op,
2329 insert_reserved);
2330 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2331 node->type == BTRFS_SHARED_DATA_REF_KEY)
2332 ret = run_delayed_data_ref(trans, root, node, extent_op,
2333 insert_reserved);
2334 else
2335 BUG();
2336 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002337}
2338
Chris Mason56bec292009-03-13 10:10:06 -04002339static noinline struct btrfs_delayed_ref_node *
2340select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002341{
Chris Mason56bec292009-03-13 10:10:06 -04002342 struct rb_node *node;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002343 struct btrfs_delayed_ref_node *ref, *last = NULL;;
2344
Chris Mason56bec292009-03-13 10:10:06 -04002345 /*
2346 * select delayed ref of type BTRFS_ADD_DELAYED_REF first.
2347 * this prevents ref count from going down to zero when
2348 * there still are pending delayed ref.
2349 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002350 node = rb_first(&head->ref_root);
2351 while (node) {
Chris Mason56bec292009-03-13 10:10:06 -04002352 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2353 rb_node);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002354 if (ref->action == BTRFS_ADD_DELAYED_REF)
Chris Mason56bec292009-03-13 10:10:06 -04002355 return ref;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002356 else if (last == NULL)
2357 last = ref;
2358 node = rb_next(node);
Chris Mason5f39d392007-10-15 16:14:19 -04002359 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002360 return last;
Chris Mason56bec292009-03-13 10:10:06 -04002361}
2362
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002363/*
2364 * Returns 0 on success or if called with an already aborted transaction.
2365 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2366 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002367static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2368 struct btrfs_root *root,
2369 unsigned long nr)
Chris Mason56bec292009-03-13 10:10:06 -04002370{
Chris Mason56bec292009-03-13 10:10:06 -04002371 struct btrfs_delayed_ref_root *delayed_refs;
2372 struct btrfs_delayed_ref_node *ref;
2373 struct btrfs_delayed_ref_head *locked_ref = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002374 struct btrfs_delayed_extent_op *extent_op;
Jan Schmidt097b8a72012-06-21 11:08:04 +02002375 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002376 ktime_t start = ktime_get();
Chris Mason56bec292009-03-13 10:10:06 -04002377 int ret;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002378 unsigned long count = 0;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002379 unsigned long actual_count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002380 int must_insert_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002381
2382 delayed_refs = &trans->transaction->delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002383 while (1) {
2384 if (!locked_ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002385 if (count >= nr)
Chris Mason56bec292009-03-13 10:10:06 -04002386 break;
Chris Mason56bec292009-03-13 10:10:06 -04002387
Josef Bacikd7df2c72014-01-23 09:21:38 -05002388 spin_lock(&delayed_refs->lock);
2389 locked_ref = btrfs_select_ref_head(trans);
2390 if (!locked_ref) {
2391 spin_unlock(&delayed_refs->lock);
2392 break;
2393 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002394
2395 /* grab the lock that says we are going to process
2396 * all the refs for this head */
2397 ret = btrfs_delayed_ref_lock(trans, locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002398 spin_unlock(&delayed_refs->lock);
Chris Masonc3e69d52009-03-13 10:17:05 -04002399 /*
2400 * we may have dropped the spin lock to get the head
2401 * mutex lock, and that might have given someone else
2402 * time to free the head. If that's true, it has been
2403 * removed from our list and we can move on.
2404 */
2405 if (ret == -EAGAIN) {
2406 locked_ref = NULL;
2407 count++;
2408 continue;
Chris Mason56bec292009-03-13 10:10:06 -04002409 }
2410 }
2411
2412 /*
Josef Bacikae1e2062012-08-07 16:00:32 -04002413 * We need to try and merge add/drops of the same ref since we
2414 * can run into issues with relocate dropping the implicit ref
2415 * and then it being added back again before the drop can
2416 * finish. If we merged anything we need to re-loop so we can
2417 * get a good ref.
2418 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002419 spin_lock(&locked_ref->lock);
Josef Bacikae1e2062012-08-07 16:00:32 -04002420 btrfs_merge_delayed_refs(trans, fs_info, delayed_refs,
2421 locked_ref);
2422
2423 /*
Arne Jansend1270cd2011-09-13 15:16:43 +02002424 * locked_ref is the head node, so we have to go one
2425 * node back for any delayed ref updates
2426 */
2427 ref = select_delayed_ref(locked_ref);
2428
2429 if (ref && ref->seq &&
Jan Schmidt097b8a72012-06-21 11:08:04 +02002430 btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002431 spin_unlock(&locked_ref->lock);
Miao Xie093486c2012-12-19 08:10:10 +00002432 btrfs_delayed_ref_unlock(locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002433 spin_lock(&delayed_refs->lock);
2434 locked_ref->processing = 0;
Arne Jansend1270cd2011-09-13 15:16:43 +02002435 delayed_refs->num_heads_ready++;
2436 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002437 locked_ref = NULL;
Arne Jansend1270cd2011-09-13 15:16:43 +02002438 cond_resched();
Josef Bacik27a377d2014-02-07 13:57:59 -05002439 count++;
Arne Jansend1270cd2011-09-13 15:16:43 +02002440 continue;
2441 }
2442
2443 /*
Chris Mason56bec292009-03-13 10:10:06 -04002444 * record the must insert reserved flag before we
2445 * drop the spin lock.
2446 */
2447 must_insert_reserved = locked_ref->must_insert_reserved;
2448 locked_ref->must_insert_reserved = 0;
2449
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002450 extent_op = locked_ref->extent_op;
2451 locked_ref->extent_op = NULL;
2452
Chris Mason56bec292009-03-13 10:10:06 -04002453 if (!ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002454
2455
Chris Mason56bec292009-03-13 10:10:06 -04002456 /* All delayed refs have been processed, Go ahead
2457 * and send the head node to run_one_delayed_ref,
2458 * so that any accounting fixes can happen
2459 */
2460 ref = &locked_ref->node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002461
2462 if (extent_op && must_insert_reserved) {
Miao Xie78a61842012-11-21 02:21:28 +00002463 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002464 extent_op = NULL;
2465 }
2466
2467 if (extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002468 spin_unlock(&locked_ref->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002469 ret = run_delayed_extent_op(trans, root,
2470 ref, extent_op);
Miao Xie78a61842012-11-21 02:21:28 +00002471 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002472
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002473 if (ret) {
Josef Bacik857cc2f2013-10-07 15:21:08 -04002474 /*
2475 * Need to reset must_insert_reserved if
2476 * there was an error so the abort stuff
2477 * can cleanup the reserved space
2478 * properly.
2479 */
2480 if (must_insert_reserved)
2481 locked_ref->must_insert_reserved = 1;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002482 locked_ref->processing = 0;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002483 btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret);
Miao Xie093486c2012-12-19 08:10:10 +00002484 btrfs_delayed_ref_unlock(locked_ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002485 return ret;
2486 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002487 continue;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002488 }
Chris Mason56bec292009-03-13 10:10:06 -04002489
Josef Bacikd7df2c72014-01-23 09:21:38 -05002490 /*
2491 * Need to drop our head ref lock and re-aqcuire the
2492 * delayed ref lock and then re-check to make sure
2493 * nobody got added.
2494 */
2495 spin_unlock(&locked_ref->lock);
2496 spin_lock(&delayed_refs->lock);
2497 spin_lock(&locked_ref->lock);
Josef Bacik573a0752014-03-27 19:41:34 -04002498 if (rb_first(&locked_ref->ref_root) ||
2499 locked_ref->extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002500 spin_unlock(&locked_ref->lock);
2501 spin_unlock(&delayed_refs->lock);
2502 continue;
2503 }
2504 ref->in_tree = 0;
2505 delayed_refs->num_heads--;
Liu Boc46effa2013-10-14 12:59:45 +08002506 rb_erase(&locked_ref->href_node,
2507 &delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002508 spin_unlock(&delayed_refs->lock);
2509 } else {
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002510 actual_count++;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002511 ref->in_tree = 0;
2512 rb_erase(&ref->rb_node, &locked_ref->ref_root);
Liu Boc46effa2013-10-14 12:59:45 +08002513 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002514 atomic_dec(&delayed_refs->num_entries);
2515
Miao Xie093486c2012-12-19 08:10:10 +00002516 if (!btrfs_delayed_ref_is_head(ref)) {
Arne Jansen22cd2e72012-08-09 00:16:53 -06002517 /*
2518 * when we play the delayed ref, also correct the
2519 * ref_mod on head
2520 */
2521 switch (ref->action) {
2522 case BTRFS_ADD_DELAYED_REF:
2523 case BTRFS_ADD_DELAYED_EXTENT:
2524 locked_ref->node.ref_mod -= ref->ref_mod;
2525 break;
2526 case BTRFS_DROP_DELAYED_REF:
2527 locked_ref->node.ref_mod += ref->ref_mod;
2528 break;
2529 default:
2530 WARN_ON(1);
2531 }
2532 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002533 spin_unlock(&locked_ref->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002534
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002535 ret = run_one_delayed_ref(trans, root, ref, extent_op,
Chris Mason56bec292009-03-13 10:10:06 -04002536 must_insert_reserved);
Chris Mason56bec292009-03-13 10:10:06 -04002537
Miao Xie78a61842012-11-21 02:21:28 +00002538 btrfs_free_delayed_extent_op(extent_op);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002539 if (ret) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002540 locked_ref->processing = 0;
Miao Xie093486c2012-12-19 08:10:10 +00002541 btrfs_delayed_ref_unlock(locked_ref);
2542 btrfs_put_delayed_ref(ref);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002543 btrfs_debug(fs_info, "run_one_delayed_ref returned %d", ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002544 return ret;
2545 }
2546
Miao Xie093486c2012-12-19 08:10:10 +00002547 /*
2548 * If this node is a head, that means all the refs in this head
2549 * have been dealt with, and we will pick the next head to deal
2550 * with, so we must unlock the head and drop it from the cluster
2551 * list before we release it.
2552 */
2553 if (btrfs_delayed_ref_is_head(ref)) {
Miao Xie093486c2012-12-19 08:10:10 +00002554 btrfs_delayed_ref_unlock(locked_ref);
2555 locked_ref = NULL;
2556 }
2557 btrfs_put_delayed_ref(ref);
2558 count++;
Chris Mason1887be62009-03-13 10:11:24 -04002559 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002560 }
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002561
2562 /*
2563 * We don't want to include ref heads since we can have empty ref heads
2564 * and those will drastically skew our runtime down since we just do
2565 * accounting, no actual extent tree updates.
2566 */
2567 if (actual_count > 0) {
2568 u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start));
2569 u64 avg;
2570
2571 /*
2572 * We weigh the current average higher than our current runtime
2573 * to avoid large swings in the average.
2574 */
2575 spin_lock(&delayed_refs->lock);
2576 avg = fs_info->avg_delayed_ref_runtime * 3 + runtime;
2577 avg = div64_u64(avg, 4);
2578 fs_info->avg_delayed_ref_runtime = avg;
2579 spin_unlock(&delayed_refs->lock);
2580 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002581 return 0;
Chris Masonc3e69d52009-03-13 10:17:05 -04002582}
2583
Arne Jansen709c0482011-09-12 12:22:57 +02002584#ifdef SCRAMBLE_DELAYED_REFS
2585/*
2586 * Normally delayed refs get processed in ascending bytenr order. This
2587 * correlates in most cases to the order added. To expose dependencies on this
2588 * order, we start to process the tree in the middle instead of the beginning
2589 */
2590static u64 find_middle(struct rb_root *root)
2591{
2592 struct rb_node *n = root->rb_node;
2593 struct btrfs_delayed_ref_node *entry;
2594 int alt = 1;
2595 u64 middle;
2596 u64 first = 0, last = 0;
2597
2598 n = rb_first(root);
2599 if (n) {
2600 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2601 first = entry->bytenr;
2602 }
2603 n = rb_last(root);
2604 if (n) {
2605 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2606 last = entry->bytenr;
2607 }
2608 n = root->rb_node;
2609
2610 while (n) {
2611 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2612 WARN_ON(!entry->in_tree);
2613
2614 middle = entry->bytenr;
2615
2616 if (alt)
2617 n = n->rb_left;
2618 else
2619 n = n->rb_right;
2620
2621 alt = 1 - alt;
2622 }
2623 return middle;
2624}
2625#endif
2626
Josef Bacik1be41b72013-06-12 13:56:06 -04002627static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads)
2628{
2629 u64 num_bytes;
2630
2631 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2632 sizeof(struct btrfs_extent_inline_ref));
2633 if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2634 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2635
2636 /*
2637 * We don't ever fill up leaves all the way so multiply by 2 just to be
2638 * closer to what we're really going to want to ouse.
2639 */
2640 return div64_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root));
2641}
2642
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002643int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans,
Josef Bacik1be41b72013-06-12 13:56:06 -04002644 struct btrfs_root *root)
2645{
2646 struct btrfs_block_rsv *global_rsv;
2647 u64 num_heads = trans->transaction->delayed_refs.num_heads_ready;
2648 u64 num_bytes;
2649 int ret = 0;
2650
2651 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
2652 num_heads = heads_to_leaves(root, num_heads);
2653 if (num_heads > 1)
David Sterba707e8a02014-06-04 19:22:26 +02002654 num_bytes += (num_heads - 1) * root->nodesize;
Josef Bacik1be41b72013-06-12 13:56:06 -04002655 num_bytes <<= 1;
2656 global_rsv = &root->fs_info->global_block_rsv;
2657
2658 /*
2659 * If we can't allocate any more chunks lets make sure we have _lots_ of
2660 * wiggle room since running delayed refs can create more delayed refs.
2661 */
2662 if (global_rsv->space_info->full)
2663 num_bytes <<= 1;
2664
2665 spin_lock(&global_rsv->lock);
2666 if (global_rsv->reserved <= num_bytes)
2667 ret = 1;
2668 spin_unlock(&global_rsv->lock);
2669 return ret;
2670}
2671
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002672int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans,
2673 struct btrfs_root *root)
2674{
2675 struct btrfs_fs_info *fs_info = root->fs_info;
2676 u64 num_entries =
2677 atomic_read(&trans->transaction->delayed_refs.num_entries);
2678 u64 avg_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002679 u64 val;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002680
2681 smp_mb();
2682 avg_runtime = fs_info->avg_delayed_ref_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002683 val = num_entries * avg_runtime;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002684 if (num_entries * avg_runtime >= NSEC_PER_SEC)
2685 return 1;
Chris Masona79b7d42014-05-22 16:18:52 -07002686 if (val >= NSEC_PER_SEC / 2)
2687 return 2;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002688
2689 return btrfs_check_space_for_delayed_refs(trans, root);
2690}
2691
Chris Masona79b7d42014-05-22 16:18:52 -07002692struct async_delayed_refs {
2693 struct btrfs_root *root;
2694 int count;
2695 int error;
2696 int sync;
2697 struct completion wait;
2698 struct btrfs_work work;
2699};
2700
2701static void delayed_ref_async_start(struct btrfs_work *work)
2702{
2703 struct async_delayed_refs *async;
2704 struct btrfs_trans_handle *trans;
2705 int ret;
2706
2707 async = container_of(work, struct async_delayed_refs, work);
2708
2709 trans = btrfs_join_transaction(async->root);
2710 if (IS_ERR(trans)) {
2711 async->error = PTR_ERR(trans);
2712 goto done;
2713 }
2714
2715 /*
2716 * trans->sync means that when we call end_transaciton, we won't
2717 * wait on delayed refs
2718 */
2719 trans->sync = true;
2720 ret = btrfs_run_delayed_refs(trans, async->root, async->count);
2721 if (ret)
2722 async->error = ret;
2723
2724 ret = btrfs_end_transaction(trans, async->root);
2725 if (ret && !async->error)
2726 async->error = ret;
2727done:
2728 if (async->sync)
2729 complete(&async->wait);
2730 else
2731 kfree(async);
2732}
2733
2734int btrfs_async_run_delayed_refs(struct btrfs_root *root,
2735 unsigned long count, int wait)
2736{
2737 struct async_delayed_refs *async;
2738 int ret;
2739
2740 async = kmalloc(sizeof(*async), GFP_NOFS);
2741 if (!async)
2742 return -ENOMEM;
2743
2744 async->root = root->fs_info->tree_root;
2745 async->count = count;
2746 async->error = 0;
2747 if (wait)
2748 async->sync = 1;
2749 else
2750 async->sync = 0;
2751 init_completion(&async->wait);
2752
Liu Bo9e0af232014-08-15 23:36:53 +08002753 btrfs_init_work(&async->work, btrfs_extent_refs_helper,
2754 delayed_ref_async_start, NULL, NULL);
Chris Masona79b7d42014-05-22 16:18:52 -07002755
2756 btrfs_queue_work(root->fs_info->extent_workers, &async->work);
2757
2758 if (wait) {
2759 wait_for_completion(&async->wait);
2760 ret = async->error;
2761 kfree(async);
2762 return ret;
2763 }
2764 return 0;
2765}
2766
Chris Masonc3e69d52009-03-13 10:17:05 -04002767/*
2768 * this starts processing the delayed reference count updates and
2769 * extent insertions we have queued up so far. count can be
2770 * 0, which means to process everything in the tree at the start
2771 * of the run (but not newly added entries), or it can be some target
2772 * number you'd like to process.
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002773 *
2774 * Returns 0 on success or if called with an aborted transaction
2775 * Returns <0 on error and aborts the transaction
Chris Masonc3e69d52009-03-13 10:17:05 -04002776 */
2777int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2778 struct btrfs_root *root, unsigned long count)
2779{
2780 struct rb_node *node;
2781 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boc46effa2013-10-14 12:59:45 +08002782 struct btrfs_delayed_ref_head *head;
Chris Masonc3e69d52009-03-13 10:17:05 -04002783 int ret;
2784 int run_all = count == (unsigned long)-1;
2785 int run_most = 0;
2786
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002787 /* We'll clean this up in btrfs_cleanup_transaction */
2788 if (trans->aborted)
2789 return 0;
2790
Chris Masonc3e69d52009-03-13 10:17:05 -04002791 if (root == root->fs_info->extent_root)
2792 root = root->fs_info->tree_root;
2793
2794 delayed_refs = &trans->transaction->delayed_refs;
Chris Masonbb721702013-01-29 18:44:12 -05002795 if (count == 0) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002796 count = atomic_read(&delayed_refs->num_entries) * 2;
Chris Masonbb721702013-01-29 18:44:12 -05002797 run_most = 1;
2798 }
2799
Chris Masonc3e69d52009-03-13 10:17:05 -04002800again:
Arne Jansen709c0482011-09-12 12:22:57 +02002801#ifdef SCRAMBLE_DELAYED_REFS
2802 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
2803#endif
Josef Bacikd7df2c72014-01-23 09:21:38 -05002804 ret = __btrfs_run_delayed_refs(trans, root, count);
2805 if (ret < 0) {
2806 btrfs_abort_transaction(trans, root, ret);
2807 return ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04002808 }
2809
Chris Mason56bec292009-03-13 10:10:06 -04002810 if (run_all) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002811 if (!list_empty(&trans->new_bgs))
Josef Bacikea658ba2012-09-11 16:57:25 -04002812 btrfs_create_pending_block_groups(trans, root);
Josef Bacikea658ba2012-09-11 16:57:25 -04002813
Josef Bacikd7df2c72014-01-23 09:21:38 -05002814 spin_lock(&delayed_refs->lock);
Liu Boc46effa2013-10-14 12:59:45 +08002815 node = rb_first(&delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002816 if (!node) {
2817 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002818 goto out;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002819 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002820 count = (unsigned long)-1;
Chris Mason56bec292009-03-13 10:10:06 -04002821
2822 while (node) {
Liu Boc46effa2013-10-14 12:59:45 +08002823 head = rb_entry(node, struct btrfs_delayed_ref_head,
2824 href_node);
2825 if (btrfs_delayed_ref_is_head(&head->node)) {
2826 struct btrfs_delayed_ref_node *ref;
Chris Mason56bec292009-03-13 10:10:06 -04002827
Liu Boc46effa2013-10-14 12:59:45 +08002828 ref = &head->node;
Chris Mason56bec292009-03-13 10:10:06 -04002829 atomic_inc(&ref->refs);
2830
2831 spin_unlock(&delayed_refs->lock);
David Sterba8cc33e52011-05-02 15:29:25 +02002832 /*
2833 * Mutex was contended, block until it's
2834 * released and try again
2835 */
Chris Mason56bec292009-03-13 10:10:06 -04002836 mutex_lock(&head->mutex);
2837 mutex_unlock(&head->mutex);
2838
2839 btrfs_put_delayed_ref(ref);
Chris Mason1887be62009-03-13 10:11:24 -04002840 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002841 goto again;
Liu Boc46effa2013-10-14 12:59:45 +08002842 } else {
2843 WARN_ON(1);
Chris Mason56bec292009-03-13 10:10:06 -04002844 }
2845 node = rb_next(node);
2846 }
2847 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002848 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002849 goto again;
2850 }
Chris Mason54aa1f42007-06-22 14:16:25 -04002851out:
Josef Bacikfcebe452014-05-13 17:30:47 -07002852 ret = btrfs_delayed_qgroup_accounting(trans, root->fs_info);
2853 if (ret)
2854 return ret;
Jan Schmidtedf39272012-06-28 18:04:55 +02002855 assert_qgroups_uptodate(trans);
Chris Masona28ec192007-03-06 20:08:01 -05002856 return 0;
2857}
2858
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002859int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
2860 struct btrfs_root *root,
2861 u64 bytenr, u64 num_bytes, u64 flags,
Josef Bacikb1c79e02013-05-09 13:49:30 -04002862 int level, int is_data)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002863{
2864 struct btrfs_delayed_extent_op *extent_op;
2865 int ret;
2866
Miao Xie78a61842012-11-21 02:21:28 +00002867 extent_op = btrfs_alloc_delayed_extent_op();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002868 if (!extent_op)
2869 return -ENOMEM;
2870
2871 extent_op->flags_to_set = flags;
2872 extent_op->update_flags = 1;
2873 extent_op->update_key = 0;
2874 extent_op->is_data = is_data ? 1 : 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002875 extent_op->level = level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002876
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002877 ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr,
2878 num_bytes, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002879 if (ret)
Miao Xie78a61842012-11-21 02:21:28 +00002880 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002881 return ret;
2882}
2883
2884static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
2885 struct btrfs_root *root,
2886 struct btrfs_path *path,
2887 u64 objectid, u64 offset, u64 bytenr)
2888{
2889 struct btrfs_delayed_ref_head *head;
2890 struct btrfs_delayed_ref_node *ref;
2891 struct btrfs_delayed_data_ref *data_ref;
2892 struct btrfs_delayed_ref_root *delayed_refs;
2893 struct rb_node *node;
2894 int ret = 0;
2895
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002896 delayed_refs = &trans->transaction->delayed_refs;
2897 spin_lock(&delayed_refs->lock);
2898 head = btrfs_find_delayed_ref_head(trans, bytenr);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002899 if (!head) {
2900 spin_unlock(&delayed_refs->lock);
2901 return 0;
2902 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002903
2904 if (!mutex_trylock(&head->mutex)) {
2905 atomic_inc(&head->node.refs);
2906 spin_unlock(&delayed_refs->lock);
2907
David Sterbab3b4aa72011-04-21 01:20:15 +02002908 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002909
David Sterba8cc33e52011-05-02 15:29:25 +02002910 /*
2911 * Mutex was contended, block until it's released and let
2912 * caller try again
2913 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002914 mutex_lock(&head->mutex);
2915 mutex_unlock(&head->mutex);
2916 btrfs_put_delayed_ref(&head->node);
2917 return -EAGAIN;
2918 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002919 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002920
2921 spin_lock(&head->lock);
2922 node = rb_first(&head->ref_root);
2923 while (node) {
2924 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
2925 node = rb_next(node);
2926
2927 /* If it's a shared ref we know a cross reference exists */
2928 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) {
2929 ret = 1;
2930 break;
2931 }
2932
2933 data_ref = btrfs_delayed_node_to_data_ref(ref);
2934
2935 /*
2936 * If our ref doesn't match the one we're currently looking at
2937 * then we have a cross reference.
2938 */
2939 if (data_ref->root != root->root_key.objectid ||
2940 data_ref->objectid != objectid ||
2941 data_ref->offset != offset) {
2942 ret = 1;
2943 break;
2944 }
2945 }
2946 spin_unlock(&head->lock);
2947 mutex_unlock(&head->mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002948 return ret;
2949}
2950
2951static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
2952 struct btrfs_root *root,
2953 struct btrfs_path *path,
2954 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05002955{
2956 struct btrfs_root *extent_root = root->fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04002957 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002958 struct btrfs_extent_data_ref *ref;
2959 struct btrfs_extent_inline_ref *iref;
2960 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05002961 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002962 u32 item_size;
Yan Zhengf321e492008-07-30 09:26:11 -04002963 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05002964
Chris Masonbe20aa92007-12-17 20:14:01 -05002965 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04002966 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04002967 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05002968
Chris Masonbe20aa92007-12-17 20:14:01 -05002969 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2970 if (ret < 0)
2971 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002972 BUG_ON(ret == 0); /* Corruption */
Yan Zheng80ff3852008-10-30 14:20:02 -04002973
2974 ret = -ENOENT;
2975 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04002976 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002977
Zheng Yan31840ae2008-09-23 13:14:14 -04002978 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04002979 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002980 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05002981
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002982 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05002983 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002984
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002985 ret = 1;
2986 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2987#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2988 if (item_size < sizeof(*ei)) {
2989 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
2990 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002991 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002992#endif
2993 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2994
2995 if (item_size != sizeof(*ei) +
2996 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
2997 goto out;
2998
2999 if (btrfs_extent_generation(leaf, ei) <=
3000 btrfs_root_last_snapshot(&root->root_item))
3001 goto out;
3002
3003 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
3004 if (btrfs_extent_inline_ref_type(leaf, iref) !=
3005 BTRFS_EXTENT_DATA_REF_KEY)
3006 goto out;
3007
3008 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
3009 if (btrfs_extent_refs(leaf, ei) !=
3010 btrfs_extent_data_ref_count(leaf, ref) ||
3011 btrfs_extent_data_ref_root(leaf, ref) !=
3012 root->root_key.objectid ||
3013 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
3014 btrfs_extent_data_ref_offset(leaf, ref) != offset)
3015 goto out;
3016
Yan Zhengf321e492008-07-30 09:26:11 -04003017 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05003018out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003019 return ret;
3020}
3021
3022int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
3023 struct btrfs_root *root,
3024 u64 objectid, u64 offset, u64 bytenr)
3025{
3026 struct btrfs_path *path;
3027 int ret;
3028 int ret2;
3029
3030 path = btrfs_alloc_path();
3031 if (!path)
3032 return -ENOENT;
3033
3034 do {
3035 ret = check_committed_ref(trans, root, path, objectid,
3036 offset, bytenr);
3037 if (ret && ret != -ENOENT)
3038 goto out;
3039
3040 ret2 = check_delayed_ref(trans, root, path, objectid,
3041 offset, bytenr);
3042 } while (ret2 == -EAGAIN);
3043
3044 if (ret2 && ret2 != -ENOENT) {
3045 ret = ret2;
3046 goto out;
3047 }
3048
3049 if (ret != -ENOENT || ret2 != -ENOENT)
3050 ret = 0;
3051out:
Yan Zhengf321e492008-07-30 09:26:11 -04003052 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003053 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3054 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04003055 return ret;
3056}
3057
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003058static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05003059 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003060 struct extent_buffer *buf,
Josef Bacike339a6b2014-07-02 10:54:25 -07003061 int full_backref, int inc)
Zheng Yan31840ae2008-09-23 13:14:14 -04003062{
3063 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003064 u64 num_bytes;
3065 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003066 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04003067 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04003068 struct btrfs_key key;
3069 struct btrfs_file_extent_item *fi;
3070 int i;
3071 int level;
3072 int ret = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04003073 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003074 u64, u64, u64, u64, u64, u64, int);
Zheng Yan31840ae2008-09-23 13:14:14 -04003075
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04003076#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
3077 if (unlikely(test_bit(BTRFS_ROOT_DUMMY_ROOT, &root->state)))
3078 return 0;
3079#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04003080 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04003081 nritems = btrfs_header_nritems(buf);
3082 level = btrfs_header_level(buf);
3083
Miao Xie27cdeb72014-04-02 19:51:05 +08003084 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003085 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05003086
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003087 if (inc)
3088 process_func = btrfs_inc_extent_ref;
3089 else
3090 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003091
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003092 if (full_backref)
3093 parent = buf->start;
3094 else
3095 parent = 0;
3096
Zheng Yan31840ae2008-09-23 13:14:14 -04003097 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04003098 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003099 btrfs_item_key_to_cpu(buf, &key, i);
David Sterba962a2982014-06-04 18:41:45 +02003100 if (key.type != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04003101 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003102 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04003103 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003104 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04003105 BTRFS_FILE_EXTENT_INLINE)
3106 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003107 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3108 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04003109 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003110
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003111 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3112 key.offset -= btrfs_file_extent_offset(buf, fi);
3113 ret = process_func(trans, root, bytenr, num_bytes,
3114 parent, ref_root, key.objectid,
Josef Bacike339a6b2014-07-02 10:54:25 -07003115 key.offset, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003116 if (ret)
3117 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05003118 } else {
3119 bytenr = btrfs_node_blockptr(buf, i);
David Sterba707e8a02014-06-04 19:22:26 +02003120 num_bytes = root->nodesize;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003121 ret = process_func(trans, root, bytenr, num_bytes,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003122 parent, ref_root, level - 1, 0,
Josef Bacike339a6b2014-07-02 10:54:25 -07003123 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003124 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04003125 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04003126 }
3127 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003128 return 0;
3129fail:
Chris Mason54aa1f42007-06-22 14:16:25 -04003130 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05003131}
3132
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003133int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003134 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04003135{
Josef Bacike339a6b2014-07-02 10:54:25 -07003136 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003137}
Zheng Yan31840ae2008-09-23 13:14:14 -04003138
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003139int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003140 struct extent_buffer *buf, int full_backref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003141{
Josef Bacike339a6b2014-07-02 10:54:25 -07003142 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003143}
3144
Chris Mason9078a3e2007-04-26 16:46:15 -04003145static int write_one_cache_group(struct btrfs_trans_handle *trans,
3146 struct btrfs_root *root,
3147 struct btrfs_path *path,
3148 struct btrfs_block_group_cache *cache)
3149{
3150 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003151 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003152 unsigned long bi;
3153 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04003154
Chris Mason9078a3e2007-04-26 16:46:15 -04003155 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003156 if (ret < 0)
3157 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003158 BUG_ON(ret); /* Corruption */
Chris Mason5f39d392007-10-15 16:14:19 -04003159
3160 leaf = path->nodes[0];
3161 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3162 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3163 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003164 btrfs_release_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04003165fail:
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003166 if (ret) {
3167 btrfs_abort_transaction(trans, root, ret);
Chris Mason9078a3e2007-04-26 16:46:15 -04003168 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003169 }
Chris Mason9078a3e2007-04-26 16:46:15 -04003170 return 0;
3171
3172}
3173
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003174static struct btrfs_block_group_cache *
3175next_block_group(struct btrfs_root *root,
3176 struct btrfs_block_group_cache *cache)
3177{
3178 struct rb_node *node;
3179 spin_lock(&root->fs_info->block_group_cache_lock);
3180 node = rb_next(&cache->cache_node);
3181 btrfs_put_block_group(cache);
3182 if (node) {
3183 cache = rb_entry(node, struct btrfs_block_group_cache,
3184 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00003185 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003186 } else
3187 cache = NULL;
3188 spin_unlock(&root->fs_info->block_group_cache_lock);
3189 return cache;
3190}
3191
Josef Bacik0af3d002010-06-21 14:48:16 -04003192static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3193 struct btrfs_trans_handle *trans,
3194 struct btrfs_path *path)
3195{
3196 struct btrfs_root *root = block_group->fs_info->tree_root;
3197 struct inode *inode = NULL;
3198 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05003199 int dcs = BTRFS_DC_ERROR;
Josef Bacik0af3d002010-06-21 14:48:16 -04003200 int num_pages = 0;
3201 int retries = 0;
3202 int ret = 0;
3203
3204 /*
3205 * If this block group is smaller than 100 megs don't bother caching the
3206 * block group.
3207 */
3208 if (block_group->key.offset < (100 * 1024 * 1024)) {
3209 spin_lock(&block_group->lock);
3210 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3211 spin_unlock(&block_group->lock);
3212 return 0;
3213 }
3214
3215again:
3216 inode = lookup_free_space_inode(root, block_group, path);
3217 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3218 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02003219 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003220 goto out;
3221 }
3222
3223 if (IS_ERR(inode)) {
3224 BUG_ON(retries);
3225 retries++;
3226
3227 if (block_group->ro)
3228 goto out_free;
3229
3230 ret = create_free_space_inode(root, trans, block_group, path);
3231 if (ret)
3232 goto out_free;
3233 goto again;
3234 }
3235
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003236 /* We've already setup this transaction, go ahead and exit */
3237 if (block_group->cache_generation == trans->transid &&
3238 i_size_read(inode)) {
3239 dcs = BTRFS_DC_SETUP;
3240 goto out_put;
3241 }
3242
Josef Bacik0af3d002010-06-21 14:48:16 -04003243 /*
3244 * We want to set the generation to 0, that way if anything goes wrong
3245 * from here on out we know not to trust this cache when we load up next
3246 * time.
3247 */
3248 BTRFS_I(inode)->generation = 0;
3249 ret = btrfs_update_inode(trans, root, inode);
3250 WARN_ON(ret);
3251
3252 if (i_size_read(inode) > 0) {
Miao Xie7b61cd92013-05-13 13:55:09 +00003253 ret = btrfs_check_trunc_cache_free_space(root,
3254 &root->fs_info->global_block_rsv);
3255 if (ret)
3256 goto out_put;
3257
Filipe David Borba Manana74514322013-09-20 14:46:51 +01003258 ret = btrfs_truncate_free_space_cache(root, trans, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003259 if (ret)
3260 goto out_put;
3261 }
3262
3263 spin_lock(&block_group->lock);
Liu Bocf7c1ef2012-07-06 03:31:34 -06003264 if (block_group->cached != BTRFS_CACHE_FINISHED ||
Miao Xiee570fd22014-06-19 10:42:50 +08003265 !btrfs_test_opt(root, SPACE_CACHE) ||
3266 block_group->delalloc_bytes) {
Liu Bocf7c1ef2012-07-06 03:31:34 -06003267 /*
3268 * don't bother trying to write stuff out _if_
3269 * a) we're not cached,
3270 * b) we're with nospace_cache mount option.
3271 */
Josef Bacik2b209822010-12-03 13:17:53 -05003272 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04003273 spin_unlock(&block_group->lock);
3274 goto out_put;
3275 }
3276 spin_unlock(&block_group->lock);
3277
Josef Bacik6fc823b2012-08-06 13:46:38 -06003278 /*
3279 * Try to preallocate enough space based on how big the block group is.
3280 * Keep in mind this has to include any pinned space which could end up
3281 * taking up quite a bit since it's not folded into the other space
3282 * cache.
3283 */
3284 num_pages = (int)div64_u64(block_group->key.offset, 256 * 1024 * 1024);
Josef Bacik0af3d002010-06-21 14:48:16 -04003285 if (!num_pages)
3286 num_pages = 1;
3287
Josef Bacik0af3d002010-06-21 14:48:16 -04003288 num_pages *= 16;
3289 num_pages *= PAGE_CACHE_SIZE;
3290
3291 ret = btrfs_check_data_free_space(inode, num_pages);
3292 if (ret)
3293 goto out_put;
3294
3295 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3296 num_pages, num_pages,
3297 &alloc_hint);
Josef Bacik2b209822010-12-03 13:17:53 -05003298 if (!ret)
3299 dcs = BTRFS_DC_SETUP;
Josef Bacik0af3d002010-06-21 14:48:16 -04003300 btrfs_free_reserved_data_space(inode, num_pages);
Josef Bacikc09544e2011-08-30 10:19:10 -04003301
Josef Bacik0af3d002010-06-21 14:48:16 -04003302out_put:
3303 iput(inode);
3304out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02003305 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003306out:
3307 spin_lock(&block_group->lock);
Josef Bacike65cbb92011-12-13 16:04:54 -05003308 if (!ret && dcs == BTRFS_DC_SETUP)
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003309 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05003310 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04003311 spin_unlock(&block_group->lock);
3312
3313 return ret;
3314}
3315
Chris Mason96b51792007-10-15 16:15:19 -04003316int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
3317 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04003318{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003319 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04003320 int err = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003321 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -04003322 u64 last = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003323
3324 path = btrfs_alloc_path();
3325 if (!path)
3326 return -ENOMEM;
3327
Josef Bacik0af3d002010-06-21 14:48:16 -04003328again:
3329 while (1) {
3330 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3331 while (cache) {
3332 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3333 break;
3334 cache = next_block_group(root, cache);
3335 }
3336 if (!cache) {
3337 if (last == 0)
3338 break;
3339 last = 0;
3340 continue;
3341 }
3342 err = cache_save_setup(cache, trans, path);
3343 last = cache->key.objectid + cache->key.offset;
3344 btrfs_put_block_group(cache);
3345 }
3346
Chris Masond3977122009-01-05 21:25:51 -05003347 while (1) {
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003348 if (last == 0) {
3349 err = btrfs_run_delayed_refs(trans, root,
3350 (unsigned long)-1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003351 if (err) /* File system offline */
3352 goto out;
Josef Bacik0f9dd462008-09-23 13:14:11 -04003353 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04003354
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003355 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3356 while (cache) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003357 if (cache->disk_cache_state == BTRFS_DC_CLEAR) {
3358 btrfs_put_block_group(cache);
3359 goto again;
3360 }
3361
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003362 if (cache->dirty)
3363 break;
3364 cache = next_block_group(root, cache);
3365 }
3366 if (!cache) {
3367 if (last == 0)
3368 break;
3369 last = 0;
Chris Mason96b51792007-10-15 16:15:19 -04003370 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -04003371 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003372
Josef Bacik0cb59c92010-07-02 12:14:14 -04003373 if (cache->disk_cache_state == BTRFS_DC_SETUP)
3374 cache->disk_cache_state = BTRFS_DC_NEED_WRITE;
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003375 cache->dirty = 0;
3376 last = cache->key.objectid + cache->key.offset;
3377
3378 err = write_one_cache_group(trans, root, path, cache);
Filipe David Borba Mananae84cc142013-09-09 19:49:43 +01003379 btrfs_put_block_group(cache);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003380 if (err) /* File system offline */
3381 goto out;
Chris Mason9078a3e2007-04-26 16:46:15 -04003382 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003383
Josef Bacik0cb59c92010-07-02 12:14:14 -04003384 while (1) {
3385 /*
3386 * I don't think this is needed since we're just marking our
3387 * preallocated extent as written, but just in case it can't
3388 * hurt.
3389 */
3390 if (last == 0) {
3391 err = btrfs_run_delayed_refs(trans, root,
3392 (unsigned long)-1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003393 if (err) /* File system offline */
3394 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -04003395 }
3396
3397 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3398 while (cache) {
3399 /*
3400 * Really this shouldn't happen, but it could if we
3401 * couldn't write the entire preallocated extent and
3402 * splitting the extent resulted in a new block.
3403 */
3404 if (cache->dirty) {
3405 btrfs_put_block_group(cache);
3406 goto again;
3407 }
3408 if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
3409 break;
3410 cache = next_block_group(root, cache);
3411 }
3412 if (!cache) {
3413 if (last == 0)
3414 break;
3415 last = 0;
3416 continue;
3417 }
3418
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003419 err = btrfs_write_out_cache(root, trans, cache, path);
Josef Bacik0cb59c92010-07-02 12:14:14 -04003420
3421 /*
3422 * If we didn't have an error then the cache state is still
3423 * NEED_WRITE, so we can set it to WRITTEN.
3424 */
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003425 if (!err && cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
Josef Bacik0cb59c92010-07-02 12:14:14 -04003426 cache->disk_cache_state = BTRFS_DC_WRITTEN;
3427 last = cache->key.objectid + cache->key.offset;
3428 btrfs_put_block_group(cache);
3429 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003430out:
Josef Bacik0cb59c92010-07-02 12:14:14 -04003431
Chris Mason9078a3e2007-04-26 16:46:15 -04003432 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003433 return err;
Chris Mason9078a3e2007-04-26 16:46:15 -04003434}
3435
Yan Zhengd2fb3432008-12-11 16:30:39 -05003436int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
3437{
3438 struct btrfs_block_group_cache *block_group;
3439 int readonly = 0;
3440
3441 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
3442 if (!block_group || block_group->ro)
3443 readonly = 1;
3444 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04003445 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003446 return readonly;
3447}
3448
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003449static const char *alloc_name(u64 flags)
3450{
3451 switch (flags) {
3452 case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA:
3453 return "mixed";
3454 case BTRFS_BLOCK_GROUP_METADATA:
3455 return "metadata";
3456 case BTRFS_BLOCK_GROUP_DATA:
3457 return "data";
3458 case BTRFS_BLOCK_GROUP_SYSTEM:
3459 return "system";
3460 default:
3461 WARN_ON(1);
3462 return "invalid-combination";
3463 };
3464}
3465
Chris Mason593060d2008-03-25 16:50:33 -04003466static int update_space_info(struct btrfs_fs_info *info, u64 flags,
3467 u64 total_bytes, u64 bytes_used,
3468 struct btrfs_space_info **space_info)
3469{
3470 struct btrfs_space_info *found;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003471 int i;
3472 int factor;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003473 int ret;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003474
3475 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
3476 BTRFS_BLOCK_GROUP_RAID10))
3477 factor = 2;
3478 else
3479 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04003480
3481 found = __find_space_info(info, flags);
3482 if (found) {
Josef Bacik25179202008-10-29 14:49:05 -04003483 spin_lock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003484 found->total_bytes += total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003485 found->disk_total += total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003486 found->bytes_used += bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003487 found->disk_used += bytes_used * factor;
Chris Mason8f18cf12008-04-25 16:53:30 -04003488 found->full = 0;
Josef Bacik25179202008-10-29 14:49:05 -04003489 spin_unlock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003490 *space_info = found;
3491 return 0;
3492 }
Yan Zhengc146afa2008-11-12 14:34:12 -05003493 found = kzalloc(sizeof(*found), GFP_NOFS);
Chris Mason593060d2008-03-25 16:50:33 -04003494 if (!found)
3495 return -ENOMEM;
3496
Josef Bacikb150a4f2013-06-19 15:00:04 -04003497 ret = percpu_counter_init(&found->total_bytes_pinned, 0);
3498 if (ret) {
3499 kfree(found);
3500 return ret;
3501 }
3502
Jeff Mahoneyc1895442014-05-27 12:59:57 -04003503 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
Yan, Zhengb742bb82010-05-16 10:46:24 -04003504 INIT_LIST_HEAD(&found->block_groups[i]);
Josef Bacik80eb2342008-10-29 14:49:05 -04003505 init_rwsem(&found->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003506 spin_lock_init(&found->lock);
Ilya Dryomov52ba6922012-01-16 22:04:47 +02003507 found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
Chris Mason593060d2008-03-25 16:50:33 -04003508 found->total_bytes = total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003509 found->disk_total = total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003510 found->bytes_used = bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003511 found->disk_used = bytes_used * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003512 found->bytes_pinned = 0;
Zheng Yane8569812008-09-26 10:05:48 -04003513 found->bytes_reserved = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003514 found->bytes_readonly = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003515 found->bytes_may_use = 0;
Chris Mason593060d2008-03-25 16:50:33 -04003516 found->full = 0;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003517 found->force_alloc = CHUNK_ALLOC_NO_FORCE;
Josef Bacik6d741192011-04-11 20:20:11 -04003518 found->chunk_alloc = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003519 found->flush = 0;
3520 init_waitqueue_head(&found->wait);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003521
3522 ret = kobject_init_and_add(&found->kobj, &space_info_ktype,
3523 info->space_info_kobj, "%s",
3524 alloc_name(found->flags));
3525 if (ret) {
3526 kfree(found);
3527 return ret;
3528 }
3529
Chris Mason593060d2008-03-25 16:50:33 -04003530 *space_info = found;
Chris Mason4184ea72009-03-10 12:39:20 -04003531 list_add_rcu(&found->list, &info->space_info);
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003532 if (flags & BTRFS_BLOCK_GROUP_DATA)
3533 info->data_sinfo = found;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003534
3535 return ret;
Chris Mason593060d2008-03-25 16:50:33 -04003536}
3537
Chris Mason8790d502008-04-03 16:29:03 -04003538static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3539{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003540 u64 extra_flags = chunk_to_extended(flags) &
3541 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003542
Miao Xiede98ced2013-01-29 10:13:12 +00003543 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003544 if (flags & BTRFS_BLOCK_GROUP_DATA)
3545 fs_info->avail_data_alloc_bits |= extra_flags;
3546 if (flags & BTRFS_BLOCK_GROUP_METADATA)
3547 fs_info->avail_metadata_alloc_bits |= extra_flags;
3548 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3549 fs_info->avail_system_alloc_bits |= extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003550 write_sequnlock(&fs_info->profiles_lock);
Chris Mason8790d502008-04-03 16:29:03 -04003551}
Chris Mason593060d2008-03-25 16:50:33 -04003552
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003553/*
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003554 * returns target flags in extended format or 0 if restripe for this
3555 * chunk_type is not in progress
Ilya Dryomovc6664b42012-04-12 16:03:56 -04003556 *
3557 * should be called with either volume_mutex or balance_lock held
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003558 */
3559static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
3560{
3561 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3562 u64 target = 0;
3563
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003564 if (!bctl)
3565 return 0;
3566
3567 if (flags & BTRFS_BLOCK_GROUP_DATA &&
3568 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3569 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
3570 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
3571 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3572 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
3573 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
3574 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3575 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
3576 }
3577
3578 return target;
3579}
3580
3581/*
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003582 * @flags: available profiles in extended format (see ctree.h)
3583 *
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003584 * Returns reduced profile in chunk format. If profile changing is in
3585 * progress (either running or paused) picks the target profile (if it's
3586 * already available), otherwise falls back to plain reducing.
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003587 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003588static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04003589{
Miao Xie95669972014-07-24 11:37:14 +08003590 u64 num_devices = root->fs_info->fs_devices->rw_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003591 u64 target;
David Woodhouse53b381b2013-01-29 18:40:14 -05003592 u64 tmp;
Chris Masona061fc82008-05-07 11:43:44 -04003593
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003594 /*
3595 * see if restripe for this chunk_type is in progress, if so
3596 * try to reduce to the target profile
3597 */
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003598 spin_lock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003599 target = get_restripe_target(root->fs_info, flags);
3600 if (target) {
3601 /* pick target profile only if it's already available */
3602 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003603 spin_unlock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003604 return extended_to_chunk(target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003605 }
3606 }
3607 spin_unlock(&root->fs_info->balance_lock);
3608
David Woodhouse53b381b2013-01-29 18:40:14 -05003609 /* First, mask out the RAID levels which aren't possible */
Chris Masona061fc82008-05-07 11:43:44 -04003610 if (num_devices == 1)
David Woodhouse53b381b2013-01-29 18:40:14 -05003611 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0 |
3612 BTRFS_BLOCK_GROUP_RAID5);
3613 if (num_devices < 3)
3614 flags &= ~BTRFS_BLOCK_GROUP_RAID6;
Chris Masona061fc82008-05-07 11:43:44 -04003615 if (num_devices < 4)
3616 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
3617
David Woodhouse53b381b2013-01-29 18:40:14 -05003618 tmp = flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID0 |
3619 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID5 |
3620 BTRFS_BLOCK_GROUP_RAID6 | BTRFS_BLOCK_GROUP_RAID10);
3621 flags &= ~tmp;
Chris Masonec44a352008-04-28 15:29:52 -04003622
David Woodhouse53b381b2013-01-29 18:40:14 -05003623 if (tmp & BTRFS_BLOCK_GROUP_RAID6)
3624 tmp = BTRFS_BLOCK_GROUP_RAID6;
3625 else if (tmp & BTRFS_BLOCK_GROUP_RAID5)
3626 tmp = BTRFS_BLOCK_GROUP_RAID5;
3627 else if (tmp & BTRFS_BLOCK_GROUP_RAID10)
3628 tmp = BTRFS_BLOCK_GROUP_RAID10;
3629 else if (tmp & BTRFS_BLOCK_GROUP_RAID1)
3630 tmp = BTRFS_BLOCK_GROUP_RAID1;
3631 else if (tmp & BTRFS_BLOCK_GROUP_RAID0)
3632 tmp = BTRFS_BLOCK_GROUP_RAID0;
Chris Masonec44a352008-04-28 15:29:52 -04003633
David Woodhouse53b381b2013-01-29 18:40:14 -05003634 return extended_to_chunk(flags | tmp);
Chris Masonec44a352008-04-28 15:29:52 -04003635}
3636
Filipe Mananaf8213bd2014-04-24 15:15:29 +01003637static u64 get_alloc_profile(struct btrfs_root *root, u64 orig_flags)
Josef Bacik6a632092009-02-20 11:00:09 -05003638{
Miao Xiede98ced2013-01-29 10:13:12 +00003639 unsigned seq;
Filipe Mananaf8213bd2014-04-24 15:15:29 +01003640 u64 flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003641
3642 do {
Filipe Mananaf8213bd2014-04-24 15:15:29 +01003643 flags = orig_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003644 seq = read_seqbegin(&root->fs_info->profiles_lock);
3645
3646 if (flags & BTRFS_BLOCK_GROUP_DATA)
3647 flags |= root->fs_info->avail_data_alloc_bits;
3648 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3649 flags |= root->fs_info->avail_system_alloc_bits;
3650 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
3651 flags |= root->fs_info->avail_metadata_alloc_bits;
3652 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02003653
Yan, Zhengb742bb82010-05-16 10:46:24 -04003654 return btrfs_reduce_alloc_profile(root, flags);
3655}
Josef Bacik6a632092009-02-20 11:00:09 -05003656
Miao Xie6d07bce2011-01-05 10:07:31 +00003657u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
Yan, Zhengb742bb82010-05-16 10:46:24 -04003658{
3659 u64 flags;
David Woodhouse53b381b2013-01-29 18:40:14 -05003660 u64 ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003661
Yan, Zhengb742bb82010-05-16 10:46:24 -04003662 if (data)
3663 flags = BTRFS_BLOCK_GROUP_DATA;
3664 else if (root == root->fs_info->chunk_root)
3665 flags = BTRFS_BLOCK_GROUP_SYSTEM;
3666 else
3667 flags = BTRFS_BLOCK_GROUP_METADATA;
3668
David Woodhouse53b381b2013-01-29 18:40:14 -05003669 ret = get_alloc_profile(root, flags);
3670 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003671}
3672
Josef Bacik6a632092009-02-20 11:00:09 -05003673/*
3674 * This will check the space that the inode allocates from to make sure we have
3675 * enough space for bytes.
3676 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003677int btrfs_check_data_free_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003678{
3679 struct btrfs_space_info *data_sinfo;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003680 struct btrfs_root *root = BTRFS_I(inode)->root;
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003681 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacikab6e24102010-03-19 14:38:13 +00003682 u64 used;
Josef Bacik0af3d002010-06-21 14:48:16 -04003683 int ret = 0, committed = 0, alloc_chunk = 1;
Josef Bacik6a632092009-02-20 11:00:09 -05003684
3685 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00003686 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05003687
Miao Xie9dced182013-10-25 17:33:36 +08003688 if (btrfs_is_free_space_inode(inode)) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003689 committed = 1;
Miao Xie9dced182013-10-25 17:33:36 +08003690 ASSERT(current->journal_info);
Josef Bacik0af3d002010-06-21 14:48:16 -04003691 }
3692
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003693 data_sinfo = fs_info->data_sinfo;
Chris Mason33b4d472009-09-22 14:45:50 -04003694 if (!data_sinfo)
3695 goto alloc;
3696
Josef Bacik6a632092009-02-20 11:00:09 -05003697again:
3698 /* make sure we have enough space to handle the data first */
3699 spin_lock(&data_sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003700 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
3701 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
3702 data_sinfo->bytes_may_use;
Josef Bacikab6e24102010-03-19 14:38:13 +00003703
3704 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003705 struct btrfs_trans_handle *trans;
3706
Josef Bacik6a632092009-02-20 11:00:09 -05003707 /*
3708 * if we don't have enough free bytes in this space then we need
3709 * to alloc a new chunk.
3710 */
Josef Bacik0af3d002010-06-21 14:48:16 -04003711 if (!data_sinfo->full && alloc_chunk) {
Josef Bacik6a632092009-02-20 11:00:09 -05003712 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05003713
Chris Mason0e4f8f82011-04-15 16:05:44 -04003714 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05003715 spin_unlock(&data_sinfo->lock);
Chris Mason33b4d472009-09-22 14:45:50 -04003716alloc:
Josef Bacik6a632092009-02-20 11:00:09 -05003717 alloc_target = btrfs_get_alloc_profile(root, 1);
Miao Xie9dced182013-10-25 17:33:36 +08003718 /*
3719 * It is ugly that we don't call nolock join
3720 * transaction for the free space inode case here.
3721 * But it is safe because we only do the data space
3722 * reservation for the free space cache in the
3723 * transaction context, the common join transaction
3724 * just increase the counter of the current transaction
3725 * handler, doesn't try to acquire the trans_lock of
3726 * the fs.
3727 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003728 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003729 if (IS_ERR(trans))
3730 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05003731
3732 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0e4f8f82011-04-15 16:05:44 -04003733 alloc_target,
3734 CHUNK_ALLOC_NO_FORCE);
Josef Bacik6a632092009-02-20 11:00:09 -05003735 btrfs_end_transaction(trans, root);
Miao Xied52a5b52011-01-05 10:07:18 +00003736 if (ret < 0) {
3737 if (ret != -ENOSPC)
3738 return ret;
3739 else
3740 goto commit_trans;
3741 }
Chris Mason33b4d472009-09-22 14:45:50 -04003742
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003743 if (!data_sinfo)
3744 data_sinfo = fs_info->data_sinfo;
3745
Josef Bacik6a632092009-02-20 11:00:09 -05003746 goto again;
3747 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003748
3749 /*
Josef Bacikb150a4f2013-06-19 15:00:04 -04003750 * If we don't have enough pinned space to deal with this
3751 * allocation don't bother committing the transaction.
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003752 */
Josef Bacikb150a4f2013-06-19 15:00:04 -04003753 if (percpu_counter_compare(&data_sinfo->total_bytes_pinned,
3754 bytes) < 0)
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003755 committed = 1;
Josef Bacik6a632092009-02-20 11:00:09 -05003756 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003757
3758 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00003759commit_trans:
Josef Bacika4abeea2011-04-11 17:25:13 -04003760 if (!committed &&
3761 !atomic_read(&root->fs_info->open_ioctl_trans)) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003762 committed = 1;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003763
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003764 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003765 if (IS_ERR(trans))
3766 return PTR_ERR(trans);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003767 ret = btrfs_commit_transaction(trans, root);
3768 if (ret)
3769 return ret;
3770 goto again;
3771 }
3772
Jeff Mahoneycab45e22013-10-16 16:27:01 -04003773 trace_btrfs_space_reservation(root->fs_info,
3774 "space_info:enospc",
3775 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05003776 return -ENOSPC;
3777 }
3778 data_sinfo->bytes_may_use += bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05003779 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04003780 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05003781 spin_unlock(&data_sinfo->lock);
3782
Josef Bacik9ed74f22009-09-11 16:12:44 -04003783 return 0;
Josef Bacik6a632092009-02-20 11:00:09 -05003784}
3785
3786/*
Josef Bacikfb25e912011-07-26 17:00:46 -04003787 * Called if we need to clear a data reservation for this inode.
Josef Bacik6a632092009-02-20 11:00:09 -05003788 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003789void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003790{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003791 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003792 struct btrfs_space_info *data_sinfo;
3793
3794 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00003795 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05003796
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003797 data_sinfo = root->fs_info->data_sinfo;
Josef Bacik6a632092009-02-20 11:00:09 -05003798 spin_lock(&data_sinfo->lock);
Josef Bacik7ee9e442013-06-21 16:37:03 -04003799 WARN_ON(data_sinfo->bytes_may_use < bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05003800 data_sinfo->bytes_may_use -= bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05003801 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04003802 data_sinfo->flags, bytes, 0);
Josef Bacik6a632092009-02-20 11:00:09 -05003803 spin_unlock(&data_sinfo->lock);
3804}
3805
Josef Bacik97e728d2009-04-21 17:40:57 -04003806static void force_metadata_allocation(struct btrfs_fs_info *info)
3807{
3808 struct list_head *head = &info->space_info;
3809 struct btrfs_space_info *found;
3810
3811 rcu_read_lock();
3812 list_for_each_entry_rcu(found, head, list) {
3813 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04003814 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04003815 }
3816 rcu_read_unlock();
3817}
3818
Miao Xie3c76cd82013-04-25 10:12:38 +00003819static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
3820{
3821 return (global->size << 1);
3822}
3823
Chris Masone5bc2452010-10-26 13:37:56 -04003824static int should_alloc_chunk(struct btrfs_root *root,
Josef Bacik698d0082012-09-12 14:08:47 -04003825 struct btrfs_space_info *sinfo, int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04003826{
Josef Bacikfb25e912011-07-26 17:00:46 -04003827 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zheng424499d2010-05-16 10:46:25 -04003828 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003829 u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved;
Chris Masone5bc2452010-10-26 13:37:56 -04003830 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04003831
Chris Mason0e4f8f82011-04-15 16:05:44 -04003832 if (force == CHUNK_ALLOC_FORCE)
3833 return 1;
3834
3835 /*
Josef Bacikfb25e912011-07-26 17:00:46 -04003836 * We need to take into account the global rsv because for all intents
3837 * and purposes it's used space. Don't worry about locking the
3838 * global_rsv, it doesn't change except when the transaction commits.
3839 */
Josef Bacik54338b52012-08-14 16:20:52 -04003840 if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA)
Miao Xie3c76cd82013-04-25 10:12:38 +00003841 num_allocated += calc_global_rsv_need_space(global_rsv);
Josef Bacikfb25e912011-07-26 17:00:46 -04003842
3843 /*
Chris Mason0e4f8f82011-04-15 16:05:44 -04003844 * in limited mode, we want to have some free space up to
3845 * about 1% of the FS size.
3846 */
3847 if (force == CHUNK_ALLOC_LIMITED) {
David Sterba6c417612011-04-13 15:41:04 +02003848 thresh = btrfs_super_total_bytes(root->fs_info->super_copy);
Chris Mason0e4f8f82011-04-15 16:05:44 -04003849 thresh = max_t(u64, 64 * 1024 * 1024,
3850 div_factor_fine(thresh, 1));
3851
3852 if (num_bytes - num_allocated < thresh)
3853 return 1;
3854 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04003855
Josef Bacik698d0082012-09-12 14:08:47 -04003856 if (num_allocated + 2 * 1024 * 1024 < div_factor(num_bytes, 8))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04003857 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04003858 return 1;
3859}
3860
Liu Bo15d1ff82012-03-29 09:57:44 -04003861static u64 get_system_chunk_thresh(struct btrfs_root *root, u64 type)
3862{
3863 u64 num_dev;
3864
David Woodhouse53b381b2013-01-29 18:40:14 -05003865 if (type & (BTRFS_BLOCK_GROUP_RAID10 |
3866 BTRFS_BLOCK_GROUP_RAID0 |
3867 BTRFS_BLOCK_GROUP_RAID5 |
3868 BTRFS_BLOCK_GROUP_RAID6))
Liu Bo15d1ff82012-03-29 09:57:44 -04003869 num_dev = root->fs_info->fs_devices->rw_devices;
3870 else if (type & BTRFS_BLOCK_GROUP_RAID1)
3871 num_dev = 2;
3872 else
3873 num_dev = 1; /* DUP or single */
3874
3875 /* metadata for updaing devices and chunk tree */
3876 return btrfs_calc_trans_metadata_size(root, num_dev + 1);
3877}
3878
3879static void check_system_chunk(struct btrfs_trans_handle *trans,
3880 struct btrfs_root *root, u64 type)
3881{
3882 struct btrfs_space_info *info;
3883 u64 left;
3884 u64 thresh;
3885
3886 info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
3887 spin_lock(&info->lock);
3888 left = info->total_bytes - info->bytes_used - info->bytes_pinned -
3889 info->bytes_reserved - info->bytes_readonly;
3890 spin_unlock(&info->lock);
3891
3892 thresh = get_system_chunk_thresh(root, type);
3893 if (left < thresh && btrfs_test_opt(root, ENOSPC_DEBUG)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003894 btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu",
3895 left, thresh, type);
Liu Bo15d1ff82012-03-29 09:57:44 -04003896 dump_space_info(info, 0, 0);
3897 }
3898
3899 if (left < thresh) {
3900 u64 flags;
3901
3902 flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0);
3903 btrfs_alloc_chunk(trans, root, flags);
3904 }
3905}
3906
Chris Mason6324fbf2008-03-24 15:01:59 -04003907static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Josef Bacik698d0082012-09-12 14:08:47 -04003908 struct btrfs_root *extent_root, u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04003909{
3910 struct btrfs_space_info *space_info;
Josef Bacik97e728d2009-04-21 17:40:57 -04003911 struct btrfs_fs_info *fs_info = extent_root->fs_info;
Josef Bacik6d741192011-04-11 20:20:11 -04003912 int wait_for_alloc = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003913 int ret = 0;
3914
Josef Bacikc6b305a2012-12-18 09:16:16 -05003915 /* Don't re-enter if we're already allocating a chunk */
3916 if (trans->allocating_chunk)
3917 return -ENOSPC;
3918
Chris Mason6324fbf2008-03-24 15:01:59 -04003919 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04003920 if (!space_info) {
3921 ret = update_space_info(extent_root->fs_info, flags,
3922 0, 0, &space_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003923 BUG_ON(ret); /* -ENOMEM */
Chris Mason593060d2008-03-25 16:50:33 -04003924 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003925 BUG_ON(!space_info); /* Logic error */
Chris Mason6324fbf2008-03-24 15:01:59 -04003926
Josef Bacik6d741192011-04-11 20:20:11 -04003927again:
Josef Bacik25179202008-10-29 14:49:05 -04003928 spin_lock(&space_info->lock);
Miao Xie9e622d62012-01-26 15:01:12 -05003929 if (force < space_info->force_alloc)
Chris Mason0e4f8f82011-04-15 16:05:44 -04003930 force = space_info->force_alloc;
Josef Bacik25179202008-10-29 14:49:05 -04003931 if (space_info->full) {
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01003932 if (should_alloc_chunk(extent_root, space_info, force))
3933 ret = -ENOSPC;
3934 else
3935 ret = 0;
Josef Bacik25179202008-10-29 14:49:05 -04003936 spin_unlock(&space_info->lock);
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01003937 return ret;
Josef Bacik25179202008-10-29 14:49:05 -04003938 }
Chris Mason6324fbf2008-03-24 15:01:59 -04003939
Josef Bacik698d0082012-09-12 14:08:47 -04003940 if (!should_alloc_chunk(extent_root, space_info, force)) {
Josef Bacik25179202008-10-29 14:49:05 -04003941 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04003942 return 0;
3943 } else if (space_info->chunk_alloc) {
3944 wait_for_alloc = 1;
3945 } else {
3946 space_info->chunk_alloc = 1;
Josef Bacik25179202008-10-29 14:49:05 -04003947 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04003948
Josef Bacik25179202008-10-29 14:49:05 -04003949 spin_unlock(&space_info->lock);
3950
Josef Bacik6d741192011-04-11 20:20:11 -04003951 mutex_lock(&fs_info->chunk_mutex);
3952
3953 /*
3954 * The chunk_mutex is held throughout the entirety of a chunk
3955 * allocation, so once we've acquired the chunk_mutex we know that the
3956 * other guy is done and we need to recheck and see if we should
3957 * allocate.
3958 */
3959 if (wait_for_alloc) {
3960 mutex_unlock(&fs_info->chunk_mutex);
3961 wait_for_alloc = 0;
3962 goto again;
3963 }
3964
Josef Bacikc6b305a2012-12-18 09:16:16 -05003965 trans->allocating_chunk = true;
3966
Josef Bacik97e728d2009-04-21 17:40:57 -04003967 /*
Josef Bacik67377732010-09-16 16:19:09 -04003968 * If we have mixed data/metadata chunks we want to make sure we keep
3969 * allocating mixed chunks instead of individual chunks.
3970 */
3971 if (btrfs_mixed_space_info(space_info))
3972 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
3973
3974 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04003975 * if we're doing a data chunk, go ahead and make sure that
3976 * we keep a reasonable number of metadata chunks allocated in the
3977 * FS as well.
3978 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04003979 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04003980 fs_info->data_chunk_allocations++;
3981 if (!(fs_info->data_chunk_allocations %
3982 fs_info->metadata_ratio))
3983 force_metadata_allocation(fs_info);
3984 }
3985
Liu Bo15d1ff82012-03-29 09:57:44 -04003986 /*
3987 * Check if we have enough space in SYSTEM chunk because we may need
3988 * to update devices.
3989 */
3990 check_system_chunk(trans, extent_root, flags);
3991
Yan Zheng2b820322008-11-17 21:11:30 -05003992 ret = btrfs_alloc_chunk(trans, extent_root, flags);
Josef Bacikc6b305a2012-12-18 09:16:16 -05003993 trans->allocating_chunk = false;
Mark Fasheh92b8e8972011-07-12 10:57:59 -07003994
Josef Bacik9ed74f22009-09-11 16:12:44 -04003995 spin_lock(&space_info->lock);
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00003996 if (ret < 0 && ret != -ENOSPC)
3997 goto out;
Chris Masond3977122009-01-05 21:25:51 -05003998 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04003999 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04004000 else
4001 ret = 1;
Josef Bacik6d741192011-04-11 20:20:11 -04004002
Chris Mason0e4f8f82011-04-15 16:05:44 -04004003 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004004out:
Josef Bacik6d741192011-04-11 20:20:11 -04004005 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004006 spin_unlock(&space_info->lock);
Dan Carpentera25c75d2012-04-18 09:59:29 +03004007 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik0f9dd462008-09-23 13:14:11 -04004008 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04004009}
4010
Josef Bacika80c8dc2012-09-06 16:59:33 -04004011static int can_overcommit(struct btrfs_root *root,
4012 struct btrfs_space_info *space_info, u64 bytes,
Miao Xie08e007d2012-10-16 11:33:38 +00004013 enum btrfs_reserve_flush_enum flush)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004014{
Josef Bacik96f1bb52013-01-30 17:02:51 -05004015 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004016 u64 profile = btrfs_get_alloc_profile(root, 0);
Miao Xie3c76cd82013-04-25 10:12:38 +00004017 u64 space_size;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004018 u64 avail;
4019 u64 used;
4020
4021 used = space_info->bytes_used + space_info->bytes_reserved +
Josef Bacik96f1bb52013-01-30 17:02:51 -05004022 space_info->bytes_pinned + space_info->bytes_readonly;
4023
Josef Bacik96f1bb52013-01-30 17:02:51 -05004024 /*
4025 * We only want to allow over committing if we have lots of actual space
4026 * free, but if we don't have enough space to handle the global reserve
4027 * space then we could end up having a real enospc problem when trying
4028 * to allocate a chunk or some other such important allocation.
4029 */
Miao Xie3c76cd82013-04-25 10:12:38 +00004030 spin_lock(&global_rsv->lock);
4031 space_size = calc_global_rsv_need_space(global_rsv);
4032 spin_unlock(&global_rsv->lock);
4033 if (used + space_size >= space_info->total_bytes)
Josef Bacik96f1bb52013-01-30 17:02:51 -05004034 return 0;
4035
4036 used += space_info->bytes_may_use;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004037
4038 spin_lock(&root->fs_info->free_chunk_lock);
4039 avail = root->fs_info->free_chunk_space;
4040 spin_unlock(&root->fs_info->free_chunk_lock);
4041
4042 /*
4043 * If we have dup, raid1 or raid10 then only half of the free
David Woodhouse53b381b2013-01-29 18:40:14 -05004044 * space is actually useable. For raid56, the space info used
4045 * doesn't include the parity drive, so we don't have to
4046 * change the math
Josef Bacika80c8dc2012-09-06 16:59:33 -04004047 */
4048 if (profile & (BTRFS_BLOCK_GROUP_DUP |
4049 BTRFS_BLOCK_GROUP_RAID1 |
4050 BTRFS_BLOCK_GROUP_RAID10))
4051 avail >>= 1;
4052
4053 /*
Miao Xie561c2942012-10-16 11:32:18 +00004054 * If we aren't flushing all things, let us overcommit up to
4055 * 1/2th of the space. If we can flush, don't let us overcommit
4056 * too much, let it overcommit up to 1/8 of the space.
Josef Bacika80c8dc2012-09-06 16:59:33 -04004057 */
Miao Xie08e007d2012-10-16 11:33:38 +00004058 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacik14575ae2013-09-17 10:48:00 -04004059 avail >>= 3;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004060 else
Josef Bacik14575ae2013-09-17 10:48:00 -04004061 avail >>= 1;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004062
Josef Bacik14575ae2013-09-17 10:48:00 -04004063 if (used + bytes < space_info->total_bytes + avail)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004064 return 1;
4065 return 0;
4066}
4067
Eric Sandeen48a3b632013-04-25 20:41:01 +00004068static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root,
Miao Xie6c255e62014-03-06 13:55:01 +08004069 unsigned long nr_pages, int nr_items)
Miao Xieda633a42012-12-20 11:19:09 +00004070{
4071 struct super_block *sb = root->fs_info->sb;
Miao Xieda633a42012-12-20 11:19:09 +00004072
Josef Bacik925a6ef2013-06-20 12:31:27 -04004073 if (down_read_trylock(&sb->s_umount)) {
4074 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
4075 up_read(&sb->s_umount);
4076 } else {
Miao Xieda633a42012-12-20 11:19:09 +00004077 /*
4078 * We needn't worry the filesystem going from r/w to r/o though
4079 * we don't acquire ->s_umount mutex, because the filesystem
4080 * should guarantee the delalloc inodes list be empty after
4081 * the filesystem is readonly(all dirty pages are written to
4082 * the disk).
4083 */
Miao Xie6c255e62014-03-06 13:55:01 +08004084 btrfs_start_delalloc_roots(root->fs_info, 0, nr_items);
Josef Bacik98ad69c2013-04-04 11:55:49 -04004085 if (!current->journal_info)
Miao Xie6c255e62014-03-06 13:55:01 +08004086 btrfs_wait_ordered_roots(root->fs_info, nr_items);
Miao Xieda633a42012-12-20 11:19:09 +00004087 }
4088}
4089
Miao Xie18cd8ea2013-11-04 23:13:22 +08004090static inline int calc_reclaim_items_nr(struct btrfs_root *root, u64 to_reclaim)
4091{
4092 u64 bytes;
4093 int nr;
4094
4095 bytes = btrfs_calc_trans_metadata_size(root, 1);
4096 nr = (int)div64_u64(to_reclaim, bytes);
4097 if (!nr)
4098 nr = 1;
4099 return nr;
4100}
4101
Miao Xiec61a16a2013-11-04 23:13:23 +08004102#define EXTENT_SIZE_PER_ITEM (256 * 1024)
4103
Yan, Zheng5da9d012010-05-16 10:46:25 -04004104/*
4105 * shrink metadata reservation for delalloc
4106 */
Josef Bacikf4c738c2012-07-02 17:10:51 -04004107static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig,
4108 bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04004109{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004110 struct btrfs_block_rsv *block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004111 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04004112 struct btrfs_trans_handle *trans;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004113 u64 delalloc_bytes;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004114 u64 max_reclaim;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004115 long time_left;
Miao Xied3ee29e2013-11-04 23:13:20 +08004116 unsigned long nr_pages;
4117 int loops;
Miao Xieb0244192013-11-04 23:13:25 +08004118 int items;
Miao Xie08e007d2012-10-16 11:33:38 +00004119 enum btrfs_reserve_flush_enum flush;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004120
Miao Xiec61a16a2013-11-04 23:13:23 +08004121 /* Calc the number of the pages we need flush for space reservation */
Miao Xieb0244192013-11-04 23:13:25 +08004122 items = calc_reclaim_items_nr(root, to_reclaim);
4123 to_reclaim = items * EXTENT_SIZE_PER_ITEM;
Miao Xiec61a16a2013-11-04 23:13:23 +08004124
Josef Bacik663350a2011-11-03 22:54:25 -04004125 trans = (struct btrfs_trans_handle *)current->journal_info;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004126 block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004127 space_info = block_rsv->space_info;
Chris Masonbf9022e2010-10-26 13:40:45 -04004128
Miao Xie963d6782013-01-29 10:10:51 +00004129 delalloc_bytes = percpu_counter_sum_positive(
4130 &root->fs_info->delalloc_bytes);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004131 if (delalloc_bytes == 0) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004132 if (trans)
Josef Bacikf4c738c2012-07-02 17:10:51 -04004133 return;
Miao Xie38c135a2013-11-04 23:13:21 +08004134 if (wait_ordered)
Miao Xieb0244192013-11-04 23:13:25 +08004135 btrfs_wait_ordered_roots(root->fs_info, items);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004136 return;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004137 }
4138
Miao Xied3ee29e2013-11-04 23:13:20 +08004139 loops = 0;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004140 while (delalloc_bytes && loops < 3) {
4141 max_reclaim = min(delalloc_bytes, to_reclaim);
4142 nr_pages = max_reclaim >> PAGE_CACHE_SHIFT;
Miao Xie6c255e62014-03-06 13:55:01 +08004143 btrfs_writeback_inodes_sb_nr(root, nr_pages, items);
Josef Bacikdea31f52012-09-06 16:47:00 -04004144 /*
4145 * We need to wait for the async pages to actually start before
4146 * we do anything.
4147 */
Miao Xie9f3a0742013-11-04 23:13:24 +08004148 max_reclaim = atomic_read(&root->fs_info->async_delalloc_pages);
4149 if (!max_reclaim)
4150 goto skip_async;
Josef Bacikdea31f52012-09-06 16:47:00 -04004151
Miao Xie9f3a0742013-11-04 23:13:24 +08004152 if (max_reclaim <= nr_pages)
4153 max_reclaim = 0;
4154 else
4155 max_reclaim -= nr_pages;
4156
4157 wait_event(root->fs_info->async_submit_wait,
4158 atomic_read(&root->fs_info->async_delalloc_pages) <=
4159 (int)max_reclaim);
4160skip_async:
Miao Xie08e007d2012-10-16 11:33:38 +00004161 if (!trans)
4162 flush = BTRFS_RESERVE_FLUSH_ALL;
4163 else
4164 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacik0019f102010-10-15 15:18:40 -04004165 spin_lock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00004166 if (can_overcommit(root, space_info, orig, flush)) {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004167 spin_unlock(&space_info->lock);
4168 break;
4169 }
Josef Bacik0019f102010-10-15 15:18:40 -04004170 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004171
Chris Mason36e39c42011-03-12 07:08:42 -05004172 loops++;
Josef Bacikf104d042011-10-14 13:56:58 -04004173 if (wait_ordered && !trans) {
Miao Xieb0244192013-11-04 23:13:25 +08004174 btrfs_wait_ordered_roots(root->fs_info, items);
Josef Bacikf104d042011-10-14 13:56:58 -04004175 } else {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004176 time_left = schedule_timeout_killable(1);
Josef Bacikf104d042011-10-14 13:56:58 -04004177 if (time_left)
4178 break;
4179 }
Miao Xie963d6782013-01-29 10:10:51 +00004180 delalloc_bytes = percpu_counter_sum_positive(
4181 &root->fs_info->delalloc_bytes);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004182 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04004183}
4184
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004185/**
Josef Bacik663350a2011-11-03 22:54:25 -04004186 * maybe_commit_transaction - possibly commit the transaction if its ok to
4187 * @root - the root we're allocating for
4188 * @bytes - the number of bytes we want to reserve
4189 * @force - force the commit
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004190 *
Josef Bacik663350a2011-11-03 22:54:25 -04004191 * This will check to make sure that committing the transaction will actually
4192 * get us somewhere and then commit the transaction if it does. Otherwise it
4193 * will return -ENOSPC.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004194 */
Josef Bacik663350a2011-11-03 22:54:25 -04004195static int may_commit_transaction(struct btrfs_root *root,
4196 struct btrfs_space_info *space_info,
4197 u64 bytes, int force)
4198{
4199 struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv;
4200 struct btrfs_trans_handle *trans;
4201
4202 trans = (struct btrfs_trans_handle *)current->journal_info;
4203 if (trans)
4204 return -EAGAIN;
4205
4206 if (force)
4207 goto commit;
4208
4209 /* See if there is enough pinned space to make this reservation */
Josef Bacikb150a4f2013-06-19 15:00:04 -04004210 if (percpu_counter_compare(&space_info->total_bytes_pinned,
Miao Xie0424c542014-03-06 13:54:59 +08004211 bytes) >= 0)
Josef Bacik663350a2011-11-03 22:54:25 -04004212 goto commit;
Josef Bacik663350a2011-11-03 22:54:25 -04004213
4214 /*
4215 * See if there is some space in the delayed insertion reservation for
4216 * this reservation.
4217 */
4218 if (space_info != delayed_rsv->space_info)
4219 return -ENOSPC;
4220
4221 spin_lock(&delayed_rsv->lock);
Josef Bacikb150a4f2013-06-19 15:00:04 -04004222 if (percpu_counter_compare(&space_info->total_bytes_pinned,
4223 bytes - delayed_rsv->size) >= 0) {
Josef Bacik663350a2011-11-03 22:54:25 -04004224 spin_unlock(&delayed_rsv->lock);
4225 return -ENOSPC;
4226 }
4227 spin_unlock(&delayed_rsv->lock);
4228
4229commit:
4230 trans = btrfs_join_transaction(root);
4231 if (IS_ERR(trans))
4232 return -ENOSPC;
4233
4234 return btrfs_commit_transaction(trans, root);
4235}
4236
Josef Bacik96c3f432012-06-21 14:05:49 -04004237enum flush_state {
Josef Bacik67b0fd62012-09-24 13:42:00 -04004238 FLUSH_DELAYED_ITEMS_NR = 1,
4239 FLUSH_DELAYED_ITEMS = 2,
4240 FLUSH_DELALLOC = 3,
4241 FLUSH_DELALLOC_WAIT = 4,
Josef Bacikea658ba2012-09-11 16:57:25 -04004242 ALLOC_CHUNK = 5,
4243 COMMIT_TRANS = 6,
Josef Bacik96c3f432012-06-21 14:05:49 -04004244};
4245
4246static int flush_space(struct btrfs_root *root,
4247 struct btrfs_space_info *space_info, u64 num_bytes,
4248 u64 orig_bytes, int state)
4249{
4250 struct btrfs_trans_handle *trans;
4251 int nr;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004252 int ret = 0;
Josef Bacik96c3f432012-06-21 14:05:49 -04004253
4254 switch (state) {
Josef Bacik96c3f432012-06-21 14:05:49 -04004255 case FLUSH_DELAYED_ITEMS_NR:
4256 case FLUSH_DELAYED_ITEMS:
Miao Xie18cd8ea2013-11-04 23:13:22 +08004257 if (state == FLUSH_DELAYED_ITEMS_NR)
4258 nr = calc_reclaim_items_nr(root, num_bytes) * 2;
4259 else
Josef Bacik96c3f432012-06-21 14:05:49 -04004260 nr = -1;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004261
Josef Bacik96c3f432012-06-21 14:05:49 -04004262 trans = btrfs_join_transaction(root);
4263 if (IS_ERR(trans)) {
4264 ret = PTR_ERR(trans);
4265 break;
4266 }
4267 ret = btrfs_run_delayed_items_nr(trans, root, nr);
4268 btrfs_end_transaction(trans, root);
4269 break;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004270 case FLUSH_DELALLOC:
4271 case FLUSH_DELALLOC_WAIT:
Miao Xie24af7dd2014-03-06 13:55:00 +08004272 shrink_delalloc(root, num_bytes * 2, orig_bytes,
Josef Bacik67b0fd62012-09-24 13:42:00 -04004273 state == FLUSH_DELALLOC_WAIT);
4274 break;
Josef Bacikea658ba2012-09-11 16:57:25 -04004275 case ALLOC_CHUNK:
4276 trans = btrfs_join_transaction(root);
4277 if (IS_ERR(trans)) {
4278 ret = PTR_ERR(trans);
4279 break;
4280 }
4281 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Josef Bacikea658ba2012-09-11 16:57:25 -04004282 btrfs_get_alloc_profile(root, 0),
4283 CHUNK_ALLOC_NO_FORCE);
4284 btrfs_end_transaction(trans, root);
4285 if (ret == -ENOSPC)
4286 ret = 0;
4287 break;
Josef Bacik96c3f432012-06-21 14:05:49 -04004288 case COMMIT_TRANS:
4289 ret = may_commit_transaction(root, space_info, orig_bytes, 0);
4290 break;
4291 default:
4292 ret = -ENOSPC;
4293 break;
4294 }
4295
4296 return ret;
4297}
Miao Xie21c7e752014-05-13 17:29:04 -07004298
4299static inline u64
4300btrfs_calc_reclaim_metadata_size(struct btrfs_root *root,
4301 struct btrfs_space_info *space_info)
4302{
4303 u64 used;
4304 u64 expected;
4305 u64 to_reclaim;
4306
4307 to_reclaim = min_t(u64, num_online_cpus() * 1024 * 1024,
4308 16 * 1024 * 1024);
4309 spin_lock(&space_info->lock);
4310 if (can_overcommit(root, space_info, to_reclaim,
4311 BTRFS_RESERVE_FLUSH_ALL)) {
4312 to_reclaim = 0;
4313 goto out;
4314 }
4315
4316 used = space_info->bytes_used + space_info->bytes_reserved +
4317 space_info->bytes_pinned + space_info->bytes_readonly +
4318 space_info->bytes_may_use;
4319 if (can_overcommit(root, space_info, 1024 * 1024,
4320 BTRFS_RESERVE_FLUSH_ALL))
4321 expected = div_factor_fine(space_info->total_bytes, 95);
4322 else
4323 expected = div_factor_fine(space_info->total_bytes, 90);
4324
4325 if (used > expected)
4326 to_reclaim = used - expected;
4327 else
4328 to_reclaim = 0;
4329 to_reclaim = min(to_reclaim, space_info->bytes_may_use +
4330 space_info->bytes_reserved);
4331out:
4332 spin_unlock(&space_info->lock);
4333
4334 return to_reclaim;
4335}
4336
4337static inline int need_do_async_reclaim(struct btrfs_space_info *space_info,
4338 struct btrfs_fs_info *fs_info, u64 used)
4339{
4340 return (used >= div_factor_fine(space_info->total_bytes, 98) &&
4341 !btrfs_fs_closing(fs_info) &&
4342 !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state));
4343}
4344
4345static int btrfs_need_do_async_reclaim(struct btrfs_space_info *space_info,
Liu Bo25ce4592014-09-10 12:58:50 +08004346 struct btrfs_fs_info *fs_info,
4347 int flush_state)
Miao Xie21c7e752014-05-13 17:29:04 -07004348{
4349 u64 used;
4350
4351 spin_lock(&space_info->lock);
Liu Bo25ce4592014-09-10 12:58:50 +08004352 /*
4353 * We run out of space and have not got any free space via flush_space,
4354 * so don't bother doing async reclaim.
4355 */
4356 if (flush_state > COMMIT_TRANS && space_info->full) {
4357 spin_unlock(&space_info->lock);
4358 return 0;
4359 }
4360
Miao Xie21c7e752014-05-13 17:29:04 -07004361 used = space_info->bytes_used + space_info->bytes_reserved +
4362 space_info->bytes_pinned + space_info->bytes_readonly +
4363 space_info->bytes_may_use;
4364 if (need_do_async_reclaim(space_info, fs_info, used)) {
4365 spin_unlock(&space_info->lock);
4366 return 1;
4367 }
4368 spin_unlock(&space_info->lock);
4369
4370 return 0;
4371}
4372
4373static void btrfs_async_reclaim_metadata_space(struct work_struct *work)
4374{
4375 struct btrfs_fs_info *fs_info;
4376 struct btrfs_space_info *space_info;
4377 u64 to_reclaim;
4378 int flush_state;
4379
4380 fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work);
4381 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4382
4383 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root,
4384 space_info);
4385 if (!to_reclaim)
4386 return;
4387
4388 flush_state = FLUSH_DELAYED_ITEMS_NR;
4389 do {
4390 flush_space(fs_info->fs_root, space_info, to_reclaim,
4391 to_reclaim, flush_state);
4392 flush_state++;
Liu Bo25ce4592014-09-10 12:58:50 +08004393 if (!btrfs_need_do_async_reclaim(space_info, fs_info,
4394 flush_state))
Miao Xie21c7e752014-05-13 17:29:04 -07004395 return;
4396 } while (flush_state <= COMMIT_TRANS);
4397
Liu Bo25ce4592014-09-10 12:58:50 +08004398 if (btrfs_need_do_async_reclaim(space_info, fs_info, flush_state))
Miao Xie21c7e752014-05-13 17:29:04 -07004399 queue_work(system_unbound_wq, work);
4400}
4401
4402void btrfs_init_async_reclaim_work(struct work_struct *work)
4403{
4404 INIT_WORK(work, btrfs_async_reclaim_metadata_space);
4405}
4406
Josef Bacik663350a2011-11-03 22:54:25 -04004407/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004408 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
4409 * @root - the root we're allocating for
4410 * @block_rsv - the block_rsv we're allocating for
4411 * @orig_bytes - the number of bytes we want
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04004412 * @flush - whether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004413 *
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004414 * This will reserve orgi_bytes number of bytes from the space info associated
4415 * with the block_rsv. If there is not enough space it will make an attempt to
4416 * flush out space to make room. It will do this by flushing delalloc if
4417 * possible or committing the transaction. If flush is 0 then no attempts to
4418 * regain reservations will be made and this will fail if there is not enough
4419 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004420 */
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004421static int reserve_metadata_bytes(struct btrfs_root *root,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004422 struct btrfs_block_rsv *block_rsv,
Miao Xie08e007d2012-10-16 11:33:38 +00004423 u64 orig_bytes,
4424 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004425{
4426 struct btrfs_space_info *space_info = block_rsv->space_info;
Josef Bacik2bf64752011-09-26 17:12:22 -04004427 u64 used;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004428 u64 num_bytes = orig_bytes;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004429 int flush_state = FLUSH_DELAYED_ITEMS_NR;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004430 int ret = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004431 bool flushing = false;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004432
4433again:
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004434 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004435 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004436 /*
Miao Xie08e007d2012-10-16 11:33:38 +00004437 * We only want to wait if somebody other than us is flushing and we
4438 * are actually allowed to flush all things.
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004439 */
Miao Xie08e007d2012-10-16 11:33:38 +00004440 while (flush == BTRFS_RESERVE_FLUSH_ALL && !flushing &&
4441 space_info->flush) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004442 spin_unlock(&space_info->lock);
4443 /*
4444 * If we have a trans handle we can't wait because the flusher
4445 * may have to commit the transaction, which would mean we would
4446 * deadlock since we are waiting for the flusher to finish, but
4447 * hold the current transaction open.
4448 */
Josef Bacik663350a2011-11-03 22:54:25 -04004449 if (current->journal_info)
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004450 return -EAGAIN;
Arne Jansenb9688bb2012-04-18 10:27:16 +02004451 ret = wait_event_killable(space_info->wait, !space_info->flush);
4452 /* Must have been killed, return */
4453 if (ret)
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004454 return -EINTR;
4455
4456 spin_lock(&space_info->lock);
4457 }
4458
4459 ret = -ENOSPC;
Josef Bacik2bf64752011-09-26 17:12:22 -04004460 used = space_info->bytes_used + space_info->bytes_reserved +
4461 space_info->bytes_pinned + space_info->bytes_readonly +
4462 space_info->bytes_may_use;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004463
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004464 /*
4465 * The idea here is that we've not already over-reserved the block group
4466 * then we can go ahead and save our reservation first and then start
4467 * flushing if we need to. Otherwise if we've already overcommitted
4468 * lets start flushing stuff first and then come back and try to make
4469 * our reservation.
4470 */
Josef Bacik2bf64752011-09-26 17:12:22 -04004471 if (used <= space_info->total_bytes) {
4472 if (used + orig_bytes <= space_info->total_bytes) {
Josef Bacikfb25e912011-07-26 17:00:46 -04004473 space_info->bytes_may_use += orig_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004474 trace_btrfs_space_reservation(root->fs_info,
Liu Bo2bcc0322012-03-29 09:57:44 -04004475 "space_info", space_info->flags, orig_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004476 ret = 0;
4477 } else {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004478 /*
4479 * Ok set num_bytes to orig_bytes since we aren't
4480 * overocmmitted, this way we only try and reclaim what
4481 * we need.
4482 */
4483 num_bytes = orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004484 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004485 } else {
4486 /*
4487 * Ok we're over committed, set num_bytes to the overcommitted
4488 * amount plus the amount of bytes that we need for this
4489 * reservation.
4490 */
Josef Bacik2bf64752011-09-26 17:12:22 -04004491 num_bytes = used - space_info->total_bytes +
Josef Bacik96c3f432012-06-21 14:05:49 -04004492 (orig_bytes * 2);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004493 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004494
Josef Bacik44734ed2012-09-28 16:04:19 -04004495 if (ret && can_overcommit(root, space_info, orig_bytes, flush)) {
4496 space_info->bytes_may_use += orig_bytes;
4497 trace_btrfs_space_reservation(root->fs_info, "space_info",
4498 space_info->flags, orig_bytes,
4499 1);
4500 ret = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04004501 }
4502
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004503 /*
4504 * Couldn't make our reservation, save our place so while we're trying
4505 * to reclaim space we can actually use it instead of somebody else
4506 * stealing it from us.
Miao Xie08e007d2012-10-16 11:33:38 +00004507 *
4508 * We make the other tasks wait for the flush only when we can flush
4509 * all things.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004510 */
Josef Bacik72bcd992012-12-18 15:16:34 -05004511 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004512 flushing = true;
4513 space_info->flush = 1;
Miao Xie21c7e752014-05-13 17:29:04 -07004514 } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
4515 used += orig_bytes;
Josef Bacikf6acfd52014-09-18 11:27:17 -04004516 /*
4517 * We will do the space reservation dance during log replay,
4518 * which means we won't have fs_info->fs_root set, so don't do
4519 * the async reclaim as we will panic.
4520 */
4521 if (!root->fs_info->log_root_recovering &&
4522 need_do_async_reclaim(space_info, root->fs_info, used) &&
Miao Xie21c7e752014-05-13 17:29:04 -07004523 !work_busy(&root->fs_info->async_reclaim_work))
4524 queue_work(system_unbound_wq,
4525 &root->fs_info->async_reclaim_work);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004526 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004527 spin_unlock(&space_info->lock);
4528
Miao Xie08e007d2012-10-16 11:33:38 +00004529 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004530 goto out;
4531
Josef Bacik96c3f432012-06-21 14:05:49 -04004532 ret = flush_space(root, space_info, num_bytes, orig_bytes,
4533 flush_state);
4534 flush_state++;
Miao Xie08e007d2012-10-16 11:33:38 +00004535
4536 /*
4537 * If we are FLUSH_LIMIT, we can not flush delalloc, or the deadlock
4538 * would happen. So skip delalloc flush.
4539 */
4540 if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4541 (flush_state == FLUSH_DELALLOC ||
4542 flush_state == FLUSH_DELALLOC_WAIT))
4543 flush_state = ALLOC_CHUNK;
4544
Josef Bacik96c3f432012-06-21 14:05:49 -04004545 if (!ret)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004546 goto again;
Miao Xie08e007d2012-10-16 11:33:38 +00004547 else if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4548 flush_state < COMMIT_TRANS)
4549 goto again;
4550 else if (flush == BTRFS_RESERVE_FLUSH_ALL &&
4551 flush_state <= COMMIT_TRANS)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004552 goto again;
4553
4554out:
Josef Bacik5d803662013-02-07 16:06:02 -05004555 if (ret == -ENOSPC &&
4556 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
4557 struct btrfs_block_rsv *global_rsv =
4558 &root->fs_info->global_block_rsv;
4559
4560 if (block_rsv != global_rsv &&
4561 !block_rsv_use_bytes(global_rsv, orig_bytes))
4562 ret = 0;
4563 }
Jeff Mahoneycab45e22013-10-16 16:27:01 -04004564 if (ret == -ENOSPC)
4565 trace_btrfs_space_reservation(root->fs_info,
4566 "space_info:enospc",
4567 space_info->flags, orig_bytes, 1);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004568 if (flushing) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004569 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004570 space_info->flush = 0;
4571 wake_up_all(&space_info->wait);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004572 spin_unlock(&space_info->lock);
4573 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004574 return ret;
4575}
4576
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004577static struct btrfs_block_rsv *get_block_rsv(
4578 const struct btrfs_trans_handle *trans,
4579 const struct btrfs_root *root)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004580{
Josef Bacik4c13d752011-08-30 11:31:29 -04004581 struct btrfs_block_rsv *block_rsv = NULL;
4582
Miao Xie27cdeb72014-04-02 19:51:05 +08004583 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Josef Bacik0e721102012-06-26 16:13:18 -04004584 block_rsv = trans->block_rsv;
4585
4586 if (root == root->fs_info->csum_root && trans->adding_csums)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004587 block_rsv = trans->block_rsv;
Josef Bacik4c13d752011-08-30 11:31:29 -04004588
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004589 if (root == root->fs_info->uuid_root)
4590 block_rsv = trans->block_rsv;
4591
Josef Bacik4c13d752011-08-30 11:31:29 -04004592 if (!block_rsv)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004593 block_rsv = root->block_rsv;
4594
4595 if (!block_rsv)
4596 block_rsv = &root->fs_info->empty_block_rsv;
4597
4598 return block_rsv;
4599}
4600
4601static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
4602 u64 num_bytes)
4603{
4604 int ret = -ENOSPC;
4605 spin_lock(&block_rsv->lock);
4606 if (block_rsv->reserved >= num_bytes) {
4607 block_rsv->reserved -= num_bytes;
4608 if (block_rsv->reserved < block_rsv->size)
4609 block_rsv->full = 0;
4610 ret = 0;
4611 }
4612 spin_unlock(&block_rsv->lock);
4613 return ret;
4614}
4615
4616static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
4617 u64 num_bytes, int update_size)
4618{
4619 spin_lock(&block_rsv->lock);
4620 block_rsv->reserved += num_bytes;
4621 if (update_size)
4622 block_rsv->size += num_bytes;
4623 else if (block_rsv->reserved >= block_rsv->size)
4624 block_rsv->full = 1;
4625 spin_unlock(&block_rsv->lock);
4626}
4627
Josef Bacikd52be812013-05-29 14:54:47 -04004628int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
4629 struct btrfs_block_rsv *dest, u64 num_bytes,
4630 int min_factor)
4631{
4632 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
4633 u64 min_bytes;
4634
4635 if (global_rsv->space_info != dest->space_info)
4636 return -ENOSPC;
4637
4638 spin_lock(&global_rsv->lock);
4639 min_bytes = div_factor(global_rsv->size, min_factor);
4640 if (global_rsv->reserved < min_bytes + num_bytes) {
4641 spin_unlock(&global_rsv->lock);
4642 return -ENOSPC;
4643 }
4644 global_rsv->reserved -= num_bytes;
4645 if (global_rsv->reserved < global_rsv->size)
4646 global_rsv->full = 0;
4647 spin_unlock(&global_rsv->lock);
4648
4649 block_rsv_add_bytes(dest, num_bytes, 1);
4650 return 0;
4651}
4652
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004653static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
4654 struct btrfs_block_rsv *block_rsv,
David Sterba62a45b62011-04-20 15:52:26 +02004655 struct btrfs_block_rsv *dest, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004656{
4657 struct btrfs_space_info *space_info = block_rsv->space_info;
4658
4659 spin_lock(&block_rsv->lock);
4660 if (num_bytes == (u64)-1)
4661 num_bytes = block_rsv->size;
4662 block_rsv->size -= num_bytes;
4663 if (block_rsv->reserved >= block_rsv->size) {
4664 num_bytes = block_rsv->reserved - block_rsv->size;
4665 block_rsv->reserved = block_rsv->size;
4666 block_rsv->full = 1;
4667 } else {
4668 num_bytes = 0;
4669 }
4670 spin_unlock(&block_rsv->lock);
4671
4672 if (num_bytes > 0) {
4673 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00004674 spin_lock(&dest->lock);
4675 if (!dest->full) {
4676 u64 bytes_to_add;
4677
4678 bytes_to_add = dest->size - dest->reserved;
4679 bytes_to_add = min(num_bytes, bytes_to_add);
4680 dest->reserved += bytes_to_add;
4681 if (dest->reserved >= dest->size)
4682 dest->full = 1;
4683 num_bytes -= bytes_to_add;
4684 }
4685 spin_unlock(&dest->lock);
4686 }
4687 if (num_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04004688 spin_lock(&space_info->lock);
Josef Bacikfb25e912011-07-26 17:00:46 -04004689 space_info->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004690 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004691 space_info->flags, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004692 spin_unlock(&space_info->lock);
4693 }
4694 }
4695}
4696
4697static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src,
4698 struct btrfs_block_rsv *dst, u64 num_bytes)
4699{
4700 int ret;
4701
4702 ret = block_rsv_use_bytes(src, num_bytes);
4703 if (ret)
4704 return ret;
4705
4706 block_rsv_add_bytes(dst, num_bytes, 1);
4707 return 0;
4708}
4709
Miao Xie66d8f3d2012-09-06 04:02:28 -06004710void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004711{
4712 memset(rsv, 0, sizeof(*rsv));
4713 spin_lock_init(&rsv->lock);
Miao Xie66d8f3d2012-09-06 04:02:28 -06004714 rsv->type = type;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004715}
4716
Miao Xie66d8f3d2012-09-06 04:02:28 -06004717struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root,
4718 unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004719{
4720 struct btrfs_block_rsv *block_rsv;
4721 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004722
4723 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
4724 if (!block_rsv)
4725 return NULL;
4726
Miao Xie66d8f3d2012-09-06 04:02:28 -06004727 btrfs_init_block_rsv(block_rsv, type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004728 block_rsv->space_info = __find_space_info(fs_info,
4729 BTRFS_BLOCK_GROUP_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004730 return block_rsv;
4731}
4732
4733void btrfs_free_block_rsv(struct btrfs_root *root,
4734 struct btrfs_block_rsv *rsv)
4735{
Josef Bacik2aaa6652012-08-29 14:27:18 -04004736 if (!rsv)
4737 return;
Josef Bacikdabdb642011-08-08 12:50:18 -04004738 btrfs_block_rsv_release(root, rsv, (u64)-1);
4739 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004740}
4741
Miao Xie08e007d2012-10-16 11:33:38 +00004742int btrfs_block_rsv_add(struct btrfs_root *root,
4743 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
4744 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004745{
4746 int ret;
4747
4748 if (num_bytes == 0)
4749 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004750
Miao Xie61b520a2011-11-10 20:45:05 -05004751 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004752 if (!ret) {
4753 block_rsv_add_bytes(block_rsv, num_bytes, 1);
4754 return 0;
4755 }
4756
Yan, Zhengf0486c62010-05-16 10:46:25 -04004757 return ret;
4758}
4759
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004760int btrfs_block_rsv_check(struct btrfs_root *root,
Josef Bacik36ba0222011-10-18 12:15:48 -04004761 struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004762{
4763 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004764 int ret = -ENOSPC;
4765
4766 if (!block_rsv)
4767 return 0;
4768
4769 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04004770 num_bytes = div_factor(block_rsv->size, min_factor);
4771 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004772 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004773 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004774
Josef Bacik36ba0222011-10-18 12:15:48 -04004775 return ret;
4776}
4777
Miao Xie08e007d2012-10-16 11:33:38 +00004778int btrfs_block_rsv_refill(struct btrfs_root *root,
4779 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
4780 enum btrfs_reserve_flush_enum flush)
Josef Bacik36ba0222011-10-18 12:15:48 -04004781{
4782 u64 num_bytes = 0;
4783 int ret = -ENOSPC;
4784
4785 if (!block_rsv)
4786 return 0;
4787
4788 spin_lock(&block_rsv->lock);
4789 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04004790 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004791 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04004792 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04004793 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004794 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04004795
Yan, Zhengf0486c62010-05-16 10:46:25 -04004796 if (!ret)
4797 return 0;
4798
Miao Xieaa38a712011-11-18 17:43:00 +08004799 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Josef Bacikdabdb642011-08-08 12:50:18 -04004800 if (!ret) {
4801 block_rsv_add_bytes(block_rsv, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004802 return 0;
4803 }
4804
Josef Bacik13553e52011-08-08 13:33:21 -04004805 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004806}
4807
4808int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv,
4809 struct btrfs_block_rsv *dst_rsv,
4810 u64 num_bytes)
4811{
4812 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
4813}
4814
4815void btrfs_block_rsv_release(struct btrfs_root *root,
4816 struct btrfs_block_rsv *block_rsv,
4817 u64 num_bytes)
4818{
4819 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Liu Bo17504582013-12-29 21:44:50 +08004820 if (global_rsv == block_rsv ||
Yan, Zhengf0486c62010-05-16 10:46:25 -04004821 block_rsv->space_info != global_rsv->space_info)
4822 global_rsv = NULL;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004823 block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv,
4824 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004825}
4826
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004827/*
4828 * helper to calculate size of global block reservation.
4829 * the desired value is sum of space used by extent tree,
4830 * checksum tree and root tree
4831 */
4832static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info)
4833{
4834 struct btrfs_space_info *sinfo;
4835 u64 num_bytes;
4836 u64 meta_used;
4837 u64 data_used;
David Sterba6c417612011-04-13 15:41:04 +02004838 int csum_size = btrfs_super_csum_size(fs_info->super_copy);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004839
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004840 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA);
4841 spin_lock(&sinfo->lock);
4842 data_used = sinfo->bytes_used;
4843 spin_unlock(&sinfo->lock);
4844
4845 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4846 spin_lock(&sinfo->lock);
Josef Bacik6d487552010-10-15 15:13:32 -04004847 if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA)
4848 data_used = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004849 meta_used = sinfo->bytes_used;
4850 spin_unlock(&sinfo->lock);
4851
4852 num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) *
4853 csum_size * 2;
4854 num_bytes += div64_u64(data_used + meta_used, 50);
4855
4856 if (num_bytes * 3 > meta_used)
Chris Mason8e62c2d2012-04-12 13:46:48 -04004857 num_bytes = div64_u64(meta_used, 3);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004858
David Sterba707e8a02014-06-04 19:22:26 +02004859 return ALIGN(num_bytes, fs_info->extent_root->nodesize << 10);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004860}
4861
4862static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
4863{
4864 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
4865 struct btrfs_space_info *sinfo = block_rsv->space_info;
4866 u64 num_bytes;
4867
4868 num_bytes = calc_global_metadata_size(fs_info);
4869
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004870 spin_lock(&sinfo->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04004871 spin_lock(&block_rsv->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004872
Josef Bacikfdf30d12013-03-26 15:31:45 -04004873 block_rsv->size = min_t(u64, num_bytes, 512 * 1024 * 1024);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004874
4875 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
Josef Bacik6d487552010-10-15 15:13:32 -04004876 sinfo->bytes_reserved + sinfo->bytes_readonly +
4877 sinfo->bytes_may_use;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004878
4879 if (sinfo->total_bytes > num_bytes) {
4880 num_bytes = sinfo->total_bytes - num_bytes;
4881 block_rsv->reserved += num_bytes;
Josef Bacikfb25e912011-07-26 17:00:46 -04004882 sinfo->bytes_may_use += num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004883 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004884 sinfo->flags, num_bytes, 1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004885 }
4886
4887 if (block_rsv->reserved >= block_rsv->size) {
4888 num_bytes = block_rsv->reserved - block_rsv->size;
Josef Bacikfb25e912011-07-26 17:00:46 -04004889 sinfo->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004890 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004891 sinfo->flags, num_bytes, 0);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004892 block_rsv->reserved = block_rsv->size;
4893 block_rsv->full = 1;
4894 }
David Sterba182608c2011-05-05 13:13:16 +02004895
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004896 spin_unlock(&block_rsv->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04004897 spin_unlock(&sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004898}
4899
Yan, Zhengf0486c62010-05-16 10:46:25 -04004900static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
4901{
4902 struct btrfs_space_info *space_info;
4903
4904 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4905 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004906
4907 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004908 fs_info->global_block_rsv.space_info = space_info;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004909 fs_info->delalloc_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004910 fs_info->trans_block_rsv.space_info = space_info;
4911 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04004912 fs_info->delayed_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004913
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004914 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
4915 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
4916 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
4917 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Stefan Behrens3a6cad92013-05-16 14:48:19 +00004918 if (fs_info->quota_root)
4919 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004920 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004921
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004922 update_global_block_rsv(fs_info);
4923}
4924
4925static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
4926{
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004927 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
4928 (u64)-1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004929 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
4930 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
4931 WARN_ON(fs_info->trans_block_rsv.size > 0);
4932 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
4933 WARN_ON(fs_info->chunk_block_rsv.size > 0);
4934 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04004935 WARN_ON(fs_info->delayed_block_rsv.size > 0);
4936 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04004937}
4938
Yan, Zhenga22285a2010-05-16 10:48:46 -04004939void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
4940 struct btrfs_root *root)
4941{
Josef Bacik0e721102012-06-26 16:13:18 -04004942 if (!trans->block_rsv)
4943 return;
4944
Yan, Zhenga22285a2010-05-16 10:48:46 -04004945 if (!trans->bytes_reserved)
4946 return;
4947
Chris Masone77266e2012-02-24 10:39:05 -05004948 trace_btrfs_space_reservation(root->fs_info, "transaction",
Liu Bo2bcc0322012-03-29 09:57:44 -04004949 trans->transid, trans->bytes_reserved, 0);
Josef Bacikb24e03d2011-10-14 14:40:17 -04004950 btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004951 trans->bytes_reserved = 0;
4952}
4953
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004954/* Can only return 0 or -ENOSPC */
Yan, Zhengd68fc572010-05-16 10:49:58 -04004955int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
4956 struct inode *inode)
4957{
4958 struct btrfs_root *root = BTRFS_I(inode)->root;
4959 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
4960 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
4961
4962 /*
Josef Bacikfcb80c22011-05-03 10:40:22 -04004963 * We need to hold space in order to delete our orphan item once we've
4964 * added it, so this takes the reservation so we can release it later
4965 * when we are truly done with the orphan item.
Yan, Zhengd68fc572010-05-16 10:49:58 -04004966 */
Chris Masonff5714c2011-05-28 07:00:39 -04004967 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004968 trace_btrfs_space_reservation(root->fs_info, "orphan",
4969 btrfs_ino(inode), num_bytes, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04004970 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
4971}
4972
4973void btrfs_orphan_release_metadata(struct inode *inode)
4974{
4975 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonff5714c2011-05-28 07:00:39 -04004976 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004977 trace_btrfs_space_reservation(root->fs_info, "orphan",
4978 btrfs_ino(inode), num_bytes, 0);
Yan, Zhengd68fc572010-05-16 10:49:58 -04004979 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
4980}
4981
Miao Xied5c12072013-02-28 10:04:33 +00004982/*
4983 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
4984 * root: the root of the parent directory
4985 * rsv: block reservation
4986 * items: the number of items that we need do reservation
4987 * qgroup_reserved: used to return the reserved size in qgroup
4988 *
4989 * This function is used to reserve the space for snapshot/subvolume
4990 * creation and deletion. Those operations are different with the
4991 * common file/directory operations, they change two fs/file trees
4992 * and root tree, the number of items that the qgroup reserves is
4993 * different with the free space reservation. So we can not use
4994 * the space reseravtion mechanism in start_transaction().
4995 */
4996int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
4997 struct btrfs_block_rsv *rsv,
4998 int items,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04004999 u64 *qgroup_reserved,
5000 bool use_global_rsv)
Yan, Zhenga22285a2010-05-16 10:48:46 -04005001{
Miao Xied5c12072013-02-28 10:04:33 +00005002 u64 num_bytes;
5003 int ret;
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005004 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Miao Xied5c12072013-02-28 10:04:33 +00005005
5006 if (root->fs_info->quota_enabled) {
5007 /* One for parent inode, two for dir entries */
David Sterba707e8a02014-06-04 19:22:26 +02005008 num_bytes = 3 * root->nodesize;
Miao Xied5c12072013-02-28 10:04:33 +00005009 ret = btrfs_qgroup_reserve(root, num_bytes);
5010 if (ret)
5011 return ret;
5012 } else {
5013 num_bytes = 0;
5014 }
5015
5016 *qgroup_reserved = num_bytes;
5017
5018 num_bytes = btrfs_calc_trans_metadata_size(root, items);
5019 rsv->space_info = __find_space_info(root->fs_info,
5020 BTRFS_BLOCK_GROUP_METADATA);
5021 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
5022 BTRFS_RESERVE_FLUSH_ALL);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005023
5024 if (ret == -ENOSPC && use_global_rsv)
5025 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes);
5026
Miao Xied5c12072013-02-28 10:04:33 +00005027 if (ret) {
5028 if (*qgroup_reserved)
5029 btrfs_qgroup_free(root, *qgroup_reserved);
5030 }
5031
5032 return ret;
5033}
5034
5035void btrfs_subvolume_release_metadata(struct btrfs_root *root,
5036 struct btrfs_block_rsv *rsv,
5037 u64 qgroup_reserved)
5038{
5039 btrfs_block_rsv_release(root, rsv, (u64)-1);
5040 if (qgroup_reserved)
5041 btrfs_qgroup_free(root, qgroup_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005042}
5043
Josef Bacik7709cde2011-08-04 10:25:02 -04005044/**
5045 * drop_outstanding_extent - drop an outstanding extent
5046 * @inode: the inode we're dropping the extent for
5047 *
5048 * This is called when we are freeing up an outstanding extent, either called
5049 * after an error or after an extent is written. This will return the number of
5050 * reserved extents that need to be freed. This must be called with
5051 * BTRFS_I(inode)->lock held.
5052 */
Josef Bacik9e0baf62011-07-15 15:16:44 +00005053static unsigned drop_outstanding_extent(struct inode *inode)
5054{
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005055 unsigned drop_inode_space = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005056 unsigned dropped_extents = 0;
5057
Josef Bacik9e0baf62011-07-15 15:16:44 +00005058 BUG_ON(!BTRFS_I(inode)->outstanding_extents);
5059 BTRFS_I(inode)->outstanding_extents--;
5060
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005061 if (BTRFS_I(inode)->outstanding_extents == 0 &&
Josef Bacik72ac3c02012-05-23 14:13:11 -04005062 test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5063 &BTRFS_I(inode)->runtime_flags))
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005064 drop_inode_space = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005065
Josef Bacik9e0baf62011-07-15 15:16:44 +00005066 /*
5067 * If we have more or the same amount of outsanding extents than we have
5068 * reserved then we need to leave the reserved extents count alone.
5069 */
5070 if (BTRFS_I(inode)->outstanding_extents >=
5071 BTRFS_I(inode)->reserved_extents)
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005072 return drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005073
5074 dropped_extents = BTRFS_I(inode)->reserved_extents -
5075 BTRFS_I(inode)->outstanding_extents;
5076 BTRFS_I(inode)->reserved_extents -= dropped_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005077 return dropped_extents + drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005078}
5079
Josef Bacik7709cde2011-08-04 10:25:02 -04005080/**
5081 * calc_csum_metadata_size - return the amount of metada space that must be
5082 * reserved/free'd for the given bytes.
5083 * @inode: the inode we're manipulating
5084 * @num_bytes: the number of bytes in question
5085 * @reserve: 1 if we are reserving space, 0 if we are freeing space
5086 *
5087 * This adjusts the number of csum_bytes in the inode and then returns the
5088 * correct amount of metadata that must either be reserved or freed. We
5089 * calculate how many checksums we can fit into one leaf and then divide the
5090 * number of bytes that will need to be checksumed by this value to figure out
5091 * how many checksums will be required. If we are adding bytes then the number
5092 * may go up and we will return the number of additional bytes that must be
5093 * reserved. If it is going down we will return the number of bytes that must
5094 * be freed.
5095 *
5096 * This must be called with BTRFS_I(inode)->lock held.
5097 */
5098static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes,
5099 int reserve)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005100{
Josef Bacik7709cde2011-08-04 10:25:02 -04005101 struct btrfs_root *root = BTRFS_I(inode)->root;
5102 u64 csum_size;
5103 int num_csums_per_leaf;
5104 int num_csums;
5105 int old_csums;
5106
5107 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM &&
5108 BTRFS_I(inode)->csum_bytes == 0)
5109 return 0;
5110
5111 old_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize);
5112 if (reserve)
5113 BTRFS_I(inode)->csum_bytes += num_bytes;
5114 else
5115 BTRFS_I(inode)->csum_bytes -= num_bytes;
5116 csum_size = BTRFS_LEAF_DATA_SIZE(root) - sizeof(struct btrfs_item);
5117 num_csums_per_leaf = (int)div64_u64(csum_size,
5118 sizeof(struct btrfs_csum_item) +
5119 sizeof(struct btrfs_disk_key));
5120 num_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize);
5121 num_csums = num_csums + num_csums_per_leaf - 1;
5122 num_csums = num_csums / num_csums_per_leaf;
5123
5124 old_csums = old_csums + num_csums_per_leaf - 1;
5125 old_csums = old_csums / num_csums_per_leaf;
5126
5127 /* No change, no need to reserve more */
5128 if (old_csums == num_csums)
5129 return 0;
5130
5131 if (reserve)
5132 return btrfs_calc_trans_metadata_size(root,
5133 num_csums - old_csums);
5134
5135 return btrfs_calc_trans_metadata_size(root, old_csums - num_csums);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005136}
5137
5138int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
5139{
5140 struct btrfs_root *root = BTRFS_I(inode)->root;
5141 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005142 u64 to_reserve = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05005143 u64 csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005144 unsigned nr_extents = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05005145 int extra_reserve = 0;
Miao Xie08e007d2012-10-16 11:33:38 +00005146 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
Jan Schmidteb6b88d2013-01-27 23:26:00 -07005147 int ret = 0;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005148 bool delalloc_lock = true;
Wang Shilong88e081bf2013-03-01 11:36:01 +00005149 u64 to_free = 0;
5150 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005151
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005152 /* If we are a free space inode we need to not flush since we will be in
5153 * the middle of a transaction commit. We also don't need the delalloc
5154 * mutex since we won't race with anybody. We need this mostly to make
5155 * lockdep shut its filthy mouth.
5156 */
5157 if (btrfs_is_free_space_inode(inode)) {
Miao Xie08e007d2012-10-16 11:33:38 +00005158 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005159 delalloc_lock = false;
5160 }
Josef Bacikc09544e2011-08-30 10:19:10 -04005161
Miao Xie08e007d2012-10-16 11:33:38 +00005162 if (flush != BTRFS_RESERVE_NO_FLUSH &&
5163 btrfs_transaction_in_commit(root->fs_info))
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005164 schedule_timeout(1);
5165
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005166 if (delalloc_lock)
5167 mutex_lock(&BTRFS_I(inode)->delalloc_mutex);
5168
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005169 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005170
Josef Bacik9e0baf62011-07-15 15:16:44 +00005171 spin_lock(&BTRFS_I(inode)->lock);
5172 BTRFS_I(inode)->outstanding_extents++;
Josef Bacik57a45ced2011-01-25 16:30:38 -05005173
Josef Bacik9e0baf62011-07-15 15:16:44 +00005174 if (BTRFS_I(inode)->outstanding_extents >
Josef Bacik660d3f62011-12-09 11:18:51 -05005175 BTRFS_I(inode)->reserved_extents)
Josef Bacik9e0baf62011-07-15 15:16:44 +00005176 nr_extents = BTRFS_I(inode)->outstanding_extents -
5177 BTRFS_I(inode)->reserved_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005178
5179 /*
5180 * Add an item to reserve for updating the inode when we complete the
5181 * delalloc io.
5182 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04005183 if (!test_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5184 &BTRFS_I(inode)->runtime_flags)) {
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005185 nr_extents++;
Josef Bacik660d3f62011-12-09 11:18:51 -05005186 extra_reserve = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005187 }
5188
5189 to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04005190 to_reserve += calc_csum_metadata_size(inode, num_bytes, 1);
Josef Bacik660d3f62011-12-09 11:18:51 -05005191 csum_bytes = BTRFS_I(inode)->csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005192 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05005193
Wang Shilong88e081bf2013-03-01 11:36:01 +00005194 if (root->fs_info->quota_enabled) {
Arne Jansenc5567232011-09-14 15:44:05 +02005195 ret = btrfs_qgroup_reserve(root, num_bytes +
David Sterba707e8a02014-06-04 19:22:26 +02005196 nr_extents * root->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005197 if (ret)
5198 goto out_fail;
Wang Shilonga9870c02013-03-01 11:33:01 +00005199 }
Arne Jansenc5567232011-09-14 15:44:05 +02005200
Wang Shilong88e081bf2013-03-01 11:36:01 +00005201 ret = reserve_metadata_bytes(root, block_rsv, to_reserve, flush);
5202 if (unlikely(ret)) {
5203 if (root->fs_info->quota_enabled)
Miao Xie4b5829a2012-12-05 10:53:25 +00005204 btrfs_qgroup_free(root, num_bytes +
David Sterba707e8a02014-06-04 19:22:26 +02005205 nr_extents * root->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005206 goto out_fail;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005207 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005208
Josef Bacik660d3f62011-12-09 11:18:51 -05005209 spin_lock(&BTRFS_I(inode)->lock);
5210 if (extra_reserve) {
Josef Bacik72ac3c02012-05-23 14:13:11 -04005211 set_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5212 &BTRFS_I(inode)->runtime_flags);
Josef Bacik660d3f62011-12-09 11:18:51 -05005213 nr_extents--;
5214 }
5215 BTRFS_I(inode)->reserved_extents += nr_extents;
5216 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005217
5218 if (delalloc_lock)
5219 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
Josef Bacik660d3f62011-12-09 11:18:51 -05005220
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005221 if (to_reserve)
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05305222 trace_btrfs_space_reservation(root->fs_info, "delalloc",
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005223 btrfs_ino(inode), to_reserve, 1);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005224 block_rsv_add_bytes(block_rsv, to_reserve, 1);
5225
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005226 return 0;
Wang Shilong88e081bf2013-03-01 11:36:01 +00005227
5228out_fail:
5229 spin_lock(&BTRFS_I(inode)->lock);
5230 dropped = drop_outstanding_extent(inode);
5231 /*
5232 * If the inodes csum_bytes is the same as the original
5233 * csum_bytes then we know we haven't raced with any free()ers
5234 * so we can just reduce our inodes csum bytes and carry on.
Wang Shilong88e081bf2013-03-01 11:36:01 +00005235 */
Josef Bacikf4881bc2013-03-25 16:03:35 -04005236 if (BTRFS_I(inode)->csum_bytes == csum_bytes) {
Wang Shilong88e081bf2013-03-01 11:36:01 +00005237 calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacikf4881bc2013-03-25 16:03:35 -04005238 } else {
5239 u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes;
5240 u64 bytes;
5241
5242 /*
5243 * This is tricky, but first we need to figure out how much we
5244 * free'd from any free-ers that occured during this
5245 * reservation, so we reset ->csum_bytes to the csum_bytes
5246 * before we dropped our lock, and then call the free for the
5247 * number of bytes that were freed while we were trying our
5248 * reservation.
5249 */
5250 bytes = csum_bytes - BTRFS_I(inode)->csum_bytes;
5251 BTRFS_I(inode)->csum_bytes = csum_bytes;
5252 to_free = calc_csum_metadata_size(inode, bytes, 0);
5253
5254
5255 /*
5256 * Now we need to see how much we would have freed had we not
5257 * been making this reservation and our ->csum_bytes were not
5258 * artificially inflated.
5259 */
5260 BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes;
5261 bytes = csum_bytes - orig_csum_bytes;
5262 bytes = calc_csum_metadata_size(inode, bytes, 0);
5263
5264 /*
5265 * Now reset ->csum_bytes to what it should be. If bytes is
5266 * more than to_free then we would have free'd more space had we
5267 * not had an artificially high ->csum_bytes, so we need to free
5268 * the remainder. If bytes is the same or less then we don't
5269 * need to do anything, the other free-ers did the correct
5270 * thing.
5271 */
5272 BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes;
5273 if (bytes > to_free)
5274 to_free = bytes - to_free;
5275 else
5276 to_free = 0;
5277 }
Wang Shilong88e081bf2013-03-01 11:36:01 +00005278 spin_unlock(&BTRFS_I(inode)->lock);
5279 if (dropped)
5280 to_free += btrfs_calc_trans_metadata_size(root, dropped);
5281
5282 if (to_free) {
5283 btrfs_block_rsv_release(root, block_rsv, to_free);
5284 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5285 btrfs_ino(inode), to_free, 0);
5286 }
5287 if (delalloc_lock)
5288 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
5289 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005290}
5291
Josef Bacik7709cde2011-08-04 10:25:02 -04005292/**
5293 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
5294 * @inode: the inode to release the reservation for
5295 * @num_bytes: the number of bytes we're releasing
5296 *
5297 * This will release the metadata reservation for an inode. This can be called
5298 * once we complete IO for a given set of bytes to release their metadata
5299 * reservations.
5300 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005301void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
5302{
5303 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005304 u64 to_free = 0;
5305 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005306
5307 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik7709cde2011-08-04 10:25:02 -04005308 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00005309 dropped = drop_outstanding_extent(inode);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005310
Miao Xie09348562013-02-07 10:12:07 +00005311 if (num_bytes)
5312 to_free = calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacik7709cde2011-08-04 10:25:02 -04005313 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00005314 if (dropped > 0)
5315 to_free += btrfs_calc_trans_metadata_size(root, dropped);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005316
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005317 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5318 btrfs_ino(inode), to_free, 0);
Arne Jansenc5567232011-09-14 15:44:05 +02005319 if (root->fs_info->quota_enabled) {
5320 btrfs_qgroup_free(root, num_bytes +
David Sterba707e8a02014-06-04 19:22:26 +02005321 dropped * root->nodesize);
Arne Jansenc5567232011-09-14 15:44:05 +02005322 }
5323
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005324 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
5325 to_free);
5326}
5327
Josef Bacik7709cde2011-08-04 10:25:02 -04005328/**
5329 * btrfs_delalloc_reserve_space - reserve data and metadata space for delalloc
5330 * @inode: inode we're writing to
5331 * @num_bytes: the number of bytes we want to allocate
5332 *
5333 * This will do the following things
5334 *
5335 * o reserve space in the data space info for num_bytes
5336 * o reserve space in the metadata space info based on number of outstanding
5337 * extents and how much csums will be needed
5338 * o add to the inodes ->delalloc_bytes
5339 * o add it to the fs_info's delalloc inodes list.
5340 *
5341 * This will return 0 for success and -ENOSPC if there is no space left.
5342 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005343int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes)
5344{
5345 int ret;
5346
5347 ret = btrfs_check_data_free_space(inode, num_bytes);
5348 if (ret)
5349 return ret;
5350
5351 ret = btrfs_delalloc_reserve_metadata(inode, num_bytes);
5352 if (ret) {
5353 btrfs_free_reserved_data_space(inode, num_bytes);
5354 return ret;
5355 }
5356
5357 return 0;
5358}
5359
Josef Bacik7709cde2011-08-04 10:25:02 -04005360/**
5361 * btrfs_delalloc_release_space - release data and metadata space for delalloc
5362 * @inode: inode we're releasing space for
5363 * @num_bytes: the number of bytes we want to free up
5364 *
5365 * This must be matched with a call to btrfs_delalloc_reserve_space. This is
5366 * called in the case that we don't need the metadata AND data reservations
5367 * anymore. So if there is an error or we insert an inline extent.
5368 *
5369 * This function will release the metadata space that was not used and will
5370 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
5371 * list if there are no delalloc bytes left.
5372 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005373void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes)
5374{
5375 btrfs_delalloc_release_metadata(inode, num_bytes);
5376 btrfs_free_reserved_data_space(inode, num_bytes);
5377}
5378
Liu Boc53d6132012-12-27 09:01:19 +00005379static int update_block_group(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005380 u64 bytenr, u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04005381{
Josef Bacik0af3d002010-06-21 14:48:16 -04005382 struct btrfs_block_group_cache *cache = NULL;
Chris Mason9078a3e2007-04-26 16:46:15 -04005383 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04005384 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005385 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04005386 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04005387 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04005388
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005389 /* block accounting for super block */
Miao Xieeb73c1b2013-05-15 07:48:22 +00005390 spin_lock(&info->delalloc_root_lock);
David Sterba6c417612011-04-13 15:41:04 +02005391 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005392 if (alloc)
5393 old_val += num_bytes;
5394 else
5395 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02005396 btrfs_set_super_bytes_used(info->super_copy, old_val);
Miao Xieeb73c1b2013-05-15 07:48:22 +00005397 spin_unlock(&info->delalloc_root_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005398
Chris Masond3977122009-01-05 21:25:51 -05005399 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04005400 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05005401 if (!cache)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005402 return -ENOENT;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005403 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
5404 BTRFS_BLOCK_GROUP_RAID1 |
5405 BTRFS_BLOCK_GROUP_RAID10))
5406 factor = 2;
5407 else
5408 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04005409 /*
5410 * If this block group has free space cache written out, we
5411 * need to make sure to load it if we are removing space. This
5412 * is because we need the unpinning stage to actually add the
5413 * space back to the block group, otherwise we will leak space.
5414 */
5415 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Liu Bof6373bf2012-12-27 09:01:18 +00005416 cache_block_group(cache, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04005417
Chris Masondb945352007-10-15 16:15:53 -04005418 byte_in_group = bytenr - cache->key.objectid;
5419 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04005420
Josef Bacik25179202008-10-29 14:49:05 -04005421 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04005422 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04005423
Josef Bacik73bc1872011-10-03 14:07:49 -04005424 if (btrfs_test_opt(root, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04005425 cache->disk_cache_state < BTRFS_DC_CLEAR)
5426 cache->disk_cache_state = BTRFS_DC_CLEAR;
5427
Josef Bacik0f9dd462008-09-23 13:14:11 -04005428 cache->dirty = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04005429 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04005430 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04005431 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04005432 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04005433 btrfs_set_block_group_used(&cache->item, old_val);
5434 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04005435 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005436 cache->space_info->bytes_used += num_bytes;
5437 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04005438 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005439 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04005440 } else {
Chris Masondb945352007-10-15 16:15:53 -04005441 old_val -= num_bytes;
Josef Bacik47ab2a62014-09-18 11:20:02 -04005442
5443 /*
5444 * No longer have used bytes in this block group, queue
5445 * it for deletion.
5446 */
5447 if (old_val == 0) {
5448 spin_lock(&info->unused_bgs_lock);
5449 if (list_empty(&cache->bg_list)) {
5450 btrfs_get_block_group(cache);
5451 list_add_tail(&cache->bg_list,
5452 &info->unused_bgs);
5453 }
5454 spin_unlock(&info->unused_bgs_lock);
5455 }
Chris Masonc286ac42008-07-22 23:06:41 -04005456 btrfs_set_block_group_used(&cache->item, old_val);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005457 cache->pinned += num_bytes;
5458 cache->space_info->bytes_pinned += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005459 cache->space_info->bytes_used -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005460 cache->space_info->disk_used -= num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04005461 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005462 spin_unlock(&cache->space_info->lock);
Liu Hui1f3c79a2009-01-05 15:57:51 -05005463
Yan, Zhengf0486c62010-05-16 10:46:25 -04005464 set_extent_dirty(info->pinned_extents,
5465 bytenr, bytenr + num_bytes - 1,
5466 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04005467 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04005468 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04005469 total -= num_bytes;
5470 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005471 }
5472 return 0;
5473}
Chris Mason6324fbf2008-03-24 15:01:59 -04005474
Chris Masona061fc82008-05-07 11:43:44 -04005475static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
5476{
Josef Bacik0f9dd462008-09-23 13:14:11 -04005477 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05005478 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005479
Liu Boa1897fd2012-12-27 09:01:23 +00005480 spin_lock(&root->fs_info->block_group_cache_lock);
5481 bytenr = root->fs_info->first_logical_byte;
5482 spin_unlock(&root->fs_info->block_group_cache_lock);
5483
5484 if (bytenr < (u64)-1)
5485 return bytenr;
5486
Josef Bacik0f9dd462008-09-23 13:14:11 -04005487 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
5488 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04005489 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005490
Yan Zhengd2fb3432008-12-11 16:30:39 -05005491 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005492 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05005493
5494 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04005495}
5496
Yan, Zhengf0486c62010-05-16 10:46:25 -04005497static int pin_down_extent(struct btrfs_root *root,
5498 struct btrfs_block_group_cache *cache,
5499 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05005500{
Yan Zheng11833d62009-09-11 16:11:19 -04005501 spin_lock(&cache->space_info->lock);
5502 spin_lock(&cache->lock);
5503 cache->pinned += num_bytes;
5504 cache->space_info->bytes_pinned += num_bytes;
5505 if (reserved) {
5506 cache->reserved -= num_bytes;
5507 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05005508 }
Yan Zheng11833d62009-09-11 16:11:19 -04005509 spin_unlock(&cache->lock);
5510 spin_unlock(&cache->space_info->lock);
5511
Yan, Zhengf0486c62010-05-16 10:46:25 -04005512 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
5513 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Josef Bacik0be5dc62013-10-07 15:18:52 -04005514 if (reserved)
5515 trace_btrfs_reserved_extent_free(root, bytenr, num_bytes);
Yan324ae4d2007-11-16 14:57:08 -05005516 return 0;
5517}
Chris Mason9078a3e2007-04-26 16:46:15 -04005518
Yan, Zhengf0486c62010-05-16 10:46:25 -04005519/*
5520 * this function must be called within transaction
5521 */
5522int btrfs_pin_extent(struct btrfs_root *root,
5523 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04005524{
Yan, Zhengf0486c62010-05-16 10:46:25 -04005525 struct btrfs_block_group_cache *cache;
5526
5527 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005528 BUG_ON(!cache); /* Logic error */
Yan, Zhengf0486c62010-05-16 10:46:25 -04005529
5530 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
5531
5532 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04005533 return 0;
5534}
Zheng Yane8569812008-09-26 10:05:48 -04005535
Yan, Zhengf0486c62010-05-16 10:46:25 -04005536/*
Chris Masone688b7252011-10-31 20:52:39 -04005537 * this function must be called within transaction
Yan, Zhengf0486c62010-05-16 10:46:25 -04005538 */
Liu Bodcfac412012-12-27 09:01:20 +00005539int btrfs_pin_extent_for_log_replay(struct btrfs_root *root,
Chris Masone688b7252011-10-31 20:52:39 -04005540 u64 bytenr, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005541{
Chris Masone688b7252011-10-31 20:52:39 -04005542 struct btrfs_block_group_cache *cache;
Josef Bacikb50c6e22013-04-25 15:55:30 -04005543 int ret;
Chris Masone688b7252011-10-31 20:52:39 -04005544
5545 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005546 if (!cache)
5547 return -EINVAL;
Chris Masone688b7252011-10-31 20:52:39 -04005548
5549 /*
5550 * pull in the free space cache (if any) so that our pin
5551 * removes the free space from the cache. We have load_only set
5552 * to one because the slow code to read in the free extents does check
5553 * the pinned extents.
5554 */
Liu Bof6373bf2012-12-27 09:01:18 +00005555 cache_block_group(cache, 1);
Chris Masone688b7252011-10-31 20:52:39 -04005556
5557 pin_down_extent(root, cache, bytenr, num_bytes, 0);
5558
5559 /* remove us from the free space cache (if we're there at all) */
Josef Bacikb50c6e22013-04-25 15:55:30 -04005560 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
Chris Masone688b7252011-10-31 20:52:39 -04005561 btrfs_put_block_group(cache);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005562 return ret;
Chris Masone688b7252011-10-31 20:52:39 -04005563}
5564
Josef Bacik8c2a1a32013-06-06 13:19:32 -04005565static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes)
5566{
5567 int ret;
5568 struct btrfs_block_group_cache *block_group;
5569 struct btrfs_caching_control *caching_ctl;
5570
5571 block_group = btrfs_lookup_block_group(root->fs_info, start);
5572 if (!block_group)
5573 return -EINVAL;
5574
5575 cache_block_group(block_group, 0);
5576 caching_ctl = get_caching_control(block_group);
5577
5578 if (!caching_ctl) {
5579 /* Logic error */
5580 BUG_ON(!block_group_cache_done(block_group));
5581 ret = btrfs_remove_free_space(block_group, start, num_bytes);
5582 } else {
5583 mutex_lock(&caching_ctl->mutex);
5584
5585 if (start >= caching_ctl->progress) {
5586 ret = add_excluded_extent(root, start, num_bytes);
5587 } else if (start + num_bytes <= caching_ctl->progress) {
5588 ret = btrfs_remove_free_space(block_group,
5589 start, num_bytes);
5590 } else {
5591 num_bytes = caching_ctl->progress - start;
5592 ret = btrfs_remove_free_space(block_group,
5593 start, num_bytes);
5594 if (ret)
5595 goto out_lock;
5596
5597 num_bytes = (start + num_bytes) -
5598 caching_ctl->progress;
5599 start = caching_ctl->progress;
5600 ret = add_excluded_extent(root, start, num_bytes);
5601 }
5602out_lock:
5603 mutex_unlock(&caching_ctl->mutex);
5604 put_caching_control(caching_ctl);
5605 }
5606 btrfs_put_block_group(block_group);
5607 return ret;
5608}
5609
5610int btrfs_exclude_logged_extents(struct btrfs_root *log,
5611 struct extent_buffer *eb)
5612{
5613 struct btrfs_file_extent_item *item;
5614 struct btrfs_key key;
5615 int found_type;
5616 int i;
5617
5618 if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS))
5619 return 0;
5620
5621 for (i = 0; i < btrfs_header_nritems(eb); i++) {
5622 btrfs_item_key_to_cpu(eb, &key, i);
5623 if (key.type != BTRFS_EXTENT_DATA_KEY)
5624 continue;
5625 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
5626 found_type = btrfs_file_extent_type(eb, item);
5627 if (found_type == BTRFS_FILE_EXTENT_INLINE)
5628 continue;
5629 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
5630 continue;
5631 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
5632 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
5633 __exclude_logged_extent(log, key.objectid, key.offset);
5634 }
5635
5636 return 0;
5637}
5638
Josef Bacikfb25e912011-07-26 17:00:46 -04005639/**
5640 * btrfs_update_reserved_bytes - update the block_group and space info counters
5641 * @cache: The cache we are manipulating
5642 * @num_bytes: The number of bytes in question
5643 * @reserve: One of the reservation enums
Miao Xiee570fd22014-06-19 10:42:50 +08005644 * @delalloc: The blocks are allocated for the delalloc write
Josef Bacikfb25e912011-07-26 17:00:46 -04005645 *
5646 * This is called by the allocator when it reserves space, or by somebody who is
5647 * freeing space that was never actually used on disk. For example if you
5648 * reserve some space for a new leaf in transaction A and before transaction A
5649 * commits you free that leaf, you call this with reserve set to 0 in order to
5650 * clear the reservation.
5651 *
5652 * Metadata reservations should be called with RESERVE_ALLOC so we do the proper
5653 * ENOSPC accounting. For data we handle the reservation through clearing the
5654 * delalloc bits in the io_tree. We have to do this since we could end up
5655 * allocating less disk space for the amount of data we have reserved in the
5656 * case of compression.
5657 *
5658 * If this is a reservation and the block group has become read only we cannot
5659 * make the reservation and return -EAGAIN, otherwise this function always
5660 * succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04005661 */
Josef Bacikfb25e912011-07-26 17:00:46 -04005662static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
Miao Xiee570fd22014-06-19 10:42:50 +08005663 u64 num_bytes, int reserve, int delalloc)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005664{
Josef Bacikfb25e912011-07-26 17:00:46 -04005665 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005666 int ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005667
Josef Bacikfb25e912011-07-26 17:00:46 -04005668 spin_lock(&space_info->lock);
5669 spin_lock(&cache->lock);
5670 if (reserve != RESERVE_FREE) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005671 if (cache->ro) {
5672 ret = -EAGAIN;
5673 } else {
Josef Bacikfb25e912011-07-26 17:00:46 -04005674 cache->reserved += num_bytes;
5675 space_info->bytes_reserved += num_bytes;
5676 if (reserve == RESERVE_ALLOC) {
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005677 trace_btrfs_space_reservation(cache->fs_info,
Liu Bo2bcc0322012-03-29 09:57:44 -04005678 "space_info", space_info->flags,
5679 num_bytes, 0);
Josef Bacikfb25e912011-07-26 17:00:46 -04005680 space_info->bytes_may_use -= num_bytes;
5681 }
Miao Xiee570fd22014-06-19 10:42:50 +08005682
5683 if (delalloc)
5684 cache->delalloc_bytes += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005685 }
Josef Bacikfb25e912011-07-26 17:00:46 -04005686 } else {
5687 if (cache->ro)
5688 space_info->bytes_readonly += num_bytes;
5689 cache->reserved -= num_bytes;
5690 space_info->bytes_reserved -= num_bytes;
Miao Xiee570fd22014-06-19 10:42:50 +08005691
5692 if (delalloc)
5693 cache->delalloc_bytes -= num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005694 }
Josef Bacikfb25e912011-07-26 17:00:46 -04005695 spin_unlock(&cache->lock);
5696 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005697 return ret;
5698}
5699
Jeff Mahoney143bede2012-03-01 14:56:26 +01005700void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04005701 struct btrfs_root *root)
5702{
5703 struct btrfs_fs_info *fs_info = root->fs_info;
5704 struct btrfs_caching_control *next;
5705 struct btrfs_caching_control *caching_ctl;
5706 struct btrfs_block_group_cache *cache;
5707
Josef Bacik9e351cc2014-03-13 15:42:13 -04005708 down_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04005709
5710 list_for_each_entry_safe(caching_ctl, next,
5711 &fs_info->caching_block_groups, list) {
5712 cache = caching_ctl->block_group;
5713 if (block_group_cache_done(cache)) {
5714 cache->last_byte_to_unpin = (u64)-1;
5715 list_del_init(&caching_ctl->list);
5716 put_caching_control(caching_ctl);
5717 } else {
5718 cache->last_byte_to_unpin = caching_ctl->progress;
5719 }
5720 }
5721
5722 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
5723 fs_info->pinned_extents = &fs_info->freed_extents[1];
5724 else
5725 fs_info->pinned_extents = &fs_info->freed_extents[0];
5726
Josef Bacik9e351cc2014-03-13 15:42:13 -04005727 up_write(&fs_info->commit_root_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005728
5729 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04005730}
5731
5732static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
5733{
5734 struct btrfs_fs_info *fs_info = root->fs_info;
5735 struct btrfs_block_group_cache *cache = NULL;
Josef Bacik7b398f82012-10-22 15:52:28 -04005736 struct btrfs_space_info *space_info;
5737 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Yan Zheng11833d62009-09-11 16:11:19 -04005738 u64 len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005739 bool readonly;
Yan Zheng11833d62009-09-11 16:11:19 -04005740
5741 while (start <= end) {
Josef Bacik7b398f82012-10-22 15:52:28 -04005742 readonly = false;
Yan Zheng11833d62009-09-11 16:11:19 -04005743 if (!cache ||
5744 start >= cache->key.objectid + cache->key.offset) {
5745 if (cache)
5746 btrfs_put_block_group(cache);
5747 cache = btrfs_lookup_block_group(fs_info, start);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005748 BUG_ON(!cache); /* Logic error */
Yan Zheng11833d62009-09-11 16:11:19 -04005749 }
5750
5751 len = cache->key.objectid + cache->key.offset - start;
5752 len = min(len, end + 1 - start);
5753
5754 if (start < cache->last_byte_to_unpin) {
5755 len = min(len, cache->last_byte_to_unpin - start);
5756 btrfs_add_free_space(cache, start, len);
5757 }
Josef Bacik25179202008-10-29 14:49:05 -04005758
Yan, Zhengf0486c62010-05-16 10:46:25 -04005759 start += len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005760 space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005761
Josef Bacik7b398f82012-10-22 15:52:28 -04005762 spin_lock(&space_info->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005763 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04005764 cache->pinned -= len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005765 space_info->bytes_pinned -= len;
Liu Bod288db52014-07-02 16:58:01 +08005766 percpu_counter_add(&space_info->total_bytes_pinned, -len);
Josef Bacik7b398f82012-10-22 15:52:28 -04005767 if (cache->ro) {
5768 space_info->bytes_readonly += len;
5769 readonly = true;
5770 }
Josef Bacik25179202008-10-29 14:49:05 -04005771 spin_unlock(&cache->lock);
Josef Bacik7b398f82012-10-22 15:52:28 -04005772 if (!readonly && global_rsv->space_info == space_info) {
5773 spin_lock(&global_rsv->lock);
5774 if (!global_rsv->full) {
5775 len = min(len, global_rsv->size -
5776 global_rsv->reserved);
5777 global_rsv->reserved += len;
5778 space_info->bytes_may_use += len;
5779 if (global_rsv->reserved >= global_rsv->size)
5780 global_rsv->full = 1;
5781 }
5782 spin_unlock(&global_rsv->lock);
5783 }
5784 spin_unlock(&space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04005785 }
5786
5787 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04005788 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04005789 return 0;
5790}
5791
5792int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04005793 struct btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -05005794{
Yan Zheng11833d62009-09-11 16:11:19 -04005795 struct btrfs_fs_info *fs_info = root->fs_info;
5796 struct extent_io_tree *unpin;
Chris Mason1a5bc162007-10-15 16:15:26 -04005797 u64 start;
5798 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05005799 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05005800
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005801 if (trans->aborted)
5802 return 0;
5803
Yan Zheng11833d62009-09-11 16:11:19 -04005804 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
5805 unpin = &fs_info->freed_extents[1];
5806 else
5807 unpin = &fs_info->freed_extents[0];
5808
Chris Masond3977122009-01-05 21:25:51 -05005809 while (1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04005810 ret = find_first_extent_bit(unpin, 0, &start, &end,
Josef Bacike6138872012-09-27 17:07:30 -04005811 EXTENT_DIRTY, NULL);
Chris Mason1a5bc162007-10-15 16:15:26 -04005812 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05005813 break;
Liu Hui1f3c79a2009-01-05 15:57:51 -05005814
Li Dongyang5378e602011-03-24 10:24:27 +00005815 if (btrfs_test_opt(root, DISCARD))
5816 ret = btrfs_discard_extent(root, start,
5817 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05005818
Chris Mason1a5bc162007-10-15 16:15:26 -04005819 clear_extent_dirty(unpin, start, end, GFP_NOFS);
Yan Zheng11833d62009-09-11 16:11:19 -04005820 unpin_extent_range(root, start, end);
Chris Masonb9473432009-03-13 11:00:37 -04005821 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05005822 }
Josef Bacik817d52f2009-07-13 21:29:25 -04005823
Chris Masone20d96d2007-03-22 12:13:20 -04005824 return 0;
5825}
5826
Josef Bacikb150a4f2013-06-19 15:00:04 -04005827static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes,
5828 u64 owner, u64 root_objectid)
5829{
5830 struct btrfs_space_info *space_info;
5831 u64 flags;
5832
5833 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
5834 if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID)
5835 flags = BTRFS_BLOCK_GROUP_SYSTEM;
5836 else
5837 flags = BTRFS_BLOCK_GROUP_METADATA;
5838 } else {
5839 flags = BTRFS_BLOCK_GROUP_DATA;
5840 }
5841
5842 space_info = __find_space_info(fs_info, flags);
5843 BUG_ON(!space_info); /* Logic bug */
5844 percpu_counter_add(&space_info->total_bytes_pinned, num_bytes);
5845}
5846
5847
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005848static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
5849 struct btrfs_root *root,
5850 u64 bytenr, u64 num_bytes, u64 parent,
5851 u64 root_objectid, u64 owner_objectid,
5852 u64 owner_offset, int refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07005853 struct btrfs_delayed_extent_op *extent_op,
5854 int no_quota)
Chris Masona28ec192007-03-06 20:08:01 -05005855{
Chris Masone2fa7222007-03-12 16:22:34 -04005856 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005857 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04005858 struct btrfs_fs_info *info = root->fs_info;
5859 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04005860 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005861 struct btrfs_extent_item *ei;
5862 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05005863 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005864 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05005865 int extent_slot = 0;
5866 int found_extent = 0;
5867 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005868 u32 item_size;
5869 u64 refs;
Josef Bacikfcebe452014-05-13 17:30:47 -07005870 int last_ref = 0;
5871 enum btrfs_qgroup_operation_type type = BTRFS_QGROUP_OPER_SUB_EXCL;
Josef Bacik3173a182013-03-07 14:22:04 -05005872 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
5873 SKINNY_METADATA);
Chris Mason037e6392007-03-07 11:50:24 -05005874
Josef Bacikfcebe452014-05-13 17:30:47 -07005875 if (!info->quota_enabled || !is_fstree(root_objectid))
5876 no_quota = 1;
5877
Chris Mason5caf2a02007-04-02 11:20:42 -04005878 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04005879 if (!path)
5880 return -ENOMEM;
5881
Chris Mason3c12ac72008-04-21 12:01:38 -04005882 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04005883 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005884
5885 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
5886 BUG_ON(!is_data && refs_to_drop != 1);
5887
Josef Bacik3173a182013-03-07 14:22:04 -05005888 if (is_data)
5889 skinny_metadata = 0;
5890
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005891 ret = lookup_extent_backref(trans, extent_root, path, &iref,
5892 bytenr, num_bytes, parent,
5893 root_objectid, owner_objectid,
5894 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05005895 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05005896 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005897 while (extent_slot >= 0) {
5898 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05005899 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005900 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05005901 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005902 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
5903 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05005904 found_extent = 1;
5905 break;
5906 }
Josef Bacik3173a182013-03-07 14:22:04 -05005907 if (key.type == BTRFS_METADATA_ITEM_KEY &&
5908 key.offset == owner_objectid) {
5909 found_extent = 1;
5910 break;
5911 }
Chris Mason952fcca2008-02-18 16:33:44 -05005912 if (path->slots[0] - extent_slot > 5)
5913 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005914 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05005915 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005916#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
5917 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
5918 if (found_extent && item_size < sizeof(*ei))
5919 found_extent = 0;
5920#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04005921 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005922 BUG_ON(iref);
Chris Mason56bec292009-03-13 10:10:06 -04005923 ret = remove_extent_backref(trans, extent_root, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005924 NULL, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07005925 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06005926 if (ret) {
5927 btrfs_abort_transaction(trans, extent_root, ret);
5928 goto out;
5929 }
David Sterbab3b4aa72011-04-21 01:20:15 +02005930 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04005931 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005932
5933 key.objectid = bytenr;
5934 key.type = BTRFS_EXTENT_ITEM_KEY;
5935 key.offset = num_bytes;
5936
Josef Bacik3173a182013-03-07 14:22:04 -05005937 if (!is_data && skinny_metadata) {
5938 key.type = BTRFS_METADATA_ITEM_KEY;
5939 key.offset = owner_objectid;
5940 }
5941
Zheng Yan31840ae2008-09-23 13:14:14 -04005942 ret = btrfs_search_slot(trans, extent_root,
5943 &key, path, -1, 1);
Josef Bacik3173a182013-03-07 14:22:04 -05005944 if (ret > 0 && skinny_metadata && path->slots[0]) {
5945 /*
5946 * Couldn't find our skinny metadata item,
5947 * see if we have ye olde extent item.
5948 */
5949 path->slots[0]--;
5950 btrfs_item_key_to_cpu(path->nodes[0], &key,
5951 path->slots[0]);
5952 if (key.objectid == bytenr &&
5953 key.type == BTRFS_EXTENT_ITEM_KEY &&
5954 key.offset == num_bytes)
5955 ret = 0;
5956 }
5957
5958 if (ret > 0 && skinny_metadata) {
5959 skinny_metadata = false;
Filipe Manana9ce49a02014-04-24 15:15:28 +01005960 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05005961 key.type = BTRFS_EXTENT_ITEM_KEY;
5962 key.offset = num_bytes;
5963 btrfs_release_path(path);
5964 ret = btrfs_search_slot(trans, extent_root,
5965 &key, path, -1, 1);
5966 }
5967
Josef Bacikf3465ca2008-11-12 14:19:50 -05005968 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005969 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005970 ret, bytenr);
Josef Bacikb783e622011-07-13 15:03:50 +00005971 if (ret > 0)
5972 btrfs_print_leaf(extent_root,
5973 path->nodes[0]);
Josef Bacikf3465ca2008-11-12 14:19:50 -05005974 }
David Sterba005d6422012-09-18 07:52:32 -06005975 if (ret < 0) {
5976 btrfs_abort_transaction(trans, extent_root, ret);
5977 goto out;
5978 }
Zheng Yan31840ae2008-09-23 13:14:14 -04005979 extent_slot = path->slots[0];
5980 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05305981 } else if (WARN_ON(ret == -ENOENT)) {
Chris Mason7bb86312007-12-11 09:25:06 -05005982 btrfs_print_leaf(extent_root, path->nodes[0]);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005983 btrfs_err(info,
5984 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005985 bytenr, parent, root_objectid, owner_objectid,
5986 owner_offset);
Josef Bacikc4a050b2014-03-14 16:36:53 -04005987 btrfs_abort_transaction(trans, extent_root, ret);
5988 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005989 } else {
David Sterba005d6422012-09-18 07:52:32 -06005990 btrfs_abort_transaction(trans, extent_root, ret);
5991 goto out;
Chris Mason7bb86312007-12-11 09:25:06 -05005992 }
Chris Mason5f39d392007-10-15 16:14:19 -04005993
5994 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005995 item_size = btrfs_item_size_nr(leaf, extent_slot);
5996#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
5997 if (item_size < sizeof(*ei)) {
5998 BUG_ON(found_extent || extent_slot != path->slots[0]);
5999 ret = convert_extent_item_v0(trans, extent_root, path,
6000 owner_objectid, 0);
David Sterba005d6422012-09-18 07:52:32 -06006001 if (ret < 0) {
6002 btrfs_abort_transaction(trans, extent_root, ret);
6003 goto out;
6004 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006005
David Sterbab3b4aa72011-04-21 01:20:15 +02006006 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006007 path->leave_spinning = 1;
6008
6009 key.objectid = bytenr;
6010 key.type = BTRFS_EXTENT_ITEM_KEY;
6011 key.offset = num_bytes;
6012
6013 ret = btrfs_search_slot(trans, extent_root, &key, path,
6014 -1, 1);
6015 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006016 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006017 ret, bytenr);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006018 btrfs_print_leaf(extent_root, path->nodes[0]);
6019 }
David Sterba005d6422012-09-18 07:52:32 -06006020 if (ret < 0) {
6021 btrfs_abort_transaction(trans, extent_root, ret);
6022 goto out;
6023 }
6024
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006025 extent_slot = path->slots[0];
6026 leaf = path->nodes[0];
6027 item_size = btrfs_item_size_nr(leaf, extent_slot);
6028 }
6029#endif
6030 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05006031 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04006032 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05006033 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
6034 key.type == BTRFS_EXTENT_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006035 struct btrfs_tree_block_info *bi;
6036 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
6037 bi = (struct btrfs_tree_block_info *)(ei + 1);
6038 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05006039 }
6040
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006041 refs = btrfs_extent_refs(leaf, ei);
Josef Bacik32b02532013-04-24 16:38:50 -04006042 if (refs < refs_to_drop) {
6043 btrfs_err(info, "trying to drop %d refs but we only have %Lu "
David Sterba351fd352014-05-15 16:48:20 +02006044 "for bytenr %Lu", refs_to_drop, refs, bytenr);
Josef Bacik32b02532013-04-24 16:38:50 -04006045 ret = -EINVAL;
6046 btrfs_abort_transaction(trans, extent_root, ret);
6047 goto out;
6048 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006049 refs -= refs_to_drop;
6050
6051 if (refs > 0) {
Josef Bacikfcebe452014-05-13 17:30:47 -07006052 type = BTRFS_QGROUP_OPER_SUB_SHARED;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006053 if (extent_op)
6054 __run_delayed_extent_op(extent_op, leaf, ei);
6055 /*
6056 * In the case of inline back ref, reference count will
6057 * be updated by remove_extent_backref
6058 */
6059 if (iref) {
6060 BUG_ON(!found_extent);
6061 } else {
6062 btrfs_set_extent_refs(leaf, ei, refs);
6063 btrfs_mark_buffer_dirty(leaf);
6064 }
6065 if (found_extent) {
6066 ret = remove_extent_backref(trans, extent_root, path,
6067 iref, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07006068 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06006069 if (ret) {
6070 btrfs_abort_transaction(trans, extent_root, ret);
6071 goto out;
6072 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006073 }
Josef Bacikb150a4f2013-06-19 15:00:04 -04006074 add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid,
6075 root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006076 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006077 if (found_extent) {
6078 BUG_ON(is_data && refs_to_drop !=
6079 extent_data_ref_count(root, path, iref));
6080 if (iref) {
6081 BUG_ON(path->slots[0] != extent_slot);
6082 } else {
6083 BUG_ON(path->slots[0] != extent_slot + 1);
6084 path->slots[0] = extent_slot;
6085 num_to_del = 2;
6086 }
Chris Mason78fae272007-03-25 11:35:08 -04006087 }
Chris Masonb9473432009-03-13 11:00:37 -04006088
Josef Bacikfcebe452014-05-13 17:30:47 -07006089 last_ref = 1;
Chris Mason952fcca2008-02-18 16:33:44 -05006090 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
6091 num_to_del);
David Sterba005d6422012-09-18 07:52:32 -06006092 if (ret) {
6093 btrfs_abort_transaction(trans, extent_root, ret);
6094 goto out;
6095 }
David Sterbab3b4aa72011-04-21 01:20:15 +02006096 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01006097
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006098 if (is_data) {
Chris Mason459931e2008-12-10 09:10:46 -05006099 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
David Sterba005d6422012-09-18 07:52:32 -06006100 if (ret) {
6101 btrfs_abort_transaction(trans, extent_root, ret);
6102 goto out;
6103 }
Chris Mason459931e2008-12-10 09:10:46 -05006104 }
6105
Liu Boc53d6132012-12-27 09:01:19 +00006106 ret = update_block_group(root, bytenr, num_bytes, 0);
David Sterba005d6422012-09-18 07:52:32 -06006107 if (ret) {
6108 btrfs_abort_transaction(trans, extent_root, ret);
6109 goto out;
6110 }
Chris Masona28ec192007-03-06 20:08:01 -05006111 }
Josef Bacikfcebe452014-05-13 17:30:47 -07006112 btrfs_release_path(path);
6113
6114 /* Deal with the quota accounting */
6115 if (!ret && last_ref && !no_quota) {
6116 int mod_seq = 0;
6117
6118 if (owner_objectid >= BTRFS_FIRST_FREE_OBJECTID &&
6119 type == BTRFS_QGROUP_OPER_SUB_SHARED)
6120 mod_seq = 1;
6121
6122 ret = btrfs_qgroup_record_ref(trans, info, root_objectid,
6123 bytenr, num_bytes, type,
6124 mod_seq);
6125 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006126out:
Chris Mason5caf2a02007-04-02 11:20:42 -04006127 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05006128 return ret;
6129}
6130
6131/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04006132 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04006133 * delayed ref for that extent as well. This searches the delayed ref tree for
6134 * a given extent, and if there are no other delayed refs to be processed, it
6135 * removes it from the tree.
6136 */
6137static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
6138 struct btrfs_root *root, u64 bytenr)
6139{
6140 struct btrfs_delayed_ref_head *head;
6141 struct btrfs_delayed_ref_root *delayed_refs;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006142 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04006143
6144 delayed_refs = &trans->transaction->delayed_refs;
6145 spin_lock(&delayed_refs->lock);
6146 head = btrfs_find_delayed_ref_head(trans, bytenr);
6147 if (!head)
Chris Masoncf93da72014-01-29 07:02:40 -08006148 goto out_delayed_unlock;
Chris Mason1887be62009-03-13 10:11:24 -04006149
Josef Bacikd7df2c72014-01-23 09:21:38 -05006150 spin_lock(&head->lock);
6151 if (rb_first(&head->ref_root))
Chris Mason1887be62009-03-13 10:11:24 -04006152 goto out;
6153
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006154 if (head->extent_op) {
6155 if (!head->must_insert_reserved)
6156 goto out;
Miao Xie78a61842012-11-21 02:21:28 +00006157 btrfs_free_delayed_extent_op(head->extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006158 head->extent_op = NULL;
6159 }
6160
Chris Mason1887be62009-03-13 10:11:24 -04006161 /*
6162 * waiting for the lock here would deadlock. If someone else has it
6163 * locked they are already in the process of dropping it anyway
6164 */
6165 if (!mutex_trylock(&head->mutex))
6166 goto out;
6167
6168 /*
6169 * at this point we have a head with no other entries. Go
6170 * ahead and process it.
6171 */
6172 head->node.in_tree = 0;
Liu Boc46effa2013-10-14 12:59:45 +08006173 rb_erase(&head->href_node, &delayed_refs->href_root);
Chris Masonc3e69d52009-03-13 10:17:05 -04006174
Josef Bacikd7df2c72014-01-23 09:21:38 -05006175 atomic_dec(&delayed_refs->num_entries);
Chris Mason1887be62009-03-13 10:11:24 -04006176
6177 /*
6178 * we don't take a ref on the node because we're removing it from the
6179 * tree, so we just steal the ref the tree was holding.
6180 */
Chris Masonc3e69d52009-03-13 10:17:05 -04006181 delayed_refs->num_heads--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05006182 if (head->processing == 0)
Chris Masonc3e69d52009-03-13 10:17:05 -04006183 delayed_refs->num_heads_ready--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05006184 head->processing = 0;
6185 spin_unlock(&head->lock);
Chris Mason1887be62009-03-13 10:11:24 -04006186 spin_unlock(&delayed_refs->lock);
6187
Yan, Zhengf0486c62010-05-16 10:46:25 -04006188 BUG_ON(head->extent_op);
6189 if (head->must_insert_reserved)
6190 ret = 1;
6191
6192 mutex_unlock(&head->mutex);
Chris Mason1887be62009-03-13 10:11:24 -04006193 btrfs_put_delayed_ref(&head->node);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006194 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04006195out:
Josef Bacikd7df2c72014-01-23 09:21:38 -05006196 spin_unlock(&head->lock);
Chris Masoncf93da72014-01-29 07:02:40 -08006197
6198out_delayed_unlock:
Chris Mason1887be62009-03-13 10:11:24 -04006199 spin_unlock(&delayed_refs->lock);
6200 return 0;
6201}
6202
Yan, Zhengf0486c62010-05-16 10:46:25 -04006203void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
6204 struct btrfs_root *root,
6205 struct extent_buffer *buf,
Jan Schmidt5581a512012-05-16 17:04:52 +02006206 u64 parent, int last_ref)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006207{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006208 struct btrfs_block_group_cache *cache = NULL;
Josef Bacikb150a4f2013-06-19 15:00:04 -04006209 int pin = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006210 int ret;
6211
6212 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006213 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
6214 buf->start, buf->len,
6215 parent, root->root_key.objectid,
6216 btrfs_header_level(buf),
Jan Schmidt5581a512012-05-16 17:04:52 +02006217 BTRFS_DROP_DELAYED_REF, NULL, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006218 BUG_ON(ret); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006219 }
6220
6221 if (!last_ref)
6222 return;
6223
Yan, Zhengf0486c62010-05-16 10:46:25 -04006224 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006225
6226 if (btrfs_header_generation(buf) == trans->transid) {
6227 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
6228 ret = check_ref_cleanup(trans, root, buf->start);
6229 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04006230 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006231 }
6232
6233 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
6234 pin_down_extent(root, cache, buf->start, buf->len, 1);
Josef Bacik37be25b2011-08-05 10:25:38 -04006235 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006236 }
6237
6238 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
6239
6240 btrfs_add_free_space(cache, buf->start, buf->len);
Miao Xiee570fd22014-06-19 10:42:50 +08006241 btrfs_update_reserved_bytes(cache, buf->len, RESERVE_FREE, 0);
Josef Bacik0be5dc62013-10-07 15:18:52 -04006242 trace_btrfs_reserved_extent_free(root, buf->start, buf->len);
Josef Bacikb150a4f2013-06-19 15:00:04 -04006243 pin = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006244 }
6245out:
Josef Bacikb150a4f2013-06-19 15:00:04 -04006246 if (pin)
6247 add_pinned_bytes(root->fs_info, buf->len,
6248 btrfs_header_level(buf),
6249 root->root_key.objectid);
6250
Josef Bacika826d6d2011-03-16 13:42:43 -04006251 /*
6252 * Deleting the buffer, clear the corrupt flag since it doesn't matter
6253 * anymore.
6254 */
6255 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006256 btrfs_put_block_group(cache);
6257}
6258
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006259/* Can return -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006260int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root,
6261 u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid,
Josef Bacikfcebe452014-05-13 17:30:47 -07006262 u64 owner, u64 offset, int no_quota)
Chris Mason925baed2008-06-25 16:01:30 -04006263{
6264 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006265 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason925baed2008-06-25 16:01:30 -04006266
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04006267#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
6268 if (unlikely(test_bit(BTRFS_ROOT_DUMMY_ROOT, &root->state)))
6269 return 0;
6270#endif
Josef Bacikb150a4f2013-06-19 15:00:04 -04006271 add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid);
6272
Chris Mason56bec292009-03-13 10:10:06 -04006273 /*
6274 * tree log blocks never actually go into the extent allocation
6275 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04006276 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006277 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
6278 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04006279 /* unlocks the pinned mutex */
Yan Zheng11833d62009-09-11 16:11:19 -04006280 btrfs_pin_extent(root, bytenr, num_bytes, 1);
Chris Mason56bec292009-03-13 10:10:06 -04006281 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006282 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006283 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
6284 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006285 parent, root_objectid, (int)owner,
Josef Bacikfcebe452014-05-13 17:30:47 -07006286 BTRFS_DROP_DELAYED_REF, NULL, no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006287 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006288 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
6289 num_bytes,
6290 parent, root_objectid, owner,
6291 offset, BTRFS_DROP_DELAYED_REF,
Josef Bacikfcebe452014-05-13 17:30:47 -07006292 NULL, no_quota);
Chris Mason56bec292009-03-13 10:10:06 -04006293 }
Chris Mason925baed2008-06-25 16:01:30 -04006294 return ret;
6295}
6296
Chris Masonfec577f2007-02-26 10:40:21 -05006297/*
Josef Bacik817d52f2009-07-13 21:29:25 -04006298 * when we wait for progress in the block group caching, its because
6299 * our allocation attempt failed at least once. So, we must sleep
6300 * and let some progress happen before we try again.
6301 *
6302 * This function will sleep at least once waiting for new free space to
6303 * show up, and then it will check the block group free space numbers
6304 * for our min num_bytes. Another option is to have it go ahead
6305 * and look in the rbtree for a free extent of a given size, but this
6306 * is a good start.
Josef Bacik36cce922013-08-05 11:15:21 -04006307 *
6308 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
6309 * any of the information in this block group.
Josef Bacik817d52f2009-07-13 21:29:25 -04006310 */
Josef Bacik36cce922013-08-05 11:15:21 -04006311static noinline void
Josef Bacik817d52f2009-07-13 21:29:25 -04006312wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
6313 u64 num_bytes)
6314{
Yan Zheng11833d62009-09-11 16:11:19 -04006315 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04006316
Yan Zheng11833d62009-09-11 16:11:19 -04006317 caching_ctl = get_caching_control(cache);
6318 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04006319 return;
Josef Bacik817d52f2009-07-13 21:29:25 -04006320
Yan Zheng11833d62009-09-11 16:11:19 -04006321 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08006322 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04006323
6324 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -04006325}
6326
6327static noinline int
6328wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
6329{
6330 struct btrfs_caching_control *caching_ctl;
Josef Bacik36cce922013-08-05 11:15:21 -04006331 int ret = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006332
6333 caching_ctl = get_caching_control(cache);
6334 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04006335 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006336
6337 wait_event(caching_ctl->wait, block_group_cache_done(cache));
Josef Bacik36cce922013-08-05 11:15:21 -04006338 if (cache->cached == BTRFS_CACHE_ERROR)
6339 ret = -EIO;
Yan Zheng11833d62009-09-11 16:11:19 -04006340 put_caching_control(caching_ctl);
Josef Bacik36cce922013-08-05 11:15:21 -04006341 return ret;
Josef Bacik817d52f2009-07-13 21:29:25 -04006342}
6343
Liu Bo31e50222012-11-21 14:18:10 +00006344int __get_raid_index(u64 flags)
Yan, Zhengb742bb82010-05-16 10:46:24 -04006345{
Ilya Dryomov7738a532012-03-27 17:09:17 +03006346 if (flags & BTRFS_BLOCK_GROUP_RAID10)
Miao Xiee6ec7162013-01-17 05:38:51 +00006347 return BTRFS_RAID_RAID10;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006348 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
Miao Xiee6ec7162013-01-17 05:38:51 +00006349 return BTRFS_RAID_RAID1;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006350 else if (flags & BTRFS_BLOCK_GROUP_DUP)
Miao Xiee6ec7162013-01-17 05:38:51 +00006351 return BTRFS_RAID_DUP;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006352 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
Miao Xiee6ec7162013-01-17 05:38:51 +00006353 return BTRFS_RAID_RAID0;
David Woodhouse53b381b2013-01-29 18:40:14 -05006354 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
Chris Masone942f882013-02-20 14:06:05 -05006355 return BTRFS_RAID_RAID5;
David Woodhouse53b381b2013-01-29 18:40:14 -05006356 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
Chris Masone942f882013-02-20 14:06:05 -05006357 return BTRFS_RAID_RAID6;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006358
Chris Masone942f882013-02-20 14:06:05 -05006359 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
Yan, Zhengb742bb82010-05-16 10:46:24 -04006360}
6361
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04006362int get_block_group_index(struct btrfs_block_group_cache *cache)
Ilya Dryomov7738a532012-03-27 17:09:17 +03006363{
Liu Bo31e50222012-11-21 14:18:10 +00006364 return __get_raid_index(cache->flags);
Ilya Dryomov7738a532012-03-27 17:09:17 +03006365}
6366
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04006367static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = {
6368 [BTRFS_RAID_RAID10] = "raid10",
6369 [BTRFS_RAID_RAID1] = "raid1",
6370 [BTRFS_RAID_DUP] = "dup",
6371 [BTRFS_RAID_RAID0] = "raid0",
6372 [BTRFS_RAID_SINGLE] = "single",
6373 [BTRFS_RAID_RAID5] = "raid5",
6374 [BTRFS_RAID_RAID6] = "raid6",
6375};
6376
Jeff Mahoney1b8e5df2013-11-20 16:50:23 -05006377static const char *get_raid_name(enum btrfs_raid_types type)
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04006378{
6379 if (type >= BTRFS_NR_RAID_TYPES)
6380 return NULL;
6381
6382 return btrfs_raid_type_names[type];
6383}
6384
Josef Bacik817d52f2009-07-13 21:29:25 -04006385enum btrfs_loop_type {
Josef Bacik285ff5a2012-01-13 15:27:45 -05006386 LOOP_CACHING_NOWAIT = 0,
6387 LOOP_CACHING_WAIT = 1,
6388 LOOP_ALLOC_CHUNK = 2,
6389 LOOP_NO_EMPTY_SIZE = 3,
Josef Bacik817d52f2009-07-13 21:29:25 -04006390};
6391
Miao Xiee570fd22014-06-19 10:42:50 +08006392static inline void
6393btrfs_lock_block_group(struct btrfs_block_group_cache *cache,
6394 int delalloc)
6395{
6396 if (delalloc)
6397 down_read(&cache->data_rwsem);
6398}
6399
6400static inline void
6401btrfs_grab_block_group(struct btrfs_block_group_cache *cache,
6402 int delalloc)
6403{
6404 btrfs_get_block_group(cache);
6405 if (delalloc)
6406 down_read(&cache->data_rwsem);
6407}
6408
6409static struct btrfs_block_group_cache *
6410btrfs_lock_cluster(struct btrfs_block_group_cache *block_group,
6411 struct btrfs_free_cluster *cluster,
6412 int delalloc)
6413{
6414 struct btrfs_block_group_cache *used_bg;
6415 bool locked = false;
6416again:
6417 spin_lock(&cluster->refill_lock);
6418 if (locked) {
6419 if (used_bg == cluster->block_group)
6420 return used_bg;
6421
6422 up_read(&used_bg->data_rwsem);
6423 btrfs_put_block_group(used_bg);
6424 }
6425
6426 used_bg = cluster->block_group;
6427 if (!used_bg)
6428 return NULL;
6429
6430 if (used_bg == block_group)
6431 return used_bg;
6432
6433 btrfs_get_block_group(used_bg);
6434
6435 if (!delalloc)
6436 return used_bg;
6437
6438 if (down_read_trylock(&used_bg->data_rwsem))
6439 return used_bg;
6440
6441 spin_unlock(&cluster->refill_lock);
6442 down_read(&used_bg->data_rwsem);
6443 locked = true;
6444 goto again;
6445}
6446
6447static inline void
6448btrfs_release_block_group(struct btrfs_block_group_cache *cache,
6449 int delalloc)
6450{
6451 if (delalloc)
6452 up_read(&cache->data_rwsem);
6453 btrfs_put_block_group(cache);
6454}
6455
Josef Bacik817d52f2009-07-13 21:29:25 -04006456/*
Chris Masonfec577f2007-02-26 10:40:21 -05006457 * walks the btree of allocated extents and find a hole of a given size.
6458 * The key ins is changed to record the hole:
Miao Xiea4820392013-09-09 13:19:42 +08006459 * ins->objectid == start position
Chris Mason62e27492007-03-15 12:56:47 -04006460 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Miao Xiea4820392013-09-09 13:19:42 +08006461 * ins->offset == the size of the hole.
Chris Masonfec577f2007-02-26 10:40:21 -05006462 * Any available blocks before search_start are skipped.
Miao Xiea4820392013-09-09 13:19:42 +08006463 *
6464 * If there is no suitable free space, we will record the max size of
6465 * the free space extent currently.
Chris Masonfec577f2007-02-26 10:40:21 -05006466 */
Josef Bacik00361582013-08-14 14:02:47 -04006467static noinline int find_free_extent(struct btrfs_root *orig_root,
Chris Mason98ed5172008-01-03 10:01:48 -05006468 u64 num_bytes, u64 empty_size,
Chris Mason98ed5172008-01-03 10:01:48 -05006469 u64 hint_byte, struct btrfs_key *ins,
Miao Xiee570fd22014-06-19 10:42:50 +08006470 u64 flags, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05006471{
Josef Bacik80eb2342008-10-29 14:49:05 -04006472 int ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05006473 struct btrfs_root *root = orig_root->fs_info->extent_root;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006474 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04006475 struct btrfs_block_group_cache *block_group = NULL;
Josef Bacik81c9ad22012-01-18 10:56:06 -05006476 u64 search_start = 0;
Miao Xiea4820392013-09-09 13:19:42 +08006477 u64 max_extent_size = 0;
Chris Mason239b14b2008-03-24 15:02:07 -04006478 int empty_cluster = 2 * 1024 * 1024;
Josef Bacik80eb2342008-10-29 14:49:05 -04006479 struct btrfs_space_info *space_info;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006480 int loop = 0;
David Sterbab6919a52013-04-29 13:39:40 +00006481 int index = __get_raid_index(flags);
6482 int alloc_type = (flags & BTRFS_BLOCK_GROUP_DATA) ?
Josef Bacikfb25e912011-07-26 17:00:46 -04006483 RESERVE_ALLOC_NO_ACCOUNT : RESERVE_ALLOC;
Josef Bacik0a243252009-09-11 16:11:20 -04006484 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006485 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04006486 bool use_cluster = true;
Miao Xie60d2adb2011-09-09 17:34:35 +08006487 bool have_caching_bg = false;
Chris Masonfec577f2007-02-26 10:40:21 -05006488
Chris Masondb945352007-10-15 16:15:53 -04006489 WARN_ON(num_bytes < root->sectorsize);
David Sterba962a2982014-06-04 18:41:45 +02006490 ins->type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacik80eb2342008-10-29 14:49:05 -04006491 ins->objectid = 0;
6492 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04006493
David Sterbab6919a52013-04-29 13:39:40 +00006494 trace_find_free_extent(orig_root, num_bytes, empty_size, flags);
Josef Bacik3f7de032011-11-10 08:29:20 -05006495
David Sterbab6919a52013-04-29 13:39:40 +00006496 space_info = __find_space_info(root->fs_info, flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00006497 if (!space_info) {
David Sterbab6919a52013-04-29 13:39:40 +00006498 btrfs_err(root->fs_info, "No space info for %llu", flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00006499 return -ENOSPC;
6500 }
Josef Bacik2552d172009-04-03 10:14:19 -04006501
Josef Bacik67377732010-09-16 16:19:09 -04006502 /*
6503 * If the space info is for both data and metadata it means we have a
6504 * small filesystem and we can't use the clustering stuff.
6505 */
6506 if (btrfs_mixed_space_info(space_info))
6507 use_cluster = false;
6508
David Sterbab6919a52013-04-29 13:39:40 +00006509 if (flags & BTRFS_BLOCK_GROUP_METADATA && use_cluster) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006510 last_ptr = &root->fs_info->meta_alloc_cluster;
Chris Mason536ac8a2009-02-12 09:41:38 -05006511 if (!btrfs_test_opt(root, SSD))
6512 empty_cluster = 64 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04006513 }
6514
David Sterbab6919a52013-04-29 13:39:40 +00006515 if ((flags & BTRFS_BLOCK_GROUP_DATA) && use_cluster &&
Josef Bacik67377732010-09-16 16:19:09 -04006516 btrfs_test_opt(root, SSD)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006517 last_ptr = &root->fs_info->data_alloc_cluster;
6518 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04006519
Chris Mason239b14b2008-03-24 15:02:07 -04006520 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006521 spin_lock(&last_ptr->lock);
6522 if (last_ptr->block_group)
6523 hint_byte = last_ptr->window_start;
6524 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04006525 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006526
Chris Masona061fc82008-05-07 11:43:44 -04006527 search_start = max(search_start, first_logical_byte(root, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04006528 search_start = max(search_start, hint_byte);
Chris Mason0b86a832008-03-24 15:01:56 -04006529
Josef Bacik817d52f2009-07-13 21:29:25 -04006530 if (!last_ptr)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006531 empty_cluster = 0;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006532
Josef Bacik2552d172009-04-03 10:14:19 -04006533 if (search_start == hint_byte) {
Josef Bacik2552d172009-04-03 10:14:19 -04006534 block_group = btrfs_lookup_block_group(root->fs_info,
6535 search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04006536 /*
6537 * we don't want to use the block group if it doesn't match our
6538 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05006539 *
6540 * However if we are re-searching with an ideal block group
6541 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04006542 */
David Sterbab6919a52013-04-29 13:39:40 +00006543 if (block_group && block_group_bits(block_group, flags) &&
Josef Bacik285ff5a2012-01-13 15:27:45 -05006544 block_group->cached != BTRFS_CACHE_NO) {
Josef Bacik2552d172009-04-03 10:14:19 -04006545 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04006546 if (list_empty(&block_group->list) ||
6547 block_group->ro) {
6548 /*
6549 * someone is removing this block group,
6550 * we can't jump into the have_block_group
6551 * target because our list pointers are not
6552 * valid
6553 */
6554 btrfs_put_block_group(block_group);
6555 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05006556 } else {
Yan, Zhengb742bb82010-05-16 10:46:24 -04006557 index = get_block_group_index(block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08006558 btrfs_lock_block_group(block_group, delalloc);
Chris Mason44fb5512009-06-04 15:34:51 -04006559 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05006560 }
Josef Bacik2552d172009-04-03 10:14:19 -04006561 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006562 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006563 }
Chris Mason42e70e72008-11-07 18:17:11 -05006564 }
Josef Bacik2552d172009-04-03 10:14:19 -04006565search:
Miao Xie60d2adb2011-09-09 17:34:35 +08006566 have_caching_bg = false;
Josef Bacik80eb2342008-10-29 14:49:05 -04006567 down_read(&space_info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04006568 list_for_each_entry(block_group, &space_info->block_groups[index],
6569 list) {
Josef Bacik6226cb0a2009-04-03 10:14:18 -04006570 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04006571 int cached;
Chris Mason8a1413a2008-11-10 16:13:54 -05006572
Miao Xiee570fd22014-06-19 10:42:50 +08006573 btrfs_grab_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04006574 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05006575
Chris Mason83a50de2010-12-13 15:06:46 -05006576 /*
6577 * this can happen if we end up cycling through all the
6578 * raid types, but we want to make sure we only allocate
6579 * for the proper type.
6580 */
David Sterbab6919a52013-04-29 13:39:40 +00006581 if (!block_group_bits(block_group, flags)) {
Chris Mason83a50de2010-12-13 15:06:46 -05006582 u64 extra = BTRFS_BLOCK_GROUP_DUP |
6583 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05006584 BTRFS_BLOCK_GROUP_RAID5 |
6585 BTRFS_BLOCK_GROUP_RAID6 |
Chris Mason83a50de2010-12-13 15:06:46 -05006586 BTRFS_BLOCK_GROUP_RAID10;
6587
6588 /*
6589 * if they asked for extra copies and this block group
6590 * doesn't provide them, bail. This does allow us to
6591 * fill raid0 from raid1.
6592 */
David Sterbab6919a52013-04-29 13:39:40 +00006593 if ((flags & extra) && !(block_group->flags & extra))
Chris Mason83a50de2010-12-13 15:06:46 -05006594 goto loop;
6595 }
6596
Josef Bacik2552d172009-04-03 10:14:19 -04006597have_block_group:
Josef Bacik291c7d22011-11-14 13:52:14 -05006598 cached = block_group_cache_done(block_group);
6599 if (unlikely(!cached)) {
Liu Bof6373bf2012-12-27 09:01:18 +00006600 ret = cache_block_group(block_group, 0);
Chris Mason1d4284b2012-03-28 20:31:37 -04006601 BUG_ON(ret < 0);
6602 ret = 0;
Josef Bacikea6a4782008-11-20 12:16:16 -05006603 }
6604
Josef Bacik36cce922013-08-05 11:15:21 -04006605 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
6606 goto loop;
Josef Bacikea6a4782008-11-20 12:16:16 -05006607 if (unlikely(block_group->ro))
Josef Bacik2552d172009-04-03 10:14:19 -04006608 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006609
Josef Bacik0a243252009-09-11 16:11:20 -04006610 /*
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006611 * Ok we want to try and use the cluster allocator, so
6612 * lets look there
Josef Bacik0a243252009-09-11 16:11:20 -04006613 */
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006614 if (last_ptr) {
Miao Xie215a63d2014-01-15 20:00:56 +08006615 struct btrfs_block_group_cache *used_block_group;
Chris Mason8de972b2013-01-04 15:39:43 -05006616 unsigned long aligned_cluster;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006617 /*
6618 * the refill lock keeps out other
6619 * people trying to start a new cluster
6620 */
Miao Xiee570fd22014-06-19 10:42:50 +08006621 used_block_group = btrfs_lock_cluster(block_group,
6622 last_ptr,
6623 delalloc);
6624 if (!used_block_group)
Chris Mason44fb5512009-06-04 15:34:51 -04006625 goto refill_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -04006626
Miao Xiee570fd22014-06-19 10:42:50 +08006627 if (used_block_group != block_group &&
6628 (used_block_group->ro ||
6629 !block_group_bits(used_block_group, flags)))
6630 goto release_cluster;
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006631
6632 offset = btrfs_alloc_from_cluster(used_block_group,
Miao Xiea4820392013-09-09 13:19:42 +08006633 last_ptr,
6634 num_bytes,
6635 used_block_group->key.objectid,
6636 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006637 if (offset) {
6638 /* we have a block, we're done */
6639 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05006640 trace_btrfs_reserve_extent_cluster(root,
Miao Xie89d43462014-01-15 20:00:57 +08006641 used_block_group,
6642 search_start, num_bytes);
Miao Xie215a63d2014-01-15 20:00:56 +08006643 if (used_block_group != block_group) {
Miao Xiee570fd22014-06-19 10:42:50 +08006644 btrfs_release_block_group(block_group,
6645 delalloc);
Miao Xie215a63d2014-01-15 20:00:56 +08006646 block_group = used_block_group;
6647 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006648 goto checks;
6649 }
6650
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006651 WARN_ON(last_ptr->block_group != used_block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08006652release_cluster:
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006653 /* If we are on LOOP_NO_EMPTY_SIZE, we can't
6654 * set up a new clusters, so lets just skip it
6655 * and let the allocator find whatever block
6656 * it can find. If we reach this point, we
6657 * will have tried the cluster allocator
6658 * plenty of times and not have found
6659 * anything, so we are likely way too
6660 * fragmented for the clustering stuff to find
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006661 * anything.
6662 *
6663 * However, if the cluster is taken from the
6664 * current block group, release the cluster
6665 * first, so that we stand a better chance of
6666 * succeeding in the unclustered
6667 * allocation. */
6668 if (loop >= LOOP_NO_EMPTY_SIZE &&
Miao Xiee570fd22014-06-19 10:42:50 +08006669 used_block_group != block_group) {
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006670 spin_unlock(&last_ptr->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08006671 btrfs_release_block_group(used_block_group,
6672 delalloc);
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006673 goto unclustered_alloc;
6674 }
6675
Chris Masonfa9c0d792009-04-03 09:47:43 -04006676 /*
6677 * this cluster didn't work out, free it and
6678 * start over
6679 */
6680 btrfs_return_cluster_to_free_space(NULL, last_ptr);
6681
Miao Xiee570fd22014-06-19 10:42:50 +08006682 if (used_block_group != block_group)
6683 btrfs_release_block_group(used_block_group,
6684 delalloc);
6685refill_cluster:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006686 if (loop >= LOOP_NO_EMPTY_SIZE) {
6687 spin_unlock(&last_ptr->refill_lock);
6688 goto unclustered_alloc;
6689 }
6690
Chris Mason8de972b2013-01-04 15:39:43 -05006691 aligned_cluster = max_t(unsigned long,
6692 empty_cluster + empty_size,
6693 block_group->full_stripe_len);
6694
Chris Masonfa9c0d792009-04-03 09:47:43 -04006695 /* allocate a cluster in this block group */
Josef Bacik00361582013-08-14 14:02:47 -04006696 ret = btrfs_find_space_cluster(root, block_group,
6697 last_ptr, search_start,
6698 num_bytes,
6699 aligned_cluster);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006700 if (ret == 0) {
6701 /*
6702 * now pull our allocation out of this
6703 * cluster
6704 */
6705 offset = btrfs_alloc_from_cluster(block_group,
Miao Xiea4820392013-09-09 13:19:42 +08006706 last_ptr,
6707 num_bytes,
6708 search_start,
6709 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006710 if (offset) {
6711 /* we found one, proceed */
6712 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05006713 trace_btrfs_reserve_extent_cluster(root,
6714 block_group, search_start,
6715 num_bytes);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006716 goto checks;
6717 }
Josef Bacik0a243252009-09-11 16:11:20 -04006718 } else if (!cached && loop > LOOP_CACHING_NOWAIT
6719 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04006720 spin_unlock(&last_ptr->refill_lock);
6721
Josef Bacik0a243252009-09-11 16:11:20 -04006722 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04006723 wait_block_group_cache_progress(block_group,
6724 num_bytes + empty_cluster + empty_size);
6725 goto have_block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006726 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006727
Chris Masonfa9c0d792009-04-03 09:47:43 -04006728 /*
6729 * at this point we either didn't find a cluster
6730 * or we weren't able to allocate a block from our
6731 * cluster. Free the cluster we've been trying
6732 * to use, and go to the next block group
6733 */
Josef Bacik0a243252009-09-11 16:11:20 -04006734 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006735 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04006736 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006737 }
6738
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006739unclustered_alloc:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006740 spin_lock(&block_group->free_space_ctl->tree_lock);
6741 if (cached &&
6742 block_group->free_space_ctl->free_space <
6743 num_bytes + empty_cluster + empty_size) {
Miao Xiea4820392013-09-09 13:19:42 +08006744 if (block_group->free_space_ctl->free_space >
6745 max_extent_size)
6746 max_extent_size =
6747 block_group->free_space_ctl->free_space;
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006748 spin_unlock(&block_group->free_space_ctl->tree_lock);
6749 goto loop;
6750 }
6751 spin_unlock(&block_group->free_space_ctl->tree_lock);
6752
Josef Bacik6226cb0a2009-04-03 10:14:18 -04006753 offset = btrfs_find_space_for_alloc(block_group, search_start,
Miao Xiea4820392013-09-09 13:19:42 +08006754 num_bytes, empty_size,
6755 &max_extent_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006756 /*
6757 * If we didn't find a chunk, and we haven't failed on this
6758 * block group before, and this block group is in the middle of
6759 * caching and we are ok with waiting, then go ahead and wait
6760 * for progress to be made, and set failed_alloc to true.
6761 *
6762 * If failed_alloc is true then we've already waited on this
6763 * block group once and should move on to the next block group.
6764 */
6765 if (!offset && !failed_alloc && !cached &&
6766 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04006767 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006768 num_bytes + empty_size);
6769 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04006770 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006771 } else if (!offset) {
Miao Xie60d2adb2011-09-09 17:34:35 +08006772 if (!cached)
6773 have_caching_bg = true;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006774 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04006775 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006776checks:
David Sterba4e54b172014-06-05 01:39:19 +02006777 search_start = ALIGN(offset, root->stripesize);
Chris Masone37c9e62007-05-09 20:13:14 -04006778
Josef Bacik2552d172009-04-03 10:14:19 -04006779 /* move on to the next group */
6780 if (search_start + num_bytes >
Miao Xie215a63d2014-01-15 20:00:56 +08006781 block_group->key.objectid + block_group->key.offset) {
6782 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04006783 goto loop;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04006784 }
Josef Bacik80eb2342008-10-29 14:49:05 -04006785
Josef Bacik6226cb0a2009-04-03 10:14:18 -04006786 if (offset < search_start)
Miao Xie215a63d2014-01-15 20:00:56 +08006787 btrfs_add_free_space(block_group, offset,
Josef Bacik6226cb0a2009-04-03 10:14:18 -04006788 search_start - offset);
6789 BUG_ON(offset > search_start);
6790
Miao Xie215a63d2014-01-15 20:00:56 +08006791 ret = btrfs_update_reserved_bytes(block_group, num_bytes,
Miao Xiee570fd22014-06-19 10:42:50 +08006792 alloc_type, delalloc);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006793 if (ret == -EAGAIN) {
Miao Xie215a63d2014-01-15 20:00:56 +08006794 btrfs_add_free_space(block_group, offset, num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006795 goto loop;
6796 }
Yan Zheng11833d62009-09-11 16:11:19 -04006797
Josef Bacik2552d172009-04-03 10:14:19 -04006798 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006799 ins->objectid = search_start;
6800 ins->offset = num_bytes;
6801
Josef Bacik3f7de032011-11-10 08:29:20 -05006802 trace_btrfs_reserve_extent(orig_root, block_group,
6803 search_start, num_bytes);
Miao Xiee570fd22014-06-19 10:42:50 +08006804 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04006805 break;
6806loop:
Josef Bacik0a243252009-09-11 16:11:20 -04006807 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006808 failed_alloc = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04006809 BUG_ON(index != get_block_group_index(block_group));
Miao Xiee570fd22014-06-19 10:42:50 +08006810 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04006811 }
6812 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05006813
Miao Xie60d2adb2011-09-09 17:34:35 +08006814 if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg)
6815 goto search;
6816
Yan, Zhengb742bb82010-05-16 10:46:24 -04006817 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
6818 goto search;
6819
Josef Bacik285ff5a2012-01-13 15:27:45 -05006820 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05006821 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
6822 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04006823 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
6824 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
6825 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
6826 * again
Chris Masonfa9c0d792009-04-03 09:47:43 -04006827 */
Josef Bacik723bda22011-05-27 16:11:38 -04006828 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) {
Yan, Zhengb742bb82010-05-16 10:46:24 -04006829 index = 0;
Josef Bacik723bda22011-05-27 16:11:38 -04006830 loop++;
Josef Bacik817d52f2009-07-13 21:29:25 -04006831 if (loop == LOOP_ALLOC_CHUNK) {
Josef Bacik00361582013-08-14 14:02:47 -04006832 struct btrfs_trans_handle *trans;
Wang Shilongf017f152014-03-13 13:19:47 +08006833 int exist = 0;
Josef Bacik00361582013-08-14 14:02:47 -04006834
Wang Shilongf017f152014-03-13 13:19:47 +08006835 trans = current->journal_info;
6836 if (trans)
6837 exist = 1;
6838 else
6839 trans = btrfs_join_transaction(root);
6840
Josef Bacik00361582013-08-14 14:02:47 -04006841 if (IS_ERR(trans)) {
6842 ret = PTR_ERR(trans);
6843 goto out;
6844 }
6845
David Sterbab6919a52013-04-29 13:39:40 +00006846 ret = do_chunk_alloc(trans, root, flags,
Josef Bacikea658ba2012-09-11 16:57:25 -04006847 CHUNK_ALLOC_FORCE);
6848 /*
6849 * Do not bail out on ENOSPC since we
6850 * can do more things.
6851 */
Josef Bacik00361582013-08-14 14:02:47 -04006852 if (ret < 0 && ret != -ENOSPC)
Josef Bacikea658ba2012-09-11 16:57:25 -04006853 btrfs_abort_transaction(trans,
6854 root, ret);
Josef Bacik00361582013-08-14 14:02:47 -04006855 else
6856 ret = 0;
Wang Shilongf017f152014-03-13 13:19:47 +08006857 if (!exist)
6858 btrfs_end_transaction(trans, root);
Josef Bacik00361582013-08-14 14:02:47 -04006859 if (ret)
Josef Bacikea658ba2012-09-11 16:57:25 -04006860 goto out;
Josef Bacik723bda22011-05-27 16:11:38 -04006861 }
6862
6863 if (loop == LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006864 empty_size = 0;
6865 empty_cluster = 0;
6866 }
Chris Mason42e70e72008-11-07 18:17:11 -05006867
Josef Bacik723bda22011-05-27 16:11:38 -04006868 goto search;
Josef Bacik2552d172009-04-03 10:14:19 -04006869 } else if (!ins->objectid) {
6870 ret = -ENOSPC;
Josef Bacikd82a6f12011-05-11 15:26:06 -04006871 } else if (ins->objectid) {
Josef Bacik2552d172009-04-03 10:14:19 -04006872 ret = 0;
6873 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006874out:
Miao Xiea4820392013-09-09 13:19:42 +08006875 if (ret == -ENOSPC)
6876 ins->offset = max_extent_size;
Chris Mason0f70abe2007-02-28 16:46:22 -05006877 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05006878}
Chris Masonec44a352008-04-28 15:29:52 -04006879
Josef Bacik9ed74f22009-09-11 16:12:44 -04006880static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
6881 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04006882{
6883 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb82010-05-16 10:46:24 -04006884 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006885
Josef Bacik9ed74f22009-09-11 16:12:44 -04006886 spin_lock(&info->lock);
Frank Holtonefe120a2013-12-20 11:37:06 -05006887 printk(KERN_INFO "BTRFS: space_info %llu has %llu free, is %sfull\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006888 info->flags,
6889 info->total_bytes - info->bytes_used - info->bytes_pinned -
6890 info->bytes_reserved - info->bytes_readonly,
Chris Masond3977122009-01-05 21:25:51 -05006891 (info->full) ? "" : "not ");
Frank Holtonefe120a2013-12-20 11:37:06 -05006892 printk(KERN_INFO "BTRFS: space_info total=%llu, used=%llu, pinned=%llu, "
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006893 "reserved=%llu, may_use=%llu, readonly=%llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006894 info->total_bytes, info->bytes_used, info->bytes_pinned,
6895 info->bytes_reserved, info->bytes_may_use,
6896 info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006897 spin_unlock(&info->lock);
6898
6899 if (!dump_block_groups)
6900 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006901
Josef Bacik80eb2342008-10-29 14:49:05 -04006902 down_read(&info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04006903again:
6904 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04006905 spin_lock(&cache->lock);
Frank Holtonefe120a2013-12-20 11:37:06 -05006906 printk(KERN_INFO "BTRFS: "
6907 "block group %llu has %llu bytes, "
6908 "%llu used %llu pinned %llu reserved %s\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006909 cache->key.objectid, cache->key.offset,
6910 btrfs_block_group_used(&cache->item), cache->pinned,
6911 cache->reserved, cache->ro ? "[readonly]" : "");
Josef Bacik0f9dd462008-09-23 13:14:11 -04006912 btrfs_dump_free_space(cache, bytes);
6913 spin_unlock(&cache->lock);
6914 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04006915 if (++index < BTRFS_NR_RAID_TYPES)
6916 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04006917 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04006918}
Zheng Yane8569812008-09-26 10:05:48 -04006919
Josef Bacik00361582013-08-14 14:02:47 -04006920int btrfs_reserve_extent(struct btrfs_root *root,
Yan Zheng11833d62009-09-11 16:11:19 -04006921 u64 num_bytes, u64 min_alloc_size,
6922 u64 empty_size, u64 hint_byte,
Miao Xiee570fd22014-06-19 10:42:50 +08006923 struct btrfs_key *ins, int is_data, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05006924{
Miao Xie9e622d62012-01-26 15:01:12 -05006925 bool final_tried = false;
David Sterbab6919a52013-04-29 13:39:40 +00006926 u64 flags;
Chris Masonfec577f2007-02-26 10:40:21 -05006927 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04006928
David Sterbab6919a52013-04-29 13:39:40 +00006929 flags = btrfs_get_alloc_profile(root, is_data);
Chris Mason98d20f62008-04-14 09:46:10 -04006930again:
Chris Masondb945352007-10-15 16:15:53 -04006931 WARN_ON(num_bytes < root->sectorsize);
Josef Bacik00361582013-08-14 14:02:47 -04006932 ret = find_free_extent(root, num_bytes, empty_size, hint_byte, ins,
Miao Xiee570fd22014-06-19 10:42:50 +08006933 flags, delalloc);
Chris Mason3b951512008-04-17 11:29:12 -04006934
Miao Xie9e622d62012-01-26 15:01:12 -05006935 if (ret == -ENOSPC) {
Miao Xiea4820392013-09-09 13:19:42 +08006936 if (!final_tried && ins->offset) {
6937 num_bytes = min(num_bytes >> 1, ins->offset);
Zach Brown24542bf2012-11-16 00:04:43 +00006938 num_bytes = round_down(num_bytes, root->sectorsize);
Miao Xie9e622d62012-01-26 15:01:12 -05006939 num_bytes = max(num_bytes, min_alloc_size);
Miao Xie9e622d62012-01-26 15:01:12 -05006940 if (num_bytes == min_alloc_size)
6941 final_tried = true;
6942 goto again;
6943 } else if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
6944 struct btrfs_space_info *sinfo;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006945
David Sterbab6919a52013-04-29 13:39:40 +00006946 sinfo = __find_space_info(root->fs_info, flags);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006947 btrfs_err(root->fs_info, "allocation failed flags %llu, wanted %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006948 flags, num_bytes);
Jeff Mahoney53804282012-03-01 14:56:28 +01006949 if (sinfo)
6950 dump_space_info(sinfo, num_bytes, 1);
Miao Xie9e622d62012-01-26 15:01:12 -05006951 }
Chris Mason925baed2008-06-25 16:01:30 -04006952 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04006953
6954 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006955}
6956
Chris Masone688b7252011-10-31 20:52:39 -04006957static int __btrfs_free_reserved_extent(struct btrfs_root *root,
Miao Xiee570fd22014-06-19 10:42:50 +08006958 u64 start, u64 len,
6959 int pin, int delalloc)
Chris Mason65b51a02008-08-01 15:11:20 -04006960{
Josef Bacik0f9dd462008-09-23 13:14:11 -04006961 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05006962 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006963
Josef Bacik0f9dd462008-09-23 13:14:11 -04006964 cache = btrfs_lookup_block_group(root->fs_info, start);
6965 if (!cache) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006966 btrfs_err(root->fs_info, "Unable to find block group for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006967 start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04006968 return -ENOSPC;
6969 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05006970
Li Dongyang5378e602011-03-24 10:24:27 +00006971 if (btrfs_test_opt(root, DISCARD))
6972 ret = btrfs_discard_extent(root, start, len, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05006973
Chris Masone688b7252011-10-31 20:52:39 -04006974 if (pin)
6975 pin_down_extent(root, cache, start, len, 1);
6976 else {
6977 btrfs_add_free_space(cache, start, len);
Miao Xiee570fd22014-06-19 10:42:50 +08006978 btrfs_update_reserved_bytes(cache, len, RESERVE_FREE, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04006979 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006980 btrfs_put_block_group(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04006981
liubo1abe9b82011-03-24 11:18:59 +00006982 trace_btrfs_reserved_extent_free(root, start, len);
6983
Chris Masone6dcd2d2008-07-17 12:53:50 -04006984 return ret;
6985}
6986
Chris Masone688b7252011-10-31 20:52:39 -04006987int btrfs_free_reserved_extent(struct btrfs_root *root,
Miao Xiee570fd22014-06-19 10:42:50 +08006988 u64 start, u64 len, int delalloc)
Chris Masone688b7252011-10-31 20:52:39 -04006989{
Miao Xiee570fd22014-06-19 10:42:50 +08006990 return __btrfs_free_reserved_extent(root, start, len, 0, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04006991}
6992
6993int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root,
6994 u64 start, u64 len)
6995{
Miao Xiee570fd22014-06-19 10:42:50 +08006996 return __btrfs_free_reserved_extent(root, start, len, 1, 0);
Chris Masone688b7252011-10-31 20:52:39 -04006997}
6998
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006999static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
7000 struct btrfs_root *root,
7001 u64 parent, u64 root_objectid,
7002 u64 flags, u64 owner, u64 offset,
7003 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04007004{
7005 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007006 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007007 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007008 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007009 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007010 struct extent_buffer *leaf;
7011 int type;
7012 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04007013
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007014 if (parent > 0)
7015 type = BTRFS_SHARED_DATA_REF_KEY;
7016 else
7017 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04007018
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007019 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05007020
7021 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00007022 if (!path)
7023 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05007024
Chris Masonb9473432009-03-13 11:00:37 -04007025 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007026 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
7027 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007028 if (ret) {
7029 btrfs_free_path(path);
7030 return ret;
7031 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04007032
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007033 leaf = path->nodes[0];
7034 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05007035 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007036 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
7037 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
7038 btrfs_set_extent_flags(leaf, extent_item,
7039 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05007040
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007041 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
7042 btrfs_set_extent_inline_ref_type(leaf, iref, type);
7043 if (parent > 0) {
7044 struct btrfs_shared_data_ref *ref;
7045 ref = (struct btrfs_shared_data_ref *)(iref + 1);
7046 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
7047 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
7048 } else {
7049 struct btrfs_extent_data_ref *ref;
7050 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
7051 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
7052 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
7053 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
7054 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
7055 }
Chris Mason47e4bb92008-02-01 14:51:59 -05007056
7057 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05007058 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04007059
Josef Bacikfcebe452014-05-13 17:30:47 -07007060 /* Always set parent to 0 here since its exclusive anyway. */
7061 ret = btrfs_qgroup_record_ref(trans, fs_info, root_objectid,
7062 ins->objectid, ins->offset,
7063 BTRFS_QGROUP_OPER_ADD_EXCL, 0);
7064 if (ret)
7065 return ret;
7066
Liu Boc53d6132012-12-27 09:01:19 +00007067 ret = update_block_group(root, ins->objectid, ins->offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007068 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007069 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007070 ins->objectid, ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05007071 BUG();
7072 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04007073 trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007074 return ret;
7075}
7076
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007077static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
7078 struct btrfs_root *root,
7079 u64 parent, u64 root_objectid,
7080 u64 flags, struct btrfs_disk_key *key,
Josef Bacikfcebe452014-05-13 17:30:47 -07007081 int level, struct btrfs_key *ins,
7082 int no_quota)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007083{
7084 int ret;
7085 struct btrfs_fs_info *fs_info = root->fs_info;
7086 struct btrfs_extent_item *extent_item;
7087 struct btrfs_tree_block_info *block_info;
7088 struct btrfs_extent_inline_ref *iref;
7089 struct btrfs_path *path;
7090 struct extent_buffer *leaf;
Josef Bacik3173a182013-03-07 14:22:04 -05007091 u32 size = sizeof(*extent_item) + sizeof(*iref);
Josef Bacikfcebe452014-05-13 17:30:47 -07007092 u64 num_bytes = ins->offset;
Josef Bacik3173a182013-03-07 14:22:04 -05007093 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
7094 SKINNY_METADATA);
7095
7096 if (!skinny_metadata)
7097 size += sizeof(*block_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007098
7099 path = btrfs_alloc_path();
Josef Bacik857cc2f2013-10-07 15:21:08 -04007100 if (!path) {
7101 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
David Sterba707e8a02014-06-04 19:22:26 +02007102 root->nodesize);
Mark Fashehd8926bb2011-07-13 10:38:47 -07007103 return -ENOMEM;
Josef Bacik857cc2f2013-10-07 15:21:08 -04007104 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007105
7106 path->leave_spinning = 1;
7107 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
7108 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007109 if (ret) {
Josef Bacik857cc2f2013-10-07 15:21:08 -04007110 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
David Sterba707e8a02014-06-04 19:22:26 +02007111 root->nodesize);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007112 btrfs_free_path(path);
7113 return ret;
7114 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007115
7116 leaf = path->nodes[0];
7117 extent_item = btrfs_item_ptr(leaf, path->slots[0],
7118 struct btrfs_extent_item);
7119 btrfs_set_extent_refs(leaf, extent_item, 1);
7120 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
7121 btrfs_set_extent_flags(leaf, extent_item,
7122 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007123
Josef Bacik3173a182013-03-07 14:22:04 -05007124 if (skinny_metadata) {
7125 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
David Sterba707e8a02014-06-04 19:22:26 +02007126 num_bytes = root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05007127 } else {
7128 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
7129 btrfs_set_tree_block_key(leaf, block_info, key);
7130 btrfs_set_tree_block_level(leaf, block_info, level);
7131 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
7132 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007133
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007134 if (parent > 0) {
7135 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
7136 btrfs_set_extent_inline_ref_type(leaf, iref,
7137 BTRFS_SHARED_BLOCK_REF_KEY);
7138 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
7139 } else {
7140 btrfs_set_extent_inline_ref_type(leaf, iref,
7141 BTRFS_TREE_BLOCK_REF_KEY);
7142 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
7143 }
7144
7145 btrfs_mark_buffer_dirty(leaf);
7146 btrfs_free_path(path);
7147
Josef Bacikfcebe452014-05-13 17:30:47 -07007148 if (!no_quota) {
7149 ret = btrfs_qgroup_record_ref(trans, fs_info, root_objectid,
7150 ins->objectid, num_bytes,
7151 BTRFS_QGROUP_OPER_ADD_EXCL, 0);
7152 if (ret)
7153 return ret;
7154 }
7155
David Sterba707e8a02014-06-04 19:22:26 +02007156 ret = update_block_group(root, ins->objectid, root->nodesize, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007157 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007158 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007159 ins->objectid, ins->offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007160 BUG();
7161 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04007162
David Sterba707e8a02014-06-04 19:22:26 +02007163 trace_btrfs_reserved_extent_alloc(root, ins->objectid, root->nodesize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007164 return ret;
7165}
7166
7167int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
7168 struct btrfs_root *root,
7169 u64 root_objectid, u64 owner,
7170 u64 offset, struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04007171{
7172 int ret;
Chris Mason1c2308f2008-09-23 13:14:13 -04007173
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007174 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04007175
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007176 ret = btrfs_add_delayed_data_ref(root->fs_info, trans, ins->objectid,
7177 ins->offset, 0,
7178 root_objectid, owner, offset,
7179 BTRFS_ADD_DELAYED_EXTENT, NULL, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007180 return ret;
7181}
Chris Masone02119d2008-09-05 16:13:11 -04007182
7183/*
7184 * this is used by the tree logging recovery code. It records that
7185 * an extent has been allocated and makes sure to clear the free
7186 * space cache bits as well
7187 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007188int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
7189 struct btrfs_root *root,
7190 u64 root_objectid, u64 owner, u64 offset,
7191 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04007192{
7193 int ret;
7194 struct btrfs_block_group_cache *block_group;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04007195
7196 /*
7197 * Mixed block groups will exclude before processing the log so we only
7198 * need to do the exlude dance if this fs isn't mixed.
7199 */
7200 if (!btrfs_fs_incompat(root->fs_info, MIXED_GROUPS)) {
7201 ret = __exclude_logged_extent(root, ins->objectid, ins->offset);
7202 if (ret)
7203 return ret;
7204 }
Chris Masone02119d2008-09-05 16:13:11 -04007205
Chris Masone02119d2008-09-05 16:13:11 -04007206 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04007207 if (!block_group)
7208 return -EINVAL;
Yan Zheng11833d62009-09-11 16:11:19 -04007209
Josef Bacikfb25e912011-07-26 17:00:46 -04007210 ret = btrfs_update_reserved_bytes(block_group, ins->offset,
Miao Xiee570fd22014-06-19 10:42:50 +08007211 RESERVE_ALLOC_NO_ACCOUNT, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007212 BUG_ON(ret); /* logic error */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007213 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
7214 0, owner, offset, ins, 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04007215 btrfs_put_block_group(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04007216 return ret;
7217}
7218
Eric Sandeen48a3b632013-04-25 20:41:01 +00007219static struct extent_buffer *
7220btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
7221 u64 bytenr, u32 blocksize, int level)
Chris Mason65b51a02008-08-01 15:11:20 -04007222{
7223 struct extent_buffer *buf;
7224
7225 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
7226 if (!buf)
7227 return ERR_PTR(-ENOMEM);
7228 btrfs_set_header_generation(buf, trans->transid);
Chris Mason85d4e462011-07-26 16:11:19 -04007229 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04007230 btrfs_tree_lock(buf);
7231 clean_tree_block(trans, root, buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05007232 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
Chris Masonb4ce94d2009-02-04 09:25:08 -05007233
7234 btrfs_set_lock_blocking(buf);
Chris Mason65b51a02008-08-01 15:11:20 -04007235 btrfs_set_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05007236
Chris Masond0c803c2008-09-11 16:17:57 -04007237 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +00007238 /*
7239 * we allow two log transactions at a time, use different
7240 * EXENT bit to differentiate dirty pages.
7241 */
7242 if (root->log_transid % 2 == 0)
7243 set_extent_dirty(&root->dirty_log_pages, buf->start,
7244 buf->start + buf->len - 1, GFP_NOFS);
7245 else
7246 set_extent_new(&root->dirty_log_pages, buf->start,
7247 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond0c803c2008-09-11 16:17:57 -04007248 } else {
7249 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
7250 buf->start + buf->len - 1, GFP_NOFS);
7251 }
Chris Mason65b51a02008-08-01 15:11:20 -04007252 trans->blocks_used++;
Chris Masonb4ce94d2009-02-04 09:25:08 -05007253 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04007254 return buf;
7255}
7256
Yan, Zhengf0486c62010-05-16 10:46:25 -04007257static struct btrfs_block_rsv *
7258use_block_rsv(struct btrfs_trans_handle *trans,
7259 struct btrfs_root *root, u32 blocksize)
7260{
7261 struct btrfs_block_rsv *block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00007262 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007263 int ret;
Miao Xied88033d2013-05-13 13:55:12 +00007264 bool global_updated = false;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007265
7266 block_rsv = get_block_rsv(trans, root);
7267
Miao Xieb586b322013-05-13 13:55:10 +00007268 if (unlikely(block_rsv->size == 0))
7269 goto try_reserve;
Miao Xied88033d2013-05-13 13:55:12 +00007270again:
Yan, Zhengf0486c62010-05-16 10:46:25 -04007271 ret = block_rsv_use_bytes(block_rsv, blocksize);
7272 if (!ret)
7273 return block_rsv;
7274
Miao Xieb586b322013-05-13 13:55:10 +00007275 if (block_rsv->failfast)
7276 return ERR_PTR(ret);
7277
Miao Xied88033d2013-05-13 13:55:12 +00007278 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
7279 global_updated = true;
7280 update_global_block_rsv(root->fs_info);
7281 goto again;
7282 }
7283
Miao Xieb586b322013-05-13 13:55:10 +00007284 if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
7285 static DEFINE_RATELIMIT_STATE(_rs,
7286 DEFAULT_RATELIMIT_INTERVAL * 10,
7287 /*DEFAULT_RATELIMIT_BURST*/ 1);
7288 if (__ratelimit(&_rs))
7289 WARN(1, KERN_DEBUG
Frank Holtonefe120a2013-12-20 11:37:06 -05007290 "BTRFS: block rsv returned %d\n", ret);
Miao Xieb586b322013-05-13 13:55:10 +00007291 }
7292try_reserve:
7293 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
7294 BTRFS_RESERVE_NO_FLUSH);
7295 if (!ret)
7296 return block_rsv;
7297 /*
7298 * If we couldn't reserve metadata bytes try and use some from
Miao Xie5881cfc2013-05-13 13:55:11 +00007299 * the global reserve if its space type is the same as the global
7300 * reservation.
Miao Xieb586b322013-05-13 13:55:10 +00007301 */
Miao Xie5881cfc2013-05-13 13:55:11 +00007302 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
7303 block_rsv->space_info == global_rsv->space_info) {
Miao Xieb586b322013-05-13 13:55:10 +00007304 ret = block_rsv_use_bytes(global_rsv, blocksize);
7305 if (!ret)
7306 return global_rsv;
7307 }
7308 return ERR_PTR(ret);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007309}
7310
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05007311static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
7312 struct btrfs_block_rsv *block_rsv, u32 blocksize)
Yan, Zhengf0486c62010-05-16 10:46:25 -04007313{
7314 block_rsv_add_bytes(block_rsv, blocksize, 0);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05007315 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007316}
7317
Chris Masonfec577f2007-02-26 10:40:21 -05007318/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04007319 * finds a free extent and does all the dirty work required for allocation
7320 * returns the key for the extent through ins, and a tree buffer for
7321 * the first block of the extent through buf.
7322 *
Chris Masonfec577f2007-02-26 10:40:21 -05007323 * returns the tree buffer or NULL.
7324 */
Chris Mason5f39d392007-10-15 16:14:19 -04007325struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007326 struct btrfs_root *root, u32 blocksize,
7327 u64 parent, u64 root_objectid,
7328 struct btrfs_disk_key *key, int level,
Jan Schmidt5581a512012-05-16 17:04:52 +02007329 u64 hint, u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05007330{
Chris Masone2fa7222007-03-12 16:22:34 -04007331 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007332 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04007333 struct extent_buffer *buf;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007334 u64 flags = 0;
7335 int ret;
Josef Bacik3173a182013-03-07 14:22:04 -05007336 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
7337 SKINNY_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007338
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04007339#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
7340 if (unlikely(test_bit(BTRFS_ROOT_DUMMY_ROOT, &root->state))) {
7341 buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr,
7342 blocksize, level);
7343 if (!IS_ERR(buf))
7344 root->alloc_bytenr += blocksize;
7345 return buf;
7346 }
7347#endif
Yan, Zhengf0486c62010-05-16 10:46:25 -04007348 block_rsv = use_block_rsv(trans, root, blocksize);
7349 if (IS_ERR(block_rsv))
7350 return ERR_CAST(block_rsv);
7351
Josef Bacik00361582013-08-14 14:02:47 -04007352 ret = btrfs_reserve_extent(root, blocksize, blocksize,
Miao Xiee570fd22014-06-19 10:42:50 +08007353 empty_size, hint, &ins, 0, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05007354 if (ret) {
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05007355 unuse_block_rsv(root->fs_info, block_rsv, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04007356 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05007357 }
Chris Mason55c69072008-01-09 15:55:33 -05007358
Chris Mason4008c042009-02-12 14:09:45 -05007359 buf = btrfs_init_new_buffer(trans, root, ins.objectid,
7360 blocksize, level);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007361 BUG_ON(IS_ERR(buf)); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007362
7363 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
7364 if (parent == 0)
7365 parent = ins.objectid;
7366 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
7367 } else
7368 BUG_ON(parent > 0);
7369
7370 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
7371 struct btrfs_delayed_extent_op *extent_op;
Miao Xie78a61842012-11-21 02:21:28 +00007372 extent_op = btrfs_alloc_delayed_extent_op();
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007373 BUG_ON(!extent_op); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007374 if (key)
7375 memcpy(&extent_op->key, key, sizeof(extent_op->key));
7376 else
7377 memset(&extent_op->key, 0, sizeof(extent_op->key));
7378 extent_op->flags_to_set = flags;
Josef Bacik3173a182013-03-07 14:22:04 -05007379 if (skinny_metadata)
7380 extent_op->update_key = 0;
7381 else
7382 extent_op->update_key = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007383 extent_op->update_flags = 1;
7384 extent_op->is_data = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04007385 extent_op->level = level;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007386
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007387 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
7388 ins.objectid,
Yan, Zhengf0486c62010-05-16 10:46:25 -04007389 ins.offset, parent, root_objectid,
7390 level, BTRFS_ADD_DELAYED_EXTENT,
Jan Schmidt5581a512012-05-16 17:04:52 +02007391 extent_op, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007392 BUG_ON(ret); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007393 }
Chris Masonfec577f2007-02-26 10:40:21 -05007394 return buf;
7395}
Chris Masona28ec192007-03-06 20:08:01 -05007396
Yan Zheng2c47e6052009-06-27 21:07:35 -04007397struct walk_control {
7398 u64 refs[BTRFS_MAX_LEVEL];
7399 u64 flags[BTRFS_MAX_LEVEL];
7400 struct btrfs_key update_progress;
7401 int stage;
7402 int level;
7403 int shared_level;
7404 int update_ref;
7405 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007406 int reada_slot;
7407 int reada_count;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007408 int for_reloc;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007409};
7410
7411#define DROP_REFERENCE 1
7412#define UPDATE_BACKREF 2
7413
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007414static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
7415 struct btrfs_root *root,
7416 struct walk_control *wc,
7417 struct btrfs_path *path)
7418{
7419 u64 bytenr;
7420 u64 generation;
7421 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007422 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007423 u32 nritems;
7424 u32 blocksize;
7425 struct btrfs_key key;
7426 struct extent_buffer *eb;
7427 int ret;
7428 int slot;
7429 int nread = 0;
7430
7431 if (path->slots[wc->level] < wc->reada_slot) {
7432 wc->reada_count = wc->reada_count * 2 / 3;
7433 wc->reada_count = max(wc->reada_count, 2);
7434 } else {
7435 wc->reada_count = wc->reada_count * 3 / 2;
7436 wc->reada_count = min_t(int, wc->reada_count,
7437 BTRFS_NODEPTRS_PER_BLOCK(root));
7438 }
7439
7440 eb = path->nodes[wc->level];
7441 nritems = btrfs_header_nritems(eb);
David Sterba707e8a02014-06-04 19:22:26 +02007442 blocksize = root->nodesize;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007443
7444 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
7445 if (nread >= wc->reada_count)
7446 break;
7447
7448 cond_resched();
7449 bytenr = btrfs_node_blockptr(eb, slot);
7450 generation = btrfs_node_ptr_generation(eb, slot);
7451
7452 if (slot == path->slots[wc->level])
7453 goto reada;
7454
7455 if (wc->stage == UPDATE_BACKREF &&
7456 generation <= root->root_key.offset)
7457 continue;
7458
Yan, Zheng94fcca92009-10-09 09:25:16 -04007459 /* We don't lock the tree block, it's OK to be racy here */
Josef Bacik3173a182013-03-07 14:22:04 -05007460 ret = btrfs_lookup_extent_info(trans, root, bytenr,
7461 wc->level - 1, 1, &refs,
7462 &flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007463 /* We don't care about errors in readahead. */
7464 if (ret < 0)
7465 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007466 BUG_ON(refs == 0);
7467
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007468 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007469 if (refs == 1)
7470 goto reada;
7471
Yan, Zheng94fcca92009-10-09 09:25:16 -04007472 if (wc->level == 1 &&
7473 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7474 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007475 if (!wc->update_ref ||
7476 generation <= root->root_key.offset)
7477 continue;
7478 btrfs_node_key_to_cpu(eb, &key, slot);
7479 ret = btrfs_comp_cpu_keys(&key,
7480 &wc->update_progress);
7481 if (ret < 0)
7482 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007483 } else {
7484 if (wc->level == 1 &&
7485 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7486 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007487 }
7488reada:
7489 ret = readahead_tree_block(root, bytenr, blocksize,
7490 generation);
7491 if (ret)
7492 break;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007493 nread++;
7494 }
7495 wc->reada_slot = slot;
7496}
7497
Mark Fasheh11526512014-07-17 12:39:01 -07007498static int account_leaf_items(struct btrfs_trans_handle *trans,
7499 struct btrfs_root *root,
7500 struct extent_buffer *eb)
7501{
7502 int nr = btrfs_header_nritems(eb);
7503 int i, extent_type, ret;
7504 struct btrfs_key key;
7505 struct btrfs_file_extent_item *fi;
7506 u64 bytenr, num_bytes;
7507
7508 for (i = 0; i < nr; i++) {
7509 btrfs_item_key_to_cpu(eb, &key, i);
7510
7511 if (key.type != BTRFS_EXTENT_DATA_KEY)
7512 continue;
7513
7514 fi = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
7515 /* filter out non qgroup-accountable extents */
7516 extent_type = btrfs_file_extent_type(eb, fi);
7517
7518 if (extent_type == BTRFS_FILE_EXTENT_INLINE)
7519 continue;
7520
7521 bytenr = btrfs_file_extent_disk_bytenr(eb, fi);
7522 if (!bytenr)
7523 continue;
7524
7525 num_bytes = btrfs_file_extent_disk_num_bytes(eb, fi);
7526
7527 ret = btrfs_qgroup_record_ref(trans, root->fs_info,
7528 root->objectid,
7529 bytenr, num_bytes,
7530 BTRFS_QGROUP_OPER_SUB_SUBTREE, 0);
7531 if (ret)
7532 return ret;
7533 }
7534 return 0;
7535}
7536
7537/*
7538 * Walk up the tree from the bottom, freeing leaves and any interior
7539 * nodes which have had all slots visited. If a node (leaf or
7540 * interior) is freed, the node above it will have it's slot
7541 * incremented. The root node will never be freed.
7542 *
7543 * At the end of this function, we should have a path which has all
7544 * slots incremented to the next position for a search. If we need to
7545 * read a new node it will be NULL and the node above it will have the
7546 * correct slot selected for a later read.
7547 *
7548 * If we increment the root nodes slot counter past the number of
7549 * elements, 1 is returned to signal completion of the search.
7550 */
7551static int adjust_slots_upwards(struct btrfs_root *root,
7552 struct btrfs_path *path, int root_level)
7553{
7554 int level = 0;
7555 int nr, slot;
7556 struct extent_buffer *eb;
7557
7558 if (root_level == 0)
7559 return 1;
7560
7561 while (level <= root_level) {
7562 eb = path->nodes[level];
7563 nr = btrfs_header_nritems(eb);
7564 path->slots[level]++;
7565 slot = path->slots[level];
7566 if (slot >= nr || level == 0) {
7567 /*
7568 * Don't free the root - we will detect this
7569 * condition after our loop and return a
7570 * positive value for caller to stop walking the tree.
7571 */
7572 if (level != root_level) {
7573 btrfs_tree_unlock_rw(eb, path->locks[level]);
7574 path->locks[level] = 0;
7575
7576 free_extent_buffer(eb);
7577 path->nodes[level] = NULL;
7578 path->slots[level] = 0;
7579 }
7580 } else {
7581 /*
7582 * We have a valid slot to walk back down
7583 * from. Stop here so caller can process these
7584 * new nodes.
7585 */
7586 break;
7587 }
7588
7589 level++;
7590 }
7591
7592 eb = path->nodes[root_level];
7593 if (path->slots[root_level] >= btrfs_header_nritems(eb))
7594 return 1;
7595
7596 return 0;
7597}
7598
7599/*
7600 * root_eb is the subtree root and is locked before this function is called.
7601 */
7602static int account_shared_subtree(struct btrfs_trans_handle *trans,
7603 struct btrfs_root *root,
7604 struct extent_buffer *root_eb,
7605 u64 root_gen,
7606 int root_level)
7607{
7608 int ret = 0;
7609 int level;
7610 struct extent_buffer *eb = root_eb;
7611 struct btrfs_path *path = NULL;
7612
7613 BUG_ON(root_level < 0 || root_level > BTRFS_MAX_LEVEL);
7614 BUG_ON(root_eb == NULL);
7615
7616 if (!root->fs_info->quota_enabled)
7617 return 0;
7618
7619 if (!extent_buffer_uptodate(root_eb)) {
7620 ret = btrfs_read_buffer(root_eb, root_gen);
7621 if (ret)
7622 goto out;
7623 }
7624
7625 if (root_level == 0) {
7626 ret = account_leaf_items(trans, root, root_eb);
7627 goto out;
7628 }
7629
7630 path = btrfs_alloc_path();
7631 if (!path)
7632 return -ENOMEM;
7633
7634 /*
7635 * Walk down the tree. Missing extent blocks are filled in as
7636 * we go. Metadata is accounted every time we read a new
7637 * extent block.
7638 *
7639 * When we reach a leaf, we account for file extent items in it,
7640 * walk back up the tree (adjusting slot pointers as we go)
7641 * and restart the search process.
7642 */
7643 extent_buffer_get(root_eb); /* For path */
7644 path->nodes[root_level] = root_eb;
7645 path->slots[root_level] = 0;
7646 path->locks[root_level] = 0; /* so release_path doesn't try to unlock */
7647walk_down:
7648 level = root_level;
7649 while (level >= 0) {
7650 if (path->nodes[level] == NULL) {
7651 int child_bsize = root->nodesize;
7652 int parent_slot;
7653 u64 child_gen;
7654 u64 child_bytenr;
7655
7656 /* We need to get child blockptr/gen from
7657 * parent before we can read it. */
7658 eb = path->nodes[level + 1];
7659 parent_slot = path->slots[level + 1];
7660 child_bytenr = btrfs_node_blockptr(eb, parent_slot);
7661 child_gen = btrfs_node_ptr_generation(eb, parent_slot);
7662
7663 eb = read_tree_block(root, child_bytenr, child_bsize,
7664 child_gen);
7665 if (!eb || !extent_buffer_uptodate(eb)) {
7666 ret = -EIO;
7667 goto out;
7668 }
7669
7670 path->nodes[level] = eb;
7671 path->slots[level] = 0;
7672
7673 btrfs_tree_read_lock(eb);
7674 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
7675 path->locks[level] = BTRFS_READ_LOCK_BLOCKING;
7676
7677 ret = btrfs_qgroup_record_ref(trans, root->fs_info,
7678 root->objectid,
7679 child_bytenr,
7680 child_bsize,
7681 BTRFS_QGROUP_OPER_SUB_SUBTREE,
7682 0);
7683 if (ret)
7684 goto out;
7685
7686 }
7687
7688 if (level == 0) {
7689 ret = account_leaf_items(trans, root, path->nodes[level]);
7690 if (ret)
7691 goto out;
7692
7693 /* Nonzero return here means we completed our search */
7694 ret = adjust_slots_upwards(root, path, root_level);
7695 if (ret)
7696 break;
7697
7698 /* Restart search with new slots */
7699 goto walk_down;
7700 }
7701
7702 level--;
7703 }
7704
7705 ret = 0;
7706out:
7707 btrfs_free_path(path);
7708
7709 return ret;
7710}
7711
Chris Mason9aca1d52007-03-13 11:09:37 -04007712/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007713 * helper to process tree block while walking down the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04007714 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04007715 * when wc->stage == UPDATE_BACKREF, this function updates
7716 * back refs for pointers in the block.
7717 *
7718 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04007719 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007720static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
7721 struct btrfs_root *root,
7722 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007723 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04007724{
7725 int level = wc->level;
7726 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04007727 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
7728 int ret;
7729
7730 if (wc->stage == UPDATE_BACKREF &&
7731 btrfs_header_owner(eb) != root->root_key.objectid)
7732 return 1;
7733
7734 /*
7735 * when reference count of tree block is 1, it won't increase
7736 * again. once full backref flag is set, we never clear it.
7737 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04007738 if (lookup_info &&
7739 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
7740 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007741 BUG_ON(!path->locks[level]);
7742 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05007743 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007744 &wc->refs[level],
7745 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007746 BUG_ON(ret == -ENOMEM);
7747 if (ret)
7748 return ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007749 BUG_ON(wc->refs[level] == 0);
7750 }
7751
Yan Zheng2c47e6052009-06-27 21:07:35 -04007752 if (wc->stage == DROP_REFERENCE) {
7753 if (wc->refs[level] > 1)
7754 return 1;
7755
7756 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04007757 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007758 path->locks[level] = 0;
7759 }
7760 return 0;
7761 }
7762
7763 /* wc->stage == UPDATE_BACKREF */
7764 if (!(wc->flags[level] & flag)) {
7765 BUG_ON(!path->locks[level]);
Josef Bacike339a6b2014-07-02 10:54:25 -07007766 ret = btrfs_inc_ref(trans, root, eb, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007767 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07007768 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007769 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007770 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
Josef Bacikb1c79e02013-05-09 13:49:30 -04007771 eb->len, flag,
7772 btrfs_header_level(eb), 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007773 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007774 wc->flags[level] |= flag;
7775 }
7776
7777 /*
7778 * the block is shared by multiple trees, so it's not good to
7779 * keep the tree lock
7780 */
7781 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04007782 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007783 path->locks[level] = 0;
7784 }
7785 return 0;
7786}
7787
7788/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007789 * helper to process tree block pointer.
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007790 *
7791 * when wc->stage == DROP_REFERENCE, this function checks
7792 * reference count of the block pointed to. if the block
7793 * is shared and we need update back refs for the subtree
7794 * rooted at the block, this function changes wc->stage to
7795 * UPDATE_BACKREF. if the block is shared and there is no
7796 * need to update back, this function drops the reference
7797 * to the block.
7798 *
7799 * NOTE: return value 1 means we should stop walking down.
7800 */
7801static noinline int do_walk_down(struct btrfs_trans_handle *trans,
7802 struct btrfs_root *root,
7803 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007804 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007805{
7806 u64 bytenr;
7807 u64 generation;
7808 u64 parent;
7809 u32 blocksize;
7810 struct btrfs_key key;
7811 struct extent_buffer *next;
7812 int level = wc->level;
7813 int reada = 0;
7814 int ret = 0;
Mark Fasheh11526512014-07-17 12:39:01 -07007815 bool need_account = false;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007816
7817 generation = btrfs_node_ptr_generation(path->nodes[level],
7818 path->slots[level]);
7819 /*
7820 * if the lower level block was created before the snapshot
7821 * was created, we know there is no need to update back refs
7822 * for the subtree
7823 */
7824 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04007825 generation <= root->root_key.offset) {
7826 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007827 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007828 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007829
7830 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
David Sterba707e8a02014-06-04 19:22:26 +02007831 blocksize = root->nodesize;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007832
7833 next = btrfs_find_tree_block(root, bytenr, blocksize);
7834 if (!next) {
7835 next = btrfs_find_create_tree_block(root, bytenr, blocksize);
Miao Xie90d2c51d2010-03-25 12:37:12 +00007836 if (!next)
7837 return -ENOMEM;
Josef Bacikb2aaaa32013-07-05 17:05:38 -04007838 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
7839 level - 1);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007840 reada = 1;
7841 }
7842 btrfs_tree_lock(next);
7843 btrfs_set_lock_blocking(next);
7844
Josef Bacik3173a182013-03-07 14:22:04 -05007845 ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007846 &wc->refs[level - 1],
7847 &wc->flags[level - 1]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007848 if (ret < 0) {
7849 btrfs_tree_unlock(next);
7850 return ret;
7851 }
7852
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007853 if (unlikely(wc->refs[level - 1] == 0)) {
7854 btrfs_err(root->fs_info, "Missing references.");
7855 BUG();
7856 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04007857 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007858
Yan, Zheng94fcca92009-10-09 09:25:16 -04007859 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007860 if (wc->refs[level - 1] > 1) {
Mark Fasheh11526512014-07-17 12:39:01 -07007861 need_account = true;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007862 if (level == 1 &&
7863 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7864 goto skip;
7865
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007866 if (!wc->update_ref ||
7867 generation <= root->root_key.offset)
7868 goto skip;
7869
7870 btrfs_node_key_to_cpu(path->nodes[level], &key,
7871 path->slots[level]);
7872 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
7873 if (ret < 0)
7874 goto skip;
7875
7876 wc->stage = UPDATE_BACKREF;
7877 wc->shared_level = level - 1;
7878 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04007879 } else {
7880 if (level == 1 &&
7881 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7882 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007883 }
7884
Chris Masonb9fab912012-05-06 07:23:47 -04007885 if (!btrfs_buffer_uptodate(next, generation, 0)) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007886 btrfs_tree_unlock(next);
7887 free_extent_buffer(next);
7888 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007889 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007890 }
7891
7892 if (!next) {
7893 if (reada && level == 1)
7894 reada_walk_down(trans, root, wc, path);
7895 next = read_tree_block(root, bytenr, blocksize, generation);
Josef Bacik416bc652013-04-23 14:17:42 -04007896 if (!next || !extent_buffer_uptodate(next)) {
7897 free_extent_buffer(next);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00007898 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04007899 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007900 btrfs_tree_lock(next);
7901 btrfs_set_lock_blocking(next);
7902 }
7903
7904 level--;
7905 BUG_ON(level != btrfs_header_level(next));
7906 path->nodes[level] = next;
7907 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04007908 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007909 wc->level = level;
7910 if (wc->level == 1)
7911 wc->reada_slot = 0;
7912 return 0;
7913skip:
7914 wc->refs[level - 1] = 0;
7915 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007916 if (wc->stage == DROP_REFERENCE) {
7917 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
7918 parent = path->nodes[level]->start;
7919 } else {
7920 BUG_ON(root->root_key.objectid !=
7921 btrfs_header_owner(path->nodes[level]));
7922 parent = 0;
7923 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007924
Mark Fasheh11526512014-07-17 12:39:01 -07007925 if (need_account) {
7926 ret = account_shared_subtree(trans, root, next,
7927 generation, level - 1);
7928 if (ret) {
7929 printk_ratelimited(KERN_ERR "BTRFS: %s Error "
7930 "%d accounting shared subtree. Quota "
7931 "is out of sync, rescan required.\n",
7932 root->fs_info->sb->s_id, ret);
7933 }
7934 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04007935 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007936 root->root_key.objectid, level - 1, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007937 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007938 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007939 btrfs_tree_unlock(next);
7940 free_extent_buffer(next);
Yan, Zheng94fcca92009-10-09 09:25:16 -04007941 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007942 return 1;
7943}
7944
7945/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007946 * helper to process tree block while walking up the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04007947 *
7948 * when wc->stage == DROP_REFERENCE, this function drops
7949 * reference count on the block.
7950 *
7951 * when wc->stage == UPDATE_BACKREF, this function changes
7952 * wc->stage back to DROP_REFERENCE if we changed wc->stage
7953 * to UPDATE_BACKREF previously while processing the block.
7954 *
7955 * NOTE: return value 1 means we should stop walking up.
7956 */
7957static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
7958 struct btrfs_root *root,
7959 struct btrfs_path *path,
7960 struct walk_control *wc)
7961{
Yan, Zhengf0486c62010-05-16 10:46:25 -04007962 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007963 int level = wc->level;
7964 struct extent_buffer *eb = path->nodes[level];
7965 u64 parent = 0;
7966
7967 if (wc->stage == UPDATE_BACKREF) {
7968 BUG_ON(wc->shared_level < level);
7969 if (level < wc->shared_level)
7970 goto out;
7971
Yan Zheng2c47e6052009-06-27 21:07:35 -04007972 ret = find_next_key(path, level + 1, &wc->update_progress);
7973 if (ret > 0)
7974 wc->update_ref = 0;
7975
7976 wc->stage = DROP_REFERENCE;
7977 wc->shared_level = -1;
7978 path->slots[level] = 0;
7979
7980 /*
7981 * check reference count again if the block isn't locked.
7982 * we should start walking down the tree again if reference
7983 * count is one.
7984 */
7985 if (!path->locks[level]) {
7986 BUG_ON(level == 0);
7987 btrfs_tree_lock(eb);
7988 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04007989 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007990
7991 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05007992 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007993 &wc->refs[level],
7994 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007995 if (ret < 0) {
7996 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00007997 path->locks[level] = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007998 return ret;
7999 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008000 BUG_ON(wc->refs[level] == 0);
8001 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04008002 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00008003 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008004 return 1;
8005 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008006 }
8007 }
8008
8009 /* wc->stage == DROP_REFERENCE */
8010 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
8011
8012 if (wc->refs[level] == 1) {
8013 if (level == 0) {
8014 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
Josef Bacike339a6b2014-07-02 10:54:25 -07008015 ret = btrfs_dec_ref(trans, root, eb, 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008016 else
Josef Bacike339a6b2014-07-02 10:54:25 -07008017 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008018 BUG_ON(ret); /* -ENOMEM */
Mark Fasheh11526512014-07-17 12:39:01 -07008019 ret = account_leaf_items(trans, root, eb);
8020 if (ret) {
8021 printk_ratelimited(KERN_ERR "BTRFS: %s Error "
8022 "%d accounting leaf items. Quota "
8023 "is out of sync, rescan required.\n",
8024 root->fs_info->sb->s_id, ret);
8025 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008026 }
8027 /* make block locked assertion in clean_tree_block happy */
8028 if (!path->locks[level] &&
8029 btrfs_header_generation(eb) == trans->transid) {
8030 btrfs_tree_lock(eb);
8031 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04008032 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008033 }
8034 clean_tree_block(trans, root, eb);
8035 }
8036
8037 if (eb == root->node) {
8038 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
8039 parent = eb->start;
8040 else
8041 BUG_ON(root->root_key.objectid !=
8042 btrfs_header_owner(eb));
8043 } else {
8044 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
8045 parent = path->nodes[level + 1]->start;
8046 else
8047 BUG_ON(root->root_key.objectid !=
8048 btrfs_header_owner(path->nodes[level + 1]));
8049 }
8050
Jan Schmidt5581a512012-05-16 17:04:52 +02008051 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008052out:
8053 wc->refs[level] = 0;
8054 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008055 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008056}
8057
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008058static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
8059 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008060 struct btrfs_path *path,
8061 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04008062{
Yan Zheng2c47e6052009-06-27 21:07:35 -04008063 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008064 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008065 int ret;
8066
Yan Zheng2c47e6052009-06-27 21:07:35 -04008067 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04008068 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008069 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04008070 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008071
Yan Zheng2c47e6052009-06-27 21:07:35 -04008072 if (level == 0)
8073 break;
8074
Yan, Zheng7a7965f2010-02-01 02:41:17 +00008075 if (path->slots[level] >=
8076 btrfs_header_nritems(path->nodes[level]))
8077 break;
8078
Yan, Zheng94fcca92009-10-09 09:25:16 -04008079 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008080 if (ret > 0) {
8081 path->slots[level]++;
8082 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00008083 } else if (ret < 0)
8084 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008085 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008086 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04008087 return 0;
8088}
8089
Chris Masond3977122009-01-05 21:25:51 -05008090static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05008091 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04008092 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008093 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05008094{
Yan Zheng2c47e6052009-06-27 21:07:35 -04008095 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05008096 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04008097
Yan Zheng2c47e6052009-06-27 21:07:35 -04008098 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
8099 while (level < max_level && path->nodes[level]) {
8100 wc->level = level;
8101 if (path->slots[level] + 1 <
8102 btrfs_header_nritems(path->nodes[level])) {
8103 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05008104 return 0;
8105 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008106 ret = walk_up_proc(trans, root, path, wc);
8107 if (ret > 0)
8108 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05008109
Yan Zheng2c47e6052009-06-27 21:07:35 -04008110 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04008111 btrfs_tree_unlock_rw(path->nodes[level],
8112 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008113 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008114 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008115 free_extent_buffer(path->nodes[level]);
8116 path->nodes[level] = NULL;
8117 level++;
Chris Mason20524f02007-03-10 06:35:47 -05008118 }
8119 }
8120 return 1;
8121}
8122
Chris Mason9aca1d52007-03-13 11:09:37 -04008123/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04008124 * drop a subvolume tree.
8125 *
8126 * this function traverses the tree freeing any blocks that only
8127 * referenced by the tree.
8128 *
8129 * when a shared tree block is found. this function decreases its
8130 * reference count by one. if update_ref is true, this function
8131 * also make sure backrefs for the shared block and all lower level
8132 * blocks are properly updated.
David Sterba9d1a2a32013-03-12 15:13:28 +00008133 *
8134 * If called with for_reloc == 0, may exit early with -EAGAIN
Chris Mason9aca1d52007-03-13 11:09:37 -04008135 */
Jeff Mahoney2c536792011-10-03 23:22:41 -04008136int btrfs_drop_snapshot(struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008137 struct btrfs_block_rsv *block_rsv, int update_ref,
8138 int for_reloc)
Chris Mason20524f02007-03-10 06:35:47 -05008139{
Chris Mason5caf2a02007-04-02 11:20:42 -04008140 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008141 struct btrfs_trans_handle *trans;
8142 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04008143 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008144 struct walk_control *wc;
8145 struct btrfs_key key;
8146 int err = 0;
8147 int ret;
8148 int level;
Josef Bacikd29a9f62013-07-17 19:30:20 -04008149 bool root_dropped = false;
Chris Mason20524f02007-03-10 06:35:47 -05008150
Mark Fasheh11526512014-07-17 12:39:01 -07008151 btrfs_debug(root->fs_info, "Drop subvolume %llu", root->objectid);
8152
Chris Mason5caf2a02007-04-02 11:20:42 -04008153 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008154 if (!path) {
8155 err = -ENOMEM;
8156 goto out;
8157 }
Chris Mason20524f02007-03-10 06:35:47 -05008158
Yan Zheng2c47e6052009-06-27 21:07:35 -04008159 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07008160 if (!wc) {
8161 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008162 err = -ENOMEM;
8163 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07008164 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008165
Yan, Zhenga22285a2010-05-16 10:48:46 -04008166 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008167 if (IS_ERR(trans)) {
8168 err = PTR_ERR(trans);
8169 goto out_free;
8170 }
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00008171
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008172 if (block_rsv)
8173 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008174
Chris Mason9f3a7422007-08-07 15:52:19 -04008175 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008176 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008177 path->nodes[level] = btrfs_lock_root_node(root);
8178 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04008179 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008180 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008181 memset(&wc->update_progress, 0,
8182 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04008183 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04008184 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008185 memcpy(&wc->update_progress, &key,
8186 sizeof(wc->update_progress));
8187
Chris Mason6702ed42007-08-07 16:15:09 -04008188 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008189 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04008190 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008191 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
8192 path->lowest_level = 0;
8193 if (ret < 0) {
8194 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008195 goto out_end_trans;
Chris Mason9f3a7422007-08-07 15:52:19 -04008196 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008197 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008198
Chris Mason7d9eb122008-07-08 14:19:17 -04008199 /*
8200 * unlock our path, this is safe because only this
8201 * function is allowed to delete this snapshot
8202 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008203 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04008204
Yan Zheng2c47e6052009-06-27 21:07:35 -04008205 level = btrfs_header_level(root->node);
8206 while (1) {
8207 btrfs_tree_lock(path->nodes[level]);
8208 btrfs_set_lock_blocking(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04008209 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008210
8211 ret = btrfs_lookup_extent_info(trans, root,
8212 path->nodes[level]->start,
Josef Bacik3173a182013-03-07 14:22:04 -05008213 level, 1, &wc->refs[level],
Yan Zheng2c47e6052009-06-27 21:07:35 -04008214 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008215 if (ret < 0) {
8216 err = ret;
8217 goto out_end_trans;
8218 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008219 BUG_ON(wc->refs[level] == 0);
8220
8221 if (level == root_item->drop_level)
8222 break;
8223
8224 btrfs_tree_unlock(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04008225 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008226 WARN_ON(wc->refs[level] != 1);
8227 level--;
8228 }
8229 }
8230
8231 wc->level = level;
8232 wc->shared_level = -1;
8233 wc->stage = DROP_REFERENCE;
8234 wc->update_ref = update_ref;
8235 wc->keep_locks = 0;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008236 wc->for_reloc = for_reloc;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008237 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008238
8239 while (1) {
David Sterba9d1a2a32013-03-12 15:13:28 +00008240
Yan Zheng2c47e6052009-06-27 21:07:35 -04008241 ret = walk_down_tree(trans, root, path, wc);
8242 if (ret < 0) {
8243 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04008244 break;
8245 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008246
8247 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
8248 if (ret < 0) {
8249 err = ret;
8250 break;
8251 }
8252
8253 if (ret > 0) {
8254 BUG_ON(wc->stage != DROP_REFERENCE);
8255 break;
8256 }
8257
8258 if (wc->stage == DROP_REFERENCE) {
8259 level = wc->level;
8260 btrfs_node_key(path->nodes[level],
8261 &root_item->drop_progress,
8262 path->slots[level]);
8263 root_item->drop_level = level;
8264 }
8265
8266 BUG_ON(wc->level == 0);
Josef Bacik3c8f2422013-07-15 11:57:06 -04008267 if (btrfs_should_end_transaction(trans, tree_root) ||
8268 (!for_reloc && btrfs_need_cleaner_sleep(root))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008269 ret = btrfs_update_root(trans, tree_root,
8270 &root->root_key,
8271 root_item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008272 if (ret) {
8273 btrfs_abort_transaction(trans, tree_root, ret);
8274 err = ret;
8275 goto out_end_trans;
8276 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008277
Mark Fasheh11526512014-07-17 12:39:01 -07008278 /*
8279 * Qgroup update accounting is run from
8280 * delayed ref handling. This usually works
8281 * out because delayed refs are normally the
8282 * only way qgroup updates are added. However,
8283 * we may have added updates during our tree
8284 * walk so run qgroups here to make sure we
8285 * don't lose any updates.
8286 */
8287 ret = btrfs_delayed_qgroup_accounting(trans,
8288 root->fs_info);
8289 if (ret)
8290 printk_ratelimited(KERN_ERR "BTRFS: Failure %d "
8291 "running qgroup updates "
8292 "during snapshot delete. "
8293 "Quota is out of sync, "
8294 "rescan required.\n", ret);
8295
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008296 btrfs_end_transaction_throttle(trans, tree_root);
Josef Bacik3c8f2422013-07-15 11:57:06 -04008297 if (!for_reloc && btrfs_need_cleaner_sleep(root)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05008298 pr_debug("BTRFS: drop snapshot early exit\n");
Josef Bacik3c8f2422013-07-15 11:57:06 -04008299 err = -EAGAIN;
8300 goto out_free;
8301 }
8302
Yan, Zhenga22285a2010-05-16 10:48:46 -04008303 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008304 if (IS_ERR(trans)) {
8305 err = PTR_ERR(trans);
8306 goto out_free;
8307 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008308 if (block_rsv)
8309 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04008310 }
Chris Mason20524f02007-03-10 06:35:47 -05008311 }
David Sterbab3b4aa72011-04-21 01:20:15 +02008312 btrfs_release_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008313 if (err)
8314 goto out_end_trans;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008315
8316 ret = btrfs_del_root(trans, tree_root, &root->root_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008317 if (ret) {
8318 btrfs_abort_transaction(trans, tree_root, ret);
8319 goto out_end_trans;
8320 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008321
Yan, Zheng76dda932009-09-21 16:00:26 -04008322 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Miao Xiecb517ea2013-05-15 07:48:19 +00008323 ret = btrfs_find_root(tree_root, &root->root_key, path,
8324 NULL, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008325 if (ret < 0) {
8326 btrfs_abort_transaction(trans, tree_root, ret);
8327 err = ret;
8328 goto out_end_trans;
8329 } else if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05008330 /* if we fail to delete the orphan item this time
8331 * around, it'll get picked up the next time.
8332 *
8333 * The most common failure here is just -ENOENT.
8334 */
8335 btrfs_del_orphan_item(trans, tree_root,
8336 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04008337 }
8338 }
8339
Miao Xie27cdeb72014-04-02 19:51:05 +08008340 if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) {
Miao Xiecb517ea2013-05-15 07:48:19 +00008341 btrfs_drop_and_free_fs_root(tree_root->fs_info, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04008342 } else {
8343 free_extent_buffer(root->node);
8344 free_extent_buffer(root->commit_root);
Miao Xieb0feb9d2013-05-15 07:48:20 +00008345 btrfs_put_fs_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04008346 }
Josef Bacikd29a9f62013-07-17 19:30:20 -04008347 root_dropped = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008348out_end_trans:
Mark Fasheh11526512014-07-17 12:39:01 -07008349 ret = btrfs_delayed_qgroup_accounting(trans, tree_root->fs_info);
8350 if (ret)
8351 printk_ratelimited(KERN_ERR "BTRFS: Failure %d "
8352 "running qgroup updates "
8353 "during snapshot delete. "
8354 "Quota is out of sync, "
8355 "rescan required.\n", ret);
8356
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008357 btrfs_end_transaction_throttle(trans, tree_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008358out_free:
Yan Zheng2c47e6052009-06-27 21:07:35 -04008359 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04008360 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008361out:
Josef Bacikd29a9f62013-07-17 19:30:20 -04008362 /*
8363 * So if we need to stop dropping the snapshot for whatever reason we
8364 * need to make sure to add it back to the dead root list so that we
8365 * keep trying to do the work later. This also cleans up roots if we
8366 * don't have it in the radix (like when we recover after a power fail
8367 * or unmount) so we don't leak memory.
8368 */
Josef Bacikb37b39c2013-07-23 16:57:15 -04008369 if (!for_reloc && root_dropped == false)
Josef Bacikd29a9f62013-07-17 19:30:20 -04008370 btrfs_add_dead_root(root);
Wang Shilong90515e72014-01-07 17:26:58 +08008371 if (err && err != -EAGAIN)
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008372 btrfs_std_error(root->fs_info, err);
Jeff Mahoney2c536792011-10-03 23:22:41 -04008373 return err;
Chris Mason20524f02007-03-10 06:35:47 -05008374}
Chris Mason9078a3e2007-04-26 16:46:15 -04008375
Yan Zheng2c47e6052009-06-27 21:07:35 -04008376/*
8377 * drop subtree rooted at tree block 'node'.
8378 *
8379 * NOTE: this function will unlock and release tree block 'node'
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008380 * only used by relocation code
Yan Zheng2c47e6052009-06-27 21:07:35 -04008381 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04008382int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
8383 struct btrfs_root *root,
8384 struct extent_buffer *node,
8385 struct extent_buffer *parent)
8386{
8387 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008388 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008389 int level;
8390 int parent_level;
8391 int ret = 0;
8392 int wret;
8393
Yan Zheng2c47e6052009-06-27 21:07:35 -04008394 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
8395
Yan Zhengf82d02d2008-10-29 14:49:05 -04008396 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00008397 if (!path)
8398 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008399
Yan Zheng2c47e6052009-06-27 21:07:35 -04008400 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00008401 if (!wc) {
8402 btrfs_free_path(path);
8403 return -ENOMEM;
8404 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008405
Chris Masonb9447ef2009-03-09 11:45:38 -04008406 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008407 parent_level = btrfs_header_level(parent);
8408 extent_buffer_get(parent);
8409 path->nodes[parent_level] = parent;
8410 path->slots[parent_level] = btrfs_header_nritems(parent);
8411
Chris Masonb9447ef2009-03-09 11:45:38 -04008412 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008413 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008414 path->nodes[level] = node;
8415 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008416 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008417
8418 wc->refs[parent_level] = 1;
8419 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
8420 wc->level = level;
8421 wc->shared_level = -1;
8422 wc->stage = DROP_REFERENCE;
8423 wc->update_ref = 0;
8424 wc->keep_locks = 1;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008425 wc->for_reloc = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008426 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008427
8428 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008429 wret = walk_down_tree(trans, root, path, wc);
8430 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04008431 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008432 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008433 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04008434
Yan Zheng2c47e6052009-06-27 21:07:35 -04008435 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008436 if (wret < 0)
8437 ret = wret;
8438 if (wret != 0)
8439 break;
8440 }
8441
Yan Zheng2c47e6052009-06-27 21:07:35 -04008442 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008443 btrfs_free_path(path);
8444 return ret;
8445}
8446
Chris Masonec44a352008-04-28 15:29:52 -04008447static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
8448{
8449 u64 num_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03008450 u64 stripped;
Chris Masonec44a352008-04-28 15:29:52 -04008451
Ilya Dryomovfc67c452012-03-27 17:09:17 +03008452 /*
8453 * if restripe for this chunk_type is on pick target profile and
8454 * return, otherwise do the usual balance
8455 */
8456 stripped = get_restripe_target(root->fs_info, flags);
8457 if (stripped)
8458 return extended_to_chunk(stripped);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02008459
Miao Xie95669972014-07-24 11:37:14 +08008460 num_devices = root->fs_info->fs_devices->rw_devices;
Chris Masoncd02dca2010-12-13 14:56:23 -05008461
Ilya Dryomovfc67c452012-03-27 17:09:17 +03008462 stripped = BTRFS_BLOCK_GROUP_RAID0 |
David Woodhouse53b381b2013-01-29 18:40:14 -05008463 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
Ilya Dryomovfc67c452012-03-27 17:09:17 +03008464 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
8465
Chris Masonec44a352008-04-28 15:29:52 -04008466 if (num_devices == 1) {
8467 stripped |= BTRFS_BLOCK_GROUP_DUP;
8468 stripped = flags & ~stripped;
8469
8470 /* turn raid0 into single device chunks */
8471 if (flags & BTRFS_BLOCK_GROUP_RAID0)
8472 return stripped;
8473
8474 /* turn mirroring into duplication */
8475 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
8476 BTRFS_BLOCK_GROUP_RAID10))
8477 return stripped | BTRFS_BLOCK_GROUP_DUP;
Chris Masonec44a352008-04-28 15:29:52 -04008478 } else {
8479 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04008480 if (flags & stripped)
8481 return flags;
8482
8483 stripped |= BTRFS_BLOCK_GROUP_DUP;
8484 stripped = flags & ~stripped;
8485
8486 /* switch duplicated blocks with raid1 */
8487 if (flags & BTRFS_BLOCK_GROUP_DUP)
8488 return stripped | BTRFS_BLOCK_GROUP_RAID1;
8489
Ilya Dryomove3176ca2012-03-27 17:09:16 +03008490 /* this is drive concat, leave it alone */
Chris Masonec44a352008-04-28 15:29:52 -04008491 }
Ilya Dryomove3176ca2012-03-27 17:09:16 +03008492
Chris Masonec44a352008-04-28 15:29:52 -04008493 return flags;
8494}
8495
Miao Xie199c36e2011-07-15 10:34:36 +00008496static int set_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04008497{
Yan, Zhengf0486c62010-05-16 10:46:25 -04008498 struct btrfs_space_info *sinfo = cache->space_info;
8499 u64 num_bytes;
Miao Xie199c36e2011-07-15 10:34:36 +00008500 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008501 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04008502
Chris Masonc286ac42008-07-22 23:06:41 -04008503
Miao Xie199c36e2011-07-15 10:34:36 +00008504 /*
8505 * We need some metadata space and system metadata space for
8506 * allocating chunks in some corner cases until we force to set
8507 * it to be readonly.
8508 */
8509 if ((sinfo->flags &
8510 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
8511 !force)
8512 min_allocable_bytes = 1 * 1024 * 1024;
8513 else
8514 min_allocable_bytes = 0;
8515
Yan, Zhengf0486c62010-05-16 10:46:25 -04008516 spin_lock(&sinfo->lock);
8517 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00008518
8519 if (cache->ro) {
8520 ret = 0;
8521 goto out;
8522 }
8523
Yan, Zhengf0486c62010-05-16 10:46:25 -04008524 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8525 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04008526
Yan, Zhengf0486c62010-05-16 10:46:25 -04008527 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
Josef Bacik37be25b2011-08-05 10:25:38 -04008528 sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes +
8529 min_allocable_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04008530 sinfo->bytes_readonly += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008531 cache->ro = 1;
8532 ret = 0;
8533 }
WuBo61cfea92011-07-26 03:30:11 +00008534out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04008535 spin_unlock(&cache->lock);
8536 spin_unlock(&sinfo->lock);
8537 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04008538}
8539
Yan, Zhengf0486c62010-05-16 10:46:25 -04008540int btrfs_set_block_group_ro(struct btrfs_root *root,
8541 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008542
8543{
Yan, Zhengf0486c62010-05-16 10:46:25 -04008544 struct btrfs_trans_handle *trans;
8545 u64 alloc_flags;
8546 int ret;
8547
8548 BUG_ON(cache->ro);
8549
Josef Bacik7a7eaa42011-04-13 12:54:33 -04008550 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008551 if (IS_ERR(trans))
8552 return PTR_ERR(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008553
8554 alloc_flags = update_block_group_flags(root, cache->flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008555 if (alloc_flags != cache->flags) {
Josef Bacik698d0082012-09-12 14:08:47 -04008556 ret = do_chunk_alloc(trans, root, alloc_flags,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008557 CHUNK_ALLOC_FORCE);
8558 if (ret < 0)
8559 goto out;
8560 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008561
Miao Xie199c36e2011-07-15 10:34:36 +00008562 ret = set_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008563 if (!ret)
8564 goto out;
8565 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
Josef Bacik698d0082012-09-12 14:08:47 -04008566 ret = do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04008567 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008568 if (ret < 0)
8569 goto out;
Miao Xie199c36e2011-07-15 10:34:36 +00008570 ret = set_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008571out:
8572 btrfs_end_transaction(trans, root);
8573 return ret;
8574}
8575
Chris Masonc87f08c2011-02-16 13:57:04 -05008576int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
8577 struct btrfs_root *root, u64 type)
8578{
8579 u64 alloc_flags = get_alloc_profile(root, type);
Josef Bacik698d0082012-09-12 14:08:47 -04008580 return do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04008581 CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05008582}
8583
Miao Xie6d07bce2011-01-05 10:07:31 +00008584/*
8585 * helper to account the unused space of all the readonly block group in the
8586 * list. takes mirrors into account.
8587 */
8588static u64 __btrfs_get_ro_block_group_free_space(struct list_head *groups_list)
8589{
8590 struct btrfs_block_group_cache *block_group;
8591 u64 free_bytes = 0;
8592 int factor;
8593
8594 list_for_each_entry(block_group, groups_list, list) {
8595 spin_lock(&block_group->lock);
8596
8597 if (!block_group->ro) {
8598 spin_unlock(&block_group->lock);
8599 continue;
8600 }
8601
8602 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
8603 BTRFS_BLOCK_GROUP_RAID10 |
8604 BTRFS_BLOCK_GROUP_DUP))
8605 factor = 2;
8606 else
8607 factor = 1;
8608
8609 free_bytes += (block_group->key.offset -
8610 btrfs_block_group_used(&block_group->item)) *
8611 factor;
8612
8613 spin_unlock(&block_group->lock);
8614 }
8615
8616 return free_bytes;
8617}
8618
8619/*
8620 * helper to account the unused space of all the readonly block group in the
8621 * space_info. takes mirrors into account.
8622 */
8623u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
8624{
8625 int i;
8626 u64 free_bytes = 0;
8627
8628 spin_lock(&sinfo->lock);
8629
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05308630 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
Miao Xie6d07bce2011-01-05 10:07:31 +00008631 if (!list_empty(&sinfo->block_groups[i]))
8632 free_bytes += __btrfs_get_ro_block_group_free_space(
8633 &sinfo->block_groups[i]);
8634
8635 spin_unlock(&sinfo->lock);
8636
8637 return free_bytes;
8638}
8639
Jeff Mahoney143bede2012-03-01 14:56:26 +01008640void btrfs_set_block_group_rw(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04008641 struct btrfs_block_group_cache *cache)
8642{
8643 struct btrfs_space_info *sinfo = cache->space_info;
8644 u64 num_bytes;
8645
8646 BUG_ON(!cache->ro);
8647
8648 spin_lock(&sinfo->lock);
8649 spin_lock(&cache->lock);
8650 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8651 cache->bytes_super - btrfs_block_group_used(&cache->item);
8652 sinfo->bytes_readonly -= num_bytes;
8653 cache->ro = 0;
8654 spin_unlock(&cache->lock);
8655 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008656}
8657
Josef Bacikba1bf482009-09-11 16:11:19 -04008658/*
8659 * checks to see if its even possible to relocate this block group.
8660 *
8661 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
8662 * ok to go ahead and try.
8663 */
8664int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04008665{
Zheng Yan1a40e232008-09-26 10:09:34 -04008666 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04008667 struct btrfs_space_info *space_info;
8668 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
8669 struct btrfs_device *device;
Josef Bacik6df9a952013-06-27 13:22:46 -04008670 struct btrfs_trans_handle *trans;
liubocdcb7252011-08-03 10:15:25 +00008671 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04008672 u64 dev_min = 1;
8673 u64 dev_nr = 0;
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008674 u64 target;
liubocdcb7252011-08-03 10:15:25 +00008675 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04008676 int full = 0;
8677 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05008678
Josef Bacikba1bf482009-09-11 16:11:19 -04008679 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04008680
Josef Bacikba1bf482009-09-11 16:11:19 -04008681 /* odd, couldn't find the block group, leave it alone */
8682 if (!block_group)
8683 return -1;
Chris Masonedbd8d42007-12-21 16:27:24 -05008684
liubocdcb7252011-08-03 10:15:25 +00008685 min_free = btrfs_block_group_used(&block_group->item);
8686
Josef Bacikba1bf482009-09-11 16:11:19 -04008687 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00008688 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04008689 goto out;
Chris Mason323da792008-05-09 11:46:48 -04008690
Josef Bacikba1bf482009-09-11 16:11:19 -04008691 space_info = block_group->space_info;
8692 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04008693
Josef Bacikba1bf482009-09-11 16:11:19 -04008694 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04008695
Josef Bacikba1bf482009-09-11 16:11:19 -04008696 /*
8697 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04008698 * relocate it unless we're able to allocate a new chunk below.
8699 *
8700 * Otherwise, we need to make sure we have room in the space to handle
8701 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04008702 */
Chris Mason7ce618d2009-09-22 14:48:44 -04008703 if ((space_info->total_bytes != block_group->key.offset) &&
liubocdcb7252011-08-03 10:15:25 +00008704 (space_info->bytes_used + space_info->bytes_reserved +
8705 space_info->bytes_pinned + space_info->bytes_readonly +
8706 min_free < space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04008707 spin_unlock(&space_info->lock);
8708 goto out;
8709 }
8710 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008711
Josef Bacikba1bf482009-09-11 16:11:19 -04008712 /*
8713 * ok we don't have enough space, but maybe we have free space on our
8714 * devices to allocate new chunks for relocation, so loop through our
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008715 * alloc devices and guess if we have enough space. if this block
8716 * group is going to be restriped, run checks against the target
8717 * profile instead of the current one.
Josef Bacikba1bf482009-09-11 16:11:19 -04008718 */
8719 ret = -1;
Chris Mason4313b392008-01-03 09:08:48 -05008720
liubocdcb7252011-08-03 10:15:25 +00008721 /*
8722 * index:
8723 * 0: raid10
8724 * 1: raid1
8725 * 2: dup
8726 * 3: raid0
8727 * 4: single
8728 */
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008729 target = get_restripe_target(root->fs_info, block_group->flags);
8730 if (target) {
Liu Bo31e50222012-11-21 14:18:10 +00008731 index = __get_raid_index(extended_to_chunk(target));
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008732 } else {
8733 /*
8734 * this is just a balance, so if we were marked as full
8735 * we know there is no space for a new chunk
8736 */
8737 if (full)
8738 goto out;
8739
8740 index = get_block_group_index(block_group);
8741 }
8742
Miao Xiee6ec7162013-01-17 05:38:51 +00008743 if (index == BTRFS_RAID_RAID10) {
liubocdcb7252011-08-03 10:15:25 +00008744 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04008745 /* Divide by 2 */
8746 min_free >>= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00008747 } else if (index == BTRFS_RAID_RAID1) {
liubocdcb7252011-08-03 10:15:25 +00008748 dev_min = 2;
Miao Xiee6ec7162013-01-17 05:38:51 +00008749 } else if (index == BTRFS_RAID_DUP) {
Josef Bacik6719db62011-08-20 08:29:51 -04008750 /* Multiply by 2 */
8751 min_free <<= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00008752 } else if (index == BTRFS_RAID_RAID0) {
liubocdcb7252011-08-03 10:15:25 +00008753 dev_min = fs_devices->rw_devices;
Josef Bacik6719db62011-08-20 08:29:51 -04008754 do_div(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00008755 }
8756
Josef Bacik6df9a952013-06-27 13:22:46 -04008757 /* We need to do this so that we can look at pending chunks */
8758 trans = btrfs_join_transaction(root);
8759 if (IS_ERR(trans)) {
8760 ret = PTR_ERR(trans);
8761 goto out;
8762 }
8763
Josef Bacikba1bf482009-09-11 16:11:19 -04008764 mutex_lock(&root->fs_info->chunk_mutex);
8765 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00008766 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04008767
Josef Bacikba1bf482009-09-11 16:11:19 -04008768 /*
8769 * check to make sure we can actually find a chunk with enough
8770 * space to fit our block group in.
8771 */
Stefan Behrens63a212a2012-11-05 18:29:28 +01008772 if (device->total_bytes > device->bytes_used + min_free &&
8773 !device->is_tgtdev_for_dev_replace) {
Josef Bacik6df9a952013-06-27 13:22:46 -04008774 ret = find_free_dev_extent(trans, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00008775 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04008776 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00008777 dev_nr++;
8778
8779 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05008780 break;
liubocdcb7252011-08-03 10:15:25 +00008781
Josef Bacikba1bf482009-09-11 16:11:19 -04008782 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05008783 }
Chris Masonedbd8d42007-12-21 16:27:24 -05008784 }
Josef Bacikba1bf482009-09-11 16:11:19 -04008785 mutex_unlock(&root->fs_info->chunk_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04008786 btrfs_end_transaction(trans, root);
Chris Masonedbd8d42007-12-21 16:27:24 -05008787out:
Josef Bacikba1bf482009-09-11 16:11:19 -04008788 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05008789 return ret;
8790}
8791
Christoph Hellwigb2950862008-12-02 09:54:17 -05008792static int find_first_block_group(struct btrfs_root *root,
8793 struct btrfs_path *path, struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04008794{
Chris Mason925baed2008-06-25 16:01:30 -04008795 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04008796 struct btrfs_key found_key;
8797 struct extent_buffer *leaf;
8798 int slot;
8799
8800 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
8801 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008802 goto out;
8803
Chris Masond3977122009-01-05 21:25:51 -05008804 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04008805 slot = path->slots[0];
8806 leaf = path->nodes[0];
8807 if (slot >= btrfs_header_nritems(leaf)) {
8808 ret = btrfs_next_leaf(root, path);
8809 if (ret == 0)
8810 continue;
8811 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008812 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04008813 break;
8814 }
8815 btrfs_item_key_to_cpu(leaf, &found_key, slot);
8816
8817 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04008818 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
8819 ret = 0;
8820 goto out;
8821 }
Chris Mason0b86a832008-03-24 15:01:56 -04008822 path->slots[0]++;
8823 }
Chris Mason925baed2008-06-25 16:01:30 -04008824out:
Chris Mason0b86a832008-03-24 15:01:56 -04008825 return ret;
8826}
8827
Josef Bacik0af3d002010-06-21 14:48:16 -04008828void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
8829{
8830 struct btrfs_block_group_cache *block_group;
8831 u64 last = 0;
8832
8833 while (1) {
8834 struct inode *inode;
8835
8836 block_group = btrfs_lookup_first_block_group(info, last);
8837 while (block_group) {
8838 spin_lock(&block_group->lock);
8839 if (block_group->iref)
8840 break;
8841 spin_unlock(&block_group->lock);
8842 block_group = next_block_group(info->tree_root,
8843 block_group);
8844 }
8845 if (!block_group) {
8846 if (last == 0)
8847 break;
8848 last = 0;
8849 continue;
8850 }
8851
8852 inode = block_group->inode;
8853 block_group->iref = 0;
8854 block_group->inode = NULL;
8855 spin_unlock(&block_group->lock);
8856 iput(inode);
8857 last = block_group->key.objectid + block_group->key.offset;
8858 btrfs_put_block_group(block_group);
8859 }
8860}
8861
Zheng Yan1a40e232008-09-26 10:09:34 -04008862int btrfs_free_block_groups(struct btrfs_fs_info *info)
8863{
8864 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04008865 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04008866 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04008867 struct rb_node *n;
8868
Josef Bacik9e351cc2014-03-13 15:42:13 -04008869 down_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04008870 while (!list_empty(&info->caching_block_groups)) {
8871 caching_ctl = list_entry(info->caching_block_groups.next,
8872 struct btrfs_caching_control, list);
8873 list_del(&caching_ctl->list);
8874 put_caching_control(caching_ctl);
8875 }
Josef Bacik9e351cc2014-03-13 15:42:13 -04008876 up_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04008877
Josef Bacik47ab2a62014-09-18 11:20:02 -04008878 spin_lock(&info->unused_bgs_lock);
8879 while (!list_empty(&info->unused_bgs)) {
8880 block_group = list_first_entry(&info->unused_bgs,
8881 struct btrfs_block_group_cache,
8882 bg_list);
8883 list_del_init(&block_group->bg_list);
8884 btrfs_put_block_group(block_group);
8885 }
8886 spin_unlock(&info->unused_bgs_lock);
8887
Zheng Yan1a40e232008-09-26 10:09:34 -04008888 spin_lock(&info->block_group_cache_lock);
8889 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
8890 block_group = rb_entry(n, struct btrfs_block_group_cache,
8891 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04008892 rb_erase(&block_group->cache_node,
8893 &info->block_group_cache_tree);
Yan Zhengd899e052008-10-30 14:25:28 -04008894 spin_unlock(&info->block_group_cache_lock);
8895
Josef Bacik80eb2342008-10-29 14:49:05 -04008896 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04008897 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04008898 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05008899
Josef Bacik817d52f2009-07-13 21:29:25 -04008900 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04008901 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04008902
Josef Bacik3c148742011-02-02 15:53:47 +00008903 /*
8904 * We haven't cached this block group, which means we could
8905 * possibly have excluded extents on this block group.
8906 */
Josef Bacik36cce922013-08-05 11:15:21 -04008907 if (block_group->cached == BTRFS_CACHE_NO ||
8908 block_group->cached == BTRFS_CACHE_ERROR)
Josef Bacik3c148742011-02-02 15:53:47 +00008909 free_excluded_extents(info->extent_root, block_group);
8910
Josef Bacik817d52f2009-07-13 21:29:25 -04008911 btrfs_remove_free_space_cache(block_group);
Josef Bacik11dfe352009-11-13 20:12:59 +00008912 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04008913
8914 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008915 }
8916 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -04008917
8918 /* now that all the block groups are freed, go through and
8919 * free all the space_info structs. This is only called during
8920 * the final stages of unmount, and so we know nobody is
8921 * using them. We call synchronize_rcu() once before we start,
8922 * just to be on the safe side.
8923 */
8924 synchronize_rcu();
8925
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04008926 release_global_block_rsv(info);
8927
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05308928 while (!list_empty(&info->space_info)) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008929 int i;
8930
Chris Mason4184ea72009-03-10 12:39:20 -04008931 space_info = list_entry(info->space_info.next,
8932 struct btrfs_space_info,
8933 list);
David Sterbab069e0c2013-02-08 21:28:17 +00008934 if (btrfs_test_opt(info->tree_root, ENOSPC_DEBUG)) {
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05308935 if (WARN_ON(space_info->bytes_pinned > 0 ||
David Sterbab069e0c2013-02-08 21:28:17 +00008936 space_info->bytes_reserved > 0 ||
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05308937 space_info->bytes_may_use > 0)) {
David Sterbab069e0c2013-02-08 21:28:17 +00008938 dump_space_info(space_info, 0, 0);
8939 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008940 }
Chris Mason4184ea72009-03-10 12:39:20 -04008941 list_del(&space_info->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008942 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
8943 struct kobject *kobj;
Jeff Mahoneyc1895442014-05-27 12:59:57 -04008944 kobj = space_info->block_group_kobjs[i];
8945 space_info->block_group_kobjs[i] = NULL;
8946 if (kobj) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008947 kobject_del(kobj);
8948 kobject_put(kobj);
8949 }
8950 }
8951 kobject_del(&space_info->kobj);
8952 kobject_put(&space_info->kobj);
Chris Mason4184ea72009-03-10 12:39:20 -04008953 }
Zheng Yan1a40e232008-09-26 10:09:34 -04008954 return 0;
8955}
8956
Yan, Zhengb742bb82010-05-16 10:46:24 -04008957static void __link_block_group(struct btrfs_space_info *space_info,
8958 struct btrfs_block_group_cache *cache)
8959{
8960 int index = get_block_group_index(cache);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -04008961 bool first = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04008962
8963 down_write(&space_info->groups_sem);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -04008964 if (list_empty(&space_info->block_groups[index]))
8965 first = true;
8966 list_add_tail(&cache->list, &space_info->block_groups[index]);
8967 up_write(&space_info->groups_sem);
8968
8969 if (first) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04008970 struct raid_kobject *rkobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008971 int ret;
8972
Jeff Mahoneyc1895442014-05-27 12:59:57 -04008973 rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS);
8974 if (!rkobj)
8975 goto out_err;
8976 rkobj->raid_type = index;
8977 kobject_init(&rkobj->kobj, &btrfs_raid_ktype);
8978 ret = kobject_add(&rkobj->kobj, &space_info->kobj,
8979 "%s", get_raid_name(index));
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008980 if (ret) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04008981 kobject_put(&rkobj->kobj);
8982 goto out_err;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008983 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -04008984 space_info->block_group_kobjs[index] = &rkobj->kobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008985 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -04008986
8987 return;
8988out_err:
8989 pr_warn("BTRFS: failed to add kobject for block cache. ignoring.\n");
Yan, Zhengb742bb82010-05-16 10:46:24 -04008990}
8991
Miao Xie920e4a52014-01-15 20:00:55 +08008992static struct btrfs_block_group_cache *
8993btrfs_create_block_group_cache(struct btrfs_root *root, u64 start, u64 size)
8994{
8995 struct btrfs_block_group_cache *cache;
8996
8997 cache = kzalloc(sizeof(*cache), GFP_NOFS);
8998 if (!cache)
8999 return NULL;
9000
9001 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
9002 GFP_NOFS);
9003 if (!cache->free_space_ctl) {
9004 kfree(cache);
9005 return NULL;
9006 }
9007
9008 cache->key.objectid = start;
9009 cache->key.offset = size;
9010 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
9011
9012 cache->sectorsize = root->sectorsize;
9013 cache->fs_info = root->fs_info;
9014 cache->full_stripe_len = btrfs_full_stripe_len(root,
9015 &root->fs_info->mapping_tree,
9016 start);
9017 atomic_set(&cache->count, 1);
9018 spin_lock_init(&cache->lock);
Miao Xiee570fd22014-06-19 10:42:50 +08009019 init_rwsem(&cache->data_rwsem);
Miao Xie920e4a52014-01-15 20:00:55 +08009020 INIT_LIST_HEAD(&cache->list);
9021 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009022 INIT_LIST_HEAD(&cache->bg_list);
Miao Xie920e4a52014-01-15 20:00:55 +08009023 btrfs_init_free_space_ctl(cache);
9024
9025 return cache;
9026}
9027
Chris Mason9078a3e2007-04-26 16:46:15 -04009028int btrfs_read_block_groups(struct btrfs_root *root)
9029{
9030 struct btrfs_path *path;
9031 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04009032 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04009033 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04009034 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04009035 struct btrfs_key key;
9036 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04009037 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -04009038 int need_clear = 0;
9039 u64 cache_gen;
Chris Mason96b51792007-10-15 16:15:19 -04009040
Chris Masonbe744172007-05-06 10:15:01 -04009041 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04009042 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04009043 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02009044 key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Chris Mason9078a3e2007-04-26 16:46:15 -04009045 path = btrfs_alloc_path();
9046 if (!path)
9047 return -ENOMEM;
Josef Bacik026fd312011-05-13 10:32:11 -04009048 path->reada = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04009049
David Sterba6c417612011-04-13 15:41:04 +02009050 cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
Josef Bacik73bc1872011-10-03 14:07:49 -04009051 if (btrfs_test_opt(root, SPACE_CACHE) &&
David Sterba6c417612011-04-13 15:41:04 +02009052 btrfs_super_generation(root->fs_info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -04009053 need_clear = 1;
Josef Bacik88c2ba32010-09-21 14:21:34 -04009054 if (btrfs_test_opt(root, CLEAR_CACHE))
9055 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -04009056
Chris Masond3977122009-01-05 21:25:51 -05009057 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04009058 ret = find_first_block_group(root, path, &key);
Yan, Zhengb742bb82010-05-16 10:46:24 -04009059 if (ret > 0)
9060 break;
Chris Mason0b86a832008-03-24 15:01:56 -04009061 if (ret != 0)
9062 goto error;
Miao Xie920e4a52014-01-15 20:00:55 +08009063
Chris Mason5f39d392007-10-15 16:14:19 -04009064 leaf = path->nodes[0];
9065 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Miao Xie920e4a52014-01-15 20:00:55 +08009066
9067 cache = btrfs_create_block_group_cache(root, found_key.objectid,
9068 found_key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04009069 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04009070 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009071 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04009072 }
Josef Bacik96303082009-07-13 21:29:25 -04009073
Liu Bocf7c1ef2012-07-06 03:31:34 -06009074 if (need_clear) {
9075 /*
9076 * When we mount with old space cache, we need to
9077 * set BTRFS_DC_CLEAR and set dirty flag.
9078 *
9079 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
9080 * truncate the old free space cache inode and
9081 * setup a new one.
9082 * b) Setting 'dirty flag' makes sure that we flush
9083 * the new space cache info onto disk.
9084 */
Josef Bacik0af3d002010-06-21 14:48:16 -04009085 cache->disk_cache_state = BTRFS_DC_CLEAR;
Liu Bocf7c1ef2012-07-06 03:31:34 -06009086 if (btrfs_test_opt(root, SPACE_CACHE))
9087 cache->dirty = 1;
9088 }
Josef Bacik0af3d002010-06-21 14:48:16 -04009089
Chris Mason5f39d392007-10-15 16:14:19 -04009090 read_extent_buffer(leaf, &cache->item,
9091 btrfs_item_ptr_offset(leaf, path->slots[0]),
9092 sizeof(cache->item));
Miao Xie920e4a52014-01-15 20:00:55 +08009093 cache->flags = btrfs_block_group_flags(&cache->item);
Chris Mason0b86a832008-03-24 15:01:56 -04009094
Chris Mason9078a3e2007-04-26 16:46:15 -04009095 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +02009096 btrfs_release_path(path);
Li Zefan34d52cb2011-03-29 13:46:06 +08009097
Josef Bacik817d52f2009-07-13 21:29:25 -04009098 /*
Josef Bacik3c148742011-02-02 15:53:47 +00009099 * We need to exclude the super stripes now so that the space
9100 * info has super bytes accounted for, otherwise we'll think
9101 * we have more space than we actually do.
9102 */
Josef Bacik835d9742013-03-19 12:13:25 -04009103 ret = exclude_super_stripes(root, cache);
9104 if (ret) {
9105 /*
9106 * We may have excluded something, so call this just in
9107 * case.
9108 */
9109 free_excluded_extents(root, cache);
Miao Xie920e4a52014-01-15 20:00:55 +08009110 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -04009111 goto error;
9112 }
Josef Bacik3c148742011-02-02 15:53:47 +00009113
9114 /*
Josef Bacik817d52f2009-07-13 21:29:25 -04009115 * check for two cases, either we are full, and therefore
9116 * don't need to bother with the caching work since we won't
9117 * find any space, or we are empty, and we can just add all
9118 * the space in and be done with it. This saves us _alot_ of
9119 * time, particularly in the full case.
9120 */
9121 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -04009122 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04009123 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik1b2da372009-09-11 16:11:20 -04009124 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04009125 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -04009126 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04009127 cache->cached = BTRFS_CACHE_FINISHED;
9128 add_new_free_space(cache, root->fs_info,
9129 found_key.objectid,
9130 found_key.objectid +
9131 found_key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -04009132 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04009133 }
Chris Mason96b51792007-10-15 16:15:19 -04009134
Josef Bacik8c579fe2013-04-02 12:40:42 -04009135 ret = btrfs_add_block_group_cache(root->fs_info, cache);
9136 if (ret) {
9137 btrfs_remove_free_space_cache(cache);
9138 btrfs_put_block_group(cache);
9139 goto error;
9140 }
9141
Chris Mason6324fbf2008-03-24 15:01:59 -04009142 ret = update_space_info(info, cache->flags, found_key.offset,
9143 btrfs_block_group_used(&cache->item),
9144 &space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -04009145 if (ret) {
9146 btrfs_remove_free_space_cache(cache);
9147 spin_lock(&info->block_group_cache_lock);
9148 rb_erase(&cache->cache_node,
9149 &info->block_group_cache_tree);
9150 spin_unlock(&info->block_group_cache_lock);
9151 btrfs_put_block_group(cache);
9152 goto error;
9153 }
9154
Chris Mason6324fbf2008-03-24 15:01:59 -04009155 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -04009156 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009157 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04009158 spin_unlock(&cache->space_info->lock);
9159
Yan, Zhengb742bb82010-05-16 10:46:24 -04009160 __link_block_group(space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04009161
Chris Mason75ccf472008-09-30 19:24:06 -04009162 set_avail_alloc_bits(root->fs_info, cache->flags);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009163 if (btrfs_chunk_readonly(root, cache->key.objectid)) {
Miao Xie199c36e2011-07-15 10:34:36 +00009164 set_block_group_ro(cache, 1);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009165 } else if (btrfs_block_group_used(&cache->item) == 0) {
9166 spin_lock(&info->unused_bgs_lock);
9167 /* Should always be true but just in case. */
9168 if (list_empty(&cache->bg_list)) {
9169 btrfs_get_block_group(cache);
9170 list_add_tail(&cache->bg_list,
9171 &info->unused_bgs);
9172 }
9173 spin_unlock(&info->unused_bgs_lock);
9174 }
Chris Mason9078a3e2007-04-26 16:46:15 -04009175 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04009176
9177 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
9178 if (!(get_alloc_profile(root, space_info->flags) &
9179 (BTRFS_BLOCK_GROUP_RAID10 |
9180 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05009181 BTRFS_BLOCK_GROUP_RAID5 |
9182 BTRFS_BLOCK_GROUP_RAID6 |
Yan, Zhengb742bb82010-05-16 10:46:24 -04009183 BTRFS_BLOCK_GROUP_DUP)))
9184 continue;
9185 /*
9186 * avoid allocating from un-mirrored block group if there are
9187 * mirrored block groups.
9188 */
chandan1095cc02013-07-16 12:28:56 +05309189 list_for_each_entry(cache,
9190 &space_info->block_groups[BTRFS_RAID_RAID0],
9191 list)
Miao Xie199c36e2011-07-15 10:34:36 +00009192 set_block_group_ro(cache, 1);
chandan1095cc02013-07-16 12:28:56 +05309193 list_for_each_entry(cache,
9194 &space_info->block_groups[BTRFS_RAID_SINGLE],
9195 list)
Miao Xie199c36e2011-07-15 10:34:36 +00009196 set_block_group_ro(cache, 1);
Yan, Zhengb742bb82010-05-16 10:46:24 -04009197 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009198
9199 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -04009200 ret = 0;
9201error:
Chris Mason9078a3e2007-04-26 16:46:15 -04009202 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04009203 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04009204}
Chris Mason6324fbf2008-03-24 15:01:59 -04009205
Josef Bacikea658ba2012-09-11 16:57:25 -04009206void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans,
9207 struct btrfs_root *root)
9208{
9209 struct btrfs_block_group_cache *block_group, *tmp;
9210 struct btrfs_root *extent_root = root->fs_info->extent_root;
9211 struct btrfs_block_group_item item;
9212 struct btrfs_key key;
9213 int ret = 0;
9214
Josef Bacik47ab2a62014-09-18 11:20:02 -04009215 list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) {
9216 list_del_init(&block_group->bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -04009217 if (ret)
9218 continue;
9219
9220 spin_lock(&block_group->lock);
9221 memcpy(&item, &block_group->item, sizeof(item));
9222 memcpy(&key, &block_group->key, sizeof(key));
9223 spin_unlock(&block_group->lock);
9224
9225 ret = btrfs_insert_item(trans, extent_root, &key, &item,
9226 sizeof(item));
9227 if (ret)
9228 btrfs_abort_transaction(trans, extent_root, ret);
Josef Bacik6df9a952013-06-27 13:22:46 -04009229 ret = btrfs_finish_chunk_alloc(trans, extent_root,
9230 key.objectid, key.offset);
9231 if (ret)
9232 btrfs_abort_transaction(trans, extent_root, ret);
Josef Bacikea658ba2012-09-11 16:57:25 -04009233 }
9234}
9235
Chris Mason6324fbf2008-03-24 15:01:59 -04009236int btrfs_make_block_group(struct btrfs_trans_handle *trans,
9237 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04009238 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04009239 u64 size)
9240{
9241 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04009242 struct btrfs_root *extent_root;
9243 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -04009244
9245 extent_root = root->fs_info->extent_root;
Chris Mason6324fbf2008-03-24 15:01:59 -04009246
Miao Xie995946d2014-04-02 19:51:06 +08009247 btrfs_set_log_full_commit(root->fs_info, trans);
Chris Masone02119d2008-09-05 16:13:11 -04009248
Miao Xie920e4a52014-01-15 20:00:55 +08009249 cache = btrfs_create_block_group_cache(root, chunk_offset, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -04009250 if (!cache)
9251 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +08009252
Chris Mason6324fbf2008-03-24 15:01:59 -04009253 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04009254 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
Chris Mason6324fbf2008-03-24 15:01:59 -04009255 btrfs_set_block_group_flags(&cache->item, type);
9256
Miao Xie920e4a52014-01-15 20:00:55 +08009257 cache->flags = type;
Yan Zheng11833d62009-09-11 16:11:19 -04009258 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04009259 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik835d9742013-03-19 12:13:25 -04009260 ret = exclude_super_stripes(root, cache);
9261 if (ret) {
9262 /*
9263 * We may have excluded something, so call this just in
9264 * case.
9265 */
9266 free_excluded_extents(root, cache);
Miao Xie920e4a52014-01-15 20:00:55 +08009267 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -04009268 return ret;
9269 }
Josef Bacik96303082009-07-13 21:29:25 -04009270
Josef Bacik817d52f2009-07-13 21:29:25 -04009271 add_new_free_space(cache, root->fs_info, chunk_offset,
9272 chunk_offset + size);
9273
Yan Zheng11833d62009-09-11 16:11:19 -04009274 free_excluded_extents(root, cache);
9275
Josef Bacik8c579fe2013-04-02 12:40:42 -04009276 ret = btrfs_add_block_group_cache(root->fs_info, cache);
9277 if (ret) {
9278 btrfs_remove_free_space_cache(cache);
9279 btrfs_put_block_group(cache);
9280 return ret;
9281 }
9282
Chris Mason6324fbf2008-03-24 15:01:59 -04009283 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
9284 &cache->space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -04009285 if (ret) {
9286 btrfs_remove_free_space_cache(cache);
9287 spin_lock(&root->fs_info->block_group_cache_lock);
9288 rb_erase(&cache->cache_node,
9289 &root->fs_info->block_group_cache_tree);
9290 spin_unlock(&root->fs_info->block_group_cache_lock);
9291 btrfs_put_block_group(cache);
9292 return ret;
9293 }
Li Zefanc7c144d2011-12-07 10:39:22 +08009294 update_global_block_rsv(root->fs_info);
Josef Bacik1b2da372009-09-11 16:11:20 -04009295
9296 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009297 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04009298 spin_unlock(&cache->space_info->lock);
9299
Yan, Zhengb742bb82010-05-16 10:46:24 -04009300 __link_block_group(cache->space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04009301
Josef Bacik47ab2a62014-09-18 11:20:02 -04009302 list_add_tail(&cache->bg_list, &trans->new_bgs);
Chris Mason6324fbf2008-03-24 15:01:59 -04009303
Chris Masond18a2c42008-04-04 15:40:00 -04009304 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason925baed2008-06-25 16:01:30 -04009305
Chris Mason6324fbf2008-03-24 15:01:59 -04009306 return 0;
9307}
Zheng Yan1a40e232008-09-26 10:09:34 -04009308
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009309static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
9310{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03009311 u64 extra_flags = chunk_to_extended(flags) &
9312 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009313
Miao Xiede98ced2013-01-29 10:13:12 +00009314 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009315 if (flags & BTRFS_BLOCK_GROUP_DATA)
9316 fs_info->avail_data_alloc_bits &= ~extra_flags;
9317 if (flags & BTRFS_BLOCK_GROUP_METADATA)
9318 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
9319 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
9320 fs_info->avail_system_alloc_bits &= ~extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00009321 write_sequnlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009322}
9323
Zheng Yan1a40e232008-09-26 10:09:34 -04009324int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
9325 struct btrfs_root *root, u64 group_start)
9326{
9327 struct btrfs_path *path;
9328 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -04009329 struct btrfs_free_cluster *cluster;
Josef Bacik0af3d002010-06-21 14:48:16 -04009330 struct btrfs_root *tree_root = root->fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -04009331 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -04009332 struct inode *inode;
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009333 struct kobject *kobj = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -04009334 int ret;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009335 int index;
Josef Bacik89a55892010-10-14 14:52:27 -04009336 int factor;
Zheng Yan1a40e232008-09-26 10:09:34 -04009337
Zheng Yan1a40e232008-09-26 10:09:34 -04009338 root = root->fs_info->extent_root;
9339
9340 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
9341 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -05009342 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -04009343
liubo9f7c43c2011-03-07 02:13:33 +00009344 /*
9345 * Free the reserved super bytes from this block group before
9346 * remove it.
9347 */
9348 free_excluded_extents(root, block_group);
9349
Zheng Yan1a40e232008-09-26 10:09:34 -04009350 memcpy(&key, &block_group->key, sizeof(key));
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009351 index = get_block_group_index(block_group);
Josef Bacik89a55892010-10-14 14:52:27 -04009352 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
9353 BTRFS_BLOCK_GROUP_RAID1 |
9354 BTRFS_BLOCK_GROUP_RAID10))
9355 factor = 2;
9356 else
9357 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04009358
Chris Mason44fb5512009-06-04 15:34:51 -04009359 /* make sure this block group isn't part of an allocation cluster */
9360 cluster = &root->fs_info->data_alloc_cluster;
9361 spin_lock(&cluster->refill_lock);
9362 btrfs_return_cluster_to_free_space(block_group, cluster);
9363 spin_unlock(&cluster->refill_lock);
9364
9365 /*
9366 * make sure this block group isn't part of a metadata
9367 * allocation cluster
9368 */
9369 cluster = &root->fs_info->meta_alloc_cluster;
9370 spin_lock(&cluster->refill_lock);
9371 btrfs_return_cluster_to_free_space(block_group, cluster);
9372 spin_unlock(&cluster->refill_lock);
9373
Zheng Yan1a40e232008-09-26 10:09:34 -04009374 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07009375 if (!path) {
9376 ret = -ENOMEM;
9377 goto out;
9378 }
Zheng Yan1a40e232008-09-26 10:09:34 -04009379
Ilya Dryomov10b2f342011-10-02 13:56:53 +03009380 inode = lookup_free_space_inode(tree_root, block_group, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04009381 if (!IS_ERR(inode)) {
Tsutomu Itohb5324022011-07-19 07:27:20 +00009382 ret = btrfs_orphan_add(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009383 if (ret) {
9384 btrfs_add_delayed_iput(inode);
9385 goto out;
9386 }
Josef Bacik0af3d002010-06-21 14:48:16 -04009387 clear_nlink(inode);
9388 /* One for the block groups ref */
9389 spin_lock(&block_group->lock);
9390 if (block_group->iref) {
9391 block_group->iref = 0;
9392 block_group->inode = NULL;
9393 spin_unlock(&block_group->lock);
9394 iput(inode);
9395 } else {
9396 spin_unlock(&block_group->lock);
9397 }
9398 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -04009399 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04009400 }
9401
9402 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
9403 key.offset = block_group->key.objectid;
9404 key.type = 0;
9405
9406 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
9407 if (ret < 0)
9408 goto out;
9409 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +02009410 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04009411 if (ret == 0) {
9412 ret = btrfs_del_item(trans, tree_root, path);
9413 if (ret)
9414 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02009415 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04009416 }
9417
Yan Zheng3dfdb932009-01-21 10:49:16 -05009418 spin_lock(&root->fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009419 rb_erase(&block_group->cache_node,
9420 &root->fs_info->block_group_cache_tree);
Liu Boa1897fd2012-12-27 09:01:23 +00009421
9422 if (root->fs_info->first_logical_byte == block_group->key.objectid)
9423 root->fs_info->first_logical_byte = (u64)-1;
Yan Zheng3dfdb932009-01-21 10:49:16 -05009424 spin_unlock(&root->fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04009425
Josef Bacik80eb2342008-10-29 14:49:05 -04009426 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04009427 /*
9428 * we must use list_del_init so people can check to see if they
9429 * are still on the list after taking the semaphore
9430 */
9431 list_del_init(&block_group->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009432 if (list_empty(&block_group->space_info->block_groups[index])) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009433 kobj = block_group->space_info->block_group_kobjs[index];
9434 block_group->space_info->block_group_kobjs[index] = NULL;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009435 clear_avail_alloc_bits(root->fs_info, block_group->flags);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009436 }
Josef Bacik80eb2342008-10-29 14:49:05 -04009437 up_write(&block_group->space_info->groups_sem);
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009438 if (kobj) {
9439 kobject_del(kobj);
9440 kobject_put(kobj);
9441 }
Zheng Yan1a40e232008-09-26 10:09:34 -04009442
Josef Bacik817d52f2009-07-13 21:29:25 -04009443 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04009444 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04009445
9446 btrfs_remove_free_space_cache(block_group);
9447
Yan Zhengc146afa2008-11-12 14:34:12 -05009448 spin_lock(&block_group->space_info->lock);
9449 block_group->space_info->total_bytes -= block_group->key.offset;
9450 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -04009451 block_group->space_info->disk_total -= block_group->key.offset * factor;
Yan Zhengc146afa2008-11-12 14:34:12 -05009452 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -04009453
Josef Bacik0af3d002010-06-21 14:48:16 -04009454 memcpy(&key, &block_group->key, sizeof(key));
9455
Chris Masonfa9c0d792009-04-03 09:47:43 -04009456 btrfs_put_block_group(block_group);
9457 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -04009458
9459 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
9460 if (ret > 0)
9461 ret = -EIO;
9462 if (ret < 0)
9463 goto out;
9464
9465 ret = btrfs_del_item(trans, root, path);
9466out:
9467 btrfs_free_path(path);
9468 return ret;
9469}
liuboacce9522011-01-06 19:30:25 +08009470
Josef Bacik47ab2a62014-09-18 11:20:02 -04009471/*
9472 * Process the unused_bgs list and remove any that don't have any allocated
9473 * space inside of them.
9474 */
9475void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info)
9476{
9477 struct btrfs_block_group_cache *block_group;
9478 struct btrfs_space_info *space_info;
9479 struct btrfs_root *root = fs_info->extent_root;
9480 struct btrfs_trans_handle *trans;
9481 int ret = 0;
9482
9483 if (!fs_info->open)
9484 return;
9485
9486 spin_lock(&fs_info->unused_bgs_lock);
9487 while (!list_empty(&fs_info->unused_bgs)) {
9488 u64 start, end;
9489
9490 block_group = list_first_entry(&fs_info->unused_bgs,
9491 struct btrfs_block_group_cache,
9492 bg_list);
9493 space_info = block_group->space_info;
9494 list_del_init(&block_group->bg_list);
9495 if (ret || btrfs_mixed_space_info(space_info)) {
9496 btrfs_put_block_group(block_group);
9497 continue;
9498 }
9499 spin_unlock(&fs_info->unused_bgs_lock);
9500
9501 /* Don't want to race with allocators so take the groups_sem */
9502 down_write(&space_info->groups_sem);
9503 spin_lock(&block_group->lock);
9504 if (block_group->reserved ||
9505 btrfs_block_group_used(&block_group->item) ||
9506 block_group->ro) {
9507 /*
9508 * We want to bail if we made new allocations or have
9509 * outstanding allocations in this block group. We do
9510 * the ro check in case balance is currently acting on
9511 * this block group.
9512 */
9513 spin_unlock(&block_group->lock);
9514 up_write(&space_info->groups_sem);
9515 goto next;
9516 }
9517 spin_unlock(&block_group->lock);
9518
9519 /* We don't want to force the issue, only flip if it's ok. */
9520 ret = set_block_group_ro(block_group, 0);
9521 up_write(&space_info->groups_sem);
9522 if (ret < 0) {
9523 ret = 0;
9524 goto next;
9525 }
9526
9527 /*
9528 * Want to do this before we do anything else so we can recover
9529 * properly if we fail to join the transaction.
9530 */
9531 trans = btrfs_join_transaction(root);
9532 if (IS_ERR(trans)) {
9533 btrfs_set_block_group_rw(root, block_group);
9534 ret = PTR_ERR(trans);
9535 goto next;
9536 }
9537
9538 /*
9539 * We could have pending pinned extents for this block group,
9540 * just delete them, we don't care about them anymore.
9541 */
9542 start = block_group->key.objectid;
9543 end = start + block_group->key.offset - 1;
9544 clear_extent_bits(&fs_info->freed_extents[0], start, end,
9545 EXTENT_DIRTY, GFP_NOFS);
9546 clear_extent_bits(&fs_info->freed_extents[1], start, end,
9547 EXTENT_DIRTY, GFP_NOFS);
9548
9549 /* Reset pinned so btrfs_put_block_group doesn't complain */
9550 block_group->pinned = 0;
9551
9552 /*
9553 * Btrfs_remove_chunk will abort the transaction if things go
9554 * horribly wrong.
9555 */
9556 ret = btrfs_remove_chunk(trans, root,
9557 block_group->key.objectid);
9558 btrfs_end_transaction(trans, root);
9559next:
9560 btrfs_put_block_group(block_group);
9561 spin_lock(&fs_info->unused_bgs_lock);
9562 }
9563 spin_unlock(&fs_info->unused_bgs_lock);
9564}
9565
liuboc59021f2011-03-07 02:13:14 +00009566int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
9567{
9568 struct btrfs_space_info *space_info;
liubo1aba86d2011-04-08 08:44:37 +00009569 struct btrfs_super_block *disk_super;
9570 u64 features;
9571 u64 flags;
9572 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +00009573 int ret;
9574
David Sterba6c417612011-04-13 15:41:04 +02009575 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +00009576 if (!btrfs_super_root(disk_super))
9577 return 1;
liuboc59021f2011-03-07 02:13:14 +00009578
liubo1aba86d2011-04-08 08:44:37 +00009579 features = btrfs_super_incompat_flags(disk_super);
9580 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
9581 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +00009582
liubo1aba86d2011-04-08 08:44:37 +00009583 flags = BTRFS_BLOCK_GROUP_SYSTEM;
9584 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
liuboc59021f2011-03-07 02:13:14 +00009585 if (ret)
liubo1aba86d2011-04-08 08:44:37 +00009586 goto out;
liuboc59021f2011-03-07 02:13:14 +00009587
liubo1aba86d2011-04-08 08:44:37 +00009588 if (mixed) {
9589 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
9590 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
9591 } else {
9592 flags = BTRFS_BLOCK_GROUP_METADATA;
9593 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
9594 if (ret)
9595 goto out;
9596
9597 flags = BTRFS_BLOCK_GROUP_DATA;
9598 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
9599 }
9600out:
liuboc59021f2011-03-07 02:13:14 +00009601 return ret;
9602}
9603
liuboacce9522011-01-06 19:30:25 +08009604int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
9605{
9606 return unpin_extent_range(root, start, end);
9607}
9608
9609int btrfs_error_discard_extent(struct btrfs_root *root, u64 bytenr,
Li Dongyang5378e602011-03-24 10:24:27 +00009610 u64 num_bytes, u64 *actual_bytes)
liuboacce9522011-01-06 19:30:25 +08009611{
Li Dongyang5378e602011-03-24 10:24:27 +00009612 return btrfs_discard_extent(root, bytenr, num_bytes, actual_bytes);
liuboacce9522011-01-06 19:30:25 +08009613}
Li Dongyangf7039b12011-03-24 10:24:28 +00009614
9615int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range)
9616{
9617 struct btrfs_fs_info *fs_info = root->fs_info;
9618 struct btrfs_block_group_cache *cache = NULL;
9619 u64 group_trimmed;
9620 u64 start;
9621 u64 end;
9622 u64 trimmed = 0;
Liu Bo2cac13e2012-02-09 18:17:41 +08009623 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +00009624 int ret = 0;
9625
Liu Bo2cac13e2012-02-09 18:17:41 +08009626 /*
9627 * try to trim all FS space, our block group may start from non-zero.
9628 */
9629 if (range->len == total_bytes)
9630 cache = btrfs_lookup_first_block_group(fs_info, range->start);
9631 else
9632 cache = btrfs_lookup_block_group(fs_info, range->start);
Li Dongyangf7039b12011-03-24 10:24:28 +00009633
9634 while (cache) {
9635 if (cache->key.objectid >= (range->start + range->len)) {
9636 btrfs_put_block_group(cache);
9637 break;
9638 }
9639
9640 start = max(range->start, cache->key.objectid);
9641 end = min(range->start + range->len,
9642 cache->key.objectid + cache->key.offset);
9643
9644 if (end - start >= range->minlen) {
9645 if (!block_group_cache_done(cache)) {
Liu Bof6373bf2012-12-27 09:01:18 +00009646 ret = cache_block_group(cache, 0);
Josef Bacik1be41b72013-06-12 13:56:06 -04009647 if (ret) {
9648 btrfs_put_block_group(cache);
9649 break;
9650 }
9651 ret = wait_block_group_cache_done(cache);
9652 if (ret) {
9653 btrfs_put_block_group(cache);
9654 break;
9655 }
Li Dongyangf7039b12011-03-24 10:24:28 +00009656 }
9657 ret = btrfs_trim_block_group(cache,
9658 &group_trimmed,
9659 start,
9660 end,
9661 range->minlen);
9662
9663 trimmed += group_trimmed;
9664 if (ret) {
9665 btrfs_put_block_group(cache);
9666 break;
9667 }
9668 }
9669
9670 cache = next_block_group(fs_info->tree_root, cache);
9671 }
9672
9673 range->len = trimmed;
9674 return ret;
9675}
Miao Xie8257b2d2014-03-06 13:38:19 +08009676
9677/*
9678 * btrfs_{start,end}_write() is similar to mnt_{want, drop}_write(),
9679 * they are used to prevent the some tasks writing data into the page cache
9680 * by nocow before the subvolume is snapshoted, but flush the data into
9681 * the disk after the snapshot creation.
9682 */
9683void btrfs_end_nocow_write(struct btrfs_root *root)
9684{
9685 percpu_counter_dec(&root->subv_writers->counter);
9686 /*
9687 * Make sure counter is updated before we wake up
9688 * waiters.
9689 */
9690 smp_mb();
9691 if (waitqueue_active(&root->subv_writers->wait))
9692 wake_up(&root->subv_writers->wait);
9693}
9694
9695int btrfs_start_nocow_write(struct btrfs_root *root)
9696{
9697 if (unlikely(atomic_read(&root->will_be_snapshoted)))
9698 return 0;
9699
9700 percpu_counter_inc(&root->subv_writers->counter);
9701 /*
9702 * Make sure counter is updated before we check for snapshot creation.
9703 */
9704 smp_mb();
9705 if (unlikely(atomic_read(&root->will_be_snapshoted))) {
9706 btrfs_end_nocow_write(root);
9707 return 0;
9708 }
9709 return 1;
9710}