blob: 8ff31f81d870fe8303044c261857044f7c75af9c [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);
Josef Bacikdde5abe2010-09-16 16:17:03 -0400318 if (!cache->caching_ctl) {
319 spin_unlock(&cache->lock);
320 return NULL;
321 }
322
Yan Zheng11833d62009-09-11 16:11:19 -0400323 ctl = cache->caching_ctl;
324 atomic_inc(&ctl->count);
325 spin_unlock(&cache->lock);
326 return ctl;
327}
328
329static void put_caching_control(struct btrfs_caching_control *ctl)
330{
331 if (atomic_dec_and_test(&ctl->count))
332 kfree(ctl);
333}
334
Josef Bacik0f9dd462008-09-23 13:14:11 -0400335/*
336 * this is only called by cache_block_group, since we could have freed extents
337 * we need to check the pinned_extents for any extents that can't be used yet
338 * since their free space will be released as soon as the transaction commits.
339 */
Josef Bacik817d52f2009-07-13 21:29:25 -0400340static u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400341 struct btrfs_fs_info *info, u64 start, u64 end)
342{
Josef Bacik817d52f2009-07-13 21:29:25 -0400343 u64 extent_start, extent_end, size, total_added = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400344 int ret;
345
346 while (start < end) {
Yan Zheng11833d62009-09-11 16:11:19 -0400347 ret = find_first_extent_bit(info->pinned_extents, start,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400348 &extent_start, &extent_end,
Josef Bacike6138872012-09-27 17:07:30 -0400349 EXTENT_DIRTY | EXTENT_UPTODATE,
350 NULL);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400351 if (ret)
352 break;
353
Yan, Zheng06b23312009-11-26 09:31:11 +0000354 if (extent_start <= start) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400355 start = extent_end + 1;
356 } else if (extent_start > start && extent_start < end) {
357 size = extent_start - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400358 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500359 ret = btrfs_add_free_space(block_group, start,
360 size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100361 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400362 start = extent_end + 1;
363 } else {
364 break;
365 }
366 }
367
368 if (start < end) {
369 size = end - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400370 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500371 ret = btrfs_add_free_space(block_group, start, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100372 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400373 }
374
Josef Bacik817d52f2009-07-13 21:29:25 -0400375 return total_added;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400376}
377
Qu Wenruod458b052014-02-28 10:46:19 +0800378static noinline void caching_thread(struct btrfs_work *work)
Chris Masone37c9e62007-05-09 20:13:14 -0400379{
Josef Bacikbab39bf2011-06-30 14:42:28 -0400380 struct btrfs_block_group_cache *block_group;
381 struct btrfs_fs_info *fs_info;
382 struct btrfs_caching_control *caching_ctl;
383 struct btrfs_root *extent_root;
Chris Masone37c9e62007-05-09 20:13:14 -0400384 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400385 struct extent_buffer *leaf;
Yan Zheng11833d62009-09-11 16:11:19 -0400386 struct btrfs_key key;
Josef Bacik817d52f2009-07-13 21:29:25 -0400387 u64 total_found = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400388 u64 last = 0;
389 u32 nritems;
Josef Bacik36cce922013-08-05 11:15:21 -0400390 int ret = -ENOMEM;
Chris Masonf510cfe2007-10-15 16:14:48 -0400391
Josef Bacikbab39bf2011-06-30 14:42:28 -0400392 caching_ctl = container_of(work, struct btrfs_caching_control, work);
393 block_group = caching_ctl->block_group;
394 fs_info = block_group->fs_info;
395 extent_root = fs_info->extent_root;
396
Chris Masone37c9e62007-05-09 20:13:14 -0400397 path = btrfs_alloc_path();
398 if (!path)
Josef Bacikbab39bf2011-06-30 14:42:28 -0400399 goto out;
Yan7d7d6062007-09-14 16:15:28 -0400400
Josef Bacik817d52f2009-07-13 21:29:25 -0400401 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
Yan Zheng11833d62009-09-11 16:11:19 -0400402
Chris Mason5cd57b22008-06-25 16:01:30 -0400403 /*
Josef Bacik817d52f2009-07-13 21:29:25 -0400404 * We don't want to deadlock with somebody trying to allocate a new
405 * extent for the extent root while also trying to search the extent
406 * root to add free space. So we skip locking and search the commit
407 * root, since its read-only
Chris Mason5cd57b22008-06-25 16:01:30 -0400408 */
409 path->skip_locking = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400410 path->search_commit_root = 1;
Josef Bacik026fd312011-05-13 10:32:11 -0400411 path->reada = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400412
Yan Zhenge4404d62008-12-12 10:03:26 -0500413 key.objectid = last;
Chris Masone37c9e62007-05-09 20:13:14 -0400414 key.offset = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400415 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason013f1b12009-07-31 14:57:55 -0400416again:
Yan Zheng11833d62009-09-11 16:11:19 -0400417 mutex_lock(&caching_ctl->mutex);
Chris Mason013f1b12009-07-31 14:57:55 -0400418 /* need to make sure the commit_root doesn't disappear */
Josef Bacik9e351cc2014-03-13 15:42:13 -0400419 down_read(&fs_info->commit_root_sem);
Chris Mason013f1b12009-07-31 14:57:55 -0400420
Liu Bo52ee28d2013-07-11 17:51:15 +0800421next:
Yan Zheng11833d62009-09-11 16:11:19 -0400422 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
Chris Masone37c9e62007-05-09 20:13:14 -0400423 if (ret < 0)
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400424 goto err;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500425
Yan Zheng11833d62009-09-11 16:11:19 -0400426 leaf = path->nodes[0];
427 nritems = btrfs_header_nritems(leaf);
428
Chris Masond3977122009-01-05 21:25:51 -0500429 while (1) {
David Sterba7841cb22011-05-31 18:07:27 +0200430 if (btrfs_fs_closing(fs_info) > 1) {
Yan Zhengf25784b2009-07-28 08:41:57 -0400431 last = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400432 break;
Yan Zhengf25784b2009-07-28 08:41:57 -0400433 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400434
Yan Zheng11833d62009-09-11 16:11:19 -0400435 if (path->slots[0] < nritems) {
436 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
437 } else {
438 ret = find_next_key(path, 0, &key);
439 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -0400440 break;
Josef Bacik817d52f2009-07-13 21:29:25 -0400441
Josef Bacikc9ea7b22013-09-19 10:02:11 -0400442 if (need_resched() ||
Josef Bacik9e351cc2014-03-13 15:42:13 -0400443 rwsem_is_contended(&fs_info->commit_root_sem)) {
Josef Bacik589d8ad2011-05-11 17:30:53 -0400444 caching_ctl->progress = last;
Chris Masonff5714c2011-05-28 07:00:39 -0400445 btrfs_release_path(path);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400446 up_read(&fs_info->commit_root_sem);
Josef Bacik589d8ad2011-05-11 17:30:53 -0400447 mutex_unlock(&caching_ctl->mutex);
Yan Zheng11833d62009-09-11 16:11:19 -0400448 cond_resched();
Josef Bacik589d8ad2011-05-11 17:30:53 -0400449 goto again;
450 }
Josef Bacik0a3896d2013-04-19 14:37:26 -0400451
452 ret = btrfs_next_leaf(extent_root, path);
453 if (ret < 0)
454 goto err;
455 if (ret)
456 break;
Josef Bacik589d8ad2011-05-11 17:30:53 -0400457 leaf = path->nodes[0];
458 nritems = btrfs_header_nritems(leaf);
459 continue;
Yan Zheng11833d62009-09-11 16:11:19 -0400460 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400461
Liu Bo52ee28d2013-07-11 17:51:15 +0800462 if (key.objectid < last) {
463 key.objectid = last;
464 key.offset = 0;
465 key.type = BTRFS_EXTENT_ITEM_KEY;
466
467 caching_ctl->progress = last;
468 btrfs_release_path(path);
469 goto next;
470 }
471
Yan Zheng11833d62009-09-11 16:11:19 -0400472 if (key.objectid < block_group->key.objectid) {
473 path->slots[0]++;
Josef Bacik817d52f2009-07-13 21:29:25 -0400474 continue;
Chris Masone37c9e62007-05-09 20:13:14 -0400475 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400476
Chris Masone37c9e62007-05-09 20:13:14 -0400477 if (key.objectid >= block_group->key.objectid +
Josef Bacik0f9dd462008-09-23 13:14:11 -0400478 block_group->key.offset)
Yan7d7d6062007-09-14 16:15:28 -0400479 break;
Yan7d7d6062007-09-14 16:15:28 -0400480
Josef Bacik3173a182013-03-07 14:22:04 -0500481 if (key.type == BTRFS_EXTENT_ITEM_KEY ||
482 key.type == BTRFS_METADATA_ITEM_KEY) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400483 total_found += add_new_free_space(block_group,
484 fs_info, last,
485 key.objectid);
Josef Bacik3173a182013-03-07 14:22:04 -0500486 if (key.type == BTRFS_METADATA_ITEM_KEY)
487 last = key.objectid +
David Sterba707e8a02014-06-04 19:22:26 +0200488 fs_info->tree_root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500489 else
490 last = key.objectid + key.offset;
Josef Bacik817d52f2009-07-13 21:29:25 -0400491
Yan Zheng11833d62009-09-11 16:11:19 -0400492 if (total_found > (1024 * 1024 * 2)) {
493 total_found = 0;
494 wake_up(&caching_ctl->wait);
495 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400496 }
Chris Masone37c9e62007-05-09 20:13:14 -0400497 path->slots[0]++;
498 }
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400499 ret = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400500
501 total_found += add_new_free_space(block_group, fs_info, last,
502 block_group->key.objectid +
503 block_group->key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -0400504 caching_ctl->progress = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400505
506 spin_lock(&block_group->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400507 block_group->caching_ctl = NULL;
Josef Bacik817d52f2009-07-13 21:29:25 -0400508 block_group->cached = BTRFS_CACHE_FINISHED;
509 spin_unlock(&block_group->lock);
510
Chris Mason54aa1f42007-06-22 14:16:25 -0400511err:
Chris Masone37c9e62007-05-09 20:13:14 -0400512 btrfs_free_path(path);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400513 up_read(&fs_info->commit_root_sem);
Josef Bacik817d52f2009-07-13 21:29:25 -0400514
Yan Zheng11833d62009-09-11 16:11:19 -0400515 free_excluded_extents(extent_root, block_group);
516
517 mutex_unlock(&caching_ctl->mutex);
Josef Bacikbab39bf2011-06-30 14:42:28 -0400518out:
Josef Bacik36cce922013-08-05 11:15:21 -0400519 if (ret) {
520 spin_lock(&block_group->lock);
521 block_group->caching_ctl = NULL;
522 block_group->cached = BTRFS_CACHE_ERROR;
523 spin_unlock(&block_group->lock);
524 }
Yan Zheng11833d62009-09-11 16:11:19 -0400525 wake_up(&caching_ctl->wait);
526
527 put_caching_control(caching_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000528 btrfs_put_block_group(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -0400529}
530
Josef Bacik9d66e232010-08-25 16:54:15 -0400531static int cache_block_group(struct btrfs_block_group_cache *cache,
Josef Bacik9d66e232010-08-25 16:54:15 -0400532 int load_cache_only)
Josef Bacik817d52f2009-07-13 21:29:25 -0400533{
Josef Bacik291c7d22011-11-14 13:52:14 -0500534 DEFINE_WAIT(wait);
Yan Zheng11833d62009-09-11 16:11:19 -0400535 struct btrfs_fs_info *fs_info = cache->fs_info;
536 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400537 int ret = 0;
538
Josef Bacik291c7d22011-11-14 13:52:14 -0500539 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100540 if (!caching_ctl)
541 return -ENOMEM;
Josef Bacik291c7d22011-11-14 13:52:14 -0500542
543 INIT_LIST_HEAD(&caching_ctl->list);
544 mutex_init(&caching_ctl->mutex);
545 init_waitqueue_head(&caching_ctl->wait);
546 caching_ctl->block_group = cache;
547 caching_ctl->progress = cache->key.objectid;
548 atomic_set(&caching_ctl->count, 1);
Liu Bo9e0af232014-08-15 23:36:53 +0800549 btrfs_init_work(&caching_ctl->work, btrfs_cache_helper,
550 caching_thread, NULL, NULL);
Josef Bacik291c7d22011-11-14 13:52:14 -0500551
552 spin_lock(&cache->lock);
553 /*
554 * This should be a rare occasion, but this could happen I think in the
555 * case where one thread starts to load the space cache info, and then
556 * some other thread starts a transaction commit which tries to do an
557 * allocation while the other thread is still loading the space cache
558 * info. The previous loop should have kept us from choosing this block
559 * group, but if we've moved to the state where we will wait on caching
560 * block groups we need to first check if we're doing a fast load here,
561 * so we can wait for it to finish, otherwise we could end up allocating
562 * from a block group who's cache gets evicted for one reason or
563 * another.
564 */
565 while (cache->cached == BTRFS_CACHE_FAST) {
566 struct btrfs_caching_control *ctl;
567
568 ctl = cache->caching_ctl;
569 atomic_inc(&ctl->count);
570 prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE);
571 spin_unlock(&cache->lock);
572
573 schedule();
574
575 finish_wait(&ctl->wait, &wait);
576 put_caching_control(ctl);
577 spin_lock(&cache->lock);
578 }
579
580 if (cache->cached != BTRFS_CACHE_NO) {
581 spin_unlock(&cache->lock);
582 kfree(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400583 return 0;
Josef Bacik291c7d22011-11-14 13:52:14 -0500584 }
585 WARN_ON(cache->caching_ctl);
586 cache->caching_ctl = caching_ctl;
587 cache->cached = BTRFS_CACHE_FAST;
588 spin_unlock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400589
Josef Bacikd53ba472012-04-12 16:03:57 -0400590 if (fs_info->mount_opt & BTRFS_MOUNT_SPACE_CACHE) {
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500591 mutex_lock(&caching_ctl->mutex);
Josef Bacik9d66e232010-08-25 16:54:15 -0400592 ret = load_free_space_cache(fs_info, cache);
593
594 spin_lock(&cache->lock);
595 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500596 cache->caching_ctl = NULL;
Josef Bacik9d66e232010-08-25 16:54:15 -0400597 cache->cached = BTRFS_CACHE_FINISHED;
598 cache->last_byte_to_unpin = (u64)-1;
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500599 caching_ctl->progress = (u64)-1;
Josef Bacik9d66e232010-08-25 16:54:15 -0400600 } else {
Josef Bacik291c7d22011-11-14 13:52:14 -0500601 if (load_cache_only) {
602 cache->caching_ctl = NULL;
603 cache->cached = BTRFS_CACHE_NO;
604 } else {
605 cache->cached = BTRFS_CACHE_STARTED;
Filipe Manana4f69cb92014-11-26 15:28:51 +0000606 cache->has_caching_ctl = 1;
Josef Bacik291c7d22011-11-14 13:52:14 -0500607 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400608 }
609 spin_unlock(&cache->lock);
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500610 mutex_unlock(&caching_ctl->mutex);
611
Josef Bacik291c7d22011-11-14 13:52:14 -0500612 wake_up(&caching_ctl->wait);
Josef Bacik3c148742011-02-02 15:53:47 +0000613 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500614 put_caching_control(caching_ctl);
Josef Bacik3c148742011-02-02 15:53:47 +0000615 free_excluded_extents(fs_info->extent_root, cache);
Josef Bacik9d66e232010-08-25 16:54:15 -0400616 return 0;
Josef Bacik3c148742011-02-02 15:53:47 +0000617 }
Josef Bacik291c7d22011-11-14 13:52:14 -0500618 } else {
619 /*
620 * We are not going to do the fast caching, set cached to the
621 * appropriate value and wakeup any waiters.
622 */
623 spin_lock(&cache->lock);
624 if (load_cache_only) {
625 cache->caching_ctl = NULL;
626 cache->cached = BTRFS_CACHE_NO;
627 } else {
628 cache->cached = BTRFS_CACHE_STARTED;
Filipe Manana4f69cb92014-11-26 15:28:51 +0000629 cache->has_caching_ctl = 1;
Josef Bacik291c7d22011-11-14 13:52:14 -0500630 }
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
Filipe Manana1a4ed8f2014-10-27 10:44:24 +0000713/* simple helper to search for an existing data extent at a given offset */
714int btrfs_lookup_data_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);
Zheng Yan31840ae2008-09-23 13:14:14 -0400729 btrfs_free_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -0500730 return ret;
731}
732
Chris Masond8d5f3e2007-12-11 12:42:00 -0500733/*
Josef Bacik3173a182013-03-07 14:22:04 -0500734 * helper function to lookup reference count and flags of a tree block.
Yan, Zhenga22285a2010-05-16 10:48:46 -0400735 *
736 * the head node for delayed ref is used to store the sum of all the
737 * reference count modifications queued up in the rbtree. the head
738 * node may also store the extent flags to set. This way you can check
739 * to see what the reference count and extent flags would be if all of
740 * the delayed refs are not processed.
741 */
742int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
743 struct btrfs_root *root, u64 bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -0500744 u64 offset, int metadata, u64 *refs, u64 *flags)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400745{
746 struct btrfs_delayed_ref_head *head;
747 struct btrfs_delayed_ref_root *delayed_refs;
748 struct btrfs_path *path;
749 struct btrfs_extent_item *ei;
750 struct extent_buffer *leaf;
751 struct btrfs_key key;
752 u32 item_size;
753 u64 num_refs;
754 u64 extent_flags;
755 int ret;
756
Josef Bacik3173a182013-03-07 14:22:04 -0500757 /*
758 * If we don't have skinny metadata, don't bother doing anything
759 * different
760 */
761 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) {
David Sterba707e8a02014-06-04 19:22:26 +0200762 offset = root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500763 metadata = 0;
764 }
765
Yan, Zhenga22285a2010-05-16 10:48:46 -0400766 path = btrfs_alloc_path();
767 if (!path)
768 return -ENOMEM;
769
Yan, Zhenga22285a2010-05-16 10:48:46 -0400770 if (!trans) {
771 path->skip_locking = 1;
772 path->search_commit_root = 1;
773 }
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000774
775search_again:
776 key.objectid = bytenr;
777 key.offset = offset;
778 if (metadata)
779 key.type = BTRFS_METADATA_ITEM_KEY;
780 else
781 key.type = BTRFS_EXTENT_ITEM_KEY;
782
Yan, Zhenga22285a2010-05-16 10:48:46 -0400783 ret = btrfs_search_slot(trans, root->fs_info->extent_root,
784 &key, path, 0, 0);
785 if (ret < 0)
786 goto out_free;
787
Josef Bacik3173a182013-03-07 14:22:04 -0500788 if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) {
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100789 if (path->slots[0]) {
790 path->slots[0]--;
791 btrfs_item_key_to_cpu(path->nodes[0], &key,
792 path->slots[0]);
793 if (key.objectid == bytenr &&
794 key.type == BTRFS_EXTENT_ITEM_KEY &&
David Sterba707e8a02014-06-04 19:22:26 +0200795 key.offset == root->nodesize)
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100796 ret = 0;
797 }
Josef Bacik3173a182013-03-07 14:22:04 -0500798 }
799
Yan, Zhenga22285a2010-05-16 10:48:46 -0400800 if (ret == 0) {
801 leaf = path->nodes[0];
802 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
803 if (item_size >= sizeof(*ei)) {
804 ei = btrfs_item_ptr(leaf, path->slots[0],
805 struct btrfs_extent_item);
806 num_refs = btrfs_extent_refs(leaf, ei);
807 extent_flags = btrfs_extent_flags(leaf, ei);
808 } else {
809#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
810 struct btrfs_extent_item_v0 *ei0;
811 BUG_ON(item_size != sizeof(*ei0));
812 ei0 = btrfs_item_ptr(leaf, path->slots[0],
813 struct btrfs_extent_item_v0);
814 num_refs = btrfs_extent_refs_v0(leaf, ei0);
815 /* FIXME: this isn't correct for data */
816 extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
817#else
818 BUG();
819#endif
820 }
821 BUG_ON(num_refs == 0);
822 } else {
823 num_refs = 0;
824 extent_flags = 0;
825 ret = 0;
826 }
827
828 if (!trans)
829 goto out;
830
831 delayed_refs = &trans->transaction->delayed_refs;
832 spin_lock(&delayed_refs->lock);
833 head = btrfs_find_delayed_ref_head(trans, bytenr);
834 if (head) {
835 if (!mutex_trylock(&head->mutex)) {
836 atomic_inc(&head->node.refs);
837 spin_unlock(&delayed_refs->lock);
838
David Sterbab3b4aa72011-04-21 01:20:15 +0200839 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400840
David Sterba8cc33e52011-05-02 15:29:25 +0200841 /*
842 * Mutex was contended, block until it's released and try
843 * again
844 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400845 mutex_lock(&head->mutex);
846 mutex_unlock(&head->mutex);
847 btrfs_put_delayed_ref(&head->node);
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000848 goto search_again;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400849 }
Josef Bacikd7df2c72014-01-23 09:21:38 -0500850 spin_lock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400851 if (head->extent_op && head->extent_op->update_flags)
852 extent_flags |= head->extent_op->flags_to_set;
853 else
854 BUG_ON(num_refs == 0);
855
856 num_refs += head->node.ref_mod;
Josef Bacikd7df2c72014-01-23 09:21:38 -0500857 spin_unlock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400858 mutex_unlock(&head->mutex);
859 }
860 spin_unlock(&delayed_refs->lock);
861out:
862 WARN_ON(num_refs == 0);
863 if (refs)
864 *refs = num_refs;
865 if (flags)
866 *flags = extent_flags;
867out_free:
868 btrfs_free_path(path);
869 return ret;
870}
871
872/*
Chris Masond8d5f3e2007-12-11 12:42:00 -0500873 * Back reference rules. Back refs have three main goals:
874 *
875 * 1) differentiate between all holders of references to an extent so that
876 * when a reference is dropped we can make sure it was a valid reference
877 * before freeing the extent.
878 *
879 * 2) Provide enough information to quickly find the holders of an extent
880 * if we notice a given block is corrupted or bad.
881 *
882 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
883 * maintenance. This is actually the same as #2, but with a slightly
884 * different use case.
885 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400886 * There are two kinds of back refs. The implicit back refs is optimized
887 * for pointers in non-shared tree blocks. For a given pointer in a block,
888 * back refs of this kind provide information about the block's owner tree
889 * and the pointer's key. These information allow us to find the block by
890 * b-tree searching. The full back refs is for pointers in tree blocks not
891 * referenced by their owner trees. The location of tree block is recorded
892 * in the back refs. Actually the full back refs is generic, and can be
893 * used in all cases the implicit back refs is used. The major shortcoming
894 * of the full back refs is its overhead. Every time a tree block gets
895 * COWed, we have to update back refs entry for all pointers in it.
896 *
897 * For a newly allocated tree block, we use implicit back refs for
898 * pointers in it. This means most tree related operations only involve
899 * implicit back refs. For a tree block created in old transaction, the
900 * only way to drop a reference to it is COW it. So we can detect the
901 * event that tree block loses its owner tree's reference and do the
902 * back refs conversion.
903 *
904 * When a tree block is COW'd through a tree, there are four cases:
905 *
906 * The reference count of the block is one and the tree is the block's
907 * owner tree. Nothing to do in this case.
908 *
909 * The reference count of the block is one and the tree is not the
910 * block's owner tree. In this case, full back refs is used for pointers
911 * in the block. Remove these full back refs, add implicit back refs for
912 * every pointers in the new block.
913 *
914 * The reference count of the block is greater than one and the tree is
915 * the block's owner tree. In this case, implicit back refs is used for
916 * pointers in the block. Add full back refs for every pointers in the
917 * block, increase lower level extents' reference counts. The original
918 * implicit back refs are entailed to the new block.
919 *
920 * The reference count of the block is greater than one and the tree is
921 * not the block's owner tree. Add implicit back refs for every pointer in
922 * the new block, increase lower level extents' reference count.
923 *
924 * Back Reference Key composing:
925 *
926 * The key objectid corresponds to the first byte in the extent,
927 * The key type is used to differentiate between types of back refs.
928 * There are different meanings of the key offset for different types
929 * of back refs.
930 *
Chris Masond8d5f3e2007-12-11 12:42:00 -0500931 * File extents can be referenced by:
932 *
933 * - multiple snapshots, subvolumes, or different generations in one subvol
Zheng Yan31840ae2008-09-23 13:14:14 -0400934 * - different files inside a single subvolume
Chris Masond8d5f3e2007-12-11 12:42:00 -0500935 * - different offsets inside a file (bookend extents in file.c)
936 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400937 * The extent ref structure for the implicit back refs has fields for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500938 *
939 * - Objectid of the subvolume root
Chris Masond8d5f3e2007-12-11 12:42:00 -0500940 * - objectid of the file holding the reference
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400941 * - original offset in the file
942 * - how many bookend extents
Zheng Yan31840ae2008-09-23 13:14:14 -0400943 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400944 * The key offset for the implicit back refs is hash of the first
945 * three fields.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500946 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400947 * The extent ref structure for the full back refs has field for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500948 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400949 * - number of pointers in the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500950 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400951 * The key offset for the implicit back refs is the first byte of
952 * the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500953 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400954 * When a file extent is allocated, The implicit back refs is used.
955 * the fields are filled in:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500956 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400957 * (root_key.objectid, inode objectid, offset in file, 1)
958 *
959 * When a file extent is removed file truncation, we find the
960 * corresponding implicit back refs and check the following fields:
961 *
962 * (btrfs_header_owner(leaf), inode objectid, offset in file)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500963 *
964 * Btree extents can be referenced by:
965 *
966 * - Different subvolumes
Chris Masond8d5f3e2007-12-11 12:42:00 -0500967 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400968 * Both the implicit back refs and the full back refs for tree blocks
969 * only consist of key. The key offset for the implicit back refs is
970 * objectid of block's owner tree. The key offset for the full back refs
971 * is the first byte of parent block.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500972 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400973 * When implicit back refs is used, information about the lowest key and
974 * level of the tree block are required. These information are stored in
975 * tree block info structure.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500976 */
Zheng Yan31840ae2008-09-23 13:14:14 -0400977
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400978#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
979static int convert_extent_item_v0(struct btrfs_trans_handle *trans,
980 struct btrfs_root *root,
981 struct btrfs_path *path,
982 u64 owner, u32 extra_size)
Chris Mason74493f72007-12-11 09:25:06 -0500983{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400984 struct btrfs_extent_item *item;
985 struct btrfs_extent_item_v0 *ei0;
986 struct btrfs_extent_ref_v0 *ref0;
987 struct btrfs_tree_block_info *bi;
Zheng Yan31840ae2008-09-23 13:14:14 -0400988 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400989 struct btrfs_key key;
990 struct btrfs_key found_key;
991 u32 new_size = sizeof(*item);
992 u64 refs;
Chris Mason74493f72007-12-11 09:25:06 -0500993 int ret;
994
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400995 leaf = path->nodes[0];
996 BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0));
Chris Mason74493f72007-12-11 09:25:06 -0500997
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400998 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
999 ei0 = btrfs_item_ptr(leaf, path->slots[0],
1000 struct btrfs_extent_item_v0);
1001 refs = btrfs_extent_refs_v0(leaf, ei0);
1002
1003 if (owner == (u64)-1) {
1004 while (1) {
1005 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1006 ret = btrfs_next_leaf(root, path);
1007 if (ret < 0)
1008 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001009 BUG_ON(ret > 0); /* Corruption */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001010 leaf = path->nodes[0];
1011 }
1012 btrfs_item_key_to_cpu(leaf, &found_key,
1013 path->slots[0]);
1014 BUG_ON(key.objectid != found_key.objectid);
1015 if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) {
1016 path->slots[0]++;
1017 continue;
1018 }
1019 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1020 struct btrfs_extent_ref_v0);
1021 owner = btrfs_ref_objectid_v0(leaf, ref0);
1022 break;
1023 }
1024 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001025 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001026
1027 if (owner < BTRFS_FIRST_FREE_OBJECTID)
1028 new_size += sizeof(*bi);
1029
1030 new_size -= sizeof(*ei0);
1031 ret = btrfs_search_slot(trans, root, &key, path,
1032 new_size + extra_size, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04001033 if (ret < 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001034 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001035 BUG_ON(ret); /* Corruption */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001036
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00001037 btrfs_extend_item(root, path, new_size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001038
1039 leaf = path->nodes[0];
1040 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1041 btrfs_set_extent_refs(leaf, item, refs);
1042 /* FIXME: get real generation */
1043 btrfs_set_extent_generation(leaf, item, 0);
1044 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1045 btrfs_set_extent_flags(leaf, item,
1046 BTRFS_EXTENT_FLAG_TREE_BLOCK |
1047 BTRFS_BLOCK_FLAG_FULL_BACKREF);
1048 bi = (struct btrfs_tree_block_info *)(item + 1);
1049 /* FIXME: get first key of the block */
1050 memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi));
1051 btrfs_set_tree_block_level(leaf, bi, (int)owner);
1052 } else {
1053 btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA);
1054 }
1055 btrfs_mark_buffer_dirty(leaf);
1056 return 0;
1057}
1058#endif
1059
1060static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
1061{
1062 u32 high_crc = ~(u32)0;
1063 u32 low_crc = ~(u32)0;
1064 __le64 lenum;
1065
1066 lenum = cpu_to_le64(root_objectid);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001067 high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001068 lenum = cpu_to_le64(owner);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001069 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001070 lenum = cpu_to_le64(offset);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001071 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001072
1073 return ((u64)high_crc << 31) ^ (u64)low_crc;
1074}
1075
1076static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
1077 struct btrfs_extent_data_ref *ref)
1078{
1079 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
1080 btrfs_extent_data_ref_objectid(leaf, ref),
1081 btrfs_extent_data_ref_offset(leaf, ref));
1082}
1083
1084static int match_extent_data_ref(struct extent_buffer *leaf,
1085 struct btrfs_extent_data_ref *ref,
1086 u64 root_objectid, u64 owner, u64 offset)
1087{
1088 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
1089 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
1090 btrfs_extent_data_ref_offset(leaf, ref) != offset)
1091 return 0;
1092 return 1;
1093}
1094
1095static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
1096 struct btrfs_root *root,
1097 struct btrfs_path *path,
1098 u64 bytenr, u64 parent,
1099 u64 root_objectid,
1100 u64 owner, u64 offset)
1101{
1102 struct btrfs_key key;
1103 struct btrfs_extent_data_ref *ref;
1104 struct extent_buffer *leaf;
1105 u32 nritems;
1106 int ret;
1107 int recow;
1108 int err = -ENOENT;
1109
1110 key.objectid = bytenr;
1111 if (parent) {
1112 key.type = BTRFS_SHARED_DATA_REF_KEY;
1113 key.offset = parent;
1114 } else {
1115 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1116 key.offset = hash_extent_data_ref(root_objectid,
1117 owner, offset);
1118 }
1119again:
1120 recow = 0;
1121 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1122 if (ret < 0) {
1123 err = ret;
1124 goto fail;
1125 }
1126
1127 if (parent) {
1128 if (!ret)
1129 return 0;
1130#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1131 key.type = BTRFS_EXTENT_REF_V0_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02001132 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001133 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1134 if (ret < 0) {
1135 err = ret;
1136 goto fail;
1137 }
1138 if (!ret)
1139 return 0;
1140#endif
1141 goto fail;
Zheng Yan31840ae2008-09-23 13:14:14 -04001142 }
1143
1144 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001145 nritems = btrfs_header_nritems(leaf);
1146 while (1) {
1147 if (path->slots[0] >= nritems) {
1148 ret = btrfs_next_leaf(root, path);
1149 if (ret < 0)
1150 err = ret;
1151 if (ret)
1152 goto fail;
1153
1154 leaf = path->nodes[0];
1155 nritems = btrfs_header_nritems(leaf);
1156 recow = 1;
1157 }
1158
1159 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1160 if (key.objectid != bytenr ||
1161 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1162 goto fail;
1163
1164 ref = btrfs_item_ptr(leaf, path->slots[0],
1165 struct btrfs_extent_data_ref);
1166
1167 if (match_extent_data_ref(leaf, ref, root_objectid,
1168 owner, offset)) {
1169 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001170 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001171 goto again;
1172 }
1173 err = 0;
1174 break;
1175 }
1176 path->slots[0]++;
Zheng Yan31840ae2008-09-23 13:14:14 -04001177 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001178fail:
1179 return err;
Zheng Yan31840ae2008-09-23 13:14:14 -04001180}
1181
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001182static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
1183 struct btrfs_root *root,
1184 struct btrfs_path *path,
1185 u64 bytenr, u64 parent,
1186 u64 root_objectid, u64 owner,
1187 u64 offset, int refs_to_add)
Zheng Yan31840ae2008-09-23 13:14:14 -04001188{
1189 struct btrfs_key key;
1190 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001191 u32 size;
Zheng Yan31840ae2008-09-23 13:14:14 -04001192 u32 num_refs;
1193 int ret;
1194
1195 key.objectid = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001196 if (parent) {
1197 key.type = BTRFS_SHARED_DATA_REF_KEY;
1198 key.offset = parent;
1199 size = sizeof(struct btrfs_shared_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001200 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001201 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1202 key.offset = hash_extent_data_ref(root_objectid,
1203 owner, offset);
1204 size = sizeof(struct btrfs_extent_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001205 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001206
1207 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1208 if (ret && ret != -EEXIST)
1209 goto fail;
1210
1211 leaf = path->nodes[0];
1212 if (parent) {
1213 struct btrfs_shared_data_ref *ref;
1214 ref = btrfs_item_ptr(leaf, path->slots[0],
1215 struct btrfs_shared_data_ref);
1216 if (ret == 0) {
1217 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1218 } else {
1219 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1220 num_refs += refs_to_add;
1221 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
1222 }
1223 } else {
1224 struct btrfs_extent_data_ref *ref;
1225 while (ret == -EEXIST) {
1226 ref = btrfs_item_ptr(leaf, path->slots[0],
1227 struct btrfs_extent_data_ref);
1228 if (match_extent_data_ref(leaf, ref, root_objectid,
1229 owner, offset))
1230 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02001231 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001232 key.offset++;
1233 ret = btrfs_insert_empty_item(trans, root, path, &key,
1234 size);
1235 if (ret && ret != -EEXIST)
1236 goto fail;
1237
1238 leaf = path->nodes[0];
1239 }
1240 ref = btrfs_item_ptr(leaf, path->slots[0],
1241 struct btrfs_extent_data_ref);
1242 if (ret == 0) {
1243 btrfs_set_extent_data_ref_root(leaf, ref,
1244 root_objectid);
1245 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1246 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1247 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1248 } else {
1249 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1250 num_refs += refs_to_add;
1251 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
1252 }
1253 }
1254 btrfs_mark_buffer_dirty(leaf);
1255 ret = 0;
1256fail:
David Sterbab3b4aa72011-04-21 01:20:15 +02001257 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05001258 return ret;
Chris Mason74493f72007-12-11 09:25:06 -05001259}
1260
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001261static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
1262 struct btrfs_root *root,
1263 struct btrfs_path *path,
Josef Bacikfcebe452014-05-13 17:30:47 -07001264 int refs_to_drop, int *last_ref)
Zheng Yan31840ae2008-09-23 13:14:14 -04001265{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001266 struct btrfs_key key;
1267 struct btrfs_extent_data_ref *ref1 = NULL;
1268 struct btrfs_shared_data_ref *ref2 = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -04001269 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001270 u32 num_refs = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04001271 int ret = 0;
1272
1273 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001274 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1275
1276 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1277 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1278 struct btrfs_extent_data_ref);
1279 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1280 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1281 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1282 struct btrfs_shared_data_ref);
1283 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1284#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1285 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1286 struct btrfs_extent_ref_v0 *ref0;
1287 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1288 struct btrfs_extent_ref_v0);
1289 num_refs = btrfs_ref_count_v0(leaf, ref0);
1290#endif
1291 } else {
1292 BUG();
1293 }
1294
Chris Mason56bec292009-03-13 10:10:06 -04001295 BUG_ON(num_refs < refs_to_drop);
1296 num_refs -= refs_to_drop;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001297
Zheng Yan31840ae2008-09-23 13:14:14 -04001298 if (num_refs == 0) {
1299 ret = btrfs_del_item(trans, root, path);
Josef Bacikfcebe452014-05-13 17:30:47 -07001300 *last_ref = 1;
Zheng Yan31840ae2008-09-23 13:14:14 -04001301 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001302 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1303 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1304 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1305 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
1306#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1307 else {
1308 struct btrfs_extent_ref_v0 *ref0;
1309 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1310 struct btrfs_extent_ref_v0);
1311 btrfs_set_ref_count_v0(leaf, ref0, num_refs);
1312 }
1313#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04001314 btrfs_mark_buffer_dirty(leaf);
1315 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001316 return ret;
1317}
1318
1319static noinline u32 extent_data_ref_count(struct btrfs_root *root,
1320 struct btrfs_path *path,
1321 struct btrfs_extent_inline_ref *iref)
1322{
1323 struct btrfs_key key;
1324 struct extent_buffer *leaf;
1325 struct btrfs_extent_data_ref *ref1;
1326 struct btrfs_shared_data_ref *ref2;
1327 u32 num_refs = 0;
1328
1329 leaf = path->nodes[0];
1330 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1331 if (iref) {
1332 if (btrfs_extent_inline_ref_type(leaf, iref) ==
1333 BTRFS_EXTENT_DATA_REF_KEY) {
1334 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1335 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1336 } else {
1337 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1338 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1339 }
1340 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1341 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1342 struct btrfs_extent_data_ref);
1343 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1344 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1345 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1346 struct btrfs_shared_data_ref);
1347 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1348#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1349 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1350 struct btrfs_extent_ref_v0 *ref0;
1351 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1352 struct btrfs_extent_ref_v0);
1353 num_refs = btrfs_ref_count_v0(leaf, ref0);
1354#endif
1355 } else {
1356 WARN_ON(1);
1357 }
1358 return num_refs;
1359}
1360
1361static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
1362 struct btrfs_root *root,
1363 struct btrfs_path *path,
1364 u64 bytenr, u64 parent,
1365 u64 root_objectid)
1366{
1367 struct btrfs_key key;
1368 int ret;
1369
1370 key.objectid = bytenr;
1371 if (parent) {
1372 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1373 key.offset = parent;
1374 } else {
1375 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1376 key.offset = root_objectid;
1377 }
1378
1379 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1380 if (ret > 0)
1381 ret = -ENOENT;
1382#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1383 if (ret == -ENOENT && parent) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001384 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001385 key.type = BTRFS_EXTENT_REF_V0_KEY;
1386 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1387 if (ret > 0)
1388 ret = -ENOENT;
1389 }
1390#endif
1391 return ret;
1392}
1393
1394static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
1395 struct btrfs_root *root,
1396 struct btrfs_path *path,
1397 u64 bytenr, u64 parent,
1398 u64 root_objectid)
1399{
1400 struct btrfs_key key;
1401 int ret;
1402
1403 key.objectid = bytenr;
1404 if (parent) {
1405 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1406 key.offset = parent;
1407 } else {
1408 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1409 key.offset = root_objectid;
1410 }
1411
1412 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
David Sterbab3b4aa72011-04-21 01:20:15 +02001413 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04001414 return ret;
1415}
1416
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001417static inline int extent_ref_type(u64 parent, u64 owner)
1418{
1419 int type;
1420 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1421 if (parent > 0)
1422 type = BTRFS_SHARED_BLOCK_REF_KEY;
1423 else
1424 type = BTRFS_TREE_BLOCK_REF_KEY;
1425 } else {
1426 if (parent > 0)
1427 type = BTRFS_SHARED_DATA_REF_KEY;
1428 else
1429 type = BTRFS_EXTENT_DATA_REF_KEY;
1430 }
1431 return type;
1432}
1433
Yan Zheng2c47e6052009-06-27 21:07:35 -04001434static int find_next_key(struct btrfs_path *path, int level,
1435 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001436
1437{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001438 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001439 if (!path->nodes[level])
1440 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001441 if (path->slots[level] + 1 >=
1442 btrfs_header_nritems(path->nodes[level]))
1443 continue;
1444 if (level == 0)
1445 btrfs_item_key_to_cpu(path->nodes[level], key,
1446 path->slots[level] + 1);
1447 else
1448 btrfs_node_key_to_cpu(path->nodes[level], key,
1449 path->slots[level] + 1);
1450 return 0;
1451 }
1452 return 1;
1453}
1454
1455/*
1456 * look for inline back ref. if back ref is found, *ref_ret is set
1457 * to the address of inline back ref, and 0 is returned.
1458 *
1459 * if back ref isn't found, *ref_ret is set to the address where it
1460 * should be inserted, and -ENOENT is returned.
1461 *
1462 * if insert is true and there are too many inline back refs, the path
1463 * points to the extent item, and -EAGAIN is returned.
1464 *
1465 * NOTE: inline back refs are ordered in the same way that back ref
1466 * items in the tree are ordered.
1467 */
1468static noinline_for_stack
1469int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
1470 struct btrfs_root *root,
1471 struct btrfs_path *path,
1472 struct btrfs_extent_inline_ref **ref_ret,
1473 u64 bytenr, u64 num_bytes,
1474 u64 parent, u64 root_objectid,
1475 u64 owner, u64 offset, int insert)
1476{
1477 struct btrfs_key key;
1478 struct extent_buffer *leaf;
1479 struct btrfs_extent_item *ei;
1480 struct btrfs_extent_inline_ref *iref;
1481 u64 flags;
1482 u64 item_size;
1483 unsigned long ptr;
1484 unsigned long end;
1485 int extra_size;
1486 int type;
1487 int want;
1488 int ret;
1489 int err = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05001490 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
1491 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001492
1493 key.objectid = bytenr;
1494 key.type = BTRFS_EXTENT_ITEM_KEY;
1495 key.offset = num_bytes;
1496
1497 want = extent_ref_type(parent, owner);
1498 if (insert) {
1499 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001500 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001501 } else
1502 extra_size = -1;
Josef Bacik3173a182013-03-07 14:22:04 -05001503
1504 /*
1505 * Owner is our parent level, so we can just add one to get the level
1506 * for the block we are interested in.
1507 */
1508 if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) {
1509 key.type = BTRFS_METADATA_ITEM_KEY;
1510 key.offset = owner;
1511 }
1512
1513again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001514 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1515 if (ret < 0) {
1516 err = ret;
1517 goto out;
1518 }
Josef Bacik3173a182013-03-07 14:22:04 -05001519
1520 /*
1521 * We may be a newly converted file system which still has the old fat
1522 * extent entries for metadata, so try and see if we have one of those.
1523 */
1524 if (ret > 0 && skinny_metadata) {
1525 skinny_metadata = false;
1526 if (path->slots[0]) {
1527 path->slots[0]--;
1528 btrfs_item_key_to_cpu(path->nodes[0], &key,
1529 path->slots[0]);
1530 if (key.objectid == bytenr &&
1531 key.type == BTRFS_EXTENT_ITEM_KEY &&
1532 key.offset == num_bytes)
1533 ret = 0;
1534 }
1535 if (ret) {
Filipe Manana9ce49a02014-04-24 15:15:28 +01001536 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05001537 key.type = BTRFS_EXTENT_ITEM_KEY;
1538 key.offset = num_bytes;
1539 btrfs_release_path(path);
1540 goto again;
1541 }
1542 }
1543
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001544 if (ret && !insert) {
1545 err = -ENOENT;
1546 goto out;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301547 } else if (WARN_ON(ret)) {
Josef Bacik492104c2013-03-08 15:41:02 -05001548 err = -EIO;
Josef Bacik492104c2013-03-08 15:41:02 -05001549 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001550 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001551
1552 leaf = path->nodes[0];
1553 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1554#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1555 if (item_size < sizeof(*ei)) {
1556 if (!insert) {
1557 err = -ENOENT;
1558 goto out;
1559 }
1560 ret = convert_extent_item_v0(trans, root, path, owner,
1561 extra_size);
1562 if (ret < 0) {
1563 err = ret;
1564 goto out;
1565 }
1566 leaf = path->nodes[0];
1567 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1568 }
1569#endif
1570 BUG_ON(item_size < sizeof(*ei));
1571
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001572 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1573 flags = btrfs_extent_flags(leaf, ei);
1574
1575 ptr = (unsigned long)(ei + 1);
1576 end = (unsigned long)ei + item_size;
1577
Josef Bacik3173a182013-03-07 14:22:04 -05001578 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001579 ptr += sizeof(struct btrfs_tree_block_info);
1580 BUG_ON(ptr > end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001581 }
1582
1583 err = -ENOENT;
1584 while (1) {
1585 if (ptr >= end) {
1586 WARN_ON(ptr > end);
1587 break;
1588 }
1589 iref = (struct btrfs_extent_inline_ref *)ptr;
1590 type = btrfs_extent_inline_ref_type(leaf, iref);
1591 if (want < type)
1592 break;
1593 if (want > type) {
1594 ptr += btrfs_extent_inline_ref_size(type);
1595 continue;
1596 }
1597
1598 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1599 struct btrfs_extent_data_ref *dref;
1600 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1601 if (match_extent_data_ref(leaf, dref, root_objectid,
1602 owner, offset)) {
1603 err = 0;
1604 break;
1605 }
1606 if (hash_extent_data_ref_item(leaf, dref) <
1607 hash_extent_data_ref(root_objectid, owner, offset))
1608 break;
1609 } else {
1610 u64 ref_offset;
1611 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1612 if (parent > 0) {
1613 if (parent == ref_offset) {
1614 err = 0;
1615 break;
1616 }
1617 if (ref_offset < parent)
1618 break;
1619 } else {
1620 if (root_objectid == ref_offset) {
1621 err = 0;
1622 break;
1623 }
1624 if (ref_offset < root_objectid)
1625 break;
1626 }
1627 }
1628 ptr += btrfs_extent_inline_ref_size(type);
1629 }
1630 if (err == -ENOENT && insert) {
1631 if (item_size + extra_size >=
1632 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1633 err = -EAGAIN;
1634 goto out;
1635 }
1636 /*
1637 * To add new inline back ref, we have to make sure
1638 * there is no corresponding back ref item.
1639 * For simplicity, we just do not add new inline back
1640 * ref if there is any kind of item for this block
1641 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001642 if (find_next_key(path, 0, &key) == 0 &&
1643 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001644 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001645 err = -EAGAIN;
1646 goto out;
1647 }
1648 }
1649 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1650out:
Yan Zheng85d41982009-06-11 08:51:10 -04001651 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001652 path->keep_locks = 0;
1653 btrfs_unlock_up_safe(path, 1);
1654 }
1655 return err;
1656}
1657
1658/*
1659 * helper to add new inline back ref
1660 */
1661static noinline_for_stack
Tsutomu Itohfd279fa2013-04-16 05:19:11 +00001662void setup_inline_extent_backref(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001663 struct btrfs_path *path,
1664 struct btrfs_extent_inline_ref *iref,
1665 u64 parent, u64 root_objectid,
1666 u64 owner, u64 offset, int refs_to_add,
1667 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001668{
1669 struct extent_buffer *leaf;
1670 struct btrfs_extent_item *ei;
1671 unsigned long ptr;
1672 unsigned long end;
1673 unsigned long item_offset;
1674 u64 refs;
1675 int size;
1676 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001677
1678 leaf = path->nodes[0];
1679 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1680 item_offset = (unsigned long)iref - (unsigned long)ei;
1681
1682 type = extent_ref_type(parent, owner);
1683 size = btrfs_extent_inline_ref_size(type);
1684
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00001685 btrfs_extend_item(root, path, size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001686
1687 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1688 refs = btrfs_extent_refs(leaf, ei);
1689 refs += refs_to_add;
1690 btrfs_set_extent_refs(leaf, ei, refs);
1691 if (extent_op)
1692 __run_delayed_extent_op(extent_op, leaf, ei);
1693
1694 ptr = (unsigned long)ei + item_offset;
1695 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1696 if (ptr < end - size)
1697 memmove_extent_buffer(leaf, ptr + size, ptr,
1698 end - size - ptr);
1699
1700 iref = (struct btrfs_extent_inline_ref *)ptr;
1701 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1702 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1703 struct btrfs_extent_data_ref *dref;
1704 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1705 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1706 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1707 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1708 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1709 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1710 struct btrfs_shared_data_ref *sref;
1711 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1712 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1713 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1714 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1715 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1716 } else {
1717 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1718 }
1719 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001720}
1721
1722static int lookup_extent_backref(struct btrfs_trans_handle *trans,
1723 struct btrfs_root *root,
1724 struct btrfs_path *path,
1725 struct btrfs_extent_inline_ref **ref_ret,
1726 u64 bytenr, u64 num_bytes, u64 parent,
1727 u64 root_objectid, u64 owner, u64 offset)
1728{
1729 int ret;
1730
1731 ret = lookup_inline_extent_backref(trans, root, path, ref_ret,
1732 bytenr, num_bytes, parent,
1733 root_objectid, owner, offset, 0);
1734 if (ret != -ENOENT)
1735 return ret;
1736
David Sterbab3b4aa72011-04-21 01:20:15 +02001737 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001738 *ref_ret = NULL;
1739
1740 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1741 ret = lookup_tree_block_ref(trans, root, path, bytenr, parent,
1742 root_objectid);
1743 } else {
1744 ret = lookup_extent_data_ref(trans, root, path, bytenr, parent,
1745 root_objectid, owner, offset);
1746 }
1747 return ret;
1748}
1749
1750/*
1751 * helper to update/remove inline back ref
1752 */
1753static noinline_for_stack
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001754void update_inline_extent_backref(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001755 struct btrfs_path *path,
1756 struct btrfs_extent_inline_ref *iref,
1757 int refs_to_mod,
Josef Bacikfcebe452014-05-13 17:30:47 -07001758 struct btrfs_delayed_extent_op *extent_op,
1759 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001760{
1761 struct extent_buffer *leaf;
1762 struct btrfs_extent_item *ei;
1763 struct btrfs_extent_data_ref *dref = NULL;
1764 struct btrfs_shared_data_ref *sref = NULL;
1765 unsigned long ptr;
1766 unsigned long end;
1767 u32 item_size;
1768 int size;
1769 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001770 u64 refs;
1771
1772 leaf = path->nodes[0];
1773 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1774 refs = btrfs_extent_refs(leaf, ei);
1775 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1776 refs += refs_to_mod;
1777 btrfs_set_extent_refs(leaf, ei, refs);
1778 if (extent_op)
1779 __run_delayed_extent_op(extent_op, leaf, ei);
1780
1781 type = btrfs_extent_inline_ref_type(leaf, iref);
1782
1783 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1784 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1785 refs = btrfs_extent_data_ref_count(leaf, dref);
1786 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1787 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1788 refs = btrfs_shared_data_ref_count(leaf, sref);
1789 } else {
1790 refs = 1;
1791 BUG_ON(refs_to_mod != -1);
1792 }
1793
1794 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1795 refs += refs_to_mod;
1796
1797 if (refs > 0) {
1798 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1799 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1800 else
1801 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1802 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001803 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001804 size = btrfs_extent_inline_ref_size(type);
1805 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1806 ptr = (unsigned long)iref;
1807 end = (unsigned long)ei + item_size;
1808 if (ptr + size < end)
1809 memmove_extent_buffer(leaf, ptr, ptr + size,
1810 end - ptr - size);
1811 item_size -= size;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001812 btrfs_truncate_item(root, path, item_size, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001813 }
1814 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001815}
1816
1817static noinline_for_stack
1818int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
1819 struct btrfs_root *root,
1820 struct btrfs_path *path,
1821 u64 bytenr, u64 num_bytes, u64 parent,
1822 u64 root_objectid, u64 owner,
1823 u64 offset, int refs_to_add,
1824 struct btrfs_delayed_extent_op *extent_op)
1825{
1826 struct btrfs_extent_inline_ref *iref;
1827 int ret;
1828
1829 ret = lookup_inline_extent_backref(trans, root, path, &iref,
1830 bytenr, num_bytes, parent,
1831 root_objectid, owner, offset, 1);
1832 if (ret == 0) {
1833 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001834 update_inline_extent_backref(root, path, iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001835 refs_to_add, extent_op, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001836 } else if (ret == -ENOENT) {
Tsutomu Itohfd279fa2013-04-16 05:19:11 +00001837 setup_inline_extent_backref(root, path, iref, parent,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001838 root_objectid, owner, offset,
1839 refs_to_add, extent_op);
1840 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001841 }
1842 return ret;
1843}
1844
1845static int insert_extent_backref(struct btrfs_trans_handle *trans,
1846 struct btrfs_root *root,
1847 struct btrfs_path *path,
1848 u64 bytenr, u64 parent, u64 root_objectid,
1849 u64 owner, u64 offset, int refs_to_add)
1850{
1851 int ret;
1852 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1853 BUG_ON(refs_to_add != 1);
1854 ret = insert_tree_block_ref(trans, root, path, bytenr,
1855 parent, root_objectid);
1856 } else {
1857 ret = insert_extent_data_ref(trans, root, path, bytenr,
1858 parent, root_objectid,
1859 owner, offset, refs_to_add);
1860 }
1861 return ret;
1862}
1863
1864static int remove_extent_backref(struct btrfs_trans_handle *trans,
1865 struct btrfs_root *root,
1866 struct btrfs_path *path,
1867 struct btrfs_extent_inline_ref *iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001868 int refs_to_drop, int is_data, int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001869{
Jeff Mahoney143bede2012-03-01 14:56:26 +01001870 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001871
1872 BUG_ON(!is_data && refs_to_drop != 1);
1873 if (iref) {
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001874 update_inline_extent_backref(root, path, iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001875 -refs_to_drop, NULL, last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001876 } else if (is_data) {
Josef Bacikfcebe452014-05-13 17:30:47 -07001877 ret = remove_extent_data_ref(trans, root, path, refs_to_drop,
1878 last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001879 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001880 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001881 ret = btrfs_del_item(trans, root, path);
1882 }
1883 return ret;
1884}
1885
Li Dongyang5378e602011-03-24 10:24:27 +00001886static int btrfs_issue_discard(struct block_device *bdev,
Chris Mason15916de2008-11-19 21:17:22 -05001887 u64 start, u64 len)
1888{
Li Dongyang5378e602011-03-24 10:24:27 +00001889 return blkdev_issue_discard(bdev, start >> 9, len >> 9, GFP_NOFS, 0);
Chris Mason15916de2008-11-19 21:17:22 -05001890}
Chris Mason15916de2008-11-19 21:17:22 -05001891
Liu Hui1f3c79a2009-01-05 15:57:51 -05001892static int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr,
Li Dongyang5378e602011-03-24 10:24:27 +00001893 u64 num_bytes, u64 *actual_bytes)
Liu Hui1f3c79a2009-01-05 15:57:51 -05001894{
Liu Hui1f3c79a2009-01-05 15:57:51 -05001895 int ret;
Li Dongyang5378e602011-03-24 10:24:27 +00001896 u64 discarded_bytes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02001897 struct btrfs_bio *bbio = NULL;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001898
Christoph Hellwige244a0a2009-10-14 09:24:59 -04001899
Liu Hui1f3c79a2009-01-05 15:57:51 -05001900 /* Tell the block device(s) that the sectors can be discarded */
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001901 ret = btrfs_map_block(root->fs_info, REQ_DISCARD,
Jan Schmidta1d3c472011-08-04 17:15:33 +02001902 bytenr, &num_bytes, &bbio, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001903 /* Error condition is -ENOMEM */
Liu Hui1f3c79a2009-01-05 15:57:51 -05001904 if (!ret) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02001905 struct btrfs_bio_stripe *stripe = bbio->stripes;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001906 int i;
1907
Liu Hui1f3c79a2009-01-05 15:57:51 -05001908
Jan Schmidta1d3c472011-08-04 17:15:33 +02001909 for (i = 0; i < bbio->num_stripes; i++, stripe++) {
Josef Bacikd5e20032011-08-04 14:52:27 +00001910 if (!stripe->dev->can_discard)
1911 continue;
1912
Li Dongyang5378e602011-03-24 10:24:27 +00001913 ret = btrfs_issue_discard(stripe->dev->bdev,
1914 stripe->physical,
1915 stripe->length);
1916 if (!ret)
1917 discarded_bytes += stripe->length;
1918 else if (ret != -EOPNOTSUPP)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001919 break; /* Logic errors or -ENOMEM, or -EIO but I don't know how that could happen JDM */
Josef Bacikd5e20032011-08-04 14:52:27 +00001920
1921 /*
1922 * Just in case we get back EOPNOTSUPP for some reason,
1923 * just ignore the return value so we don't screw up
1924 * people calling discard_extent.
1925 */
1926 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001927 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02001928 kfree(bbio);
Liu Hui1f3c79a2009-01-05 15:57:51 -05001929 }
Li Dongyang5378e602011-03-24 10:24:27 +00001930
1931 if (actual_bytes)
1932 *actual_bytes = discarded_bytes;
1933
Liu Hui1f3c79a2009-01-05 15:57:51 -05001934
David Woodhouse53b381b2013-01-29 18:40:14 -05001935 if (ret == -EOPNOTSUPP)
1936 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001937 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001938}
1939
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001940/* Can return -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001941int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1942 struct btrfs_root *root,
1943 u64 bytenr, u64 num_bytes, u64 parent,
Josef Bacikfcebe452014-05-13 17:30:47 -07001944 u64 root_objectid, u64 owner, u64 offset,
1945 int no_quota)
Zheng Yan31840ae2008-09-23 13:14:14 -04001946{
1947 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001948 struct btrfs_fs_info *fs_info = root->fs_info;
1949
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001950 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
1951 root_objectid == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04001952
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001953 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001954 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
1955 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001956 parent, root_objectid, (int)owner,
Josef Bacikfcebe452014-05-13 17:30:47 -07001957 BTRFS_ADD_DELAYED_REF, NULL, no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001958 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001959 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
1960 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001961 parent, root_objectid, owner, offset,
Josef Bacikfcebe452014-05-13 17:30:47 -07001962 BTRFS_ADD_DELAYED_REF, NULL, no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001963 }
Zheng Yan31840ae2008-09-23 13:14:14 -04001964 return ret;
1965}
1966
Chris Mason925baed2008-06-25 16:01:30 -04001967static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001968 struct btrfs_root *root,
1969 u64 bytenr, u64 num_bytes,
1970 u64 parent, u64 root_objectid,
1971 u64 owner, u64 offset, int refs_to_add,
Josef Bacikfcebe452014-05-13 17:30:47 -07001972 int no_quota,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001973 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04001974{
Josef Bacikfcebe452014-05-13 17:30:47 -07001975 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5caf2a02007-04-02 11:20:42 -04001976 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001977 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04001978 struct btrfs_extent_item *item;
Josef Bacikfcebe452014-05-13 17:30:47 -07001979 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001980 u64 refs;
1981 int ret;
Josef Bacikfcebe452014-05-13 17:30:47 -07001982 enum btrfs_qgroup_operation_type type = BTRFS_QGROUP_OPER_ADD_EXCL;
Chris Mason037e6392007-03-07 11:50:24 -05001983
Chris Mason5caf2a02007-04-02 11:20:42 -04001984 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001985 if (!path)
1986 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04001987
Josef Bacikfcebe452014-05-13 17:30:47 -07001988 if (!is_fstree(root_objectid) || !root->fs_info->quota_enabled)
1989 no_quota = 1;
1990
Chris Mason3c12ac72008-04-21 12:01:38 -04001991 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04001992 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001993 /* this will setup the path even if it fails to insert the back ref */
Josef Bacikfcebe452014-05-13 17:30:47 -07001994 ret = insert_inline_extent_backref(trans, fs_info->extent_root, path,
1995 bytenr, num_bytes, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001996 root_objectid, owner, offset,
1997 refs_to_add, extent_op);
Josef Bacikfcebe452014-05-13 17:30:47 -07001998 if ((ret < 0 && ret != -EAGAIN) || (!ret && no_quota))
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001999 goto out;
Josef Bacikfcebe452014-05-13 17:30:47 -07002000 /*
2001 * Ok we were able to insert an inline extent and it appears to be a new
2002 * reference, deal with the qgroup accounting.
2003 */
2004 if (!ret && !no_quota) {
2005 ASSERT(root->fs_info->quota_enabled);
2006 leaf = path->nodes[0];
2007 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2008 item = btrfs_item_ptr(leaf, path->slots[0],
2009 struct btrfs_extent_item);
2010 if (btrfs_extent_refs(leaf, item) > (u64)refs_to_add)
2011 type = BTRFS_QGROUP_OPER_ADD_SHARED;
2012 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04002013
Josef Bacikfcebe452014-05-13 17:30:47 -07002014 ret = btrfs_qgroup_record_ref(trans, fs_info, root_objectid,
2015 bytenr, num_bytes, type, 0);
2016 goto out;
2017 }
2018
2019 /*
2020 * Ok we had -EAGAIN which means we didn't have space to insert and
2021 * inline extent ref, so just update the reference count and add a
2022 * normal backref.
2023 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002024 leaf = path->nodes[0];
Josef Bacikfcebe452014-05-13 17:30:47 -07002025 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002026 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2027 refs = btrfs_extent_refs(leaf, item);
Josef Bacikfcebe452014-05-13 17:30:47 -07002028 if (refs)
2029 type = BTRFS_QGROUP_OPER_ADD_SHARED;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002030 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
2031 if (extent_op)
2032 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04002033
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002034 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002035 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05002036
Josef Bacikfcebe452014-05-13 17:30:47 -07002037 if (!no_quota) {
2038 ret = btrfs_qgroup_record_ref(trans, fs_info, root_objectid,
2039 bytenr, num_bytes, type, 0);
2040 if (ret)
2041 goto out;
2042 }
2043
Chris Mason3c12ac72008-04-21 12:01:38 -04002044 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04002045 path->leave_spinning = 1;
Chris Mason56bec292009-03-13 10:10:06 -04002046 /* now insert the actual backref */
Zheng Yan31840ae2008-09-23 13:14:14 -04002047 ret = insert_extent_backref(trans, root->fs_info->extent_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002048 path, bytenr, parent, root_objectid,
2049 owner, offset, refs_to_add);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002050 if (ret)
2051 btrfs_abort_transaction(trans, root, ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002052out:
Chris Mason74493f72007-12-11 09:25:06 -05002053 btrfs_free_path(path);
Liu Bo30d133f2013-10-11 16:30:23 +08002054 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002055}
2056
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002057static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
2058 struct btrfs_root *root,
2059 struct btrfs_delayed_ref_node *node,
2060 struct btrfs_delayed_extent_op *extent_op,
2061 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04002062{
Chris Mason56bec292009-03-13 10:10:06 -04002063 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002064 struct btrfs_delayed_data_ref *ref;
2065 struct btrfs_key ins;
2066 u64 parent = 0;
2067 u64 ref_root = 0;
2068 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002069
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002070 ins.objectid = node->bytenr;
2071 ins.offset = node->num_bytes;
2072 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04002073
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002074 ref = btrfs_delayed_node_to_data_ref(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002075 trace_run_delayed_data_ref(node, ref, node->action);
2076
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002077 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
2078 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002079 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002080
2081 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002082 if (extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002083 flags |= extent_op->flags_to_set;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002084 ret = alloc_reserved_file_extent(trans, root,
2085 parent, ref_root, flags,
2086 ref->objectid, ref->offset,
2087 &ins, node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002088 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
2089 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
2090 node->num_bytes, parent,
2091 ref_root, ref->objectid,
2092 ref->offset, node->ref_mod,
Josef Bacikfcebe452014-05-13 17:30:47 -07002093 node->no_quota, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002094 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
2095 ret = __btrfs_free_extent(trans, root, node->bytenr,
2096 node->num_bytes, parent,
2097 ref_root, ref->objectid,
2098 ref->offset, node->ref_mod,
Josef Bacikfcebe452014-05-13 17:30:47 -07002099 extent_op, node->no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002100 } else {
2101 BUG();
2102 }
Chris Mason56bec292009-03-13 10:10:06 -04002103 return ret;
2104}
2105
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002106static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
2107 struct extent_buffer *leaf,
2108 struct btrfs_extent_item *ei)
2109{
2110 u64 flags = btrfs_extent_flags(leaf, ei);
2111 if (extent_op->update_flags) {
2112 flags |= extent_op->flags_to_set;
2113 btrfs_set_extent_flags(leaf, ei, flags);
2114 }
2115
2116 if (extent_op->update_key) {
2117 struct btrfs_tree_block_info *bi;
2118 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
2119 bi = (struct btrfs_tree_block_info *)(ei + 1);
2120 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
2121 }
2122}
2123
2124static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
2125 struct btrfs_root *root,
2126 struct btrfs_delayed_ref_node *node,
2127 struct btrfs_delayed_extent_op *extent_op)
2128{
2129 struct btrfs_key key;
2130 struct btrfs_path *path;
2131 struct btrfs_extent_item *ei;
2132 struct extent_buffer *leaf;
2133 u32 item_size;
2134 int ret;
2135 int err = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002136 int metadata = !extent_op->is_data;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002137
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002138 if (trans->aborted)
2139 return 0;
2140
Josef Bacik3173a182013-03-07 14:22:04 -05002141 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2142 metadata = 0;
2143
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002144 path = btrfs_alloc_path();
2145 if (!path)
2146 return -ENOMEM;
2147
2148 key.objectid = node->bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002149
Josef Bacik3173a182013-03-07 14:22:04 -05002150 if (metadata) {
Josef Bacik3173a182013-03-07 14:22:04 -05002151 key.type = BTRFS_METADATA_ITEM_KEY;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002152 key.offset = extent_op->level;
Josef Bacik3173a182013-03-07 14:22:04 -05002153 } else {
2154 key.type = BTRFS_EXTENT_ITEM_KEY;
2155 key.offset = node->num_bytes;
2156 }
2157
2158again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002159 path->reada = 1;
2160 path->leave_spinning = 1;
2161 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key,
2162 path, 0, 1);
2163 if (ret < 0) {
2164 err = ret;
2165 goto out;
2166 }
2167 if (ret > 0) {
Josef Bacik3173a182013-03-07 14:22:04 -05002168 if (metadata) {
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002169 if (path->slots[0] > 0) {
2170 path->slots[0]--;
2171 btrfs_item_key_to_cpu(path->nodes[0], &key,
2172 path->slots[0]);
2173 if (key.objectid == node->bytenr &&
2174 key.type == BTRFS_EXTENT_ITEM_KEY &&
2175 key.offset == node->num_bytes)
2176 ret = 0;
2177 }
2178 if (ret > 0) {
2179 btrfs_release_path(path);
2180 metadata = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002181
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002182 key.objectid = node->bytenr;
2183 key.offset = node->num_bytes;
2184 key.type = BTRFS_EXTENT_ITEM_KEY;
2185 goto again;
2186 }
2187 } else {
2188 err = -EIO;
2189 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05002190 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002191 }
2192
2193 leaf = path->nodes[0];
2194 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2195#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2196 if (item_size < sizeof(*ei)) {
2197 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
2198 path, (u64)-1, 0);
2199 if (ret < 0) {
2200 err = ret;
2201 goto out;
2202 }
2203 leaf = path->nodes[0];
2204 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2205 }
2206#endif
2207 BUG_ON(item_size < sizeof(*ei));
2208 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2209 __run_delayed_extent_op(extent_op, leaf, ei);
2210
2211 btrfs_mark_buffer_dirty(leaf);
2212out:
2213 btrfs_free_path(path);
2214 return err;
2215}
2216
2217static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
2218 struct btrfs_root *root,
2219 struct btrfs_delayed_ref_node *node,
2220 struct btrfs_delayed_extent_op *extent_op,
2221 int insert_reserved)
2222{
2223 int ret = 0;
2224 struct btrfs_delayed_tree_ref *ref;
2225 struct btrfs_key ins;
2226 u64 parent = 0;
2227 u64 ref_root = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002228 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
2229 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002230
2231 ref = btrfs_delayed_node_to_tree_ref(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002232 trace_run_delayed_tree_ref(node, ref, node->action);
2233
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002234 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2235 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002236 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002237
Josef Bacik3173a182013-03-07 14:22:04 -05002238 ins.objectid = node->bytenr;
2239 if (skinny_metadata) {
2240 ins.offset = ref->level;
2241 ins.type = BTRFS_METADATA_ITEM_KEY;
2242 } else {
2243 ins.offset = node->num_bytes;
2244 ins.type = BTRFS_EXTENT_ITEM_KEY;
2245 }
2246
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002247 BUG_ON(node->ref_mod != 1);
2248 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002249 BUG_ON(!extent_op || !extent_op->update_flags);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002250 ret = alloc_reserved_tree_block(trans, root,
2251 parent, ref_root,
2252 extent_op->flags_to_set,
2253 &extent_op->key,
Josef Bacikfcebe452014-05-13 17:30:47 -07002254 ref->level, &ins,
2255 node->no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002256 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
2257 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
2258 node->num_bytes, parent, ref_root,
Josef Bacikfcebe452014-05-13 17:30:47 -07002259 ref->level, 0, 1, node->no_quota,
2260 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002261 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
2262 ret = __btrfs_free_extent(trans, root, node->bytenr,
2263 node->num_bytes, parent, ref_root,
Josef Bacikfcebe452014-05-13 17:30:47 -07002264 ref->level, 0, 1, extent_op,
2265 node->no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002266 } else {
2267 BUG();
2268 }
2269 return ret;
2270}
2271
Chris Mason56bec292009-03-13 10:10:06 -04002272/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002273static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
2274 struct btrfs_root *root,
2275 struct btrfs_delayed_ref_node *node,
2276 struct btrfs_delayed_extent_op *extent_op,
2277 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002278{
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002279 int ret = 0;
2280
Josef Bacik857cc2f2013-10-07 15:21:08 -04002281 if (trans->aborted) {
2282 if (insert_reserved)
2283 btrfs_pin_extent(root, node->bytenr,
2284 node->num_bytes, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002285 return 0;
Josef Bacik857cc2f2013-10-07 15:21:08 -04002286 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002287
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002288 if (btrfs_delayed_ref_is_head(node)) {
Chris Mason56bec292009-03-13 10:10:06 -04002289 struct btrfs_delayed_ref_head *head;
2290 /*
2291 * we've hit the end of the chain and we were supposed
2292 * to insert this extent into the tree. But, it got
2293 * deleted before we ever needed to insert it, so all
2294 * we have to do is clean up the accounting
2295 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002296 BUG_ON(extent_op);
2297 head = btrfs_delayed_node_to_head(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002298 trace_run_delayed_ref_head(node, head, node->action);
2299
Chris Mason56bec292009-03-13 10:10:06 -04002300 if (insert_reserved) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04002301 btrfs_pin_extent(root, node->bytenr,
2302 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002303 if (head->is_data) {
2304 ret = btrfs_del_csums(trans, root,
2305 node->bytenr,
2306 node->num_bytes);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002307 }
Chris Mason56bec292009-03-13 10:10:06 -04002308 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002309 return ret;
Chris Mason56bec292009-03-13 10:10:06 -04002310 }
Josef Bacikeb099672009-02-12 09:27:38 -05002311
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002312 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2313 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2314 ret = run_delayed_tree_ref(trans, root, node, extent_op,
2315 insert_reserved);
2316 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2317 node->type == BTRFS_SHARED_DATA_REF_KEY)
2318 ret = run_delayed_data_ref(trans, root, node, extent_op,
2319 insert_reserved);
2320 else
2321 BUG();
2322 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002323}
2324
Chris Mason56bec292009-03-13 10:10:06 -04002325static noinline struct btrfs_delayed_ref_node *
2326select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002327{
Chris Mason56bec292009-03-13 10:10:06 -04002328 struct rb_node *node;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002329 struct btrfs_delayed_ref_node *ref, *last = NULL;;
2330
Chris Mason56bec292009-03-13 10:10:06 -04002331 /*
2332 * select delayed ref of type BTRFS_ADD_DELAYED_REF first.
2333 * this prevents ref count from going down to zero when
2334 * there still are pending delayed ref.
2335 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002336 node = rb_first(&head->ref_root);
2337 while (node) {
Chris Mason56bec292009-03-13 10:10:06 -04002338 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2339 rb_node);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002340 if (ref->action == BTRFS_ADD_DELAYED_REF)
Chris Mason56bec292009-03-13 10:10:06 -04002341 return ref;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002342 else if (last == NULL)
2343 last = ref;
2344 node = rb_next(node);
Chris Mason5f39d392007-10-15 16:14:19 -04002345 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002346 return last;
Chris Mason56bec292009-03-13 10:10:06 -04002347}
2348
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002349/*
2350 * Returns 0 on success or if called with an already aborted transaction.
2351 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2352 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002353static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2354 struct btrfs_root *root,
2355 unsigned long nr)
Chris Mason56bec292009-03-13 10:10:06 -04002356{
Chris Mason56bec292009-03-13 10:10:06 -04002357 struct btrfs_delayed_ref_root *delayed_refs;
2358 struct btrfs_delayed_ref_node *ref;
2359 struct btrfs_delayed_ref_head *locked_ref = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002360 struct btrfs_delayed_extent_op *extent_op;
Jan Schmidt097b8a72012-06-21 11:08:04 +02002361 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002362 ktime_t start = ktime_get();
Chris Mason56bec292009-03-13 10:10:06 -04002363 int ret;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002364 unsigned long count = 0;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002365 unsigned long actual_count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002366 int must_insert_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002367
2368 delayed_refs = &trans->transaction->delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002369 while (1) {
2370 if (!locked_ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002371 if (count >= nr)
Chris Mason56bec292009-03-13 10:10:06 -04002372 break;
Chris Mason56bec292009-03-13 10:10:06 -04002373
Josef Bacikd7df2c72014-01-23 09:21:38 -05002374 spin_lock(&delayed_refs->lock);
2375 locked_ref = btrfs_select_ref_head(trans);
2376 if (!locked_ref) {
2377 spin_unlock(&delayed_refs->lock);
2378 break;
2379 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002380
2381 /* grab the lock that says we are going to process
2382 * all the refs for this head */
2383 ret = btrfs_delayed_ref_lock(trans, locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002384 spin_unlock(&delayed_refs->lock);
Chris Masonc3e69d52009-03-13 10:17:05 -04002385 /*
2386 * we may have dropped the spin lock to get the head
2387 * mutex lock, and that might have given someone else
2388 * time to free the head. If that's true, it has been
2389 * removed from our list and we can move on.
2390 */
2391 if (ret == -EAGAIN) {
2392 locked_ref = NULL;
2393 count++;
2394 continue;
Chris Mason56bec292009-03-13 10:10:06 -04002395 }
2396 }
2397
2398 /*
Josef Bacikae1e2062012-08-07 16:00:32 -04002399 * We need to try and merge add/drops of the same ref since we
2400 * can run into issues with relocate dropping the implicit ref
2401 * and then it being added back again before the drop can
2402 * finish. If we merged anything we need to re-loop so we can
2403 * get a good ref.
2404 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002405 spin_lock(&locked_ref->lock);
Josef Bacikae1e2062012-08-07 16:00:32 -04002406 btrfs_merge_delayed_refs(trans, fs_info, delayed_refs,
2407 locked_ref);
2408
2409 /*
Arne Jansend1270cd2011-09-13 15:16:43 +02002410 * locked_ref is the head node, so we have to go one
2411 * node back for any delayed ref updates
2412 */
2413 ref = select_delayed_ref(locked_ref);
2414
2415 if (ref && ref->seq &&
Jan Schmidt097b8a72012-06-21 11:08:04 +02002416 btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002417 spin_unlock(&locked_ref->lock);
Miao Xie093486c2012-12-19 08:10:10 +00002418 btrfs_delayed_ref_unlock(locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002419 spin_lock(&delayed_refs->lock);
2420 locked_ref->processing = 0;
Arne Jansend1270cd2011-09-13 15:16:43 +02002421 delayed_refs->num_heads_ready++;
2422 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002423 locked_ref = NULL;
Arne Jansend1270cd2011-09-13 15:16:43 +02002424 cond_resched();
Josef Bacik27a377d2014-02-07 13:57:59 -05002425 count++;
Arne Jansend1270cd2011-09-13 15:16:43 +02002426 continue;
2427 }
2428
2429 /*
Chris Mason56bec292009-03-13 10:10:06 -04002430 * record the must insert reserved flag before we
2431 * drop the spin lock.
2432 */
2433 must_insert_reserved = locked_ref->must_insert_reserved;
2434 locked_ref->must_insert_reserved = 0;
2435
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002436 extent_op = locked_ref->extent_op;
2437 locked_ref->extent_op = NULL;
2438
Chris Mason56bec292009-03-13 10:10:06 -04002439 if (!ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002440
2441
Chris Mason56bec292009-03-13 10:10:06 -04002442 /* All delayed refs have been processed, Go ahead
2443 * and send the head node to run_one_delayed_ref,
2444 * so that any accounting fixes can happen
2445 */
2446 ref = &locked_ref->node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002447
2448 if (extent_op && must_insert_reserved) {
Miao Xie78a61842012-11-21 02:21:28 +00002449 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002450 extent_op = NULL;
2451 }
2452
2453 if (extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002454 spin_unlock(&locked_ref->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002455 ret = run_delayed_extent_op(trans, root,
2456 ref, extent_op);
Miao Xie78a61842012-11-21 02:21:28 +00002457 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002458
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002459 if (ret) {
Josef Bacik857cc2f2013-10-07 15:21:08 -04002460 /*
2461 * Need to reset must_insert_reserved if
2462 * there was an error so the abort stuff
2463 * can cleanup the reserved space
2464 * properly.
2465 */
2466 if (must_insert_reserved)
2467 locked_ref->must_insert_reserved = 1;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002468 locked_ref->processing = 0;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002469 btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret);
Miao Xie093486c2012-12-19 08:10:10 +00002470 btrfs_delayed_ref_unlock(locked_ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002471 return ret;
2472 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002473 continue;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002474 }
Chris Mason56bec292009-03-13 10:10:06 -04002475
Josef Bacikd7df2c72014-01-23 09:21:38 -05002476 /*
2477 * Need to drop our head ref lock and re-aqcuire the
2478 * delayed ref lock and then re-check to make sure
2479 * nobody got added.
2480 */
2481 spin_unlock(&locked_ref->lock);
2482 spin_lock(&delayed_refs->lock);
2483 spin_lock(&locked_ref->lock);
Josef Bacik573a0752014-03-27 19:41:34 -04002484 if (rb_first(&locked_ref->ref_root) ||
2485 locked_ref->extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002486 spin_unlock(&locked_ref->lock);
2487 spin_unlock(&delayed_refs->lock);
2488 continue;
2489 }
2490 ref->in_tree = 0;
2491 delayed_refs->num_heads--;
Liu Boc46effa2013-10-14 12:59:45 +08002492 rb_erase(&locked_ref->href_node,
2493 &delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002494 spin_unlock(&delayed_refs->lock);
2495 } else {
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002496 actual_count++;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002497 ref->in_tree = 0;
2498 rb_erase(&ref->rb_node, &locked_ref->ref_root);
Liu Boc46effa2013-10-14 12:59:45 +08002499 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002500 atomic_dec(&delayed_refs->num_entries);
2501
Miao Xie093486c2012-12-19 08:10:10 +00002502 if (!btrfs_delayed_ref_is_head(ref)) {
Arne Jansen22cd2e72012-08-09 00:16:53 -06002503 /*
2504 * when we play the delayed ref, also correct the
2505 * ref_mod on head
2506 */
2507 switch (ref->action) {
2508 case BTRFS_ADD_DELAYED_REF:
2509 case BTRFS_ADD_DELAYED_EXTENT:
2510 locked_ref->node.ref_mod -= ref->ref_mod;
2511 break;
2512 case BTRFS_DROP_DELAYED_REF:
2513 locked_ref->node.ref_mod += ref->ref_mod;
2514 break;
2515 default:
2516 WARN_ON(1);
2517 }
2518 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002519 spin_unlock(&locked_ref->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002520
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002521 ret = run_one_delayed_ref(trans, root, ref, extent_op,
Chris Mason56bec292009-03-13 10:10:06 -04002522 must_insert_reserved);
Chris Mason56bec292009-03-13 10:10:06 -04002523
Miao Xie78a61842012-11-21 02:21:28 +00002524 btrfs_free_delayed_extent_op(extent_op);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002525 if (ret) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002526 locked_ref->processing = 0;
Miao Xie093486c2012-12-19 08:10:10 +00002527 btrfs_delayed_ref_unlock(locked_ref);
2528 btrfs_put_delayed_ref(ref);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002529 btrfs_debug(fs_info, "run_one_delayed_ref returned %d", ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002530 return ret;
2531 }
2532
Miao Xie093486c2012-12-19 08:10:10 +00002533 /*
2534 * If this node is a head, that means all the refs in this head
2535 * have been dealt with, and we will pick the next head to deal
2536 * with, so we must unlock the head and drop it from the cluster
2537 * list before we release it.
2538 */
2539 if (btrfs_delayed_ref_is_head(ref)) {
Miao Xie093486c2012-12-19 08:10:10 +00002540 btrfs_delayed_ref_unlock(locked_ref);
2541 locked_ref = NULL;
2542 }
2543 btrfs_put_delayed_ref(ref);
2544 count++;
Chris Mason1887be62009-03-13 10:11:24 -04002545 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002546 }
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002547
2548 /*
2549 * We don't want to include ref heads since we can have empty ref heads
2550 * and those will drastically skew our runtime down since we just do
2551 * accounting, no actual extent tree updates.
2552 */
2553 if (actual_count > 0) {
2554 u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start));
2555 u64 avg;
2556
2557 /*
2558 * We weigh the current average higher than our current runtime
2559 * to avoid large swings in the average.
2560 */
2561 spin_lock(&delayed_refs->lock);
2562 avg = fs_info->avg_delayed_ref_runtime * 3 + runtime;
2563 avg = div64_u64(avg, 4);
2564 fs_info->avg_delayed_ref_runtime = avg;
2565 spin_unlock(&delayed_refs->lock);
2566 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002567 return 0;
Chris Masonc3e69d52009-03-13 10:17:05 -04002568}
2569
Arne Jansen709c0482011-09-12 12:22:57 +02002570#ifdef SCRAMBLE_DELAYED_REFS
2571/*
2572 * Normally delayed refs get processed in ascending bytenr order. This
2573 * correlates in most cases to the order added. To expose dependencies on this
2574 * order, we start to process the tree in the middle instead of the beginning
2575 */
2576static u64 find_middle(struct rb_root *root)
2577{
2578 struct rb_node *n = root->rb_node;
2579 struct btrfs_delayed_ref_node *entry;
2580 int alt = 1;
2581 u64 middle;
2582 u64 first = 0, last = 0;
2583
2584 n = rb_first(root);
2585 if (n) {
2586 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2587 first = entry->bytenr;
2588 }
2589 n = rb_last(root);
2590 if (n) {
2591 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2592 last = entry->bytenr;
2593 }
2594 n = root->rb_node;
2595
2596 while (n) {
2597 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2598 WARN_ON(!entry->in_tree);
2599
2600 middle = entry->bytenr;
2601
2602 if (alt)
2603 n = n->rb_left;
2604 else
2605 n = n->rb_right;
2606
2607 alt = 1 - alt;
2608 }
2609 return middle;
2610}
2611#endif
2612
Josef Bacik1be41b72013-06-12 13:56:06 -04002613static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads)
2614{
2615 u64 num_bytes;
2616
2617 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2618 sizeof(struct btrfs_extent_inline_ref));
2619 if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2620 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2621
2622 /*
2623 * We don't ever fill up leaves all the way so multiply by 2 just to be
2624 * closer to what we're really going to want to ouse.
2625 */
2626 return div64_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root));
2627}
2628
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002629int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans,
Josef Bacik1be41b72013-06-12 13:56:06 -04002630 struct btrfs_root *root)
2631{
2632 struct btrfs_block_rsv *global_rsv;
2633 u64 num_heads = trans->transaction->delayed_refs.num_heads_ready;
2634 u64 num_bytes;
2635 int ret = 0;
2636
2637 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
2638 num_heads = heads_to_leaves(root, num_heads);
2639 if (num_heads > 1)
David Sterba707e8a02014-06-04 19:22:26 +02002640 num_bytes += (num_heads - 1) * root->nodesize;
Josef Bacik1be41b72013-06-12 13:56:06 -04002641 num_bytes <<= 1;
2642 global_rsv = &root->fs_info->global_block_rsv;
2643
2644 /*
2645 * If we can't allocate any more chunks lets make sure we have _lots_ of
2646 * wiggle room since running delayed refs can create more delayed refs.
2647 */
2648 if (global_rsv->space_info->full)
2649 num_bytes <<= 1;
2650
2651 spin_lock(&global_rsv->lock);
2652 if (global_rsv->reserved <= num_bytes)
2653 ret = 1;
2654 spin_unlock(&global_rsv->lock);
2655 return ret;
2656}
2657
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002658int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans,
2659 struct btrfs_root *root)
2660{
2661 struct btrfs_fs_info *fs_info = root->fs_info;
2662 u64 num_entries =
2663 atomic_read(&trans->transaction->delayed_refs.num_entries);
2664 u64 avg_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002665 u64 val;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002666
2667 smp_mb();
2668 avg_runtime = fs_info->avg_delayed_ref_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002669 val = num_entries * avg_runtime;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002670 if (num_entries * avg_runtime >= NSEC_PER_SEC)
2671 return 1;
Chris Masona79b7d42014-05-22 16:18:52 -07002672 if (val >= NSEC_PER_SEC / 2)
2673 return 2;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002674
2675 return btrfs_check_space_for_delayed_refs(trans, root);
2676}
2677
Chris Masona79b7d42014-05-22 16:18:52 -07002678struct async_delayed_refs {
2679 struct btrfs_root *root;
2680 int count;
2681 int error;
2682 int sync;
2683 struct completion wait;
2684 struct btrfs_work work;
2685};
2686
2687static void delayed_ref_async_start(struct btrfs_work *work)
2688{
2689 struct async_delayed_refs *async;
2690 struct btrfs_trans_handle *trans;
2691 int ret;
2692
2693 async = container_of(work, struct async_delayed_refs, work);
2694
2695 trans = btrfs_join_transaction(async->root);
2696 if (IS_ERR(trans)) {
2697 async->error = PTR_ERR(trans);
2698 goto done;
2699 }
2700
2701 /*
2702 * trans->sync means that when we call end_transaciton, we won't
2703 * wait on delayed refs
2704 */
2705 trans->sync = true;
2706 ret = btrfs_run_delayed_refs(trans, async->root, async->count);
2707 if (ret)
2708 async->error = ret;
2709
2710 ret = btrfs_end_transaction(trans, async->root);
2711 if (ret && !async->error)
2712 async->error = ret;
2713done:
2714 if (async->sync)
2715 complete(&async->wait);
2716 else
2717 kfree(async);
2718}
2719
2720int btrfs_async_run_delayed_refs(struct btrfs_root *root,
2721 unsigned long count, int wait)
2722{
2723 struct async_delayed_refs *async;
2724 int ret;
2725
2726 async = kmalloc(sizeof(*async), GFP_NOFS);
2727 if (!async)
2728 return -ENOMEM;
2729
2730 async->root = root->fs_info->tree_root;
2731 async->count = count;
2732 async->error = 0;
2733 if (wait)
2734 async->sync = 1;
2735 else
2736 async->sync = 0;
2737 init_completion(&async->wait);
2738
Liu Bo9e0af232014-08-15 23:36:53 +08002739 btrfs_init_work(&async->work, btrfs_extent_refs_helper,
2740 delayed_ref_async_start, NULL, NULL);
Chris Masona79b7d42014-05-22 16:18:52 -07002741
2742 btrfs_queue_work(root->fs_info->extent_workers, &async->work);
2743
2744 if (wait) {
2745 wait_for_completion(&async->wait);
2746 ret = async->error;
2747 kfree(async);
2748 return ret;
2749 }
2750 return 0;
2751}
2752
Chris Masonc3e69d52009-03-13 10:17:05 -04002753/*
2754 * this starts processing the delayed reference count updates and
2755 * extent insertions we have queued up so far. count can be
2756 * 0, which means to process everything in the tree at the start
2757 * of the run (but not newly added entries), or it can be some target
2758 * number you'd like to process.
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002759 *
2760 * Returns 0 on success or if called with an aborted transaction
2761 * Returns <0 on error and aborts the transaction
Chris Masonc3e69d52009-03-13 10:17:05 -04002762 */
2763int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2764 struct btrfs_root *root, unsigned long count)
2765{
2766 struct rb_node *node;
2767 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boc46effa2013-10-14 12:59:45 +08002768 struct btrfs_delayed_ref_head *head;
Chris Masonc3e69d52009-03-13 10:17:05 -04002769 int ret;
2770 int run_all = count == (unsigned long)-1;
2771 int run_most = 0;
2772
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002773 /* We'll clean this up in btrfs_cleanup_transaction */
2774 if (trans->aborted)
2775 return 0;
2776
Chris Masonc3e69d52009-03-13 10:17:05 -04002777 if (root == root->fs_info->extent_root)
2778 root = root->fs_info->tree_root;
2779
2780 delayed_refs = &trans->transaction->delayed_refs;
Chris Masonbb721702013-01-29 18:44:12 -05002781 if (count == 0) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002782 count = atomic_read(&delayed_refs->num_entries) * 2;
Chris Masonbb721702013-01-29 18:44:12 -05002783 run_most = 1;
2784 }
2785
Chris Masonc3e69d52009-03-13 10:17:05 -04002786again:
Arne Jansen709c0482011-09-12 12:22:57 +02002787#ifdef SCRAMBLE_DELAYED_REFS
2788 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
2789#endif
Josef Bacikd7df2c72014-01-23 09:21:38 -05002790 ret = __btrfs_run_delayed_refs(trans, root, count);
2791 if (ret < 0) {
2792 btrfs_abort_transaction(trans, root, ret);
2793 return ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04002794 }
2795
Chris Mason56bec292009-03-13 10:10:06 -04002796 if (run_all) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002797 if (!list_empty(&trans->new_bgs))
Josef Bacikea658ba2012-09-11 16:57:25 -04002798 btrfs_create_pending_block_groups(trans, root);
Josef Bacikea658ba2012-09-11 16:57:25 -04002799
Josef Bacikd7df2c72014-01-23 09:21:38 -05002800 spin_lock(&delayed_refs->lock);
Liu Boc46effa2013-10-14 12:59:45 +08002801 node = rb_first(&delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002802 if (!node) {
2803 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002804 goto out;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002805 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002806 count = (unsigned long)-1;
Chris Mason56bec292009-03-13 10:10:06 -04002807
2808 while (node) {
Liu Boc46effa2013-10-14 12:59:45 +08002809 head = rb_entry(node, struct btrfs_delayed_ref_head,
2810 href_node);
2811 if (btrfs_delayed_ref_is_head(&head->node)) {
2812 struct btrfs_delayed_ref_node *ref;
Chris Mason56bec292009-03-13 10:10:06 -04002813
Liu Boc46effa2013-10-14 12:59:45 +08002814 ref = &head->node;
Chris Mason56bec292009-03-13 10:10:06 -04002815 atomic_inc(&ref->refs);
2816
2817 spin_unlock(&delayed_refs->lock);
David Sterba8cc33e52011-05-02 15:29:25 +02002818 /*
2819 * Mutex was contended, block until it's
2820 * released and try again
2821 */
Chris Mason56bec292009-03-13 10:10:06 -04002822 mutex_lock(&head->mutex);
2823 mutex_unlock(&head->mutex);
2824
2825 btrfs_put_delayed_ref(ref);
Chris Mason1887be62009-03-13 10:11:24 -04002826 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002827 goto again;
Liu Boc46effa2013-10-14 12:59:45 +08002828 } else {
2829 WARN_ON(1);
Chris Mason56bec292009-03-13 10:10:06 -04002830 }
2831 node = rb_next(node);
2832 }
2833 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002834 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002835 goto again;
2836 }
Chris Mason54aa1f42007-06-22 14:16:25 -04002837out:
Josef Bacikfcebe452014-05-13 17:30:47 -07002838 ret = btrfs_delayed_qgroup_accounting(trans, root->fs_info);
2839 if (ret)
2840 return ret;
Jan Schmidtedf39272012-06-28 18:04:55 +02002841 assert_qgroups_uptodate(trans);
Chris Masona28ec192007-03-06 20:08:01 -05002842 return 0;
2843}
2844
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002845int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
2846 struct btrfs_root *root,
2847 u64 bytenr, u64 num_bytes, u64 flags,
Josef Bacikb1c79e02013-05-09 13:49:30 -04002848 int level, int is_data)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002849{
2850 struct btrfs_delayed_extent_op *extent_op;
2851 int ret;
2852
Miao Xie78a61842012-11-21 02:21:28 +00002853 extent_op = btrfs_alloc_delayed_extent_op();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002854 if (!extent_op)
2855 return -ENOMEM;
2856
2857 extent_op->flags_to_set = flags;
2858 extent_op->update_flags = 1;
2859 extent_op->update_key = 0;
2860 extent_op->is_data = is_data ? 1 : 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002861 extent_op->level = level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002862
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002863 ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr,
2864 num_bytes, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002865 if (ret)
Miao Xie78a61842012-11-21 02:21:28 +00002866 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002867 return ret;
2868}
2869
2870static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
2871 struct btrfs_root *root,
2872 struct btrfs_path *path,
2873 u64 objectid, u64 offset, u64 bytenr)
2874{
2875 struct btrfs_delayed_ref_head *head;
2876 struct btrfs_delayed_ref_node *ref;
2877 struct btrfs_delayed_data_ref *data_ref;
2878 struct btrfs_delayed_ref_root *delayed_refs;
2879 struct rb_node *node;
2880 int ret = 0;
2881
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002882 delayed_refs = &trans->transaction->delayed_refs;
2883 spin_lock(&delayed_refs->lock);
2884 head = btrfs_find_delayed_ref_head(trans, bytenr);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002885 if (!head) {
2886 spin_unlock(&delayed_refs->lock);
2887 return 0;
2888 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002889
2890 if (!mutex_trylock(&head->mutex)) {
2891 atomic_inc(&head->node.refs);
2892 spin_unlock(&delayed_refs->lock);
2893
David Sterbab3b4aa72011-04-21 01:20:15 +02002894 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002895
David Sterba8cc33e52011-05-02 15:29:25 +02002896 /*
2897 * Mutex was contended, block until it's released and let
2898 * caller try again
2899 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002900 mutex_lock(&head->mutex);
2901 mutex_unlock(&head->mutex);
2902 btrfs_put_delayed_ref(&head->node);
2903 return -EAGAIN;
2904 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002905 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002906
2907 spin_lock(&head->lock);
2908 node = rb_first(&head->ref_root);
2909 while (node) {
2910 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
2911 node = rb_next(node);
2912
2913 /* If it's a shared ref we know a cross reference exists */
2914 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) {
2915 ret = 1;
2916 break;
2917 }
2918
2919 data_ref = btrfs_delayed_node_to_data_ref(ref);
2920
2921 /*
2922 * If our ref doesn't match the one we're currently looking at
2923 * then we have a cross reference.
2924 */
2925 if (data_ref->root != root->root_key.objectid ||
2926 data_ref->objectid != objectid ||
2927 data_ref->offset != offset) {
2928 ret = 1;
2929 break;
2930 }
2931 }
2932 spin_unlock(&head->lock);
2933 mutex_unlock(&head->mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002934 return ret;
2935}
2936
2937static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
2938 struct btrfs_root *root,
2939 struct btrfs_path *path,
2940 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05002941{
2942 struct btrfs_root *extent_root = root->fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04002943 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002944 struct btrfs_extent_data_ref *ref;
2945 struct btrfs_extent_inline_ref *iref;
2946 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05002947 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002948 u32 item_size;
Yan Zhengf321e492008-07-30 09:26:11 -04002949 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05002950
Chris Masonbe20aa92007-12-17 20:14:01 -05002951 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04002952 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04002953 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05002954
Chris Masonbe20aa92007-12-17 20:14:01 -05002955 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2956 if (ret < 0)
2957 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002958 BUG_ON(ret == 0); /* Corruption */
Yan Zheng80ff3852008-10-30 14:20:02 -04002959
2960 ret = -ENOENT;
2961 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04002962 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002963
Zheng Yan31840ae2008-09-23 13:14:14 -04002964 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04002965 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002966 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05002967
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002968 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05002969 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002970
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002971 ret = 1;
2972 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2973#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2974 if (item_size < sizeof(*ei)) {
2975 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
2976 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002977 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002978#endif
2979 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2980
2981 if (item_size != sizeof(*ei) +
2982 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
2983 goto out;
2984
2985 if (btrfs_extent_generation(leaf, ei) <=
2986 btrfs_root_last_snapshot(&root->root_item))
2987 goto out;
2988
2989 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
2990 if (btrfs_extent_inline_ref_type(leaf, iref) !=
2991 BTRFS_EXTENT_DATA_REF_KEY)
2992 goto out;
2993
2994 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
2995 if (btrfs_extent_refs(leaf, ei) !=
2996 btrfs_extent_data_ref_count(leaf, ref) ||
2997 btrfs_extent_data_ref_root(leaf, ref) !=
2998 root->root_key.objectid ||
2999 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
3000 btrfs_extent_data_ref_offset(leaf, ref) != offset)
3001 goto out;
3002
Yan Zhengf321e492008-07-30 09:26:11 -04003003 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05003004out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003005 return ret;
3006}
3007
3008int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
3009 struct btrfs_root *root,
3010 u64 objectid, u64 offset, u64 bytenr)
3011{
3012 struct btrfs_path *path;
3013 int ret;
3014 int ret2;
3015
3016 path = btrfs_alloc_path();
3017 if (!path)
3018 return -ENOENT;
3019
3020 do {
3021 ret = check_committed_ref(trans, root, path, objectid,
3022 offset, bytenr);
3023 if (ret && ret != -ENOENT)
3024 goto out;
3025
3026 ret2 = check_delayed_ref(trans, root, path, objectid,
3027 offset, bytenr);
3028 } while (ret2 == -EAGAIN);
3029
3030 if (ret2 && ret2 != -ENOENT) {
3031 ret = ret2;
3032 goto out;
3033 }
3034
3035 if (ret != -ENOENT || ret2 != -ENOENT)
3036 ret = 0;
3037out:
Yan Zhengf321e492008-07-30 09:26:11 -04003038 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003039 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3040 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04003041 return ret;
3042}
3043
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003044static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05003045 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003046 struct extent_buffer *buf,
Josef Bacike339a6b2014-07-02 10:54:25 -07003047 int full_backref, int inc)
Zheng Yan31840ae2008-09-23 13:14:14 -04003048{
3049 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003050 u64 num_bytes;
3051 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003052 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04003053 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04003054 struct btrfs_key key;
3055 struct btrfs_file_extent_item *fi;
3056 int i;
3057 int level;
3058 int ret = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04003059 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003060 u64, u64, u64, u64, u64, u64, int);
Zheng Yan31840ae2008-09-23 13:14:14 -04003061
David Sterbafccb84c2014-09-29 23:53:21 +02003062
3063 if (btrfs_test_is_dummy_root(root))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04003064 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02003065
Zheng Yan31840ae2008-09-23 13:14:14 -04003066 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04003067 nritems = btrfs_header_nritems(buf);
3068 level = btrfs_header_level(buf);
3069
Miao Xie27cdeb72014-04-02 19:51:05 +08003070 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003071 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05003072
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003073 if (inc)
3074 process_func = btrfs_inc_extent_ref;
3075 else
3076 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003077
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003078 if (full_backref)
3079 parent = buf->start;
3080 else
3081 parent = 0;
3082
Zheng Yan31840ae2008-09-23 13:14:14 -04003083 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04003084 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003085 btrfs_item_key_to_cpu(buf, &key, i);
David Sterba962a2982014-06-04 18:41:45 +02003086 if (key.type != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04003087 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003088 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04003089 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003090 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04003091 BTRFS_FILE_EXTENT_INLINE)
3092 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003093 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3094 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04003095 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003096
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003097 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3098 key.offset -= btrfs_file_extent_offset(buf, fi);
3099 ret = process_func(trans, root, bytenr, num_bytes,
3100 parent, ref_root, key.objectid,
Josef Bacike339a6b2014-07-02 10:54:25 -07003101 key.offset, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003102 if (ret)
3103 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05003104 } else {
3105 bytenr = btrfs_node_blockptr(buf, i);
David Sterba707e8a02014-06-04 19:22:26 +02003106 num_bytes = root->nodesize;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003107 ret = process_func(trans, root, bytenr, num_bytes,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003108 parent, ref_root, level - 1, 0,
Josef Bacike339a6b2014-07-02 10:54:25 -07003109 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003110 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04003111 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04003112 }
3113 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003114 return 0;
3115fail:
Chris Mason54aa1f42007-06-22 14:16:25 -04003116 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05003117}
3118
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003119int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003120 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04003121{
Josef Bacike339a6b2014-07-02 10:54:25 -07003122 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003123}
Zheng Yan31840ae2008-09-23 13:14:14 -04003124
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003125int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003126 struct extent_buffer *buf, int full_backref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003127{
Josef Bacike339a6b2014-07-02 10:54:25 -07003128 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003129}
3130
Chris Mason9078a3e2007-04-26 16:46:15 -04003131static int write_one_cache_group(struct btrfs_trans_handle *trans,
3132 struct btrfs_root *root,
3133 struct btrfs_path *path,
3134 struct btrfs_block_group_cache *cache)
3135{
3136 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003137 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003138 unsigned long bi;
3139 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04003140
Chris Mason9078a3e2007-04-26 16:46:15 -04003141 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003142 if (ret < 0)
3143 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003144 BUG_ON(ret); /* Corruption */
Chris Mason5f39d392007-10-15 16:14:19 -04003145
3146 leaf = path->nodes[0];
3147 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3148 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3149 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003150 btrfs_release_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04003151fail:
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003152 if (ret) {
3153 btrfs_abort_transaction(trans, root, ret);
Chris Mason9078a3e2007-04-26 16:46:15 -04003154 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003155 }
Chris Mason9078a3e2007-04-26 16:46:15 -04003156 return 0;
3157
3158}
3159
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003160static struct btrfs_block_group_cache *
3161next_block_group(struct btrfs_root *root,
3162 struct btrfs_block_group_cache *cache)
3163{
3164 struct rb_node *node;
Filipe Manana292cbd52014-11-26 15:28:50 +00003165
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003166 spin_lock(&root->fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003167
3168 /* If our block group was removed, we need a full search. */
3169 if (RB_EMPTY_NODE(&cache->cache_node)) {
3170 const u64 next_bytenr = cache->key.objectid + cache->key.offset;
3171
3172 spin_unlock(&root->fs_info->block_group_cache_lock);
3173 btrfs_put_block_group(cache);
3174 cache = btrfs_lookup_first_block_group(root->fs_info,
3175 next_bytenr);
3176 return cache;
3177 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003178 node = rb_next(&cache->cache_node);
3179 btrfs_put_block_group(cache);
3180 if (node) {
3181 cache = rb_entry(node, struct btrfs_block_group_cache,
3182 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00003183 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003184 } else
3185 cache = NULL;
3186 spin_unlock(&root->fs_info->block_group_cache_lock);
3187 return cache;
3188}
3189
Josef Bacik0af3d002010-06-21 14:48:16 -04003190static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3191 struct btrfs_trans_handle *trans,
3192 struct btrfs_path *path)
3193{
3194 struct btrfs_root *root = block_group->fs_info->tree_root;
3195 struct inode *inode = NULL;
3196 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05003197 int dcs = BTRFS_DC_ERROR;
Josef Bacik0af3d002010-06-21 14:48:16 -04003198 int num_pages = 0;
3199 int retries = 0;
3200 int ret = 0;
3201
3202 /*
3203 * If this block group is smaller than 100 megs don't bother caching the
3204 * block group.
3205 */
3206 if (block_group->key.offset < (100 * 1024 * 1024)) {
3207 spin_lock(&block_group->lock);
3208 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3209 spin_unlock(&block_group->lock);
3210 return 0;
3211 }
3212
3213again:
3214 inode = lookup_free_space_inode(root, block_group, path);
3215 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3216 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02003217 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003218 goto out;
3219 }
3220
3221 if (IS_ERR(inode)) {
3222 BUG_ON(retries);
3223 retries++;
3224
3225 if (block_group->ro)
3226 goto out_free;
3227
3228 ret = create_free_space_inode(root, trans, block_group, path);
3229 if (ret)
3230 goto out_free;
3231 goto again;
3232 }
3233
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003234 /* We've already setup this transaction, go ahead and exit */
3235 if (block_group->cache_generation == trans->transid &&
3236 i_size_read(inode)) {
3237 dcs = BTRFS_DC_SETUP;
3238 goto out_put;
3239 }
3240
Josef Bacik0af3d002010-06-21 14:48:16 -04003241 /*
3242 * We want to set the generation to 0, that way if anything goes wrong
3243 * from here on out we know not to trust this cache when we load up next
3244 * time.
3245 */
3246 BTRFS_I(inode)->generation = 0;
3247 ret = btrfs_update_inode(trans, root, inode);
3248 WARN_ON(ret);
3249
3250 if (i_size_read(inode) > 0) {
Miao Xie7b61cd92013-05-13 13:55:09 +00003251 ret = btrfs_check_trunc_cache_free_space(root,
3252 &root->fs_info->global_block_rsv);
3253 if (ret)
3254 goto out_put;
3255
Filipe David Borba Manana74514322013-09-20 14:46:51 +01003256 ret = btrfs_truncate_free_space_cache(root, trans, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003257 if (ret)
3258 goto out_put;
3259 }
3260
3261 spin_lock(&block_group->lock);
Liu Bocf7c1ef2012-07-06 03:31:34 -06003262 if (block_group->cached != BTRFS_CACHE_FINISHED ||
Miao Xiee570fd22014-06-19 10:42:50 +08003263 !btrfs_test_opt(root, SPACE_CACHE) ||
3264 block_group->delalloc_bytes) {
Liu Bocf7c1ef2012-07-06 03:31:34 -06003265 /*
3266 * don't bother trying to write stuff out _if_
3267 * a) we're not cached,
3268 * b) we're with nospace_cache mount option.
3269 */
Josef Bacik2b209822010-12-03 13:17:53 -05003270 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04003271 spin_unlock(&block_group->lock);
3272 goto out_put;
3273 }
3274 spin_unlock(&block_group->lock);
3275
Josef Bacik6fc823b2012-08-06 13:46:38 -06003276 /*
3277 * Try to preallocate enough space based on how big the block group is.
3278 * Keep in mind this has to include any pinned space which could end up
3279 * taking up quite a bit since it's not folded into the other space
3280 * cache.
3281 */
3282 num_pages = (int)div64_u64(block_group->key.offset, 256 * 1024 * 1024);
Josef Bacik0af3d002010-06-21 14:48:16 -04003283 if (!num_pages)
3284 num_pages = 1;
3285
Josef Bacik0af3d002010-06-21 14:48:16 -04003286 num_pages *= 16;
3287 num_pages *= PAGE_CACHE_SIZE;
3288
3289 ret = btrfs_check_data_free_space(inode, num_pages);
3290 if (ret)
3291 goto out_put;
3292
3293 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3294 num_pages, num_pages,
3295 &alloc_hint);
Josef Bacik2b209822010-12-03 13:17:53 -05003296 if (!ret)
3297 dcs = BTRFS_DC_SETUP;
Josef Bacik0af3d002010-06-21 14:48:16 -04003298 btrfs_free_reserved_data_space(inode, num_pages);
Josef Bacikc09544e2011-08-30 10:19:10 -04003299
Josef Bacik0af3d002010-06-21 14:48:16 -04003300out_put:
3301 iput(inode);
3302out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02003303 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003304out:
3305 spin_lock(&block_group->lock);
Josef Bacike65cbb92011-12-13 16:04:54 -05003306 if (!ret && dcs == BTRFS_DC_SETUP)
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003307 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05003308 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04003309 spin_unlock(&block_group->lock);
3310
3311 return ret;
3312}
3313
Chris Mason96b51792007-10-15 16:15:19 -04003314int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
3315 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04003316{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003317 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04003318 int err = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003319 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -04003320 u64 last = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003321
3322 path = btrfs_alloc_path();
3323 if (!path)
3324 return -ENOMEM;
3325
Josef Bacik0af3d002010-06-21 14:48:16 -04003326again:
3327 while (1) {
3328 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3329 while (cache) {
3330 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3331 break;
3332 cache = next_block_group(root, cache);
3333 }
3334 if (!cache) {
3335 if (last == 0)
3336 break;
3337 last = 0;
3338 continue;
3339 }
3340 err = cache_save_setup(cache, trans, path);
3341 last = cache->key.objectid + cache->key.offset;
3342 btrfs_put_block_group(cache);
3343 }
3344
Chris Masond3977122009-01-05 21:25:51 -05003345 while (1) {
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003346 if (last == 0) {
3347 err = btrfs_run_delayed_refs(trans, root,
3348 (unsigned long)-1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003349 if (err) /* File system offline */
3350 goto out;
Josef Bacik0f9dd462008-09-23 13:14:11 -04003351 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04003352
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003353 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3354 while (cache) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003355 if (cache->disk_cache_state == BTRFS_DC_CLEAR) {
3356 btrfs_put_block_group(cache);
3357 goto again;
3358 }
3359
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003360 if (cache->dirty)
3361 break;
3362 cache = next_block_group(root, cache);
3363 }
3364 if (!cache) {
3365 if (last == 0)
3366 break;
3367 last = 0;
Chris Mason96b51792007-10-15 16:15:19 -04003368 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -04003369 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003370
Josef Bacik0cb59c92010-07-02 12:14:14 -04003371 if (cache->disk_cache_state == BTRFS_DC_SETUP)
3372 cache->disk_cache_state = BTRFS_DC_NEED_WRITE;
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003373 cache->dirty = 0;
3374 last = cache->key.objectid + cache->key.offset;
3375
3376 err = write_one_cache_group(trans, root, path, cache);
Filipe David Borba Mananae84cc142013-09-09 19:49:43 +01003377 btrfs_put_block_group(cache);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003378 if (err) /* File system offline */
3379 goto out;
Chris Mason9078a3e2007-04-26 16:46:15 -04003380 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003381
Josef Bacik0cb59c92010-07-02 12:14:14 -04003382 while (1) {
3383 /*
3384 * I don't think this is needed since we're just marking our
3385 * preallocated extent as written, but just in case it can't
3386 * hurt.
3387 */
3388 if (last == 0) {
3389 err = btrfs_run_delayed_refs(trans, root,
3390 (unsigned long)-1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003391 if (err) /* File system offline */
3392 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -04003393 }
3394
3395 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3396 while (cache) {
3397 /*
3398 * Really this shouldn't happen, but it could if we
3399 * couldn't write the entire preallocated extent and
3400 * splitting the extent resulted in a new block.
3401 */
3402 if (cache->dirty) {
3403 btrfs_put_block_group(cache);
3404 goto again;
3405 }
3406 if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
3407 break;
3408 cache = next_block_group(root, cache);
3409 }
3410 if (!cache) {
3411 if (last == 0)
3412 break;
3413 last = 0;
3414 continue;
3415 }
3416
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003417 err = btrfs_write_out_cache(root, trans, cache, path);
Josef Bacik0cb59c92010-07-02 12:14:14 -04003418
3419 /*
3420 * If we didn't have an error then the cache state is still
3421 * NEED_WRITE, so we can set it to WRITTEN.
3422 */
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003423 if (!err && cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
Josef Bacik0cb59c92010-07-02 12:14:14 -04003424 cache->disk_cache_state = BTRFS_DC_WRITTEN;
3425 last = cache->key.objectid + cache->key.offset;
3426 btrfs_put_block_group(cache);
3427 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003428out:
Josef Bacik0cb59c92010-07-02 12:14:14 -04003429
Chris Mason9078a3e2007-04-26 16:46:15 -04003430 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003431 return err;
Chris Mason9078a3e2007-04-26 16:46:15 -04003432}
3433
Yan Zhengd2fb3432008-12-11 16:30:39 -05003434int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
3435{
3436 struct btrfs_block_group_cache *block_group;
3437 int readonly = 0;
3438
3439 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
3440 if (!block_group || block_group->ro)
3441 readonly = 1;
3442 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04003443 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003444 return readonly;
3445}
3446
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003447static const char *alloc_name(u64 flags)
3448{
3449 switch (flags) {
3450 case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA:
3451 return "mixed";
3452 case BTRFS_BLOCK_GROUP_METADATA:
3453 return "metadata";
3454 case BTRFS_BLOCK_GROUP_DATA:
3455 return "data";
3456 case BTRFS_BLOCK_GROUP_SYSTEM:
3457 return "system";
3458 default:
3459 WARN_ON(1);
3460 return "invalid-combination";
3461 };
3462}
3463
Chris Mason593060d2008-03-25 16:50:33 -04003464static int update_space_info(struct btrfs_fs_info *info, u64 flags,
3465 u64 total_bytes, u64 bytes_used,
3466 struct btrfs_space_info **space_info)
3467{
3468 struct btrfs_space_info *found;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003469 int i;
3470 int factor;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003471 int ret;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003472
3473 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
3474 BTRFS_BLOCK_GROUP_RAID10))
3475 factor = 2;
3476 else
3477 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04003478
3479 found = __find_space_info(info, flags);
3480 if (found) {
Josef Bacik25179202008-10-29 14:49:05 -04003481 spin_lock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003482 found->total_bytes += total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003483 found->disk_total += total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003484 found->bytes_used += bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003485 found->disk_used += bytes_used * factor;
Chris Mason8f18cf12008-04-25 16:53:30 -04003486 found->full = 0;
Josef Bacik25179202008-10-29 14:49:05 -04003487 spin_unlock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003488 *space_info = found;
3489 return 0;
3490 }
Yan Zhengc146afa2008-11-12 14:34:12 -05003491 found = kzalloc(sizeof(*found), GFP_NOFS);
Chris Mason593060d2008-03-25 16:50:33 -04003492 if (!found)
3493 return -ENOMEM;
3494
Tejun Heo908c7f12014-09-08 09:51:29 +09003495 ret = percpu_counter_init(&found->total_bytes_pinned, 0, GFP_KERNEL);
Josef Bacikb150a4f2013-06-19 15:00:04 -04003496 if (ret) {
3497 kfree(found);
3498 return ret;
3499 }
3500
Jeff Mahoneyc1895442014-05-27 12:59:57 -04003501 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
Yan, Zhengb742bb82010-05-16 10:46:24 -04003502 INIT_LIST_HEAD(&found->block_groups[i]);
Josef Bacik80eb2342008-10-29 14:49:05 -04003503 init_rwsem(&found->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003504 spin_lock_init(&found->lock);
Ilya Dryomov52ba6922012-01-16 22:04:47 +02003505 found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
Chris Mason593060d2008-03-25 16:50:33 -04003506 found->total_bytes = total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003507 found->disk_total = total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003508 found->bytes_used = bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003509 found->disk_used = bytes_used * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003510 found->bytes_pinned = 0;
Zheng Yane8569812008-09-26 10:05:48 -04003511 found->bytes_reserved = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003512 found->bytes_readonly = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003513 found->bytes_may_use = 0;
Chris Mason593060d2008-03-25 16:50:33 -04003514 found->full = 0;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003515 found->force_alloc = CHUNK_ALLOC_NO_FORCE;
Josef Bacik6d741192011-04-11 20:20:11 -04003516 found->chunk_alloc = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003517 found->flush = 0;
3518 init_waitqueue_head(&found->wait);
Josef Bacik633c0aa2014-10-31 09:49:34 -04003519 INIT_LIST_HEAD(&found->ro_bgs);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003520
3521 ret = kobject_init_and_add(&found->kobj, &space_info_ktype,
3522 info->space_info_kobj, "%s",
3523 alloc_name(found->flags));
3524 if (ret) {
3525 kfree(found);
3526 return ret;
3527 }
3528
Chris Mason593060d2008-03-25 16:50:33 -04003529 *space_info = found;
Chris Mason4184ea72009-03-10 12:39:20 -04003530 list_add_rcu(&found->list, &info->space_info);
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003531 if (flags & BTRFS_BLOCK_GROUP_DATA)
3532 info->data_sinfo = found;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003533
3534 return ret;
Chris Mason593060d2008-03-25 16:50:33 -04003535}
3536
Chris Mason8790d502008-04-03 16:29:03 -04003537static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3538{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003539 u64 extra_flags = chunk_to_extended(flags) &
3540 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003541
Miao Xiede98ced2013-01-29 10:13:12 +00003542 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003543 if (flags & BTRFS_BLOCK_GROUP_DATA)
3544 fs_info->avail_data_alloc_bits |= extra_flags;
3545 if (flags & BTRFS_BLOCK_GROUP_METADATA)
3546 fs_info->avail_metadata_alloc_bits |= extra_flags;
3547 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3548 fs_info->avail_system_alloc_bits |= extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003549 write_sequnlock(&fs_info->profiles_lock);
Chris Mason8790d502008-04-03 16:29:03 -04003550}
Chris Mason593060d2008-03-25 16:50:33 -04003551
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003552/*
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003553 * returns target flags in extended format or 0 if restripe for this
3554 * chunk_type is not in progress
Ilya Dryomovc6664b42012-04-12 16:03:56 -04003555 *
3556 * should be called with either volume_mutex or balance_lock held
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003557 */
3558static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
3559{
3560 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3561 u64 target = 0;
3562
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003563 if (!bctl)
3564 return 0;
3565
3566 if (flags & BTRFS_BLOCK_GROUP_DATA &&
3567 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3568 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
3569 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
3570 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3571 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
3572 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
3573 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3574 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
3575 }
3576
3577 return target;
3578}
3579
3580/*
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003581 * @flags: available profiles in extended format (see ctree.h)
3582 *
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003583 * Returns reduced profile in chunk format. If profile changing is in
3584 * progress (either running or paused) picks the target profile (if it's
3585 * already available), otherwise falls back to plain reducing.
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003586 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003587static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04003588{
Miao Xie95669972014-07-24 11:37:14 +08003589 u64 num_devices = root->fs_info->fs_devices->rw_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003590 u64 target;
David Woodhouse53b381b2013-01-29 18:40:14 -05003591 u64 tmp;
Chris Masona061fc82008-05-07 11:43:44 -04003592
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003593 /*
3594 * see if restripe for this chunk_type is in progress, if so
3595 * try to reduce to the target profile
3596 */
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003597 spin_lock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003598 target = get_restripe_target(root->fs_info, flags);
3599 if (target) {
3600 /* pick target profile only if it's already available */
3601 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003602 spin_unlock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003603 return extended_to_chunk(target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003604 }
3605 }
3606 spin_unlock(&root->fs_info->balance_lock);
3607
David Woodhouse53b381b2013-01-29 18:40:14 -05003608 /* First, mask out the RAID levels which aren't possible */
Chris Masona061fc82008-05-07 11:43:44 -04003609 if (num_devices == 1)
David Woodhouse53b381b2013-01-29 18:40:14 -05003610 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0 |
3611 BTRFS_BLOCK_GROUP_RAID5);
3612 if (num_devices < 3)
3613 flags &= ~BTRFS_BLOCK_GROUP_RAID6;
Chris Masona061fc82008-05-07 11:43:44 -04003614 if (num_devices < 4)
3615 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
3616
David Woodhouse53b381b2013-01-29 18:40:14 -05003617 tmp = flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID0 |
3618 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID5 |
3619 BTRFS_BLOCK_GROUP_RAID6 | BTRFS_BLOCK_GROUP_RAID10);
3620 flags &= ~tmp;
Chris Masonec44a352008-04-28 15:29:52 -04003621
David Woodhouse53b381b2013-01-29 18:40:14 -05003622 if (tmp & BTRFS_BLOCK_GROUP_RAID6)
3623 tmp = BTRFS_BLOCK_GROUP_RAID6;
3624 else if (tmp & BTRFS_BLOCK_GROUP_RAID5)
3625 tmp = BTRFS_BLOCK_GROUP_RAID5;
3626 else if (tmp & BTRFS_BLOCK_GROUP_RAID10)
3627 tmp = BTRFS_BLOCK_GROUP_RAID10;
3628 else if (tmp & BTRFS_BLOCK_GROUP_RAID1)
3629 tmp = BTRFS_BLOCK_GROUP_RAID1;
3630 else if (tmp & BTRFS_BLOCK_GROUP_RAID0)
3631 tmp = BTRFS_BLOCK_GROUP_RAID0;
Chris Masonec44a352008-04-28 15:29:52 -04003632
David Woodhouse53b381b2013-01-29 18:40:14 -05003633 return extended_to_chunk(flags | tmp);
Chris Masonec44a352008-04-28 15:29:52 -04003634}
3635
Filipe Mananaf8213bd2014-04-24 15:15:29 +01003636static u64 get_alloc_profile(struct btrfs_root *root, u64 orig_flags)
Josef Bacik6a632092009-02-20 11:00:09 -05003637{
Miao Xiede98ced2013-01-29 10:13:12 +00003638 unsigned seq;
Filipe Mananaf8213bd2014-04-24 15:15:29 +01003639 u64 flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003640
3641 do {
Filipe Mananaf8213bd2014-04-24 15:15:29 +01003642 flags = orig_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003643 seq = read_seqbegin(&root->fs_info->profiles_lock);
3644
3645 if (flags & BTRFS_BLOCK_GROUP_DATA)
3646 flags |= root->fs_info->avail_data_alloc_bits;
3647 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3648 flags |= root->fs_info->avail_system_alloc_bits;
3649 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
3650 flags |= root->fs_info->avail_metadata_alloc_bits;
3651 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02003652
Yan, Zhengb742bb82010-05-16 10:46:24 -04003653 return btrfs_reduce_alloc_profile(root, flags);
3654}
Josef Bacik6a632092009-02-20 11:00:09 -05003655
Miao Xie6d07bce2011-01-05 10:07:31 +00003656u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
Yan, Zhengb742bb82010-05-16 10:46:24 -04003657{
3658 u64 flags;
David Woodhouse53b381b2013-01-29 18:40:14 -05003659 u64 ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003660
Yan, Zhengb742bb82010-05-16 10:46:24 -04003661 if (data)
3662 flags = BTRFS_BLOCK_GROUP_DATA;
3663 else if (root == root->fs_info->chunk_root)
3664 flags = BTRFS_BLOCK_GROUP_SYSTEM;
3665 else
3666 flags = BTRFS_BLOCK_GROUP_METADATA;
3667
David Woodhouse53b381b2013-01-29 18:40:14 -05003668 ret = get_alloc_profile(root, flags);
3669 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003670}
3671
Josef Bacik6a632092009-02-20 11:00:09 -05003672/*
3673 * This will check the space that the inode allocates from to make sure we have
3674 * enough space for bytes.
3675 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003676int btrfs_check_data_free_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003677{
3678 struct btrfs_space_info *data_sinfo;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003679 struct btrfs_root *root = BTRFS_I(inode)->root;
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003680 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacikab6e24102010-03-19 14:38:13 +00003681 u64 used;
Josef Bacik0af3d002010-06-21 14:48:16 -04003682 int ret = 0, committed = 0, alloc_chunk = 1;
Josef Bacik6a632092009-02-20 11:00:09 -05003683
3684 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00003685 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05003686
Miao Xie9dced182013-10-25 17:33:36 +08003687 if (btrfs_is_free_space_inode(inode)) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003688 committed = 1;
Miao Xie9dced182013-10-25 17:33:36 +08003689 ASSERT(current->journal_info);
Josef Bacik0af3d002010-06-21 14:48:16 -04003690 }
3691
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003692 data_sinfo = fs_info->data_sinfo;
Chris Mason33b4d472009-09-22 14:45:50 -04003693 if (!data_sinfo)
3694 goto alloc;
3695
Josef Bacik6a632092009-02-20 11:00:09 -05003696again:
3697 /* make sure we have enough space to handle the data first */
3698 spin_lock(&data_sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003699 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
3700 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
3701 data_sinfo->bytes_may_use;
Josef Bacikab6e24102010-03-19 14:38:13 +00003702
3703 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003704 struct btrfs_trans_handle *trans;
3705
Josef Bacik6a632092009-02-20 11:00:09 -05003706 /*
3707 * if we don't have enough free bytes in this space then we need
3708 * to alloc a new chunk.
3709 */
Josef Bacik0af3d002010-06-21 14:48:16 -04003710 if (!data_sinfo->full && alloc_chunk) {
Josef Bacik6a632092009-02-20 11:00:09 -05003711 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05003712
Chris Mason0e4f8f82011-04-15 16:05:44 -04003713 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05003714 spin_unlock(&data_sinfo->lock);
Chris Mason33b4d472009-09-22 14:45:50 -04003715alloc:
Josef Bacik6a632092009-02-20 11:00:09 -05003716 alloc_target = btrfs_get_alloc_profile(root, 1);
Miao Xie9dced182013-10-25 17:33:36 +08003717 /*
3718 * It is ugly that we don't call nolock join
3719 * transaction for the free space inode case here.
3720 * But it is safe because we only do the data space
3721 * reservation for the free space cache in the
3722 * transaction context, the common join transaction
3723 * just increase the counter of the current transaction
3724 * handler, doesn't try to acquire the trans_lock of
3725 * the fs.
3726 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003727 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003728 if (IS_ERR(trans))
3729 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05003730
3731 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0e4f8f82011-04-15 16:05:44 -04003732 alloc_target,
3733 CHUNK_ALLOC_NO_FORCE);
Josef Bacik6a632092009-02-20 11:00:09 -05003734 btrfs_end_transaction(trans, root);
Miao Xied52a5b52011-01-05 10:07:18 +00003735 if (ret < 0) {
3736 if (ret != -ENOSPC)
3737 return ret;
3738 else
3739 goto commit_trans;
3740 }
Chris Mason33b4d472009-09-22 14:45:50 -04003741
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003742 if (!data_sinfo)
3743 data_sinfo = fs_info->data_sinfo;
3744
Josef Bacik6a632092009-02-20 11:00:09 -05003745 goto again;
3746 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003747
3748 /*
Josef Bacikb150a4f2013-06-19 15:00:04 -04003749 * If we don't have enough pinned space to deal with this
3750 * allocation don't bother committing the transaction.
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003751 */
Josef Bacikb150a4f2013-06-19 15:00:04 -04003752 if (percpu_counter_compare(&data_sinfo->total_bytes_pinned,
3753 bytes) < 0)
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003754 committed = 1;
Josef Bacik6a632092009-02-20 11:00:09 -05003755 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003756
3757 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00003758commit_trans:
Josef Bacika4abeea2011-04-11 17:25:13 -04003759 if (!committed &&
3760 !atomic_read(&root->fs_info->open_ioctl_trans)) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003761 committed = 1;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003762
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003763 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003764 if (IS_ERR(trans))
3765 return PTR_ERR(trans);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003766 ret = btrfs_commit_transaction(trans, root);
3767 if (ret)
3768 return ret;
3769 goto again;
3770 }
3771
Jeff Mahoneycab45e22013-10-16 16:27:01 -04003772 trace_btrfs_space_reservation(root->fs_info,
3773 "space_info:enospc",
3774 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05003775 return -ENOSPC;
3776 }
3777 data_sinfo->bytes_may_use += bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05003778 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04003779 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05003780 spin_unlock(&data_sinfo->lock);
3781
Josef Bacik9ed74f22009-09-11 16:12:44 -04003782 return 0;
Josef Bacik6a632092009-02-20 11:00:09 -05003783}
3784
3785/*
Josef Bacikfb25e912011-07-26 17:00:46 -04003786 * Called if we need to clear a data reservation for this inode.
Josef Bacik6a632092009-02-20 11:00:09 -05003787 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003788void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003789{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003790 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003791 struct btrfs_space_info *data_sinfo;
3792
3793 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00003794 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05003795
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003796 data_sinfo = root->fs_info->data_sinfo;
Josef Bacik6a632092009-02-20 11:00:09 -05003797 spin_lock(&data_sinfo->lock);
Josef Bacik7ee9e442013-06-21 16:37:03 -04003798 WARN_ON(data_sinfo->bytes_may_use < bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05003799 data_sinfo->bytes_may_use -= bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05003800 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04003801 data_sinfo->flags, bytes, 0);
Josef Bacik6a632092009-02-20 11:00:09 -05003802 spin_unlock(&data_sinfo->lock);
3803}
3804
Josef Bacik97e728d2009-04-21 17:40:57 -04003805static void force_metadata_allocation(struct btrfs_fs_info *info)
3806{
3807 struct list_head *head = &info->space_info;
3808 struct btrfs_space_info *found;
3809
3810 rcu_read_lock();
3811 list_for_each_entry_rcu(found, head, list) {
3812 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04003813 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04003814 }
3815 rcu_read_unlock();
3816}
3817
Miao Xie3c76cd82013-04-25 10:12:38 +00003818static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
3819{
3820 return (global->size << 1);
3821}
3822
Chris Masone5bc2452010-10-26 13:37:56 -04003823static int should_alloc_chunk(struct btrfs_root *root,
Josef Bacik698d0082012-09-12 14:08:47 -04003824 struct btrfs_space_info *sinfo, int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04003825{
Josef Bacikfb25e912011-07-26 17:00:46 -04003826 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zheng424499d2010-05-16 10:46:25 -04003827 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003828 u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved;
Chris Masone5bc2452010-10-26 13:37:56 -04003829 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04003830
Chris Mason0e4f8f82011-04-15 16:05:44 -04003831 if (force == CHUNK_ALLOC_FORCE)
3832 return 1;
3833
3834 /*
Josef Bacikfb25e912011-07-26 17:00:46 -04003835 * We need to take into account the global rsv because for all intents
3836 * and purposes it's used space. Don't worry about locking the
3837 * global_rsv, it doesn't change except when the transaction commits.
3838 */
Josef Bacik54338b52012-08-14 16:20:52 -04003839 if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA)
Miao Xie3c76cd82013-04-25 10:12:38 +00003840 num_allocated += calc_global_rsv_need_space(global_rsv);
Josef Bacikfb25e912011-07-26 17:00:46 -04003841
3842 /*
Chris Mason0e4f8f82011-04-15 16:05:44 -04003843 * in limited mode, we want to have some free space up to
3844 * about 1% of the FS size.
3845 */
3846 if (force == CHUNK_ALLOC_LIMITED) {
David Sterba6c417612011-04-13 15:41:04 +02003847 thresh = btrfs_super_total_bytes(root->fs_info->super_copy);
Chris Mason0e4f8f82011-04-15 16:05:44 -04003848 thresh = max_t(u64, 64 * 1024 * 1024,
3849 div_factor_fine(thresh, 1));
3850
3851 if (num_bytes - num_allocated < thresh)
3852 return 1;
3853 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04003854
Josef Bacik698d0082012-09-12 14:08:47 -04003855 if (num_allocated + 2 * 1024 * 1024 < div_factor(num_bytes, 8))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04003856 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04003857 return 1;
3858}
3859
Liu Bo15d1ff82012-03-29 09:57:44 -04003860static u64 get_system_chunk_thresh(struct btrfs_root *root, u64 type)
3861{
3862 u64 num_dev;
3863
David Woodhouse53b381b2013-01-29 18:40:14 -05003864 if (type & (BTRFS_BLOCK_GROUP_RAID10 |
3865 BTRFS_BLOCK_GROUP_RAID0 |
3866 BTRFS_BLOCK_GROUP_RAID5 |
3867 BTRFS_BLOCK_GROUP_RAID6))
Liu Bo15d1ff82012-03-29 09:57:44 -04003868 num_dev = root->fs_info->fs_devices->rw_devices;
3869 else if (type & BTRFS_BLOCK_GROUP_RAID1)
3870 num_dev = 2;
3871 else
3872 num_dev = 1; /* DUP or single */
3873
3874 /* metadata for updaing devices and chunk tree */
3875 return btrfs_calc_trans_metadata_size(root, num_dev + 1);
3876}
3877
3878static void check_system_chunk(struct btrfs_trans_handle *trans,
3879 struct btrfs_root *root, u64 type)
3880{
3881 struct btrfs_space_info *info;
3882 u64 left;
3883 u64 thresh;
3884
3885 info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
3886 spin_lock(&info->lock);
3887 left = info->total_bytes - info->bytes_used - info->bytes_pinned -
3888 info->bytes_reserved - info->bytes_readonly;
3889 spin_unlock(&info->lock);
3890
3891 thresh = get_system_chunk_thresh(root, type);
3892 if (left < thresh && btrfs_test_opt(root, ENOSPC_DEBUG)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003893 btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu",
3894 left, thresh, type);
Liu Bo15d1ff82012-03-29 09:57:44 -04003895 dump_space_info(info, 0, 0);
3896 }
3897
3898 if (left < thresh) {
3899 u64 flags;
3900
3901 flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0);
3902 btrfs_alloc_chunk(trans, root, flags);
3903 }
3904}
3905
Chris Mason6324fbf2008-03-24 15:01:59 -04003906static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Josef Bacik698d0082012-09-12 14:08:47 -04003907 struct btrfs_root *extent_root, u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04003908{
3909 struct btrfs_space_info *space_info;
Josef Bacik97e728d2009-04-21 17:40:57 -04003910 struct btrfs_fs_info *fs_info = extent_root->fs_info;
Josef Bacik6d741192011-04-11 20:20:11 -04003911 int wait_for_alloc = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003912 int ret = 0;
3913
Josef Bacikc6b305a2012-12-18 09:16:16 -05003914 /* Don't re-enter if we're already allocating a chunk */
3915 if (trans->allocating_chunk)
3916 return -ENOSPC;
3917
Chris Mason6324fbf2008-03-24 15:01:59 -04003918 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04003919 if (!space_info) {
3920 ret = update_space_info(extent_root->fs_info, flags,
3921 0, 0, &space_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003922 BUG_ON(ret); /* -ENOMEM */
Chris Mason593060d2008-03-25 16:50:33 -04003923 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003924 BUG_ON(!space_info); /* Logic error */
Chris Mason6324fbf2008-03-24 15:01:59 -04003925
Josef Bacik6d741192011-04-11 20:20:11 -04003926again:
Josef Bacik25179202008-10-29 14:49:05 -04003927 spin_lock(&space_info->lock);
Miao Xie9e622d62012-01-26 15:01:12 -05003928 if (force < space_info->force_alloc)
Chris Mason0e4f8f82011-04-15 16:05:44 -04003929 force = space_info->force_alloc;
Josef Bacik25179202008-10-29 14:49:05 -04003930 if (space_info->full) {
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01003931 if (should_alloc_chunk(extent_root, space_info, force))
3932 ret = -ENOSPC;
3933 else
3934 ret = 0;
Josef Bacik25179202008-10-29 14:49:05 -04003935 spin_unlock(&space_info->lock);
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01003936 return ret;
Josef Bacik25179202008-10-29 14:49:05 -04003937 }
Chris Mason6324fbf2008-03-24 15:01:59 -04003938
Josef Bacik698d0082012-09-12 14:08:47 -04003939 if (!should_alloc_chunk(extent_root, space_info, force)) {
Josef Bacik25179202008-10-29 14:49:05 -04003940 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04003941 return 0;
3942 } else if (space_info->chunk_alloc) {
3943 wait_for_alloc = 1;
3944 } else {
3945 space_info->chunk_alloc = 1;
Josef Bacik25179202008-10-29 14:49:05 -04003946 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04003947
Josef Bacik25179202008-10-29 14:49:05 -04003948 spin_unlock(&space_info->lock);
3949
Josef Bacik6d741192011-04-11 20:20:11 -04003950 mutex_lock(&fs_info->chunk_mutex);
3951
3952 /*
3953 * The chunk_mutex is held throughout the entirety of a chunk
3954 * allocation, so once we've acquired the chunk_mutex we know that the
3955 * other guy is done and we need to recheck and see if we should
3956 * allocate.
3957 */
3958 if (wait_for_alloc) {
3959 mutex_unlock(&fs_info->chunk_mutex);
3960 wait_for_alloc = 0;
3961 goto again;
3962 }
3963
Josef Bacikc6b305a2012-12-18 09:16:16 -05003964 trans->allocating_chunk = true;
3965
Josef Bacik97e728d2009-04-21 17:40:57 -04003966 /*
Josef Bacik67377732010-09-16 16:19:09 -04003967 * If we have mixed data/metadata chunks we want to make sure we keep
3968 * allocating mixed chunks instead of individual chunks.
3969 */
3970 if (btrfs_mixed_space_info(space_info))
3971 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
3972
3973 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04003974 * if we're doing a data chunk, go ahead and make sure that
3975 * we keep a reasonable number of metadata chunks allocated in the
3976 * FS as well.
3977 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04003978 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04003979 fs_info->data_chunk_allocations++;
3980 if (!(fs_info->data_chunk_allocations %
3981 fs_info->metadata_ratio))
3982 force_metadata_allocation(fs_info);
3983 }
3984
Liu Bo15d1ff82012-03-29 09:57:44 -04003985 /*
3986 * Check if we have enough space in SYSTEM chunk because we may need
3987 * to update devices.
3988 */
3989 check_system_chunk(trans, extent_root, flags);
3990
Yan Zheng2b820322008-11-17 21:11:30 -05003991 ret = btrfs_alloc_chunk(trans, extent_root, flags);
Josef Bacikc6b305a2012-12-18 09:16:16 -05003992 trans->allocating_chunk = false;
Mark Fasheh92b8e8972011-07-12 10:57:59 -07003993
Josef Bacik9ed74f22009-09-11 16:12:44 -04003994 spin_lock(&space_info->lock);
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00003995 if (ret < 0 && ret != -ENOSPC)
3996 goto out;
Chris Masond3977122009-01-05 21:25:51 -05003997 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04003998 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04003999 else
4000 ret = 1;
Josef Bacik6d741192011-04-11 20:20:11 -04004001
Chris Mason0e4f8f82011-04-15 16:05:44 -04004002 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004003out:
Josef Bacik6d741192011-04-11 20:20:11 -04004004 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004005 spin_unlock(&space_info->lock);
Dan Carpentera25c75d2012-04-18 09:59:29 +03004006 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik0f9dd462008-09-23 13:14:11 -04004007 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04004008}
4009
Josef Bacika80c8dc2012-09-06 16:59:33 -04004010static int can_overcommit(struct btrfs_root *root,
4011 struct btrfs_space_info *space_info, u64 bytes,
Miao Xie08e007d2012-10-16 11:33:38 +00004012 enum btrfs_reserve_flush_enum flush)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004013{
Josef Bacik96f1bb52013-01-30 17:02:51 -05004014 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004015 u64 profile = btrfs_get_alloc_profile(root, 0);
Miao Xie3c76cd82013-04-25 10:12:38 +00004016 u64 space_size;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004017 u64 avail;
4018 u64 used;
4019
4020 used = space_info->bytes_used + space_info->bytes_reserved +
Josef Bacik96f1bb52013-01-30 17:02:51 -05004021 space_info->bytes_pinned + space_info->bytes_readonly;
4022
Josef Bacik96f1bb52013-01-30 17:02:51 -05004023 /*
4024 * We only want to allow over committing if we have lots of actual space
4025 * free, but if we don't have enough space to handle the global reserve
4026 * space then we could end up having a real enospc problem when trying
4027 * to allocate a chunk or some other such important allocation.
4028 */
Miao Xie3c76cd82013-04-25 10:12:38 +00004029 spin_lock(&global_rsv->lock);
4030 space_size = calc_global_rsv_need_space(global_rsv);
4031 spin_unlock(&global_rsv->lock);
4032 if (used + space_size >= space_info->total_bytes)
Josef Bacik96f1bb52013-01-30 17:02:51 -05004033 return 0;
4034
4035 used += space_info->bytes_may_use;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004036
4037 spin_lock(&root->fs_info->free_chunk_lock);
4038 avail = root->fs_info->free_chunk_space;
4039 spin_unlock(&root->fs_info->free_chunk_lock);
4040
4041 /*
4042 * If we have dup, raid1 or raid10 then only half of the free
David Woodhouse53b381b2013-01-29 18:40:14 -05004043 * space is actually useable. For raid56, the space info used
4044 * doesn't include the parity drive, so we don't have to
4045 * change the math
Josef Bacika80c8dc2012-09-06 16:59:33 -04004046 */
4047 if (profile & (BTRFS_BLOCK_GROUP_DUP |
4048 BTRFS_BLOCK_GROUP_RAID1 |
4049 BTRFS_BLOCK_GROUP_RAID10))
4050 avail >>= 1;
4051
4052 /*
Miao Xie561c2942012-10-16 11:32:18 +00004053 * If we aren't flushing all things, let us overcommit up to
4054 * 1/2th of the space. If we can flush, don't let us overcommit
4055 * too much, let it overcommit up to 1/8 of the space.
Josef Bacika80c8dc2012-09-06 16:59:33 -04004056 */
Miao Xie08e007d2012-10-16 11:33:38 +00004057 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacik14575ae2013-09-17 10:48:00 -04004058 avail >>= 3;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004059 else
Josef Bacik14575ae2013-09-17 10:48:00 -04004060 avail >>= 1;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004061
Josef Bacik14575ae2013-09-17 10:48:00 -04004062 if (used + bytes < space_info->total_bytes + avail)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004063 return 1;
4064 return 0;
4065}
4066
Eric Sandeen48a3b632013-04-25 20:41:01 +00004067static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root,
Miao Xie6c255e62014-03-06 13:55:01 +08004068 unsigned long nr_pages, int nr_items)
Miao Xieda633a42012-12-20 11:19:09 +00004069{
4070 struct super_block *sb = root->fs_info->sb;
Miao Xieda633a42012-12-20 11:19:09 +00004071
Josef Bacik925a6ef2013-06-20 12:31:27 -04004072 if (down_read_trylock(&sb->s_umount)) {
4073 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
4074 up_read(&sb->s_umount);
4075 } else {
Miao Xieda633a42012-12-20 11:19:09 +00004076 /*
4077 * We needn't worry the filesystem going from r/w to r/o though
4078 * we don't acquire ->s_umount mutex, because the filesystem
4079 * should guarantee the delalloc inodes list be empty after
4080 * the filesystem is readonly(all dirty pages are written to
4081 * the disk).
4082 */
Miao Xie6c255e62014-03-06 13:55:01 +08004083 btrfs_start_delalloc_roots(root->fs_info, 0, nr_items);
Josef Bacik98ad69c2013-04-04 11:55:49 -04004084 if (!current->journal_info)
Miao Xie6c255e62014-03-06 13:55:01 +08004085 btrfs_wait_ordered_roots(root->fs_info, nr_items);
Miao Xieda633a42012-12-20 11:19:09 +00004086 }
4087}
4088
Miao Xie18cd8ea2013-11-04 23:13:22 +08004089static inline int calc_reclaim_items_nr(struct btrfs_root *root, u64 to_reclaim)
4090{
4091 u64 bytes;
4092 int nr;
4093
4094 bytes = btrfs_calc_trans_metadata_size(root, 1);
4095 nr = (int)div64_u64(to_reclaim, bytes);
4096 if (!nr)
4097 nr = 1;
4098 return nr;
4099}
4100
Miao Xiec61a16a2013-11-04 23:13:23 +08004101#define EXTENT_SIZE_PER_ITEM (256 * 1024)
4102
Yan, Zheng5da9d012010-05-16 10:46:25 -04004103/*
4104 * shrink metadata reservation for delalloc
4105 */
Josef Bacikf4c738c2012-07-02 17:10:51 -04004106static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig,
4107 bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04004108{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004109 struct btrfs_block_rsv *block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004110 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04004111 struct btrfs_trans_handle *trans;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004112 u64 delalloc_bytes;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004113 u64 max_reclaim;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004114 long time_left;
Miao Xied3ee29e2013-11-04 23:13:20 +08004115 unsigned long nr_pages;
4116 int loops;
Miao Xieb0244192013-11-04 23:13:25 +08004117 int items;
Miao Xie08e007d2012-10-16 11:33:38 +00004118 enum btrfs_reserve_flush_enum flush;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004119
Miao Xiec61a16a2013-11-04 23:13:23 +08004120 /* Calc the number of the pages we need flush for space reservation */
Miao Xieb0244192013-11-04 23:13:25 +08004121 items = calc_reclaim_items_nr(root, to_reclaim);
4122 to_reclaim = items * EXTENT_SIZE_PER_ITEM;
Miao Xiec61a16a2013-11-04 23:13:23 +08004123
Josef Bacik663350a2011-11-03 22:54:25 -04004124 trans = (struct btrfs_trans_handle *)current->journal_info;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004125 block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004126 space_info = block_rsv->space_info;
Chris Masonbf9022e2010-10-26 13:40:45 -04004127
Miao Xie963d6782013-01-29 10:10:51 +00004128 delalloc_bytes = percpu_counter_sum_positive(
4129 &root->fs_info->delalloc_bytes);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004130 if (delalloc_bytes == 0) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004131 if (trans)
Josef Bacikf4c738c2012-07-02 17:10:51 -04004132 return;
Miao Xie38c135a2013-11-04 23:13:21 +08004133 if (wait_ordered)
Miao Xieb0244192013-11-04 23:13:25 +08004134 btrfs_wait_ordered_roots(root->fs_info, items);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004135 return;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004136 }
4137
Miao Xied3ee29e2013-11-04 23:13:20 +08004138 loops = 0;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004139 while (delalloc_bytes && loops < 3) {
4140 max_reclaim = min(delalloc_bytes, to_reclaim);
4141 nr_pages = max_reclaim >> PAGE_CACHE_SHIFT;
Miao Xie6c255e62014-03-06 13:55:01 +08004142 btrfs_writeback_inodes_sb_nr(root, nr_pages, items);
Josef Bacikdea31f52012-09-06 16:47:00 -04004143 /*
4144 * We need to wait for the async pages to actually start before
4145 * we do anything.
4146 */
Miao Xie9f3a0742013-11-04 23:13:24 +08004147 max_reclaim = atomic_read(&root->fs_info->async_delalloc_pages);
4148 if (!max_reclaim)
4149 goto skip_async;
Josef Bacikdea31f52012-09-06 16:47:00 -04004150
Miao Xie9f3a0742013-11-04 23:13:24 +08004151 if (max_reclaim <= nr_pages)
4152 max_reclaim = 0;
4153 else
4154 max_reclaim -= nr_pages;
4155
4156 wait_event(root->fs_info->async_submit_wait,
4157 atomic_read(&root->fs_info->async_delalloc_pages) <=
4158 (int)max_reclaim);
4159skip_async:
Miao Xie08e007d2012-10-16 11:33:38 +00004160 if (!trans)
4161 flush = BTRFS_RESERVE_FLUSH_ALL;
4162 else
4163 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacik0019f102010-10-15 15:18:40 -04004164 spin_lock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00004165 if (can_overcommit(root, space_info, orig, flush)) {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004166 spin_unlock(&space_info->lock);
4167 break;
4168 }
Josef Bacik0019f102010-10-15 15:18:40 -04004169 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004170
Chris Mason36e39c42011-03-12 07:08:42 -05004171 loops++;
Josef Bacikf104d042011-10-14 13:56:58 -04004172 if (wait_ordered && !trans) {
Miao Xieb0244192013-11-04 23:13:25 +08004173 btrfs_wait_ordered_roots(root->fs_info, items);
Josef Bacikf104d042011-10-14 13:56:58 -04004174 } else {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004175 time_left = schedule_timeout_killable(1);
Josef Bacikf104d042011-10-14 13:56:58 -04004176 if (time_left)
4177 break;
4178 }
Miao Xie963d6782013-01-29 10:10:51 +00004179 delalloc_bytes = percpu_counter_sum_positive(
4180 &root->fs_info->delalloc_bytes);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004181 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04004182}
4183
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004184/**
Josef Bacik663350a2011-11-03 22:54:25 -04004185 * maybe_commit_transaction - possibly commit the transaction if its ok to
4186 * @root - the root we're allocating for
4187 * @bytes - the number of bytes we want to reserve
4188 * @force - force the commit
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004189 *
Josef Bacik663350a2011-11-03 22:54:25 -04004190 * This will check to make sure that committing the transaction will actually
4191 * get us somewhere and then commit the transaction if it does. Otherwise it
4192 * will return -ENOSPC.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004193 */
Josef Bacik663350a2011-11-03 22:54:25 -04004194static int may_commit_transaction(struct btrfs_root *root,
4195 struct btrfs_space_info *space_info,
4196 u64 bytes, int force)
4197{
4198 struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv;
4199 struct btrfs_trans_handle *trans;
4200
4201 trans = (struct btrfs_trans_handle *)current->journal_info;
4202 if (trans)
4203 return -EAGAIN;
4204
4205 if (force)
4206 goto commit;
4207
4208 /* See if there is enough pinned space to make this reservation */
Josef Bacikb150a4f2013-06-19 15:00:04 -04004209 if (percpu_counter_compare(&space_info->total_bytes_pinned,
Miao Xie0424c542014-03-06 13:54:59 +08004210 bytes) >= 0)
Josef Bacik663350a2011-11-03 22:54:25 -04004211 goto commit;
Josef Bacik663350a2011-11-03 22:54:25 -04004212
4213 /*
4214 * See if there is some space in the delayed insertion reservation for
4215 * this reservation.
4216 */
4217 if (space_info != delayed_rsv->space_info)
4218 return -ENOSPC;
4219
4220 spin_lock(&delayed_rsv->lock);
Josef Bacikb150a4f2013-06-19 15:00:04 -04004221 if (percpu_counter_compare(&space_info->total_bytes_pinned,
4222 bytes - delayed_rsv->size) >= 0) {
Josef Bacik663350a2011-11-03 22:54:25 -04004223 spin_unlock(&delayed_rsv->lock);
4224 return -ENOSPC;
4225 }
4226 spin_unlock(&delayed_rsv->lock);
4227
4228commit:
4229 trans = btrfs_join_transaction(root);
4230 if (IS_ERR(trans))
4231 return -ENOSPC;
4232
4233 return btrfs_commit_transaction(trans, root);
4234}
4235
Josef Bacik96c3f432012-06-21 14:05:49 -04004236enum flush_state {
Josef Bacik67b0fd62012-09-24 13:42:00 -04004237 FLUSH_DELAYED_ITEMS_NR = 1,
4238 FLUSH_DELAYED_ITEMS = 2,
4239 FLUSH_DELALLOC = 3,
4240 FLUSH_DELALLOC_WAIT = 4,
Josef Bacikea658ba2012-09-11 16:57:25 -04004241 ALLOC_CHUNK = 5,
4242 COMMIT_TRANS = 6,
Josef Bacik96c3f432012-06-21 14:05:49 -04004243};
4244
4245static int flush_space(struct btrfs_root *root,
4246 struct btrfs_space_info *space_info, u64 num_bytes,
4247 u64 orig_bytes, int state)
4248{
4249 struct btrfs_trans_handle *trans;
4250 int nr;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004251 int ret = 0;
Josef Bacik96c3f432012-06-21 14:05:49 -04004252
4253 switch (state) {
Josef Bacik96c3f432012-06-21 14:05:49 -04004254 case FLUSH_DELAYED_ITEMS_NR:
4255 case FLUSH_DELAYED_ITEMS:
Miao Xie18cd8ea2013-11-04 23:13:22 +08004256 if (state == FLUSH_DELAYED_ITEMS_NR)
4257 nr = calc_reclaim_items_nr(root, num_bytes) * 2;
4258 else
Josef Bacik96c3f432012-06-21 14:05:49 -04004259 nr = -1;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004260
Josef Bacik96c3f432012-06-21 14:05:49 -04004261 trans = btrfs_join_transaction(root);
4262 if (IS_ERR(trans)) {
4263 ret = PTR_ERR(trans);
4264 break;
4265 }
4266 ret = btrfs_run_delayed_items_nr(trans, root, nr);
4267 btrfs_end_transaction(trans, root);
4268 break;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004269 case FLUSH_DELALLOC:
4270 case FLUSH_DELALLOC_WAIT:
Miao Xie24af7dd2014-03-06 13:55:00 +08004271 shrink_delalloc(root, num_bytes * 2, orig_bytes,
Josef Bacik67b0fd62012-09-24 13:42:00 -04004272 state == FLUSH_DELALLOC_WAIT);
4273 break;
Josef Bacikea658ba2012-09-11 16:57:25 -04004274 case ALLOC_CHUNK:
4275 trans = btrfs_join_transaction(root);
4276 if (IS_ERR(trans)) {
4277 ret = PTR_ERR(trans);
4278 break;
4279 }
4280 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Josef Bacikea658ba2012-09-11 16:57:25 -04004281 btrfs_get_alloc_profile(root, 0),
4282 CHUNK_ALLOC_NO_FORCE);
4283 btrfs_end_transaction(trans, root);
4284 if (ret == -ENOSPC)
4285 ret = 0;
4286 break;
Josef Bacik96c3f432012-06-21 14:05:49 -04004287 case COMMIT_TRANS:
4288 ret = may_commit_transaction(root, space_info, orig_bytes, 0);
4289 break;
4290 default:
4291 ret = -ENOSPC;
4292 break;
4293 }
4294
4295 return ret;
4296}
Miao Xie21c7e752014-05-13 17:29:04 -07004297
4298static inline u64
4299btrfs_calc_reclaim_metadata_size(struct btrfs_root *root,
4300 struct btrfs_space_info *space_info)
4301{
4302 u64 used;
4303 u64 expected;
4304 u64 to_reclaim;
4305
4306 to_reclaim = min_t(u64, num_online_cpus() * 1024 * 1024,
4307 16 * 1024 * 1024);
4308 spin_lock(&space_info->lock);
4309 if (can_overcommit(root, space_info, to_reclaim,
4310 BTRFS_RESERVE_FLUSH_ALL)) {
4311 to_reclaim = 0;
4312 goto out;
4313 }
4314
4315 used = space_info->bytes_used + space_info->bytes_reserved +
4316 space_info->bytes_pinned + space_info->bytes_readonly +
4317 space_info->bytes_may_use;
4318 if (can_overcommit(root, space_info, 1024 * 1024,
4319 BTRFS_RESERVE_FLUSH_ALL))
4320 expected = div_factor_fine(space_info->total_bytes, 95);
4321 else
4322 expected = div_factor_fine(space_info->total_bytes, 90);
4323
4324 if (used > expected)
4325 to_reclaim = used - expected;
4326 else
4327 to_reclaim = 0;
4328 to_reclaim = min(to_reclaim, space_info->bytes_may_use +
4329 space_info->bytes_reserved);
4330out:
4331 spin_unlock(&space_info->lock);
4332
4333 return to_reclaim;
4334}
4335
4336static inline int need_do_async_reclaim(struct btrfs_space_info *space_info,
4337 struct btrfs_fs_info *fs_info, u64 used)
4338{
4339 return (used >= div_factor_fine(space_info->total_bytes, 98) &&
4340 !btrfs_fs_closing(fs_info) &&
4341 !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state));
4342}
4343
4344static int btrfs_need_do_async_reclaim(struct btrfs_space_info *space_info,
Liu Bo25ce4592014-09-10 12:58:50 +08004345 struct btrfs_fs_info *fs_info,
4346 int flush_state)
Miao Xie21c7e752014-05-13 17:29:04 -07004347{
4348 u64 used;
4349
4350 spin_lock(&space_info->lock);
Liu Bo25ce4592014-09-10 12:58:50 +08004351 /*
4352 * We run out of space and have not got any free space via flush_space,
4353 * so don't bother doing async reclaim.
4354 */
4355 if (flush_state > COMMIT_TRANS && space_info->full) {
4356 spin_unlock(&space_info->lock);
4357 return 0;
4358 }
4359
Miao Xie21c7e752014-05-13 17:29:04 -07004360 used = space_info->bytes_used + space_info->bytes_reserved +
4361 space_info->bytes_pinned + space_info->bytes_readonly +
4362 space_info->bytes_may_use;
4363 if (need_do_async_reclaim(space_info, fs_info, used)) {
4364 spin_unlock(&space_info->lock);
4365 return 1;
4366 }
4367 spin_unlock(&space_info->lock);
4368
4369 return 0;
4370}
4371
4372static void btrfs_async_reclaim_metadata_space(struct work_struct *work)
4373{
4374 struct btrfs_fs_info *fs_info;
4375 struct btrfs_space_info *space_info;
4376 u64 to_reclaim;
4377 int flush_state;
4378
4379 fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work);
4380 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4381
4382 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root,
4383 space_info);
4384 if (!to_reclaim)
4385 return;
4386
4387 flush_state = FLUSH_DELAYED_ITEMS_NR;
4388 do {
4389 flush_space(fs_info->fs_root, space_info, to_reclaim,
4390 to_reclaim, flush_state);
4391 flush_state++;
Liu Bo25ce4592014-09-10 12:58:50 +08004392 if (!btrfs_need_do_async_reclaim(space_info, fs_info,
4393 flush_state))
Miao Xie21c7e752014-05-13 17:29:04 -07004394 return;
4395 } while (flush_state <= COMMIT_TRANS);
4396
Liu Bo25ce4592014-09-10 12:58:50 +08004397 if (btrfs_need_do_async_reclaim(space_info, fs_info, flush_state))
Miao Xie21c7e752014-05-13 17:29:04 -07004398 queue_work(system_unbound_wq, work);
4399}
4400
4401void btrfs_init_async_reclaim_work(struct work_struct *work)
4402{
4403 INIT_WORK(work, btrfs_async_reclaim_metadata_space);
4404}
4405
Josef Bacik663350a2011-11-03 22:54:25 -04004406/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004407 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
4408 * @root - the root we're allocating for
4409 * @block_rsv - the block_rsv we're allocating for
4410 * @orig_bytes - the number of bytes we want
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04004411 * @flush - whether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004412 *
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004413 * This will reserve orgi_bytes number of bytes from the space info associated
4414 * with the block_rsv. If there is not enough space it will make an attempt to
4415 * flush out space to make room. It will do this by flushing delalloc if
4416 * possible or committing the transaction. If flush is 0 then no attempts to
4417 * regain reservations will be made and this will fail if there is not enough
4418 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004419 */
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004420static int reserve_metadata_bytes(struct btrfs_root *root,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004421 struct btrfs_block_rsv *block_rsv,
Miao Xie08e007d2012-10-16 11:33:38 +00004422 u64 orig_bytes,
4423 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004424{
4425 struct btrfs_space_info *space_info = block_rsv->space_info;
Josef Bacik2bf64752011-09-26 17:12:22 -04004426 u64 used;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004427 u64 num_bytes = orig_bytes;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004428 int flush_state = FLUSH_DELAYED_ITEMS_NR;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004429 int ret = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004430 bool flushing = false;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004431
4432again:
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004433 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004434 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004435 /*
Miao Xie08e007d2012-10-16 11:33:38 +00004436 * We only want to wait if somebody other than us is flushing and we
4437 * are actually allowed to flush all things.
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004438 */
Miao Xie08e007d2012-10-16 11:33:38 +00004439 while (flush == BTRFS_RESERVE_FLUSH_ALL && !flushing &&
4440 space_info->flush) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004441 spin_unlock(&space_info->lock);
4442 /*
4443 * If we have a trans handle we can't wait because the flusher
4444 * may have to commit the transaction, which would mean we would
4445 * deadlock since we are waiting for the flusher to finish, but
4446 * hold the current transaction open.
4447 */
Josef Bacik663350a2011-11-03 22:54:25 -04004448 if (current->journal_info)
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004449 return -EAGAIN;
Arne Jansenb9688bb2012-04-18 10:27:16 +02004450 ret = wait_event_killable(space_info->wait, !space_info->flush);
4451 /* Must have been killed, return */
4452 if (ret)
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004453 return -EINTR;
4454
4455 spin_lock(&space_info->lock);
4456 }
4457
4458 ret = -ENOSPC;
Josef Bacik2bf64752011-09-26 17:12:22 -04004459 used = space_info->bytes_used + space_info->bytes_reserved +
4460 space_info->bytes_pinned + space_info->bytes_readonly +
4461 space_info->bytes_may_use;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004462
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004463 /*
4464 * The idea here is that we've not already over-reserved the block group
4465 * then we can go ahead and save our reservation first and then start
4466 * flushing if we need to. Otherwise if we've already overcommitted
4467 * lets start flushing stuff first and then come back and try to make
4468 * our reservation.
4469 */
Josef Bacik2bf64752011-09-26 17:12:22 -04004470 if (used <= space_info->total_bytes) {
4471 if (used + orig_bytes <= space_info->total_bytes) {
Josef Bacikfb25e912011-07-26 17:00:46 -04004472 space_info->bytes_may_use += orig_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004473 trace_btrfs_space_reservation(root->fs_info,
Liu Bo2bcc0322012-03-29 09:57:44 -04004474 "space_info", space_info->flags, orig_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004475 ret = 0;
4476 } else {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004477 /*
4478 * Ok set num_bytes to orig_bytes since we aren't
4479 * overocmmitted, this way we only try and reclaim what
4480 * we need.
4481 */
4482 num_bytes = orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004483 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004484 } else {
4485 /*
4486 * Ok we're over committed, set num_bytes to the overcommitted
4487 * amount plus the amount of bytes that we need for this
4488 * reservation.
4489 */
Josef Bacik2bf64752011-09-26 17:12:22 -04004490 num_bytes = used - space_info->total_bytes +
Josef Bacik96c3f432012-06-21 14:05:49 -04004491 (orig_bytes * 2);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004492 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004493
Josef Bacik44734ed2012-09-28 16:04:19 -04004494 if (ret && can_overcommit(root, space_info, orig_bytes, flush)) {
4495 space_info->bytes_may_use += orig_bytes;
4496 trace_btrfs_space_reservation(root->fs_info, "space_info",
4497 space_info->flags, orig_bytes,
4498 1);
4499 ret = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04004500 }
4501
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004502 /*
4503 * Couldn't make our reservation, save our place so while we're trying
4504 * to reclaim space we can actually use it instead of somebody else
4505 * stealing it from us.
Miao Xie08e007d2012-10-16 11:33:38 +00004506 *
4507 * We make the other tasks wait for the flush only when we can flush
4508 * all things.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004509 */
Josef Bacik72bcd992012-12-18 15:16:34 -05004510 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004511 flushing = true;
4512 space_info->flush = 1;
Miao Xie21c7e752014-05-13 17:29:04 -07004513 } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
4514 used += orig_bytes;
Josef Bacikf6acfd52014-09-18 11:27:17 -04004515 /*
4516 * We will do the space reservation dance during log replay,
4517 * which means we won't have fs_info->fs_root set, so don't do
4518 * the async reclaim as we will panic.
4519 */
4520 if (!root->fs_info->log_root_recovering &&
4521 need_do_async_reclaim(space_info, root->fs_info, used) &&
Miao Xie21c7e752014-05-13 17:29:04 -07004522 !work_busy(&root->fs_info->async_reclaim_work))
4523 queue_work(system_unbound_wq,
4524 &root->fs_info->async_reclaim_work);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004525 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004526 spin_unlock(&space_info->lock);
4527
Miao Xie08e007d2012-10-16 11:33:38 +00004528 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004529 goto out;
4530
Josef Bacik96c3f432012-06-21 14:05:49 -04004531 ret = flush_space(root, space_info, num_bytes, orig_bytes,
4532 flush_state);
4533 flush_state++;
Miao Xie08e007d2012-10-16 11:33:38 +00004534
4535 /*
4536 * If we are FLUSH_LIMIT, we can not flush delalloc, or the deadlock
4537 * would happen. So skip delalloc flush.
4538 */
4539 if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4540 (flush_state == FLUSH_DELALLOC ||
4541 flush_state == FLUSH_DELALLOC_WAIT))
4542 flush_state = ALLOC_CHUNK;
4543
Josef Bacik96c3f432012-06-21 14:05:49 -04004544 if (!ret)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004545 goto again;
Miao Xie08e007d2012-10-16 11:33:38 +00004546 else if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4547 flush_state < COMMIT_TRANS)
4548 goto again;
4549 else if (flush == BTRFS_RESERVE_FLUSH_ALL &&
4550 flush_state <= COMMIT_TRANS)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004551 goto again;
4552
4553out:
Josef Bacik5d803662013-02-07 16:06:02 -05004554 if (ret == -ENOSPC &&
4555 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
4556 struct btrfs_block_rsv *global_rsv =
4557 &root->fs_info->global_block_rsv;
4558
4559 if (block_rsv != global_rsv &&
4560 !block_rsv_use_bytes(global_rsv, orig_bytes))
4561 ret = 0;
4562 }
Jeff Mahoneycab45e22013-10-16 16:27:01 -04004563 if (ret == -ENOSPC)
4564 trace_btrfs_space_reservation(root->fs_info,
4565 "space_info:enospc",
4566 space_info->flags, orig_bytes, 1);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004567 if (flushing) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004568 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004569 space_info->flush = 0;
4570 wake_up_all(&space_info->wait);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004571 spin_unlock(&space_info->lock);
4572 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004573 return ret;
4574}
4575
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004576static struct btrfs_block_rsv *get_block_rsv(
4577 const struct btrfs_trans_handle *trans,
4578 const struct btrfs_root *root)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004579{
Josef Bacik4c13d752011-08-30 11:31:29 -04004580 struct btrfs_block_rsv *block_rsv = NULL;
4581
Miao Xie27cdeb72014-04-02 19:51:05 +08004582 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Josef Bacik0e721102012-06-26 16:13:18 -04004583 block_rsv = trans->block_rsv;
4584
4585 if (root == root->fs_info->csum_root && trans->adding_csums)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004586 block_rsv = trans->block_rsv;
Josef Bacik4c13d752011-08-30 11:31:29 -04004587
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004588 if (root == root->fs_info->uuid_root)
4589 block_rsv = trans->block_rsv;
4590
Josef Bacik4c13d752011-08-30 11:31:29 -04004591 if (!block_rsv)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004592 block_rsv = root->block_rsv;
4593
4594 if (!block_rsv)
4595 block_rsv = &root->fs_info->empty_block_rsv;
4596
4597 return block_rsv;
4598}
4599
4600static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
4601 u64 num_bytes)
4602{
4603 int ret = -ENOSPC;
4604 spin_lock(&block_rsv->lock);
4605 if (block_rsv->reserved >= num_bytes) {
4606 block_rsv->reserved -= num_bytes;
4607 if (block_rsv->reserved < block_rsv->size)
4608 block_rsv->full = 0;
4609 ret = 0;
4610 }
4611 spin_unlock(&block_rsv->lock);
4612 return ret;
4613}
4614
4615static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
4616 u64 num_bytes, int update_size)
4617{
4618 spin_lock(&block_rsv->lock);
4619 block_rsv->reserved += num_bytes;
4620 if (update_size)
4621 block_rsv->size += num_bytes;
4622 else if (block_rsv->reserved >= block_rsv->size)
4623 block_rsv->full = 1;
4624 spin_unlock(&block_rsv->lock);
4625}
4626
Josef Bacikd52be812013-05-29 14:54:47 -04004627int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
4628 struct btrfs_block_rsv *dest, u64 num_bytes,
4629 int min_factor)
4630{
4631 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
4632 u64 min_bytes;
4633
4634 if (global_rsv->space_info != dest->space_info)
4635 return -ENOSPC;
4636
4637 spin_lock(&global_rsv->lock);
4638 min_bytes = div_factor(global_rsv->size, min_factor);
4639 if (global_rsv->reserved < min_bytes + num_bytes) {
4640 spin_unlock(&global_rsv->lock);
4641 return -ENOSPC;
4642 }
4643 global_rsv->reserved -= num_bytes;
4644 if (global_rsv->reserved < global_rsv->size)
4645 global_rsv->full = 0;
4646 spin_unlock(&global_rsv->lock);
4647
4648 block_rsv_add_bytes(dest, num_bytes, 1);
4649 return 0;
4650}
4651
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004652static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
4653 struct btrfs_block_rsv *block_rsv,
David Sterba62a45b62011-04-20 15:52:26 +02004654 struct btrfs_block_rsv *dest, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004655{
4656 struct btrfs_space_info *space_info = block_rsv->space_info;
4657
4658 spin_lock(&block_rsv->lock);
4659 if (num_bytes == (u64)-1)
4660 num_bytes = block_rsv->size;
4661 block_rsv->size -= num_bytes;
4662 if (block_rsv->reserved >= block_rsv->size) {
4663 num_bytes = block_rsv->reserved - block_rsv->size;
4664 block_rsv->reserved = block_rsv->size;
4665 block_rsv->full = 1;
4666 } else {
4667 num_bytes = 0;
4668 }
4669 spin_unlock(&block_rsv->lock);
4670
4671 if (num_bytes > 0) {
4672 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00004673 spin_lock(&dest->lock);
4674 if (!dest->full) {
4675 u64 bytes_to_add;
4676
4677 bytes_to_add = dest->size - dest->reserved;
4678 bytes_to_add = min(num_bytes, bytes_to_add);
4679 dest->reserved += bytes_to_add;
4680 if (dest->reserved >= dest->size)
4681 dest->full = 1;
4682 num_bytes -= bytes_to_add;
4683 }
4684 spin_unlock(&dest->lock);
4685 }
4686 if (num_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04004687 spin_lock(&space_info->lock);
Josef Bacikfb25e912011-07-26 17:00:46 -04004688 space_info->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004689 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004690 space_info->flags, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004691 spin_unlock(&space_info->lock);
4692 }
4693 }
4694}
4695
4696static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src,
4697 struct btrfs_block_rsv *dst, u64 num_bytes)
4698{
4699 int ret;
4700
4701 ret = block_rsv_use_bytes(src, num_bytes);
4702 if (ret)
4703 return ret;
4704
4705 block_rsv_add_bytes(dst, num_bytes, 1);
4706 return 0;
4707}
4708
Miao Xie66d8f3d2012-09-06 04:02:28 -06004709void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004710{
4711 memset(rsv, 0, sizeof(*rsv));
4712 spin_lock_init(&rsv->lock);
Miao Xie66d8f3d2012-09-06 04:02:28 -06004713 rsv->type = type;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004714}
4715
Miao Xie66d8f3d2012-09-06 04:02:28 -06004716struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root,
4717 unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004718{
4719 struct btrfs_block_rsv *block_rsv;
4720 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004721
4722 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
4723 if (!block_rsv)
4724 return NULL;
4725
Miao Xie66d8f3d2012-09-06 04:02:28 -06004726 btrfs_init_block_rsv(block_rsv, type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004727 block_rsv->space_info = __find_space_info(fs_info,
4728 BTRFS_BLOCK_GROUP_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004729 return block_rsv;
4730}
4731
4732void btrfs_free_block_rsv(struct btrfs_root *root,
4733 struct btrfs_block_rsv *rsv)
4734{
Josef Bacik2aaa6652012-08-29 14:27:18 -04004735 if (!rsv)
4736 return;
Josef Bacikdabdb642011-08-08 12:50:18 -04004737 btrfs_block_rsv_release(root, rsv, (u64)-1);
4738 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004739}
4740
Miao Xie08e007d2012-10-16 11:33:38 +00004741int btrfs_block_rsv_add(struct btrfs_root *root,
4742 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
4743 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004744{
4745 int ret;
4746
4747 if (num_bytes == 0)
4748 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004749
Miao Xie61b520a2011-11-10 20:45:05 -05004750 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004751 if (!ret) {
4752 block_rsv_add_bytes(block_rsv, num_bytes, 1);
4753 return 0;
4754 }
4755
Yan, Zhengf0486c62010-05-16 10:46:25 -04004756 return ret;
4757}
4758
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004759int btrfs_block_rsv_check(struct btrfs_root *root,
Josef Bacik36ba0222011-10-18 12:15:48 -04004760 struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004761{
4762 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004763 int ret = -ENOSPC;
4764
4765 if (!block_rsv)
4766 return 0;
4767
4768 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04004769 num_bytes = div_factor(block_rsv->size, min_factor);
4770 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004771 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004772 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004773
Josef Bacik36ba0222011-10-18 12:15:48 -04004774 return ret;
4775}
4776
Miao Xie08e007d2012-10-16 11:33:38 +00004777int btrfs_block_rsv_refill(struct btrfs_root *root,
4778 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
4779 enum btrfs_reserve_flush_enum flush)
Josef Bacik36ba0222011-10-18 12:15:48 -04004780{
4781 u64 num_bytes = 0;
4782 int ret = -ENOSPC;
4783
4784 if (!block_rsv)
4785 return 0;
4786
4787 spin_lock(&block_rsv->lock);
4788 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04004789 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004790 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04004791 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04004792 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004793 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04004794
Yan, Zhengf0486c62010-05-16 10:46:25 -04004795 if (!ret)
4796 return 0;
4797
Miao Xieaa38a712011-11-18 17:43:00 +08004798 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Josef Bacikdabdb642011-08-08 12:50:18 -04004799 if (!ret) {
4800 block_rsv_add_bytes(block_rsv, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004801 return 0;
4802 }
4803
Josef Bacik13553e52011-08-08 13:33:21 -04004804 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004805}
4806
4807int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv,
4808 struct btrfs_block_rsv *dst_rsv,
4809 u64 num_bytes)
4810{
4811 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
4812}
4813
4814void btrfs_block_rsv_release(struct btrfs_root *root,
4815 struct btrfs_block_rsv *block_rsv,
4816 u64 num_bytes)
4817{
4818 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Liu Bo17504582013-12-29 21:44:50 +08004819 if (global_rsv == block_rsv ||
Yan, Zhengf0486c62010-05-16 10:46:25 -04004820 block_rsv->space_info != global_rsv->space_info)
4821 global_rsv = NULL;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004822 block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv,
4823 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004824}
4825
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004826/*
4827 * helper to calculate size of global block reservation.
4828 * the desired value is sum of space used by extent tree,
4829 * checksum tree and root tree
4830 */
4831static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info)
4832{
4833 struct btrfs_space_info *sinfo;
4834 u64 num_bytes;
4835 u64 meta_used;
4836 u64 data_used;
David Sterba6c417612011-04-13 15:41:04 +02004837 int csum_size = btrfs_super_csum_size(fs_info->super_copy);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004838
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004839 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA);
4840 spin_lock(&sinfo->lock);
4841 data_used = sinfo->bytes_used;
4842 spin_unlock(&sinfo->lock);
4843
4844 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4845 spin_lock(&sinfo->lock);
Josef Bacik6d487552010-10-15 15:13:32 -04004846 if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA)
4847 data_used = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004848 meta_used = sinfo->bytes_used;
4849 spin_unlock(&sinfo->lock);
4850
4851 num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) *
4852 csum_size * 2;
4853 num_bytes += div64_u64(data_used + meta_used, 50);
4854
4855 if (num_bytes * 3 > meta_used)
Chris Mason8e62c2d2012-04-12 13:46:48 -04004856 num_bytes = div64_u64(meta_used, 3);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004857
David Sterba707e8a02014-06-04 19:22:26 +02004858 return ALIGN(num_bytes, fs_info->extent_root->nodesize << 10);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004859}
4860
4861static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
4862{
4863 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
4864 struct btrfs_space_info *sinfo = block_rsv->space_info;
4865 u64 num_bytes;
4866
4867 num_bytes = calc_global_metadata_size(fs_info);
4868
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004869 spin_lock(&sinfo->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04004870 spin_lock(&block_rsv->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004871
Josef Bacikfdf30d12013-03-26 15:31:45 -04004872 block_rsv->size = min_t(u64, num_bytes, 512 * 1024 * 1024);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004873
4874 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
Josef Bacik6d487552010-10-15 15:13:32 -04004875 sinfo->bytes_reserved + sinfo->bytes_readonly +
4876 sinfo->bytes_may_use;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004877
4878 if (sinfo->total_bytes > num_bytes) {
4879 num_bytes = sinfo->total_bytes - num_bytes;
4880 block_rsv->reserved += num_bytes;
Josef Bacikfb25e912011-07-26 17:00:46 -04004881 sinfo->bytes_may_use += num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004882 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004883 sinfo->flags, num_bytes, 1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004884 }
4885
4886 if (block_rsv->reserved >= block_rsv->size) {
4887 num_bytes = block_rsv->reserved - block_rsv->size;
Josef Bacikfb25e912011-07-26 17:00:46 -04004888 sinfo->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004889 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004890 sinfo->flags, num_bytes, 0);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004891 block_rsv->reserved = block_rsv->size;
4892 block_rsv->full = 1;
4893 }
David Sterba182608c2011-05-05 13:13:16 +02004894
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004895 spin_unlock(&block_rsv->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04004896 spin_unlock(&sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004897}
4898
Yan, Zhengf0486c62010-05-16 10:46:25 -04004899static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
4900{
4901 struct btrfs_space_info *space_info;
4902
4903 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4904 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004905
4906 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004907 fs_info->global_block_rsv.space_info = space_info;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004908 fs_info->delalloc_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004909 fs_info->trans_block_rsv.space_info = space_info;
4910 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04004911 fs_info->delayed_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004912
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004913 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
4914 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
4915 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
4916 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Stefan Behrens3a6cad92013-05-16 14:48:19 +00004917 if (fs_info->quota_root)
4918 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004919 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004920
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004921 update_global_block_rsv(fs_info);
4922}
4923
4924static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
4925{
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004926 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
4927 (u64)-1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004928 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
4929 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
4930 WARN_ON(fs_info->trans_block_rsv.size > 0);
4931 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
4932 WARN_ON(fs_info->chunk_block_rsv.size > 0);
4933 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04004934 WARN_ON(fs_info->delayed_block_rsv.size > 0);
4935 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04004936}
4937
Yan, Zhenga22285a2010-05-16 10:48:46 -04004938void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
4939 struct btrfs_root *root)
4940{
Josef Bacik0e721102012-06-26 16:13:18 -04004941 if (!trans->block_rsv)
4942 return;
4943
Yan, Zhenga22285a2010-05-16 10:48:46 -04004944 if (!trans->bytes_reserved)
4945 return;
4946
Chris Masone77266e2012-02-24 10:39:05 -05004947 trace_btrfs_space_reservation(root->fs_info, "transaction",
Liu Bo2bcc0322012-03-29 09:57:44 -04004948 trans->transid, trans->bytes_reserved, 0);
Josef Bacikb24e03d2011-10-14 14:40:17 -04004949 btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004950 trans->bytes_reserved = 0;
4951}
4952
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004953/* Can only return 0 or -ENOSPC */
Yan, Zhengd68fc572010-05-16 10:49:58 -04004954int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
4955 struct inode *inode)
4956{
4957 struct btrfs_root *root = BTRFS_I(inode)->root;
4958 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
4959 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
4960
4961 /*
Josef Bacikfcb80c22011-05-03 10:40:22 -04004962 * We need to hold space in order to delete our orphan item once we've
4963 * added it, so this takes the reservation so we can release it later
4964 * when we are truly done with the orphan item.
Yan, Zhengd68fc572010-05-16 10:49:58 -04004965 */
Chris Masonff5714c2011-05-28 07:00:39 -04004966 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004967 trace_btrfs_space_reservation(root->fs_info, "orphan",
4968 btrfs_ino(inode), num_bytes, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04004969 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
4970}
4971
4972void btrfs_orphan_release_metadata(struct inode *inode)
4973{
4974 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonff5714c2011-05-28 07:00:39 -04004975 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004976 trace_btrfs_space_reservation(root->fs_info, "orphan",
4977 btrfs_ino(inode), num_bytes, 0);
Yan, Zhengd68fc572010-05-16 10:49:58 -04004978 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
4979}
4980
Miao Xied5c12072013-02-28 10:04:33 +00004981/*
4982 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
4983 * root: the root of the parent directory
4984 * rsv: block reservation
4985 * items: the number of items that we need do reservation
4986 * qgroup_reserved: used to return the reserved size in qgroup
4987 *
4988 * This function is used to reserve the space for snapshot/subvolume
4989 * creation and deletion. Those operations are different with the
4990 * common file/directory operations, they change two fs/file trees
4991 * and root tree, the number of items that the qgroup reserves is
4992 * different with the free space reservation. So we can not use
4993 * the space reseravtion mechanism in start_transaction().
4994 */
4995int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
4996 struct btrfs_block_rsv *rsv,
4997 int items,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04004998 u64 *qgroup_reserved,
4999 bool use_global_rsv)
Yan, Zhenga22285a2010-05-16 10:48:46 -04005000{
Miao Xied5c12072013-02-28 10:04:33 +00005001 u64 num_bytes;
5002 int ret;
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005003 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Miao Xied5c12072013-02-28 10:04:33 +00005004
5005 if (root->fs_info->quota_enabled) {
5006 /* One for parent inode, two for dir entries */
David Sterba707e8a02014-06-04 19:22:26 +02005007 num_bytes = 3 * root->nodesize;
Miao Xied5c12072013-02-28 10:04:33 +00005008 ret = btrfs_qgroup_reserve(root, num_bytes);
5009 if (ret)
5010 return ret;
5011 } else {
5012 num_bytes = 0;
5013 }
5014
5015 *qgroup_reserved = num_bytes;
5016
5017 num_bytes = btrfs_calc_trans_metadata_size(root, items);
5018 rsv->space_info = __find_space_info(root->fs_info,
5019 BTRFS_BLOCK_GROUP_METADATA);
5020 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
5021 BTRFS_RESERVE_FLUSH_ALL);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005022
5023 if (ret == -ENOSPC && use_global_rsv)
5024 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes);
5025
Miao Xied5c12072013-02-28 10:04:33 +00005026 if (ret) {
5027 if (*qgroup_reserved)
5028 btrfs_qgroup_free(root, *qgroup_reserved);
5029 }
5030
5031 return ret;
5032}
5033
5034void btrfs_subvolume_release_metadata(struct btrfs_root *root,
5035 struct btrfs_block_rsv *rsv,
5036 u64 qgroup_reserved)
5037{
5038 btrfs_block_rsv_release(root, rsv, (u64)-1);
5039 if (qgroup_reserved)
5040 btrfs_qgroup_free(root, qgroup_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005041}
5042
Josef Bacik7709cde2011-08-04 10:25:02 -04005043/**
5044 * drop_outstanding_extent - drop an outstanding extent
5045 * @inode: the inode we're dropping the extent for
5046 *
5047 * This is called when we are freeing up an outstanding extent, either called
5048 * after an error or after an extent is written. This will return the number of
5049 * reserved extents that need to be freed. This must be called with
5050 * BTRFS_I(inode)->lock held.
5051 */
Josef Bacik9e0baf62011-07-15 15:16:44 +00005052static unsigned drop_outstanding_extent(struct inode *inode)
5053{
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005054 unsigned drop_inode_space = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005055 unsigned dropped_extents = 0;
5056
Josef Bacik9e0baf62011-07-15 15:16:44 +00005057 BUG_ON(!BTRFS_I(inode)->outstanding_extents);
5058 BTRFS_I(inode)->outstanding_extents--;
5059
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005060 if (BTRFS_I(inode)->outstanding_extents == 0 &&
Josef Bacik72ac3c02012-05-23 14:13:11 -04005061 test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5062 &BTRFS_I(inode)->runtime_flags))
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005063 drop_inode_space = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005064
Josef Bacik9e0baf62011-07-15 15:16:44 +00005065 /*
5066 * If we have more or the same amount of outsanding extents than we have
5067 * reserved then we need to leave the reserved extents count alone.
5068 */
5069 if (BTRFS_I(inode)->outstanding_extents >=
5070 BTRFS_I(inode)->reserved_extents)
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005071 return drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005072
5073 dropped_extents = BTRFS_I(inode)->reserved_extents -
5074 BTRFS_I(inode)->outstanding_extents;
5075 BTRFS_I(inode)->reserved_extents -= dropped_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005076 return dropped_extents + drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005077}
5078
Josef Bacik7709cde2011-08-04 10:25:02 -04005079/**
5080 * calc_csum_metadata_size - return the amount of metada space that must be
5081 * reserved/free'd for the given bytes.
5082 * @inode: the inode we're manipulating
5083 * @num_bytes: the number of bytes in question
5084 * @reserve: 1 if we are reserving space, 0 if we are freeing space
5085 *
5086 * This adjusts the number of csum_bytes in the inode and then returns the
5087 * correct amount of metadata that must either be reserved or freed. We
5088 * calculate how many checksums we can fit into one leaf and then divide the
5089 * number of bytes that will need to be checksumed by this value to figure out
5090 * how many checksums will be required. If we are adding bytes then the number
5091 * may go up and we will return the number of additional bytes that must be
5092 * reserved. If it is going down we will return the number of bytes that must
5093 * be freed.
5094 *
5095 * This must be called with BTRFS_I(inode)->lock held.
5096 */
5097static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes,
5098 int reserve)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005099{
Josef Bacik7709cde2011-08-04 10:25:02 -04005100 struct btrfs_root *root = BTRFS_I(inode)->root;
5101 u64 csum_size;
5102 int num_csums_per_leaf;
5103 int num_csums;
5104 int old_csums;
5105
5106 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM &&
5107 BTRFS_I(inode)->csum_bytes == 0)
5108 return 0;
5109
5110 old_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize);
5111 if (reserve)
5112 BTRFS_I(inode)->csum_bytes += num_bytes;
5113 else
5114 BTRFS_I(inode)->csum_bytes -= num_bytes;
5115 csum_size = BTRFS_LEAF_DATA_SIZE(root) - sizeof(struct btrfs_item);
5116 num_csums_per_leaf = (int)div64_u64(csum_size,
5117 sizeof(struct btrfs_csum_item) +
5118 sizeof(struct btrfs_disk_key));
5119 num_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize);
5120 num_csums = num_csums + num_csums_per_leaf - 1;
5121 num_csums = num_csums / num_csums_per_leaf;
5122
5123 old_csums = old_csums + num_csums_per_leaf - 1;
5124 old_csums = old_csums / num_csums_per_leaf;
5125
5126 /* No change, no need to reserve more */
5127 if (old_csums == num_csums)
5128 return 0;
5129
5130 if (reserve)
5131 return btrfs_calc_trans_metadata_size(root,
5132 num_csums - old_csums);
5133
5134 return btrfs_calc_trans_metadata_size(root, old_csums - num_csums);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005135}
5136
5137int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
5138{
5139 struct btrfs_root *root = BTRFS_I(inode)->root;
5140 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005141 u64 to_reserve = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05005142 u64 csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005143 unsigned nr_extents = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05005144 int extra_reserve = 0;
Miao Xie08e007d2012-10-16 11:33:38 +00005145 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
Jan Schmidteb6b88d2013-01-27 23:26:00 -07005146 int ret = 0;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005147 bool delalloc_lock = true;
Wang Shilong88e081bf2013-03-01 11:36:01 +00005148 u64 to_free = 0;
5149 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005150
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005151 /* If we are a free space inode we need to not flush since we will be in
5152 * the middle of a transaction commit. We also don't need the delalloc
5153 * mutex since we won't race with anybody. We need this mostly to make
5154 * lockdep shut its filthy mouth.
5155 */
5156 if (btrfs_is_free_space_inode(inode)) {
Miao Xie08e007d2012-10-16 11:33:38 +00005157 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005158 delalloc_lock = false;
5159 }
Josef Bacikc09544e2011-08-30 10:19:10 -04005160
Miao Xie08e007d2012-10-16 11:33:38 +00005161 if (flush != BTRFS_RESERVE_NO_FLUSH &&
5162 btrfs_transaction_in_commit(root->fs_info))
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005163 schedule_timeout(1);
5164
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005165 if (delalloc_lock)
5166 mutex_lock(&BTRFS_I(inode)->delalloc_mutex);
5167
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005168 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005169
Josef Bacik9e0baf62011-07-15 15:16:44 +00005170 spin_lock(&BTRFS_I(inode)->lock);
5171 BTRFS_I(inode)->outstanding_extents++;
Josef Bacik57a45ced2011-01-25 16:30:38 -05005172
Josef Bacik9e0baf62011-07-15 15:16:44 +00005173 if (BTRFS_I(inode)->outstanding_extents >
Josef Bacik660d3f62011-12-09 11:18:51 -05005174 BTRFS_I(inode)->reserved_extents)
Josef Bacik9e0baf62011-07-15 15:16:44 +00005175 nr_extents = BTRFS_I(inode)->outstanding_extents -
5176 BTRFS_I(inode)->reserved_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005177
5178 /*
5179 * Add an item to reserve for updating the inode when we complete the
5180 * delalloc io.
5181 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04005182 if (!test_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5183 &BTRFS_I(inode)->runtime_flags)) {
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005184 nr_extents++;
Josef Bacik660d3f62011-12-09 11:18:51 -05005185 extra_reserve = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005186 }
5187
5188 to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04005189 to_reserve += calc_csum_metadata_size(inode, num_bytes, 1);
Josef Bacik660d3f62011-12-09 11:18:51 -05005190 csum_bytes = BTRFS_I(inode)->csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005191 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05005192
Wang Shilong88e081bf2013-03-01 11:36:01 +00005193 if (root->fs_info->quota_enabled) {
Arne Jansenc5567232011-09-14 15:44:05 +02005194 ret = btrfs_qgroup_reserve(root, num_bytes +
David Sterba707e8a02014-06-04 19:22:26 +02005195 nr_extents * root->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005196 if (ret)
5197 goto out_fail;
Wang Shilonga9870c02013-03-01 11:33:01 +00005198 }
Arne Jansenc5567232011-09-14 15:44:05 +02005199
Wang Shilong88e081bf2013-03-01 11:36:01 +00005200 ret = reserve_metadata_bytes(root, block_rsv, to_reserve, flush);
5201 if (unlikely(ret)) {
5202 if (root->fs_info->quota_enabled)
Miao Xie4b5829a2012-12-05 10:53:25 +00005203 btrfs_qgroup_free(root, num_bytes +
David Sterba707e8a02014-06-04 19:22:26 +02005204 nr_extents * root->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005205 goto out_fail;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005206 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005207
Josef Bacik660d3f62011-12-09 11:18:51 -05005208 spin_lock(&BTRFS_I(inode)->lock);
5209 if (extra_reserve) {
Josef Bacik72ac3c02012-05-23 14:13:11 -04005210 set_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5211 &BTRFS_I(inode)->runtime_flags);
Josef Bacik660d3f62011-12-09 11:18:51 -05005212 nr_extents--;
5213 }
5214 BTRFS_I(inode)->reserved_extents += nr_extents;
5215 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005216
5217 if (delalloc_lock)
5218 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
Josef Bacik660d3f62011-12-09 11:18:51 -05005219
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005220 if (to_reserve)
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05305221 trace_btrfs_space_reservation(root->fs_info, "delalloc",
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005222 btrfs_ino(inode), to_reserve, 1);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005223 block_rsv_add_bytes(block_rsv, to_reserve, 1);
5224
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005225 return 0;
Wang Shilong88e081bf2013-03-01 11:36:01 +00005226
5227out_fail:
5228 spin_lock(&BTRFS_I(inode)->lock);
5229 dropped = drop_outstanding_extent(inode);
5230 /*
5231 * If the inodes csum_bytes is the same as the original
5232 * csum_bytes then we know we haven't raced with any free()ers
5233 * so we can just reduce our inodes csum bytes and carry on.
Wang Shilong88e081bf2013-03-01 11:36:01 +00005234 */
Josef Bacikf4881bc2013-03-25 16:03:35 -04005235 if (BTRFS_I(inode)->csum_bytes == csum_bytes) {
Wang Shilong88e081bf2013-03-01 11:36:01 +00005236 calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacikf4881bc2013-03-25 16:03:35 -04005237 } else {
5238 u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes;
5239 u64 bytes;
5240
5241 /*
5242 * This is tricky, but first we need to figure out how much we
5243 * free'd from any free-ers that occured during this
5244 * reservation, so we reset ->csum_bytes to the csum_bytes
5245 * before we dropped our lock, and then call the free for the
5246 * number of bytes that were freed while we were trying our
5247 * reservation.
5248 */
5249 bytes = csum_bytes - BTRFS_I(inode)->csum_bytes;
5250 BTRFS_I(inode)->csum_bytes = csum_bytes;
5251 to_free = calc_csum_metadata_size(inode, bytes, 0);
5252
5253
5254 /*
5255 * Now we need to see how much we would have freed had we not
5256 * been making this reservation and our ->csum_bytes were not
5257 * artificially inflated.
5258 */
5259 BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes;
5260 bytes = csum_bytes - orig_csum_bytes;
5261 bytes = calc_csum_metadata_size(inode, bytes, 0);
5262
5263 /*
5264 * Now reset ->csum_bytes to what it should be. If bytes is
5265 * more than to_free then we would have free'd more space had we
5266 * not had an artificially high ->csum_bytes, so we need to free
5267 * the remainder. If bytes is the same or less then we don't
5268 * need to do anything, the other free-ers did the correct
5269 * thing.
5270 */
5271 BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes;
5272 if (bytes > to_free)
5273 to_free = bytes - to_free;
5274 else
5275 to_free = 0;
5276 }
Wang Shilong88e081bf2013-03-01 11:36:01 +00005277 spin_unlock(&BTRFS_I(inode)->lock);
5278 if (dropped)
5279 to_free += btrfs_calc_trans_metadata_size(root, dropped);
5280
5281 if (to_free) {
5282 btrfs_block_rsv_release(root, block_rsv, to_free);
5283 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5284 btrfs_ino(inode), to_free, 0);
5285 }
5286 if (delalloc_lock)
5287 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
5288 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005289}
5290
Josef Bacik7709cde2011-08-04 10:25:02 -04005291/**
5292 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
5293 * @inode: the inode to release the reservation for
5294 * @num_bytes: the number of bytes we're releasing
5295 *
5296 * This will release the metadata reservation for an inode. This can be called
5297 * once we complete IO for a given set of bytes to release their metadata
5298 * reservations.
5299 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005300void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
5301{
5302 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005303 u64 to_free = 0;
5304 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005305
5306 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik7709cde2011-08-04 10:25:02 -04005307 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00005308 dropped = drop_outstanding_extent(inode);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005309
Miao Xie09348562013-02-07 10:12:07 +00005310 if (num_bytes)
5311 to_free = calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacik7709cde2011-08-04 10:25:02 -04005312 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00005313 if (dropped > 0)
5314 to_free += btrfs_calc_trans_metadata_size(root, dropped);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005315
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005316 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5317 btrfs_ino(inode), to_free, 0);
Arne Jansenc5567232011-09-14 15:44:05 +02005318 if (root->fs_info->quota_enabled) {
5319 btrfs_qgroup_free(root, num_bytes +
David Sterba707e8a02014-06-04 19:22:26 +02005320 dropped * root->nodesize);
Arne Jansenc5567232011-09-14 15:44:05 +02005321 }
5322
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005323 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
5324 to_free);
5325}
5326
Josef Bacik7709cde2011-08-04 10:25:02 -04005327/**
5328 * btrfs_delalloc_reserve_space - reserve data and metadata space for delalloc
5329 * @inode: inode we're writing to
5330 * @num_bytes: the number of bytes we want to allocate
5331 *
5332 * This will do the following things
5333 *
5334 * o reserve space in the data space info for num_bytes
5335 * o reserve space in the metadata space info based on number of outstanding
5336 * extents and how much csums will be needed
5337 * o add to the inodes ->delalloc_bytes
5338 * o add it to the fs_info's delalloc inodes list.
5339 *
5340 * This will return 0 for success and -ENOSPC if there is no space left.
5341 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005342int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes)
5343{
5344 int ret;
5345
5346 ret = btrfs_check_data_free_space(inode, num_bytes);
5347 if (ret)
5348 return ret;
5349
5350 ret = btrfs_delalloc_reserve_metadata(inode, num_bytes);
5351 if (ret) {
5352 btrfs_free_reserved_data_space(inode, num_bytes);
5353 return ret;
5354 }
5355
5356 return 0;
5357}
5358
Josef Bacik7709cde2011-08-04 10:25:02 -04005359/**
5360 * btrfs_delalloc_release_space - release data and metadata space for delalloc
5361 * @inode: inode we're releasing space for
5362 * @num_bytes: the number of bytes we want to free up
5363 *
5364 * This must be matched with a call to btrfs_delalloc_reserve_space. This is
5365 * called in the case that we don't need the metadata AND data reservations
5366 * anymore. So if there is an error or we insert an inline extent.
5367 *
5368 * This function will release the metadata space that was not used and will
5369 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
5370 * list if there are no delalloc bytes left.
5371 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005372void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes)
5373{
5374 btrfs_delalloc_release_metadata(inode, num_bytes);
5375 btrfs_free_reserved_data_space(inode, num_bytes);
5376}
5377
Liu Boc53d6132012-12-27 09:01:19 +00005378static int update_block_group(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005379 u64 bytenr, u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04005380{
Josef Bacik0af3d002010-06-21 14:48:16 -04005381 struct btrfs_block_group_cache *cache = NULL;
Chris Mason9078a3e2007-04-26 16:46:15 -04005382 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04005383 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005384 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04005385 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04005386 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04005387
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005388 /* block accounting for super block */
Miao Xieeb73c1b2013-05-15 07:48:22 +00005389 spin_lock(&info->delalloc_root_lock);
David Sterba6c417612011-04-13 15:41:04 +02005390 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005391 if (alloc)
5392 old_val += num_bytes;
5393 else
5394 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02005395 btrfs_set_super_bytes_used(info->super_copy, old_val);
Miao Xieeb73c1b2013-05-15 07:48:22 +00005396 spin_unlock(&info->delalloc_root_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005397
Chris Masond3977122009-01-05 21:25:51 -05005398 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04005399 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05005400 if (!cache)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005401 return -ENOENT;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005402 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
5403 BTRFS_BLOCK_GROUP_RAID1 |
5404 BTRFS_BLOCK_GROUP_RAID10))
5405 factor = 2;
5406 else
5407 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04005408 /*
5409 * If this block group has free space cache written out, we
5410 * need to make sure to load it if we are removing space. This
5411 * is because we need the unpinning stage to actually add the
5412 * space back to the block group, otherwise we will leak space.
5413 */
5414 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Liu Bof6373bf2012-12-27 09:01:18 +00005415 cache_block_group(cache, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04005416
Chris Masondb945352007-10-15 16:15:53 -04005417 byte_in_group = bytenr - cache->key.objectid;
5418 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04005419
Josef Bacik25179202008-10-29 14:49:05 -04005420 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04005421 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04005422
Josef Bacik73bc1872011-10-03 14:07:49 -04005423 if (btrfs_test_opt(root, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04005424 cache->disk_cache_state < BTRFS_DC_CLEAR)
5425 cache->disk_cache_state = BTRFS_DC_CLEAR;
5426
Josef Bacik0f9dd462008-09-23 13:14:11 -04005427 cache->dirty = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04005428 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04005429 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04005430 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04005431 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04005432 btrfs_set_block_group_used(&cache->item, old_val);
5433 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04005434 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005435 cache->space_info->bytes_used += num_bytes;
5436 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04005437 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005438 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04005439 } else {
Chris Masondb945352007-10-15 16:15:53 -04005440 old_val -= num_bytes;
Filipe Mananaae0ab002014-11-26 15:28:52 +00005441 btrfs_set_block_group_used(&cache->item, old_val);
5442 cache->pinned += num_bytes;
5443 cache->space_info->bytes_pinned += num_bytes;
5444 cache->space_info->bytes_used -= num_bytes;
5445 cache->space_info->disk_used -= num_bytes * factor;
5446 spin_unlock(&cache->lock);
5447 spin_unlock(&cache->space_info->lock);
Josef Bacik47ab2a62014-09-18 11:20:02 -04005448
Filipe Mananaae0ab002014-11-26 15:28:52 +00005449 set_extent_dirty(info->pinned_extents,
5450 bytenr, bytenr + num_bytes - 1,
5451 GFP_NOFS | __GFP_NOFAIL);
Josef Bacik47ab2a62014-09-18 11:20:02 -04005452 /*
5453 * No longer have used bytes in this block group, queue
5454 * it for deletion.
5455 */
5456 if (old_val == 0) {
5457 spin_lock(&info->unused_bgs_lock);
5458 if (list_empty(&cache->bg_list)) {
5459 btrfs_get_block_group(cache);
5460 list_add_tail(&cache->bg_list,
5461 &info->unused_bgs);
5462 }
5463 spin_unlock(&info->unused_bgs_lock);
5464 }
Chris Masoncd1bc462007-04-27 10:08:34 -04005465 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04005466 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04005467 total -= num_bytes;
5468 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005469 }
5470 return 0;
5471}
Chris Mason6324fbf2008-03-24 15:01:59 -04005472
Chris Masona061fc82008-05-07 11:43:44 -04005473static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
5474{
Josef Bacik0f9dd462008-09-23 13:14:11 -04005475 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05005476 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005477
Liu Boa1897fd2012-12-27 09:01:23 +00005478 spin_lock(&root->fs_info->block_group_cache_lock);
5479 bytenr = root->fs_info->first_logical_byte;
5480 spin_unlock(&root->fs_info->block_group_cache_lock);
5481
5482 if (bytenr < (u64)-1)
5483 return bytenr;
5484
Josef Bacik0f9dd462008-09-23 13:14:11 -04005485 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
5486 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04005487 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005488
Yan Zhengd2fb3432008-12-11 16:30:39 -05005489 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005490 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05005491
5492 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04005493}
5494
Yan, Zhengf0486c62010-05-16 10:46:25 -04005495static int pin_down_extent(struct btrfs_root *root,
5496 struct btrfs_block_group_cache *cache,
5497 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05005498{
Yan Zheng11833d62009-09-11 16:11:19 -04005499 spin_lock(&cache->space_info->lock);
5500 spin_lock(&cache->lock);
5501 cache->pinned += num_bytes;
5502 cache->space_info->bytes_pinned += num_bytes;
5503 if (reserved) {
5504 cache->reserved -= num_bytes;
5505 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05005506 }
Yan Zheng11833d62009-09-11 16:11:19 -04005507 spin_unlock(&cache->lock);
5508 spin_unlock(&cache->space_info->lock);
5509
Yan, Zhengf0486c62010-05-16 10:46:25 -04005510 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
5511 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Josef Bacik0be5dc62013-10-07 15:18:52 -04005512 if (reserved)
5513 trace_btrfs_reserved_extent_free(root, bytenr, num_bytes);
Yan324ae4d2007-11-16 14:57:08 -05005514 return 0;
5515}
Chris Mason9078a3e2007-04-26 16:46:15 -04005516
Yan, Zhengf0486c62010-05-16 10:46:25 -04005517/*
5518 * this function must be called within transaction
5519 */
5520int btrfs_pin_extent(struct btrfs_root *root,
5521 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04005522{
Yan, Zhengf0486c62010-05-16 10:46:25 -04005523 struct btrfs_block_group_cache *cache;
5524
5525 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005526 BUG_ON(!cache); /* Logic error */
Yan, Zhengf0486c62010-05-16 10:46:25 -04005527
5528 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
5529
5530 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04005531 return 0;
5532}
Zheng Yane8569812008-09-26 10:05:48 -04005533
Yan, Zhengf0486c62010-05-16 10:46:25 -04005534/*
Chris Masone688b7252011-10-31 20:52:39 -04005535 * this function must be called within transaction
Yan, Zhengf0486c62010-05-16 10:46:25 -04005536 */
Liu Bodcfac412012-12-27 09:01:20 +00005537int btrfs_pin_extent_for_log_replay(struct btrfs_root *root,
Chris Masone688b7252011-10-31 20:52:39 -04005538 u64 bytenr, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005539{
Chris Masone688b7252011-10-31 20:52:39 -04005540 struct btrfs_block_group_cache *cache;
Josef Bacikb50c6e22013-04-25 15:55:30 -04005541 int ret;
Chris Masone688b7252011-10-31 20:52:39 -04005542
5543 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005544 if (!cache)
5545 return -EINVAL;
Chris Masone688b7252011-10-31 20:52:39 -04005546
5547 /*
5548 * pull in the free space cache (if any) so that our pin
5549 * removes the free space from the cache. We have load_only set
5550 * to one because the slow code to read in the free extents does check
5551 * the pinned extents.
5552 */
Liu Bof6373bf2012-12-27 09:01:18 +00005553 cache_block_group(cache, 1);
Chris Masone688b7252011-10-31 20:52:39 -04005554
5555 pin_down_extent(root, cache, bytenr, num_bytes, 0);
5556
5557 /* remove us from the free space cache (if we're there at all) */
Josef Bacikb50c6e22013-04-25 15:55:30 -04005558 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
Chris Masone688b7252011-10-31 20:52:39 -04005559 btrfs_put_block_group(cache);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005560 return ret;
Chris Masone688b7252011-10-31 20:52:39 -04005561}
5562
Josef Bacik8c2a1a32013-06-06 13:19:32 -04005563static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes)
5564{
5565 int ret;
5566 struct btrfs_block_group_cache *block_group;
5567 struct btrfs_caching_control *caching_ctl;
5568
5569 block_group = btrfs_lookup_block_group(root->fs_info, start);
5570 if (!block_group)
5571 return -EINVAL;
5572
5573 cache_block_group(block_group, 0);
5574 caching_ctl = get_caching_control(block_group);
5575
5576 if (!caching_ctl) {
5577 /* Logic error */
5578 BUG_ON(!block_group_cache_done(block_group));
5579 ret = btrfs_remove_free_space(block_group, start, num_bytes);
5580 } else {
5581 mutex_lock(&caching_ctl->mutex);
5582
5583 if (start >= caching_ctl->progress) {
5584 ret = add_excluded_extent(root, start, num_bytes);
5585 } else if (start + num_bytes <= caching_ctl->progress) {
5586 ret = btrfs_remove_free_space(block_group,
5587 start, num_bytes);
5588 } else {
5589 num_bytes = caching_ctl->progress - start;
5590 ret = btrfs_remove_free_space(block_group,
5591 start, num_bytes);
5592 if (ret)
5593 goto out_lock;
5594
5595 num_bytes = (start + num_bytes) -
5596 caching_ctl->progress;
5597 start = caching_ctl->progress;
5598 ret = add_excluded_extent(root, start, num_bytes);
5599 }
5600out_lock:
5601 mutex_unlock(&caching_ctl->mutex);
5602 put_caching_control(caching_ctl);
5603 }
5604 btrfs_put_block_group(block_group);
5605 return ret;
5606}
5607
5608int btrfs_exclude_logged_extents(struct btrfs_root *log,
5609 struct extent_buffer *eb)
5610{
5611 struct btrfs_file_extent_item *item;
5612 struct btrfs_key key;
5613 int found_type;
5614 int i;
5615
5616 if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS))
5617 return 0;
5618
5619 for (i = 0; i < btrfs_header_nritems(eb); i++) {
5620 btrfs_item_key_to_cpu(eb, &key, i);
5621 if (key.type != BTRFS_EXTENT_DATA_KEY)
5622 continue;
5623 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
5624 found_type = btrfs_file_extent_type(eb, item);
5625 if (found_type == BTRFS_FILE_EXTENT_INLINE)
5626 continue;
5627 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
5628 continue;
5629 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
5630 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
5631 __exclude_logged_extent(log, key.objectid, key.offset);
5632 }
5633
5634 return 0;
5635}
5636
Josef Bacikfb25e912011-07-26 17:00:46 -04005637/**
5638 * btrfs_update_reserved_bytes - update the block_group and space info counters
5639 * @cache: The cache we are manipulating
5640 * @num_bytes: The number of bytes in question
5641 * @reserve: One of the reservation enums
Miao Xiee570fd22014-06-19 10:42:50 +08005642 * @delalloc: The blocks are allocated for the delalloc write
Josef Bacikfb25e912011-07-26 17:00:46 -04005643 *
5644 * This is called by the allocator when it reserves space, or by somebody who is
5645 * freeing space that was never actually used on disk. For example if you
5646 * reserve some space for a new leaf in transaction A and before transaction A
5647 * commits you free that leaf, you call this with reserve set to 0 in order to
5648 * clear the reservation.
5649 *
5650 * Metadata reservations should be called with RESERVE_ALLOC so we do the proper
5651 * ENOSPC accounting. For data we handle the reservation through clearing the
5652 * delalloc bits in the io_tree. We have to do this since we could end up
5653 * allocating less disk space for the amount of data we have reserved in the
5654 * case of compression.
5655 *
5656 * If this is a reservation and the block group has become read only we cannot
5657 * make the reservation and return -EAGAIN, otherwise this function always
5658 * succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04005659 */
Josef Bacikfb25e912011-07-26 17:00:46 -04005660static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
Miao Xiee570fd22014-06-19 10:42:50 +08005661 u64 num_bytes, int reserve, int delalloc)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005662{
Josef Bacikfb25e912011-07-26 17:00:46 -04005663 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005664 int ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005665
Josef Bacikfb25e912011-07-26 17:00:46 -04005666 spin_lock(&space_info->lock);
5667 spin_lock(&cache->lock);
5668 if (reserve != RESERVE_FREE) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005669 if (cache->ro) {
5670 ret = -EAGAIN;
5671 } else {
Josef Bacikfb25e912011-07-26 17:00:46 -04005672 cache->reserved += num_bytes;
5673 space_info->bytes_reserved += num_bytes;
5674 if (reserve == RESERVE_ALLOC) {
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005675 trace_btrfs_space_reservation(cache->fs_info,
Liu Bo2bcc0322012-03-29 09:57:44 -04005676 "space_info", space_info->flags,
5677 num_bytes, 0);
Josef Bacikfb25e912011-07-26 17:00:46 -04005678 space_info->bytes_may_use -= num_bytes;
5679 }
Miao Xiee570fd22014-06-19 10:42:50 +08005680
5681 if (delalloc)
5682 cache->delalloc_bytes += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005683 }
Josef Bacikfb25e912011-07-26 17:00:46 -04005684 } else {
5685 if (cache->ro)
5686 space_info->bytes_readonly += num_bytes;
5687 cache->reserved -= num_bytes;
5688 space_info->bytes_reserved -= num_bytes;
Miao Xiee570fd22014-06-19 10:42:50 +08005689
5690 if (delalloc)
5691 cache->delalloc_bytes -= num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005692 }
Josef Bacikfb25e912011-07-26 17:00:46 -04005693 spin_unlock(&cache->lock);
5694 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005695 return ret;
5696}
5697
Jeff Mahoney143bede2012-03-01 14:56:26 +01005698void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04005699 struct btrfs_root *root)
5700{
5701 struct btrfs_fs_info *fs_info = root->fs_info;
5702 struct btrfs_caching_control *next;
5703 struct btrfs_caching_control *caching_ctl;
5704 struct btrfs_block_group_cache *cache;
5705
Josef Bacik9e351cc2014-03-13 15:42:13 -04005706 down_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04005707
5708 list_for_each_entry_safe(caching_ctl, next,
5709 &fs_info->caching_block_groups, list) {
5710 cache = caching_ctl->block_group;
5711 if (block_group_cache_done(cache)) {
5712 cache->last_byte_to_unpin = (u64)-1;
5713 list_del_init(&caching_ctl->list);
5714 put_caching_control(caching_ctl);
5715 } else {
5716 cache->last_byte_to_unpin = caching_ctl->progress;
5717 }
5718 }
5719
5720 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
5721 fs_info->pinned_extents = &fs_info->freed_extents[1];
5722 else
5723 fs_info->pinned_extents = &fs_info->freed_extents[0];
5724
Josef Bacik9e351cc2014-03-13 15:42:13 -04005725 up_write(&fs_info->commit_root_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005726
5727 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04005728}
5729
5730static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
5731{
5732 struct btrfs_fs_info *fs_info = root->fs_info;
5733 struct btrfs_block_group_cache *cache = NULL;
Josef Bacik7b398f82012-10-22 15:52:28 -04005734 struct btrfs_space_info *space_info;
5735 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Yan Zheng11833d62009-09-11 16:11:19 -04005736 u64 len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005737 bool readonly;
Yan Zheng11833d62009-09-11 16:11:19 -04005738
5739 while (start <= end) {
Josef Bacik7b398f82012-10-22 15:52:28 -04005740 readonly = false;
Yan Zheng11833d62009-09-11 16:11:19 -04005741 if (!cache ||
5742 start >= cache->key.objectid + cache->key.offset) {
5743 if (cache)
5744 btrfs_put_block_group(cache);
5745 cache = btrfs_lookup_block_group(fs_info, start);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005746 BUG_ON(!cache); /* Logic error */
Yan Zheng11833d62009-09-11 16:11:19 -04005747 }
5748
5749 len = cache->key.objectid + cache->key.offset - start;
5750 len = min(len, end + 1 - start);
5751
5752 if (start < cache->last_byte_to_unpin) {
5753 len = min(len, cache->last_byte_to_unpin - start);
5754 btrfs_add_free_space(cache, start, len);
5755 }
Josef Bacik25179202008-10-29 14:49:05 -04005756
Yan, Zhengf0486c62010-05-16 10:46:25 -04005757 start += len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005758 space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005759
Josef Bacik7b398f82012-10-22 15:52:28 -04005760 spin_lock(&space_info->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005761 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04005762 cache->pinned -= len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005763 space_info->bytes_pinned -= len;
Liu Bod288db52014-07-02 16:58:01 +08005764 percpu_counter_add(&space_info->total_bytes_pinned, -len);
Josef Bacik7b398f82012-10-22 15:52:28 -04005765 if (cache->ro) {
5766 space_info->bytes_readonly += len;
5767 readonly = true;
5768 }
Josef Bacik25179202008-10-29 14:49:05 -04005769 spin_unlock(&cache->lock);
Josef Bacik7b398f82012-10-22 15:52:28 -04005770 if (!readonly && global_rsv->space_info == space_info) {
5771 spin_lock(&global_rsv->lock);
5772 if (!global_rsv->full) {
5773 len = min(len, global_rsv->size -
5774 global_rsv->reserved);
5775 global_rsv->reserved += len;
5776 space_info->bytes_may_use += len;
5777 if (global_rsv->reserved >= global_rsv->size)
5778 global_rsv->full = 1;
5779 }
5780 spin_unlock(&global_rsv->lock);
5781 }
5782 spin_unlock(&space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04005783 }
5784
5785 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04005786 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04005787 return 0;
5788}
5789
5790int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04005791 struct btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -05005792{
Yan Zheng11833d62009-09-11 16:11:19 -04005793 struct btrfs_fs_info *fs_info = root->fs_info;
5794 struct extent_io_tree *unpin;
Chris Mason1a5bc162007-10-15 16:15:26 -04005795 u64 start;
5796 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05005797 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05005798
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005799 if (trans->aborted)
5800 return 0;
5801
Yan Zheng11833d62009-09-11 16:11:19 -04005802 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
5803 unpin = &fs_info->freed_extents[1];
5804 else
5805 unpin = &fs_info->freed_extents[0];
5806
Chris Masond3977122009-01-05 21:25:51 -05005807 while (1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04005808 ret = find_first_extent_bit(unpin, 0, &start, &end,
Josef Bacike6138872012-09-27 17:07:30 -04005809 EXTENT_DIRTY, NULL);
Chris Mason1a5bc162007-10-15 16:15:26 -04005810 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05005811 break;
Liu Hui1f3c79a2009-01-05 15:57:51 -05005812
Li Dongyang5378e602011-03-24 10:24:27 +00005813 if (btrfs_test_opt(root, DISCARD))
5814 ret = btrfs_discard_extent(root, start,
5815 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05005816
Chris Mason1a5bc162007-10-15 16:15:26 -04005817 clear_extent_dirty(unpin, start, end, GFP_NOFS);
Yan Zheng11833d62009-09-11 16:11:19 -04005818 unpin_extent_range(root, start, end);
Chris Masonb9473432009-03-13 11:00:37 -04005819 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05005820 }
Josef Bacik817d52f2009-07-13 21:29:25 -04005821
Chris Masone20d96d2007-03-22 12:13:20 -04005822 return 0;
5823}
5824
Josef Bacikb150a4f2013-06-19 15:00:04 -04005825static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes,
5826 u64 owner, u64 root_objectid)
5827{
5828 struct btrfs_space_info *space_info;
5829 u64 flags;
5830
5831 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
5832 if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID)
5833 flags = BTRFS_BLOCK_GROUP_SYSTEM;
5834 else
5835 flags = BTRFS_BLOCK_GROUP_METADATA;
5836 } else {
5837 flags = BTRFS_BLOCK_GROUP_DATA;
5838 }
5839
5840 space_info = __find_space_info(fs_info, flags);
5841 BUG_ON(!space_info); /* Logic bug */
5842 percpu_counter_add(&space_info->total_bytes_pinned, num_bytes);
5843}
5844
5845
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005846static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
5847 struct btrfs_root *root,
5848 u64 bytenr, u64 num_bytes, u64 parent,
5849 u64 root_objectid, u64 owner_objectid,
5850 u64 owner_offset, int refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07005851 struct btrfs_delayed_extent_op *extent_op,
5852 int no_quota)
Chris Masona28ec192007-03-06 20:08:01 -05005853{
Chris Masone2fa7222007-03-12 16:22:34 -04005854 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005855 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04005856 struct btrfs_fs_info *info = root->fs_info;
5857 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04005858 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005859 struct btrfs_extent_item *ei;
5860 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05005861 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005862 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05005863 int extent_slot = 0;
5864 int found_extent = 0;
5865 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005866 u32 item_size;
5867 u64 refs;
Josef Bacikfcebe452014-05-13 17:30:47 -07005868 int last_ref = 0;
5869 enum btrfs_qgroup_operation_type type = BTRFS_QGROUP_OPER_SUB_EXCL;
Josef Bacik3173a182013-03-07 14:22:04 -05005870 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
5871 SKINNY_METADATA);
Chris Mason037e6392007-03-07 11:50:24 -05005872
Josef Bacikfcebe452014-05-13 17:30:47 -07005873 if (!info->quota_enabled || !is_fstree(root_objectid))
5874 no_quota = 1;
5875
Chris Mason5caf2a02007-04-02 11:20:42 -04005876 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04005877 if (!path)
5878 return -ENOMEM;
5879
Chris Mason3c12ac72008-04-21 12:01:38 -04005880 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04005881 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005882
5883 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
5884 BUG_ON(!is_data && refs_to_drop != 1);
5885
Josef Bacik3173a182013-03-07 14:22:04 -05005886 if (is_data)
5887 skinny_metadata = 0;
5888
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005889 ret = lookup_extent_backref(trans, extent_root, path, &iref,
5890 bytenr, num_bytes, parent,
5891 root_objectid, owner_objectid,
5892 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05005893 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05005894 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005895 while (extent_slot >= 0) {
5896 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05005897 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005898 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05005899 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005900 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
5901 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05005902 found_extent = 1;
5903 break;
5904 }
Josef Bacik3173a182013-03-07 14:22:04 -05005905 if (key.type == BTRFS_METADATA_ITEM_KEY &&
5906 key.offset == owner_objectid) {
5907 found_extent = 1;
5908 break;
5909 }
Chris Mason952fcca2008-02-18 16:33:44 -05005910 if (path->slots[0] - extent_slot > 5)
5911 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005912 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05005913 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005914#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
5915 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
5916 if (found_extent && item_size < sizeof(*ei))
5917 found_extent = 0;
5918#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04005919 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005920 BUG_ON(iref);
Chris Mason56bec292009-03-13 10:10:06 -04005921 ret = remove_extent_backref(trans, extent_root, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005922 NULL, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07005923 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06005924 if (ret) {
5925 btrfs_abort_transaction(trans, extent_root, ret);
5926 goto out;
5927 }
David Sterbab3b4aa72011-04-21 01:20:15 +02005928 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04005929 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005930
5931 key.objectid = bytenr;
5932 key.type = BTRFS_EXTENT_ITEM_KEY;
5933 key.offset = num_bytes;
5934
Josef Bacik3173a182013-03-07 14:22:04 -05005935 if (!is_data && skinny_metadata) {
5936 key.type = BTRFS_METADATA_ITEM_KEY;
5937 key.offset = owner_objectid;
5938 }
5939
Zheng Yan31840ae2008-09-23 13:14:14 -04005940 ret = btrfs_search_slot(trans, extent_root,
5941 &key, path, -1, 1);
Josef Bacik3173a182013-03-07 14:22:04 -05005942 if (ret > 0 && skinny_metadata && path->slots[0]) {
5943 /*
5944 * Couldn't find our skinny metadata item,
5945 * see if we have ye olde extent item.
5946 */
5947 path->slots[0]--;
5948 btrfs_item_key_to_cpu(path->nodes[0], &key,
5949 path->slots[0]);
5950 if (key.objectid == bytenr &&
5951 key.type == BTRFS_EXTENT_ITEM_KEY &&
5952 key.offset == num_bytes)
5953 ret = 0;
5954 }
5955
5956 if (ret > 0 && skinny_metadata) {
5957 skinny_metadata = false;
Filipe Manana9ce49a02014-04-24 15:15:28 +01005958 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05005959 key.type = BTRFS_EXTENT_ITEM_KEY;
5960 key.offset = num_bytes;
5961 btrfs_release_path(path);
5962 ret = btrfs_search_slot(trans, extent_root,
5963 &key, path, -1, 1);
5964 }
5965
Josef Bacikf3465ca2008-11-12 14:19:50 -05005966 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005967 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005968 ret, bytenr);
Josef Bacikb783e622011-07-13 15:03:50 +00005969 if (ret > 0)
5970 btrfs_print_leaf(extent_root,
5971 path->nodes[0]);
Josef Bacikf3465ca2008-11-12 14:19:50 -05005972 }
David Sterba005d6422012-09-18 07:52:32 -06005973 if (ret < 0) {
5974 btrfs_abort_transaction(trans, extent_root, ret);
5975 goto out;
5976 }
Zheng Yan31840ae2008-09-23 13:14:14 -04005977 extent_slot = path->slots[0];
5978 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05305979 } else if (WARN_ON(ret == -ENOENT)) {
Chris Mason7bb86312007-12-11 09:25:06 -05005980 btrfs_print_leaf(extent_root, path->nodes[0]);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005981 btrfs_err(info,
5982 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005983 bytenr, parent, root_objectid, owner_objectid,
5984 owner_offset);
Josef Bacikc4a050b2014-03-14 16:36:53 -04005985 btrfs_abort_transaction(trans, extent_root, ret);
5986 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005987 } else {
David Sterba005d6422012-09-18 07:52:32 -06005988 btrfs_abort_transaction(trans, extent_root, ret);
5989 goto out;
Chris Mason7bb86312007-12-11 09:25:06 -05005990 }
Chris Mason5f39d392007-10-15 16:14:19 -04005991
5992 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005993 item_size = btrfs_item_size_nr(leaf, extent_slot);
5994#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
5995 if (item_size < sizeof(*ei)) {
5996 BUG_ON(found_extent || extent_slot != path->slots[0]);
5997 ret = convert_extent_item_v0(trans, extent_root, path,
5998 owner_objectid, 0);
David Sterba005d6422012-09-18 07:52:32 -06005999 if (ret < 0) {
6000 btrfs_abort_transaction(trans, extent_root, ret);
6001 goto out;
6002 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006003
David Sterbab3b4aa72011-04-21 01:20:15 +02006004 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006005 path->leave_spinning = 1;
6006
6007 key.objectid = bytenr;
6008 key.type = BTRFS_EXTENT_ITEM_KEY;
6009 key.offset = num_bytes;
6010
6011 ret = btrfs_search_slot(trans, extent_root, &key, path,
6012 -1, 1);
6013 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006014 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006015 ret, bytenr);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006016 btrfs_print_leaf(extent_root, path->nodes[0]);
6017 }
David Sterba005d6422012-09-18 07:52:32 -06006018 if (ret < 0) {
6019 btrfs_abort_transaction(trans, extent_root, ret);
6020 goto out;
6021 }
6022
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006023 extent_slot = path->slots[0];
6024 leaf = path->nodes[0];
6025 item_size = btrfs_item_size_nr(leaf, extent_slot);
6026 }
6027#endif
6028 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05006029 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04006030 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05006031 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
6032 key.type == BTRFS_EXTENT_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006033 struct btrfs_tree_block_info *bi;
6034 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
6035 bi = (struct btrfs_tree_block_info *)(ei + 1);
6036 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05006037 }
6038
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006039 refs = btrfs_extent_refs(leaf, ei);
Josef Bacik32b02532013-04-24 16:38:50 -04006040 if (refs < refs_to_drop) {
6041 btrfs_err(info, "trying to drop %d refs but we only have %Lu "
David Sterba351fd352014-05-15 16:48:20 +02006042 "for bytenr %Lu", refs_to_drop, refs, bytenr);
Josef Bacik32b02532013-04-24 16:38:50 -04006043 ret = -EINVAL;
6044 btrfs_abort_transaction(trans, extent_root, ret);
6045 goto out;
6046 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006047 refs -= refs_to_drop;
6048
6049 if (refs > 0) {
Josef Bacikfcebe452014-05-13 17:30:47 -07006050 type = BTRFS_QGROUP_OPER_SUB_SHARED;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006051 if (extent_op)
6052 __run_delayed_extent_op(extent_op, leaf, ei);
6053 /*
6054 * In the case of inline back ref, reference count will
6055 * be updated by remove_extent_backref
6056 */
6057 if (iref) {
6058 BUG_ON(!found_extent);
6059 } else {
6060 btrfs_set_extent_refs(leaf, ei, refs);
6061 btrfs_mark_buffer_dirty(leaf);
6062 }
6063 if (found_extent) {
6064 ret = remove_extent_backref(trans, extent_root, path,
6065 iref, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07006066 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06006067 if (ret) {
6068 btrfs_abort_transaction(trans, extent_root, ret);
6069 goto out;
6070 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006071 }
Josef Bacikb150a4f2013-06-19 15:00:04 -04006072 add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid,
6073 root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006074 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006075 if (found_extent) {
6076 BUG_ON(is_data && refs_to_drop !=
6077 extent_data_ref_count(root, path, iref));
6078 if (iref) {
6079 BUG_ON(path->slots[0] != extent_slot);
6080 } else {
6081 BUG_ON(path->slots[0] != extent_slot + 1);
6082 path->slots[0] = extent_slot;
6083 num_to_del = 2;
6084 }
Chris Mason78fae272007-03-25 11:35:08 -04006085 }
Chris Masonb9473432009-03-13 11:00:37 -04006086
Josef Bacikfcebe452014-05-13 17:30:47 -07006087 last_ref = 1;
Chris Mason952fcca2008-02-18 16:33:44 -05006088 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
6089 num_to_del);
David Sterba005d6422012-09-18 07:52:32 -06006090 if (ret) {
6091 btrfs_abort_transaction(trans, extent_root, ret);
6092 goto out;
6093 }
David Sterbab3b4aa72011-04-21 01:20:15 +02006094 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01006095
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006096 if (is_data) {
Chris Mason459931e2008-12-10 09:10:46 -05006097 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
David Sterba005d6422012-09-18 07:52:32 -06006098 if (ret) {
6099 btrfs_abort_transaction(trans, extent_root, ret);
6100 goto out;
6101 }
Chris Mason459931e2008-12-10 09:10:46 -05006102 }
6103
Liu Boc53d6132012-12-27 09:01:19 +00006104 ret = update_block_group(root, bytenr, num_bytes, 0);
David Sterba005d6422012-09-18 07:52:32 -06006105 if (ret) {
6106 btrfs_abort_transaction(trans, extent_root, ret);
6107 goto out;
6108 }
Chris Masona28ec192007-03-06 20:08:01 -05006109 }
Josef Bacikfcebe452014-05-13 17:30:47 -07006110 btrfs_release_path(path);
6111
6112 /* Deal with the quota accounting */
6113 if (!ret && last_ref && !no_quota) {
6114 int mod_seq = 0;
6115
6116 if (owner_objectid >= BTRFS_FIRST_FREE_OBJECTID &&
6117 type == BTRFS_QGROUP_OPER_SUB_SHARED)
6118 mod_seq = 1;
6119
6120 ret = btrfs_qgroup_record_ref(trans, info, root_objectid,
6121 bytenr, num_bytes, type,
6122 mod_seq);
6123 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006124out:
Chris Mason5caf2a02007-04-02 11:20:42 -04006125 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05006126 return ret;
6127}
6128
6129/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04006130 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04006131 * delayed ref for that extent as well. This searches the delayed ref tree for
6132 * a given extent, and if there are no other delayed refs to be processed, it
6133 * removes it from the tree.
6134 */
6135static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
6136 struct btrfs_root *root, u64 bytenr)
6137{
6138 struct btrfs_delayed_ref_head *head;
6139 struct btrfs_delayed_ref_root *delayed_refs;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006140 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04006141
6142 delayed_refs = &trans->transaction->delayed_refs;
6143 spin_lock(&delayed_refs->lock);
6144 head = btrfs_find_delayed_ref_head(trans, bytenr);
6145 if (!head)
Chris Masoncf93da72014-01-29 07:02:40 -08006146 goto out_delayed_unlock;
Chris Mason1887be62009-03-13 10:11:24 -04006147
Josef Bacikd7df2c72014-01-23 09:21:38 -05006148 spin_lock(&head->lock);
6149 if (rb_first(&head->ref_root))
Chris Mason1887be62009-03-13 10:11:24 -04006150 goto out;
6151
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006152 if (head->extent_op) {
6153 if (!head->must_insert_reserved)
6154 goto out;
Miao Xie78a61842012-11-21 02:21:28 +00006155 btrfs_free_delayed_extent_op(head->extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006156 head->extent_op = NULL;
6157 }
6158
Chris Mason1887be62009-03-13 10:11:24 -04006159 /*
6160 * waiting for the lock here would deadlock. If someone else has it
6161 * locked they are already in the process of dropping it anyway
6162 */
6163 if (!mutex_trylock(&head->mutex))
6164 goto out;
6165
6166 /*
6167 * at this point we have a head with no other entries. Go
6168 * ahead and process it.
6169 */
6170 head->node.in_tree = 0;
Liu Boc46effa2013-10-14 12:59:45 +08006171 rb_erase(&head->href_node, &delayed_refs->href_root);
Chris Masonc3e69d52009-03-13 10:17:05 -04006172
Josef Bacikd7df2c72014-01-23 09:21:38 -05006173 atomic_dec(&delayed_refs->num_entries);
Chris Mason1887be62009-03-13 10:11:24 -04006174
6175 /*
6176 * we don't take a ref on the node because we're removing it from the
6177 * tree, so we just steal the ref the tree was holding.
6178 */
Chris Masonc3e69d52009-03-13 10:17:05 -04006179 delayed_refs->num_heads--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05006180 if (head->processing == 0)
Chris Masonc3e69d52009-03-13 10:17:05 -04006181 delayed_refs->num_heads_ready--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05006182 head->processing = 0;
6183 spin_unlock(&head->lock);
Chris Mason1887be62009-03-13 10:11:24 -04006184 spin_unlock(&delayed_refs->lock);
6185
Yan, Zhengf0486c62010-05-16 10:46:25 -04006186 BUG_ON(head->extent_op);
6187 if (head->must_insert_reserved)
6188 ret = 1;
6189
6190 mutex_unlock(&head->mutex);
Chris Mason1887be62009-03-13 10:11:24 -04006191 btrfs_put_delayed_ref(&head->node);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006192 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04006193out:
Josef Bacikd7df2c72014-01-23 09:21:38 -05006194 spin_unlock(&head->lock);
Chris Masoncf93da72014-01-29 07:02:40 -08006195
6196out_delayed_unlock:
Chris Mason1887be62009-03-13 10:11:24 -04006197 spin_unlock(&delayed_refs->lock);
6198 return 0;
6199}
6200
Yan, Zhengf0486c62010-05-16 10:46:25 -04006201void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
6202 struct btrfs_root *root,
6203 struct extent_buffer *buf,
Jan Schmidt5581a512012-05-16 17:04:52 +02006204 u64 parent, int last_ref)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006205{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006206 struct btrfs_block_group_cache *cache = NULL;
Josef Bacikb150a4f2013-06-19 15:00:04 -04006207 int pin = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006208 int ret;
6209
6210 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006211 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
6212 buf->start, buf->len,
6213 parent, root->root_key.objectid,
6214 btrfs_header_level(buf),
Jan Schmidt5581a512012-05-16 17:04:52 +02006215 BTRFS_DROP_DELAYED_REF, NULL, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006216 BUG_ON(ret); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006217 }
6218
6219 if (!last_ref)
6220 return;
6221
Yan, Zhengf0486c62010-05-16 10:46:25 -04006222 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006223
6224 if (btrfs_header_generation(buf) == trans->transid) {
6225 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
6226 ret = check_ref_cleanup(trans, root, buf->start);
6227 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04006228 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006229 }
6230
6231 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
6232 pin_down_extent(root, cache, buf->start, buf->len, 1);
Josef Bacik37be25b2011-08-05 10:25:38 -04006233 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006234 }
6235
6236 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
6237
6238 btrfs_add_free_space(cache, buf->start, buf->len);
Miao Xiee570fd22014-06-19 10:42:50 +08006239 btrfs_update_reserved_bytes(cache, buf->len, RESERVE_FREE, 0);
Josef Bacik0be5dc62013-10-07 15:18:52 -04006240 trace_btrfs_reserved_extent_free(root, buf->start, buf->len);
Josef Bacikb150a4f2013-06-19 15:00:04 -04006241 pin = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006242 }
6243out:
Josef Bacikb150a4f2013-06-19 15:00:04 -04006244 if (pin)
6245 add_pinned_bytes(root->fs_info, buf->len,
6246 btrfs_header_level(buf),
6247 root->root_key.objectid);
6248
Josef Bacika826d6d2011-03-16 13:42:43 -04006249 /*
6250 * Deleting the buffer, clear the corrupt flag since it doesn't matter
6251 * anymore.
6252 */
6253 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006254 btrfs_put_block_group(cache);
6255}
6256
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006257/* Can return -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006258int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root,
6259 u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid,
Josef Bacikfcebe452014-05-13 17:30:47 -07006260 u64 owner, u64 offset, int no_quota)
Chris Mason925baed2008-06-25 16:01:30 -04006261{
6262 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006263 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason925baed2008-06-25 16:01:30 -04006264
David Sterbafccb84c2014-09-29 23:53:21 +02006265 if (btrfs_test_is_dummy_root(root))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04006266 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02006267
Josef Bacikb150a4f2013-06-19 15:00:04 -04006268 add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid);
6269
Chris Mason56bec292009-03-13 10:10:06 -04006270 /*
6271 * tree log blocks never actually go into the extent allocation
6272 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04006273 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006274 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
6275 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04006276 /* unlocks the pinned mutex */
Yan Zheng11833d62009-09-11 16:11:19 -04006277 btrfs_pin_extent(root, bytenr, num_bytes, 1);
Chris Mason56bec292009-03-13 10:10:06 -04006278 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006279 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006280 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
6281 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006282 parent, root_objectid, (int)owner,
Josef Bacikfcebe452014-05-13 17:30:47 -07006283 BTRFS_DROP_DELAYED_REF, NULL, no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006284 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006285 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
6286 num_bytes,
6287 parent, root_objectid, owner,
6288 offset, BTRFS_DROP_DELAYED_REF,
Josef Bacikfcebe452014-05-13 17:30:47 -07006289 NULL, no_quota);
Chris Mason56bec292009-03-13 10:10:06 -04006290 }
Chris Mason925baed2008-06-25 16:01:30 -04006291 return ret;
6292}
6293
Chris Masonfec577f2007-02-26 10:40:21 -05006294/*
Josef Bacik817d52f2009-07-13 21:29:25 -04006295 * when we wait for progress in the block group caching, its because
6296 * our allocation attempt failed at least once. So, we must sleep
6297 * and let some progress happen before we try again.
6298 *
6299 * This function will sleep at least once waiting for new free space to
6300 * show up, and then it will check the block group free space numbers
6301 * for our min num_bytes. Another option is to have it go ahead
6302 * and look in the rbtree for a free extent of a given size, but this
6303 * is a good start.
Josef Bacik36cce922013-08-05 11:15:21 -04006304 *
6305 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
6306 * any of the information in this block group.
Josef Bacik817d52f2009-07-13 21:29:25 -04006307 */
Josef Bacik36cce922013-08-05 11:15:21 -04006308static noinline void
Josef Bacik817d52f2009-07-13 21:29:25 -04006309wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
6310 u64 num_bytes)
6311{
Yan Zheng11833d62009-09-11 16:11:19 -04006312 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04006313
Yan Zheng11833d62009-09-11 16:11:19 -04006314 caching_ctl = get_caching_control(cache);
6315 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04006316 return;
Josef Bacik817d52f2009-07-13 21:29:25 -04006317
Yan Zheng11833d62009-09-11 16:11:19 -04006318 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08006319 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04006320
6321 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -04006322}
6323
6324static noinline int
6325wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
6326{
6327 struct btrfs_caching_control *caching_ctl;
Josef Bacik36cce922013-08-05 11:15:21 -04006328 int ret = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006329
6330 caching_ctl = get_caching_control(cache);
6331 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04006332 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006333
6334 wait_event(caching_ctl->wait, block_group_cache_done(cache));
Josef Bacik36cce922013-08-05 11:15:21 -04006335 if (cache->cached == BTRFS_CACHE_ERROR)
6336 ret = -EIO;
Yan Zheng11833d62009-09-11 16:11:19 -04006337 put_caching_control(caching_ctl);
Josef Bacik36cce922013-08-05 11:15:21 -04006338 return ret;
Josef Bacik817d52f2009-07-13 21:29:25 -04006339}
6340
Liu Bo31e50222012-11-21 14:18:10 +00006341int __get_raid_index(u64 flags)
Yan, Zhengb742bb82010-05-16 10:46:24 -04006342{
Ilya Dryomov7738a532012-03-27 17:09:17 +03006343 if (flags & BTRFS_BLOCK_GROUP_RAID10)
Miao Xiee6ec7162013-01-17 05:38:51 +00006344 return BTRFS_RAID_RAID10;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006345 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
Miao Xiee6ec7162013-01-17 05:38:51 +00006346 return BTRFS_RAID_RAID1;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006347 else if (flags & BTRFS_BLOCK_GROUP_DUP)
Miao Xiee6ec7162013-01-17 05:38:51 +00006348 return BTRFS_RAID_DUP;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006349 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
Miao Xiee6ec7162013-01-17 05:38:51 +00006350 return BTRFS_RAID_RAID0;
David Woodhouse53b381b2013-01-29 18:40:14 -05006351 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
Chris Masone942f882013-02-20 14:06:05 -05006352 return BTRFS_RAID_RAID5;
David Woodhouse53b381b2013-01-29 18:40:14 -05006353 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
Chris Masone942f882013-02-20 14:06:05 -05006354 return BTRFS_RAID_RAID6;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006355
Chris Masone942f882013-02-20 14:06:05 -05006356 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
Yan, Zhengb742bb82010-05-16 10:46:24 -04006357}
6358
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04006359int get_block_group_index(struct btrfs_block_group_cache *cache)
Ilya Dryomov7738a532012-03-27 17:09:17 +03006360{
Liu Bo31e50222012-11-21 14:18:10 +00006361 return __get_raid_index(cache->flags);
Ilya Dryomov7738a532012-03-27 17:09:17 +03006362}
6363
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04006364static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = {
6365 [BTRFS_RAID_RAID10] = "raid10",
6366 [BTRFS_RAID_RAID1] = "raid1",
6367 [BTRFS_RAID_DUP] = "dup",
6368 [BTRFS_RAID_RAID0] = "raid0",
6369 [BTRFS_RAID_SINGLE] = "single",
6370 [BTRFS_RAID_RAID5] = "raid5",
6371 [BTRFS_RAID_RAID6] = "raid6",
6372};
6373
Jeff Mahoney1b8e5df2013-11-20 16:50:23 -05006374static const char *get_raid_name(enum btrfs_raid_types type)
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04006375{
6376 if (type >= BTRFS_NR_RAID_TYPES)
6377 return NULL;
6378
6379 return btrfs_raid_type_names[type];
6380}
6381
Josef Bacik817d52f2009-07-13 21:29:25 -04006382enum btrfs_loop_type {
Josef Bacik285ff5a2012-01-13 15:27:45 -05006383 LOOP_CACHING_NOWAIT = 0,
6384 LOOP_CACHING_WAIT = 1,
6385 LOOP_ALLOC_CHUNK = 2,
6386 LOOP_NO_EMPTY_SIZE = 3,
Josef Bacik817d52f2009-07-13 21:29:25 -04006387};
6388
Miao Xiee570fd22014-06-19 10:42:50 +08006389static inline void
6390btrfs_lock_block_group(struct btrfs_block_group_cache *cache,
6391 int delalloc)
6392{
6393 if (delalloc)
6394 down_read(&cache->data_rwsem);
6395}
6396
6397static inline void
6398btrfs_grab_block_group(struct btrfs_block_group_cache *cache,
6399 int delalloc)
6400{
6401 btrfs_get_block_group(cache);
6402 if (delalloc)
6403 down_read(&cache->data_rwsem);
6404}
6405
6406static struct btrfs_block_group_cache *
6407btrfs_lock_cluster(struct btrfs_block_group_cache *block_group,
6408 struct btrfs_free_cluster *cluster,
6409 int delalloc)
6410{
6411 struct btrfs_block_group_cache *used_bg;
6412 bool locked = false;
6413again:
6414 spin_lock(&cluster->refill_lock);
6415 if (locked) {
6416 if (used_bg == cluster->block_group)
6417 return used_bg;
6418
6419 up_read(&used_bg->data_rwsem);
6420 btrfs_put_block_group(used_bg);
6421 }
6422
6423 used_bg = cluster->block_group;
6424 if (!used_bg)
6425 return NULL;
6426
6427 if (used_bg == block_group)
6428 return used_bg;
6429
6430 btrfs_get_block_group(used_bg);
6431
6432 if (!delalloc)
6433 return used_bg;
6434
6435 if (down_read_trylock(&used_bg->data_rwsem))
6436 return used_bg;
6437
6438 spin_unlock(&cluster->refill_lock);
6439 down_read(&used_bg->data_rwsem);
6440 locked = true;
6441 goto again;
6442}
6443
6444static inline void
6445btrfs_release_block_group(struct btrfs_block_group_cache *cache,
6446 int delalloc)
6447{
6448 if (delalloc)
6449 up_read(&cache->data_rwsem);
6450 btrfs_put_block_group(cache);
6451}
6452
Josef Bacik817d52f2009-07-13 21:29:25 -04006453/*
Chris Masonfec577f2007-02-26 10:40:21 -05006454 * walks the btree of allocated extents and find a hole of a given size.
6455 * The key ins is changed to record the hole:
Miao Xiea4820392013-09-09 13:19:42 +08006456 * ins->objectid == start position
Chris Mason62e27492007-03-15 12:56:47 -04006457 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Miao Xiea4820392013-09-09 13:19:42 +08006458 * ins->offset == the size of the hole.
Chris Masonfec577f2007-02-26 10:40:21 -05006459 * Any available blocks before search_start are skipped.
Miao Xiea4820392013-09-09 13:19:42 +08006460 *
6461 * If there is no suitable free space, we will record the max size of
6462 * the free space extent currently.
Chris Masonfec577f2007-02-26 10:40:21 -05006463 */
Josef Bacik00361582013-08-14 14:02:47 -04006464static noinline int find_free_extent(struct btrfs_root *orig_root,
Chris Mason98ed5172008-01-03 10:01:48 -05006465 u64 num_bytes, u64 empty_size,
Chris Mason98ed5172008-01-03 10:01:48 -05006466 u64 hint_byte, struct btrfs_key *ins,
Miao Xiee570fd22014-06-19 10:42:50 +08006467 u64 flags, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05006468{
Josef Bacik80eb2342008-10-29 14:49:05 -04006469 int ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05006470 struct btrfs_root *root = orig_root->fs_info->extent_root;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006471 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04006472 struct btrfs_block_group_cache *block_group = NULL;
Josef Bacik81c9ad22012-01-18 10:56:06 -05006473 u64 search_start = 0;
Miao Xiea4820392013-09-09 13:19:42 +08006474 u64 max_extent_size = 0;
Chris Mason239b14b2008-03-24 15:02:07 -04006475 int empty_cluster = 2 * 1024 * 1024;
Josef Bacik80eb2342008-10-29 14:49:05 -04006476 struct btrfs_space_info *space_info;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006477 int loop = 0;
David Sterbab6919a52013-04-29 13:39:40 +00006478 int index = __get_raid_index(flags);
6479 int alloc_type = (flags & BTRFS_BLOCK_GROUP_DATA) ?
Josef Bacikfb25e912011-07-26 17:00:46 -04006480 RESERVE_ALLOC_NO_ACCOUNT : RESERVE_ALLOC;
Josef Bacik0a243252009-09-11 16:11:20 -04006481 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006482 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04006483 bool use_cluster = true;
Miao Xie60d2adb2011-09-09 17:34:35 +08006484 bool have_caching_bg = false;
Chris Masonfec577f2007-02-26 10:40:21 -05006485
Chris Masondb945352007-10-15 16:15:53 -04006486 WARN_ON(num_bytes < root->sectorsize);
David Sterba962a2982014-06-04 18:41:45 +02006487 ins->type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacik80eb2342008-10-29 14:49:05 -04006488 ins->objectid = 0;
6489 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04006490
David Sterbab6919a52013-04-29 13:39:40 +00006491 trace_find_free_extent(orig_root, num_bytes, empty_size, flags);
Josef Bacik3f7de032011-11-10 08:29:20 -05006492
David Sterbab6919a52013-04-29 13:39:40 +00006493 space_info = __find_space_info(root->fs_info, flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00006494 if (!space_info) {
David Sterbab6919a52013-04-29 13:39:40 +00006495 btrfs_err(root->fs_info, "No space info for %llu", flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00006496 return -ENOSPC;
6497 }
Josef Bacik2552d172009-04-03 10:14:19 -04006498
Josef Bacik67377732010-09-16 16:19:09 -04006499 /*
6500 * If the space info is for both data and metadata it means we have a
6501 * small filesystem and we can't use the clustering stuff.
6502 */
6503 if (btrfs_mixed_space_info(space_info))
6504 use_cluster = false;
6505
David Sterbab6919a52013-04-29 13:39:40 +00006506 if (flags & BTRFS_BLOCK_GROUP_METADATA && use_cluster) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006507 last_ptr = &root->fs_info->meta_alloc_cluster;
Chris Mason536ac8a2009-02-12 09:41:38 -05006508 if (!btrfs_test_opt(root, SSD))
6509 empty_cluster = 64 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04006510 }
6511
David Sterbab6919a52013-04-29 13:39:40 +00006512 if ((flags & BTRFS_BLOCK_GROUP_DATA) && use_cluster &&
Josef Bacik67377732010-09-16 16:19:09 -04006513 btrfs_test_opt(root, SSD)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006514 last_ptr = &root->fs_info->data_alloc_cluster;
6515 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04006516
Chris Mason239b14b2008-03-24 15:02:07 -04006517 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006518 spin_lock(&last_ptr->lock);
6519 if (last_ptr->block_group)
6520 hint_byte = last_ptr->window_start;
6521 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04006522 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006523
Chris Masona061fc82008-05-07 11:43:44 -04006524 search_start = max(search_start, first_logical_byte(root, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04006525 search_start = max(search_start, hint_byte);
Chris Mason0b86a832008-03-24 15:01:56 -04006526
Josef Bacik817d52f2009-07-13 21:29:25 -04006527 if (!last_ptr)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006528 empty_cluster = 0;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006529
Josef Bacik2552d172009-04-03 10:14:19 -04006530 if (search_start == hint_byte) {
Josef Bacik2552d172009-04-03 10:14:19 -04006531 block_group = btrfs_lookup_block_group(root->fs_info,
6532 search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04006533 /*
6534 * we don't want to use the block group if it doesn't match our
6535 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05006536 *
6537 * However if we are re-searching with an ideal block group
6538 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04006539 */
David Sterbab6919a52013-04-29 13:39:40 +00006540 if (block_group && block_group_bits(block_group, flags) &&
Josef Bacik285ff5a2012-01-13 15:27:45 -05006541 block_group->cached != BTRFS_CACHE_NO) {
Josef Bacik2552d172009-04-03 10:14:19 -04006542 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04006543 if (list_empty(&block_group->list) ||
6544 block_group->ro) {
6545 /*
6546 * someone is removing this block group,
6547 * we can't jump into the have_block_group
6548 * target because our list pointers are not
6549 * valid
6550 */
6551 btrfs_put_block_group(block_group);
6552 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05006553 } else {
Yan, Zhengb742bb82010-05-16 10:46:24 -04006554 index = get_block_group_index(block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08006555 btrfs_lock_block_group(block_group, delalloc);
Chris Mason44fb5512009-06-04 15:34:51 -04006556 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05006557 }
Josef Bacik2552d172009-04-03 10:14:19 -04006558 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006559 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006560 }
Chris Mason42e70e72008-11-07 18:17:11 -05006561 }
Josef Bacik2552d172009-04-03 10:14:19 -04006562search:
Miao Xie60d2adb2011-09-09 17:34:35 +08006563 have_caching_bg = false;
Josef Bacik80eb2342008-10-29 14:49:05 -04006564 down_read(&space_info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04006565 list_for_each_entry(block_group, &space_info->block_groups[index],
6566 list) {
Josef Bacik6226cb0a2009-04-03 10:14:18 -04006567 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04006568 int cached;
Chris Mason8a1413a2008-11-10 16:13:54 -05006569
Miao Xiee570fd22014-06-19 10:42:50 +08006570 btrfs_grab_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04006571 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05006572
Chris Mason83a50de2010-12-13 15:06:46 -05006573 /*
6574 * this can happen if we end up cycling through all the
6575 * raid types, but we want to make sure we only allocate
6576 * for the proper type.
6577 */
David Sterbab6919a52013-04-29 13:39:40 +00006578 if (!block_group_bits(block_group, flags)) {
Chris Mason83a50de2010-12-13 15:06:46 -05006579 u64 extra = BTRFS_BLOCK_GROUP_DUP |
6580 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05006581 BTRFS_BLOCK_GROUP_RAID5 |
6582 BTRFS_BLOCK_GROUP_RAID6 |
Chris Mason83a50de2010-12-13 15:06:46 -05006583 BTRFS_BLOCK_GROUP_RAID10;
6584
6585 /*
6586 * if they asked for extra copies and this block group
6587 * doesn't provide them, bail. This does allow us to
6588 * fill raid0 from raid1.
6589 */
David Sterbab6919a52013-04-29 13:39:40 +00006590 if ((flags & extra) && !(block_group->flags & extra))
Chris Mason83a50de2010-12-13 15:06:46 -05006591 goto loop;
6592 }
6593
Josef Bacik2552d172009-04-03 10:14:19 -04006594have_block_group:
Josef Bacik291c7d22011-11-14 13:52:14 -05006595 cached = block_group_cache_done(block_group);
6596 if (unlikely(!cached)) {
Liu Bof6373bf2012-12-27 09:01:18 +00006597 ret = cache_block_group(block_group, 0);
Chris Mason1d4284b2012-03-28 20:31:37 -04006598 BUG_ON(ret < 0);
6599 ret = 0;
Josef Bacikea6a4782008-11-20 12:16:16 -05006600 }
6601
Josef Bacik36cce922013-08-05 11:15:21 -04006602 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
6603 goto loop;
Josef Bacikea6a4782008-11-20 12:16:16 -05006604 if (unlikely(block_group->ro))
Josef Bacik2552d172009-04-03 10:14:19 -04006605 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006606
Josef Bacik0a243252009-09-11 16:11:20 -04006607 /*
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006608 * Ok we want to try and use the cluster allocator, so
6609 * lets look there
Josef Bacik0a243252009-09-11 16:11:20 -04006610 */
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006611 if (last_ptr) {
Miao Xie215a63d2014-01-15 20:00:56 +08006612 struct btrfs_block_group_cache *used_block_group;
Chris Mason8de972b2013-01-04 15:39:43 -05006613 unsigned long aligned_cluster;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006614 /*
6615 * the refill lock keeps out other
6616 * people trying to start a new cluster
6617 */
Miao Xiee570fd22014-06-19 10:42:50 +08006618 used_block_group = btrfs_lock_cluster(block_group,
6619 last_ptr,
6620 delalloc);
6621 if (!used_block_group)
Chris Mason44fb5512009-06-04 15:34:51 -04006622 goto refill_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -04006623
Miao Xiee570fd22014-06-19 10:42:50 +08006624 if (used_block_group != block_group &&
6625 (used_block_group->ro ||
6626 !block_group_bits(used_block_group, flags)))
6627 goto release_cluster;
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006628
6629 offset = btrfs_alloc_from_cluster(used_block_group,
Miao Xiea4820392013-09-09 13:19:42 +08006630 last_ptr,
6631 num_bytes,
6632 used_block_group->key.objectid,
6633 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006634 if (offset) {
6635 /* we have a block, we're done */
6636 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05006637 trace_btrfs_reserve_extent_cluster(root,
Miao Xie89d43462014-01-15 20:00:57 +08006638 used_block_group,
6639 search_start, num_bytes);
Miao Xie215a63d2014-01-15 20:00:56 +08006640 if (used_block_group != block_group) {
Miao Xiee570fd22014-06-19 10:42:50 +08006641 btrfs_release_block_group(block_group,
6642 delalloc);
Miao Xie215a63d2014-01-15 20:00:56 +08006643 block_group = used_block_group;
6644 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006645 goto checks;
6646 }
6647
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006648 WARN_ON(last_ptr->block_group != used_block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08006649release_cluster:
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006650 /* If we are on LOOP_NO_EMPTY_SIZE, we can't
6651 * set up a new clusters, so lets just skip it
6652 * and let the allocator find whatever block
6653 * it can find. If we reach this point, we
6654 * will have tried the cluster allocator
6655 * plenty of times and not have found
6656 * anything, so we are likely way too
6657 * fragmented for the clustering stuff to find
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006658 * anything.
6659 *
6660 * However, if the cluster is taken from the
6661 * current block group, release the cluster
6662 * first, so that we stand a better chance of
6663 * succeeding in the unclustered
6664 * allocation. */
6665 if (loop >= LOOP_NO_EMPTY_SIZE &&
Miao Xiee570fd22014-06-19 10:42:50 +08006666 used_block_group != block_group) {
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006667 spin_unlock(&last_ptr->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08006668 btrfs_release_block_group(used_block_group,
6669 delalloc);
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006670 goto unclustered_alloc;
6671 }
6672
Chris Masonfa9c0d792009-04-03 09:47:43 -04006673 /*
6674 * this cluster didn't work out, free it and
6675 * start over
6676 */
6677 btrfs_return_cluster_to_free_space(NULL, last_ptr);
6678
Miao Xiee570fd22014-06-19 10:42:50 +08006679 if (used_block_group != block_group)
6680 btrfs_release_block_group(used_block_group,
6681 delalloc);
6682refill_cluster:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006683 if (loop >= LOOP_NO_EMPTY_SIZE) {
6684 spin_unlock(&last_ptr->refill_lock);
6685 goto unclustered_alloc;
6686 }
6687
Chris Mason8de972b2013-01-04 15:39:43 -05006688 aligned_cluster = max_t(unsigned long,
6689 empty_cluster + empty_size,
6690 block_group->full_stripe_len);
6691
Chris Masonfa9c0d792009-04-03 09:47:43 -04006692 /* allocate a cluster in this block group */
Josef Bacik00361582013-08-14 14:02:47 -04006693 ret = btrfs_find_space_cluster(root, block_group,
6694 last_ptr, search_start,
6695 num_bytes,
6696 aligned_cluster);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006697 if (ret == 0) {
6698 /*
6699 * now pull our allocation out of this
6700 * cluster
6701 */
6702 offset = btrfs_alloc_from_cluster(block_group,
Miao Xiea4820392013-09-09 13:19:42 +08006703 last_ptr,
6704 num_bytes,
6705 search_start,
6706 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006707 if (offset) {
6708 /* we found one, proceed */
6709 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05006710 trace_btrfs_reserve_extent_cluster(root,
6711 block_group, search_start,
6712 num_bytes);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006713 goto checks;
6714 }
Josef Bacik0a243252009-09-11 16:11:20 -04006715 } else if (!cached && loop > LOOP_CACHING_NOWAIT
6716 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04006717 spin_unlock(&last_ptr->refill_lock);
6718
Josef Bacik0a243252009-09-11 16:11:20 -04006719 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04006720 wait_block_group_cache_progress(block_group,
6721 num_bytes + empty_cluster + empty_size);
6722 goto have_block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006723 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006724
Chris Masonfa9c0d792009-04-03 09:47:43 -04006725 /*
6726 * at this point we either didn't find a cluster
6727 * or we weren't able to allocate a block from our
6728 * cluster. Free the cluster we've been trying
6729 * to use, and go to the next block group
6730 */
Josef Bacik0a243252009-09-11 16:11:20 -04006731 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006732 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04006733 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006734 }
6735
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006736unclustered_alloc:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006737 spin_lock(&block_group->free_space_ctl->tree_lock);
6738 if (cached &&
6739 block_group->free_space_ctl->free_space <
6740 num_bytes + empty_cluster + empty_size) {
Miao Xiea4820392013-09-09 13:19:42 +08006741 if (block_group->free_space_ctl->free_space >
6742 max_extent_size)
6743 max_extent_size =
6744 block_group->free_space_ctl->free_space;
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006745 spin_unlock(&block_group->free_space_ctl->tree_lock);
6746 goto loop;
6747 }
6748 spin_unlock(&block_group->free_space_ctl->tree_lock);
6749
Josef Bacik6226cb0a2009-04-03 10:14:18 -04006750 offset = btrfs_find_space_for_alloc(block_group, search_start,
Miao Xiea4820392013-09-09 13:19:42 +08006751 num_bytes, empty_size,
6752 &max_extent_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006753 /*
6754 * If we didn't find a chunk, and we haven't failed on this
6755 * block group before, and this block group is in the middle of
6756 * caching and we are ok with waiting, then go ahead and wait
6757 * for progress to be made, and set failed_alloc to true.
6758 *
6759 * If failed_alloc is true then we've already waited on this
6760 * block group once and should move on to the next block group.
6761 */
6762 if (!offset && !failed_alloc && !cached &&
6763 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04006764 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006765 num_bytes + empty_size);
6766 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04006767 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006768 } else if (!offset) {
Miao Xie60d2adb2011-09-09 17:34:35 +08006769 if (!cached)
6770 have_caching_bg = true;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006771 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04006772 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006773checks:
David Sterba4e54b172014-06-05 01:39:19 +02006774 search_start = ALIGN(offset, root->stripesize);
Chris Masone37c9e62007-05-09 20:13:14 -04006775
Josef Bacik2552d172009-04-03 10:14:19 -04006776 /* move on to the next group */
6777 if (search_start + num_bytes >
Miao Xie215a63d2014-01-15 20:00:56 +08006778 block_group->key.objectid + block_group->key.offset) {
6779 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04006780 goto loop;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04006781 }
Josef Bacik80eb2342008-10-29 14:49:05 -04006782
Josef Bacik6226cb0a2009-04-03 10:14:18 -04006783 if (offset < search_start)
Miao Xie215a63d2014-01-15 20:00:56 +08006784 btrfs_add_free_space(block_group, offset,
Josef Bacik6226cb0a2009-04-03 10:14:18 -04006785 search_start - offset);
6786 BUG_ON(offset > search_start);
6787
Miao Xie215a63d2014-01-15 20:00:56 +08006788 ret = btrfs_update_reserved_bytes(block_group, num_bytes,
Miao Xiee570fd22014-06-19 10:42:50 +08006789 alloc_type, delalloc);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006790 if (ret == -EAGAIN) {
Miao Xie215a63d2014-01-15 20:00:56 +08006791 btrfs_add_free_space(block_group, offset, num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006792 goto loop;
6793 }
Yan Zheng11833d62009-09-11 16:11:19 -04006794
Josef Bacik2552d172009-04-03 10:14:19 -04006795 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006796 ins->objectid = search_start;
6797 ins->offset = num_bytes;
6798
Josef Bacik3f7de032011-11-10 08:29:20 -05006799 trace_btrfs_reserve_extent(orig_root, block_group,
6800 search_start, num_bytes);
Miao Xiee570fd22014-06-19 10:42:50 +08006801 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04006802 break;
6803loop:
Josef Bacik0a243252009-09-11 16:11:20 -04006804 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006805 failed_alloc = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04006806 BUG_ON(index != get_block_group_index(block_group));
Miao Xiee570fd22014-06-19 10:42:50 +08006807 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04006808 }
6809 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05006810
Miao Xie60d2adb2011-09-09 17:34:35 +08006811 if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg)
6812 goto search;
6813
Yan, Zhengb742bb82010-05-16 10:46:24 -04006814 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
6815 goto search;
6816
Josef Bacik285ff5a2012-01-13 15:27:45 -05006817 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05006818 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
6819 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04006820 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
6821 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
6822 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
6823 * again
Chris Masonfa9c0d792009-04-03 09:47:43 -04006824 */
Josef Bacik723bda22011-05-27 16:11:38 -04006825 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) {
Yan, Zhengb742bb82010-05-16 10:46:24 -04006826 index = 0;
Josef Bacik723bda22011-05-27 16:11:38 -04006827 loop++;
Josef Bacik817d52f2009-07-13 21:29:25 -04006828 if (loop == LOOP_ALLOC_CHUNK) {
Josef Bacik00361582013-08-14 14:02:47 -04006829 struct btrfs_trans_handle *trans;
Wang Shilongf017f152014-03-13 13:19:47 +08006830 int exist = 0;
Josef Bacik00361582013-08-14 14:02:47 -04006831
Wang Shilongf017f152014-03-13 13:19:47 +08006832 trans = current->journal_info;
6833 if (trans)
6834 exist = 1;
6835 else
6836 trans = btrfs_join_transaction(root);
6837
Josef Bacik00361582013-08-14 14:02:47 -04006838 if (IS_ERR(trans)) {
6839 ret = PTR_ERR(trans);
6840 goto out;
6841 }
6842
David Sterbab6919a52013-04-29 13:39:40 +00006843 ret = do_chunk_alloc(trans, root, flags,
Josef Bacikea658ba2012-09-11 16:57:25 -04006844 CHUNK_ALLOC_FORCE);
6845 /*
6846 * Do not bail out on ENOSPC since we
6847 * can do more things.
6848 */
Josef Bacik00361582013-08-14 14:02:47 -04006849 if (ret < 0 && ret != -ENOSPC)
Josef Bacikea658ba2012-09-11 16:57:25 -04006850 btrfs_abort_transaction(trans,
6851 root, ret);
Josef Bacik00361582013-08-14 14:02:47 -04006852 else
6853 ret = 0;
Wang Shilongf017f152014-03-13 13:19:47 +08006854 if (!exist)
6855 btrfs_end_transaction(trans, root);
Josef Bacik00361582013-08-14 14:02:47 -04006856 if (ret)
Josef Bacikea658ba2012-09-11 16:57:25 -04006857 goto out;
Josef Bacik723bda22011-05-27 16:11:38 -04006858 }
6859
6860 if (loop == LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006861 empty_size = 0;
6862 empty_cluster = 0;
6863 }
Chris Mason42e70e72008-11-07 18:17:11 -05006864
Josef Bacik723bda22011-05-27 16:11:38 -04006865 goto search;
Josef Bacik2552d172009-04-03 10:14:19 -04006866 } else if (!ins->objectid) {
6867 ret = -ENOSPC;
Josef Bacikd82a6f12011-05-11 15:26:06 -04006868 } else if (ins->objectid) {
Josef Bacik2552d172009-04-03 10:14:19 -04006869 ret = 0;
6870 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006871out:
Miao Xiea4820392013-09-09 13:19:42 +08006872 if (ret == -ENOSPC)
6873 ins->offset = max_extent_size;
Chris Mason0f70abe2007-02-28 16:46:22 -05006874 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05006875}
Chris Masonec44a352008-04-28 15:29:52 -04006876
Josef Bacik9ed74f22009-09-11 16:12:44 -04006877static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
6878 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04006879{
6880 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb82010-05-16 10:46:24 -04006881 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006882
Josef Bacik9ed74f22009-09-11 16:12:44 -04006883 spin_lock(&info->lock);
Frank Holtonefe120a2013-12-20 11:37:06 -05006884 printk(KERN_INFO "BTRFS: space_info %llu has %llu free, is %sfull\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006885 info->flags,
6886 info->total_bytes - info->bytes_used - info->bytes_pinned -
6887 info->bytes_reserved - info->bytes_readonly,
Chris Masond3977122009-01-05 21:25:51 -05006888 (info->full) ? "" : "not ");
Frank Holtonefe120a2013-12-20 11:37:06 -05006889 printk(KERN_INFO "BTRFS: space_info total=%llu, used=%llu, pinned=%llu, "
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006890 "reserved=%llu, may_use=%llu, readonly=%llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006891 info->total_bytes, info->bytes_used, info->bytes_pinned,
6892 info->bytes_reserved, info->bytes_may_use,
6893 info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006894 spin_unlock(&info->lock);
6895
6896 if (!dump_block_groups)
6897 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006898
Josef Bacik80eb2342008-10-29 14:49:05 -04006899 down_read(&info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04006900again:
6901 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04006902 spin_lock(&cache->lock);
Frank Holtonefe120a2013-12-20 11:37:06 -05006903 printk(KERN_INFO "BTRFS: "
6904 "block group %llu has %llu bytes, "
6905 "%llu used %llu pinned %llu reserved %s\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006906 cache->key.objectid, cache->key.offset,
6907 btrfs_block_group_used(&cache->item), cache->pinned,
6908 cache->reserved, cache->ro ? "[readonly]" : "");
Josef Bacik0f9dd462008-09-23 13:14:11 -04006909 btrfs_dump_free_space(cache, bytes);
6910 spin_unlock(&cache->lock);
6911 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04006912 if (++index < BTRFS_NR_RAID_TYPES)
6913 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04006914 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04006915}
Zheng Yane8569812008-09-26 10:05:48 -04006916
Josef Bacik00361582013-08-14 14:02:47 -04006917int btrfs_reserve_extent(struct btrfs_root *root,
Yan Zheng11833d62009-09-11 16:11:19 -04006918 u64 num_bytes, u64 min_alloc_size,
6919 u64 empty_size, u64 hint_byte,
Miao Xiee570fd22014-06-19 10:42:50 +08006920 struct btrfs_key *ins, int is_data, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05006921{
Miao Xie9e622d62012-01-26 15:01:12 -05006922 bool final_tried = false;
David Sterbab6919a52013-04-29 13:39:40 +00006923 u64 flags;
Chris Masonfec577f2007-02-26 10:40:21 -05006924 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04006925
David Sterbab6919a52013-04-29 13:39:40 +00006926 flags = btrfs_get_alloc_profile(root, is_data);
Chris Mason98d20f62008-04-14 09:46:10 -04006927again:
Chris Masondb945352007-10-15 16:15:53 -04006928 WARN_ON(num_bytes < root->sectorsize);
Josef Bacik00361582013-08-14 14:02:47 -04006929 ret = find_free_extent(root, num_bytes, empty_size, hint_byte, ins,
Miao Xiee570fd22014-06-19 10:42:50 +08006930 flags, delalloc);
Chris Mason3b951512008-04-17 11:29:12 -04006931
Miao Xie9e622d62012-01-26 15:01:12 -05006932 if (ret == -ENOSPC) {
Miao Xiea4820392013-09-09 13:19:42 +08006933 if (!final_tried && ins->offset) {
6934 num_bytes = min(num_bytes >> 1, ins->offset);
Zach Brown24542bf2012-11-16 00:04:43 +00006935 num_bytes = round_down(num_bytes, root->sectorsize);
Miao Xie9e622d62012-01-26 15:01:12 -05006936 num_bytes = max(num_bytes, min_alloc_size);
Miao Xie9e622d62012-01-26 15:01:12 -05006937 if (num_bytes == min_alloc_size)
6938 final_tried = true;
6939 goto again;
6940 } else if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
6941 struct btrfs_space_info *sinfo;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006942
David Sterbab6919a52013-04-29 13:39:40 +00006943 sinfo = __find_space_info(root->fs_info, flags);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006944 btrfs_err(root->fs_info, "allocation failed flags %llu, wanted %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006945 flags, num_bytes);
Jeff Mahoney53804282012-03-01 14:56:28 +01006946 if (sinfo)
6947 dump_space_info(sinfo, num_bytes, 1);
Miao Xie9e622d62012-01-26 15:01:12 -05006948 }
Chris Mason925baed2008-06-25 16:01:30 -04006949 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04006950
6951 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006952}
6953
Chris Masone688b7252011-10-31 20:52:39 -04006954static int __btrfs_free_reserved_extent(struct btrfs_root *root,
Miao Xiee570fd22014-06-19 10:42:50 +08006955 u64 start, u64 len,
6956 int pin, int delalloc)
Chris Mason65b51a02008-08-01 15:11:20 -04006957{
Josef Bacik0f9dd462008-09-23 13:14:11 -04006958 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05006959 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006960
Josef Bacik0f9dd462008-09-23 13:14:11 -04006961 cache = btrfs_lookup_block_group(root->fs_info, start);
6962 if (!cache) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006963 btrfs_err(root->fs_info, "Unable to find block group for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006964 start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04006965 return -ENOSPC;
6966 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05006967
Li Dongyang5378e602011-03-24 10:24:27 +00006968 if (btrfs_test_opt(root, DISCARD))
6969 ret = btrfs_discard_extent(root, start, len, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05006970
Chris Masone688b7252011-10-31 20:52:39 -04006971 if (pin)
6972 pin_down_extent(root, cache, start, len, 1);
6973 else {
6974 btrfs_add_free_space(cache, start, len);
Miao Xiee570fd22014-06-19 10:42:50 +08006975 btrfs_update_reserved_bytes(cache, len, RESERVE_FREE, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04006976 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006977 btrfs_put_block_group(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04006978
liubo1abe9b82011-03-24 11:18:59 +00006979 trace_btrfs_reserved_extent_free(root, start, len);
6980
Chris Masone6dcd2d2008-07-17 12:53:50 -04006981 return ret;
6982}
6983
Chris Masone688b7252011-10-31 20:52:39 -04006984int btrfs_free_reserved_extent(struct btrfs_root *root,
Miao Xiee570fd22014-06-19 10:42:50 +08006985 u64 start, u64 len, int delalloc)
Chris Masone688b7252011-10-31 20:52:39 -04006986{
Miao Xiee570fd22014-06-19 10:42:50 +08006987 return __btrfs_free_reserved_extent(root, start, len, 0, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04006988}
6989
6990int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root,
6991 u64 start, u64 len)
6992{
Miao Xiee570fd22014-06-19 10:42:50 +08006993 return __btrfs_free_reserved_extent(root, start, len, 1, 0);
Chris Masone688b7252011-10-31 20:52:39 -04006994}
6995
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006996static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
6997 struct btrfs_root *root,
6998 u64 parent, u64 root_objectid,
6999 u64 flags, u64 owner, u64 offset,
7000 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04007001{
7002 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007003 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007004 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007005 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007006 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007007 struct extent_buffer *leaf;
7008 int type;
7009 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04007010
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007011 if (parent > 0)
7012 type = BTRFS_SHARED_DATA_REF_KEY;
7013 else
7014 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04007015
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007016 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05007017
7018 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00007019 if (!path)
7020 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05007021
Chris Masonb9473432009-03-13 11:00:37 -04007022 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007023 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
7024 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007025 if (ret) {
7026 btrfs_free_path(path);
7027 return ret;
7028 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04007029
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007030 leaf = path->nodes[0];
7031 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05007032 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007033 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
7034 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
7035 btrfs_set_extent_flags(leaf, extent_item,
7036 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05007037
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007038 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
7039 btrfs_set_extent_inline_ref_type(leaf, iref, type);
7040 if (parent > 0) {
7041 struct btrfs_shared_data_ref *ref;
7042 ref = (struct btrfs_shared_data_ref *)(iref + 1);
7043 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
7044 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
7045 } else {
7046 struct btrfs_extent_data_ref *ref;
7047 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
7048 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
7049 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
7050 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
7051 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
7052 }
Chris Mason47e4bb92008-02-01 14:51:59 -05007053
7054 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05007055 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04007056
Josef Bacikfcebe452014-05-13 17:30:47 -07007057 /* Always set parent to 0 here since its exclusive anyway. */
7058 ret = btrfs_qgroup_record_ref(trans, fs_info, root_objectid,
7059 ins->objectid, ins->offset,
7060 BTRFS_QGROUP_OPER_ADD_EXCL, 0);
7061 if (ret)
7062 return ret;
7063
Liu Boc53d6132012-12-27 09:01:19 +00007064 ret = update_block_group(root, ins->objectid, ins->offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007065 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007066 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007067 ins->objectid, ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05007068 BUG();
7069 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04007070 trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007071 return ret;
7072}
7073
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007074static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
7075 struct btrfs_root *root,
7076 u64 parent, u64 root_objectid,
7077 u64 flags, struct btrfs_disk_key *key,
Josef Bacikfcebe452014-05-13 17:30:47 -07007078 int level, struct btrfs_key *ins,
7079 int no_quota)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007080{
7081 int ret;
7082 struct btrfs_fs_info *fs_info = root->fs_info;
7083 struct btrfs_extent_item *extent_item;
7084 struct btrfs_tree_block_info *block_info;
7085 struct btrfs_extent_inline_ref *iref;
7086 struct btrfs_path *path;
7087 struct extent_buffer *leaf;
Josef Bacik3173a182013-03-07 14:22:04 -05007088 u32 size = sizeof(*extent_item) + sizeof(*iref);
Josef Bacikfcebe452014-05-13 17:30:47 -07007089 u64 num_bytes = ins->offset;
Josef Bacik3173a182013-03-07 14:22:04 -05007090 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
7091 SKINNY_METADATA);
7092
7093 if (!skinny_metadata)
7094 size += sizeof(*block_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007095
7096 path = btrfs_alloc_path();
Josef Bacik857cc2f2013-10-07 15:21:08 -04007097 if (!path) {
7098 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
David Sterba707e8a02014-06-04 19:22:26 +02007099 root->nodesize);
Mark Fashehd8926bb2011-07-13 10:38:47 -07007100 return -ENOMEM;
Josef Bacik857cc2f2013-10-07 15:21:08 -04007101 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007102
7103 path->leave_spinning = 1;
7104 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
7105 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007106 if (ret) {
Josef Bacik857cc2f2013-10-07 15:21:08 -04007107 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
David Sterba707e8a02014-06-04 19:22:26 +02007108 root->nodesize);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007109 btrfs_free_path(path);
7110 return ret;
7111 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007112
7113 leaf = path->nodes[0];
7114 extent_item = btrfs_item_ptr(leaf, path->slots[0],
7115 struct btrfs_extent_item);
7116 btrfs_set_extent_refs(leaf, extent_item, 1);
7117 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
7118 btrfs_set_extent_flags(leaf, extent_item,
7119 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007120
Josef Bacik3173a182013-03-07 14:22:04 -05007121 if (skinny_metadata) {
7122 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
David Sterba707e8a02014-06-04 19:22:26 +02007123 num_bytes = root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05007124 } else {
7125 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
7126 btrfs_set_tree_block_key(leaf, block_info, key);
7127 btrfs_set_tree_block_level(leaf, block_info, level);
7128 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
7129 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007130
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007131 if (parent > 0) {
7132 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
7133 btrfs_set_extent_inline_ref_type(leaf, iref,
7134 BTRFS_SHARED_BLOCK_REF_KEY);
7135 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
7136 } else {
7137 btrfs_set_extent_inline_ref_type(leaf, iref,
7138 BTRFS_TREE_BLOCK_REF_KEY);
7139 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
7140 }
7141
7142 btrfs_mark_buffer_dirty(leaf);
7143 btrfs_free_path(path);
7144
Josef Bacikfcebe452014-05-13 17:30:47 -07007145 if (!no_quota) {
7146 ret = btrfs_qgroup_record_ref(trans, fs_info, root_objectid,
7147 ins->objectid, num_bytes,
7148 BTRFS_QGROUP_OPER_ADD_EXCL, 0);
7149 if (ret)
7150 return ret;
7151 }
7152
David Sterba707e8a02014-06-04 19:22:26 +02007153 ret = update_block_group(root, ins->objectid, root->nodesize, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007154 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007155 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007156 ins->objectid, ins->offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007157 BUG();
7158 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04007159
David Sterba707e8a02014-06-04 19:22:26 +02007160 trace_btrfs_reserved_extent_alloc(root, ins->objectid, root->nodesize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007161 return ret;
7162}
7163
7164int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
7165 struct btrfs_root *root,
7166 u64 root_objectid, u64 owner,
7167 u64 offset, struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04007168{
7169 int ret;
Chris Mason1c2308f2008-09-23 13:14:13 -04007170
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007171 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04007172
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007173 ret = btrfs_add_delayed_data_ref(root->fs_info, trans, ins->objectid,
7174 ins->offset, 0,
7175 root_objectid, owner, offset,
7176 BTRFS_ADD_DELAYED_EXTENT, NULL, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007177 return ret;
7178}
Chris Masone02119d2008-09-05 16:13:11 -04007179
7180/*
7181 * this is used by the tree logging recovery code. It records that
7182 * an extent has been allocated and makes sure to clear the free
7183 * space cache bits as well
7184 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007185int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
7186 struct btrfs_root *root,
7187 u64 root_objectid, u64 owner, u64 offset,
7188 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04007189{
7190 int ret;
7191 struct btrfs_block_group_cache *block_group;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04007192
7193 /*
7194 * Mixed block groups will exclude before processing the log so we only
7195 * need to do the exlude dance if this fs isn't mixed.
7196 */
7197 if (!btrfs_fs_incompat(root->fs_info, MIXED_GROUPS)) {
7198 ret = __exclude_logged_extent(root, ins->objectid, ins->offset);
7199 if (ret)
7200 return ret;
7201 }
Chris Masone02119d2008-09-05 16:13:11 -04007202
Chris Masone02119d2008-09-05 16:13:11 -04007203 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04007204 if (!block_group)
7205 return -EINVAL;
Yan Zheng11833d62009-09-11 16:11:19 -04007206
Josef Bacikfb25e912011-07-26 17:00:46 -04007207 ret = btrfs_update_reserved_bytes(block_group, ins->offset,
Miao Xiee570fd22014-06-19 10:42:50 +08007208 RESERVE_ALLOC_NO_ACCOUNT, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007209 BUG_ON(ret); /* logic error */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007210 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
7211 0, owner, offset, ins, 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04007212 btrfs_put_block_group(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04007213 return ret;
7214}
7215
Eric Sandeen48a3b632013-04-25 20:41:01 +00007216static struct extent_buffer *
7217btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
David Sterbafe864572014-06-15 02:28:42 +02007218 u64 bytenr, int level)
Chris Mason65b51a02008-08-01 15:11:20 -04007219{
7220 struct extent_buffer *buf;
7221
David Sterbaa83fffb2014-06-15 02:39:54 +02007222 buf = btrfs_find_create_tree_block(root, bytenr);
Chris Mason65b51a02008-08-01 15:11:20 -04007223 if (!buf)
7224 return ERR_PTR(-ENOMEM);
7225 btrfs_set_header_generation(buf, trans->transid);
Chris Mason85d4e462011-07-26 16:11:19 -04007226 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04007227 btrfs_tree_lock(buf);
7228 clean_tree_block(trans, root, buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05007229 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
Chris Masonb4ce94d2009-02-04 09:25:08 -05007230
7231 btrfs_set_lock_blocking(buf);
Chris Mason65b51a02008-08-01 15:11:20 -04007232 btrfs_set_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05007233
Chris Masond0c803c2008-09-11 16:17:57 -04007234 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Filipe Manana656f30d2014-09-26 12:25:56 +01007235 buf->log_index = root->log_transid % 2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00007236 /*
7237 * we allow two log transactions at a time, use different
7238 * EXENT bit to differentiate dirty pages.
7239 */
Filipe Manana656f30d2014-09-26 12:25:56 +01007240 if (buf->log_index == 0)
Yan, Zheng8cef4e12009-11-12 09:33:26 +00007241 set_extent_dirty(&root->dirty_log_pages, buf->start,
7242 buf->start + buf->len - 1, GFP_NOFS);
7243 else
7244 set_extent_new(&root->dirty_log_pages, buf->start,
7245 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond0c803c2008-09-11 16:17:57 -04007246 } else {
Filipe Manana656f30d2014-09-26 12:25:56 +01007247 buf->log_index = -1;
Chris Masond0c803c2008-09-11 16:17:57 -04007248 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
7249 buf->start + buf->len - 1, GFP_NOFS);
7250 }
Chris Mason65b51a02008-08-01 15:11:20 -04007251 trans->blocks_used++;
Chris Masonb4ce94d2009-02-04 09:25:08 -05007252 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04007253 return buf;
7254}
7255
Yan, Zhengf0486c62010-05-16 10:46:25 -04007256static struct btrfs_block_rsv *
7257use_block_rsv(struct btrfs_trans_handle *trans,
7258 struct btrfs_root *root, u32 blocksize)
7259{
7260 struct btrfs_block_rsv *block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00007261 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007262 int ret;
Miao Xied88033d2013-05-13 13:55:12 +00007263 bool global_updated = false;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007264
7265 block_rsv = get_block_rsv(trans, root);
7266
Miao Xieb586b322013-05-13 13:55:10 +00007267 if (unlikely(block_rsv->size == 0))
7268 goto try_reserve;
Miao Xied88033d2013-05-13 13:55:12 +00007269again:
Yan, Zhengf0486c62010-05-16 10:46:25 -04007270 ret = block_rsv_use_bytes(block_rsv, blocksize);
7271 if (!ret)
7272 return block_rsv;
7273
Miao Xieb586b322013-05-13 13:55:10 +00007274 if (block_rsv->failfast)
7275 return ERR_PTR(ret);
7276
Miao Xied88033d2013-05-13 13:55:12 +00007277 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
7278 global_updated = true;
7279 update_global_block_rsv(root->fs_info);
7280 goto again;
7281 }
7282
Miao Xieb586b322013-05-13 13:55:10 +00007283 if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
7284 static DEFINE_RATELIMIT_STATE(_rs,
7285 DEFAULT_RATELIMIT_INTERVAL * 10,
7286 /*DEFAULT_RATELIMIT_BURST*/ 1);
7287 if (__ratelimit(&_rs))
7288 WARN(1, KERN_DEBUG
Frank Holtonefe120a2013-12-20 11:37:06 -05007289 "BTRFS: block rsv returned %d\n", ret);
Miao Xieb586b322013-05-13 13:55:10 +00007290 }
7291try_reserve:
7292 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
7293 BTRFS_RESERVE_NO_FLUSH);
7294 if (!ret)
7295 return block_rsv;
7296 /*
7297 * If we couldn't reserve metadata bytes try and use some from
Miao Xie5881cfc2013-05-13 13:55:11 +00007298 * the global reserve if its space type is the same as the global
7299 * reservation.
Miao Xieb586b322013-05-13 13:55:10 +00007300 */
Miao Xie5881cfc2013-05-13 13:55:11 +00007301 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
7302 block_rsv->space_info == global_rsv->space_info) {
Miao Xieb586b322013-05-13 13:55:10 +00007303 ret = block_rsv_use_bytes(global_rsv, blocksize);
7304 if (!ret)
7305 return global_rsv;
7306 }
7307 return ERR_PTR(ret);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007308}
7309
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05007310static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
7311 struct btrfs_block_rsv *block_rsv, u32 blocksize)
Yan, Zhengf0486c62010-05-16 10:46:25 -04007312{
7313 block_rsv_add_bytes(block_rsv, blocksize, 0);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05007314 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007315}
7316
Chris Masonfec577f2007-02-26 10:40:21 -05007317/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04007318 * finds a free extent and does all the dirty work required for allocation
7319 * returns the key for the extent through ins, and a tree buffer for
7320 * the first block of the extent through buf.
7321 *
Chris Masonfec577f2007-02-26 10:40:21 -05007322 * returns the tree buffer or NULL.
7323 */
David Sterba4d75f8a2014-06-15 01:54:12 +02007324struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans,
7325 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007326 u64 parent, u64 root_objectid,
7327 struct btrfs_disk_key *key, int level,
Jan Schmidt5581a512012-05-16 17:04:52 +02007328 u64 hint, u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05007329{
Chris Masone2fa7222007-03-12 16:22:34 -04007330 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007331 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04007332 struct extent_buffer *buf;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007333 u64 flags = 0;
7334 int ret;
David Sterba4d75f8a2014-06-15 01:54:12 +02007335 u32 blocksize = root->nodesize;
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
David Sterbafccb84c2014-09-29 23:53:21 +02007339 if (btrfs_test_is_dummy_root(root)) {
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04007340 buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr,
David Sterbafe864572014-06-15 02:28:42 +02007341 level);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04007342 if (!IS_ERR(buf))
7343 root->alloc_bytenr += blocksize;
7344 return buf;
7345 }
David Sterbafccb84c2014-09-29 23:53:21 +02007346
Yan, Zhengf0486c62010-05-16 10:46:25 -04007347 block_rsv = use_block_rsv(trans, root, blocksize);
7348 if (IS_ERR(block_rsv))
7349 return ERR_CAST(block_rsv);
7350
Josef Bacik00361582013-08-14 14:02:47 -04007351 ret = btrfs_reserve_extent(root, blocksize, blocksize,
Miao Xiee570fd22014-06-19 10:42:50 +08007352 empty_size, hint, &ins, 0, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05007353 if (ret) {
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05007354 unuse_block_rsv(root->fs_info, block_rsv, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04007355 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05007356 }
Chris Mason55c69072008-01-09 15:55:33 -05007357
David Sterbafe864572014-06-15 02:28:42 +02007358 buf = btrfs_init_new_buffer(trans, root, ins.objectid, level);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007359 BUG_ON(IS_ERR(buf)); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007360
7361 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
7362 if (parent == 0)
7363 parent = ins.objectid;
7364 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
7365 } else
7366 BUG_ON(parent > 0);
7367
7368 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
7369 struct btrfs_delayed_extent_op *extent_op;
Miao Xie78a61842012-11-21 02:21:28 +00007370 extent_op = btrfs_alloc_delayed_extent_op();
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007371 BUG_ON(!extent_op); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007372 if (key)
7373 memcpy(&extent_op->key, key, sizeof(extent_op->key));
7374 else
7375 memset(&extent_op->key, 0, sizeof(extent_op->key));
7376 extent_op->flags_to_set = flags;
Josef Bacik3173a182013-03-07 14:22:04 -05007377 if (skinny_metadata)
7378 extent_op->update_key = 0;
7379 else
7380 extent_op->update_key = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007381 extent_op->update_flags = 1;
7382 extent_op->is_data = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04007383 extent_op->level = level;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007384
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007385 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
7386 ins.objectid,
Yan, Zhengf0486c62010-05-16 10:46:25 -04007387 ins.offset, parent, root_objectid,
7388 level, BTRFS_ADD_DELAYED_EXTENT,
Jan Schmidt5581a512012-05-16 17:04:52 +02007389 extent_op, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007390 BUG_ON(ret); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007391 }
Chris Masonfec577f2007-02-26 10:40:21 -05007392 return buf;
7393}
Chris Masona28ec192007-03-06 20:08:01 -05007394
Yan Zheng2c47e6052009-06-27 21:07:35 -04007395struct walk_control {
7396 u64 refs[BTRFS_MAX_LEVEL];
7397 u64 flags[BTRFS_MAX_LEVEL];
7398 struct btrfs_key update_progress;
7399 int stage;
7400 int level;
7401 int shared_level;
7402 int update_ref;
7403 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007404 int reada_slot;
7405 int reada_count;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007406 int for_reloc;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007407};
7408
7409#define DROP_REFERENCE 1
7410#define UPDATE_BACKREF 2
7411
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007412static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
7413 struct btrfs_root *root,
7414 struct walk_control *wc,
7415 struct btrfs_path *path)
7416{
7417 u64 bytenr;
7418 u64 generation;
7419 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007420 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007421 u32 nritems;
7422 u32 blocksize;
7423 struct btrfs_key key;
7424 struct extent_buffer *eb;
7425 int ret;
7426 int slot;
7427 int nread = 0;
7428
7429 if (path->slots[wc->level] < wc->reada_slot) {
7430 wc->reada_count = wc->reada_count * 2 / 3;
7431 wc->reada_count = max(wc->reada_count, 2);
7432 } else {
7433 wc->reada_count = wc->reada_count * 3 / 2;
7434 wc->reada_count = min_t(int, wc->reada_count,
7435 BTRFS_NODEPTRS_PER_BLOCK(root));
7436 }
7437
7438 eb = path->nodes[wc->level];
7439 nritems = btrfs_header_nritems(eb);
David Sterba707e8a02014-06-04 19:22:26 +02007440 blocksize = root->nodesize;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007441
7442 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
7443 if (nread >= wc->reada_count)
7444 break;
7445
7446 cond_resched();
7447 bytenr = btrfs_node_blockptr(eb, slot);
7448 generation = btrfs_node_ptr_generation(eb, slot);
7449
7450 if (slot == path->slots[wc->level])
7451 goto reada;
7452
7453 if (wc->stage == UPDATE_BACKREF &&
7454 generation <= root->root_key.offset)
7455 continue;
7456
Yan, Zheng94fcca92009-10-09 09:25:16 -04007457 /* We don't lock the tree block, it's OK to be racy here */
Josef Bacik3173a182013-03-07 14:22:04 -05007458 ret = btrfs_lookup_extent_info(trans, root, bytenr,
7459 wc->level - 1, 1, &refs,
7460 &flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007461 /* We don't care about errors in readahead. */
7462 if (ret < 0)
7463 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007464 BUG_ON(refs == 0);
7465
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007466 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007467 if (refs == 1)
7468 goto reada;
7469
Yan, Zheng94fcca92009-10-09 09:25:16 -04007470 if (wc->level == 1 &&
7471 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7472 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007473 if (!wc->update_ref ||
7474 generation <= root->root_key.offset)
7475 continue;
7476 btrfs_node_key_to_cpu(eb, &key, slot);
7477 ret = btrfs_comp_cpu_keys(&key,
7478 &wc->update_progress);
7479 if (ret < 0)
7480 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007481 } else {
7482 if (wc->level == 1 &&
7483 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7484 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007485 }
7486reada:
David Sterbad3e46fe2014-06-15 02:04:19 +02007487 readahead_tree_block(root, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007488 nread++;
7489 }
7490 wc->reada_slot = slot;
7491}
7492
Mark Fasheh11526512014-07-17 12:39:01 -07007493static int account_leaf_items(struct btrfs_trans_handle *trans,
7494 struct btrfs_root *root,
7495 struct extent_buffer *eb)
7496{
7497 int nr = btrfs_header_nritems(eb);
7498 int i, extent_type, ret;
7499 struct btrfs_key key;
7500 struct btrfs_file_extent_item *fi;
7501 u64 bytenr, num_bytes;
7502
7503 for (i = 0; i < nr; i++) {
7504 btrfs_item_key_to_cpu(eb, &key, i);
7505
7506 if (key.type != BTRFS_EXTENT_DATA_KEY)
7507 continue;
7508
7509 fi = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
7510 /* filter out non qgroup-accountable extents */
7511 extent_type = btrfs_file_extent_type(eb, fi);
7512
7513 if (extent_type == BTRFS_FILE_EXTENT_INLINE)
7514 continue;
7515
7516 bytenr = btrfs_file_extent_disk_bytenr(eb, fi);
7517 if (!bytenr)
7518 continue;
7519
7520 num_bytes = btrfs_file_extent_disk_num_bytes(eb, fi);
7521
7522 ret = btrfs_qgroup_record_ref(trans, root->fs_info,
7523 root->objectid,
7524 bytenr, num_bytes,
7525 BTRFS_QGROUP_OPER_SUB_SUBTREE, 0);
7526 if (ret)
7527 return ret;
7528 }
7529 return 0;
7530}
7531
7532/*
7533 * Walk up the tree from the bottom, freeing leaves and any interior
7534 * nodes which have had all slots visited. If a node (leaf or
7535 * interior) is freed, the node above it will have it's slot
7536 * incremented. The root node will never be freed.
7537 *
7538 * At the end of this function, we should have a path which has all
7539 * slots incremented to the next position for a search. If we need to
7540 * read a new node it will be NULL and the node above it will have the
7541 * correct slot selected for a later read.
7542 *
7543 * If we increment the root nodes slot counter past the number of
7544 * elements, 1 is returned to signal completion of the search.
7545 */
7546static int adjust_slots_upwards(struct btrfs_root *root,
7547 struct btrfs_path *path, int root_level)
7548{
7549 int level = 0;
7550 int nr, slot;
7551 struct extent_buffer *eb;
7552
7553 if (root_level == 0)
7554 return 1;
7555
7556 while (level <= root_level) {
7557 eb = path->nodes[level];
7558 nr = btrfs_header_nritems(eb);
7559 path->slots[level]++;
7560 slot = path->slots[level];
7561 if (slot >= nr || level == 0) {
7562 /*
7563 * Don't free the root - we will detect this
7564 * condition after our loop and return a
7565 * positive value for caller to stop walking the tree.
7566 */
7567 if (level != root_level) {
7568 btrfs_tree_unlock_rw(eb, path->locks[level]);
7569 path->locks[level] = 0;
7570
7571 free_extent_buffer(eb);
7572 path->nodes[level] = NULL;
7573 path->slots[level] = 0;
7574 }
7575 } else {
7576 /*
7577 * We have a valid slot to walk back down
7578 * from. Stop here so caller can process these
7579 * new nodes.
7580 */
7581 break;
7582 }
7583
7584 level++;
7585 }
7586
7587 eb = path->nodes[root_level];
7588 if (path->slots[root_level] >= btrfs_header_nritems(eb))
7589 return 1;
7590
7591 return 0;
7592}
7593
7594/*
7595 * root_eb is the subtree root and is locked before this function is called.
7596 */
7597static int account_shared_subtree(struct btrfs_trans_handle *trans,
7598 struct btrfs_root *root,
7599 struct extent_buffer *root_eb,
7600 u64 root_gen,
7601 int root_level)
7602{
7603 int ret = 0;
7604 int level;
7605 struct extent_buffer *eb = root_eb;
7606 struct btrfs_path *path = NULL;
7607
7608 BUG_ON(root_level < 0 || root_level > BTRFS_MAX_LEVEL);
7609 BUG_ON(root_eb == NULL);
7610
7611 if (!root->fs_info->quota_enabled)
7612 return 0;
7613
7614 if (!extent_buffer_uptodate(root_eb)) {
7615 ret = btrfs_read_buffer(root_eb, root_gen);
7616 if (ret)
7617 goto out;
7618 }
7619
7620 if (root_level == 0) {
7621 ret = account_leaf_items(trans, root, root_eb);
7622 goto out;
7623 }
7624
7625 path = btrfs_alloc_path();
7626 if (!path)
7627 return -ENOMEM;
7628
7629 /*
7630 * Walk down the tree. Missing extent blocks are filled in as
7631 * we go. Metadata is accounted every time we read a new
7632 * extent block.
7633 *
7634 * When we reach a leaf, we account for file extent items in it,
7635 * walk back up the tree (adjusting slot pointers as we go)
7636 * and restart the search process.
7637 */
7638 extent_buffer_get(root_eb); /* For path */
7639 path->nodes[root_level] = root_eb;
7640 path->slots[root_level] = 0;
7641 path->locks[root_level] = 0; /* so release_path doesn't try to unlock */
7642walk_down:
7643 level = root_level;
7644 while (level >= 0) {
7645 if (path->nodes[level] == NULL) {
Mark Fasheh11526512014-07-17 12:39:01 -07007646 int parent_slot;
7647 u64 child_gen;
7648 u64 child_bytenr;
7649
7650 /* We need to get child blockptr/gen from
7651 * parent before we can read it. */
7652 eb = path->nodes[level + 1];
7653 parent_slot = path->slots[level + 1];
7654 child_bytenr = btrfs_node_blockptr(eb, parent_slot);
7655 child_gen = btrfs_node_ptr_generation(eb, parent_slot);
7656
David Sterbace86cd52014-06-15 01:07:32 +02007657 eb = read_tree_block(root, child_bytenr, child_gen);
Mark Fasheh11526512014-07-17 12:39:01 -07007658 if (!eb || !extent_buffer_uptodate(eb)) {
7659 ret = -EIO;
7660 goto out;
7661 }
7662
7663 path->nodes[level] = eb;
7664 path->slots[level] = 0;
7665
7666 btrfs_tree_read_lock(eb);
7667 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
7668 path->locks[level] = BTRFS_READ_LOCK_BLOCKING;
7669
7670 ret = btrfs_qgroup_record_ref(trans, root->fs_info,
7671 root->objectid,
7672 child_bytenr,
David Sterbace86cd52014-06-15 01:07:32 +02007673 root->nodesize,
Mark Fasheh11526512014-07-17 12:39:01 -07007674 BTRFS_QGROUP_OPER_SUB_SUBTREE,
7675 0);
7676 if (ret)
7677 goto out;
7678
7679 }
7680
7681 if (level == 0) {
7682 ret = account_leaf_items(trans, root, path->nodes[level]);
7683 if (ret)
7684 goto out;
7685
7686 /* Nonzero return here means we completed our search */
7687 ret = adjust_slots_upwards(root, path, root_level);
7688 if (ret)
7689 break;
7690
7691 /* Restart search with new slots */
7692 goto walk_down;
7693 }
7694
7695 level--;
7696 }
7697
7698 ret = 0;
7699out:
7700 btrfs_free_path(path);
7701
7702 return ret;
7703}
7704
Chris Mason9aca1d52007-03-13 11:09:37 -04007705/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007706 * helper to process tree block while walking down the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04007707 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04007708 * when wc->stage == UPDATE_BACKREF, this function updates
7709 * back refs for pointers in the block.
7710 *
7711 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04007712 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007713static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
7714 struct btrfs_root *root,
7715 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007716 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04007717{
7718 int level = wc->level;
7719 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04007720 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
7721 int ret;
7722
7723 if (wc->stage == UPDATE_BACKREF &&
7724 btrfs_header_owner(eb) != root->root_key.objectid)
7725 return 1;
7726
7727 /*
7728 * when reference count of tree block is 1, it won't increase
7729 * again. once full backref flag is set, we never clear it.
7730 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04007731 if (lookup_info &&
7732 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
7733 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007734 BUG_ON(!path->locks[level]);
7735 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05007736 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007737 &wc->refs[level],
7738 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007739 BUG_ON(ret == -ENOMEM);
7740 if (ret)
7741 return ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007742 BUG_ON(wc->refs[level] == 0);
7743 }
7744
Yan Zheng2c47e6052009-06-27 21:07:35 -04007745 if (wc->stage == DROP_REFERENCE) {
7746 if (wc->refs[level] > 1)
7747 return 1;
7748
7749 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04007750 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007751 path->locks[level] = 0;
7752 }
7753 return 0;
7754 }
7755
7756 /* wc->stage == UPDATE_BACKREF */
7757 if (!(wc->flags[level] & flag)) {
7758 BUG_ON(!path->locks[level]);
Josef Bacike339a6b2014-07-02 10:54:25 -07007759 ret = btrfs_inc_ref(trans, root, eb, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007760 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07007761 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007762 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007763 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
Josef Bacikb1c79e02013-05-09 13:49:30 -04007764 eb->len, flag,
7765 btrfs_header_level(eb), 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007766 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007767 wc->flags[level] |= flag;
7768 }
7769
7770 /*
7771 * the block is shared by multiple trees, so it's not good to
7772 * keep the tree lock
7773 */
7774 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04007775 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007776 path->locks[level] = 0;
7777 }
7778 return 0;
7779}
7780
7781/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007782 * helper to process tree block pointer.
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007783 *
7784 * when wc->stage == DROP_REFERENCE, this function checks
7785 * reference count of the block pointed to. if the block
7786 * is shared and we need update back refs for the subtree
7787 * rooted at the block, this function changes wc->stage to
7788 * UPDATE_BACKREF. if the block is shared and there is no
7789 * need to update back, this function drops the reference
7790 * to the block.
7791 *
7792 * NOTE: return value 1 means we should stop walking down.
7793 */
7794static noinline int do_walk_down(struct btrfs_trans_handle *trans,
7795 struct btrfs_root *root,
7796 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007797 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007798{
7799 u64 bytenr;
7800 u64 generation;
7801 u64 parent;
7802 u32 blocksize;
7803 struct btrfs_key key;
7804 struct extent_buffer *next;
7805 int level = wc->level;
7806 int reada = 0;
7807 int ret = 0;
Mark Fasheh11526512014-07-17 12:39:01 -07007808 bool need_account = false;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007809
7810 generation = btrfs_node_ptr_generation(path->nodes[level],
7811 path->slots[level]);
7812 /*
7813 * if the lower level block was created before the snapshot
7814 * was created, we know there is no need to update back refs
7815 * for the subtree
7816 */
7817 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04007818 generation <= root->root_key.offset) {
7819 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007820 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007821 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007822
7823 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
David Sterba707e8a02014-06-04 19:22:26 +02007824 blocksize = root->nodesize;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007825
David Sterba0308af42014-06-15 01:43:40 +02007826 next = btrfs_find_tree_block(root, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007827 if (!next) {
David Sterbaa83fffb2014-06-15 02:39:54 +02007828 next = btrfs_find_create_tree_block(root, bytenr);
Miao Xie90d2c51d2010-03-25 12:37:12 +00007829 if (!next)
7830 return -ENOMEM;
Josef Bacikb2aaaa32013-07-05 17:05:38 -04007831 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
7832 level - 1);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007833 reada = 1;
7834 }
7835 btrfs_tree_lock(next);
7836 btrfs_set_lock_blocking(next);
7837
Josef Bacik3173a182013-03-07 14:22:04 -05007838 ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007839 &wc->refs[level - 1],
7840 &wc->flags[level - 1]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007841 if (ret < 0) {
7842 btrfs_tree_unlock(next);
7843 return ret;
7844 }
7845
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007846 if (unlikely(wc->refs[level - 1] == 0)) {
7847 btrfs_err(root->fs_info, "Missing references.");
7848 BUG();
7849 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04007850 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007851
Yan, Zheng94fcca92009-10-09 09:25:16 -04007852 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007853 if (wc->refs[level - 1] > 1) {
Mark Fasheh11526512014-07-17 12:39:01 -07007854 need_account = true;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007855 if (level == 1 &&
7856 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7857 goto skip;
7858
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007859 if (!wc->update_ref ||
7860 generation <= root->root_key.offset)
7861 goto skip;
7862
7863 btrfs_node_key_to_cpu(path->nodes[level], &key,
7864 path->slots[level]);
7865 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
7866 if (ret < 0)
7867 goto skip;
7868
7869 wc->stage = UPDATE_BACKREF;
7870 wc->shared_level = level - 1;
7871 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04007872 } else {
7873 if (level == 1 &&
7874 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7875 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007876 }
7877
Chris Masonb9fab912012-05-06 07:23:47 -04007878 if (!btrfs_buffer_uptodate(next, generation, 0)) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007879 btrfs_tree_unlock(next);
7880 free_extent_buffer(next);
7881 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007882 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007883 }
7884
7885 if (!next) {
7886 if (reada && level == 1)
7887 reada_walk_down(trans, root, wc, path);
David Sterbace86cd52014-06-15 01:07:32 +02007888 next = read_tree_block(root, bytenr, generation);
Josef Bacik416bc652013-04-23 14:17:42 -04007889 if (!next || !extent_buffer_uptodate(next)) {
7890 free_extent_buffer(next);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00007891 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04007892 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007893 btrfs_tree_lock(next);
7894 btrfs_set_lock_blocking(next);
7895 }
7896
7897 level--;
7898 BUG_ON(level != btrfs_header_level(next));
7899 path->nodes[level] = next;
7900 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04007901 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007902 wc->level = level;
7903 if (wc->level == 1)
7904 wc->reada_slot = 0;
7905 return 0;
7906skip:
7907 wc->refs[level - 1] = 0;
7908 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007909 if (wc->stage == DROP_REFERENCE) {
7910 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
7911 parent = path->nodes[level]->start;
7912 } else {
7913 BUG_ON(root->root_key.objectid !=
7914 btrfs_header_owner(path->nodes[level]));
7915 parent = 0;
7916 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007917
Mark Fasheh11526512014-07-17 12:39:01 -07007918 if (need_account) {
7919 ret = account_shared_subtree(trans, root, next,
7920 generation, level - 1);
7921 if (ret) {
7922 printk_ratelimited(KERN_ERR "BTRFS: %s Error "
7923 "%d accounting shared subtree. Quota "
7924 "is out of sync, rescan required.\n",
7925 root->fs_info->sb->s_id, ret);
7926 }
7927 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04007928 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007929 root->root_key.objectid, level - 1, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007930 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007931 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007932 btrfs_tree_unlock(next);
7933 free_extent_buffer(next);
Yan, Zheng94fcca92009-10-09 09:25:16 -04007934 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007935 return 1;
7936}
7937
7938/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007939 * helper to process tree block while walking up the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04007940 *
7941 * when wc->stage == DROP_REFERENCE, this function drops
7942 * reference count on the block.
7943 *
7944 * when wc->stage == UPDATE_BACKREF, this function changes
7945 * wc->stage back to DROP_REFERENCE if we changed wc->stage
7946 * to UPDATE_BACKREF previously while processing the block.
7947 *
7948 * NOTE: return value 1 means we should stop walking up.
7949 */
7950static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
7951 struct btrfs_root *root,
7952 struct btrfs_path *path,
7953 struct walk_control *wc)
7954{
Yan, Zhengf0486c62010-05-16 10:46:25 -04007955 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007956 int level = wc->level;
7957 struct extent_buffer *eb = path->nodes[level];
7958 u64 parent = 0;
7959
7960 if (wc->stage == UPDATE_BACKREF) {
7961 BUG_ON(wc->shared_level < level);
7962 if (level < wc->shared_level)
7963 goto out;
7964
Yan Zheng2c47e6052009-06-27 21:07:35 -04007965 ret = find_next_key(path, level + 1, &wc->update_progress);
7966 if (ret > 0)
7967 wc->update_ref = 0;
7968
7969 wc->stage = DROP_REFERENCE;
7970 wc->shared_level = -1;
7971 path->slots[level] = 0;
7972
7973 /*
7974 * check reference count again if the block isn't locked.
7975 * we should start walking down the tree again if reference
7976 * count is one.
7977 */
7978 if (!path->locks[level]) {
7979 BUG_ON(level == 0);
7980 btrfs_tree_lock(eb);
7981 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04007982 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007983
7984 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05007985 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007986 &wc->refs[level],
7987 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007988 if (ret < 0) {
7989 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00007990 path->locks[level] = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007991 return ret;
7992 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007993 BUG_ON(wc->refs[level] == 0);
7994 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04007995 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00007996 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007997 return 1;
7998 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007999 }
8000 }
8001
8002 /* wc->stage == DROP_REFERENCE */
8003 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
8004
8005 if (wc->refs[level] == 1) {
8006 if (level == 0) {
8007 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
Josef Bacike339a6b2014-07-02 10:54:25 -07008008 ret = btrfs_dec_ref(trans, root, eb, 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008009 else
Josef Bacike339a6b2014-07-02 10:54:25 -07008010 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008011 BUG_ON(ret); /* -ENOMEM */
Mark Fasheh11526512014-07-17 12:39:01 -07008012 ret = account_leaf_items(trans, root, eb);
8013 if (ret) {
8014 printk_ratelimited(KERN_ERR "BTRFS: %s Error "
8015 "%d accounting leaf items. Quota "
8016 "is out of sync, rescan required.\n",
8017 root->fs_info->sb->s_id, ret);
8018 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008019 }
8020 /* make block locked assertion in clean_tree_block happy */
8021 if (!path->locks[level] &&
8022 btrfs_header_generation(eb) == trans->transid) {
8023 btrfs_tree_lock(eb);
8024 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04008025 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008026 }
8027 clean_tree_block(trans, root, eb);
8028 }
8029
8030 if (eb == root->node) {
8031 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
8032 parent = eb->start;
8033 else
8034 BUG_ON(root->root_key.objectid !=
8035 btrfs_header_owner(eb));
8036 } else {
8037 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
8038 parent = path->nodes[level + 1]->start;
8039 else
8040 BUG_ON(root->root_key.objectid !=
8041 btrfs_header_owner(path->nodes[level + 1]));
8042 }
8043
Jan Schmidt5581a512012-05-16 17:04:52 +02008044 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008045out:
8046 wc->refs[level] = 0;
8047 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008048 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008049}
8050
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008051static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
8052 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008053 struct btrfs_path *path,
8054 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04008055{
Yan Zheng2c47e6052009-06-27 21:07:35 -04008056 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008057 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008058 int ret;
8059
Yan Zheng2c47e6052009-06-27 21:07:35 -04008060 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04008061 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008062 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04008063 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008064
Yan Zheng2c47e6052009-06-27 21:07:35 -04008065 if (level == 0)
8066 break;
8067
Yan, Zheng7a7965f2010-02-01 02:41:17 +00008068 if (path->slots[level] >=
8069 btrfs_header_nritems(path->nodes[level]))
8070 break;
8071
Yan, Zheng94fcca92009-10-09 09:25:16 -04008072 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008073 if (ret > 0) {
8074 path->slots[level]++;
8075 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00008076 } else if (ret < 0)
8077 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008078 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008079 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04008080 return 0;
8081}
8082
Chris Masond3977122009-01-05 21:25:51 -05008083static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05008084 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04008085 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008086 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05008087{
Yan Zheng2c47e6052009-06-27 21:07:35 -04008088 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05008089 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04008090
Yan Zheng2c47e6052009-06-27 21:07:35 -04008091 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
8092 while (level < max_level && path->nodes[level]) {
8093 wc->level = level;
8094 if (path->slots[level] + 1 <
8095 btrfs_header_nritems(path->nodes[level])) {
8096 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05008097 return 0;
8098 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008099 ret = walk_up_proc(trans, root, path, wc);
8100 if (ret > 0)
8101 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05008102
Yan Zheng2c47e6052009-06-27 21:07:35 -04008103 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04008104 btrfs_tree_unlock_rw(path->nodes[level],
8105 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008106 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008107 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008108 free_extent_buffer(path->nodes[level]);
8109 path->nodes[level] = NULL;
8110 level++;
Chris Mason20524f02007-03-10 06:35:47 -05008111 }
8112 }
8113 return 1;
8114}
8115
Chris Mason9aca1d52007-03-13 11:09:37 -04008116/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04008117 * drop a subvolume tree.
8118 *
8119 * this function traverses the tree freeing any blocks that only
8120 * referenced by the tree.
8121 *
8122 * when a shared tree block is found. this function decreases its
8123 * reference count by one. if update_ref is true, this function
8124 * also make sure backrefs for the shared block and all lower level
8125 * blocks are properly updated.
David Sterba9d1a2a32013-03-12 15:13:28 +00008126 *
8127 * If called with for_reloc == 0, may exit early with -EAGAIN
Chris Mason9aca1d52007-03-13 11:09:37 -04008128 */
Jeff Mahoney2c536792011-10-03 23:22:41 -04008129int btrfs_drop_snapshot(struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008130 struct btrfs_block_rsv *block_rsv, int update_ref,
8131 int for_reloc)
Chris Mason20524f02007-03-10 06:35:47 -05008132{
Chris Mason5caf2a02007-04-02 11:20:42 -04008133 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008134 struct btrfs_trans_handle *trans;
8135 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04008136 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008137 struct walk_control *wc;
8138 struct btrfs_key key;
8139 int err = 0;
8140 int ret;
8141 int level;
Josef Bacikd29a9f62013-07-17 19:30:20 -04008142 bool root_dropped = false;
Chris Mason20524f02007-03-10 06:35:47 -05008143
Mark Fasheh11526512014-07-17 12:39:01 -07008144 btrfs_debug(root->fs_info, "Drop subvolume %llu", root->objectid);
8145
Chris Mason5caf2a02007-04-02 11:20:42 -04008146 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008147 if (!path) {
8148 err = -ENOMEM;
8149 goto out;
8150 }
Chris Mason20524f02007-03-10 06:35:47 -05008151
Yan Zheng2c47e6052009-06-27 21:07:35 -04008152 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07008153 if (!wc) {
8154 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008155 err = -ENOMEM;
8156 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07008157 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008158
Yan, Zhenga22285a2010-05-16 10:48:46 -04008159 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008160 if (IS_ERR(trans)) {
8161 err = PTR_ERR(trans);
8162 goto out_free;
8163 }
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00008164
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008165 if (block_rsv)
8166 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008167
Chris Mason9f3a7422007-08-07 15:52:19 -04008168 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008169 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008170 path->nodes[level] = btrfs_lock_root_node(root);
8171 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04008172 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008173 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008174 memset(&wc->update_progress, 0,
8175 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04008176 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04008177 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008178 memcpy(&wc->update_progress, &key,
8179 sizeof(wc->update_progress));
8180
Chris Mason6702ed42007-08-07 16:15:09 -04008181 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008182 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04008183 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008184 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
8185 path->lowest_level = 0;
8186 if (ret < 0) {
8187 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008188 goto out_end_trans;
Chris Mason9f3a7422007-08-07 15:52:19 -04008189 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008190 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008191
Chris Mason7d9eb122008-07-08 14:19:17 -04008192 /*
8193 * unlock our path, this is safe because only this
8194 * function is allowed to delete this snapshot
8195 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008196 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04008197
Yan Zheng2c47e6052009-06-27 21:07:35 -04008198 level = btrfs_header_level(root->node);
8199 while (1) {
8200 btrfs_tree_lock(path->nodes[level]);
8201 btrfs_set_lock_blocking(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04008202 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008203
8204 ret = btrfs_lookup_extent_info(trans, root,
8205 path->nodes[level]->start,
Josef Bacik3173a182013-03-07 14:22:04 -05008206 level, 1, &wc->refs[level],
Yan Zheng2c47e6052009-06-27 21:07:35 -04008207 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008208 if (ret < 0) {
8209 err = ret;
8210 goto out_end_trans;
8211 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008212 BUG_ON(wc->refs[level] == 0);
8213
8214 if (level == root_item->drop_level)
8215 break;
8216
8217 btrfs_tree_unlock(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04008218 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008219 WARN_ON(wc->refs[level] != 1);
8220 level--;
8221 }
8222 }
8223
8224 wc->level = level;
8225 wc->shared_level = -1;
8226 wc->stage = DROP_REFERENCE;
8227 wc->update_ref = update_ref;
8228 wc->keep_locks = 0;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008229 wc->for_reloc = for_reloc;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008230 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008231
8232 while (1) {
David Sterba9d1a2a32013-03-12 15:13:28 +00008233
Yan Zheng2c47e6052009-06-27 21:07:35 -04008234 ret = walk_down_tree(trans, root, path, wc);
8235 if (ret < 0) {
8236 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04008237 break;
8238 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008239
8240 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
8241 if (ret < 0) {
8242 err = ret;
8243 break;
8244 }
8245
8246 if (ret > 0) {
8247 BUG_ON(wc->stage != DROP_REFERENCE);
8248 break;
8249 }
8250
8251 if (wc->stage == DROP_REFERENCE) {
8252 level = wc->level;
8253 btrfs_node_key(path->nodes[level],
8254 &root_item->drop_progress,
8255 path->slots[level]);
8256 root_item->drop_level = level;
8257 }
8258
8259 BUG_ON(wc->level == 0);
Josef Bacik3c8f2422013-07-15 11:57:06 -04008260 if (btrfs_should_end_transaction(trans, tree_root) ||
8261 (!for_reloc && btrfs_need_cleaner_sleep(root))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008262 ret = btrfs_update_root(trans, tree_root,
8263 &root->root_key,
8264 root_item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008265 if (ret) {
8266 btrfs_abort_transaction(trans, tree_root, ret);
8267 err = ret;
8268 goto out_end_trans;
8269 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008270
Mark Fasheh11526512014-07-17 12:39:01 -07008271 /*
8272 * Qgroup update accounting is run from
8273 * delayed ref handling. This usually works
8274 * out because delayed refs are normally the
8275 * only way qgroup updates are added. However,
8276 * we may have added updates during our tree
8277 * walk so run qgroups here to make sure we
8278 * don't lose any updates.
8279 */
8280 ret = btrfs_delayed_qgroup_accounting(trans,
8281 root->fs_info);
8282 if (ret)
8283 printk_ratelimited(KERN_ERR "BTRFS: Failure %d "
8284 "running qgroup updates "
8285 "during snapshot delete. "
8286 "Quota is out of sync, "
8287 "rescan required.\n", ret);
8288
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008289 btrfs_end_transaction_throttle(trans, tree_root);
Josef Bacik3c8f2422013-07-15 11:57:06 -04008290 if (!for_reloc && btrfs_need_cleaner_sleep(root)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05008291 pr_debug("BTRFS: drop snapshot early exit\n");
Josef Bacik3c8f2422013-07-15 11:57:06 -04008292 err = -EAGAIN;
8293 goto out_free;
8294 }
8295
Yan, Zhenga22285a2010-05-16 10:48:46 -04008296 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008297 if (IS_ERR(trans)) {
8298 err = PTR_ERR(trans);
8299 goto out_free;
8300 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008301 if (block_rsv)
8302 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04008303 }
Chris Mason20524f02007-03-10 06:35:47 -05008304 }
David Sterbab3b4aa72011-04-21 01:20:15 +02008305 btrfs_release_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008306 if (err)
8307 goto out_end_trans;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008308
8309 ret = btrfs_del_root(trans, tree_root, &root->root_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008310 if (ret) {
8311 btrfs_abort_transaction(trans, tree_root, ret);
8312 goto out_end_trans;
8313 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008314
Yan, Zheng76dda932009-09-21 16:00:26 -04008315 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Miao Xiecb517ea2013-05-15 07:48:19 +00008316 ret = btrfs_find_root(tree_root, &root->root_key, path,
8317 NULL, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008318 if (ret < 0) {
8319 btrfs_abort_transaction(trans, tree_root, ret);
8320 err = ret;
8321 goto out_end_trans;
8322 } else if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05008323 /* if we fail to delete the orphan item this time
8324 * around, it'll get picked up the next time.
8325 *
8326 * The most common failure here is just -ENOENT.
8327 */
8328 btrfs_del_orphan_item(trans, tree_root,
8329 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04008330 }
8331 }
8332
Miao Xie27cdeb72014-04-02 19:51:05 +08008333 if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) {
Miao Xiecb517ea2013-05-15 07:48:19 +00008334 btrfs_drop_and_free_fs_root(tree_root->fs_info, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04008335 } else {
8336 free_extent_buffer(root->node);
8337 free_extent_buffer(root->commit_root);
Miao Xieb0feb9d2013-05-15 07:48:20 +00008338 btrfs_put_fs_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04008339 }
Josef Bacikd29a9f62013-07-17 19:30:20 -04008340 root_dropped = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008341out_end_trans:
Mark Fasheh11526512014-07-17 12:39:01 -07008342 ret = btrfs_delayed_qgroup_accounting(trans, tree_root->fs_info);
8343 if (ret)
8344 printk_ratelimited(KERN_ERR "BTRFS: Failure %d "
8345 "running qgroup updates "
8346 "during snapshot delete. "
8347 "Quota is out of sync, "
8348 "rescan required.\n", ret);
8349
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008350 btrfs_end_transaction_throttle(trans, tree_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008351out_free:
Yan Zheng2c47e6052009-06-27 21:07:35 -04008352 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04008353 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008354out:
Josef Bacikd29a9f62013-07-17 19:30:20 -04008355 /*
8356 * So if we need to stop dropping the snapshot for whatever reason we
8357 * need to make sure to add it back to the dead root list so that we
8358 * keep trying to do the work later. This also cleans up roots if we
8359 * don't have it in the radix (like when we recover after a power fail
8360 * or unmount) so we don't leak memory.
8361 */
Josef Bacikb37b39c2013-07-23 16:57:15 -04008362 if (!for_reloc && root_dropped == false)
Josef Bacikd29a9f62013-07-17 19:30:20 -04008363 btrfs_add_dead_root(root);
Wang Shilong90515e72014-01-07 17:26:58 +08008364 if (err && err != -EAGAIN)
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008365 btrfs_std_error(root->fs_info, err);
Jeff Mahoney2c536792011-10-03 23:22:41 -04008366 return err;
Chris Mason20524f02007-03-10 06:35:47 -05008367}
Chris Mason9078a3e2007-04-26 16:46:15 -04008368
Yan Zheng2c47e6052009-06-27 21:07:35 -04008369/*
8370 * drop subtree rooted at tree block 'node'.
8371 *
8372 * NOTE: this function will unlock and release tree block 'node'
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008373 * only used by relocation code
Yan Zheng2c47e6052009-06-27 21:07:35 -04008374 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04008375int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
8376 struct btrfs_root *root,
8377 struct extent_buffer *node,
8378 struct extent_buffer *parent)
8379{
8380 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008381 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008382 int level;
8383 int parent_level;
8384 int ret = 0;
8385 int wret;
8386
Yan Zheng2c47e6052009-06-27 21:07:35 -04008387 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
8388
Yan Zhengf82d02d2008-10-29 14:49:05 -04008389 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00008390 if (!path)
8391 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008392
Yan Zheng2c47e6052009-06-27 21:07:35 -04008393 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00008394 if (!wc) {
8395 btrfs_free_path(path);
8396 return -ENOMEM;
8397 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008398
Chris Masonb9447ef2009-03-09 11:45:38 -04008399 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008400 parent_level = btrfs_header_level(parent);
8401 extent_buffer_get(parent);
8402 path->nodes[parent_level] = parent;
8403 path->slots[parent_level] = btrfs_header_nritems(parent);
8404
Chris Masonb9447ef2009-03-09 11:45:38 -04008405 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008406 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008407 path->nodes[level] = node;
8408 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008409 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008410
8411 wc->refs[parent_level] = 1;
8412 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
8413 wc->level = level;
8414 wc->shared_level = -1;
8415 wc->stage = DROP_REFERENCE;
8416 wc->update_ref = 0;
8417 wc->keep_locks = 1;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008418 wc->for_reloc = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008419 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008420
8421 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008422 wret = walk_down_tree(trans, root, path, wc);
8423 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04008424 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008425 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008426 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04008427
Yan Zheng2c47e6052009-06-27 21:07:35 -04008428 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008429 if (wret < 0)
8430 ret = wret;
8431 if (wret != 0)
8432 break;
8433 }
8434
Yan Zheng2c47e6052009-06-27 21:07:35 -04008435 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008436 btrfs_free_path(path);
8437 return ret;
8438}
8439
Chris Masonec44a352008-04-28 15:29:52 -04008440static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
8441{
8442 u64 num_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03008443 u64 stripped;
Chris Masonec44a352008-04-28 15:29:52 -04008444
Ilya Dryomovfc67c452012-03-27 17:09:17 +03008445 /*
8446 * if restripe for this chunk_type is on pick target profile and
8447 * return, otherwise do the usual balance
8448 */
8449 stripped = get_restripe_target(root->fs_info, flags);
8450 if (stripped)
8451 return extended_to_chunk(stripped);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02008452
Miao Xie95669972014-07-24 11:37:14 +08008453 num_devices = root->fs_info->fs_devices->rw_devices;
Chris Masoncd02dca2010-12-13 14:56:23 -05008454
Ilya Dryomovfc67c452012-03-27 17:09:17 +03008455 stripped = BTRFS_BLOCK_GROUP_RAID0 |
David Woodhouse53b381b2013-01-29 18:40:14 -05008456 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
Ilya Dryomovfc67c452012-03-27 17:09:17 +03008457 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
8458
Chris Masonec44a352008-04-28 15:29:52 -04008459 if (num_devices == 1) {
8460 stripped |= BTRFS_BLOCK_GROUP_DUP;
8461 stripped = flags & ~stripped;
8462
8463 /* turn raid0 into single device chunks */
8464 if (flags & BTRFS_BLOCK_GROUP_RAID0)
8465 return stripped;
8466
8467 /* turn mirroring into duplication */
8468 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
8469 BTRFS_BLOCK_GROUP_RAID10))
8470 return stripped | BTRFS_BLOCK_GROUP_DUP;
Chris Masonec44a352008-04-28 15:29:52 -04008471 } else {
8472 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04008473 if (flags & stripped)
8474 return flags;
8475
8476 stripped |= BTRFS_BLOCK_GROUP_DUP;
8477 stripped = flags & ~stripped;
8478
8479 /* switch duplicated blocks with raid1 */
8480 if (flags & BTRFS_BLOCK_GROUP_DUP)
8481 return stripped | BTRFS_BLOCK_GROUP_RAID1;
8482
Ilya Dryomove3176ca2012-03-27 17:09:16 +03008483 /* this is drive concat, leave it alone */
Chris Masonec44a352008-04-28 15:29:52 -04008484 }
Ilya Dryomove3176ca2012-03-27 17:09:16 +03008485
Chris Masonec44a352008-04-28 15:29:52 -04008486 return flags;
8487}
8488
Miao Xie199c36e2011-07-15 10:34:36 +00008489static int set_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04008490{
Yan, Zhengf0486c62010-05-16 10:46:25 -04008491 struct btrfs_space_info *sinfo = cache->space_info;
8492 u64 num_bytes;
Miao Xie199c36e2011-07-15 10:34:36 +00008493 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008494 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04008495
Chris Masonc286ac42008-07-22 23:06:41 -04008496
Miao Xie199c36e2011-07-15 10:34:36 +00008497 /*
8498 * We need some metadata space and system metadata space for
8499 * allocating chunks in some corner cases until we force to set
8500 * it to be readonly.
8501 */
8502 if ((sinfo->flags &
8503 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
8504 !force)
8505 min_allocable_bytes = 1 * 1024 * 1024;
8506 else
8507 min_allocable_bytes = 0;
8508
Yan, Zhengf0486c62010-05-16 10:46:25 -04008509 spin_lock(&sinfo->lock);
8510 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00008511
8512 if (cache->ro) {
8513 ret = 0;
8514 goto out;
8515 }
8516
Yan, Zhengf0486c62010-05-16 10:46:25 -04008517 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8518 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04008519
Yan, Zhengf0486c62010-05-16 10:46:25 -04008520 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
Josef Bacik37be25b2011-08-05 10:25:38 -04008521 sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes +
8522 min_allocable_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04008523 sinfo->bytes_readonly += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008524 cache->ro = 1;
Josef Bacik633c0aa2014-10-31 09:49:34 -04008525 list_add_tail(&cache->ro_list, &sinfo->ro_bgs);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008526 ret = 0;
8527 }
WuBo61cfea92011-07-26 03:30:11 +00008528out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04008529 spin_unlock(&cache->lock);
8530 spin_unlock(&sinfo->lock);
8531 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04008532}
8533
Yan, Zhengf0486c62010-05-16 10:46:25 -04008534int btrfs_set_block_group_ro(struct btrfs_root *root,
8535 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008536
8537{
Yan, Zhengf0486c62010-05-16 10:46:25 -04008538 struct btrfs_trans_handle *trans;
8539 u64 alloc_flags;
8540 int ret;
8541
8542 BUG_ON(cache->ro);
8543
Josef Bacik7a7eaa42011-04-13 12:54:33 -04008544 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008545 if (IS_ERR(trans))
8546 return PTR_ERR(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008547
8548 alloc_flags = update_block_group_flags(root, cache->flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008549 if (alloc_flags != cache->flags) {
Josef Bacik698d0082012-09-12 14:08:47 -04008550 ret = do_chunk_alloc(trans, root, alloc_flags,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008551 CHUNK_ALLOC_FORCE);
8552 if (ret < 0)
8553 goto out;
8554 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008555
Miao Xie199c36e2011-07-15 10:34:36 +00008556 ret = set_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008557 if (!ret)
8558 goto out;
8559 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
Josef Bacik698d0082012-09-12 14:08:47 -04008560 ret = do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04008561 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008562 if (ret < 0)
8563 goto out;
Miao Xie199c36e2011-07-15 10:34:36 +00008564 ret = set_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008565out:
8566 btrfs_end_transaction(trans, root);
8567 return ret;
8568}
8569
Chris Masonc87f08c2011-02-16 13:57:04 -05008570int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
8571 struct btrfs_root *root, u64 type)
8572{
8573 u64 alloc_flags = get_alloc_profile(root, type);
Josef Bacik698d0082012-09-12 14:08:47 -04008574 return do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04008575 CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05008576}
8577
Miao Xie6d07bce2011-01-05 10:07:31 +00008578/*
8579 * helper to account the unused space of all the readonly block group in the
Josef Bacik633c0aa2014-10-31 09:49:34 -04008580 * space_info. takes mirrors into account.
Miao Xie6d07bce2011-01-05 10:07:31 +00008581 */
Josef Bacik633c0aa2014-10-31 09:49:34 -04008582u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
Miao Xie6d07bce2011-01-05 10:07:31 +00008583{
8584 struct btrfs_block_group_cache *block_group;
8585 u64 free_bytes = 0;
8586 int factor;
8587
Josef Bacik633c0aa2014-10-31 09:49:34 -04008588 /* It's df, we don't care if it's racey */
8589 if (list_empty(&sinfo->ro_bgs))
8590 return 0;
8591
8592 spin_lock(&sinfo->lock);
8593 list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00008594 spin_lock(&block_group->lock);
8595
8596 if (!block_group->ro) {
8597 spin_unlock(&block_group->lock);
8598 continue;
8599 }
8600
8601 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
8602 BTRFS_BLOCK_GROUP_RAID10 |
8603 BTRFS_BLOCK_GROUP_DUP))
8604 factor = 2;
8605 else
8606 factor = 1;
8607
8608 free_bytes += (block_group->key.offset -
8609 btrfs_block_group_used(&block_group->item)) *
8610 factor;
8611
8612 spin_unlock(&block_group->lock);
8613 }
Miao Xie6d07bce2011-01-05 10:07:31 +00008614 spin_unlock(&sinfo->lock);
8615
8616 return free_bytes;
8617}
8618
Jeff Mahoney143bede2012-03-01 14:56:26 +01008619void btrfs_set_block_group_rw(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04008620 struct btrfs_block_group_cache *cache)
8621{
8622 struct btrfs_space_info *sinfo = cache->space_info;
8623 u64 num_bytes;
8624
8625 BUG_ON(!cache->ro);
8626
8627 spin_lock(&sinfo->lock);
8628 spin_lock(&cache->lock);
8629 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8630 cache->bytes_super - btrfs_block_group_used(&cache->item);
8631 sinfo->bytes_readonly -= num_bytes;
8632 cache->ro = 0;
Josef Bacik633c0aa2014-10-31 09:49:34 -04008633 list_del_init(&cache->ro_list);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008634 spin_unlock(&cache->lock);
8635 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008636}
8637
Josef Bacikba1bf482009-09-11 16:11:19 -04008638/*
8639 * checks to see if its even possible to relocate this block group.
8640 *
8641 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
8642 * ok to go ahead and try.
8643 */
8644int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04008645{
Zheng Yan1a40e232008-09-26 10:09:34 -04008646 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04008647 struct btrfs_space_info *space_info;
8648 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
8649 struct btrfs_device *device;
Josef Bacik6df9a952013-06-27 13:22:46 -04008650 struct btrfs_trans_handle *trans;
liubocdcb7252011-08-03 10:15:25 +00008651 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04008652 u64 dev_min = 1;
8653 u64 dev_nr = 0;
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008654 u64 target;
liubocdcb7252011-08-03 10:15:25 +00008655 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04008656 int full = 0;
8657 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05008658
Josef Bacikba1bf482009-09-11 16:11:19 -04008659 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04008660
Josef Bacikba1bf482009-09-11 16:11:19 -04008661 /* odd, couldn't find the block group, leave it alone */
8662 if (!block_group)
8663 return -1;
Chris Masonedbd8d42007-12-21 16:27:24 -05008664
liubocdcb7252011-08-03 10:15:25 +00008665 min_free = btrfs_block_group_used(&block_group->item);
8666
Josef Bacikba1bf482009-09-11 16:11:19 -04008667 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00008668 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04008669 goto out;
Chris Mason323da792008-05-09 11:46:48 -04008670
Josef Bacikba1bf482009-09-11 16:11:19 -04008671 space_info = block_group->space_info;
8672 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04008673
Josef Bacikba1bf482009-09-11 16:11:19 -04008674 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04008675
Josef Bacikba1bf482009-09-11 16:11:19 -04008676 /*
8677 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04008678 * relocate it unless we're able to allocate a new chunk below.
8679 *
8680 * Otherwise, we need to make sure we have room in the space to handle
8681 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04008682 */
Chris Mason7ce618d2009-09-22 14:48:44 -04008683 if ((space_info->total_bytes != block_group->key.offset) &&
liubocdcb7252011-08-03 10:15:25 +00008684 (space_info->bytes_used + space_info->bytes_reserved +
8685 space_info->bytes_pinned + space_info->bytes_readonly +
8686 min_free < space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04008687 spin_unlock(&space_info->lock);
8688 goto out;
8689 }
8690 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008691
Josef Bacikba1bf482009-09-11 16:11:19 -04008692 /*
8693 * ok we don't have enough space, but maybe we have free space on our
8694 * devices to allocate new chunks for relocation, so loop through our
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008695 * alloc devices and guess if we have enough space. if this block
8696 * group is going to be restriped, run checks against the target
8697 * profile instead of the current one.
Josef Bacikba1bf482009-09-11 16:11:19 -04008698 */
8699 ret = -1;
Chris Mason4313b392008-01-03 09:08:48 -05008700
liubocdcb7252011-08-03 10:15:25 +00008701 /*
8702 * index:
8703 * 0: raid10
8704 * 1: raid1
8705 * 2: dup
8706 * 3: raid0
8707 * 4: single
8708 */
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008709 target = get_restripe_target(root->fs_info, block_group->flags);
8710 if (target) {
Liu Bo31e50222012-11-21 14:18:10 +00008711 index = __get_raid_index(extended_to_chunk(target));
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008712 } else {
8713 /*
8714 * this is just a balance, so if we were marked as full
8715 * we know there is no space for a new chunk
8716 */
8717 if (full)
8718 goto out;
8719
8720 index = get_block_group_index(block_group);
8721 }
8722
Miao Xiee6ec7162013-01-17 05:38:51 +00008723 if (index == BTRFS_RAID_RAID10) {
liubocdcb7252011-08-03 10:15:25 +00008724 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04008725 /* Divide by 2 */
8726 min_free >>= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00008727 } else if (index == BTRFS_RAID_RAID1) {
liubocdcb7252011-08-03 10:15:25 +00008728 dev_min = 2;
Miao Xiee6ec7162013-01-17 05:38:51 +00008729 } else if (index == BTRFS_RAID_DUP) {
Josef Bacik6719db62011-08-20 08:29:51 -04008730 /* Multiply by 2 */
8731 min_free <<= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00008732 } else if (index == BTRFS_RAID_RAID0) {
liubocdcb7252011-08-03 10:15:25 +00008733 dev_min = fs_devices->rw_devices;
Josef Bacik6719db62011-08-20 08:29:51 -04008734 do_div(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00008735 }
8736
Josef Bacik6df9a952013-06-27 13:22:46 -04008737 /* We need to do this so that we can look at pending chunks */
8738 trans = btrfs_join_transaction(root);
8739 if (IS_ERR(trans)) {
8740 ret = PTR_ERR(trans);
8741 goto out;
8742 }
8743
Josef Bacikba1bf482009-09-11 16:11:19 -04008744 mutex_lock(&root->fs_info->chunk_mutex);
8745 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00008746 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04008747
Josef Bacikba1bf482009-09-11 16:11:19 -04008748 /*
8749 * check to make sure we can actually find a chunk with enough
8750 * space to fit our block group in.
8751 */
Stefan Behrens63a212a2012-11-05 18:29:28 +01008752 if (device->total_bytes > device->bytes_used + min_free &&
8753 !device->is_tgtdev_for_dev_replace) {
Josef Bacik6df9a952013-06-27 13:22:46 -04008754 ret = find_free_dev_extent(trans, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00008755 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04008756 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00008757 dev_nr++;
8758
8759 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05008760 break;
liubocdcb7252011-08-03 10:15:25 +00008761
Josef Bacikba1bf482009-09-11 16:11:19 -04008762 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05008763 }
Chris Masonedbd8d42007-12-21 16:27:24 -05008764 }
Josef Bacikba1bf482009-09-11 16:11:19 -04008765 mutex_unlock(&root->fs_info->chunk_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04008766 btrfs_end_transaction(trans, root);
Chris Masonedbd8d42007-12-21 16:27:24 -05008767out:
Josef Bacikba1bf482009-09-11 16:11:19 -04008768 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05008769 return ret;
8770}
8771
Christoph Hellwigb2950862008-12-02 09:54:17 -05008772static int find_first_block_group(struct btrfs_root *root,
8773 struct btrfs_path *path, struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04008774{
Chris Mason925baed2008-06-25 16:01:30 -04008775 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04008776 struct btrfs_key found_key;
8777 struct extent_buffer *leaf;
8778 int slot;
8779
8780 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
8781 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008782 goto out;
8783
Chris Masond3977122009-01-05 21:25:51 -05008784 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04008785 slot = path->slots[0];
8786 leaf = path->nodes[0];
8787 if (slot >= btrfs_header_nritems(leaf)) {
8788 ret = btrfs_next_leaf(root, path);
8789 if (ret == 0)
8790 continue;
8791 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008792 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04008793 break;
8794 }
8795 btrfs_item_key_to_cpu(leaf, &found_key, slot);
8796
8797 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04008798 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
8799 ret = 0;
8800 goto out;
8801 }
Chris Mason0b86a832008-03-24 15:01:56 -04008802 path->slots[0]++;
8803 }
Chris Mason925baed2008-06-25 16:01:30 -04008804out:
Chris Mason0b86a832008-03-24 15:01:56 -04008805 return ret;
8806}
8807
Josef Bacik0af3d002010-06-21 14:48:16 -04008808void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
8809{
8810 struct btrfs_block_group_cache *block_group;
8811 u64 last = 0;
8812
8813 while (1) {
8814 struct inode *inode;
8815
8816 block_group = btrfs_lookup_first_block_group(info, last);
8817 while (block_group) {
8818 spin_lock(&block_group->lock);
8819 if (block_group->iref)
8820 break;
8821 spin_unlock(&block_group->lock);
8822 block_group = next_block_group(info->tree_root,
8823 block_group);
8824 }
8825 if (!block_group) {
8826 if (last == 0)
8827 break;
8828 last = 0;
8829 continue;
8830 }
8831
8832 inode = block_group->inode;
8833 block_group->iref = 0;
8834 block_group->inode = NULL;
8835 spin_unlock(&block_group->lock);
8836 iput(inode);
8837 last = block_group->key.objectid + block_group->key.offset;
8838 btrfs_put_block_group(block_group);
8839 }
8840}
8841
Zheng Yan1a40e232008-09-26 10:09:34 -04008842int btrfs_free_block_groups(struct btrfs_fs_info *info)
8843{
8844 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04008845 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04008846 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04008847 struct rb_node *n;
8848
Josef Bacik9e351cc2014-03-13 15:42:13 -04008849 down_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04008850 while (!list_empty(&info->caching_block_groups)) {
8851 caching_ctl = list_entry(info->caching_block_groups.next,
8852 struct btrfs_caching_control, list);
8853 list_del(&caching_ctl->list);
8854 put_caching_control(caching_ctl);
8855 }
Josef Bacik9e351cc2014-03-13 15:42:13 -04008856 up_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04008857
Josef Bacik47ab2a62014-09-18 11:20:02 -04008858 spin_lock(&info->unused_bgs_lock);
8859 while (!list_empty(&info->unused_bgs)) {
8860 block_group = list_first_entry(&info->unused_bgs,
8861 struct btrfs_block_group_cache,
8862 bg_list);
8863 list_del_init(&block_group->bg_list);
8864 btrfs_put_block_group(block_group);
8865 }
8866 spin_unlock(&info->unused_bgs_lock);
8867
Zheng Yan1a40e232008-09-26 10:09:34 -04008868 spin_lock(&info->block_group_cache_lock);
8869 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
8870 block_group = rb_entry(n, struct btrfs_block_group_cache,
8871 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04008872 rb_erase(&block_group->cache_node,
8873 &info->block_group_cache_tree);
Yan Zhengd899e052008-10-30 14:25:28 -04008874 spin_unlock(&info->block_group_cache_lock);
8875
Josef Bacik80eb2342008-10-29 14:49:05 -04008876 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04008877 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04008878 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05008879
Josef Bacik817d52f2009-07-13 21:29:25 -04008880 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04008881 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04008882
Josef Bacik3c148742011-02-02 15:53:47 +00008883 /*
8884 * We haven't cached this block group, which means we could
8885 * possibly have excluded extents on this block group.
8886 */
Josef Bacik36cce922013-08-05 11:15:21 -04008887 if (block_group->cached == BTRFS_CACHE_NO ||
8888 block_group->cached == BTRFS_CACHE_ERROR)
Josef Bacik3c148742011-02-02 15:53:47 +00008889 free_excluded_extents(info->extent_root, block_group);
8890
Josef Bacik817d52f2009-07-13 21:29:25 -04008891 btrfs_remove_free_space_cache(block_group);
Josef Bacik11dfe352009-11-13 20:12:59 +00008892 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04008893
8894 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008895 }
8896 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -04008897
8898 /* now that all the block groups are freed, go through and
8899 * free all the space_info structs. This is only called during
8900 * the final stages of unmount, and so we know nobody is
8901 * using them. We call synchronize_rcu() once before we start,
8902 * just to be on the safe side.
8903 */
8904 synchronize_rcu();
8905
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04008906 release_global_block_rsv(info);
8907
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05308908 while (!list_empty(&info->space_info)) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008909 int i;
8910
Chris Mason4184ea72009-03-10 12:39:20 -04008911 space_info = list_entry(info->space_info.next,
8912 struct btrfs_space_info,
8913 list);
David Sterbab069e0c2013-02-08 21:28:17 +00008914 if (btrfs_test_opt(info->tree_root, ENOSPC_DEBUG)) {
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05308915 if (WARN_ON(space_info->bytes_pinned > 0 ||
David Sterbab069e0c2013-02-08 21:28:17 +00008916 space_info->bytes_reserved > 0 ||
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05308917 space_info->bytes_may_use > 0)) {
David Sterbab069e0c2013-02-08 21:28:17 +00008918 dump_space_info(space_info, 0, 0);
8919 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008920 }
Chris Mason4184ea72009-03-10 12:39:20 -04008921 list_del(&space_info->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008922 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
8923 struct kobject *kobj;
Jeff Mahoneyc1895442014-05-27 12:59:57 -04008924 kobj = space_info->block_group_kobjs[i];
8925 space_info->block_group_kobjs[i] = NULL;
8926 if (kobj) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008927 kobject_del(kobj);
8928 kobject_put(kobj);
8929 }
8930 }
8931 kobject_del(&space_info->kobj);
8932 kobject_put(&space_info->kobj);
Chris Mason4184ea72009-03-10 12:39:20 -04008933 }
Zheng Yan1a40e232008-09-26 10:09:34 -04008934 return 0;
8935}
8936
Yan, Zhengb742bb82010-05-16 10:46:24 -04008937static void __link_block_group(struct btrfs_space_info *space_info,
8938 struct btrfs_block_group_cache *cache)
8939{
8940 int index = get_block_group_index(cache);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -04008941 bool first = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04008942
8943 down_write(&space_info->groups_sem);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -04008944 if (list_empty(&space_info->block_groups[index]))
8945 first = true;
8946 list_add_tail(&cache->list, &space_info->block_groups[index]);
8947 up_write(&space_info->groups_sem);
8948
8949 if (first) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04008950 struct raid_kobject *rkobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008951 int ret;
8952
Jeff Mahoneyc1895442014-05-27 12:59:57 -04008953 rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS);
8954 if (!rkobj)
8955 goto out_err;
8956 rkobj->raid_type = index;
8957 kobject_init(&rkobj->kobj, &btrfs_raid_ktype);
8958 ret = kobject_add(&rkobj->kobj, &space_info->kobj,
8959 "%s", get_raid_name(index));
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008960 if (ret) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04008961 kobject_put(&rkobj->kobj);
8962 goto out_err;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008963 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -04008964 space_info->block_group_kobjs[index] = &rkobj->kobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008965 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -04008966
8967 return;
8968out_err:
8969 pr_warn("BTRFS: failed to add kobject for block cache. ignoring.\n");
Yan, Zhengb742bb82010-05-16 10:46:24 -04008970}
8971
Miao Xie920e4a52014-01-15 20:00:55 +08008972static struct btrfs_block_group_cache *
8973btrfs_create_block_group_cache(struct btrfs_root *root, u64 start, u64 size)
8974{
8975 struct btrfs_block_group_cache *cache;
8976
8977 cache = kzalloc(sizeof(*cache), GFP_NOFS);
8978 if (!cache)
8979 return NULL;
8980
8981 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
8982 GFP_NOFS);
8983 if (!cache->free_space_ctl) {
8984 kfree(cache);
8985 return NULL;
8986 }
8987
8988 cache->key.objectid = start;
8989 cache->key.offset = size;
8990 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
8991
8992 cache->sectorsize = root->sectorsize;
8993 cache->fs_info = root->fs_info;
8994 cache->full_stripe_len = btrfs_full_stripe_len(root,
8995 &root->fs_info->mapping_tree,
8996 start);
8997 atomic_set(&cache->count, 1);
8998 spin_lock_init(&cache->lock);
Miao Xiee570fd22014-06-19 10:42:50 +08008999 init_rwsem(&cache->data_rwsem);
Miao Xie920e4a52014-01-15 20:00:55 +08009000 INIT_LIST_HEAD(&cache->list);
9001 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009002 INIT_LIST_HEAD(&cache->bg_list);
Josef Bacik633c0aa2014-10-31 09:49:34 -04009003 INIT_LIST_HEAD(&cache->ro_list);
Miao Xie920e4a52014-01-15 20:00:55 +08009004 btrfs_init_free_space_ctl(cache);
Filipe Manana04216822014-11-27 21:14:15 +00009005 atomic_set(&cache->trimming, 0);
Miao Xie920e4a52014-01-15 20:00:55 +08009006
9007 return cache;
9008}
9009
Chris Mason9078a3e2007-04-26 16:46:15 -04009010int btrfs_read_block_groups(struct btrfs_root *root)
9011{
9012 struct btrfs_path *path;
9013 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04009014 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04009015 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04009016 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04009017 struct btrfs_key key;
9018 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04009019 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -04009020 int need_clear = 0;
9021 u64 cache_gen;
Chris Mason96b51792007-10-15 16:15:19 -04009022
Chris Masonbe744172007-05-06 10:15:01 -04009023 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04009024 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04009025 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02009026 key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Chris Mason9078a3e2007-04-26 16:46:15 -04009027 path = btrfs_alloc_path();
9028 if (!path)
9029 return -ENOMEM;
Josef Bacik026fd312011-05-13 10:32:11 -04009030 path->reada = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04009031
David Sterba6c417612011-04-13 15:41:04 +02009032 cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
Josef Bacik73bc1872011-10-03 14:07:49 -04009033 if (btrfs_test_opt(root, SPACE_CACHE) &&
David Sterba6c417612011-04-13 15:41:04 +02009034 btrfs_super_generation(root->fs_info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -04009035 need_clear = 1;
Josef Bacik88c2ba32010-09-21 14:21:34 -04009036 if (btrfs_test_opt(root, CLEAR_CACHE))
9037 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -04009038
Chris Masond3977122009-01-05 21:25:51 -05009039 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04009040 ret = find_first_block_group(root, path, &key);
Yan, Zhengb742bb82010-05-16 10:46:24 -04009041 if (ret > 0)
9042 break;
Chris Mason0b86a832008-03-24 15:01:56 -04009043 if (ret != 0)
9044 goto error;
Miao Xie920e4a52014-01-15 20:00:55 +08009045
Chris Mason5f39d392007-10-15 16:14:19 -04009046 leaf = path->nodes[0];
9047 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Miao Xie920e4a52014-01-15 20:00:55 +08009048
9049 cache = btrfs_create_block_group_cache(root, found_key.objectid,
9050 found_key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04009051 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04009052 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009053 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04009054 }
Josef Bacik96303082009-07-13 21:29:25 -04009055
Liu Bocf7c1ef2012-07-06 03:31:34 -06009056 if (need_clear) {
9057 /*
9058 * When we mount with old space cache, we need to
9059 * set BTRFS_DC_CLEAR and set dirty flag.
9060 *
9061 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
9062 * truncate the old free space cache inode and
9063 * setup a new one.
9064 * b) Setting 'dirty flag' makes sure that we flush
9065 * the new space cache info onto disk.
9066 */
Josef Bacik0af3d002010-06-21 14:48:16 -04009067 cache->disk_cache_state = BTRFS_DC_CLEAR;
Liu Bocf7c1ef2012-07-06 03:31:34 -06009068 if (btrfs_test_opt(root, SPACE_CACHE))
9069 cache->dirty = 1;
9070 }
Josef Bacik0af3d002010-06-21 14:48:16 -04009071
Chris Mason5f39d392007-10-15 16:14:19 -04009072 read_extent_buffer(leaf, &cache->item,
9073 btrfs_item_ptr_offset(leaf, path->slots[0]),
9074 sizeof(cache->item));
Miao Xie920e4a52014-01-15 20:00:55 +08009075 cache->flags = btrfs_block_group_flags(&cache->item);
Chris Mason0b86a832008-03-24 15:01:56 -04009076
Chris Mason9078a3e2007-04-26 16:46:15 -04009077 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +02009078 btrfs_release_path(path);
Li Zefan34d52cb2011-03-29 13:46:06 +08009079
Josef Bacik817d52f2009-07-13 21:29:25 -04009080 /*
Josef Bacik3c148742011-02-02 15:53:47 +00009081 * We need to exclude the super stripes now so that the space
9082 * info has super bytes accounted for, otherwise we'll think
9083 * we have more space than we actually do.
9084 */
Josef Bacik835d9742013-03-19 12:13:25 -04009085 ret = exclude_super_stripes(root, cache);
9086 if (ret) {
9087 /*
9088 * We may have excluded something, so call this just in
9089 * case.
9090 */
9091 free_excluded_extents(root, cache);
Miao Xie920e4a52014-01-15 20:00:55 +08009092 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -04009093 goto error;
9094 }
Josef Bacik3c148742011-02-02 15:53:47 +00009095
9096 /*
Josef Bacik817d52f2009-07-13 21:29:25 -04009097 * check for two cases, either we are full, and therefore
9098 * don't need to bother with the caching work since we won't
9099 * find any space, or we are empty, and we can just add all
9100 * the space in and be done with it. This saves us _alot_ of
9101 * time, particularly in the full case.
9102 */
9103 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -04009104 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04009105 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik1b2da372009-09-11 16:11:20 -04009106 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04009107 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -04009108 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04009109 cache->cached = BTRFS_CACHE_FINISHED;
9110 add_new_free_space(cache, root->fs_info,
9111 found_key.objectid,
9112 found_key.objectid +
9113 found_key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -04009114 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04009115 }
Chris Mason96b51792007-10-15 16:15:19 -04009116
Josef Bacik8c579fe2013-04-02 12:40:42 -04009117 ret = btrfs_add_block_group_cache(root->fs_info, cache);
9118 if (ret) {
9119 btrfs_remove_free_space_cache(cache);
9120 btrfs_put_block_group(cache);
9121 goto error;
9122 }
9123
Chris Mason6324fbf2008-03-24 15:01:59 -04009124 ret = update_space_info(info, cache->flags, found_key.offset,
9125 btrfs_block_group_used(&cache->item),
9126 &space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -04009127 if (ret) {
9128 btrfs_remove_free_space_cache(cache);
9129 spin_lock(&info->block_group_cache_lock);
9130 rb_erase(&cache->cache_node,
9131 &info->block_group_cache_tree);
9132 spin_unlock(&info->block_group_cache_lock);
9133 btrfs_put_block_group(cache);
9134 goto error;
9135 }
9136
Chris Mason6324fbf2008-03-24 15:01:59 -04009137 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -04009138 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009139 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04009140 spin_unlock(&cache->space_info->lock);
9141
Yan, Zhengb742bb82010-05-16 10:46:24 -04009142 __link_block_group(space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04009143
Chris Mason75ccf472008-09-30 19:24:06 -04009144 set_avail_alloc_bits(root->fs_info, cache->flags);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009145 if (btrfs_chunk_readonly(root, cache->key.objectid)) {
Miao Xie199c36e2011-07-15 10:34:36 +00009146 set_block_group_ro(cache, 1);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009147 } else if (btrfs_block_group_used(&cache->item) == 0) {
9148 spin_lock(&info->unused_bgs_lock);
9149 /* Should always be true but just in case. */
9150 if (list_empty(&cache->bg_list)) {
9151 btrfs_get_block_group(cache);
9152 list_add_tail(&cache->bg_list,
9153 &info->unused_bgs);
9154 }
9155 spin_unlock(&info->unused_bgs_lock);
9156 }
Chris Mason9078a3e2007-04-26 16:46:15 -04009157 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04009158
9159 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
9160 if (!(get_alloc_profile(root, space_info->flags) &
9161 (BTRFS_BLOCK_GROUP_RAID10 |
9162 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05009163 BTRFS_BLOCK_GROUP_RAID5 |
9164 BTRFS_BLOCK_GROUP_RAID6 |
Yan, Zhengb742bb82010-05-16 10:46:24 -04009165 BTRFS_BLOCK_GROUP_DUP)))
9166 continue;
9167 /*
9168 * avoid allocating from un-mirrored block group if there are
9169 * mirrored block groups.
9170 */
chandan1095cc02013-07-16 12:28:56 +05309171 list_for_each_entry(cache,
9172 &space_info->block_groups[BTRFS_RAID_RAID0],
9173 list)
Miao Xie199c36e2011-07-15 10:34:36 +00009174 set_block_group_ro(cache, 1);
chandan1095cc02013-07-16 12:28:56 +05309175 list_for_each_entry(cache,
9176 &space_info->block_groups[BTRFS_RAID_SINGLE],
9177 list)
Miao Xie199c36e2011-07-15 10:34:36 +00009178 set_block_group_ro(cache, 1);
Yan, Zhengb742bb82010-05-16 10:46:24 -04009179 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009180
9181 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -04009182 ret = 0;
9183error:
Chris Mason9078a3e2007-04-26 16:46:15 -04009184 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04009185 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04009186}
Chris Mason6324fbf2008-03-24 15:01:59 -04009187
Josef Bacikea658ba2012-09-11 16:57:25 -04009188void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans,
9189 struct btrfs_root *root)
9190{
9191 struct btrfs_block_group_cache *block_group, *tmp;
9192 struct btrfs_root *extent_root = root->fs_info->extent_root;
9193 struct btrfs_block_group_item item;
9194 struct btrfs_key key;
9195 int ret = 0;
9196
Josef Bacik47ab2a62014-09-18 11:20:02 -04009197 list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) {
Josef Bacikea658ba2012-09-11 16:57:25 -04009198 if (ret)
Filipe Mananac92f6be2014-11-26 15:28:55 +00009199 goto next;
Josef Bacikea658ba2012-09-11 16:57:25 -04009200
9201 spin_lock(&block_group->lock);
9202 memcpy(&item, &block_group->item, sizeof(item));
9203 memcpy(&key, &block_group->key, sizeof(key));
9204 spin_unlock(&block_group->lock);
9205
9206 ret = btrfs_insert_item(trans, extent_root, &key, &item,
9207 sizeof(item));
9208 if (ret)
9209 btrfs_abort_transaction(trans, extent_root, ret);
Josef Bacik6df9a952013-06-27 13:22:46 -04009210 ret = btrfs_finish_chunk_alloc(trans, extent_root,
9211 key.objectid, key.offset);
9212 if (ret)
9213 btrfs_abort_transaction(trans, extent_root, ret);
Filipe Mananac92f6be2014-11-26 15:28:55 +00009214next:
9215 list_del_init(&block_group->bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -04009216 }
9217}
9218
Chris Mason6324fbf2008-03-24 15:01:59 -04009219int btrfs_make_block_group(struct btrfs_trans_handle *trans,
9220 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04009221 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04009222 u64 size)
9223{
9224 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04009225 struct btrfs_root *extent_root;
9226 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -04009227
9228 extent_root = root->fs_info->extent_root;
Chris Mason6324fbf2008-03-24 15:01:59 -04009229
Miao Xie995946d2014-04-02 19:51:06 +08009230 btrfs_set_log_full_commit(root->fs_info, trans);
Chris Masone02119d2008-09-05 16:13:11 -04009231
Miao Xie920e4a52014-01-15 20:00:55 +08009232 cache = btrfs_create_block_group_cache(root, chunk_offset, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -04009233 if (!cache)
9234 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +08009235
Chris Mason6324fbf2008-03-24 15:01:59 -04009236 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04009237 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
Chris Mason6324fbf2008-03-24 15:01:59 -04009238 btrfs_set_block_group_flags(&cache->item, type);
9239
Miao Xie920e4a52014-01-15 20:00:55 +08009240 cache->flags = type;
Yan Zheng11833d62009-09-11 16:11:19 -04009241 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04009242 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik835d9742013-03-19 12:13:25 -04009243 ret = exclude_super_stripes(root, cache);
9244 if (ret) {
9245 /*
9246 * We may have excluded something, so call this just in
9247 * case.
9248 */
9249 free_excluded_extents(root, cache);
Miao Xie920e4a52014-01-15 20:00:55 +08009250 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -04009251 return ret;
9252 }
Josef Bacik96303082009-07-13 21:29:25 -04009253
Josef Bacik817d52f2009-07-13 21:29:25 -04009254 add_new_free_space(cache, root->fs_info, chunk_offset,
9255 chunk_offset + size);
9256
Yan Zheng11833d62009-09-11 16:11:19 -04009257 free_excluded_extents(root, cache);
9258
Josef Bacik8c579fe2013-04-02 12:40:42 -04009259 ret = btrfs_add_block_group_cache(root->fs_info, cache);
9260 if (ret) {
9261 btrfs_remove_free_space_cache(cache);
9262 btrfs_put_block_group(cache);
9263 return ret;
9264 }
9265
Chris Mason6324fbf2008-03-24 15:01:59 -04009266 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
9267 &cache->space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -04009268 if (ret) {
9269 btrfs_remove_free_space_cache(cache);
9270 spin_lock(&root->fs_info->block_group_cache_lock);
9271 rb_erase(&cache->cache_node,
9272 &root->fs_info->block_group_cache_tree);
9273 spin_unlock(&root->fs_info->block_group_cache_lock);
9274 btrfs_put_block_group(cache);
9275 return ret;
9276 }
Li Zefanc7c144d2011-12-07 10:39:22 +08009277 update_global_block_rsv(root->fs_info);
Josef Bacik1b2da372009-09-11 16:11:20 -04009278
9279 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009280 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04009281 spin_unlock(&cache->space_info->lock);
9282
Yan, Zhengb742bb82010-05-16 10:46:24 -04009283 __link_block_group(cache->space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04009284
Josef Bacik47ab2a62014-09-18 11:20:02 -04009285 list_add_tail(&cache->bg_list, &trans->new_bgs);
Chris Mason6324fbf2008-03-24 15:01:59 -04009286
Chris Masond18a2c42008-04-04 15:40:00 -04009287 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason925baed2008-06-25 16:01:30 -04009288
Chris Mason6324fbf2008-03-24 15:01:59 -04009289 return 0;
9290}
Zheng Yan1a40e232008-09-26 10:09:34 -04009291
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009292static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
9293{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03009294 u64 extra_flags = chunk_to_extended(flags) &
9295 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009296
Miao Xiede98ced2013-01-29 10:13:12 +00009297 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009298 if (flags & BTRFS_BLOCK_GROUP_DATA)
9299 fs_info->avail_data_alloc_bits &= ~extra_flags;
9300 if (flags & BTRFS_BLOCK_GROUP_METADATA)
9301 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
9302 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
9303 fs_info->avail_system_alloc_bits &= ~extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00009304 write_sequnlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009305}
9306
Zheng Yan1a40e232008-09-26 10:09:34 -04009307int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
Filipe Manana04216822014-11-27 21:14:15 +00009308 struct btrfs_root *root, u64 group_start,
9309 struct extent_map *em)
Zheng Yan1a40e232008-09-26 10:09:34 -04009310{
9311 struct btrfs_path *path;
9312 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -04009313 struct btrfs_free_cluster *cluster;
Josef Bacik0af3d002010-06-21 14:48:16 -04009314 struct btrfs_root *tree_root = root->fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -04009315 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -04009316 struct inode *inode;
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009317 struct kobject *kobj = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -04009318 int ret;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009319 int index;
Josef Bacik89a55892010-10-14 14:52:27 -04009320 int factor;
Filipe Manana4f69cb92014-11-26 15:28:51 +00009321 struct btrfs_caching_control *caching_ctl = NULL;
Filipe Manana04216822014-11-27 21:14:15 +00009322 bool remove_em;
Zheng Yan1a40e232008-09-26 10:09:34 -04009323
Zheng Yan1a40e232008-09-26 10:09:34 -04009324 root = root->fs_info->extent_root;
9325
9326 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
9327 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -05009328 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -04009329
liubo9f7c43c2011-03-07 02:13:33 +00009330 /*
9331 * Free the reserved super bytes from this block group before
9332 * remove it.
9333 */
9334 free_excluded_extents(root, block_group);
9335
Zheng Yan1a40e232008-09-26 10:09:34 -04009336 memcpy(&key, &block_group->key, sizeof(key));
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009337 index = get_block_group_index(block_group);
Josef Bacik89a55892010-10-14 14:52:27 -04009338 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
9339 BTRFS_BLOCK_GROUP_RAID1 |
9340 BTRFS_BLOCK_GROUP_RAID10))
9341 factor = 2;
9342 else
9343 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04009344
Chris Mason44fb5512009-06-04 15:34:51 -04009345 /* make sure this block group isn't part of an allocation cluster */
9346 cluster = &root->fs_info->data_alloc_cluster;
9347 spin_lock(&cluster->refill_lock);
9348 btrfs_return_cluster_to_free_space(block_group, cluster);
9349 spin_unlock(&cluster->refill_lock);
9350
9351 /*
9352 * make sure this block group isn't part of a metadata
9353 * allocation cluster
9354 */
9355 cluster = &root->fs_info->meta_alloc_cluster;
9356 spin_lock(&cluster->refill_lock);
9357 btrfs_return_cluster_to_free_space(block_group, cluster);
9358 spin_unlock(&cluster->refill_lock);
9359
Zheng Yan1a40e232008-09-26 10:09:34 -04009360 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07009361 if (!path) {
9362 ret = -ENOMEM;
9363 goto out;
9364 }
Zheng Yan1a40e232008-09-26 10:09:34 -04009365
Ilya Dryomov10b2f342011-10-02 13:56:53 +03009366 inode = lookup_free_space_inode(tree_root, block_group, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04009367 if (!IS_ERR(inode)) {
Tsutomu Itohb5324022011-07-19 07:27:20 +00009368 ret = btrfs_orphan_add(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009369 if (ret) {
9370 btrfs_add_delayed_iput(inode);
9371 goto out;
9372 }
Josef Bacik0af3d002010-06-21 14:48:16 -04009373 clear_nlink(inode);
9374 /* One for the block groups ref */
9375 spin_lock(&block_group->lock);
9376 if (block_group->iref) {
9377 block_group->iref = 0;
9378 block_group->inode = NULL;
9379 spin_unlock(&block_group->lock);
9380 iput(inode);
9381 } else {
9382 spin_unlock(&block_group->lock);
9383 }
9384 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -04009385 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04009386 }
9387
9388 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
9389 key.offset = block_group->key.objectid;
9390 key.type = 0;
9391
9392 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
9393 if (ret < 0)
9394 goto out;
9395 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +02009396 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04009397 if (ret == 0) {
9398 ret = btrfs_del_item(trans, tree_root, path);
9399 if (ret)
9400 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02009401 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04009402 }
9403
Yan Zheng3dfdb932009-01-21 10:49:16 -05009404 spin_lock(&root->fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009405 rb_erase(&block_group->cache_node,
9406 &root->fs_info->block_group_cache_tree);
Filipe Manana292cbd52014-11-26 15:28:50 +00009407 RB_CLEAR_NODE(&block_group->cache_node);
Liu Boa1897fd2012-12-27 09:01:23 +00009408
9409 if (root->fs_info->first_logical_byte == block_group->key.objectid)
9410 root->fs_info->first_logical_byte = (u64)-1;
Yan Zheng3dfdb932009-01-21 10:49:16 -05009411 spin_unlock(&root->fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04009412
Josef Bacik80eb2342008-10-29 14:49:05 -04009413 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04009414 /*
9415 * we must use list_del_init so people can check to see if they
9416 * are still on the list after taking the semaphore
9417 */
9418 list_del_init(&block_group->list);
Josef Bacik633c0aa2014-10-31 09:49:34 -04009419 list_del_init(&block_group->ro_list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009420 if (list_empty(&block_group->space_info->block_groups[index])) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009421 kobj = block_group->space_info->block_group_kobjs[index];
9422 block_group->space_info->block_group_kobjs[index] = NULL;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009423 clear_avail_alloc_bits(root->fs_info, block_group->flags);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009424 }
Josef Bacik80eb2342008-10-29 14:49:05 -04009425 up_write(&block_group->space_info->groups_sem);
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009426 if (kobj) {
9427 kobject_del(kobj);
9428 kobject_put(kobj);
9429 }
Zheng Yan1a40e232008-09-26 10:09:34 -04009430
Filipe Manana4f69cb92014-11-26 15:28:51 +00009431 if (block_group->has_caching_ctl)
9432 caching_ctl = get_caching_control(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04009433 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04009434 wait_block_group_cache_done(block_group);
Filipe Manana4f69cb92014-11-26 15:28:51 +00009435 if (block_group->has_caching_ctl) {
9436 down_write(&root->fs_info->commit_root_sem);
9437 if (!caching_ctl) {
9438 struct btrfs_caching_control *ctl;
9439
9440 list_for_each_entry(ctl,
9441 &root->fs_info->caching_block_groups, list)
9442 if (ctl->block_group == block_group) {
9443 caching_ctl = ctl;
9444 atomic_inc(&caching_ctl->count);
9445 break;
9446 }
9447 }
9448 if (caching_ctl)
9449 list_del_init(&caching_ctl->list);
9450 up_write(&root->fs_info->commit_root_sem);
9451 if (caching_ctl) {
9452 /* Once for the caching bgs list and once for us. */
9453 put_caching_control(caching_ctl);
9454 put_caching_control(caching_ctl);
9455 }
9456 }
Josef Bacik817d52f2009-07-13 21:29:25 -04009457
9458 btrfs_remove_free_space_cache(block_group);
9459
Yan Zhengc146afa2008-11-12 14:34:12 -05009460 spin_lock(&block_group->space_info->lock);
9461 block_group->space_info->total_bytes -= block_group->key.offset;
9462 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -04009463 block_group->space_info->disk_total -= block_group->key.offset * factor;
Yan Zhengc146afa2008-11-12 14:34:12 -05009464 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -04009465
Josef Bacik0af3d002010-06-21 14:48:16 -04009466 memcpy(&key, &block_group->key, sizeof(key));
9467
Filipe Manana04216822014-11-27 21:14:15 +00009468 lock_chunks(root);
Filipe Manana495e64f2014-12-02 18:07:30 +00009469 if (!list_empty(&em->list)) {
9470 /* We're in the transaction->pending_chunks list. */
9471 free_extent_map(em);
9472 }
Filipe Manana04216822014-11-27 21:14:15 +00009473 spin_lock(&block_group->lock);
9474 block_group->removed = 1;
9475 /*
9476 * At this point trimming can't start on this block group, because we
9477 * removed the block group from the tree fs_info->block_group_cache_tree
9478 * so no one can't find it anymore and even if someone already got this
9479 * block group before we removed it from the rbtree, they have already
9480 * incremented block_group->trimming - if they didn't, they won't find
9481 * any free space entries because we already removed them all when we
9482 * called btrfs_remove_free_space_cache().
9483 *
9484 * And we must not remove the extent map from the fs_info->mapping_tree
9485 * to prevent the same logical address range and physical device space
9486 * ranges from being reused for a new block group. This is because our
9487 * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is
9488 * completely transactionless, so while it is trimming a range the
9489 * currently running transaction might finish and a new one start,
9490 * allowing for new block groups to be created that can reuse the same
9491 * physical device locations unless we take this special care.
9492 */
9493 remove_em = (atomic_read(&block_group->trimming) == 0);
9494 /*
9495 * Make sure a trimmer task always sees the em in the pinned_chunks list
9496 * if it sees block_group->removed == 1 (needs to lock block_group->lock
9497 * before checking block_group->removed).
9498 */
9499 if (!remove_em) {
9500 /*
9501 * Our em might be in trans->transaction->pending_chunks which
9502 * is protected by fs_info->chunk_mutex ([lock|unlock]_chunks),
9503 * and so is the fs_info->pinned_chunks list.
9504 *
9505 * So at this point we must be holding the chunk_mutex to avoid
9506 * any races with chunk allocation (more specifically at
9507 * volumes.c:contains_pending_extent()), to ensure it always
9508 * sees the em, either in the pending_chunks list or in the
9509 * pinned_chunks list.
9510 */
9511 list_move_tail(&em->list, &root->fs_info->pinned_chunks);
9512 }
9513 spin_unlock(&block_group->lock);
Filipe Manana04216822014-11-27 21:14:15 +00009514
9515 if (remove_em) {
9516 struct extent_map_tree *em_tree;
9517
9518 em_tree = &root->fs_info->mapping_tree.map_tree;
9519 write_lock(&em_tree->lock);
Filipe Manana8dbcd102014-12-02 18:07:49 +00009520 /*
9521 * The em might be in the pending_chunks list, so make sure the
9522 * chunk mutex is locked, since remove_extent_mapping() will
9523 * delete us from that list.
9524 */
Filipe Manana04216822014-11-27 21:14:15 +00009525 remove_extent_mapping(em_tree, em);
9526 write_unlock(&em_tree->lock);
9527 /* once for the tree */
9528 free_extent_map(em);
9529 }
9530
Filipe Manana8dbcd102014-12-02 18:07:49 +00009531 unlock_chunks(root);
9532
Chris Masonfa9c0d792009-04-03 09:47:43 -04009533 btrfs_put_block_group(block_group);
9534 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -04009535
9536 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
9537 if (ret > 0)
9538 ret = -EIO;
9539 if (ret < 0)
9540 goto out;
9541
9542 ret = btrfs_del_item(trans, root, path);
9543out:
9544 btrfs_free_path(path);
9545 return ret;
9546}
liuboacce9522011-01-06 19:30:25 +08009547
Josef Bacik47ab2a62014-09-18 11:20:02 -04009548/*
9549 * Process the unused_bgs list and remove any that don't have any allocated
9550 * space inside of them.
9551 */
9552void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info)
9553{
9554 struct btrfs_block_group_cache *block_group;
9555 struct btrfs_space_info *space_info;
9556 struct btrfs_root *root = fs_info->extent_root;
9557 struct btrfs_trans_handle *trans;
9558 int ret = 0;
9559
9560 if (!fs_info->open)
9561 return;
9562
9563 spin_lock(&fs_info->unused_bgs_lock);
9564 while (!list_empty(&fs_info->unused_bgs)) {
9565 u64 start, end;
9566
9567 block_group = list_first_entry(&fs_info->unused_bgs,
9568 struct btrfs_block_group_cache,
9569 bg_list);
9570 space_info = block_group->space_info;
9571 list_del_init(&block_group->bg_list);
9572 if (ret || btrfs_mixed_space_info(space_info)) {
9573 btrfs_put_block_group(block_group);
9574 continue;
9575 }
9576 spin_unlock(&fs_info->unused_bgs_lock);
9577
9578 /* Don't want to race with allocators so take the groups_sem */
9579 down_write(&space_info->groups_sem);
9580 spin_lock(&block_group->lock);
9581 if (block_group->reserved ||
9582 btrfs_block_group_used(&block_group->item) ||
9583 block_group->ro) {
9584 /*
9585 * We want to bail if we made new allocations or have
9586 * outstanding allocations in this block group. We do
9587 * the ro check in case balance is currently acting on
9588 * this block group.
9589 */
9590 spin_unlock(&block_group->lock);
9591 up_write(&space_info->groups_sem);
9592 goto next;
9593 }
9594 spin_unlock(&block_group->lock);
9595
9596 /* We don't want to force the issue, only flip if it's ok. */
9597 ret = set_block_group_ro(block_group, 0);
9598 up_write(&space_info->groups_sem);
9599 if (ret < 0) {
9600 ret = 0;
9601 goto next;
9602 }
9603
9604 /*
9605 * Want to do this before we do anything else so we can recover
9606 * properly if we fail to join the transaction.
9607 */
9608 trans = btrfs_join_transaction(root);
9609 if (IS_ERR(trans)) {
9610 btrfs_set_block_group_rw(root, block_group);
9611 ret = PTR_ERR(trans);
9612 goto next;
9613 }
9614
9615 /*
9616 * We could have pending pinned extents for this block group,
9617 * just delete them, we don't care about them anymore.
9618 */
9619 start = block_group->key.objectid;
9620 end = start + block_group->key.offset - 1;
Filipe Manana758eb512014-11-03 14:08:39 +00009621 ret = clear_extent_bits(&fs_info->freed_extents[0], start, end,
Josef Bacik47ab2a62014-09-18 11:20:02 -04009622 EXTENT_DIRTY, GFP_NOFS);
Filipe Manana758eb512014-11-03 14:08:39 +00009623 if (ret) {
9624 btrfs_set_block_group_rw(root, block_group);
9625 goto end_trans;
9626 }
9627 ret = clear_extent_bits(&fs_info->freed_extents[1], start, end,
Josef Bacik47ab2a62014-09-18 11:20:02 -04009628 EXTENT_DIRTY, GFP_NOFS);
Filipe Manana758eb512014-11-03 14:08:39 +00009629 if (ret) {
9630 btrfs_set_block_group_rw(root, block_group);
9631 goto end_trans;
9632 }
Josef Bacik47ab2a62014-09-18 11:20:02 -04009633
9634 /* Reset pinned so btrfs_put_block_group doesn't complain */
9635 block_group->pinned = 0;
9636
9637 /*
9638 * Btrfs_remove_chunk will abort the transaction if things go
9639 * horribly wrong.
9640 */
9641 ret = btrfs_remove_chunk(trans, root,
9642 block_group->key.objectid);
Filipe Manana758eb512014-11-03 14:08:39 +00009643end_trans:
Josef Bacik47ab2a62014-09-18 11:20:02 -04009644 btrfs_end_transaction(trans, root);
9645next:
9646 btrfs_put_block_group(block_group);
9647 spin_lock(&fs_info->unused_bgs_lock);
9648 }
9649 spin_unlock(&fs_info->unused_bgs_lock);
9650}
9651
liuboc59021f2011-03-07 02:13:14 +00009652int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
9653{
9654 struct btrfs_space_info *space_info;
liubo1aba86d2011-04-08 08:44:37 +00009655 struct btrfs_super_block *disk_super;
9656 u64 features;
9657 u64 flags;
9658 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +00009659 int ret;
9660
David Sterba6c417612011-04-13 15:41:04 +02009661 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +00009662 if (!btrfs_super_root(disk_super))
9663 return 1;
liuboc59021f2011-03-07 02:13:14 +00009664
liubo1aba86d2011-04-08 08:44:37 +00009665 features = btrfs_super_incompat_flags(disk_super);
9666 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
9667 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +00009668
liubo1aba86d2011-04-08 08:44:37 +00009669 flags = BTRFS_BLOCK_GROUP_SYSTEM;
9670 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
liuboc59021f2011-03-07 02:13:14 +00009671 if (ret)
liubo1aba86d2011-04-08 08:44:37 +00009672 goto out;
liuboc59021f2011-03-07 02:13:14 +00009673
liubo1aba86d2011-04-08 08:44:37 +00009674 if (mixed) {
9675 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
9676 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
9677 } else {
9678 flags = BTRFS_BLOCK_GROUP_METADATA;
9679 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
9680 if (ret)
9681 goto out;
9682
9683 flags = BTRFS_BLOCK_GROUP_DATA;
9684 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
9685 }
9686out:
liuboc59021f2011-03-07 02:13:14 +00009687 return ret;
9688}
9689
liuboacce9522011-01-06 19:30:25 +08009690int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
9691{
9692 return unpin_extent_range(root, start, end);
9693}
9694
9695int btrfs_error_discard_extent(struct btrfs_root *root, u64 bytenr,
Li Dongyang5378e602011-03-24 10:24:27 +00009696 u64 num_bytes, u64 *actual_bytes)
liuboacce9522011-01-06 19:30:25 +08009697{
Li Dongyang5378e602011-03-24 10:24:27 +00009698 return btrfs_discard_extent(root, bytenr, num_bytes, actual_bytes);
liuboacce9522011-01-06 19:30:25 +08009699}
Li Dongyangf7039b12011-03-24 10:24:28 +00009700
9701int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range)
9702{
9703 struct btrfs_fs_info *fs_info = root->fs_info;
9704 struct btrfs_block_group_cache *cache = NULL;
9705 u64 group_trimmed;
9706 u64 start;
9707 u64 end;
9708 u64 trimmed = 0;
Liu Bo2cac13e2012-02-09 18:17:41 +08009709 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +00009710 int ret = 0;
9711
Liu Bo2cac13e2012-02-09 18:17:41 +08009712 /*
9713 * try to trim all FS space, our block group may start from non-zero.
9714 */
9715 if (range->len == total_bytes)
9716 cache = btrfs_lookup_first_block_group(fs_info, range->start);
9717 else
9718 cache = btrfs_lookup_block_group(fs_info, range->start);
Li Dongyangf7039b12011-03-24 10:24:28 +00009719
9720 while (cache) {
9721 if (cache->key.objectid >= (range->start + range->len)) {
9722 btrfs_put_block_group(cache);
9723 break;
9724 }
9725
9726 start = max(range->start, cache->key.objectid);
9727 end = min(range->start + range->len,
9728 cache->key.objectid + cache->key.offset);
9729
9730 if (end - start >= range->minlen) {
9731 if (!block_group_cache_done(cache)) {
Liu Bof6373bf2012-12-27 09:01:18 +00009732 ret = cache_block_group(cache, 0);
Josef Bacik1be41b72013-06-12 13:56:06 -04009733 if (ret) {
9734 btrfs_put_block_group(cache);
9735 break;
9736 }
9737 ret = wait_block_group_cache_done(cache);
9738 if (ret) {
9739 btrfs_put_block_group(cache);
9740 break;
9741 }
Li Dongyangf7039b12011-03-24 10:24:28 +00009742 }
9743 ret = btrfs_trim_block_group(cache,
9744 &group_trimmed,
9745 start,
9746 end,
9747 range->minlen);
9748
9749 trimmed += group_trimmed;
9750 if (ret) {
9751 btrfs_put_block_group(cache);
9752 break;
9753 }
9754 }
9755
9756 cache = next_block_group(fs_info->tree_root, cache);
9757 }
9758
9759 range->len = trimmed;
9760 return ret;
9761}
Miao Xie8257b2d2014-03-06 13:38:19 +08009762
9763/*
Filipe Manana9ea24bb2014-10-29 11:57:59 +00009764 * btrfs_{start,end}_write_no_snapshoting() are similar to
9765 * mnt_{want,drop}_write(), they are used to prevent some tasks from writing
9766 * data into the page cache through nocow before the subvolume is snapshoted,
9767 * but flush the data into disk after the snapshot creation, or to prevent
9768 * operations while snapshoting is ongoing and that cause the snapshot to be
9769 * inconsistent (writes followed by expanding truncates for example).
Miao Xie8257b2d2014-03-06 13:38:19 +08009770 */
Filipe Manana9ea24bb2014-10-29 11:57:59 +00009771void btrfs_end_write_no_snapshoting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +08009772{
9773 percpu_counter_dec(&root->subv_writers->counter);
9774 /*
9775 * Make sure counter is updated before we wake up
9776 * waiters.
9777 */
9778 smp_mb();
9779 if (waitqueue_active(&root->subv_writers->wait))
9780 wake_up(&root->subv_writers->wait);
9781}
9782
Filipe Manana9ea24bb2014-10-29 11:57:59 +00009783int btrfs_start_write_no_snapshoting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +08009784{
David Sterbaee39b432014-09-30 01:33:33 +02009785 if (atomic_read(&root->will_be_snapshoted))
Miao Xie8257b2d2014-03-06 13:38:19 +08009786 return 0;
9787
9788 percpu_counter_inc(&root->subv_writers->counter);
9789 /*
9790 * Make sure counter is updated before we check for snapshot creation.
9791 */
9792 smp_mb();
David Sterbaee39b432014-09-30 01:33:33 +02009793 if (atomic_read(&root->will_be_snapshoted)) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +00009794 btrfs_end_write_no_snapshoting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +08009795 return 0;
9796 }
9797 return 1;
9798}