blob: 1c2bd1723e40ce8d1390223daf2bf4a7871ac051 [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
Josef Bacikce93ec52014-11-17 15:45:48 -050077static int update_block_group(struct btrfs_trans_handle *trans,
78 struct btrfs_root *root, u64 bytenr,
79 u64 num_bytes, int alloc);
Yan Zheng5d4f98a2009-06-10 10:45:14 -040080static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
81 struct btrfs_root *root,
Qu Wenruoc682f9b2015-03-17 16:59:47 +080082 struct btrfs_delayed_ref_node *node, u64 parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -040083 u64 root_objectid, u64 owner_objectid,
84 u64 owner_offset, int refs_to_drop,
Qu Wenruoc682f9b2015-03-17 16:59:47 +080085 struct btrfs_delayed_extent_op *extra_op);
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
Filipe Manana1edb647b2014-12-08 14:01:12 +00001892int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr,
1893 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 }
Zhao Lei6e9606d2015-01-20 15:11:34 +08001928 btrfs_put_bbio(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,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08001969 struct btrfs_delayed_ref_node *node,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001970 u64 parent, u64 root_objectid,
1971 u64 owner, u64 offset, int refs_to_add,
1972 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04001973{
Josef Bacikfcebe452014-05-13 17:30:47 -07001974 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5caf2a02007-04-02 11:20:42 -04001975 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001976 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04001977 struct btrfs_extent_item *item;
Josef Bacikfcebe452014-05-13 17:30:47 -07001978 struct btrfs_key key;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08001979 u64 bytenr = node->bytenr;
1980 u64 num_bytes = node->num_bytes;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001981 u64 refs;
1982 int ret;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08001983 int no_quota = node->no_quota;
Chris Mason037e6392007-03-07 11:50:24 -05001984
Chris Mason5caf2a02007-04-02 11:20:42 -04001985 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001986 if (!path)
1987 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04001988
Josef Bacikfcebe452014-05-13 17:30:47 -07001989 if (!is_fstree(root_objectid) || !root->fs_info->quota_enabled)
1990 no_quota = 1;
1991
Chris Mason3c12ac72008-04-21 12:01:38 -04001992 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04001993 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001994 /* this will setup the path even if it fails to insert the back ref */
Josef Bacikfcebe452014-05-13 17:30:47 -07001995 ret = insert_inline_extent_backref(trans, fs_info->extent_root, path,
1996 bytenr, num_bytes, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001997 root_objectid, owner, offset,
1998 refs_to_add, extent_op);
Qu Wenruo0ed47922015-04-16 16:55:08 +08001999 if ((ret < 0 && ret != -EAGAIN) || !ret)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002000 goto out;
Josef Bacikfcebe452014-05-13 17:30:47 -07002001
2002 /*
2003 * Ok we had -EAGAIN which means we didn't have space to insert and
2004 * inline extent ref, so just update the reference count and add a
2005 * normal backref.
2006 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002007 leaf = path->nodes[0];
Josef Bacikfcebe452014-05-13 17:30:47 -07002008 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002009 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2010 refs = btrfs_extent_refs(leaf, item);
2011 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
2012 if (extent_op)
2013 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04002014
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002015 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002016 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05002017
Chris Mason3c12ac72008-04-21 12:01:38 -04002018 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04002019 path->leave_spinning = 1;
Chris Mason56bec292009-03-13 10:10:06 -04002020 /* now insert the actual backref */
Zheng Yan31840ae2008-09-23 13:14:14 -04002021 ret = insert_extent_backref(trans, root->fs_info->extent_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002022 path, bytenr, parent, root_objectid,
2023 owner, offset, refs_to_add);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002024 if (ret)
2025 btrfs_abort_transaction(trans, root, ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002026out:
Chris Mason74493f72007-12-11 09:25:06 -05002027 btrfs_free_path(path);
Liu Bo30d133f2013-10-11 16:30:23 +08002028 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002029}
2030
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002031static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
2032 struct btrfs_root *root,
2033 struct btrfs_delayed_ref_node *node,
2034 struct btrfs_delayed_extent_op *extent_op,
2035 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04002036{
Chris Mason56bec292009-03-13 10:10:06 -04002037 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002038 struct btrfs_delayed_data_ref *ref;
2039 struct btrfs_key ins;
2040 u64 parent = 0;
2041 u64 ref_root = 0;
2042 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002043
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002044 ins.objectid = node->bytenr;
2045 ins.offset = node->num_bytes;
2046 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04002047
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002048 ref = btrfs_delayed_node_to_data_ref(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002049 trace_run_delayed_data_ref(node, ref, node->action);
2050
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002051 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
2052 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002053 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002054
2055 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002056 if (extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002057 flags |= extent_op->flags_to_set;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002058 ret = alloc_reserved_file_extent(trans, root,
2059 parent, ref_root, flags,
2060 ref->objectid, ref->offset,
2061 &ins, node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002062 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002063 ret = __btrfs_inc_extent_ref(trans, root, node, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002064 ref_root, ref->objectid,
2065 ref->offset, node->ref_mod,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002066 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002067 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002068 ret = __btrfs_free_extent(trans, root, node, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002069 ref_root, ref->objectid,
2070 ref->offset, node->ref_mod,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002071 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002072 } else {
2073 BUG();
2074 }
Chris Mason56bec292009-03-13 10:10:06 -04002075 return ret;
2076}
2077
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002078static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
2079 struct extent_buffer *leaf,
2080 struct btrfs_extent_item *ei)
2081{
2082 u64 flags = btrfs_extent_flags(leaf, ei);
2083 if (extent_op->update_flags) {
2084 flags |= extent_op->flags_to_set;
2085 btrfs_set_extent_flags(leaf, ei, flags);
2086 }
2087
2088 if (extent_op->update_key) {
2089 struct btrfs_tree_block_info *bi;
2090 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
2091 bi = (struct btrfs_tree_block_info *)(ei + 1);
2092 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
2093 }
2094}
2095
2096static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
2097 struct btrfs_root *root,
2098 struct btrfs_delayed_ref_node *node,
2099 struct btrfs_delayed_extent_op *extent_op)
2100{
2101 struct btrfs_key key;
2102 struct btrfs_path *path;
2103 struct btrfs_extent_item *ei;
2104 struct extent_buffer *leaf;
2105 u32 item_size;
2106 int ret;
2107 int err = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002108 int metadata = !extent_op->is_data;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002109
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002110 if (trans->aborted)
2111 return 0;
2112
Josef Bacik3173a182013-03-07 14:22:04 -05002113 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2114 metadata = 0;
2115
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002116 path = btrfs_alloc_path();
2117 if (!path)
2118 return -ENOMEM;
2119
2120 key.objectid = node->bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002121
Josef Bacik3173a182013-03-07 14:22:04 -05002122 if (metadata) {
Josef Bacik3173a182013-03-07 14:22:04 -05002123 key.type = BTRFS_METADATA_ITEM_KEY;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002124 key.offset = extent_op->level;
Josef Bacik3173a182013-03-07 14:22:04 -05002125 } else {
2126 key.type = BTRFS_EXTENT_ITEM_KEY;
2127 key.offset = node->num_bytes;
2128 }
2129
2130again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002131 path->reada = 1;
2132 path->leave_spinning = 1;
2133 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key,
2134 path, 0, 1);
2135 if (ret < 0) {
2136 err = ret;
2137 goto out;
2138 }
2139 if (ret > 0) {
Josef Bacik3173a182013-03-07 14:22:04 -05002140 if (metadata) {
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002141 if (path->slots[0] > 0) {
2142 path->slots[0]--;
2143 btrfs_item_key_to_cpu(path->nodes[0], &key,
2144 path->slots[0]);
2145 if (key.objectid == node->bytenr &&
2146 key.type == BTRFS_EXTENT_ITEM_KEY &&
2147 key.offset == node->num_bytes)
2148 ret = 0;
2149 }
2150 if (ret > 0) {
2151 btrfs_release_path(path);
2152 metadata = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002153
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002154 key.objectid = node->bytenr;
2155 key.offset = node->num_bytes;
2156 key.type = BTRFS_EXTENT_ITEM_KEY;
2157 goto again;
2158 }
2159 } else {
2160 err = -EIO;
2161 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05002162 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002163 }
2164
2165 leaf = path->nodes[0];
2166 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2167#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2168 if (item_size < sizeof(*ei)) {
2169 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
2170 path, (u64)-1, 0);
2171 if (ret < 0) {
2172 err = ret;
2173 goto out;
2174 }
2175 leaf = path->nodes[0];
2176 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2177 }
2178#endif
2179 BUG_ON(item_size < sizeof(*ei));
2180 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2181 __run_delayed_extent_op(extent_op, leaf, ei);
2182
2183 btrfs_mark_buffer_dirty(leaf);
2184out:
2185 btrfs_free_path(path);
2186 return err;
2187}
2188
2189static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
2190 struct btrfs_root *root,
2191 struct btrfs_delayed_ref_node *node,
2192 struct btrfs_delayed_extent_op *extent_op,
2193 int insert_reserved)
2194{
2195 int ret = 0;
2196 struct btrfs_delayed_tree_ref *ref;
2197 struct btrfs_key ins;
2198 u64 parent = 0;
2199 u64 ref_root = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002200 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
2201 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002202
2203 ref = btrfs_delayed_node_to_tree_ref(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002204 trace_run_delayed_tree_ref(node, ref, node->action);
2205
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002206 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2207 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002208 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002209
Josef Bacik3173a182013-03-07 14:22:04 -05002210 ins.objectid = node->bytenr;
2211 if (skinny_metadata) {
2212 ins.offset = ref->level;
2213 ins.type = BTRFS_METADATA_ITEM_KEY;
2214 } else {
2215 ins.offset = node->num_bytes;
2216 ins.type = BTRFS_EXTENT_ITEM_KEY;
2217 }
2218
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002219 BUG_ON(node->ref_mod != 1);
2220 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002221 BUG_ON(!extent_op || !extent_op->update_flags);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002222 ret = alloc_reserved_tree_block(trans, root,
2223 parent, ref_root,
2224 extent_op->flags_to_set,
2225 &extent_op->key,
Josef Bacikfcebe452014-05-13 17:30:47 -07002226 ref->level, &ins,
2227 node->no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002228 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002229 ret = __btrfs_inc_extent_ref(trans, root, node,
2230 parent, ref_root,
2231 ref->level, 0, 1,
Josef Bacikfcebe452014-05-13 17:30:47 -07002232 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002233 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002234 ret = __btrfs_free_extent(trans, root, node,
2235 parent, ref_root,
2236 ref->level, 0, 1, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002237 } else {
2238 BUG();
2239 }
2240 return ret;
2241}
2242
Chris Mason56bec292009-03-13 10:10:06 -04002243/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002244static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
2245 struct btrfs_root *root,
2246 struct btrfs_delayed_ref_node *node,
2247 struct btrfs_delayed_extent_op *extent_op,
2248 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002249{
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002250 int ret = 0;
2251
Josef Bacik857cc2f2013-10-07 15:21:08 -04002252 if (trans->aborted) {
2253 if (insert_reserved)
2254 btrfs_pin_extent(root, node->bytenr,
2255 node->num_bytes, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002256 return 0;
Josef Bacik857cc2f2013-10-07 15:21:08 -04002257 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002258
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002259 if (btrfs_delayed_ref_is_head(node)) {
Chris Mason56bec292009-03-13 10:10:06 -04002260 struct btrfs_delayed_ref_head *head;
2261 /*
2262 * we've hit the end of the chain and we were supposed
2263 * to insert this extent into the tree. But, it got
2264 * deleted before we ever needed to insert it, so all
2265 * we have to do is clean up the accounting
2266 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002267 BUG_ON(extent_op);
2268 head = btrfs_delayed_node_to_head(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002269 trace_run_delayed_ref_head(node, head, node->action);
2270
Chris Mason56bec292009-03-13 10:10:06 -04002271 if (insert_reserved) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04002272 btrfs_pin_extent(root, node->bytenr,
2273 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002274 if (head->is_data) {
2275 ret = btrfs_del_csums(trans, root,
2276 node->bytenr,
2277 node->num_bytes);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002278 }
Chris Mason56bec292009-03-13 10:10:06 -04002279 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002280 return ret;
Chris Mason56bec292009-03-13 10:10:06 -04002281 }
Josef Bacikeb099672009-02-12 09:27:38 -05002282
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002283 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2284 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2285 ret = run_delayed_tree_ref(trans, root, node, extent_op,
2286 insert_reserved);
2287 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2288 node->type == BTRFS_SHARED_DATA_REF_KEY)
2289 ret = run_delayed_data_ref(trans, root, node, extent_op,
2290 insert_reserved);
2291 else
2292 BUG();
2293 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002294}
2295
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002296static inline struct btrfs_delayed_ref_node *
Chris Mason56bec292009-03-13 10:10:06 -04002297select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002298{
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002299 if (list_empty(&head->ref_list))
2300 return NULL;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002301
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002302 return list_entry(head->ref_list.next, struct btrfs_delayed_ref_node,
2303 list);
Chris Mason56bec292009-03-13 10:10:06 -04002304}
2305
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002306/*
2307 * Returns 0 on success or if called with an already aborted transaction.
2308 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2309 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002310static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2311 struct btrfs_root *root,
2312 unsigned long nr)
Chris Mason56bec292009-03-13 10:10:06 -04002313{
Chris Mason56bec292009-03-13 10:10:06 -04002314 struct btrfs_delayed_ref_root *delayed_refs;
2315 struct btrfs_delayed_ref_node *ref;
2316 struct btrfs_delayed_ref_head *locked_ref = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002317 struct btrfs_delayed_extent_op *extent_op;
Jan Schmidt097b8a72012-06-21 11:08:04 +02002318 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002319 ktime_t start = ktime_get();
Chris Mason56bec292009-03-13 10:10:06 -04002320 int ret;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002321 unsigned long count = 0;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002322 unsigned long actual_count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002323 int must_insert_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002324
2325 delayed_refs = &trans->transaction->delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002326 while (1) {
2327 if (!locked_ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002328 if (count >= nr)
Chris Mason56bec292009-03-13 10:10:06 -04002329 break;
Chris Mason56bec292009-03-13 10:10:06 -04002330
Josef Bacikd7df2c72014-01-23 09:21:38 -05002331 spin_lock(&delayed_refs->lock);
2332 locked_ref = btrfs_select_ref_head(trans);
2333 if (!locked_ref) {
2334 spin_unlock(&delayed_refs->lock);
2335 break;
2336 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002337
2338 /* grab the lock that says we are going to process
2339 * all the refs for this head */
2340 ret = btrfs_delayed_ref_lock(trans, locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002341 spin_unlock(&delayed_refs->lock);
Chris Masonc3e69d52009-03-13 10:17:05 -04002342 /*
2343 * we may have dropped the spin lock to get the head
2344 * mutex lock, and that might have given someone else
2345 * time to free the head. If that's true, it has been
2346 * removed from our list and we can move on.
2347 */
2348 if (ret == -EAGAIN) {
2349 locked_ref = NULL;
2350 count++;
2351 continue;
Chris Mason56bec292009-03-13 10:10:06 -04002352 }
2353 }
2354
Josef Bacikd7df2c72014-01-23 09:21:38 -05002355 spin_lock(&locked_ref->lock);
Josef Bacikae1e2062012-08-07 16:00:32 -04002356
2357 /*
Arne Jansend1270cd2011-09-13 15:16:43 +02002358 * locked_ref is the head node, so we have to go one
2359 * node back for any delayed ref updates
2360 */
2361 ref = select_delayed_ref(locked_ref);
2362
2363 if (ref && ref->seq &&
Jan Schmidt097b8a72012-06-21 11:08:04 +02002364 btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002365 spin_unlock(&locked_ref->lock);
Miao Xie093486c2012-12-19 08:10:10 +00002366 btrfs_delayed_ref_unlock(locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002367 spin_lock(&delayed_refs->lock);
2368 locked_ref->processing = 0;
Arne Jansend1270cd2011-09-13 15:16:43 +02002369 delayed_refs->num_heads_ready++;
2370 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002371 locked_ref = NULL;
Arne Jansend1270cd2011-09-13 15:16:43 +02002372 cond_resched();
Josef Bacik27a377d2014-02-07 13:57:59 -05002373 count++;
Arne Jansend1270cd2011-09-13 15:16:43 +02002374 continue;
2375 }
2376
2377 /*
Chris Mason56bec292009-03-13 10:10:06 -04002378 * record the must insert reserved flag before we
2379 * drop the spin lock.
2380 */
2381 must_insert_reserved = locked_ref->must_insert_reserved;
2382 locked_ref->must_insert_reserved = 0;
2383
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002384 extent_op = locked_ref->extent_op;
2385 locked_ref->extent_op = NULL;
2386
Chris Mason56bec292009-03-13 10:10:06 -04002387 if (!ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002388
2389
Chris Mason56bec292009-03-13 10:10:06 -04002390 /* All delayed refs have been processed, Go ahead
2391 * and send the head node to run_one_delayed_ref,
2392 * so that any accounting fixes can happen
2393 */
2394 ref = &locked_ref->node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002395
2396 if (extent_op && must_insert_reserved) {
Miao Xie78a61842012-11-21 02:21:28 +00002397 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002398 extent_op = NULL;
2399 }
2400
2401 if (extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002402 spin_unlock(&locked_ref->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002403 ret = run_delayed_extent_op(trans, root,
2404 ref, extent_op);
Miao Xie78a61842012-11-21 02:21:28 +00002405 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002406
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002407 if (ret) {
Josef Bacik857cc2f2013-10-07 15:21:08 -04002408 /*
2409 * Need to reset must_insert_reserved if
2410 * there was an error so the abort stuff
2411 * can cleanup the reserved space
2412 * properly.
2413 */
2414 if (must_insert_reserved)
2415 locked_ref->must_insert_reserved = 1;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002416 locked_ref->processing = 0;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002417 btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret);
Miao Xie093486c2012-12-19 08:10:10 +00002418 btrfs_delayed_ref_unlock(locked_ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002419 return ret;
2420 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002421 continue;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002422 }
Chris Mason56bec292009-03-13 10:10:06 -04002423
Josef Bacikd7df2c72014-01-23 09:21:38 -05002424 /*
2425 * Need to drop our head ref lock and re-aqcuire the
2426 * delayed ref lock and then re-check to make sure
2427 * nobody got added.
2428 */
2429 spin_unlock(&locked_ref->lock);
2430 spin_lock(&delayed_refs->lock);
2431 spin_lock(&locked_ref->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002432 if (!list_empty(&locked_ref->ref_list) ||
Josef Bacik573a0752014-03-27 19:41:34 -04002433 locked_ref->extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002434 spin_unlock(&locked_ref->lock);
2435 spin_unlock(&delayed_refs->lock);
2436 continue;
2437 }
2438 ref->in_tree = 0;
2439 delayed_refs->num_heads--;
Liu Boc46effa2013-10-14 12:59:45 +08002440 rb_erase(&locked_ref->href_node,
2441 &delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002442 spin_unlock(&delayed_refs->lock);
2443 } else {
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002444 actual_count++;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002445 ref->in_tree = 0;
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002446 list_del(&ref->list);
Liu Boc46effa2013-10-14 12:59:45 +08002447 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002448 atomic_dec(&delayed_refs->num_entries);
2449
Miao Xie093486c2012-12-19 08:10:10 +00002450 if (!btrfs_delayed_ref_is_head(ref)) {
Arne Jansen22cd2e72012-08-09 00:16:53 -06002451 /*
2452 * when we play the delayed ref, also correct the
2453 * ref_mod on head
2454 */
2455 switch (ref->action) {
2456 case BTRFS_ADD_DELAYED_REF:
2457 case BTRFS_ADD_DELAYED_EXTENT:
2458 locked_ref->node.ref_mod -= ref->ref_mod;
2459 break;
2460 case BTRFS_DROP_DELAYED_REF:
2461 locked_ref->node.ref_mod += ref->ref_mod;
2462 break;
2463 default:
2464 WARN_ON(1);
2465 }
2466 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002467 spin_unlock(&locked_ref->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002468
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002469 ret = run_one_delayed_ref(trans, root, ref, extent_op,
Chris Mason56bec292009-03-13 10:10:06 -04002470 must_insert_reserved);
Chris Mason56bec292009-03-13 10:10:06 -04002471
Miao Xie78a61842012-11-21 02:21:28 +00002472 btrfs_free_delayed_extent_op(extent_op);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002473 if (ret) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002474 locked_ref->processing = 0;
Miao Xie093486c2012-12-19 08:10:10 +00002475 btrfs_delayed_ref_unlock(locked_ref);
2476 btrfs_put_delayed_ref(ref);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002477 btrfs_debug(fs_info, "run_one_delayed_ref returned %d", ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002478 return ret;
2479 }
2480
Miao Xie093486c2012-12-19 08:10:10 +00002481 /*
2482 * If this node is a head, that means all the refs in this head
2483 * have been dealt with, and we will pick the next head to deal
2484 * with, so we must unlock the head and drop it from the cluster
2485 * list before we release it.
2486 */
2487 if (btrfs_delayed_ref_is_head(ref)) {
Josef Bacik12621332015-02-03 07:50:16 -08002488 if (locked_ref->is_data &&
2489 locked_ref->total_ref_mod < 0) {
2490 spin_lock(&delayed_refs->lock);
2491 delayed_refs->pending_csums -= ref->num_bytes;
2492 spin_unlock(&delayed_refs->lock);
2493 }
Miao Xie093486c2012-12-19 08:10:10 +00002494 btrfs_delayed_ref_unlock(locked_ref);
2495 locked_ref = NULL;
2496 }
2497 btrfs_put_delayed_ref(ref);
2498 count++;
Chris Mason1887be62009-03-13 10:11:24 -04002499 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002500 }
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002501
2502 /*
2503 * We don't want to include ref heads since we can have empty ref heads
2504 * and those will drastically skew our runtime down since we just do
2505 * accounting, no actual extent tree updates.
2506 */
2507 if (actual_count > 0) {
2508 u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start));
2509 u64 avg;
2510
2511 /*
2512 * We weigh the current average higher than our current runtime
2513 * to avoid large swings in the average.
2514 */
2515 spin_lock(&delayed_refs->lock);
2516 avg = fs_info->avg_delayed_ref_runtime * 3 + runtime;
David Sterbaf8c269d2015-01-16 17:21:12 +01002517 fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002518 spin_unlock(&delayed_refs->lock);
2519 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002520 return 0;
Chris Masonc3e69d52009-03-13 10:17:05 -04002521}
2522
Arne Jansen709c0482011-09-12 12:22:57 +02002523#ifdef SCRAMBLE_DELAYED_REFS
2524/*
2525 * Normally delayed refs get processed in ascending bytenr order. This
2526 * correlates in most cases to the order added. To expose dependencies on this
2527 * order, we start to process the tree in the middle instead of the beginning
2528 */
2529static u64 find_middle(struct rb_root *root)
2530{
2531 struct rb_node *n = root->rb_node;
2532 struct btrfs_delayed_ref_node *entry;
2533 int alt = 1;
2534 u64 middle;
2535 u64 first = 0, last = 0;
2536
2537 n = rb_first(root);
2538 if (n) {
2539 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2540 first = entry->bytenr;
2541 }
2542 n = rb_last(root);
2543 if (n) {
2544 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2545 last = entry->bytenr;
2546 }
2547 n = root->rb_node;
2548
2549 while (n) {
2550 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2551 WARN_ON(!entry->in_tree);
2552
2553 middle = entry->bytenr;
2554
2555 if (alt)
2556 n = n->rb_left;
2557 else
2558 n = n->rb_right;
2559
2560 alt = 1 - alt;
2561 }
2562 return middle;
2563}
2564#endif
2565
Josef Bacik1be41b72013-06-12 13:56:06 -04002566static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads)
2567{
2568 u64 num_bytes;
2569
2570 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2571 sizeof(struct btrfs_extent_inline_ref));
2572 if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2573 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2574
2575 /*
2576 * We don't ever fill up leaves all the way so multiply by 2 just to be
2577 * closer to what we're really going to want to ouse.
2578 */
David Sterbaf8c269d2015-01-16 17:21:12 +01002579 return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root));
Josef Bacik1be41b72013-06-12 13:56:06 -04002580}
2581
Josef Bacik12621332015-02-03 07:50:16 -08002582/*
2583 * Takes the number of bytes to be csumm'ed and figures out how many leaves it
2584 * would require to store the csums for that many bytes.
2585 */
Chris Mason28f75a02015-02-04 06:59:29 -08002586u64 btrfs_csum_bytes_to_leaves(struct btrfs_root *root, u64 csum_bytes)
Josef Bacik12621332015-02-03 07:50:16 -08002587{
2588 u64 csum_size;
2589 u64 num_csums_per_leaf;
2590 u64 num_csums;
2591
2592 csum_size = BTRFS_LEAF_DATA_SIZE(root) - sizeof(struct btrfs_item);
2593 num_csums_per_leaf = div64_u64(csum_size,
2594 (u64)btrfs_super_csum_size(root->fs_info->super_copy));
2595 num_csums = div64_u64(csum_bytes, root->sectorsize);
2596 num_csums += num_csums_per_leaf - 1;
2597 num_csums = div64_u64(num_csums, num_csums_per_leaf);
2598 return num_csums;
2599}
2600
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002601int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans,
Josef Bacik1be41b72013-06-12 13:56:06 -04002602 struct btrfs_root *root)
2603{
2604 struct btrfs_block_rsv *global_rsv;
2605 u64 num_heads = trans->transaction->delayed_refs.num_heads_ready;
Josef Bacik12621332015-02-03 07:50:16 -08002606 u64 csum_bytes = trans->transaction->delayed_refs.pending_csums;
Josef Bacikcb723e42015-02-18 08:06:57 -08002607 u64 num_dirty_bgs = trans->transaction->num_dirty_bgs;
2608 u64 num_bytes, num_dirty_bgs_bytes;
Josef Bacik1be41b72013-06-12 13:56:06 -04002609 int ret = 0;
2610
2611 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
2612 num_heads = heads_to_leaves(root, num_heads);
2613 if (num_heads > 1)
David Sterba707e8a02014-06-04 19:22:26 +02002614 num_bytes += (num_heads - 1) * root->nodesize;
Josef Bacik1be41b72013-06-12 13:56:06 -04002615 num_bytes <<= 1;
Chris Mason28f75a02015-02-04 06:59:29 -08002616 num_bytes += btrfs_csum_bytes_to_leaves(root, csum_bytes) * root->nodesize;
Josef Bacikcb723e42015-02-18 08:06:57 -08002617 num_dirty_bgs_bytes = btrfs_calc_trans_metadata_size(root,
2618 num_dirty_bgs);
Josef Bacik1be41b72013-06-12 13:56:06 -04002619 global_rsv = &root->fs_info->global_block_rsv;
2620
2621 /*
2622 * If we can't allocate any more chunks lets make sure we have _lots_ of
2623 * wiggle room since running delayed refs can create more delayed refs.
2624 */
Josef Bacikcb723e42015-02-18 08:06:57 -08002625 if (global_rsv->space_info->full) {
2626 num_dirty_bgs_bytes <<= 1;
Josef Bacik1be41b72013-06-12 13:56:06 -04002627 num_bytes <<= 1;
Josef Bacikcb723e42015-02-18 08:06:57 -08002628 }
Josef Bacik1be41b72013-06-12 13:56:06 -04002629
2630 spin_lock(&global_rsv->lock);
Josef Bacikcb723e42015-02-18 08:06:57 -08002631 if (global_rsv->reserved <= num_bytes + num_dirty_bgs_bytes)
Josef Bacik1be41b72013-06-12 13:56:06 -04002632 ret = 1;
2633 spin_unlock(&global_rsv->lock);
2634 return ret;
2635}
2636
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002637int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans,
2638 struct btrfs_root *root)
2639{
2640 struct btrfs_fs_info *fs_info = root->fs_info;
2641 u64 num_entries =
2642 atomic_read(&trans->transaction->delayed_refs.num_entries);
2643 u64 avg_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002644 u64 val;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002645
2646 smp_mb();
2647 avg_runtime = fs_info->avg_delayed_ref_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002648 val = num_entries * avg_runtime;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002649 if (num_entries * avg_runtime >= NSEC_PER_SEC)
2650 return 1;
Chris Masona79b7d42014-05-22 16:18:52 -07002651 if (val >= NSEC_PER_SEC / 2)
2652 return 2;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002653
2654 return btrfs_check_space_for_delayed_refs(trans, root);
2655}
2656
Chris Masona79b7d42014-05-22 16:18:52 -07002657struct async_delayed_refs {
2658 struct btrfs_root *root;
2659 int count;
2660 int error;
2661 int sync;
2662 struct completion wait;
2663 struct btrfs_work work;
2664};
2665
2666static void delayed_ref_async_start(struct btrfs_work *work)
2667{
2668 struct async_delayed_refs *async;
2669 struct btrfs_trans_handle *trans;
2670 int ret;
2671
2672 async = container_of(work, struct async_delayed_refs, work);
2673
2674 trans = btrfs_join_transaction(async->root);
2675 if (IS_ERR(trans)) {
2676 async->error = PTR_ERR(trans);
2677 goto done;
2678 }
2679
2680 /*
2681 * trans->sync means that when we call end_transaciton, we won't
2682 * wait on delayed refs
2683 */
2684 trans->sync = true;
2685 ret = btrfs_run_delayed_refs(trans, async->root, async->count);
2686 if (ret)
2687 async->error = ret;
2688
2689 ret = btrfs_end_transaction(trans, async->root);
2690 if (ret && !async->error)
2691 async->error = ret;
2692done:
2693 if (async->sync)
2694 complete(&async->wait);
2695 else
2696 kfree(async);
2697}
2698
2699int btrfs_async_run_delayed_refs(struct btrfs_root *root,
2700 unsigned long count, int wait)
2701{
2702 struct async_delayed_refs *async;
2703 int ret;
2704
2705 async = kmalloc(sizeof(*async), GFP_NOFS);
2706 if (!async)
2707 return -ENOMEM;
2708
2709 async->root = root->fs_info->tree_root;
2710 async->count = count;
2711 async->error = 0;
2712 if (wait)
2713 async->sync = 1;
2714 else
2715 async->sync = 0;
2716 init_completion(&async->wait);
2717
Liu Bo9e0af232014-08-15 23:36:53 +08002718 btrfs_init_work(&async->work, btrfs_extent_refs_helper,
2719 delayed_ref_async_start, NULL, NULL);
Chris Masona79b7d42014-05-22 16:18:52 -07002720
2721 btrfs_queue_work(root->fs_info->extent_workers, &async->work);
2722
2723 if (wait) {
2724 wait_for_completion(&async->wait);
2725 ret = async->error;
2726 kfree(async);
2727 return ret;
2728 }
2729 return 0;
2730}
2731
Chris Masonc3e69d52009-03-13 10:17:05 -04002732/*
2733 * this starts processing the delayed reference count updates and
2734 * extent insertions we have queued up so far. count can be
2735 * 0, which means to process everything in the tree at the start
2736 * of the run (but not newly added entries), or it can be some target
2737 * number you'd like to process.
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002738 *
2739 * Returns 0 on success or if called with an aborted transaction
2740 * Returns <0 on error and aborts the transaction
Chris Masonc3e69d52009-03-13 10:17:05 -04002741 */
2742int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2743 struct btrfs_root *root, unsigned long count)
2744{
2745 struct rb_node *node;
2746 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boc46effa2013-10-14 12:59:45 +08002747 struct btrfs_delayed_ref_head *head;
Chris Masonc3e69d52009-03-13 10:17:05 -04002748 int ret;
2749 int run_all = count == (unsigned long)-1;
Chris Masonc3e69d52009-03-13 10:17:05 -04002750
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002751 /* We'll clean this up in btrfs_cleanup_transaction */
2752 if (trans->aborted)
2753 return 0;
2754
Chris Masonc3e69d52009-03-13 10:17:05 -04002755 if (root == root->fs_info->extent_root)
2756 root = root->fs_info->tree_root;
2757
2758 delayed_refs = &trans->transaction->delayed_refs;
Liu Bo26455d32014-12-17 16:14:09 +08002759 if (count == 0)
Josef Bacikd7df2c72014-01-23 09:21:38 -05002760 count = atomic_read(&delayed_refs->num_entries) * 2;
Chris Masonbb721702013-01-29 18:44:12 -05002761
Chris Masonc3e69d52009-03-13 10:17:05 -04002762again:
Arne Jansen709c0482011-09-12 12:22:57 +02002763#ifdef SCRAMBLE_DELAYED_REFS
2764 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
2765#endif
Josef Bacikd7df2c72014-01-23 09:21:38 -05002766 ret = __btrfs_run_delayed_refs(trans, root, count);
2767 if (ret < 0) {
2768 btrfs_abort_transaction(trans, root, ret);
2769 return ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04002770 }
2771
Chris Mason56bec292009-03-13 10:10:06 -04002772 if (run_all) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002773 if (!list_empty(&trans->new_bgs))
Josef Bacikea658ba2012-09-11 16:57:25 -04002774 btrfs_create_pending_block_groups(trans, root);
Josef Bacikea658ba2012-09-11 16:57:25 -04002775
Josef Bacikd7df2c72014-01-23 09:21:38 -05002776 spin_lock(&delayed_refs->lock);
Liu Boc46effa2013-10-14 12:59:45 +08002777 node = rb_first(&delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002778 if (!node) {
2779 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002780 goto out;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002781 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002782 count = (unsigned long)-1;
Chris Mason56bec292009-03-13 10:10:06 -04002783
2784 while (node) {
Liu Boc46effa2013-10-14 12:59:45 +08002785 head = rb_entry(node, struct btrfs_delayed_ref_head,
2786 href_node);
2787 if (btrfs_delayed_ref_is_head(&head->node)) {
2788 struct btrfs_delayed_ref_node *ref;
Chris Mason56bec292009-03-13 10:10:06 -04002789
Liu Boc46effa2013-10-14 12:59:45 +08002790 ref = &head->node;
Chris Mason56bec292009-03-13 10:10:06 -04002791 atomic_inc(&ref->refs);
2792
2793 spin_unlock(&delayed_refs->lock);
David Sterba8cc33e52011-05-02 15:29:25 +02002794 /*
2795 * Mutex was contended, block until it's
2796 * released and try again
2797 */
Chris Mason56bec292009-03-13 10:10:06 -04002798 mutex_lock(&head->mutex);
2799 mutex_unlock(&head->mutex);
2800
2801 btrfs_put_delayed_ref(ref);
Chris Mason1887be62009-03-13 10:11:24 -04002802 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002803 goto again;
Liu Boc46effa2013-10-14 12:59:45 +08002804 } else {
2805 WARN_ON(1);
Chris Mason56bec292009-03-13 10:10:06 -04002806 }
2807 node = rb_next(node);
2808 }
2809 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002810 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002811 goto again;
2812 }
Chris Mason54aa1f42007-06-22 14:16:25 -04002813out:
Jan Schmidtedf39272012-06-28 18:04:55 +02002814 assert_qgroups_uptodate(trans);
Chris Masona28ec192007-03-06 20:08:01 -05002815 return 0;
2816}
2817
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002818int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
2819 struct btrfs_root *root,
2820 u64 bytenr, u64 num_bytes, u64 flags,
Josef Bacikb1c79e02013-05-09 13:49:30 -04002821 int level, int is_data)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002822{
2823 struct btrfs_delayed_extent_op *extent_op;
2824 int ret;
2825
Miao Xie78a61842012-11-21 02:21:28 +00002826 extent_op = btrfs_alloc_delayed_extent_op();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002827 if (!extent_op)
2828 return -ENOMEM;
2829
2830 extent_op->flags_to_set = flags;
2831 extent_op->update_flags = 1;
2832 extent_op->update_key = 0;
2833 extent_op->is_data = is_data ? 1 : 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002834 extent_op->level = level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002835
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002836 ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr,
2837 num_bytes, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002838 if (ret)
Miao Xie78a61842012-11-21 02:21:28 +00002839 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002840 return ret;
2841}
2842
2843static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
2844 struct btrfs_root *root,
2845 struct btrfs_path *path,
2846 u64 objectid, u64 offset, u64 bytenr)
2847{
2848 struct btrfs_delayed_ref_head *head;
2849 struct btrfs_delayed_ref_node *ref;
2850 struct btrfs_delayed_data_ref *data_ref;
2851 struct btrfs_delayed_ref_root *delayed_refs;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002852 int ret = 0;
2853
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002854 delayed_refs = &trans->transaction->delayed_refs;
2855 spin_lock(&delayed_refs->lock);
2856 head = btrfs_find_delayed_ref_head(trans, bytenr);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002857 if (!head) {
2858 spin_unlock(&delayed_refs->lock);
2859 return 0;
2860 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002861
2862 if (!mutex_trylock(&head->mutex)) {
2863 atomic_inc(&head->node.refs);
2864 spin_unlock(&delayed_refs->lock);
2865
David Sterbab3b4aa72011-04-21 01:20:15 +02002866 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002867
David Sterba8cc33e52011-05-02 15:29:25 +02002868 /*
2869 * Mutex was contended, block until it's released and let
2870 * caller try again
2871 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002872 mutex_lock(&head->mutex);
2873 mutex_unlock(&head->mutex);
2874 btrfs_put_delayed_ref(&head->node);
2875 return -EAGAIN;
2876 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002877 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002878
2879 spin_lock(&head->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002880 list_for_each_entry(ref, &head->ref_list, list) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002881 /* If it's a shared ref we know a cross reference exists */
2882 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) {
2883 ret = 1;
2884 break;
2885 }
2886
2887 data_ref = btrfs_delayed_node_to_data_ref(ref);
2888
2889 /*
2890 * If our ref doesn't match the one we're currently looking at
2891 * then we have a cross reference.
2892 */
2893 if (data_ref->root != root->root_key.objectid ||
2894 data_ref->objectid != objectid ||
2895 data_ref->offset != offset) {
2896 ret = 1;
2897 break;
2898 }
2899 }
2900 spin_unlock(&head->lock);
2901 mutex_unlock(&head->mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002902 return ret;
2903}
2904
2905static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
2906 struct btrfs_root *root,
2907 struct btrfs_path *path,
2908 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05002909{
2910 struct btrfs_root *extent_root = root->fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04002911 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002912 struct btrfs_extent_data_ref *ref;
2913 struct btrfs_extent_inline_ref *iref;
2914 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05002915 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002916 u32 item_size;
Yan Zhengf321e492008-07-30 09:26:11 -04002917 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05002918
Chris Masonbe20aa92007-12-17 20:14:01 -05002919 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04002920 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04002921 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05002922
Chris Masonbe20aa92007-12-17 20:14:01 -05002923 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2924 if (ret < 0)
2925 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002926 BUG_ON(ret == 0); /* Corruption */
Yan Zheng80ff3852008-10-30 14:20:02 -04002927
2928 ret = -ENOENT;
2929 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04002930 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002931
Zheng Yan31840ae2008-09-23 13:14:14 -04002932 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04002933 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002934 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05002935
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002936 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05002937 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002938
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002939 ret = 1;
2940 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2941#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2942 if (item_size < sizeof(*ei)) {
2943 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
2944 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002945 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002946#endif
2947 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2948
2949 if (item_size != sizeof(*ei) +
2950 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
2951 goto out;
2952
2953 if (btrfs_extent_generation(leaf, ei) <=
2954 btrfs_root_last_snapshot(&root->root_item))
2955 goto out;
2956
2957 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
2958 if (btrfs_extent_inline_ref_type(leaf, iref) !=
2959 BTRFS_EXTENT_DATA_REF_KEY)
2960 goto out;
2961
2962 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
2963 if (btrfs_extent_refs(leaf, ei) !=
2964 btrfs_extent_data_ref_count(leaf, ref) ||
2965 btrfs_extent_data_ref_root(leaf, ref) !=
2966 root->root_key.objectid ||
2967 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
2968 btrfs_extent_data_ref_offset(leaf, ref) != offset)
2969 goto out;
2970
Yan Zhengf321e492008-07-30 09:26:11 -04002971 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05002972out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002973 return ret;
2974}
2975
2976int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
2977 struct btrfs_root *root,
2978 u64 objectid, u64 offset, u64 bytenr)
2979{
2980 struct btrfs_path *path;
2981 int ret;
2982 int ret2;
2983
2984 path = btrfs_alloc_path();
2985 if (!path)
2986 return -ENOENT;
2987
2988 do {
2989 ret = check_committed_ref(trans, root, path, objectid,
2990 offset, bytenr);
2991 if (ret && ret != -ENOENT)
2992 goto out;
2993
2994 ret2 = check_delayed_ref(trans, root, path, objectid,
2995 offset, bytenr);
2996 } while (ret2 == -EAGAIN);
2997
2998 if (ret2 && ret2 != -ENOENT) {
2999 ret = ret2;
3000 goto out;
3001 }
3002
3003 if (ret != -ENOENT || ret2 != -ENOENT)
3004 ret = 0;
3005out:
Yan Zhengf321e492008-07-30 09:26:11 -04003006 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003007 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3008 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04003009 return ret;
3010}
3011
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003012static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05003013 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003014 struct extent_buffer *buf,
Josef Bacike339a6b2014-07-02 10:54:25 -07003015 int full_backref, int inc)
Zheng Yan31840ae2008-09-23 13:14:14 -04003016{
3017 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003018 u64 num_bytes;
3019 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003020 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04003021 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04003022 struct btrfs_key key;
3023 struct btrfs_file_extent_item *fi;
3024 int i;
3025 int level;
3026 int ret = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04003027 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003028 u64, u64, u64, u64, u64, u64, int);
Zheng Yan31840ae2008-09-23 13:14:14 -04003029
David Sterbafccb84c2014-09-29 23:53:21 +02003030
3031 if (btrfs_test_is_dummy_root(root))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04003032 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02003033
Zheng Yan31840ae2008-09-23 13:14:14 -04003034 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04003035 nritems = btrfs_header_nritems(buf);
3036 level = btrfs_header_level(buf);
3037
Miao Xie27cdeb72014-04-02 19:51:05 +08003038 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003039 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05003040
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003041 if (inc)
3042 process_func = btrfs_inc_extent_ref;
3043 else
3044 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003045
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003046 if (full_backref)
3047 parent = buf->start;
3048 else
3049 parent = 0;
3050
Zheng Yan31840ae2008-09-23 13:14:14 -04003051 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04003052 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003053 btrfs_item_key_to_cpu(buf, &key, i);
David Sterba962a2982014-06-04 18:41:45 +02003054 if (key.type != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04003055 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003056 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04003057 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003058 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04003059 BTRFS_FILE_EXTENT_INLINE)
3060 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003061 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3062 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04003063 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003064
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003065 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3066 key.offset -= btrfs_file_extent_offset(buf, fi);
3067 ret = process_func(trans, root, bytenr, num_bytes,
3068 parent, ref_root, key.objectid,
Josef Bacike339a6b2014-07-02 10:54:25 -07003069 key.offset, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003070 if (ret)
3071 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05003072 } else {
3073 bytenr = btrfs_node_blockptr(buf, i);
David Sterba707e8a02014-06-04 19:22:26 +02003074 num_bytes = root->nodesize;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003075 ret = process_func(trans, root, bytenr, num_bytes,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003076 parent, ref_root, level - 1, 0,
Josef Bacike339a6b2014-07-02 10:54:25 -07003077 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003078 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04003079 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04003080 }
3081 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003082 return 0;
3083fail:
Chris Mason54aa1f42007-06-22 14:16:25 -04003084 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05003085}
3086
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003087int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003088 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04003089{
Josef Bacike339a6b2014-07-02 10:54:25 -07003090 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003091}
Zheng Yan31840ae2008-09-23 13:14:14 -04003092
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003093int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003094 struct extent_buffer *buf, int full_backref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003095{
Josef Bacike339a6b2014-07-02 10:54:25 -07003096 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003097}
3098
Chris Mason9078a3e2007-04-26 16:46:15 -04003099static int write_one_cache_group(struct btrfs_trans_handle *trans,
3100 struct btrfs_root *root,
3101 struct btrfs_path *path,
3102 struct btrfs_block_group_cache *cache)
3103{
3104 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003105 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003106 unsigned long bi;
3107 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04003108
Chris Mason9078a3e2007-04-26 16:46:15 -04003109 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003110 if (ret) {
3111 if (ret > 0)
3112 ret = -ENOENT;
Chris Mason54aa1f42007-06-22 14:16:25 -04003113 goto fail;
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003114 }
Chris Mason5f39d392007-10-15 16:14:19 -04003115
3116 leaf = path->nodes[0];
3117 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3118 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3119 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -04003120fail:
Filipe Manana24b89d02015-04-25 18:31:05 +01003121 btrfs_release_path(path);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003122 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003123
3124}
3125
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003126static struct btrfs_block_group_cache *
3127next_block_group(struct btrfs_root *root,
3128 struct btrfs_block_group_cache *cache)
3129{
3130 struct rb_node *node;
Filipe Manana292cbd52014-11-26 15:28:50 +00003131
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003132 spin_lock(&root->fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003133
3134 /* If our block group was removed, we need a full search. */
3135 if (RB_EMPTY_NODE(&cache->cache_node)) {
3136 const u64 next_bytenr = cache->key.objectid + cache->key.offset;
3137
3138 spin_unlock(&root->fs_info->block_group_cache_lock);
3139 btrfs_put_block_group(cache);
3140 cache = btrfs_lookup_first_block_group(root->fs_info,
3141 next_bytenr);
3142 return cache;
3143 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003144 node = rb_next(&cache->cache_node);
3145 btrfs_put_block_group(cache);
3146 if (node) {
3147 cache = rb_entry(node, struct btrfs_block_group_cache,
3148 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00003149 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003150 } else
3151 cache = NULL;
3152 spin_unlock(&root->fs_info->block_group_cache_lock);
3153 return cache;
3154}
3155
Josef Bacik0af3d002010-06-21 14:48:16 -04003156static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3157 struct btrfs_trans_handle *trans,
3158 struct btrfs_path *path)
3159{
3160 struct btrfs_root *root = block_group->fs_info->tree_root;
3161 struct inode *inode = NULL;
3162 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05003163 int dcs = BTRFS_DC_ERROR;
David Sterbaf8c269d2015-01-16 17:21:12 +01003164 u64 num_pages = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003165 int retries = 0;
3166 int ret = 0;
3167
3168 /*
3169 * If this block group is smaller than 100 megs don't bother caching the
3170 * block group.
3171 */
3172 if (block_group->key.offset < (100 * 1024 * 1024)) {
3173 spin_lock(&block_group->lock);
3174 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3175 spin_unlock(&block_group->lock);
3176 return 0;
3177 }
3178
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003179 if (trans->aborted)
3180 return 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003181again:
3182 inode = lookup_free_space_inode(root, block_group, path);
3183 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3184 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02003185 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003186 goto out;
3187 }
3188
3189 if (IS_ERR(inode)) {
3190 BUG_ON(retries);
3191 retries++;
3192
3193 if (block_group->ro)
3194 goto out_free;
3195
3196 ret = create_free_space_inode(root, trans, block_group, path);
3197 if (ret)
3198 goto out_free;
3199 goto again;
3200 }
3201
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003202 /* We've already setup this transaction, go ahead and exit */
3203 if (block_group->cache_generation == trans->transid &&
3204 i_size_read(inode)) {
3205 dcs = BTRFS_DC_SETUP;
3206 goto out_put;
3207 }
3208
Josef Bacik0af3d002010-06-21 14:48:16 -04003209 /*
3210 * We want to set the generation to 0, that way if anything goes wrong
3211 * from here on out we know not to trust this cache when we load up next
3212 * time.
3213 */
3214 BTRFS_I(inode)->generation = 0;
3215 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003216 if (ret) {
3217 /*
3218 * So theoretically we could recover from this, simply set the
3219 * super cache generation to 0 so we know to invalidate the
3220 * cache, but then we'd have to keep track of the block groups
3221 * that fail this way so we know we _have_ to reset this cache
3222 * before the next commit or risk reading stale cache. So to
3223 * limit our exposure to horrible edge cases lets just abort the
3224 * transaction, this only happens in really bad situations
3225 * anyway.
3226 */
3227 btrfs_abort_transaction(trans, root, ret);
3228 goto out_put;
3229 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003230 WARN_ON(ret);
3231
3232 if (i_size_read(inode) > 0) {
Miao Xie7b61cd92013-05-13 13:55:09 +00003233 ret = btrfs_check_trunc_cache_free_space(root,
3234 &root->fs_info->global_block_rsv);
3235 if (ret)
3236 goto out_put;
3237
Chris Mason1bbc6212015-04-06 12:46:08 -07003238 ret = btrfs_truncate_free_space_cache(root, trans, NULL, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003239 if (ret)
3240 goto out_put;
3241 }
3242
3243 spin_lock(&block_group->lock);
Liu Bocf7c1ef2012-07-06 03:31:34 -06003244 if (block_group->cached != BTRFS_CACHE_FINISHED ||
Chris Masone4c88f02015-04-18 05:22:48 -07003245 !btrfs_test_opt(root, SPACE_CACHE)) {
Liu Bocf7c1ef2012-07-06 03:31:34 -06003246 /*
3247 * don't bother trying to write stuff out _if_
3248 * a) we're not cached,
3249 * b) we're with nospace_cache mount option.
3250 */
Josef Bacik2b209822010-12-03 13:17:53 -05003251 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04003252 spin_unlock(&block_group->lock);
3253 goto out_put;
3254 }
3255 spin_unlock(&block_group->lock);
3256
Josef Bacik6fc823b2012-08-06 13:46:38 -06003257 /*
3258 * Try to preallocate enough space based on how big the block group is.
3259 * Keep in mind this has to include any pinned space which could end up
3260 * taking up quite a bit since it's not folded into the other space
3261 * cache.
3262 */
David Sterbaf8c269d2015-01-16 17:21:12 +01003263 num_pages = div_u64(block_group->key.offset, 256 * 1024 * 1024);
Josef Bacik0af3d002010-06-21 14:48:16 -04003264 if (!num_pages)
3265 num_pages = 1;
3266
Josef Bacik0af3d002010-06-21 14:48:16 -04003267 num_pages *= 16;
3268 num_pages *= PAGE_CACHE_SIZE;
3269
Dongsheng Yange2d1f922015-02-06 10:26:52 -05003270 ret = btrfs_check_data_free_space(inode, num_pages, num_pages);
Josef Bacik0af3d002010-06-21 14:48:16 -04003271 if (ret)
3272 goto out_put;
3273
3274 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3275 num_pages, num_pages,
3276 &alloc_hint);
Josef Bacik2b209822010-12-03 13:17:53 -05003277 if (!ret)
3278 dcs = BTRFS_DC_SETUP;
Josef Bacik0af3d002010-06-21 14:48:16 -04003279 btrfs_free_reserved_data_space(inode, num_pages);
Josef Bacikc09544e2011-08-30 10:19:10 -04003280
Josef Bacik0af3d002010-06-21 14:48:16 -04003281out_put:
3282 iput(inode);
3283out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02003284 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003285out:
3286 spin_lock(&block_group->lock);
Josef Bacike65cbb92011-12-13 16:04:54 -05003287 if (!ret && dcs == BTRFS_DC_SETUP)
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003288 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05003289 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04003290 spin_unlock(&block_group->lock);
3291
3292 return ret;
3293}
3294
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003295int btrfs_setup_space_cache(struct btrfs_trans_handle *trans,
3296 struct btrfs_root *root)
3297{
3298 struct btrfs_block_group_cache *cache, *tmp;
3299 struct btrfs_transaction *cur_trans = trans->transaction;
3300 struct btrfs_path *path;
3301
3302 if (list_empty(&cur_trans->dirty_bgs) ||
3303 !btrfs_test_opt(root, SPACE_CACHE))
3304 return 0;
3305
3306 path = btrfs_alloc_path();
3307 if (!path)
3308 return -ENOMEM;
3309
3310 /* Could add new block groups, use _safe just in case */
3311 list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs,
3312 dirty_list) {
3313 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3314 cache_save_setup(cache, trans, path);
3315 }
3316
3317 btrfs_free_path(path);
3318 return 0;
3319}
3320
Chris Mason1bbc6212015-04-06 12:46:08 -07003321/*
3322 * transaction commit does final block group cache writeback during a
3323 * critical section where nothing is allowed to change the FS. This is
3324 * required in order for the cache to actually match the block group,
3325 * but can introduce a lot of latency into the commit.
3326 *
3327 * So, btrfs_start_dirty_block_groups is here to kick off block group
3328 * cache IO. There's a chance we'll have to redo some of it if the
3329 * block group changes again during the commit, but it greatly reduces
3330 * the commit latency by getting rid of the easy block groups while
3331 * we're still allowing others to join the commit.
3332 */
3333int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans,
3334 struct btrfs_root *root)
3335{
3336 struct btrfs_block_group_cache *cache;
3337 struct btrfs_transaction *cur_trans = trans->transaction;
3338 int ret = 0;
3339 int should_put;
3340 struct btrfs_path *path = NULL;
3341 LIST_HEAD(dirty);
3342 struct list_head *io = &cur_trans->io_bgs;
3343 int num_started = 0;
3344 int loops = 0;
3345
3346 spin_lock(&cur_trans->dirty_bgs_lock);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003347 if (list_empty(&cur_trans->dirty_bgs)) {
3348 spin_unlock(&cur_trans->dirty_bgs_lock);
3349 return 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003350 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003351 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Chris Mason1bbc6212015-04-06 12:46:08 -07003352 spin_unlock(&cur_trans->dirty_bgs_lock);
3353
3354again:
Chris Mason1bbc6212015-04-06 12:46:08 -07003355 /*
3356 * make sure all the block groups on our dirty list actually
3357 * exist
3358 */
3359 btrfs_create_pending_block_groups(trans, root);
3360
3361 if (!path) {
3362 path = btrfs_alloc_path();
3363 if (!path)
3364 return -ENOMEM;
3365 }
3366
Filipe Mananab58d1a92015-04-25 18:29:16 +01003367 /*
3368 * cache_write_mutex is here only to save us from balance or automatic
3369 * removal of empty block groups deleting this block group while we are
3370 * writing out the cache
3371 */
3372 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003373 while (!list_empty(&dirty)) {
3374 cache = list_first_entry(&dirty,
3375 struct btrfs_block_group_cache,
3376 dirty_list);
Chris Mason1bbc6212015-04-06 12:46:08 -07003377 /*
3378 * this can happen if something re-dirties a block
3379 * group that is already under IO. Just wait for it to
3380 * finish and then do it all again
3381 */
3382 if (!list_empty(&cache->io_list)) {
3383 list_del_init(&cache->io_list);
3384 btrfs_wait_cache_io(root, trans, cache,
3385 &cache->io_ctl, path,
3386 cache->key.objectid);
3387 btrfs_put_block_group(cache);
3388 }
3389
3390
3391 /*
3392 * btrfs_wait_cache_io uses the cache->dirty_list to decide
3393 * if it should update the cache_state. Don't delete
3394 * until after we wait.
3395 *
3396 * Since we're not running in the commit critical section
3397 * we need the dirty_bgs_lock to protect from update_block_group
3398 */
3399 spin_lock(&cur_trans->dirty_bgs_lock);
3400 list_del_init(&cache->dirty_list);
3401 spin_unlock(&cur_trans->dirty_bgs_lock);
3402
3403 should_put = 1;
3404
3405 cache_save_setup(cache, trans, path);
3406
3407 if (cache->disk_cache_state == BTRFS_DC_SETUP) {
3408 cache->io_ctl.inode = NULL;
3409 ret = btrfs_write_out_cache(root, trans, cache, path);
3410 if (ret == 0 && cache->io_ctl.inode) {
3411 num_started++;
3412 should_put = 0;
3413
3414 /*
3415 * the cache_write_mutex is protecting
3416 * the io_list
3417 */
3418 list_add_tail(&cache->io_list, io);
3419 } else {
3420 /*
3421 * if we failed to write the cache, the
3422 * generation will be bad and life goes on
3423 */
3424 ret = 0;
3425 }
3426 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003427 if (!ret) {
Chris Mason1bbc6212015-04-06 12:46:08 -07003428 ret = write_one_cache_group(trans, root, path, cache);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003429 /*
3430 * Our block group might still be attached to the list
3431 * of new block groups in the transaction handle of some
3432 * other task (struct btrfs_trans_handle->new_bgs). This
3433 * means its block group item isn't yet in the extent
3434 * tree. If this happens ignore the error, as we will
3435 * try again later in the critical section of the
3436 * transaction commit.
3437 */
3438 if (ret == -ENOENT) {
3439 ret = 0;
3440 spin_lock(&cur_trans->dirty_bgs_lock);
3441 if (list_empty(&cache->dirty_list)) {
3442 list_add_tail(&cache->dirty_list,
3443 &cur_trans->dirty_bgs);
3444 btrfs_get_block_group(cache);
3445 }
3446 spin_unlock(&cur_trans->dirty_bgs_lock);
3447 } else if (ret) {
3448 btrfs_abort_transaction(trans, root, ret);
3449 }
3450 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003451
3452 /* if its not on the io list, we need to put the block group */
3453 if (should_put)
3454 btrfs_put_block_group(cache);
3455
3456 if (ret)
3457 break;
Filipe Mananab58d1a92015-04-25 18:29:16 +01003458
3459 /*
3460 * Avoid blocking other tasks for too long. It might even save
3461 * us from writing caches for block groups that are going to be
3462 * removed.
3463 */
3464 mutex_unlock(&trans->transaction->cache_write_mutex);
3465 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003466 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003467 mutex_unlock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003468
3469 /*
3470 * go through delayed refs for all the stuff we've just kicked off
3471 * and then loop back (just once)
3472 */
3473 ret = btrfs_run_delayed_refs(trans, root, 0);
3474 if (!ret && loops == 0) {
3475 loops++;
3476 spin_lock(&cur_trans->dirty_bgs_lock);
3477 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003478 /*
3479 * dirty_bgs_lock protects us from concurrent block group
3480 * deletes too (not just cache_write_mutex).
3481 */
3482 if (!list_empty(&dirty)) {
3483 spin_unlock(&cur_trans->dirty_bgs_lock);
3484 goto again;
3485 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003486 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Mason1bbc6212015-04-06 12:46:08 -07003487 }
3488
3489 btrfs_free_path(path);
3490 return ret;
3491}
3492
Chris Mason96b51792007-10-15 16:15:19 -04003493int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
3494 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04003495{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003496 struct btrfs_block_group_cache *cache;
Josef Bacikce93ec52014-11-17 15:45:48 -05003497 struct btrfs_transaction *cur_trans = trans->transaction;
3498 int ret = 0;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003499 int should_put;
Chris Mason9078a3e2007-04-26 16:46:15 -04003500 struct btrfs_path *path;
Chris Mason1bbc6212015-04-06 12:46:08 -07003501 struct list_head *io = &cur_trans->io_bgs;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003502 int num_started = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003503
3504 path = btrfs_alloc_path();
3505 if (!path)
3506 return -ENOMEM;
3507
Josef Bacikce93ec52014-11-17 15:45:48 -05003508 /*
3509 * We don't need the lock here since we are protected by the transaction
3510 * commit. We want to do the cache_save_setup first and then run the
3511 * delayed refs to make sure we have the best chance at doing this all
3512 * in one shot.
3513 */
3514 while (!list_empty(&cur_trans->dirty_bgs)) {
3515 cache = list_first_entry(&cur_trans->dirty_bgs,
3516 struct btrfs_block_group_cache,
3517 dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003518
3519 /*
3520 * this can happen if cache_save_setup re-dirties a block
3521 * group that is already under IO. Just wait for it to
3522 * finish and then do it all again
3523 */
3524 if (!list_empty(&cache->io_list)) {
3525 list_del_init(&cache->io_list);
3526 btrfs_wait_cache_io(root, trans, cache,
3527 &cache->io_ctl, path,
3528 cache->key.objectid);
3529 btrfs_put_block_group(cache);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003530 }
3531
Chris Mason1bbc6212015-04-06 12:46:08 -07003532 /*
3533 * don't remove from the dirty list until after we've waited
3534 * on any pending IO
3535 */
Josef Bacikce93ec52014-11-17 15:45:48 -05003536 list_del_init(&cache->dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003537 should_put = 1;
3538
Chris Mason1bbc6212015-04-06 12:46:08 -07003539 cache_save_setup(cache, trans, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003540
Josef Bacikce93ec52014-11-17 15:45:48 -05003541 if (!ret)
Chris Masonc9dc4c62015-04-04 17:14:42 -07003542 ret = btrfs_run_delayed_refs(trans, root, (unsigned long) -1);
3543
3544 if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) {
3545 cache->io_ctl.inode = NULL;
3546 ret = btrfs_write_out_cache(root, trans, cache, path);
3547 if (ret == 0 && cache->io_ctl.inode) {
3548 num_started++;
3549 should_put = 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003550 list_add_tail(&cache->io_list, io);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003551 } else {
3552 /*
3553 * if we failed to write the cache, the
3554 * generation will be bad and life goes on
3555 */
3556 ret = 0;
3557 }
3558 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003559 if (!ret) {
Josef Bacikce93ec52014-11-17 15:45:48 -05003560 ret = write_one_cache_group(trans, root, path, cache);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003561 if (ret)
3562 btrfs_abort_transaction(trans, root, ret);
3563 }
Chris Masonc9dc4c62015-04-04 17:14:42 -07003564
3565 /* if its not on the io list, we need to put the block group */
3566 if (should_put)
3567 btrfs_put_block_group(cache);
3568 }
3569
Chris Mason1bbc6212015-04-06 12:46:08 -07003570 while (!list_empty(io)) {
3571 cache = list_first_entry(io, struct btrfs_block_group_cache,
Chris Masonc9dc4c62015-04-04 17:14:42 -07003572 io_list);
3573 list_del_init(&cache->io_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003574 btrfs_wait_cache_io(root, trans, cache,
3575 &cache->io_ctl, path, cache->key.objectid);
Josef Bacik0af3d002010-06-21 14:48:16 -04003576 btrfs_put_block_group(cache);
3577 }
3578
Chris Mason9078a3e2007-04-26 16:46:15 -04003579 btrfs_free_path(path);
Josef Bacikce93ec52014-11-17 15:45:48 -05003580 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003581}
3582
Yan Zhengd2fb3432008-12-11 16:30:39 -05003583int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
3584{
3585 struct btrfs_block_group_cache *block_group;
3586 int readonly = 0;
3587
3588 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
3589 if (!block_group || block_group->ro)
3590 readonly = 1;
3591 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04003592 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003593 return readonly;
3594}
3595
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003596static const char *alloc_name(u64 flags)
3597{
3598 switch (flags) {
3599 case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA:
3600 return "mixed";
3601 case BTRFS_BLOCK_GROUP_METADATA:
3602 return "metadata";
3603 case BTRFS_BLOCK_GROUP_DATA:
3604 return "data";
3605 case BTRFS_BLOCK_GROUP_SYSTEM:
3606 return "system";
3607 default:
3608 WARN_ON(1);
3609 return "invalid-combination";
3610 };
3611}
3612
Chris Mason593060d2008-03-25 16:50:33 -04003613static int update_space_info(struct btrfs_fs_info *info, u64 flags,
3614 u64 total_bytes, u64 bytes_used,
3615 struct btrfs_space_info **space_info)
3616{
3617 struct btrfs_space_info *found;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003618 int i;
3619 int factor;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003620 int ret;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003621
3622 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
3623 BTRFS_BLOCK_GROUP_RAID10))
3624 factor = 2;
3625 else
3626 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04003627
3628 found = __find_space_info(info, flags);
3629 if (found) {
Josef Bacik25179202008-10-29 14:49:05 -04003630 spin_lock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003631 found->total_bytes += total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003632 found->disk_total += total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003633 found->bytes_used += bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003634 found->disk_used += bytes_used * factor;
Filipe Manana2e6e5182015-05-12 00:28:11 +01003635 if (total_bytes > 0)
3636 found->full = 0;
Josef Bacik25179202008-10-29 14:49:05 -04003637 spin_unlock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003638 *space_info = found;
3639 return 0;
3640 }
Yan Zhengc146afa2008-11-12 14:34:12 -05003641 found = kzalloc(sizeof(*found), GFP_NOFS);
Chris Mason593060d2008-03-25 16:50:33 -04003642 if (!found)
3643 return -ENOMEM;
3644
Tejun Heo908c7f12014-09-08 09:51:29 +09003645 ret = percpu_counter_init(&found->total_bytes_pinned, 0, GFP_KERNEL);
Josef Bacikb150a4f2013-06-19 15:00:04 -04003646 if (ret) {
3647 kfree(found);
3648 return ret;
3649 }
3650
Jeff Mahoneyc1895442014-05-27 12:59:57 -04003651 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
Yan, Zhengb742bb82010-05-16 10:46:24 -04003652 INIT_LIST_HEAD(&found->block_groups[i]);
Josef Bacik80eb2342008-10-29 14:49:05 -04003653 init_rwsem(&found->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003654 spin_lock_init(&found->lock);
Ilya Dryomov52ba6922012-01-16 22:04:47 +02003655 found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
Chris Mason593060d2008-03-25 16:50:33 -04003656 found->total_bytes = total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003657 found->disk_total = total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003658 found->bytes_used = bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003659 found->disk_used = bytes_used * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003660 found->bytes_pinned = 0;
Zheng Yane8569812008-09-26 10:05:48 -04003661 found->bytes_reserved = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003662 found->bytes_readonly = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003663 found->bytes_may_use = 0;
Filipe Manana2e6e5182015-05-12 00:28:11 +01003664 if (total_bytes > 0)
3665 found->full = 0;
3666 else
3667 found->full = 1;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003668 found->force_alloc = CHUNK_ALLOC_NO_FORCE;
Josef Bacik6d741192011-04-11 20:20:11 -04003669 found->chunk_alloc = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003670 found->flush = 0;
3671 init_waitqueue_head(&found->wait);
Josef Bacik633c0aa2014-10-31 09:49:34 -04003672 INIT_LIST_HEAD(&found->ro_bgs);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003673
3674 ret = kobject_init_and_add(&found->kobj, &space_info_ktype,
3675 info->space_info_kobj, "%s",
3676 alloc_name(found->flags));
3677 if (ret) {
3678 kfree(found);
3679 return ret;
3680 }
3681
Chris Mason593060d2008-03-25 16:50:33 -04003682 *space_info = found;
Chris Mason4184ea72009-03-10 12:39:20 -04003683 list_add_rcu(&found->list, &info->space_info);
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003684 if (flags & BTRFS_BLOCK_GROUP_DATA)
3685 info->data_sinfo = found;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003686
3687 return ret;
Chris Mason593060d2008-03-25 16:50:33 -04003688}
3689
Chris Mason8790d502008-04-03 16:29:03 -04003690static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3691{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003692 u64 extra_flags = chunk_to_extended(flags) &
3693 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003694
Miao Xiede98ced2013-01-29 10:13:12 +00003695 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003696 if (flags & BTRFS_BLOCK_GROUP_DATA)
3697 fs_info->avail_data_alloc_bits |= extra_flags;
3698 if (flags & BTRFS_BLOCK_GROUP_METADATA)
3699 fs_info->avail_metadata_alloc_bits |= extra_flags;
3700 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3701 fs_info->avail_system_alloc_bits |= extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003702 write_sequnlock(&fs_info->profiles_lock);
Chris Mason8790d502008-04-03 16:29:03 -04003703}
Chris Mason593060d2008-03-25 16:50:33 -04003704
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003705/*
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003706 * returns target flags in extended format or 0 if restripe for this
3707 * chunk_type is not in progress
Ilya Dryomovc6664b42012-04-12 16:03:56 -04003708 *
3709 * should be called with either volume_mutex or balance_lock held
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003710 */
3711static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
3712{
3713 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3714 u64 target = 0;
3715
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003716 if (!bctl)
3717 return 0;
3718
3719 if (flags & BTRFS_BLOCK_GROUP_DATA &&
3720 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3721 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
3722 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
3723 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3724 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
3725 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
3726 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3727 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
3728 }
3729
3730 return target;
3731}
3732
3733/*
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003734 * @flags: available profiles in extended format (see ctree.h)
3735 *
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003736 * Returns reduced profile in chunk format. If profile changing is in
3737 * progress (either running or paused) picks the target profile (if it's
3738 * already available), otherwise falls back to plain reducing.
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003739 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003740static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04003741{
Miao Xie95669972014-07-24 11:37:14 +08003742 u64 num_devices = root->fs_info->fs_devices->rw_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003743 u64 target;
David Woodhouse53b381b2013-01-29 18:40:14 -05003744 u64 tmp;
Chris Masona061fc82008-05-07 11:43:44 -04003745
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003746 /*
3747 * see if restripe for this chunk_type is in progress, if so
3748 * try to reduce to the target profile
3749 */
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003750 spin_lock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003751 target = get_restripe_target(root->fs_info, flags);
3752 if (target) {
3753 /* pick target profile only if it's already available */
3754 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003755 spin_unlock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003756 return extended_to_chunk(target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003757 }
3758 }
3759 spin_unlock(&root->fs_info->balance_lock);
3760
David Woodhouse53b381b2013-01-29 18:40:14 -05003761 /* First, mask out the RAID levels which aren't possible */
Chris Masona061fc82008-05-07 11:43:44 -04003762 if (num_devices == 1)
David Woodhouse53b381b2013-01-29 18:40:14 -05003763 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0 |
3764 BTRFS_BLOCK_GROUP_RAID5);
3765 if (num_devices < 3)
3766 flags &= ~BTRFS_BLOCK_GROUP_RAID6;
Chris Masona061fc82008-05-07 11:43:44 -04003767 if (num_devices < 4)
3768 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
3769
David Woodhouse53b381b2013-01-29 18:40:14 -05003770 tmp = flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID0 |
3771 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID5 |
3772 BTRFS_BLOCK_GROUP_RAID6 | BTRFS_BLOCK_GROUP_RAID10);
3773 flags &= ~tmp;
Chris Masonec44a352008-04-28 15:29:52 -04003774
David Woodhouse53b381b2013-01-29 18:40:14 -05003775 if (tmp & BTRFS_BLOCK_GROUP_RAID6)
3776 tmp = BTRFS_BLOCK_GROUP_RAID6;
3777 else if (tmp & BTRFS_BLOCK_GROUP_RAID5)
3778 tmp = BTRFS_BLOCK_GROUP_RAID5;
3779 else if (tmp & BTRFS_BLOCK_GROUP_RAID10)
3780 tmp = BTRFS_BLOCK_GROUP_RAID10;
3781 else if (tmp & BTRFS_BLOCK_GROUP_RAID1)
3782 tmp = BTRFS_BLOCK_GROUP_RAID1;
3783 else if (tmp & BTRFS_BLOCK_GROUP_RAID0)
3784 tmp = BTRFS_BLOCK_GROUP_RAID0;
Chris Masonec44a352008-04-28 15:29:52 -04003785
David Woodhouse53b381b2013-01-29 18:40:14 -05003786 return extended_to_chunk(flags | tmp);
Chris Masonec44a352008-04-28 15:29:52 -04003787}
3788
Filipe Mananaf8213bd2014-04-24 15:15:29 +01003789static u64 get_alloc_profile(struct btrfs_root *root, u64 orig_flags)
Josef Bacik6a632092009-02-20 11:00:09 -05003790{
Miao Xiede98ced2013-01-29 10:13:12 +00003791 unsigned seq;
Filipe Mananaf8213bd2014-04-24 15:15:29 +01003792 u64 flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003793
3794 do {
Filipe Mananaf8213bd2014-04-24 15:15:29 +01003795 flags = orig_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003796 seq = read_seqbegin(&root->fs_info->profiles_lock);
3797
3798 if (flags & BTRFS_BLOCK_GROUP_DATA)
3799 flags |= root->fs_info->avail_data_alloc_bits;
3800 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3801 flags |= root->fs_info->avail_system_alloc_bits;
3802 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
3803 flags |= root->fs_info->avail_metadata_alloc_bits;
3804 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02003805
Yan, Zhengb742bb82010-05-16 10:46:24 -04003806 return btrfs_reduce_alloc_profile(root, flags);
3807}
Josef Bacik6a632092009-02-20 11:00:09 -05003808
Miao Xie6d07bce2011-01-05 10:07:31 +00003809u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
Yan, Zhengb742bb82010-05-16 10:46:24 -04003810{
3811 u64 flags;
David Woodhouse53b381b2013-01-29 18:40:14 -05003812 u64 ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003813
Yan, Zhengb742bb82010-05-16 10:46:24 -04003814 if (data)
3815 flags = BTRFS_BLOCK_GROUP_DATA;
3816 else if (root == root->fs_info->chunk_root)
3817 flags = BTRFS_BLOCK_GROUP_SYSTEM;
3818 else
3819 flags = BTRFS_BLOCK_GROUP_METADATA;
3820
David Woodhouse53b381b2013-01-29 18:40:14 -05003821 ret = get_alloc_profile(root, flags);
3822 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003823}
3824
Josef Bacik6a632092009-02-20 11:00:09 -05003825/*
3826 * This will check the space that the inode allocates from to make sure we have
3827 * enough space for bytes.
3828 */
Dongsheng Yange2d1f922015-02-06 10:26:52 -05003829int btrfs_check_data_free_space(struct inode *inode, u64 bytes, u64 write_bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003830{
3831 struct btrfs_space_info *data_sinfo;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003832 struct btrfs_root *root = BTRFS_I(inode)->root;
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003833 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacikab6e24102010-03-19 14:38:13 +00003834 u64 used;
Zhao Lei94b947b2015-02-14 13:23:45 +08003835 int ret = 0;
Zhao Leic99f1b02015-03-02 19:32:20 +08003836 int need_commit = 2;
3837 int have_pinned_space;
Josef Bacik6a632092009-02-20 11:00:09 -05003838
3839 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00003840 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05003841
Miao Xie9dced182013-10-25 17:33:36 +08003842 if (btrfs_is_free_space_inode(inode)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08003843 need_commit = 0;
Miao Xie9dced182013-10-25 17:33:36 +08003844 ASSERT(current->journal_info);
Josef Bacik0af3d002010-06-21 14:48:16 -04003845 }
3846
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003847 data_sinfo = fs_info->data_sinfo;
Chris Mason33b4d472009-09-22 14:45:50 -04003848 if (!data_sinfo)
3849 goto alloc;
3850
Josef Bacik6a632092009-02-20 11:00:09 -05003851again:
3852 /* make sure we have enough space to handle the data first */
3853 spin_lock(&data_sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003854 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
3855 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
3856 data_sinfo->bytes_may_use;
Josef Bacikab6e24102010-03-19 14:38:13 +00003857
3858 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003859 struct btrfs_trans_handle *trans;
3860
Josef Bacik6a632092009-02-20 11:00:09 -05003861 /*
3862 * if we don't have enough free bytes in this space then we need
3863 * to alloc a new chunk.
3864 */
Zhao Leib9fd47c2015-02-09 14:40:20 +08003865 if (!data_sinfo->full) {
Josef Bacik6a632092009-02-20 11:00:09 -05003866 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05003867
Chris Mason0e4f8f82011-04-15 16:05:44 -04003868 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05003869 spin_unlock(&data_sinfo->lock);
Chris Mason33b4d472009-09-22 14:45:50 -04003870alloc:
Josef Bacik6a632092009-02-20 11:00:09 -05003871 alloc_target = btrfs_get_alloc_profile(root, 1);
Miao Xie9dced182013-10-25 17:33:36 +08003872 /*
3873 * It is ugly that we don't call nolock join
3874 * transaction for the free space inode case here.
3875 * But it is safe because we only do the data space
3876 * reservation for the free space cache in the
3877 * transaction context, the common join transaction
3878 * just increase the counter of the current transaction
3879 * handler, doesn't try to acquire the trans_lock of
3880 * the fs.
3881 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003882 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003883 if (IS_ERR(trans))
3884 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05003885
3886 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0e4f8f82011-04-15 16:05:44 -04003887 alloc_target,
3888 CHUNK_ALLOC_NO_FORCE);
Josef Bacik6a632092009-02-20 11:00:09 -05003889 btrfs_end_transaction(trans, root);
Miao Xied52a5b52011-01-05 10:07:18 +00003890 if (ret < 0) {
3891 if (ret != -ENOSPC)
3892 return ret;
Zhao Leic99f1b02015-03-02 19:32:20 +08003893 else {
3894 have_pinned_space = 1;
Miao Xied52a5b52011-01-05 10:07:18 +00003895 goto commit_trans;
Zhao Leic99f1b02015-03-02 19:32:20 +08003896 }
Miao Xied52a5b52011-01-05 10:07:18 +00003897 }
Chris Mason33b4d472009-09-22 14:45:50 -04003898
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003899 if (!data_sinfo)
3900 data_sinfo = fs_info->data_sinfo;
3901
Josef Bacik6a632092009-02-20 11:00:09 -05003902 goto again;
3903 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003904
3905 /*
Josef Bacikb150a4f2013-06-19 15:00:04 -04003906 * If we don't have enough pinned space to deal with this
Zhao Lei94b947b2015-02-14 13:23:45 +08003907 * allocation, and no removed chunk in current transaction,
3908 * don't bother committing the transaction.
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003909 */
Zhao Leic99f1b02015-03-02 19:32:20 +08003910 have_pinned_space = percpu_counter_compare(
3911 &data_sinfo->total_bytes_pinned,
3912 used + bytes - data_sinfo->total_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05003913 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003914
3915 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00003916commit_trans:
Zhao Leic99f1b02015-03-02 19:32:20 +08003917 if (need_commit &&
Josef Bacika4abeea2011-04-11 17:25:13 -04003918 !atomic_read(&root->fs_info->open_ioctl_trans)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08003919 need_commit--;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003920
Zhao Lei9a4e7272015-04-09 12:34:43 +08003921 if (need_commit > 0)
3922 btrfs_wait_ordered_roots(fs_info, -1);
3923
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003924 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003925 if (IS_ERR(trans))
3926 return PTR_ERR(trans);
Zhao Leic99f1b02015-03-02 19:32:20 +08003927 if (have_pinned_space >= 0 ||
3928 trans->transaction->have_free_bgs ||
3929 need_commit > 0) {
Zhao Lei94b947b2015-02-14 13:23:45 +08003930 ret = btrfs_commit_transaction(trans, root);
3931 if (ret)
3932 return ret;
Zhao Leid7c15172015-02-26 10:49:20 +08003933 /*
3934 * make sure that all running delayed iput are
3935 * done
3936 */
3937 down_write(&root->fs_info->delayed_iput_sem);
3938 up_write(&root->fs_info->delayed_iput_sem);
Zhao Lei94b947b2015-02-14 13:23:45 +08003939 goto again;
3940 } else {
3941 btrfs_end_transaction(trans, root);
3942 }
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003943 }
3944
Jeff Mahoneycab45e22013-10-16 16:27:01 -04003945 trace_btrfs_space_reservation(root->fs_info,
3946 "space_info:enospc",
3947 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05003948 return -ENOSPC;
3949 }
Dongsheng Yange2d1f922015-02-06 10:26:52 -05003950 ret = btrfs_qgroup_reserve(root, write_bytes);
Dongsheng Yang237c0e92014-12-29 06:23:05 -05003951 if (ret)
3952 goto out;
Josef Bacik6a632092009-02-20 11:00:09 -05003953 data_sinfo->bytes_may_use += bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05003954 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04003955 data_sinfo->flags, bytes, 1);
Dongsheng Yang237c0e92014-12-29 06:23:05 -05003956out:
Josef Bacik6a632092009-02-20 11:00:09 -05003957 spin_unlock(&data_sinfo->lock);
3958
Dongsheng Yang237c0e92014-12-29 06:23:05 -05003959 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003960}
3961
3962/*
Josef Bacikfb25e912011-07-26 17:00:46 -04003963 * Called if we need to clear a data reservation for this inode.
Josef Bacik6a632092009-02-20 11:00:09 -05003964 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003965void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003966{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003967 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003968 struct btrfs_space_info *data_sinfo;
3969
3970 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00003971 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05003972
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003973 data_sinfo = root->fs_info->data_sinfo;
Josef Bacik6a632092009-02-20 11:00:09 -05003974 spin_lock(&data_sinfo->lock);
Josef Bacik7ee9e442013-06-21 16:37:03 -04003975 WARN_ON(data_sinfo->bytes_may_use < bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05003976 data_sinfo->bytes_may_use -= bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05003977 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04003978 data_sinfo->flags, bytes, 0);
Josef Bacik6a632092009-02-20 11:00:09 -05003979 spin_unlock(&data_sinfo->lock);
3980}
3981
Josef Bacik97e728d2009-04-21 17:40:57 -04003982static void force_metadata_allocation(struct btrfs_fs_info *info)
3983{
3984 struct list_head *head = &info->space_info;
3985 struct btrfs_space_info *found;
3986
3987 rcu_read_lock();
3988 list_for_each_entry_rcu(found, head, list) {
3989 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04003990 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04003991 }
3992 rcu_read_unlock();
3993}
3994
Miao Xie3c76cd82013-04-25 10:12:38 +00003995static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
3996{
3997 return (global->size << 1);
3998}
3999
Chris Masone5bc2452010-10-26 13:37:56 -04004000static int should_alloc_chunk(struct btrfs_root *root,
Josef Bacik698d0082012-09-12 14:08:47 -04004001 struct btrfs_space_info *sinfo, int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04004002{
Josef Bacikfb25e912011-07-26 17:00:46 -04004003 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zheng424499d2010-05-16 10:46:25 -04004004 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
Chris Mason0e4f8f82011-04-15 16:05:44 -04004005 u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved;
Chris Masone5bc2452010-10-26 13:37:56 -04004006 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04004007
Chris Mason0e4f8f82011-04-15 16:05:44 -04004008 if (force == CHUNK_ALLOC_FORCE)
4009 return 1;
4010
4011 /*
Josef Bacikfb25e912011-07-26 17:00:46 -04004012 * We need to take into account the global rsv because for all intents
4013 * and purposes it's used space. Don't worry about locking the
4014 * global_rsv, it doesn't change except when the transaction commits.
4015 */
Josef Bacik54338b52012-08-14 16:20:52 -04004016 if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA)
Miao Xie3c76cd82013-04-25 10:12:38 +00004017 num_allocated += calc_global_rsv_need_space(global_rsv);
Josef Bacikfb25e912011-07-26 17:00:46 -04004018
4019 /*
Chris Mason0e4f8f82011-04-15 16:05:44 -04004020 * in limited mode, we want to have some free space up to
4021 * about 1% of the FS size.
4022 */
4023 if (force == CHUNK_ALLOC_LIMITED) {
David Sterba6c417612011-04-13 15:41:04 +02004024 thresh = btrfs_super_total_bytes(root->fs_info->super_copy);
Chris Mason0e4f8f82011-04-15 16:05:44 -04004025 thresh = max_t(u64, 64 * 1024 * 1024,
4026 div_factor_fine(thresh, 1));
4027
4028 if (num_bytes - num_allocated < thresh)
4029 return 1;
4030 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004031
Josef Bacik698d0082012-09-12 14:08:47 -04004032 if (num_allocated + 2 * 1024 * 1024 < div_factor(num_bytes, 8))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04004033 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04004034 return 1;
4035}
4036
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004037static u64 get_profile_num_devs(struct btrfs_root *root, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004038{
4039 u64 num_dev;
4040
David Woodhouse53b381b2013-01-29 18:40:14 -05004041 if (type & (BTRFS_BLOCK_GROUP_RAID10 |
4042 BTRFS_BLOCK_GROUP_RAID0 |
4043 BTRFS_BLOCK_GROUP_RAID5 |
4044 BTRFS_BLOCK_GROUP_RAID6))
Liu Bo15d1ff82012-03-29 09:57:44 -04004045 num_dev = root->fs_info->fs_devices->rw_devices;
4046 else if (type & BTRFS_BLOCK_GROUP_RAID1)
4047 num_dev = 2;
4048 else
4049 num_dev = 1; /* DUP or single */
4050
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004051 return num_dev;
Liu Bo15d1ff82012-03-29 09:57:44 -04004052}
4053
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004054/*
4055 * If @is_allocation is true, reserve space in the system space info necessary
4056 * for allocating a chunk, otherwise if it's false, reserve space necessary for
4057 * removing a chunk.
4058 */
4059void check_system_chunk(struct btrfs_trans_handle *trans,
4060 struct btrfs_root *root,
Filipe Manana4617ea32015-06-09 17:48:21 +01004061 u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004062{
4063 struct btrfs_space_info *info;
4064 u64 left;
4065 u64 thresh;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004066 int ret = 0;
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004067 u64 num_devs;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004068
4069 /*
4070 * Needed because we can end up allocating a system chunk and for an
4071 * atomic and race free space reservation in the chunk block reserve.
4072 */
4073 ASSERT(mutex_is_locked(&root->fs_info->chunk_mutex));
Liu Bo15d1ff82012-03-29 09:57:44 -04004074
4075 info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4076 spin_lock(&info->lock);
4077 left = info->total_bytes - info->bytes_used - info->bytes_pinned -
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004078 info->bytes_reserved - info->bytes_readonly -
4079 info->bytes_may_use;
Liu Bo15d1ff82012-03-29 09:57:44 -04004080 spin_unlock(&info->lock);
4081
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004082 num_devs = get_profile_num_devs(root, type);
4083
4084 /* num_devs device items to update and 1 chunk item to add or remove */
Filipe Manana4617ea32015-06-09 17:48:21 +01004085 thresh = btrfs_calc_trunc_metadata_size(root, num_devs) +
4086 btrfs_calc_trans_metadata_size(root, 1);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004087
Liu Bo15d1ff82012-03-29 09:57:44 -04004088 if (left < thresh && btrfs_test_opt(root, ENOSPC_DEBUG)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00004089 btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu",
4090 left, thresh, type);
Liu Bo15d1ff82012-03-29 09:57:44 -04004091 dump_space_info(info, 0, 0);
4092 }
4093
4094 if (left < thresh) {
4095 u64 flags;
4096
4097 flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0);
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004098 /*
4099 * Ignore failure to create system chunk. We might end up not
4100 * needing it, as we might not need to COW all nodes/leafs from
4101 * the paths we visit in the chunk tree (they were already COWed
4102 * or created in the current transaction for example).
4103 */
4104 ret = btrfs_alloc_chunk(trans, root, flags);
4105 }
4106
4107 if (!ret) {
4108 ret = btrfs_block_rsv_add(root->fs_info->chunk_root,
4109 &root->fs_info->chunk_block_rsv,
4110 thresh, BTRFS_RESERVE_NO_FLUSH);
4111 if (!ret)
4112 trans->chunk_bytes_reserved += thresh;
Liu Bo15d1ff82012-03-29 09:57:44 -04004113 }
4114}
4115
Chris Mason6324fbf2008-03-24 15:01:59 -04004116static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Josef Bacik698d0082012-09-12 14:08:47 -04004117 struct btrfs_root *extent_root, u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04004118{
4119 struct btrfs_space_info *space_info;
Josef Bacik97e728d2009-04-21 17:40:57 -04004120 struct btrfs_fs_info *fs_info = extent_root->fs_info;
Josef Bacik6d741192011-04-11 20:20:11 -04004121 int wait_for_alloc = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05004122 int ret = 0;
4123
Josef Bacikc6b305a2012-12-18 09:16:16 -05004124 /* Don't re-enter if we're already allocating a chunk */
4125 if (trans->allocating_chunk)
4126 return -ENOSPC;
4127
Chris Mason6324fbf2008-03-24 15:01:59 -04004128 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04004129 if (!space_info) {
4130 ret = update_space_info(extent_root->fs_info, flags,
4131 0, 0, &space_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004132 BUG_ON(ret); /* -ENOMEM */
Chris Mason593060d2008-03-25 16:50:33 -04004133 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004134 BUG_ON(!space_info); /* Logic error */
Chris Mason6324fbf2008-03-24 15:01:59 -04004135
Josef Bacik6d741192011-04-11 20:20:11 -04004136again:
Josef Bacik25179202008-10-29 14:49:05 -04004137 spin_lock(&space_info->lock);
Miao Xie9e622d62012-01-26 15:01:12 -05004138 if (force < space_info->force_alloc)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004139 force = space_info->force_alloc;
Josef Bacik25179202008-10-29 14:49:05 -04004140 if (space_info->full) {
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01004141 if (should_alloc_chunk(extent_root, space_info, force))
4142 ret = -ENOSPC;
4143 else
4144 ret = 0;
Josef Bacik25179202008-10-29 14:49:05 -04004145 spin_unlock(&space_info->lock);
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01004146 return ret;
Josef Bacik25179202008-10-29 14:49:05 -04004147 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004148
Josef Bacik698d0082012-09-12 14:08:47 -04004149 if (!should_alloc_chunk(extent_root, space_info, force)) {
Josef Bacik25179202008-10-29 14:49:05 -04004150 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04004151 return 0;
4152 } else if (space_info->chunk_alloc) {
4153 wait_for_alloc = 1;
4154 } else {
4155 space_info->chunk_alloc = 1;
Josef Bacik25179202008-10-29 14:49:05 -04004156 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004157
Josef Bacik25179202008-10-29 14:49:05 -04004158 spin_unlock(&space_info->lock);
4159
Josef Bacik6d741192011-04-11 20:20:11 -04004160 mutex_lock(&fs_info->chunk_mutex);
4161
4162 /*
4163 * The chunk_mutex is held throughout the entirety of a chunk
4164 * allocation, so once we've acquired the chunk_mutex we know that the
4165 * other guy is done and we need to recheck and see if we should
4166 * allocate.
4167 */
4168 if (wait_for_alloc) {
4169 mutex_unlock(&fs_info->chunk_mutex);
4170 wait_for_alloc = 0;
4171 goto again;
4172 }
4173
Josef Bacikc6b305a2012-12-18 09:16:16 -05004174 trans->allocating_chunk = true;
4175
Josef Bacik97e728d2009-04-21 17:40:57 -04004176 /*
Josef Bacik67377732010-09-16 16:19:09 -04004177 * If we have mixed data/metadata chunks we want to make sure we keep
4178 * allocating mixed chunks instead of individual chunks.
4179 */
4180 if (btrfs_mixed_space_info(space_info))
4181 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
4182
4183 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04004184 * if we're doing a data chunk, go ahead and make sure that
4185 * we keep a reasonable number of metadata chunks allocated in the
4186 * FS as well.
4187 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04004188 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04004189 fs_info->data_chunk_allocations++;
4190 if (!(fs_info->data_chunk_allocations %
4191 fs_info->metadata_ratio))
4192 force_metadata_allocation(fs_info);
4193 }
4194
Liu Bo15d1ff82012-03-29 09:57:44 -04004195 /*
4196 * Check if we have enough space in SYSTEM chunk because we may need
4197 * to update devices.
4198 */
Filipe Manana4617ea32015-06-09 17:48:21 +01004199 check_system_chunk(trans, extent_root, flags);
Liu Bo15d1ff82012-03-29 09:57:44 -04004200
Yan Zheng2b820322008-11-17 21:11:30 -05004201 ret = btrfs_alloc_chunk(trans, extent_root, flags);
Josef Bacikc6b305a2012-12-18 09:16:16 -05004202 trans->allocating_chunk = false;
Mark Fasheh92b8e8972011-07-12 10:57:59 -07004203
Josef Bacik9ed74f22009-09-11 16:12:44 -04004204 spin_lock(&space_info->lock);
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004205 if (ret < 0 && ret != -ENOSPC)
4206 goto out;
Chris Masond3977122009-01-05 21:25:51 -05004207 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04004208 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04004209 else
4210 ret = 1;
Josef Bacik6d741192011-04-11 20:20:11 -04004211
Chris Mason0e4f8f82011-04-15 16:05:44 -04004212 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004213out:
Josef Bacik6d741192011-04-11 20:20:11 -04004214 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004215 spin_unlock(&space_info->lock);
Dan Carpentera25c75d2012-04-18 09:59:29 +03004216 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik0f9dd462008-09-23 13:14:11 -04004217 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04004218}
4219
Josef Bacika80c8dc2012-09-06 16:59:33 -04004220static int can_overcommit(struct btrfs_root *root,
4221 struct btrfs_space_info *space_info, u64 bytes,
Miao Xie08e007d2012-10-16 11:33:38 +00004222 enum btrfs_reserve_flush_enum flush)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004223{
Josef Bacik96f1bb52013-01-30 17:02:51 -05004224 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004225 u64 profile = btrfs_get_alloc_profile(root, 0);
Miao Xie3c76cd82013-04-25 10:12:38 +00004226 u64 space_size;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004227 u64 avail;
4228 u64 used;
4229
4230 used = space_info->bytes_used + space_info->bytes_reserved +
Josef Bacik96f1bb52013-01-30 17:02:51 -05004231 space_info->bytes_pinned + space_info->bytes_readonly;
4232
Josef Bacik96f1bb52013-01-30 17:02:51 -05004233 /*
4234 * We only want to allow over committing if we have lots of actual space
4235 * free, but if we don't have enough space to handle the global reserve
4236 * space then we could end up having a real enospc problem when trying
4237 * to allocate a chunk or some other such important allocation.
4238 */
Miao Xie3c76cd82013-04-25 10:12:38 +00004239 spin_lock(&global_rsv->lock);
4240 space_size = calc_global_rsv_need_space(global_rsv);
4241 spin_unlock(&global_rsv->lock);
4242 if (used + space_size >= space_info->total_bytes)
Josef Bacik96f1bb52013-01-30 17:02:51 -05004243 return 0;
4244
4245 used += space_info->bytes_may_use;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004246
4247 spin_lock(&root->fs_info->free_chunk_lock);
4248 avail = root->fs_info->free_chunk_space;
4249 spin_unlock(&root->fs_info->free_chunk_lock);
4250
4251 /*
4252 * If we have dup, raid1 or raid10 then only half of the free
David Woodhouse53b381b2013-01-29 18:40:14 -05004253 * space is actually useable. For raid56, the space info used
4254 * doesn't include the parity drive, so we don't have to
4255 * change the math
Josef Bacika80c8dc2012-09-06 16:59:33 -04004256 */
4257 if (profile & (BTRFS_BLOCK_GROUP_DUP |
4258 BTRFS_BLOCK_GROUP_RAID1 |
4259 BTRFS_BLOCK_GROUP_RAID10))
4260 avail >>= 1;
4261
4262 /*
Miao Xie561c2942012-10-16 11:32:18 +00004263 * If we aren't flushing all things, let us overcommit up to
4264 * 1/2th of the space. If we can flush, don't let us overcommit
4265 * too much, let it overcommit up to 1/8 of the space.
Josef Bacika80c8dc2012-09-06 16:59:33 -04004266 */
Miao Xie08e007d2012-10-16 11:33:38 +00004267 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacik14575ae2013-09-17 10:48:00 -04004268 avail >>= 3;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004269 else
Josef Bacik14575ae2013-09-17 10:48:00 -04004270 avail >>= 1;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004271
Josef Bacik14575ae2013-09-17 10:48:00 -04004272 if (used + bytes < space_info->total_bytes + avail)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004273 return 1;
4274 return 0;
4275}
4276
Eric Sandeen48a3b632013-04-25 20:41:01 +00004277static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root,
Miao Xie6c255e62014-03-06 13:55:01 +08004278 unsigned long nr_pages, int nr_items)
Miao Xieda633a42012-12-20 11:19:09 +00004279{
4280 struct super_block *sb = root->fs_info->sb;
Miao Xieda633a42012-12-20 11:19:09 +00004281
Josef Bacik925a6ef2013-06-20 12:31:27 -04004282 if (down_read_trylock(&sb->s_umount)) {
4283 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
4284 up_read(&sb->s_umount);
4285 } else {
Miao Xieda633a42012-12-20 11:19:09 +00004286 /*
4287 * We needn't worry the filesystem going from r/w to r/o though
4288 * we don't acquire ->s_umount mutex, because the filesystem
4289 * should guarantee the delalloc inodes list be empty after
4290 * the filesystem is readonly(all dirty pages are written to
4291 * the disk).
4292 */
Miao Xie6c255e62014-03-06 13:55:01 +08004293 btrfs_start_delalloc_roots(root->fs_info, 0, nr_items);
Josef Bacik98ad69c2013-04-04 11:55:49 -04004294 if (!current->journal_info)
Miao Xie6c255e62014-03-06 13:55:01 +08004295 btrfs_wait_ordered_roots(root->fs_info, nr_items);
Miao Xieda633a42012-12-20 11:19:09 +00004296 }
4297}
4298
Miao Xie18cd8ea2013-11-04 23:13:22 +08004299static inline int calc_reclaim_items_nr(struct btrfs_root *root, u64 to_reclaim)
4300{
4301 u64 bytes;
4302 int nr;
4303
4304 bytes = btrfs_calc_trans_metadata_size(root, 1);
4305 nr = (int)div64_u64(to_reclaim, bytes);
4306 if (!nr)
4307 nr = 1;
4308 return nr;
4309}
4310
Miao Xiec61a16a2013-11-04 23:13:23 +08004311#define EXTENT_SIZE_PER_ITEM (256 * 1024)
4312
Yan, Zheng5da9d012010-05-16 10:46:25 -04004313/*
4314 * shrink metadata reservation for delalloc
4315 */
Josef Bacikf4c738c2012-07-02 17:10:51 -04004316static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig,
4317 bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04004318{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004319 struct btrfs_block_rsv *block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004320 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04004321 struct btrfs_trans_handle *trans;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004322 u64 delalloc_bytes;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004323 u64 max_reclaim;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004324 long time_left;
Miao Xied3ee29e32013-11-04 23:13:20 +08004325 unsigned long nr_pages;
4326 int loops;
Miao Xieb0244192013-11-04 23:13:25 +08004327 int items;
Miao Xie08e007d2012-10-16 11:33:38 +00004328 enum btrfs_reserve_flush_enum flush;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004329
Miao Xiec61a16a2013-11-04 23:13:23 +08004330 /* Calc the number of the pages we need flush for space reservation */
Miao Xieb0244192013-11-04 23:13:25 +08004331 items = calc_reclaim_items_nr(root, to_reclaim);
4332 to_reclaim = items * EXTENT_SIZE_PER_ITEM;
Miao Xiec61a16a2013-11-04 23:13:23 +08004333
Josef Bacik663350a2011-11-03 22:54:25 -04004334 trans = (struct btrfs_trans_handle *)current->journal_info;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004335 block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004336 space_info = block_rsv->space_info;
Chris Masonbf9022e2010-10-26 13:40:45 -04004337
Miao Xie963d6782013-01-29 10:10:51 +00004338 delalloc_bytes = percpu_counter_sum_positive(
4339 &root->fs_info->delalloc_bytes);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004340 if (delalloc_bytes == 0) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004341 if (trans)
Josef Bacikf4c738c2012-07-02 17:10:51 -04004342 return;
Miao Xie38c135a2013-11-04 23:13:21 +08004343 if (wait_ordered)
Miao Xieb0244192013-11-04 23:13:25 +08004344 btrfs_wait_ordered_roots(root->fs_info, items);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004345 return;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004346 }
4347
Miao Xied3ee29e32013-11-04 23:13:20 +08004348 loops = 0;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004349 while (delalloc_bytes && loops < 3) {
4350 max_reclaim = min(delalloc_bytes, to_reclaim);
4351 nr_pages = max_reclaim >> PAGE_CACHE_SHIFT;
Miao Xie6c255e62014-03-06 13:55:01 +08004352 btrfs_writeback_inodes_sb_nr(root, nr_pages, items);
Josef Bacikdea31f52012-09-06 16:47:00 -04004353 /*
4354 * We need to wait for the async pages to actually start before
4355 * we do anything.
4356 */
Miao Xie9f3a0742013-11-04 23:13:24 +08004357 max_reclaim = atomic_read(&root->fs_info->async_delalloc_pages);
4358 if (!max_reclaim)
4359 goto skip_async;
Josef Bacikdea31f52012-09-06 16:47:00 -04004360
Miao Xie9f3a0742013-11-04 23:13:24 +08004361 if (max_reclaim <= nr_pages)
4362 max_reclaim = 0;
4363 else
4364 max_reclaim -= nr_pages;
4365
4366 wait_event(root->fs_info->async_submit_wait,
4367 atomic_read(&root->fs_info->async_delalloc_pages) <=
4368 (int)max_reclaim);
4369skip_async:
Miao Xie08e007d2012-10-16 11:33:38 +00004370 if (!trans)
4371 flush = BTRFS_RESERVE_FLUSH_ALL;
4372 else
4373 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacik0019f102010-10-15 15:18:40 -04004374 spin_lock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00004375 if (can_overcommit(root, space_info, orig, flush)) {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004376 spin_unlock(&space_info->lock);
4377 break;
4378 }
Josef Bacik0019f102010-10-15 15:18:40 -04004379 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004380
Chris Mason36e39c42011-03-12 07:08:42 -05004381 loops++;
Josef Bacikf104d042011-10-14 13:56:58 -04004382 if (wait_ordered && !trans) {
Miao Xieb0244192013-11-04 23:13:25 +08004383 btrfs_wait_ordered_roots(root->fs_info, items);
Josef Bacikf104d042011-10-14 13:56:58 -04004384 } else {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004385 time_left = schedule_timeout_killable(1);
Josef Bacikf104d042011-10-14 13:56:58 -04004386 if (time_left)
4387 break;
4388 }
Miao Xie963d6782013-01-29 10:10:51 +00004389 delalloc_bytes = percpu_counter_sum_positive(
4390 &root->fs_info->delalloc_bytes);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004391 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04004392}
4393
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004394/**
Josef Bacik663350a2011-11-03 22:54:25 -04004395 * maybe_commit_transaction - possibly commit the transaction if its ok to
4396 * @root - the root we're allocating for
4397 * @bytes - the number of bytes we want to reserve
4398 * @force - force the commit
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004399 *
Josef Bacik663350a2011-11-03 22:54:25 -04004400 * This will check to make sure that committing the transaction will actually
4401 * get us somewhere and then commit the transaction if it does. Otherwise it
4402 * will return -ENOSPC.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004403 */
Josef Bacik663350a2011-11-03 22:54:25 -04004404static int may_commit_transaction(struct btrfs_root *root,
4405 struct btrfs_space_info *space_info,
4406 u64 bytes, int force)
4407{
4408 struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv;
4409 struct btrfs_trans_handle *trans;
4410
4411 trans = (struct btrfs_trans_handle *)current->journal_info;
4412 if (trans)
4413 return -EAGAIN;
4414
4415 if (force)
4416 goto commit;
4417
4418 /* See if there is enough pinned space to make this reservation */
Josef Bacikb150a4f2013-06-19 15:00:04 -04004419 if (percpu_counter_compare(&space_info->total_bytes_pinned,
Miao Xie0424c542014-03-06 13:54:59 +08004420 bytes) >= 0)
Josef Bacik663350a2011-11-03 22:54:25 -04004421 goto commit;
Josef Bacik663350a2011-11-03 22:54:25 -04004422
4423 /*
4424 * See if there is some space in the delayed insertion reservation for
4425 * this reservation.
4426 */
4427 if (space_info != delayed_rsv->space_info)
4428 return -ENOSPC;
4429
4430 spin_lock(&delayed_rsv->lock);
Josef Bacikb150a4f2013-06-19 15:00:04 -04004431 if (percpu_counter_compare(&space_info->total_bytes_pinned,
4432 bytes - delayed_rsv->size) >= 0) {
Josef Bacik663350a2011-11-03 22:54:25 -04004433 spin_unlock(&delayed_rsv->lock);
4434 return -ENOSPC;
4435 }
4436 spin_unlock(&delayed_rsv->lock);
4437
4438commit:
4439 trans = btrfs_join_transaction(root);
4440 if (IS_ERR(trans))
4441 return -ENOSPC;
4442
4443 return btrfs_commit_transaction(trans, root);
4444}
4445
Josef Bacik96c3f432012-06-21 14:05:49 -04004446enum flush_state {
Josef Bacik67b0fd62012-09-24 13:42:00 -04004447 FLUSH_DELAYED_ITEMS_NR = 1,
4448 FLUSH_DELAYED_ITEMS = 2,
4449 FLUSH_DELALLOC = 3,
4450 FLUSH_DELALLOC_WAIT = 4,
Josef Bacikea658ba2012-09-11 16:57:25 -04004451 ALLOC_CHUNK = 5,
4452 COMMIT_TRANS = 6,
Josef Bacik96c3f432012-06-21 14:05:49 -04004453};
4454
4455static int flush_space(struct btrfs_root *root,
4456 struct btrfs_space_info *space_info, u64 num_bytes,
4457 u64 orig_bytes, int state)
4458{
4459 struct btrfs_trans_handle *trans;
4460 int nr;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004461 int ret = 0;
Josef Bacik96c3f432012-06-21 14:05:49 -04004462
4463 switch (state) {
Josef Bacik96c3f432012-06-21 14:05:49 -04004464 case FLUSH_DELAYED_ITEMS_NR:
4465 case FLUSH_DELAYED_ITEMS:
Miao Xie18cd8ea2013-11-04 23:13:22 +08004466 if (state == FLUSH_DELAYED_ITEMS_NR)
4467 nr = calc_reclaim_items_nr(root, num_bytes) * 2;
4468 else
Josef Bacik96c3f432012-06-21 14:05:49 -04004469 nr = -1;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004470
Josef Bacik96c3f432012-06-21 14:05:49 -04004471 trans = btrfs_join_transaction(root);
4472 if (IS_ERR(trans)) {
4473 ret = PTR_ERR(trans);
4474 break;
4475 }
4476 ret = btrfs_run_delayed_items_nr(trans, root, nr);
4477 btrfs_end_transaction(trans, root);
4478 break;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004479 case FLUSH_DELALLOC:
4480 case FLUSH_DELALLOC_WAIT:
Miao Xie24af7dd2014-03-06 13:55:00 +08004481 shrink_delalloc(root, num_bytes * 2, orig_bytes,
Josef Bacik67b0fd62012-09-24 13:42:00 -04004482 state == FLUSH_DELALLOC_WAIT);
4483 break;
Josef Bacikea658ba2012-09-11 16:57:25 -04004484 case ALLOC_CHUNK:
4485 trans = btrfs_join_transaction(root);
4486 if (IS_ERR(trans)) {
4487 ret = PTR_ERR(trans);
4488 break;
4489 }
4490 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Josef Bacikea658ba2012-09-11 16:57:25 -04004491 btrfs_get_alloc_profile(root, 0),
4492 CHUNK_ALLOC_NO_FORCE);
4493 btrfs_end_transaction(trans, root);
4494 if (ret == -ENOSPC)
4495 ret = 0;
4496 break;
Josef Bacik96c3f432012-06-21 14:05:49 -04004497 case COMMIT_TRANS:
4498 ret = may_commit_transaction(root, space_info, orig_bytes, 0);
4499 break;
4500 default:
4501 ret = -ENOSPC;
4502 break;
4503 }
4504
4505 return ret;
4506}
Miao Xie21c7e752014-05-13 17:29:04 -07004507
4508static inline u64
4509btrfs_calc_reclaim_metadata_size(struct btrfs_root *root,
4510 struct btrfs_space_info *space_info)
4511{
4512 u64 used;
4513 u64 expected;
4514 u64 to_reclaim;
4515
4516 to_reclaim = min_t(u64, num_online_cpus() * 1024 * 1024,
4517 16 * 1024 * 1024);
4518 spin_lock(&space_info->lock);
4519 if (can_overcommit(root, space_info, to_reclaim,
4520 BTRFS_RESERVE_FLUSH_ALL)) {
4521 to_reclaim = 0;
4522 goto out;
4523 }
4524
4525 used = space_info->bytes_used + space_info->bytes_reserved +
4526 space_info->bytes_pinned + space_info->bytes_readonly +
4527 space_info->bytes_may_use;
4528 if (can_overcommit(root, space_info, 1024 * 1024,
4529 BTRFS_RESERVE_FLUSH_ALL))
4530 expected = div_factor_fine(space_info->total_bytes, 95);
4531 else
4532 expected = div_factor_fine(space_info->total_bytes, 90);
4533
4534 if (used > expected)
4535 to_reclaim = used - expected;
4536 else
4537 to_reclaim = 0;
4538 to_reclaim = min(to_reclaim, space_info->bytes_may_use +
4539 space_info->bytes_reserved);
4540out:
4541 spin_unlock(&space_info->lock);
4542
4543 return to_reclaim;
4544}
4545
4546static inline int need_do_async_reclaim(struct btrfs_space_info *space_info,
4547 struct btrfs_fs_info *fs_info, u64 used)
4548{
Josef Bacik365c5312015-02-18 13:58:15 -08004549 u64 thresh = div_factor_fine(space_info->total_bytes, 98);
4550
4551 /* If we're just plain full then async reclaim just slows us down. */
4552 if (space_info->bytes_used >= thresh)
4553 return 0;
4554
4555 return (used >= thresh && !btrfs_fs_closing(fs_info) &&
Miao Xie21c7e752014-05-13 17:29:04 -07004556 !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state));
4557}
4558
4559static int btrfs_need_do_async_reclaim(struct btrfs_space_info *space_info,
Liu Bo25ce4592014-09-10 12:58:50 +08004560 struct btrfs_fs_info *fs_info,
4561 int flush_state)
Miao Xie21c7e752014-05-13 17:29:04 -07004562{
4563 u64 used;
4564
4565 spin_lock(&space_info->lock);
Liu Bo25ce4592014-09-10 12:58:50 +08004566 /*
4567 * We run out of space and have not got any free space via flush_space,
4568 * so don't bother doing async reclaim.
4569 */
4570 if (flush_state > COMMIT_TRANS && space_info->full) {
4571 spin_unlock(&space_info->lock);
4572 return 0;
4573 }
4574
Miao Xie21c7e752014-05-13 17:29:04 -07004575 used = space_info->bytes_used + space_info->bytes_reserved +
4576 space_info->bytes_pinned + space_info->bytes_readonly +
4577 space_info->bytes_may_use;
4578 if (need_do_async_reclaim(space_info, fs_info, used)) {
4579 spin_unlock(&space_info->lock);
4580 return 1;
4581 }
4582 spin_unlock(&space_info->lock);
4583
4584 return 0;
4585}
4586
4587static void btrfs_async_reclaim_metadata_space(struct work_struct *work)
4588{
4589 struct btrfs_fs_info *fs_info;
4590 struct btrfs_space_info *space_info;
4591 u64 to_reclaim;
4592 int flush_state;
4593
4594 fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work);
4595 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4596
4597 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root,
4598 space_info);
4599 if (!to_reclaim)
4600 return;
4601
4602 flush_state = FLUSH_DELAYED_ITEMS_NR;
4603 do {
4604 flush_space(fs_info->fs_root, space_info, to_reclaim,
4605 to_reclaim, flush_state);
4606 flush_state++;
Liu Bo25ce4592014-09-10 12:58:50 +08004607 if (!btrfs_need_do_async_reclaim(space_info, fs_info,
4608 flush_state))
Miao Xie21c7e752014-05-13 17:29:04 -07004609 return;
Josef Bacik365c5312015-02-18 13:58:15 -08004610 } while (flush_state < COMMIT_TRANS);
Miao Xie21c7e752014-05-13 17:29:04 -07004611}
4612
4613void btrfs_init_async_reclaim_work(struct work_struct *work)
4614{
4615 INIT_WORK(work, btrfs_async_reclaim_metadata_space);
4616}
4617
Josef Bacik663350a2011-11-03 22:54:25 -04004618/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004619 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
4620 * @root - the root we're allocating for
4621 * @block_rsv - the block_rsv we're allocating for
4622 * @orig_bytes - the number of bytes we want
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04004623 * @flush - whether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004624 *
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004625 * This will reserve orgi_bytes number of bytes from the space info associated
4626 * with the block_rsv. If there is not enough space it will make an attempt to
4627 * flush out space to make room. It will do this by flushing delalloc if
4628 * possible or committing the transaction. If flush is 0 then no attempts to
4629 * regain reservations will be made and this will fail if there is not enough
4630 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004631 */
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004632static int reserve_metadata_bytes(struct btrfs_root *root,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004633 struct btrfs_block_rsv *block_rsv,
Miao Xie08e007d2012-10-16 11:33:38 +00004634 u64 orig_bytes,
4635 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004636{
4637 struct btrfs_space_info *space_info = block_rsv->space_info;
Josef Bacik2bf64752011-09-26 17:12:22 -04004638 u64 used;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004639 u64 num_bytes = orig_bytes;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004640 int flush_state = FLUSH_DELAYED_ITEMS_NR;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004641 int ret = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004642 bool flushing = false;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004643
4644again:
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004645 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004646 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004647 /*
Miao Xie08e007d2012-10-16 11:33:38 +00004648 * We only want to wait if somebody other than us is flushing and we
4649 * are actually allowed to flush all things.
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004650 */
Miao Xie08e007d2012-10-16 11:33:38 +00004651 while (flush == BTRFS_RESERVE_FLUSH_ALL && !flushing &&
4652 space_info->flush) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004653 spin_unlock(&space_info->lock);
4654 /*
4655 * If we have a trans handle we can't wait because the flusher
4656 * may have to commit the transaction, which would mean we would
4657 * deadlock since we are waiting for the flusher to finish, but
4658 * hold the current transaction open.
4659 */
Josef Bacik663350a2011-11-03 22:54:25 -04004660 if (current->journal_info)
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004661 return -EAGAIN;
Arne Jansenb9688bb2012-04-18 10:27:16 +02004662 ret = wait_event_killable(space_info->wait, !space_info->flush);
4663 /* Must have been killed, return */
4664 if (ret)
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004665 return -EINTR;
4666
4667 spin_lock(&space_info->lock);
4668 }
4669
4670 ret = -ENOSPC;
Josef Bacik2bf64752011-09-26 17:12:22 -04004671 used = space_info->bytes_used + space_info->bytes_reserved +
4672 space_info->bytes_pinned + space_info->bytes_readonly +
4673 space_info->bytes_may_use;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004674
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004675 /*
4676 * The idea here is that we've not already over-reserved the block group
4677 * then we can go ahead and save our reservation first and then start
4678 * flushing if we need to. Otherwise if we've already overcommitted
4679 * lets start flushing stuff first and then come back and try to make
4680 * our reservation.
4681 */
Josef Bacik2bf64752011-09-26 17:12:22 -04004682 if (used <= space_info->total_bytes) {
4683 if (used + orig_bytes <= space_info->total_bytes) {
Josef Bacikfb25e912011-07-26 17:00:46 -04004684 space_info->bytes_may_use += orig_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004685 trace_btrfs_space_reservation(root->fs_info,
Liu Bo2bcc0322012-03-29 09:57:44 -04004686 "space_info", space_info->flags, orig_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004687 ret = 0;
4688 } else {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004689 /*
4690 * Ok set num_bytes to orig_bytes since we aren't
4691 * overocmmitted, this way we only try and reclaim what
4692 * we need.
4693 */
4694 num_bytes = orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004695 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004696 } else {
4697 /*
4698 * Ok we're over committed, set num_bytes to the overcommitted
4699 * amount plus the amount of bytes that we need for this
4700 * reservation.
4701 */
Josef Bacik2bf64752011-09-26 17:12:22 -04004702 num_bytes = used - space_info->total_bytes +
Josef Bacik96c3f432012-06-21 14:05:49 -04004703 (orig_bytes * 2);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004704 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004705
Josef Bacik44734ed2012-09-28 16:04:19 -04004706 if (ret && can_overcommit(root, space_info, orig_bytes, flush)) {
4707 space_info->bytes_may_use += orig_bytes;
4708 trace_btrfs_space_reservation(root->fs_info, "space_info",
4709 space_info->flags, orig_bytes,
4710 1);
4711 ret = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04004712 }
4713
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004714 /*
4715 * Couldn't make our reservation, save our place so while we're trying
4716 * to reclaim space we can actually use it instead of somebody else
4717 * stealing it from us.
Miao Xie08e007d2012-10-16 11:33:38 +00004718 *
4719 * We make the other tasks wait for the flush only when we can flush
4720 * all things.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004721 */
Josef Bacik72bcd992012-12-18 15:16:34 -05004722 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004723 flushing = true;
4724 space_info->flush = 1;
Miao Xie21c7e752014-05-13 17:29:04 -07004725 } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
4726 used += orig_bytes;
Josef Bacikf6acfd52014-09-18 11:27:17 -04004727 /*
4728 * We will do the space reservation dance during log replay,
4729 * which means we won't have fs_info->fs_root set, so don't do
4730 * the async reclaim as we will panic.
4731 */
4732 if (!root->fs_info->log_root_recovering &&
4733 need_do_async_reclaim(space_info, root->fs_info, used) &&
Miao Xie21c7e752014-05-13 17:29:04 -07004734 !work_busy(&root->fs_info->async_reclaim_work))
4735 queue_work(system_unbound_wq,
4736 &root->fs_info->async_reclaim_work);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004737 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004738 spin_unlock(&space_info->lock);
4739
Miao Xie08e007d2012-10-16 11:33:38 +00004740 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004741 goto out;
4742
Josef Bacik96c3f432012-06-21 14:05:49 -04004743 ret = flush_space(root, space_info, num_bytes, orig_bytes,
4744 flush_state);
4745 flush_state++;
Miao Xie08e007d2012-10-16 11:33:38 +00004746
4747 /*
4748 * If we are FLUSH_LIMIT, we can not flush delalloc, or the deadlock
4749 * would happen. So skip delalloc flush.
4750 */
4751 if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4752 (flush_state == FLUSH_DELALLOC ||
4753 flush_state == FLUSH_DELALLOC_WAIT))
4754 flush_state = ALLOC_CHUNK;
4755
Josef Bacik96c3f432012-06-21 14:05:49 -04004756 if (!ret)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004757 goto again;
Miao Xie08e007d2012-10-16 11:33:38 +00004758 else if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4759 flush_state < COMMIT_TRANS)
4760 goto again;
4761 else if (flush == BTRFS_RESERVE_FLUSH_ALL &&
4762 flush_state <= COMMIT_TRANS)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004763 goto again;
4764
4765out:
Josef Bacik5d803662013-02-07 16:06:02 -05004766 if (ret == -ENOSPC &&
4767 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
4768 struct btrfs_block_rsv *global_rsv =
4769 &root->fs_info->global_block_rsv;
4770
4771 if (block_rsv != global_rsv &&
4772 !block_rsv_use_bytes(global_rsv, orig_bytes))
4773 ret = 0;
4774 }
Jeff Mahoneycab45e22013-10-16 16:27:01 -04004775 if (ret == -ENOSPC)
4776 trace_btrfs_space_reservation(root->fs_info,
4777 "space_info:enospc",
4778 space_info->flags, orig_bytes, 1);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004779 if (flushing) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004780 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004781 space_info->flush = 0;
4782 wake_up_all(&space_info->wait);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004783 spin_unlock(&space_info->lock);
4784 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004785 return ret;
4786}
4787
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004788static struct btrfs_block_rsv *get_block_rsv(
4789 const struct btrfs_trans_handle *trans,
4790 const struct btrfs_root *root)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004791{
Josef Bacik4c13d752011-08-30 11:31:29 -04004792 struct btrfs_block_rsv *block_rsv = NULL;
4793
Miao Xie27cdeb72014-04-02 19:51:05 +08004794 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Josef Bacik0e721102012-06-26 16:13:18 -04004795 block_rsv = trans->block_rsv;
4796
4797 if (root == root->fs_info->csum_root && trans->adding_csums)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004798 block_rsv = trans->block_rsv;
Josef Bacik4c13d752011-08-30 11:31:29 -04004799
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004800 if (root == root->fs_info->uuid_root)
4801 block_rsv = trans->block_rsv;
4802
Josef Bacik4c13d752011-08-30 11:31:29 -04004803 if (!block_rsv)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004804 block_rsv = root->block_rsv;
4805
4806 if (!block_rsv)
4807 block_rsv = &root->fs_info->empty_block_rsv;
4808
4809 return block_rsv;
4810}
4811
4812static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
4813 u64 num_bytes)
4814{
4815 int ret = -ENOSPC;
4816 spin_lock(&block_rsv->lock);
4817 if (block_rsv->reserved >= num_bytes) {
4818 block_rsv->reserved -= num_bytes;
4819 if (block_rsv->reserved < block_rsv->size)
4820 block_rsv->full = 0;
4821 ret = 0;
4822 }
4823 spin_unlock(&block_rsv->lock);
4824 return ret;
4825}
4826
4827static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
4828 u64 num_bytes, int update_size)
4829{
4830 spin_lock(&block_rsv->lock);
4831 block_rsv->reserved += num_bytes;
4832 if (update_size)
4833 block_rsv->size += num_bytes;
4834 else if (block_rsv->reserved >= block_rsv->size)
4835 block_rsv->full = 1;
4836 spin_unlock(&block_rsv->lock);
4837}
4838
Josef Bacikd52be812013-05-29 14:54:47 -04004839int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
4840 struct btrfs_block_rsv *dest, u64 num_bytes,
4841 int min_factor)
4842{
4843 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
4844 u64 min_bytes;
4845
4846 if (global_rsv->space_info != dest->space_info)
4847 return -ENOSPC;
4848
4849 spin_lock(&global_rsv->lock);
4850 min_bytes = div_factor(global_rsv->size, min_factor);
4851 if (global_rsv->reserved < min_bytes + num_bytes) {
4852 spin_unlock(&global_rsv->lock);
4853 return -ENOSPC;
4854 }
4855 global_rsv->reserved -= num_bytes;
4856 if (global_rsv->reserved < global_rsv->size)
4857 global_rsv->full = 0;
4858 spin_unlock(&global_rsv->lock);
4859
4860 block_rsv_add_bytes(dest, num_bytes, 1);
4861 return 0;
4862}
4863
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004864static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
4865 struct btrfs_block_rsv *block_rsv,
David Sterba62a45b62011-04-20 15:52:26 +02004866 struct btrfs_block_rsv *dest, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004867{
4868 struct btrfs_space_info *space_info = block_rsv->space_info;
4869
4870 spin_lock(&block_rsv->lock);
4871 if (num_bytes == (u64)-1)
4872 num_bytes = block_rsv->size;
4873 block_rsv->size -= num_bytes;
4874 if (block_rsv->reserved >= block_rsv->size) {
4875 num_bytes = block_rsv->reserved - block_rsv->size;
4876 block_rsv->reserved = block_rsv->size;
4877 block_rsv->full = 1;
4878 } else {
4879 num_bytes = 0;
4880 }
4881 spin_unlock(&block_rsv->lock);
4882
4883 if (num_bytes > 0) {
4884 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00004885 spin_lock(&dest->lock);
4886 if (!dest->full) {
4887 u64 bytes_to_add;
4888
4889 bytes_to_add = dest->size - dest->reserved;
4890 bytes_to_add = min(num_bytes, bytes_to_add);
4891 dest->reserved += bytes_to_add;
4892 if (dest->reserved >= dest->size)
4893 dest->full = 1;
4894 num_bytes -= bytes_to_add;
4895 }
4896 spin_unlock(&dest->lock);
4897 }
4898 if (num_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04004899 spin_lock(&space_info->lock);
Josef Bacikfb25e912011-07-26 17:00:46 -04004900 space_info->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004901 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004902 space_info->flags, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004903 spin_unlock(&space_info->lock);
4904 }
4905 }
4906}
4907
4908static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src,
4909 struct btrfs_block_rsv *dst, u64 num_bytes)
4910{
4911 int ret;
4912
4913 ret = block_rsv_use_bytes(src, num_bytes);
4914 if (ret)
4915 return ret;
4916
4917 block_rsv_add_bytes(dst, num_bytes, 1);
4918 return 0;
4919}
4920
Miao Xie66d8f3d2012-09-06 04:02:28 -06004921void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004922{
4923 memset(rsv, 0, sizeof(*rsv));
4924 spin_lock_init(&rsv->lock);
Miao Xie66d8f3d2012-09-06 04:02:28 -06004925 rsv->type = type;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004926}
4927
Miao Xie66d8f3d2012-09-06 04:02:28 -06004928struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root,
4929 unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004930{
4931 struct btrfs_block_rsv *block_rsv;
4932 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004933
4934 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
4935 if (!block_rsv)
4936 return NULL;
4937
Miao Xie66d8f3d2012-09-06 04:02:28 -06004938 btrfs_init_block_rsv(block_rsv, type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004939 block_rsv->space_info = __find_space_info(fs_info,
4940 BTRFS_BLOCK_GROUP_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004941 return block_rsv;
4942}
4943
4944void btrfs_free_block_rsv(struct btrfs_root *root,
4945 struct btrfs_block_rsv *rsv)
4946{
Josef Bacik2aaa6652012-08-29 14:27:18 -04004947 if (!rsv)
4948 return;
Josef Bacikdabdb642011-08-08 12:50:18 -04004949 btrfs_block_rsv_release(root, rsv, (u64)-1);
4950 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004951}
4952
Chris Masoncdfb0802015-04-06 18:17:00 -07004953void __btrfs_free_block_rsv(struct btrfs_block_rsv *rsv)
4954{
4955 kfree(rsv);
4956}
4957
Miao Xie08e007d2012-10-16 11:33:38 +00004958int btrfs_block_rsv_add(struct btrfs_root *root,
4959 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
4960 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004961{
4962 int ret;
4963
4964 if (num_bytes == 0)
4965 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004966
Miao Xie61b520a2011-11-10 20:45:05 -05004967 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004968 if (!ret) {
4969 block_rsv_add_bytes(block_rsv, num_bytes, 1);
4970 return 0;
4971 }
4972
Yan, Zhengf0486c62010-05-16 10:46:25 -04004973 return ret;
4974}
4975
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004976int btrfs_block_rsv_check(struct btrfs_root *root,
Josef Bacik36ba0222011-10-18 12:15:48 -04004977 struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004978{
4979 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004980 int ret = -ENOSPC;
4981
4982 if (!block_rsv)
4983 return 0;
4984
4985 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04004986 num_bytes = div_factor(block_rsv->size, min_factor);
4987 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004988 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004989 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004990
Josef Bacik36ba0222011-10-18 12:15:48 -04004991 return ret;
4992}
4993
Miao Xie08e007d2012-10-16 11:33:38 +00004994int btrfs_block_rsv_refill(struct btrfs_root *root,
4995 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
4996 enum btrfs_reserve_flush_enum flush)
Josef Bacik36ba0222011-10-18 12:15:48 -04004997{
4998 u64 num_bytes = 0;
4999 int ret = -ENOSPC;
5000
5001 if (!block_rsv)
5002 return 0;
5003
5004 spin_lock(&block_rsv->lock);
5005 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04005006 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005007 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04005008 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04005009 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005010 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04005011
Yan, Zhengf0486c62010-05-16 10:46:25 -04005012 if (!ret)
5013 return 0;
5014
Miao Xieaa38a712011-11-18 17:43:00 +08005015 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Josef Bacikdabdb642011-08-08 12:50:18 -04005016 if (!ret) {
5017 block_rsv_add_bytes(block_rsv, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005018 return 0;
5019 }
5020
Josef Bacik13553e52011-08-08 13:33:21 -04005021 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005022}
5023
5024int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv,
5025 struct btrfs_block_rsv *dst_rsv,
5026 u64 num_bytes)
5027{
5028 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
5029}
5030
5031void btrfs_block_rsv_release(struct btrfs_root *root,
5032 struct btrfs_block_rsv *block_rsv,
5033 u64 num_bytes)
5034{
5035 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Liu Bo17504582013-12-29 21:44:50 +08005036 if (global_rsv == block_rsv ||
Yan, Zhengf0486c62010-05-16 10:46:25 -04005037 block_rsv->space_info != global_rsv->space_info)
5038 global_rsv = NULL;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005039 block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv,
5040 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005041}
5042
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005043/*
5044 * helper to calculate size of global block reservation.
5045 * the desired value is sum of space used by extent tree,
5046 * checksum tree and root tree
5047 */
5048static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info)
5049{
5050 struct btrfs_space_info *sinfo;
5051 u64 num_bytes;
5052 u64 meta_used;
5053 u64 data_used;
David Sterba6c417612011-04-13 15:41:04 +02005054 int csum_size = btrfs_super_csum_size(fs_info->super_copy);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005055
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005056 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA);
5057 spin_lock(&sinfo->lock);
5058 data_used = sinfo->bytes_used;
5059 spin_unlock(&sinfo->lock);
5060
5061 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
5062 spin_lock(&sinfo->lock);
Josef Bacik6d487552010-10-15 15:13:32 -04005063 if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA)
5064 data_used = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005065 meta_used = sinfo->bytes_used;
5066 spin_unlock(&sinfo->lock);
5067
5068 num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) *
5069 csum_size * 2;
David Sterbaf8c269d2015-01-16 17:21:12 +01005070 num_bytes += div_u64(data_used + meta_used, 50);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005071
5072 if (num_bytes * 3 > meta_used)
David Sterbaf8c269d2015-01-16 17:21:12 +01005073 num_bytes = div_u64(meta_used, 3);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005074
David Sterba707e8a02014-06-04 19:22:26 +02005075 return ALIGN(num_bytes, fs_info->extent_root->nodesize << 10);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005076}
5077
5078static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
5079{
5080 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
5081 struct btrfs_space_info *sinfo = block_rsv->space_info;
5082 u64 num_bytes;
5083
5084 num_bytes = calc_global_metadata_size(fs_info);
5085
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005086 spin_lock(&sinfo->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005087 spin_lock(&block_rsv->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005088
Josef Bacikfdf30d12013-03-26 15:31:45 -04005089 block_rsv->size = min_t(u64, num_bytes, 512 * 1024 * 1024);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005090
5091 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
Josef Bacik6d487552010-10-15 15:13:32 -04005092 sinfo->bytes_reserved + sinfo->bytes_readonly +
5093 sinfo->bytes_may_use;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005094
5095 if (sinfo->total_bytes > num_bytes) {
5096 num_bytes = sinfo->total_bytes - num_bytes;
5097 block_rsv->reserved += num_bytes;
Josef Bacikfb25e912011-07-26 17:00:46 -04005098 sinfo->bytes_may_use += num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005099 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04005100 sinfo->flags, num_bytes, 1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005101 }
5102
5103 if (block_rsv->reserved >= block_rsv->size) {
5104 num_bytes = block_rsv->reserved - block_rsv->size;
Josef Bacikfb25e912011-07-26 17:00:46 -04005105 sinfo->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005106 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04005107 sinfo->flags, num_bytes, 0);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005108 block_rsv->reserved = block_rsv->size;
5109 block_rsv->full = 1;
5110 }
David Sterba182608c2011-05-05 13:13:16 +02005111
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005112 spin_unlock(&block_rsv->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005113 spin_unlock(&sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005114}
5115
Yan, Zhengf0486c62010-05-16 10:46:25 -04005116static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
5117{
5118 struct btrfs_space_info *space_info;
5119
5120 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
5121 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005122
5123 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005124 fs_info->global_block_rsv.space_info = space_info;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005125 fs_info->delalloc_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005126 fs_info->trans_block_rsv.space_info = space_info;
5127 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04005128 fs_info->delayed_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005129
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005130 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
5131 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
5132 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
5133 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Stefan Behrens3a6cad92013-05-16 14:48:19 +00005134 if (fs_info->quota_root)
5135 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005136 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005137
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005138 update_global_block_rsv(fs_info);
5139}
5140
5141static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
5142{
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005143 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
5144 (u64)-1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005145 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
5146 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
5147 WARN_ON(fs_info->trans_block_rsv.size > 0);
5148 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
5149 WARN_ON(fs_info->chunk_block_rsv.size > 0);
5150 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04005151 WARN_ON(fs_info->delayed_block_rsv.size > 0);
5152 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04005153}
5154
Yan, Zhenga22285a2010-05-16 10:48:46 -04005155void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
5156 struct btrfs_root *root)
5157{
Josef Bacik0e721102012-06-26 16:13:18 -04005158 if (!trans->block_rsv)
5159 return;
5160
Yan, Zhenga22285a2010-05-16 10:48:46 -04005161 if (!trans->bytes_reserved)
5162 return;
5163
Chris Masone77266e2012-02-24 10:39:05 -05005164 trace_btrfs_space_reservation(root->fs_info, "transaction",
Liu Bo2bcc0322012-03-29 09:57:44 -04005165 trans->transid, trans->bytes_reserved, 0);
Josef Bacikb24e03d2011-10-14 14:40:17 -04005166 btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005167 trans->bytes_reserved = 0;
5168}
5169
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005170/*
5171 * To be called after all the new block groups attached to the transaction
5172 * handle have been created (btrfs_create_pending_block_groups()).
5173 */
5174void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
5175{
5176 struct btrfs_fs_info *fs_info = trans->root->fs_info;
5177
5178 if (!trans->chunk_bytes_reserved)
5179 return;
5180
5181 WARN_ON_ONCE(!list_empty(&trans->new_bgs));
5182
5183 block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL,
5184 trans->chunk_bytes_reserved);
5185 trans->chunk_bytes_reserved = 0;
5186}
5187
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005188/* Can only return 0 or -ENOSPC */
Yan, Zhengd68fc572010-05-16 10:49:58 -04005189int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
5190 struct inode *inode)
5191{
5192 struct btrfs_root *root = BTRFS_I(inode)->root;
5193 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
5194 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
5195
5196 /*
Josef Bacikfcb80c22011-05-03 10:40:22 -04005197 * We need to hold space in order to delete our orphan item once we've
5198 * added it, so this takes the reservation so we can release it later
5199 * when we are truly done with the orphan item.
Yan, Zhengd68fc572010-05-16 10:49:58 -04005200 */
Chris Masonff5714c2011-05-28 07:00:39 -04005201 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005202 trace_btrfs_space_reservation(root->fs_info, "orphan",
5203 btrfs_ino(inode), num_bytes, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04005204 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
5205}
5206
5207void btrfs_orphan_release_metadata(struct inode *inode)
5208{
5209 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonff5714c2011-05-28 07:00:39 -04005210 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005211 trace_btrfs_space_reservation(root->fs_info, "orphan",
5212 btrfs_ino(inode), num_bytes, 0);
Yan, Zhengd68fc572010-05-16 10:49:58 -04005213 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
5214}
5215
Miao Xied5c12072013-02-28 10:04:33 +00005216/*
5217 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
5218 * root: the root of the parent directory
5219 * rsv: block reservation
5220 * items: the number of items that we need do reservation
5221 * qgroup_reserved: used to return the reserved size in qgroup
5222 *
5223 * This function is used to reserve the space for snapshot/subvolume
5224 * creation and deletion. Those operations are different with the
5225 * common file/directory operations, they change two fs/file trees
5226 * and root tree, the number of items that the qgroup reserves is
5227 * different with the free space reservation. So we can not use
5228 * the space reseravtion mechanism in start_transaction().
5229 */
5230int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
5231 struct btrfs_block_rsv *rsv,
5232 int items,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005233 u64 *qgroup_reserved,
5234 bool use_global_rsv)
Yan, Zhenga22285a2010-05-16 10:48:46 -04005235{
Miao Xied5c12072013-02-28 10:04:33 +00005236 u64 num_bytes;
5237 int ret;
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005238 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Miao Xied5c12072013-02-28 10:04:33 +00005239
5240 if (root->fs_info->quota_enabled) {
5241 /* One for parent inode, two for dir entries */
David Sterba707e8a02014-06-04 19:22:26 +02005242 num_bytes = 3 * root->nodesize;
Miao Xied5c12072013-02-28 10:04:33 +00005243 ret = btrfs_qgroup_reserve(root, num_bytes);
5244 if (ret)
5245 return ret;
5246 } else {
5247 num_bytes = 0;
5248 }
5249
5250 *qgroup_reserved = num_bytes;
5251
5252 num_bytes = btrfs_calc_trans_metadata_size(root, items);
5253 rsv->space_info = __find_space_info(root->fs_info,
5254 BTRFS_BLOCK_GROUP_METADATA);
5255 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
5256 BTRFS_RESERVE_FLUSH_ALL);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005257
5258 if (ret == -ENOSPC && use_global_rsv)
5259 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes);
5260
Miao Xied5c12072013-02-28 10:04:33 +00005261 if (ret) {
5262 if (*qgroup_reserved)
5263 btrfs_qgroup_free(root, *qgroup_reserved);
5264 }
5265
5266 return ret;
5267}
5268
5269void btrfs_subvolume_release_metadata(struct btrfs_root *root,
5270 struct btrfs_block_rsv *rsv,
5271 u64 qgroup_reserved)
5272{
5273 btrfs_block_rsv_release(root, rsv, (u64)-1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005274}
5275
Josef Bacik7709cde2011-08-04 10:25:02 -04005276/**
5277 * drop_outstanding_extent - drop an outstanding extent
5278 * @inode: the inode we're dropping the extent for
Josef Bacikdcab6a32015-02-11 15:08:59 -05005279 * @num_bytes: the number of bytes we're relaseing.
Josef Bacik7709cde2011-08-04 10:25:02 -04005280 *
5281 * This is called when we are freeing up an outstanding extent, either called
5282 * after an error or after an extent is written. This will return the number of
5283 * reserved extents that need to be freed. This must be called with
5284 * BTRFS_I(inode)->lock held.
5285 */
Josef Bacikdcab6a32015-02-11 15:08:59 -05005286static unsigned drop_outstanding_extent(struct inode *inode, u64 num_bytes)
Josef Bacik9e0baf62011-07-15 15:16:44 +00005287{
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005288 unsigned drop_inode_space = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005289 unsigned dropped_extents = 0;
Josef Bacikdcab6a32015-02-11 15:08:59 -05005290 unsigned num_extents = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005291
Josef Bacikdcab6a32015-02-11 15:08:59 -05005292 num_extents = (unsigned)div64_u64(num_bytes +
5293 BTRFS_MAX_EXTENT_SIZE - 1,
5294 BTRFS_MAX_EXTENT_SIZE);
5295 ASSERT(num_extents);
5296 ASSERT(BTRFS_I(inode)->outstanding_extents >= num_extents);
5297 BTRFS_I(inode)->outstanding_extents -= num_extents;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005298
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005299 if (BTRFS_I(inode)->outstanding_extents == 0 &&
Josef Bacik72ac3c02012-05-23 14:13:11 -04005300 test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5301 &BTRFS_I(inode)->runtime_flags))
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005302 drop_inode_space = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005303
Josef Bacik9e0baf62011-07-15 15:16:44 +00005304 /*
5305 * If we have more or the same amount of outsanding extents than we have
5306 * reserved then we need to leave the reserved extents count alone.
5307 */
5308 if (BTRFS_I(inode)->outstanding_extents >=
5309 BTRFS_I(inode)->reserved_extents)
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005310 return drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005311
5312 dropped_extents = BTRFS_I(inode)->reserved_extents -
5313 BTRFS_I(inode)->outstanding_extents;
5314 BTRFS_I(inode)->reserved_extents -= dropped_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005315 return dropped_extents + drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005316}
5317
Josef Bacik7709cde2011-08-04 10:25:02 -04005318/**
5319 * calc_csum_metadata_size - return the amount of metada space that must be
5320 * reserved/free'd for the given bytes.
5321 * @inode: the inode we're manipulating
5322 * @num_bytes: the number of bytes in question
5323 * @reserve: 1 if we are reserving space, 0 if we are freeing space
5324 *
5325 * This adjusts the number of csum_bytes in the inode and then returns the
5326 * correct amount of metadata that must either be reserved or freed. We
5327 * calculate how many checksums we can fit into one leaf and then divide the
5328 * number of bytes that will need to be checksumed by this value to figure out
5329 * how many checksums will be required. If we are adding bytes then the number
5330 * may go up and we will return the number of additional bytes that must be
5331 * reserved. If it is going down we will return the number of bytes that must
5332 * be freed.
5333 *
5334 * This must be called with BTRFS_I(inode)->lock held.
5335 */
5336static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes,
5337 int reserve)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005338{
Josef Bacik7709cde2011-08-04 10:25:02 -04005339 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik12621332015-02-03 07:50:16 -08005340 u64 old_csums, num_csums;
Josef Bacik7709cde2011-08-04 10:25:02 -04005341
5342 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM &&
5343 BTRFS_I(inode)->csum_bytes == 0)
5344 return 0;
5345
Chris Mason28f75a02015-02-04 06:59:29 -08005346 old_csums = btrfs_csum_bytes_to_leaves(root, BTRFS_I(inode)->csum_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04005347 if (reserve)
5348 BTRFS_I(inode)->csum_bytes += num_bytes;
5349 else
5350 BTRFS_I(inode)->csum_bytes -= num_bytes;
Chris Mason28f75a02015-02-04 06:59:29 -08005351 num_csums = btrfs_csum_bytes_to_leaves(root, BTRFS_I(inode)->csum_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04005352
5353 /* No change, no need to reserve more */
5354 if (old_csums == num_csums)
5355 return 0;
5356
5357 if (reserve)
5358 return btrfs_calc_trans_metadata_size(root,
5359 num_csums - old_csums);
5360
5361 return btrfs_calc_trans_metadata_size(root, old_csums - num_csums);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005362}
5363
5364int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
5365{
5366 struct btrfs_root *root = BTRFS_I(inode)->root;
5367 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005368 u64 to_reserve = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05005369 u64 csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005370 unsigned nr_extents = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05005371 int extra_reserve = 0;
Miao Xie08e007d2012-10-16 11:33:38 +00005372 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
Jan Schmidteb6b88d2013-01-27 23:26:00 -07005373 int ret = 0;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005374 bool delalloc_lock = true;
Wang Shilong88e081bf2013-03-01 11:36:01 +00005375 u64 to_free = 0;
5376 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005377
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005378 /* If we are a free space inode we need to not flush since we will be in
5379 * the middle of a transaction commit. We also don't need the delalloc
5380 * mutex since we won't race with anybody. We need this mostly to make
5381 * lockdep shut its filthy mouth.
5382 */
5383 if (btrfs_is_free_space_inode(inode)) {
Miao Xie08e007d2012-10-16 11:33:38 +00005384 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005385 delalloc_lock = false;
5386 }
Josef Bacikc09544e2011-08-30 10:19:10 -04005387
Miao Xie08e007d2012-10-16 11:33:38 +00005388 if (flush != BTRFS_RESERVE_NO_FLUSH &&
5389 btrfs_transaction_in_commit(root->fs_info))
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005390 schedule_timeout(1);
5391
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005392 if (delalloc_lock)
5393 mutex_lock(&BTRFS_I(inode)->delalloc_mutex);
5394
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005395 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005396
Josef Bacik9e0baf62011-07-15 15:16:44 +00005397 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik6a41dd02015-03-13 15:12:23 -04005398 nr_extents = (unsigned)div64_u64(num_bytes +
5399 BTRFS_MAX_EXTENT_SIZE - 1,
5400 BTRFS_MAX_EXTENT_SIZE);
5401 BTRFS_I(inode)->outstanding_extents += nr_extents;
5402 nr_extents = 0;
Josef Bacik57a45ced2011-01-25 16:30:38 -05005403
Josef Bacik9e0baf62011-07-15 15:16:44 +00005404 if (BTRFS_I(inode)->outstanding_extents >
Josef Bacik660d3f62011-12-09 11:18:51 -05005405 BTRFS_I(inode)->reserved_extents)
Josef Bacik9e0baf62011-07-15 15:16:44 +00005406 nr_extents = BTRFS_I(inode)->outstanding_extents -
5407 BTRFS_I(inode)->reserved_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005408
5409 /*
5410 * Add an item to reserve for updating the inode when we complete the
5411 * delalloc io.
5412 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04005413 if (!test_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5414 &BTRFS_I(inode)->runtime_flags)) {
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005415 nr_extents++;
Josef Bacik660d3f62011-12-09 11:18:51 -05005416 extra_reserve = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005417 }
5418
5419 to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04005420 to_reserve += calc_csum_metadata_size(inode, num_bytes, 1);
Josef Bacik660d3f62011-12-09 11:18:51 -05005421 csum_bytes = BTRFS_I(inode)->csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005422 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05005423
Wang Shilong88e081bf2013-03-01 11:36:01 +00005424 if (root->fs_info->quota_enabled) {
Dongsheng Yang237c0e92014-12-29 06:23:05 -05005425 ret = btrfs_qgroup_reserve(root, nr_extents * root->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005426 if (ret)
5427 goto out_fail;
Wang Shilonga9870c02013-03-01 11:33:01 +00005428 }
Arne Jansenc5567232011-09-14 15:44:05 +02005429
Wang Shilong88e081bf2013-03-01 11:36:01 +00005430 ret = reserve_metadata_bytes(root, block_rsv, to_reserve, flush);
5431 if (unlikely(ret)) {
5432 if (root->fs_info->quota_enabled)
Dongsheng Yang237c0e92014-12-29 06:23:05 -05005433 btrfs_qgroup_free(root, nr_extents * root->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005434 goto out_fail;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005435 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005436
Josef Bacik660d3f62011-12-09 11:18:51 -05005437 spin_lock(&BTRFS_I(inode)->lock);
5438 if (extra_reserve) {
Josef Bacik72ac3c02012-05-23 14:13:11 -04005439 set_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5440 &BTRFS_I(inode)->runtime_flags);
Josef Bacik660d3f62011-12-09 11:18:51 -05005441 nr_extents--;
5442 }
5443 BTRFS_I(inode)->reserved_extents += nr_extents;
5444 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005445
5446 if (delalloc_lock)
5447 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
Josef Bacik660d3f62011-12-09 11:18:51 -05005448
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005449 if (to_reserve)
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05305450 trace_btrfs_space_reservation(root->fs_info, "delalloc",
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005451 btrfs_ino(inode), to_reserve, 1);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005452 block_rsv_add_bytes(block_rsv, to_reserve, 1);
5453
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005454 return 0;
Wang Shilong88e081bf2013-03-01 11:36:01 +00005455
5456out_fail:
5457 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacikdcab6a32015-02-11 15:08:59 -05005458 dropped = drop_outstanding_extent(inode, num_bytes);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005459 /*
5460 * If the inodes csum_bytes is the same as the original
5461 * csum_bytes then we know we haven't raced with any free()ers
5462 * so we can just reduce our inodes csum bytes and carry on.
Wang Shilong88e081bf2013-03-01 11:36:01 +00005463 */
Josef Bacikf4881bc2013-03-25 16:03:35 -04005464 if (BTRFS_I(inode)->csum_bytes == csum_bytes) {
Wang Shilong88e081bf2013-03-01 11:36:01 +00005465 calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacikf4881bc2013-03-25 16:03:35 -04005466 } else {
5467 u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes;
5468 u64 bytes;
5469
5470 /*
5471 * This is tricky, but first we need to figure out how much we
5472 * free'd from any free-ers that occured during this
5473 * reservation, so we reset ->csum_bytes to the csum_bytes
5474 * before we dropped our lock, and then call the free for the
5475 * number of bytes that were freed while we were trying our
5476 * reservation.
5477 */
5478 bytes = csum_bytes - BTRFS_I(inode)->csum_bytes;
5479 BTRFS_I(inode)->csum_bytes = csum_bytes;
5480 to_free = calc_csum_metadata_size(inode, bytes, 0);
5481
5482
5483 /*
5484 * Now we need to see how much we would have freed had we not
5485 * been making this reservation and our ->csum_bytes were not
5486 * artificially inflated.
5487 */
5488 BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes;
5489 bytes = csum_bytes - orig_csum_bytes;
5490 bytes = calc_csum_metadata_size(inode, bytes, 0);
5491
5492 /*
5493 * Now reset ->csum_bytes to what it should be. If bytes is
5494 * more than to_free then we would have free'd more space had we
5495 * not had an artificially high ->csum_bytes, so we need to free
5496 * the remainder. If bytes is the same or less then we don't
5497 * need to do anything, the other free-ers did the correct
5498 * thing.
5499 */
5500 BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes;
5501 if (bytes > to_free)
5502 to_free = bytes - to_free;
5503 else
5504 to_free = 0;
5505 }
Wang Shilong88e081bf2013-03-01 11:36:01 +00005506 spin_unlock(&BTRFS_I(inode)->lock);
Dongsheng Yange2d1f922015-02-06 10:26:52 -05005507 if (dropped)
Wang Shilong88e081bf2013-03-01 11:36:01 +00005508 to_free += btrfs_calc_trans_metadata_size(root, dropped);
5509
5510 if (to_free) {
5511 btrfs_block_rsv_release(root, block_rsv, to_free);
5512 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5513 btrfs_ino(inode), to_free, 0);
5514 }
5515 if (delalloc_lock)
5516 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
5517 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005518}
5519
Josef Bacik7709cde2011-08-04 10:25:02 -04005520/**
5521 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
5522 * @inode: the inode to release the reservation for
5523 * @num_bytes: the number of bytes we're releasing
5524 *
5525 * This will release the metadata reservation for an inode. This can be called
5526 * once we complete IO for a given set of bytes to release their metadata
5527 * reservations.
5528 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005529void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
5530{
5531 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005532 u64 to_free = 0;
5533 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005534
5535 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik7709cde2011-08-04 10:25:02 -04005536 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacikdcab6a32015-02-11 15:08:59 -05005537 dropped = drop_outstanding_extent(inode, num_bytes);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005538
Miao Xie09348562013-02-07 10:12:07 +00005539 if (num_bytes)
5540 to_free = calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacik7709cde2011-08-04 10:25:02 -04005541 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00005542 if (dropped > 0)
5543 to_free += btrfs_calc_trans_metadata_size(root, dropped);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005544
Josef Bacik6a3891c2015-03-16 17:38:52 -04005545 if (btrfs_test_is_dummy_root(root))
5546 return;
5547
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005548 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5549 btrfs_ino(inode), to_free, 0);
Arne Jansenc5567232011-09-14 15:44:05 +02005550
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005551 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
5552 to_free);
5553}
5554
Josef Bacik7709cde2011-08-04 10:25:02 -04005555/**
5556 * btrfs_delalloc_reserve_space - reserve data and metadata space for delalloc
5557 * @inode: inode we're writing to
5558 * @num_bytes: the number of bytes we want to allocate
5559 *
5560 * This will do the following things
5561 *
5562 * o reserve space in the data space info for num_bytes
5563 * o reserve space in the metadata space info based on number of outstanding
5564 * extents and how much csums will be needed
5565 * o add to the inodes ->delalloc_bytes
5566 * o add it to the fs_info's delalloc inodes list.
5567 *
5568 * This will return 0 for success and -ENOSPC if there is no space left.
5569 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005570int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes)
5571{
5572 int ret;
5573
Dongsheng Yange2d1f922015-02-06 10:26:52 -05005574 ret = btrfs_check_data_free_space(inode, num_bytes, num_bytes);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005575 if (ret)
5576 return ret;
5577
5578 ret = btrfs_delalloc_reserve_metadata(inode, num_bytes);
5579 if (ret) {
5580 btrfs_free_reserved_data_space(inode, num_bytes);
5581 return ret;
5582 }
5583
5584 return 0;
5585}
5586
Josef Bacik7709cde2011-08-04 10:25:02 -04005587/**
5588 * btrfs_delalloc_release_space - release data and metadata space for delalloc
5589 * @inode: inode we're releasing space for
5590 * @num_bytes: the number of bytes we want to free up
5591 *
5592 * This must be matched with a call to btrfs_delalloc_reserve_space. This is
5593 * called in the case that we don't need the metadata AND data reservations
5594 * anymore. So if there is an error or we insert an inline extent.
5595 *
5596 * This function will release the metadata space that was not used and will
5597 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
5598 * list if there are no delalloc bytes left.
5599 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005600void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes)
5601{
5602 btrfs_delalloc_release_metadata(inode, num_bytes);
5603 btrfs_free_reserved_data_space(inode, num_bytes);
5604}
5605
Josef Bacikce93ec52014-11-17 15:45:48 -05005606static int update_block_group(struct btrfs_trans_handle *trans,
5607 struct btrfs_root *root, u64 bytenr,
5608 u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04005609{
Josef Bacik0af3d002010-06-21 14:48:16 -04005610 struct btrfs_block_group_cache *cache = NULL;
Chris Mason9078a3e2007-04-26 16:46:15 -04005611 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04005612 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005613 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04005614 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04005615 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04005616
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005617 /* block accounting for super block */
Miao Xieeb73c1b2013-05-15 07:48:22 +00005618 spin_lock(&info->delalloc_root_lock);
David Sterba6c417612011-04-13 15:41:04 +02005619 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005620 if (alloc)
5621 old_val += num_bytes;
5622 else
5623 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02005624 btrfs_set_super_bytes_used(info->super_copy, old_val);
Miao Xieeb73c1b2013-05-15 07:48:22 +00005625 spin_unlock(&info->delalloc_root_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005626
Chris Masond3977122009-01-05 21:25:51 -05005627 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04005628 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05005629 if (!cache)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005630 return -ENOENT;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005631 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
5632 BTRFS_BLOCK_GROUP_RAID1 |
5633 BTRFS_BLOCK_GROUP_RAID10))
5634 factor = 2;
5635 else
5636 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04005637 /*
5638 * If this block group has free space cache written out, we
5639 * need to make sure to load it if we are removing space. This
5640 * is because we need the unpinning stage to actually add the
5641 * space back to the block group, otherwise we will leak space.
5642 */
5643 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Liu Bof6373bf2012-12-27 09:01:18 +00005644 cache_block_group(cache, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04005645
Chris Masondb945352007-10-15 16:15:53 -04005646 byte_in_group = bytenr - cache->key.objectid;
5647 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04005648
Josef Bacik25179202008-10-29 14:49:05 -04005649 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04005650 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04005651
Josef Bacik73bc1872011-10-03 14:07:49 -04005652 if (btrfs_test_opt(root, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04005653 cache->disk_cache_state < BTRFS_DC_CLEAR)
5654 cache->disk_cache_state = BTRFS_DC_CLEAR;
5655
Chris Mason9078a3e2007-04-26 16:46:15 -04005656 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04005657 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04005658 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04005659 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04005660 btrfs_set_block_group_used(&cache->item, old_val);
5661 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04005662 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005663 cache->space_info->bytes_used += num_bytes;
5664 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04005665 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005666 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04005667 } else {
Chris Masondb945352007-10-15 16:15:53 -04005668 old_val -= num_bytes;
Filipe Mananaae0ab002014-11-26 15:28:52 +00005669 btrfs_set_block_group_used(&cache->item, old_val);
5670 cache->pinned += num_bytes;
5671 cache->space_info->bytes_pinned += num_bytes;
5672 cache->space_info->bytes_used -= num_bytes;
5673 cache->space_info->disk_used -= num_bytes * factor;
5674 spin_unlock(&cache->lock);
5675 spin_unlock(&cache->space_info->lock);
Josef Bacik47ab2a62014-09-18 11:20:02 -04005676
Filipe Mananaae0ab002014-11-26 15:28:52 +00005677 set_extent_dirty(info->pinned_extents,
5678 bytenr, bytenr + num_bytes - 1,
5679 GFP_NOFS | __GFP_NOFAIL);
Josef Bacik47ab2a62014-09-18 11:20:02 -04005680 /*
5681 * No longer have used bytes in this block group, queue
5682 * it for deletion.
5683 */
5684 if (old_val == 0) {
5685 spin_lock(&info->unused_bgs_lock);
5686 if (list_empty(&cache->bg_list)) {
5687 btrfs_get_block_group(cache);
5688 list_add_tail(&cache->bg_list,
5689 &info->unused_bgs);
5690 }
5691 spin_unlock(&info->unused_bgs_lock);
5692 }
Chris Masoncd1bc462007-04-27 10:08:34 -04005693 }
Chris Mason1bbc6212015-04-06 12:46:08 -07005694
5695 spin_lock(&trans->transaction->dirty_bgs_lock);
5696 if (list_empty(&cache->dirty_list)) {
5697 list_add_tail(&cache->dirty_list,
5698 &trans->transaction->dirty_bgs);
5699 trans->transaction->num_dirty_bgs++;
5700 btrfs_get_block_group(cache);
5701 }
5702 spin_unlock(&trans->transaction->dirty_bgs_lock);
5703
Chris Masonfa9c0d792009-04-03 09:47:43 -04005704 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04005705 total -= num_bytes;
5706 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005707 }
5708 return 0;
5709}
Chris Mason6324fbf2008-03-24 15:01:59 -04005710
Chris Masona061fc82008-05-07 11:43:44 -04005711static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
5712{
Josef Bacik0f9dd462008-09-23 13:14:11 -04005713 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05005714 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005715
Liu Boa1897fd2012-12-27 09:01:23 +00005716 spin_lock(&root->fs_info->block_group_cache_lock);
5717 bytenr = root->fs_info->first_logical_byte;
5718 spin_unlock(&root->fs_info->block_group_cache_lock);
5719
5720 if (bytenr < (u64)-1)
5721 return bytenr;
5722
Josef Bacik0f9dd462008-09-23 13:14:11 -04005723 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
5724 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04005725 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005726
Yan Zhengd2fb3432008-12-11 16:30:39 -05005727 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005728 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05005729
5730 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04005731}
5732
Yan, Zhengf0486c62010-05-16 10:46:25 -04005733static int pin_down_extent(struct btrfs_root *root,
5734 struct btrfs_block_group_cache *cache,
5735 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05005736{
Yan Zheng11833d62009-09-11 16:11:19 -04005737 spin_lock(&cache->space_info->lock);
5738 spin_lock(&cache->lock);
5739 cache->pinned += num_bytes;
5740 cache->space_info->bytes_pinned += num_bytes;
5741 if (reserved) {
5742 cache->reserved -= num_bytes;
5743 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05005744 }
Yan Zheng11833d62009-09-11 16:11:19 -04005745 spin_unlock(&cache->lock);
5746 spin_unlock(&cache->space_info->lock);
5747
Yan, Zhengf0486c62010-05-16 10:46:25 -04005748 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
5749 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Dongsheng Yange2d1f922015-02-06 10:26:52 -05005750 if (reserved)
Josef Bacik0be5dc62013-10-07 15:18:52 -04005751 trace_btrfs_reserved_extent_free(root, bytenr, num_bytes);
Yan324ae4d2007-11-16 14:57:08 -05005752 return 0;
5753}
Chris Mason9078a3e2007-04-26 16:46:15 -04005754
Yan, Zhengf0486c62010-05-16 10:46:25 -04005755/*
5756 * this function must be called within transaction
5757 */
5758int btrfs_pin_extent(struct btrfs_root *root,
5759 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04005760{
Yan, Zhengf0486c62010-05-16 10:46:25 -04005761 struct btrfs_block_group_cache *cache;
5762
5763 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005764 BUG_ON(!cache); /* Logic error */
Yan, Zhengf0486c62010-05-16 10:46:25 -04005765
5766 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
5767
5768 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04005769 return 0;
5770}
Zheng Yane8569812008-09-26 10:05:48 -04005771
Yan, Zhengf0486c62010-05-16 10:46:25 -04005772/*
Chris Masone688b7252011-10-31 20:52:39 -04005773 * this function must be called within transaction
Yan, Zhengf0486c62010-05-16 10:46:25 -04005774 */
Liu Bodcfac412012-12-27 09:01:20 +00005775int btrfs_pin_extent_for_log_replay(struct btrfs_root *root,
Chris Masone688b7252011-10-31 20:52:39 -04005776 u64 bytenr, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005777{
Chris Masone688b7252011-10-31 20:52:39 -04005778 struct btrfs_block_group_cache *cache;
Josef Bacikb50c6e22013-04-25 15:55:30 -04005779 int ret;
Chris Masone688b7252011-10-31 20:52:39 -04005780
5781 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005782 if (!cache)
5783 return -EINVAL;
Chris Masone688b7252011-10-31 20:52:39 -04005784
5785 /*
5786 * pull in the free space cache (if any) so that our pin
5787 * removes the free space from the cache. We have load_only set
5788 * to one because the slow code to read in the free extents does check
5789 * the pinned extents.
5790 */
Liu Bof6373bf2012-12-27 09:01:18 +00005791 cache_block_group(cache, 1);
Chris Masone688b7252011-10-31 20:52:39 -04005792
5793 pin_down_extent(root, cache, bytenr, num_bytes, 0);
5794
5795 /* remove us from the free space cache (if we're there at all) */
Josef Bacikb50c6e22013-04-25 15:55:30 -04005796 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
Chris Masone688b7252011-10-31 20:52:39 -04005797 btrfs_put_block_group(cache);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005798 return ret;
Chris Masone688b7252011-10-31 20:52:39 -04005799}
5800
Josef Bacik8c2a1a32013-06-06 13:19:32 -04005801static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes)
5802{
5803 int ret;
5804 struct btrfs_block_group_cache *block_group;
5805 struct btrfs_caching_control *caching_ctl;
5806
5807 block_group = btrfs_lookup_block_group(root->fs_info, start);
5808 if (!block_group)
5809 return -EINVAL;
5810
5811 cache_block_group(block_group, 0);
5812 caching_ctl = get_caching_control(block_group);
5813
5814 if (!caching_ctl) {
5815 /* Logic error */
5816 BUG_ON(!block_group_cache_done(block_group));
5817 ret = btrfs_remove_free_space(block_group, start, num_bytes);
5818 } else {
5819 mutex_lock(&caching_ctl->mutex);
5820
5821 if (start >= caching_ctl->progress) {
5822 ret = add_excluded_extent(root, start, num_bytes);
5823 } else if (start + num_bytes <= caching_ctl->progress) {
5824 ret = btrfs_remove_free_space(block_group,
5825 start, num_bytes);
5826 } else {
5827 num_bytes = caching_ctl->progress - start;
5828 ret = btrfs_remove_free_space(block_group,
5829 start, num_bytes);
5830 if (ret)
5831 goto out_lock;
5832
5833 num_bytes = (start + num_bytes) -
5834 caching_ctl->progress;
5835 start = caching_ctl->progress;
5836 ret = add_excluded_extent(root, start, num_bytes);
5837 }
5838out_lock:
5839 mutex_unlock(&caching_ctl->mutex);
5840 put_caching_control(caching_ctl);
5841 }
5842 btrfs_put_block_group(block_group);
5843 return ret;
5844}
5845
5846int btrfs_exclude_logged_extents(struct btrfs_root *log,
5847 struct extent_buffer *eb)
5848{
5849 struct btrfs_file_extent_item *item;
5850 struct btrfs_key key;
5851 int found_type;
5852 int i;
5853
5854 if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS))
5855 return 0;
5856
5857 for (i = 0; i < btrfs_header_nritems(eb); i++) {
5858 btrfs_item_key_to_cpu(eb, &key, i);
5859 if (key.type != BTRFS_EXTENT_DATA_KEY)
5860 continue;
5861 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
5862 found_type = btrfs_file_extent_type(eb, item);
5863 if (found_type == BTRFS_FILE_EXTENT_INLINE)
5864 continue;
5865 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
5866 continue;
5867 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
5868 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
5869 __exclude_logged_extent(log, key.objectid, key.offset);
5870 }
5871
5872 return 0;
5873}
5874
Josef Bacikfb25e912011-07-26 17:00:46 -04005875/**
5876 * btrfs_update_reserved_bytes - update the block_group and space info counters
5877 * @cache: The cache we are manipulating
5878 * @num_bytes: The number of bytes in question
5879 * @reserve: One of the reservation enums
Miao Xiee570fd22014-06-19 10:42:50 +08005880 * @delalloc: The blocks are allocated for the delalloc write
Josef Bacikfb25e912011-07-26 17:00:46 -04005881 *
5882 * This is called by the allocator when it reserves space, or by somebody who is
5883 * freeing space that was never actually used on disk. For example if you
5884 * reserve some space for a new leaf in transaction A and before transaction A
5885 * commits you free that leaf, you call this with reserve set to 0 in order to
5886 * clear the reservation.
5887 *
5888 * Metadata reservations should be called with RESERVE_ALLOC so we do the proper
5889 * ENOSPC accounting. For data we handle the reservation through clearing the
5890 * delalloc bits in the io_tree. We have to do this since we could end up
5891 * allocating less disk space for the amount of data we have reserved in the
5892 * case of compression.
5893 *
5894 * If this is a reservation and the block group has become read only we cannot
5895 * make the reservation and return -EAGAIN, otherwise this function always
5896 * succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04005897 */
Josef Bacikfb25e912011-07-26 17:00:46 -04005898static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
Miao Xiee570fd22014-06-19 10:42:50 +08005899 u64 num_bytes, int reserve, int delalloc)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005900{
Josef Bacikfb25e912011-07-26 17:00:46 -04005901 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005902 int ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005903
Josef Bacikfb25e912011-07-26 17:00:46 -04005904 spin_lock(&space_info->lock);
5905 spin_lock(&cache->lock);
5906 if (reserve != RESERVE_FREE) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005907 if (cache->ro) {
5908 ret = -EAGAIN;
5909 } else {
Josef Bacikfb25e912011-07-26 17:00:46 -04005910 cache->reserved += num_bytes;
5911 space_info->bytes_reserved += num_bytes;
5912 if (reserve == RESERVE_ALLOC) {
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005913 trace_btrfs_space_reservation(cache->fs_info,
Liu Bo2bcc0322012-03-29 09:57:44 -04005914 "space_info", space_info->flags,
5915 num_bytes, 0);
Josef Bacikfb25e912011-07-26 17:00:46 -04005916 space_info->bytes_may_use -= num_bytes;
5917 }
Miao Xiee570fd22014-06-19 10:42:50 +08005918
5919 if (delalloc)
5920 cache->delalloc_bytes += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005921 }
Josef Bacikfb25e912011-07-26 17:00:46 -04005922 } else {
5923 if (cache->ro)
5924 space_info->bytes_readonly += num_bytes;
5925 cache->reserved -= num_bytes;
5926 space_info->bytes_reserved -= num_bytes;
Miao Xiee570fd22014-06-19 10:42:50 +08005927
5928 if (delalloc)
5929 cache->delalloc_bytes -= num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005930 }
Josef Bacikfb25e912011-07-26 17:00:46 -04005931 spin_unlock(&cache->lock);
5932 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005933 return ret;
5934}
5935
Jeff Mahoney143bede2012-03-01 14:56:26 +01005936void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04005937 struct btrfs_root *root)
5938{
5939 struct btrfs_fs_info *fs_info = root->fs_info;
5940 struct btrfs_caching_control *next;
5941 struct btrfs_caching_control *caching_ctl;
5942 struct btrfs_block_group_cache *cache;
5943
Josef Bacik9e351cc2014-03-13 15:42:13 -04005944 down_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04005945
5946 list_for_each_entry_safe(caching_ctl, next,
5947 &fs_info->caching_block_groups, list) {
5948 cache = caching_ctl->block_group;
5949 if (block_group_cache_done(cache)) {
5950 cache->last_byte_to_unpin = (u64)-1;
5951 list_del_init(&caching_ctl->list);
5952 put_caching_control(caching_ctl);
5953 } else {
5954 cache->last_byte_to_unpin = caching_ctl->progress;
5955 }
5956 }
5957
5958 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
5959 fs_info->pinned_extents = &fs_info->freed_extents[1];
5960 else
5961 fs_info->pinned_extents = &fs_info->freed_extents[0];
5962
Josef Bacik9e351cc2014-03-13 15:42:13 -04005963 up_write(&fs_info->commit_root_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005964
5965 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04005966}
5967
Filipe Manana678886b2014-12-07 21:31:47 +00005968static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end,
5969 const bool return_free_space)
Yan Zheng11833d62009-09-11 16:11:19 -04005970{
5971 struct btrfs_fs_info *fs_info = root->fs_info;
5972 struct btrfs_block_group_cache *cache = NULL;
Josef Bacik7b398f82012-10-22 15:52:28 -04005973 struct btrfs_space_info *space_info;
5974 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Yan Zheng11833d62009-09-11 16:11:19 -04005975 u64 len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005976 bool readonly;
Yan Zheng11833d62009-09-11 16:11:19 -04005977
5978 while (start <= end) {
Josef Bacik7b398f82012-10-22 15:52:28 -04005979 readonly = false;
Yan Zheng11833d62009-09-11 16:11:19 -04005980 if (!cache ||
5981 start >= cache->key.objectid + cache->key.offset) {
5982 if (cache)
5983 btrfs_put_block_group(cache);
5984 cache = btrfs_lookup_block_group(fs_info, start);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005985 BUG_ON(!cache); /* Logic error */
Yan Zheng11833d62009-09-11 16:11:19 -04005986 }
5987
5988 len = cache->key.objectid + cache->key.offset - start;
5989 len = min(len, end + 1 - start);
5990
5991 if (start < cache->last_byte_to_unpin) {
5992 len = min(len, cache->last_byte_to_unpin - start);
Filipe Manana678886b2014-12-07 21:31:47 +00005993 if (return_free_space)
5994 btrfs_add_free_space(cache, start, len);
Yan Zheng11833d62009-09-11 16:11:19 -04005995 }
Josef Bacik25179202008-10-29 14:49:05 -04005996
Yan, Zhengf0486c62010-05-16 10:46:25 -04005997 start += len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005998 space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005999
Josef Bacik7b398f82012-10-22 15:52:28 -04006000 spin_lock(&space_info->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006001 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006002 cache->pinned -= len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006003 space_info->bytes_pinned -= len;
Liu Bod288db52014-07-02 16:58:01 +08006004 percpu_counter_add(&space_info->total_bytes_pinned, -len);
Josef Bacik7b398f82012-10-22 15:52:28 -04006005 if (cache->ro) {
6006 space_info->bytes_readonly += len;
6007 readonly = true;
6008 }
Josef Bacik25179202008-10-29 14:49:05 -04006009 spin_unlock(&cache->lock);
Josef Bacik7b398f82012-10-22 15:52:28 -04006010 if (!readonly && global_rsv->space_info == space_info) {
6011 spin_lock(&global_rsv->lock);
6012 if (!global_rsv->full) {
6013 len = min(len, global_rsv->size -
6014 global_rsv->reserved);
6015 global_rsv->reserved += len;
6016 space_info->bytes_may_use += len;
6017 if (global_rsv->reserved >= global_rsv->size)
6018 global_rsv->full = 1;
6019 }
6020 spin_unlock(&global_rsv->lock);
6021 }
6022 spin_unlock(&space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006023 }
6024
6025 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006026 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04006027 return 0;
6028}
6029
6030int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04006031 struct btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -05006032{
Yan Zheng11833d62009-09-11 16:11:19 -04006033 struct btrfs_fs_info *fs_info = root->fs_info;
6034 struct extent_io_tree *unpin;
Chris Mason1a5bc162007-10-15 16:15:26 -04006035 u64 start;
6036 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05006037 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05006038
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006039 if (trans->aborted)
6040 return 0;
6041
Yan Zheng11833d62009-09-11 16:11:19 -04006042 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6043 unpin = &fs_info->freed_extents[1];
6044 else
6045 unpin = &fs_info->freed_extents[0];
6046
Chris Masond3977122009-01-05 21:25:51 -05006047 while (1) {
Filipe Mananad4b450c2015-01-29 19:18:25 +00006048 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Chris Mason1a5bc162007-10-15 16:15:26 -04006049 ret = find_first_extent_bit(unpin, 0, &start, &end,
Josef Bacike6138872012-09-27 17:07:30 -04006050 EXTENT_DIRTY, NULL);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006051 if (ret) {
6052 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05006053 break;
Filipe Mananad4b450c2015-01-29 19:18:25 +00006054 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05006055
Li Dongyang5378e602011-03-24 10:24:27 +00006056 if (btrfs_test_opt(root, DISCARD))
6057 ret = btrfs_discard_extent(root, start,
6058 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05006059
Chris Mason1a5bc162007-10-15 16:15:26 -04006060 clear_extent_dirty(unpin, start, end, GFP_NOFS);
Filipe Manana678886b2014-12-07 21:31:47 +00006061 unpin_extent_range(root, start, end, true);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006062 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masonb9473432009-03-13 11:00:37 -04006063 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05006064 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006065
Chris Masone20d96d2007-03-22 12:13:20 -04006066 return 0;
6067}
6068
Josef Bacikb150a4f2013-06-19 15:00:04 -04006069static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes,
6070 u64 owner, u64 root_objectid)
6071{
6072 struct btrfs_space_info *space_info;
6073 u64 flags;
6074
6075 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
6076 if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID)
6077 flags = BTRFS_BLOCK_GROUP_SYSTEM;
6078 else
6079 flags = BTRFS_BLOCK_GROUP_METADATA;
6080 } else {
6081 flags = BTRFS_BLOCK_GROUP_DATA;
6082 }
6083
6084 space_info = __find_space_info(fs_info, flags);
6085 BUG_ON(!space_info); /* Logic bug */
6086 percpu_counter_add(&space_info->total_bytes_pinned, num_bytes);
6087}
6088
6089
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006090static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
6091 struct btrfs_root *root,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006092 struct btrfs_delayed_ref_node *node, u64 parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006093 u64 root_objectid, u64 owner_objectid,
6094 u64 owner_offset, int refs_to_drop,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006095 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05006096{
Chris Masone2fa7222007-03-12 16:22:34 -04006097 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006098 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04006099 struct btrfs_fs_info *info = root->fs_info;
6100 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04006101 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006102 struct btrfs_extent_item *ei;
6103 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05006104 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006105 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05006106 int extent_slot = 0;
6107 int found_extent = 0;
6108 int num_to_del = 1;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006109 int no_quota = node->no_quota;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006110 u32 item_size;
6111 u64 refs;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006112 u64 bytenr = node->bytenr;
6113 u64 num_bytes = node->num_bytes;
Josef Bacikfcebe452014-05-13 17:30:47 -07006114 int last_ref = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05006115 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
6116 SKINNY_METADATA);
Chris Mason037e6392007-03-07 11:50:24 -05006117
Josef Bacikfcebe452014-05-13 17:30:47 -07006118 if (!info->quota_enabled || !is_fstree(root_objectid))
6119 no_quota = 1;
6120
Chris Mason5caf2a02007-04-02 11:20:42 -04006121 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04006122 if (!path)
6123 return -ENOMEM;
6124
Chris Mason3c12ac72008-04-21 12:01:38 -04006125 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04006126 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006127
6128 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
6129 BUG_ON(!is_data && refs_to_drop != 1);
6130
Josef Bacik3173a182013-03-07 14:22:04 -05006131 if (is_data)
6132 skinny_metadata = 0;
6133
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006134 ret = lookup_extent_backref(trans, extent_root, path, &iref,
6135 bytenr, num_bytes, parent,
6136 root_objectid, owner_objectid,
6137 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05006138 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05006139 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006140 while (extent_slot >= 0) {
6141 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05006142 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006143 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05006144 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006145 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
6146 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05006147 found_extent = 1;
6148 break;
6149 }
Josef Bacik3173a182013-03-07 14:22:04 -05006150 if (key.type == BTRFS_METADATA_ITEM_KEY &&
6151 key.offset == owner_objectid) {
6152 found_extent = 1;
6153 break;
6154 }
Chris Mason952fcca2008-02-18 16:33:44 -05006155 if (path->slots[0] - extent_slot > 5)
6156 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006157 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05006158 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006159#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6160 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
6161 if (found_extent && item_size < sizeof(*ei))
6162 found_extent = 0;
6163#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04006164 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006165 BUG_ON(iref);
Chris Mason56bec292009-03-13 10:10:06 -04006166 ret = remove_extent_backref(trans, extent_root, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006167 NULL, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07006168 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06006169 if (ret) {
6170 btrfs_abort_transaction(trans, extent_root, ret);
6171 goto out;
6172 }
David Sterbab3b4aa72011-04-21 01:20:15 +02006173 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04006174 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006175
6176 key.objectid = bytenr;
6177 key.type = BTRFS_EXTENT_ITEM_KEY;
6178 key.offset = num_bytes;
6179
Josef Bacik3173a182013-03-07 14:22:04 -05006180 if (!is_data && skinny_metadata) {
6181 key.type = BTRFS_METADATA_ITEM_KEY;
6182 key.offset = owner_objectid;
6183 }
6184
Zheng Yan31840ae2008-09-23 13:14:14 -04006185 ret = btrfs_search_slot(trans, extent_root,
6186 &key, path, -1, 1);
Josef Bacik3173a182013-03-07 14:22:04 -05006187 if (ret > 0 && skinny_metadata && path->slots[0]) {
6188 /*
6189 * Couldn't find our skinny metadata item,
6190 * see if we have ye olde extent item.
6191 */
6192 path->slots[0]--;
6193 btrfs_item_key_to_cpu(path->nodes[0], &key,
6194 path->slots[0]);
6195 if (key.objectid == bytenr &&
6196 key.type == BTRFS_EXTENT_ITEM_KEY &&
6197 key.offset == num_bytes)
6198 ret = 0;
6199 }
6200
6201 if (ret > 0 && skinny_metadata) {
6202 skinny_metadata = false;
Filipe Manana9ce49a02014-04-24 15:15:28 +01006203 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05006204 key.type = BTRFS_EXTENT_ITEM_KEY;
6205 key.offset = num_bytes;
6206 btrfs_release_path(path);
6207 ret = btrfs_search_slot(trans, extent_root,
6208 &key, path, -1, 1);
6209 }
6210
Josef Bacikf3465ca2008-11-12 14:19:50 -05006211 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006212 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006213 ret, bytenr);
Josef Bacikb783e622011-07-13 15:03:50 +00006214 if (ret > 0)
6215 btrfs_print_leaf(extent_root,
6216 path->nodes[0]);
Josef Bacikf3465ca2008-11-12 14:19:50 -05006217 }
David Sterba005d6422012-09-18 07:52:32 -06006218 if (ret < 0) {
6219 btrfs_abort_transaction(trans, extent_root, ret);
6220 goto out;
6221 }
Zheng Yan31840ae2008-09-23 13:14:14 -04006222 extent_slot = path->slots[0];
6223 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306224 } else if (WARN_ON(ret == -ENOENT)) {
Chris Mason7bb86312007-12-11 09:25:06 -05006225 btrfs_print_leaf(extent_root, path->nodes[0]);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006226 btrfs_err(info,
6227 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006228 bytenr, parent, root_objectid, owner_objectid,
6229 owner_offset);
Josef Bacikc4a050b2014-03-14 16:36:53 -04006230 btrfs_abort_transaction(trans, extent_root, ret);
6231 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006232 } else {
David Sterba005d6422012-09-18 07:52:32 -06006233 btrfs_abort_transaction(trans, extent_root, ret);
6234 goto out;
Chris Mason7bb86312007-12-11 09:25:06 -05006235 }
Chris Mason5f39d392007-10-15 16:14:19 -04006236
6237 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006238 item_size = btrfs_item_size_nr(leaf, extent_slot);
6239#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6240 if (item_size < sizeof(*ei)) {
6241 BUG_ON(found_extent || extent_slot != path->slots[0]);
6242 ret = convert_extent_item_v0(trans, extent_root, path,
6243 owner_objectid, 0);
David Sterba005d6422012-09-18 07:52:32 -06006244 if (ret < 0) {
6245 btrfs_abort_transaction(trans, extent_root, ret);
6246 goto out;
6247 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006248
David Sterbab3b4aa72011-04-21 01:20:15 +02006249 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006250 path->leave_spinning = 1;
6251
6252 key.objectid = bytenr;
6253 key.type = BTRFS_EXTENT_ITEM_KEY;
6254 key.offset = num_bytes;
6255
6256 ret = btrfs_search_slot(trans, extent_root, &key, path,
6257 -1, 1);
6258 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006259 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006260 ret, bytenr);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006261 btrfs_print_leaf(extent_root, path->nodes[0]);
6262 }
David Sterba005d6422012-09-18 07:52:32 -06006263 if (ret < 0) {
6264 btrfs_abort_transaction(trans, extent_root, ret);
6265 goto out;
6266 }
6267
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006268 extent_slot = path->slots[0];
6269 leaf = path->nodes[0];
6270 item_size = btrfs_item_size_nr(leaf, extent_slot);
6271 }
6272#endif
6273 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05006274 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04006275 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05006276 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
6277 key.type == BTRFS_EXTENT_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006278 struct btrfs_tree_block_info *bi;
6279 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
6280 bi = (struct btrfs_tree_block_info *)(ei + 1);
6281 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05006282 }
6283
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006284 refs = btrfs_extent_refs(leaf, ei);
Josef Bacik32b02532013-04-24 16:38:50 -04006285 if (refs < refs_to_drop) {
6286 btrfs_err(info, "trying to drop %d refs but we only have %Lu "
David Sterba351fd352014-05-15 16:48:20 +02006287 "for bytenr %Lu", refs_to_drop, refs, bytenr);
Josef Bacik32b02532013-04-24 16:38:50 -04006288 ret = -EINVAL;
6289 btrfs_abort_transaction(trans, extent_root, ret);
6290 goto out;
6291 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006292 refs -= refs_to_drop;
6293
6294 if (refs > 0) {
6295 if (extent_op)
6296 __run_delayed_extent_op(extent_op, leaf, ei);
6297 /*
6298 * In the case of inline back ref, reference count will
6299 * be updated by remove_extent_backref
6300 */
6301 if (iref) {
6302 BUG_ON(!found_extent);
6303 } else {
6304 btrfs_set_extent_refs(leaf, ei, refs);
6305 btrfs_mark_buffer_dirty(leaf);
6306 }
6307 if (found_extent) {
6308 ret = remove_extent_backref(trans, extent_root, path,
6309 iref, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07006310 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06006311 if (ret) {
6312 btrfs_abort_transaction(trans, extent_root, ret);
6313 goto out;
6314 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006315 }
Josef Bacikb150a4f2013-06-19 15:00:04 -04006316 add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid,
6317 root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006318 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006319 if (found_extent) {
6320 BUG_ON(is_data && refs_to_drop !=
6321 extent_data_ref_count(root, path, iref));
6322 if (iref) {
6323 BUG_ON(path->slots[0] != extent_slot);
6324 } else {
6325 BUG_ON(path->slots[0] != extent_slot + 1);
6326 path->slots[0] = extent_slot;
6327 num_to_del = 2;
6328 }
Chris Mason78fae272007-03-25 11:35:08 -04006329 }
Chris Masonb9473432009-03-13 11:00:37 -04006330
Josef Bacikfcebe452014-05-13 17:30:47 -07006331 last_ref = 1;
Chris Mason952fcca2008-02-18 16:33:44 -05006332 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
6333 num_to_del);
David Sterba005d6422012-09-18 07:52:32 -06006334 if (ret) {
6335 btrfs_abort_transaction(trans, extent_root, ret);
6336 goto out;
6337 }
David Sterbab3b4aa72011-04-21 01:20:15 +02006338 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01006339
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006340 if (is_data) {
Chris Mason459931e2008-12-10 09:10:46 -05006341 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
David Sterba005d6422012-09-18 07:52:32 -06006342 if (ret) {
6343 btrfs_abort_transaction(trans, extent_root, ret);
6344 goto out;
6345 }
Chris Mason459931e2008-12-10 09:10:46 -05006346 }
6347
Josef Bacikce93ec52014-11-17 15:45:48 -05006348 ret = update_block_group(trans, root, bytenr, num_bytes, 0);
David Sterba005d6422012-09-18 07:52:32 -06006349 if (ret) {
6350 btrfs_abort_transaction(trans, extent_root, ret);
6351 goto out;
6352 }
Chris Masona28ec192007-03-06 20:08:01 -05006353 }
Josef Bacikfcebe452014-05-13 17:30:47 -07006354 btrfs_release_path(path);
6355
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006356out:
Chris Mason5caf2a02007-04-02 11:20:42 -04006357 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05006358 return ret;
6359}
6360
6361/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04006362 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04006363 * delayed ref for that extent as well. This searches the delayed ref tree for
6364 * a given extent, and if there are no other delayed refs to be processed, it
6365 * removes it from the tree.
6366 */
6367static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
6368 struct btrfs_root *root, u64 bytenr)
6369{
6370 struct btrfs_delayed_ref_head *head;
6371 struct btrfs_delayed_ref_root *delayed_refs;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006372 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04006373
6374 delayed_refs = &trans->transaction->delayed_refs;
6375 spin_lock(&delayed_refs->lock);
6376 head = btrfs_find_delayed_ref_head(trans, bytenr);
6377 if (!head)
Chris Masoncf93da72014-01-29 07:02:40 -08006378 goto out_delayed_unlock;
Chris Mason1887be62009-03-13 10:11:24 -04006379
Josef Bacikd7df2c72014-01-23 09:21:38 -05006380 spin_lock(&head->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08006381 if (!list_empty(&head->ref_list))
Chris Mason1887be62009-03-13 10:11:24 -04006382 goto out;
6383
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006384 if (head->extent_op) {
6385 if (!head->must_insert_reserved)
6386 goto out;
Miao Xie78a61842012-11-21 02:21:28 +00006387 btrfs_free_delayed_extent_op(head->extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006388 head->extent_op = NULL;
6389 }
6390
Chris Mason1887be62009-03-13 10:11:24 -04006391 /*
6392 * waiting for the lock here would deadlock. If someone else has it
6393 * locked they are already in the process of dropping it anyway
6394 */
6395 if (!mutex_trylock(&head->mutex))
6396 goto out;
6397
6398 /*
6399 * at this point we have a head with no other entries. Go
6400 * ahead and process it.
6401 */
6402 head->node.in_tree = 0;
Liu Boc46effa2013-10-14 12:59:45 +08006403 rb_erase(&head->href_node, &delayed_refs->href_root);
Chris Masonc3e69d52009-03-13 10:17:05 -04006404
Josef Bacikd7df2c72014-01-23 09:21:38 -05006405 atomic_dec(&delayed_refs->num_entries);
Chris Mason1887be62009-03-13 10:11:24 -04006406
6407 /*
6408 * we don't take a ref on the node because we're removing it from the
6409 * tree, so we just steal the ref the tree was holding.
6410 */
Chris Masonc3e69d52009-03-13 10:17:05 -04006411 delayed_refs->num_heads--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05006412 if (head->processing == 0)
Chris Masonc3e69d52009-03-13 10:17:05 -04006413 delayed_refs->num_heads_ready--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05006414 head->processing = 0;
6415 spin_unlock(&head->lock);
Chris Mason1887be62009-03-13 10:11:24 -04006416 spin_unlock(&delayed_refs->lock);
6417
Yan, Zhengf0486c62010-05-16 10:46:25 -04006418 BUG_ON(head->extent_op);
6419 if (head->must_insert_reserved)
6420 ret = 1;
6421
6422 mutex_unlock(&head->mutex);
Chris Mason1887be62009-03-13 10:11:24 -04006423 btrfs_put_delayed_ref(&head->node);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006424 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04006425out:
Josef Bacikd7df2c72014-01-23 09:21:38 -05006426 spin_unlock(&head->lock);
Chris Masoncf93da72014-01-29 07:02:40 -08006427
6428out_delayed_unlock:
Chris Mason1887be62009-03-13 10:11:24 -04006429 spin_unlock(&delayed_refs->lock);
6430 return 0;
6431}
6432
Yan, Zhengf0486c62010-05-16 10:46:25 -04006433void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
6434 struct btrfs_root *root,
6435 struct extent_buffer *buf,
Jan Schmidt5581a512012-05-16 17:04:52 +02006436 u64 parent, int last_ref)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006437{
Josef Bacikb150a4f2013-06-19 15:00:04 -04006438 int pin = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006439 int ret;
6440
6441 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006442 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
6443 buf->start, buf->len,
6444 parent, root->root_key.objectid,
6445 btrfs_header_level(buf),
Jan Schmidt5581a512012-05-16 17:04:52 +02006446 BTRFS_DROP_DELAYED_REF, NULL, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006447 BUG_ON(ret); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006448 }
6449
6450 if (!last_ref)
6451 return;
6452
Yan, Zhengf0486c62010-05-16 10:46:25 -04006453 if (btrfs_header_generation(buf) == trans->transid) {
Filipe Manana62198722015-01-06 20:18:45 +00006454 struct btrfs_block_group_cache *cache;
6455
Yan, Zhengf0486c62010-05-16 10:46:25 -04006456 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
6457 ret = check_ref_cleanup(trans, root, buf->start);
6458 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04006459 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006460 }
6461
Filipe Manana62198722015-01-06 20:18:45 +00006462 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
6463
Yan, Zhengf0486c62010-05-16 10:46:25 -04006464 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
6465 pin_down_extent(root, cache, buf->start, buf->len, 1);
Filipe Manana62198722015-01-06 20:18:45 +00006466 btrfs_put_block_group(cache);
Josef Bacik37be25b2011-08-05 10:25:38 -04006467 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006468 }
6469
6470 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
6471
6472 btrfs_add_free_space(cache, buf->start, buf->len);
Miao Xiee570fd22014-06-19 10:42:50 +08006473 btrfs_update_reserved_bytes(cache, buf->len, RESERVE_FREE, 0);
Filipe Manana62198722015-01-06 20:18:45 +00006474 btrfs_put_block_group(cache);
Josef Bacik0be5dc62013-10-07 15:18:52 -04006475 trace_btrfs_reserved_extent_free(root, buf->start, buf->len);
Josef Bacikb150a4f2013-06-19 15:00:04 -04006476 pin = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006477 }
6478out:
Josef Bacikb150a4f2013-06-19 15:00:04 -04006479 if (pin)
6480 add_pinned_bytes(root->fs_info, buf->len,
6481 btrfs_header_level(buf),
6482 root->root_key.objectid);
6483
Josef Bacika826d6d2011-03-16 13:42:43 -04006484 /*
6485 * Deleting the buffer, clear the corrupt flag since it doesn't matter
6486 * anymore.
6487 */
6488 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006489}
6490
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006491/* Can return -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006492int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root,
6493 u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid,
Josef Bacikfcebe452014-05-13 17:30:47 -07006494 u64 owner, u64 offset, int no_quota)
Chris Mason925baed2008-06-25 16:01:30 -04006495{
6496 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006497 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason925baed2008-06-25 16:01:30 -04006498
David Sterbafccb84c2014-09-29 23:53:21 +02006499 if (btrfs_test_is_dummy_root(root))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04006500 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02006501
Josef Bacikb150a4f2013-06-19 15:00:04 -04006502 add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid);
6503
Chris Mason56bec292009-03-13 10:10:06 -04006504 /*
6505 * tree log blocks never actually go into the extent allocation
6506 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04006507 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006508 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
6509 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04006510 /* unlocks the pinned mutex */
Yan Zheng11833d62009-09-11 16:11:19 -04006511 btrfs_pin_extent(root, bytenr, num_bytes, 1);
Chris Mason56bec292009-03-13 10:10:06 -04006512 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006513 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006514 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
6515 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006516 parent, root_objectid, (int)owner,
Josef Bacikfcebe452014-05-13 17:30:47 -07006517 BTRFS_DROP_DELAYED_REF, NULL, no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006518 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006519 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
6520 num_bytes,
6521 parent, root_objectid, owner,
6522 offset, BTRFS_DROP_DELAYED_REF,
Josef Bacikfcebe452014-05-13 17:30:47 -07006523 NULL, no_quota);
Chris Mason56bec292009-03-13 10:10:06 -04006524 }
Chris Mason925baed2008-06-25 16:01:30 -04006525 return ret;
6526}
6527
Chris Masonfec577f2007-02-26 10:40:21 -05006528/*
Josef Bacik817d52f2009-07-13 21:29:25 -04006529 * when we wait for progress in the block group caching, its because
6530 * our allocation attempt failed at least once. So, we must sleep
6531 * and let some progress happen before we try again.
6532 *
6533 * This function will sleep at least once waiting for new free space to
6534 * show up, and then it will check the block group free space numbers
6535 * for our min num_bytes. Another option is to have it go ahead
6536 * and look in the rbtree for a free extent of a given size, but this
6537 * is a good start.
Josef Bacik36cce922013-08-05 11:15:21 -04006538 *
6539 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
6540 * any of the information in this block group.
Josef Bacik817d52f2009-07-13 21:29:25 -04006541 */
Josef Bacik36cce922013-08-05 11:15:21 -04006542static noinline void
Josef Bacik817d52f2009-07-13 21:29:25 -04006543wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
6544 u64 num_bytes)
6545{
Yan Zheng11833d62009-09-11 16:11:19 -04006546 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04006547
Yan Zheng11833d62009-09-11 16:11:19 -04006548 caching_ctl = get_caching_control(cache);
6549 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04006550 return;
Josef Bacik817d52f2009-07-13 21:29:25 -04006551
Yan Zheng11833d62009-09-11 16:11:19 -04006552 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08006553 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04006554
6555 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -04006556}
6557
6558static noinline int
6559wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
6560{
6561 struct btrfs_caching_control *caching_ctl;
Josef Bacik36cce922013-08-05 11:15:21 -04006562 int ret = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006563
6564 caching_ctl = get_caching_control(cache);
6565 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04006566 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006567
6568 wait_event(caching_ctl->wait, block_group_cache_done(cache));
Josef Bacik36cce922013-08-05 11:15:21 -04006569 if (cache->cached == BTRFS_CACHE_ERROR)
6570 ret = -EIO;
Yan Zheng11833d62009-09-11 16:11:19 -04006571 put_caching_control(caching_ctl);
Josef Bacik36cce922013-08-05 11:15:21 -04006572 return ret;
Josef Bacik817d52f2009-07-13 21:29:25 -04006573}
6574
Liu Bo31e50222012-11-21 14:18:10 +00006575int __get_raid_index(u64 flags)
Yan, Zhengb742bb82010-05-16 10:46:24 -04006576{
Ilya Dryomov7738a532012-03-27 17:09:17 +03006577 if (flags & BTRFS_BLOCK_GROUP_RAID10)
Miao Xiee6ec7162013-01-17 05:38:51 +00006578 return BTRFS_RAID_RAID10;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006579 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
Miao Xiee6ec7162013-01-17 05:38:51 +00006580 return BTRFS_RAID_RAID1;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006581 else if (flags & BTRFS_BLOCK_GROUP_DUP)
Miao Xiee6ec7162013-01-17 05:38:51 +00006582 return BTRFS_RAID_DUP;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006583 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
Miao Xiee6ec7162013-01-17 05:38:51 +00006584 return BTRFS_RAID_RAID0;
David Woodhouse53b381b2013-01-29 18:40:14 -05006585 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
Chris Masone942f882013-02-20 14:06:05 -05006586 return BTRFS_RAID_RAID5;
David Woodhouse53b381b2013-01-29 18:40:14 -05006587 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
Chris Masone942f882013-02-20 14:06:05 -05006588 return BTRFS_RAID_RAID6;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006589
Chris Masone942f882013-02-20 14:06:05 -05006590 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
Yan, Zhengb742bb82010-05-16 10:46:24 -04006591}
6592
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04006593int get_block_group_index(struct btrfs_block_group_cache *cache)
Ilya Dryomov7738a532012-03-27 17:09:17 +03006594{
Liu Bo31e50222012-11-21 14:18:10 +00006595 return __get_raid_index(cache->flags);
Ilya Dryomov7738a532012-03-27 17:09:17 +03006596}
6597
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04006598static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = {
6599 [BTRFS_RAID_RAID10] = "raid10",
6600 [BTRFS_RAID_RAID1] = "raid1",
6601 [BTRFS_RAID_DUP] = "dup",
6602 [BTRFS_RAID_RAID0] = "raid0",
6603 [BTRFS_RAID_SINGLE] = "single",
6604 [BTRFS_RAID_RAID5] = "raid5",
6605 [BTRFS_RAID_RAID6] = "raid6",
6606};
6607
Jeff Mahoney1b8e5df2013-11-20 16:50:23 -05006608static const char *get_raid_name(enum btrfs_raid_types type)
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04006609{
6610 if (type >= BTRFS_NR_RAID_TYPES)
6611 return NULL;
6612
6613 return btrfs_raid_type_names[type];
6614}
6615
Josef Bacik817d52f2009-07-13 21:29:25 -04006616enum btrfs_loop_type {
Josef Bacik285ff5a2012-01-13 15:27:45 -05006617 LOOP_CACHING_NOWAIT = 0,
6618 LOOP_CACHING_WAIT = 1,
6619 LOOP_ALLOC_CHUNK = 2,
6620 LOOP_NO_EMPTY_SIZE = 3,
Josef Bacik817d52f2009-07-13 21:29:25 -04006621};
6622
Miao Xiee570fd22014-06-19 10:42:50 +08006623static inline void
6624btrfs_lock_block_group(struct btrfs_block_group_cache *cache,
6625 int delalloc)
6626{
6627 if (delalloc)
6628 down_read(&cache->data_rwsem);
6629}
6630
6631static inline void
6632btrfs_grab_block_group(struct btrfs_block_group_cache *cache,
6633 int delalloc)
6634{
6635 btrfs_get_block_group(cache);
6636 if (delalloc)
6637 down_read(&cache->data_rwsem);
6638}
6639
6640static struct btrfs_block_group_cache *
6641btrfs_lock_cluster(struct btrfs_block_group_cache *block_group,
6642 struct btrfs_free_cluster *cluster,
6643 int delalloc)
6644{
6645 struct btrfs_block_group_cache *used_bg;
6646 bool locked = false;
6647again:
6648 spin_lock(&cluster->refill_lock);
6649 if (locked) {
6650 if (used_bg == cluster->block_group)
6651 return used_bg;
6652
6653 up_read(&used_bg->data_rwsem);
6654 btrfs_put_block_group(used_bg);
6655 }
6656
6657 used_bg = cluster->block_group;
6658 if (!used_bg)
6659 return NULL;
6660
6661 if (used_bg == block_group)
6662 return used_bg;
6663
6664 btrfs_get_block_group(used_bg);
6665
6666 if (!delalloc)
6667 return used_bg;
6668
6669 if (down_read_trylock(&used_bg->data_rwsem))
6670 return used_bg;
6671
6672 spin_unlock(&cluster->refill_lock);
6673 down_read(&used_bg->data_rwsem);
6674 locked = true;
6675 goto again;
6676}
6677
6678static inline void
6679btrfs_release_block_group(struct btrfs_block_group_cache *cache,
6680 int delalloc)
6681{
6682 if (delalloc)
6683 up_read(&cache->data_rwsem);
6684 btrfs_put_block_group(cache);
6685}
6686
Josef Bacik817d52f2009-07-13 21:29:25 -04006687/*
Chris Masonfec577f2007-02-26 10:40:21 -05006688 * walks the btree of allocated extents and find a hole of a given size.
6689 * The key ins is changed to record the hole:
Miao Xiea4820392013-09-09 13:19:42 +08006690 * ins->objectid == start position
Chris Mason62e27492007-03-15 12:56:47 -04006691 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Miao Xiea4820392013-09-09 13:19:42 +08006692 * ins->offset == the size of the hole.
Chris Masonfec577f2007-02-26 10:40:21 -05006693 * Any available blocks before search_start are skipped.
Miao Xiea4820392013-09-09 13:19:42 +08006694 *
6695 * If there is no suitable free space, we will record the max size of
6696 * the free space extent currently.
Chris Masonfec577f2007-02-26 10:40:21 -05006697 */
Josef Bacik00361582013-08-14 14:02:47 -04006698static noinline int find_free_extent(struct btrfs_root *orig_root,
Chris Mason98ed5172008-01-03 10:01:48 -05006699 u64 num_bytes, u64 empty_size,
Chris Mason98ed5172008-01-03 10:01:48 -05006700 u64 hint_byte, struct btrfs_key *ins,
Miao Xiee570fd22014-06-19 10:42:50 +08006701 u64 flags, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05006702{
Josef Bacik80eb2342008-10-29 14:49:05 -04006703 int ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05006704 struct btrfs_root *root = orig_root->fs_info->extent_root;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006705 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04006706 struct btrfs_block_group_cache *block_group = NULL;
Josef Bacik81c9ad22012-01-18 10:56:06 -05006707 u64 search_start = 0;
Miao Xiea4820392013-09-09 13:19:42 +08006708 u64 max_extent_size = 0;
Chris Mason239b14b2008-03-24 15:02:07 -04006709 int empty_cluster = 2 * 1024 * 1024;
Josef Bacik80eb2342008-10-29 14:49:05 -04006710 struct btrfs_space_info *space_info;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006711 int loop = 0;
David Sterbab6919a52013-04-29 13:39:40 +00006712 int index = __get_raid_index(flags);
6713 int alloc_type = (flags & BTRFS_BLOCK_GROUP_DATA) ?
Josef Bacikfb25e912011-07-26 17:00:46 -04006714 RESERVE_ALLOC_NO_ACCOUNT : RESERVE_ALLOC;
Josef Bacik0a243252009-09-11 16:11:20 -04006715 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006716 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04006717 bool use_cluster = true;
Miao Xie60d2adb2011-09-09 17:34:35 +08006718 bool have_caching_bg = false;
Chris Masonfec577f2007-02-26 10:40:21 -05006719
Chris Masondb945352007-10-15 16:15:53 -04006720 WARN_ON(num_bytes < root->sectorsize);
David Sterba962a2982014-06-04 18:41:45 +02006721 ins->type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacik80eb2342008-10-29 14:49:05 -04006722 ins->objectid = 0;
6723 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04006724
David Sterbab6919a52013-04-29 13:39:40 +00006725 trace_find_free_extent(orig_root, num_bytes, empty_size, flags);
Josef Bacik3f7de032011-11-10 08:29:20 -05006726
David Sterbab6919a52013-04-29 13:39:40 +00006727 space_info = __find_space_info(root->fs_info, flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00006728 if (!space_info) {
David Sterbab6919a52013-04-29 13:39:40 +00006729 btrfs_err(root->fs_info, "No space info for %llu", flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00006730 return -ENOSPC;
6731 }
Josef Bacik2552d172009-04-03 10:14:19 -04006732
Josef Bacik67377732010-09-16 16:19:09 -04006733 /*
6734 * If the space info is for both data and metadata it means we have a
6735 * small filesystem and we can't use the clustering stuff.
6736 */
6737 if (btrfs_mixed_space_info(space_info))
6738 use_cluster = false;
6739
David Sterbab6919a52013-04-29 13:39:40 +00006740 if (flags & BTRFS_BLOCK_GROUP_METADATA && use_cluster) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006741 last_ptr = &root->fs_info->meta_alloc_cluster;
Chris Mason536ac8a2009-02-12 09:41:38 -05006742 if (!btrfs_test_opt(root, SSD))
6743 empty_cluster = 64 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04006744 }
6745
David Sterbab6919a52013-04-29 13:39:40 +00006746 if ((flags & BTRFS_BLOCK_GROUP_DATA) && use_cluster &&
Josef Bacik67377732010-09-16 16:19:09 -04006747 btrfs_test_opt(root, SSD)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006748 last_ptr = &root->fs_info->data_alloc_cluster;
6749 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04006750
Chris Mason239b14b2008-03-24 15:02:07 -04006751 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006752 spin_lock(&last_ptr->lock);
6753 if (last_ptr->block_group)
6754 hint_byte = last_ptr->window_start;
6755 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04006756 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006757
Chris Masona061fc82008-05-07 11:43:44 -04006758 search_start = max(search_start, first_logical_byte(root, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04006759 search_start = max(search_start, hint_byte);
Chris Mason0b86a832008-03-24 15:01:56 -04006760
Josef Bacik817d52f2009-07-13 21:29:25 -04006761 if (!last_ptr)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006762 empty_cluster = 0;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006763
Josef Bacik2552d172009-04-03 10:14:19 -04006764 if (search_start == hint_byte) {
Josef Bacik2552d172009-04-03 10:14:19 -04006765 block_group = btrfs_lookup_block_group(root->fs_info,
6766 search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04006767 /*
6768 * we don't want to use the block group if it doesn't match our
6769 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05006770 *
6771 * However if we are re-searching with an ideal block group
6772 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04006773 */
David Sterbab6919a52013-04-29 13:39:40 +00006774 if (block_group && block_group_bits(block_group, flags) &&
Josef Bacik285ff5a2012-01-13 15:27:45 -05006775 block_group->cached != BTRFS_CACHE_NO) {
Josef Bacik2552d172009-04-03 10:14:19 -04006776 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04006777 if (list_empty(&block_group->list) ||
6778 block_group->ro) {
6779 /*
6780 * someone is removing this block group,
6781 * we can't jump into the have_block_group
6782 * target because our list pointers are not
6783 * valid
6784 */
6785 btrfs_put_block_group(block_group);
6786 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05006787 } else {
Yan, Zhengb742bb82010-05-16 10:46:24 -04006788 index = get_block_group_index(block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08006789 btrfs_lock_block_group(block_group, delalloc);
Chris Mason44fb5512009-06-04 15:34:51 -04006790 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05006791 }
Josef Bacik2552d172009-04-03 10:14:19 -04006792 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006793 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006794 }
Chris Mason42e70e72008-11-07 18:17:11 -05006795 }
Josef Bacik2552d172009-04-03 10:14:19 -04006796search:
Miao Xie60d2adb2011-09-09 17:34:35 +08006797 have_caching_bg = false;
Josef Bacik80eb2342008-10-29 14:49:05 -04006798 down_read(&space_info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04006799 list_for_each_entry(block_group, &space_info->block_groups[index],
6800 list) {
Josef Bacik6226cb02009-04-03 10:14:18 -04006801 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04006802 int cached;
Chris Mason8a1413a2008-11-10 16:13:54 -05006803
Miao Xiee570fd22014-06-19 10:42:50 +08006804 btrfs_grab_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04006805 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05006806
Chris Mason83a50de2010-12-13 15:06:46 -05006807 /*
6808 * this can happen if we end up cycling through all the
6809 * raid types, but we want to make sure we only allocate
6810 * for the proper type.
6811 */
David Sterbab6919a52013-04-29 13:39:40 +00006812 if (!block_group_bits(block_group, flags)) {
Chris Mason83a50de2010-12-13 15:06:46 -05006813 u64 extra = BTRFS_BLOCK_GROUP_DUP |
6814 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05006815 BTRFS_BLOCK_GROUP_RAID5 |
6816 BTRFS_BLOCK_GROUP_RAID6 |
Chris Mason83a50de2010-12-13 15:06:46 -05006817 BTRFS_BLOCK_GROUP_RAID10;
6818
6819 /*
6820 * if they asked for extra copies and this block group
6821 * doesn't provide them, bail. This does allow us to
6822 * fill raid0 from raid1.
6823 */
David Sterbab6919a52013-04-29 13:39:40 +00006824 if ((flags & extra) && !(block_group->flags & extra))
Chris Mason83a50de2010-12-13 15:06:46 -05006825 goto loop;
6826 }
6827
Josef Bacik2552d172009-04-03 10:14:19 -04006828have_block_group:
Josef Bacik291c7d22011-11-14 13:52:14 -05006829 cached = block_group_cache_done(block_group);
6830 if (unlikely(!cached)) {
Liu Bof6373bf2012-12-27 09:01:18 +00006831 ret = cache_block_group(block_group, 0);
Chris Mason1d4284b2012-03-28 20:31:37 -04006832 BUG_ON(ret < 0);
6833 ret = 0;
Josef Bacikea6a4782008-11-20 12:16:16 -05006834 }
6835
Josef Bacik36cce922013-08-05 11:15:21 -04006836 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
6837 goto loop;
Josef Bacikea6a4782008-11-20 12:16:16 -05006838 if (unlikely(block_group->ro))
Josef Bacik2552d172009-04-03 10:14:19 -04006839 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006840
Josef Bacik0a243252009-09-11 16:11:20 -04006841 /*
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006842 * Ok we want to try and use the cluster allocator, so
6843 * lets look there
Josef Bacik0a243252009-09-11 16:11:20 -04006844 */
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006845 if (last_ptr) {
Miao Xie215a63d2014-01-15 20:00:56 +08006846 struct btrfs_block_group_cache *used_block_group;
Chris Mason8de972b2013-01-04 15:39:43 -05006847 unsigned long aligned_cluster;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006848 /*
6849 * the refill lock keeps out other
6850 * people trying to start a new cluster
6851 */
Miao Xiee570fd22014-06-19 10:42:50 +08006852 used_block_group = btrfs_lock_cluster(block_group,
6853 last_ptr,
6854 delalloc);
6855 if (!used_block_group)
Chris Mason44fb5512009-06-04 15:34:51 -04006856 goto refill_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -04006857
Miao Xiee570fd22014-06-19 10:42:50 +08006858 if (used_block_group != block_group &&
6859 (used_block_group->ro ||
6860 !block_group_bits(used_block_group, flags)))
6861 goto release_cluster;
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006862
6863 offset = btrfs_alloc_from_cluster(used_block_group,
Miao Xiea4820392013-09-09 13:19:42 +08006864 last_ptr,
6865 num_bytes,
6866 used_block_group->key.objectid,
6867 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006868 if (offset) {
6869 /* we have a block, we're done */
6870 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05006871 trace_btrfs_reserve_extent_cluster(root,
Miao Xie89d43462014-01-15 20:00:57 +08006872 used_block_group,
6873 search_start, num_bytes);
Miao Xie215a63d2014-01-15 20:00:56 +08006874 if (used_block_group != block_group) {
Miao Xiee570fd22014-06-19 10:42:50 +08006875 btrfs_release_block_group(block_group,
6876 delalloc);
Miao Xie215a63d2014-01-15 20:00:56 +08006877 block_group = used_block_group;
6878 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006879 goto checks;
6880 }
6881
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006882 WARN_ON(last_ptr->block_group != used_block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08006883release_cluster:
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006884 /* If we are on LOOP_NO_EMPTY_SIZE, we can't
6885 * set up a new clusters, so lets just skip it
6886 * and let the allocator find whatever block
6887 * it can find. If we reach this point, we
6888 * will have tried the cluster allocator
6889 * plenty of times and not have found
6890 * anything, so we are likely way too
6891 * fragmented for the clustering stuff to find
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006892 * anything.
6893 *
6894 * However, if the cluster is taken from the
6895 * current block group, release the cluster
6896 * first, so that we stand a better chance of
6897 * succeeding in the unclustered
6898 * allocation. */
6899 if (loop >= LOOP_NO_EMPTY_SIZE &&
Miao Xiee570fd22014-06-19 10:42:50 +08006900 used_block_group != block_group) {
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006901 spin_unlock(&last_ptr->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08006902 btrfs_release_block_group(used_block_group,
6903 delalloc);
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006904 goto unclustered_alloc;
6905 }
6906
Chris Masonfa9c0d792009-04-03 09:47:43 -04006907 /*
6908 * this cluster didn't work out, free it and
6909 * start over
6910 */
6911 btrfs_return_cluster_to_free_space(NULL, last_ptr);
6912
Miao Xiee570fd22014-06-19 10:42:50 +08006913 if (used_block_group != block_group)
6914 btrfs_release_block_group(used_block_group,
6915 delalloc);
6916refill_cluster:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006917 if (loop >= LOOP_NO_EMPTY_SIZE) {
6918 spin_unlock(&last_ptr->refill_lock);
6919 goto unclustered_alloc;
6920 }
6921
Chris Mason8de972b2013-01-04 15:39:43 -05006922 aligned_cluster = max_t(unsigned long,
6923 empty_cluster + empty_size,
6924 block_group->full_stripe_len);
6925
Chris Masonfa9c0d792009-04-03 09:47:43 -04006926 /* allocate a cluster in this block group */
Josef Bacik00361582013-08-14 14:02:47 -04006927 ret = btrfs_find_space_cluster(root, block_group,
6928 last_ptr, search_start,
6929 num_bytes,
6930 aligned_cluster);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006931 if (ret == 0) {
6932 /*
6933 * now pull our allocation out of this
6934 * cluster
6935 */
6936 offset = btrfs_alloc_from_cluster(block_group,
Miao Xiea4820392013-09-09 13:19:42 +08006937 last_ptr,
6938 num_bytes,
6939 search_start,
6940 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006941 if (offset) {
6942 /* we found one, proceed */
6943 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05006944 trace_btrfs_reserve_extent_cluster(root,
6945 block_group, search_start,
6946 num_bytes);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006947 goto checks;
6948 }
Josef Bacik0a243252009-09-11 16:11:20 -04006949 } else if (!cached && loop > LOOP_CACHING_NOWAIT
6950 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04006951 spin_unlock(&last_ptr->refill_lock);
6952
Josef Bacik0a243252009-09-11 16:11:20 -04006953 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04006954 wait_block_group_cache_progress(block_group,
6955 num_bytes + empty_cluster + empty_size);
6956 goto have_block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006957 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006958
Chris Masonfa9c0d792009-04-03 09:47:43 -04006959 /*
6960 * at this point we either didn't find a cluster
6961 * or we weren't able to allocate a block from our
6962 * cluster. Free the cluster we've been trying
6963 * to use, and go to the next block group
6964 */
Josef Bacik0a243252009-09-11 16:11:20 -04006965 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006966 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04006967 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006968 }
6969
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006970unclustered_alloc:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006971 spin_lock(&block_group->free_space_ctl->tree_lock);
6972 if (cached &&
6973 block_group->free_space_ctl->free_space <
6974 num_bytes + empty_cluster + empty_size) {
Miao Xiea4820392013-09-09 13:19:42 +08006975 if (block_group->free_space_ctl->free_space >
6976 max_extent_size)
6977 max_extent_size =
6978 block_group->free_space_ctl->free_space;
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006979 spin_unlock(&block_group->free_space_ctl->tree_lock);
6980 goto loop;
6981 }
6982 spin_unlock(&block_group->free_space_ctl->tree_lock);
6983
Josef Bacik6226cb02009-04-03 10:14:18 -04006984 offset = btrfs_find_space_for_alloc(block_group, search_start,
Miao Xiea4820392013-09-09 13:19:42 +08006985 num_bytes, empty_size,
6986 &max_extent_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006987 /*
6988 * If we didn't find a chunk, and we haven't failed on this
6989 * block group before, and this block group is in the middle of
6990 * caching and we are ok with waiting, then go ahead and wait
6991 * for progress to be made, and set failed_alloc to true.
6992 *
6993 * If failed_alloc is true then we've already waited on this
6994 * block group once and should move on to the next block group.
6995 */
6996 if (!offset && !failed_alloc && !cached &&
6997 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04006998 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006999 num_bytes + empty_size);
7000 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04007001 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007002 } else if (!offset) {
Miao Xie60d2adb2011-09-09 17:34:35 +08007003 if (!cached)
7004 have_caching_bg = true;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007005 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04007006 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007007checks:
David Sterba4e54b172014-06-05 01:39:19 +02007008 search_start = ALIGN(offset, root->stripesize);
Chris Masone37c9e62007-05-09 20:13:14 -04007009
Josef Bacik2552d172009-04-03 10:14:19 -04007010 /* move on to the next group */
7011 if (search_start + num_bytes >
Miao Xie215a63d2014-01-15 20:00:56 +08007012 block_group->key.objectid + block_group->key.offset) {
7013 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04007014 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04007015 }
Josef Bacik80eb2342008-10-29 14:49:05 -04007016
Josef Bacik6226cb02009-04-03 10:14:18 -04007017 if (offset < search_start)
Miao Xie215a63d2014-01-15 20:00:56 +08007018 btrfs_add_free_space(block_group, offset,
Josef Bacik6226cb02009-04-03 10:14:18 -04007019 search_start - offset);
7020 BUG_ON(offset > search_start);
7021
Miao Xie215a63d2014-01-15 20:00:56 +08007022 ret = btrfs_update_reserved_bytes(block_group, num_bytes,
Miao Xiee570fd22014-06-19 10:42:50 +08007023 alloc_type, delalloc);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007024 if (ret == -EAGAIN) {
Miao Xie215a63d2014-01-15 20:00:56 +08007025 btrfs_add_free_space(block_group, offset, num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007026 goto loop;
7027 }
Yan Zheng11833d62009-09-11 16:11:19 -04007028
Josef Bacik2552d172009-04-03 10:14:19 -04007029 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007030 ins->objectid = search_start;
7031 ins->offset = num_bytes;
7032
Josef Bacik3f7de032011-11-10 08:29:20 -05007033 trace_btrfs_reserve_extent(orig_root, block_group,
7034 search_start, num_bytes);
Miao Xiee570fd22014-06-19 10:42:50 +08007035 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007036 break;
7037loop:
Josef Bacik0a243252009-09-11 16:11:20 -04007038 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007039 failed_alloc = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04007040 BUG_ON(index != get_block_group_index(block_group));
Miao Xiee570fd22014-06-19 10:42:50 +08007041 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007042 }
7043 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05007044
Miao Xie60d2adb2011-09-09 17:34:35 +08007045 if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg)
7046 goto search;
7047
Yan, Zhengb742bb82010-05-16 10:46:24 -04007048 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
7049 goto search;
7050
Josef Bacik285ff5a2012-01-13 15:27:45 -05007051 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05007052 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
7053 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04007054 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
7055 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
7056 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
7057 * again
Chris Masonfa9c0d792009-04-03 09:47:43 -04007058 */
Josef Bacik723bda22011-05-27 16:11:38 -04007059 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) {
Yan, Zhengb742bb82010-05-16 10:46:24 -04007060 index = 0;
Josef Bacik723bda22011-05-27 16:11:38 -04007061 loop++;
Josef Bacik817d52f2009-07-13 21:29:25 -04007062 if (loop == LOOP_ALLOC_CHUNK) {
Josef Bacik00361582013-08-14 14:02:47 -04007063 struct btrfs_trans_handle *trans;
Wang Shilongf017f152014-03-13 13:19:47 +08007064 int exist = 0;
Josef Bacik00361582013-08-14 14:02:47 -04007065
Wang Shilongf017f152014-03-13 13:19:47 +08007066 trans = current->journal_info;
7067 if (trans)
7068 exist = 1;
7069 else
7070 trans = btrfs_join_transaction(root);
7071
Josef Bacik00361582013-08-14 14:02:47 -04007072 if (IS_ERR(trans)) {
7073 ret = PTR_ERR(trans);
7074 goto out;
7075 }
7076
David Sterbab6919a52013-04-29 13:39:40 +00007077 ret = do_chunk_alloc(trans, root, flags,
Josef Bacikea658ba2012-09-11 16:57:25 -04007078 CHUNK_ALLOC_FORCE);
7079 /*
7080 * Do not bail out on ENOSPC since we
7081 * can do more things.
7082 */
Josef Bacik00361582013-08-14 14:02:47 -04007083 if (ret < 0 && ret != -ENOSPC)
Josef Bacikea658ba2012-09-11 16:57:25 -04007084 btrfs_abort_transaction(trans,
7085 root, ret);
Josef Bacik00361582013-08-14 14:02:47 -04007086 else
7087 ret = 0;
Wang Shilongf017f152014-03-13 13:19:47 +08007088 if (!exist)
7089 btrfs_end_transaction(trans, root);
Josef Bacik00361582013-08-14 14:02:47 -04007090 if (ret)
Josef Bacikea658ba2012-09-11 16:57:25 -04007091 goto out;
Josef Bacik723bda22011-05-27 16:11:38 -04007092 }
7093
7094 if (loop == LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007095 empty_size = 0;
7096 empty_cluster = 0;
7097 }
Chris Mason42e70e72008-11-07 18:17:11 -05007098
Josef Bacik723bda22011-05-27 16:11:38 -04007099 goto search;
Josef Bacik2552d172009-04-03 10:14:19 -04007100 } else if (!ins->objectid) {
7101 ret = -ENOSPC;
Josef Bacikd82a6f12011-05-11 15:26:06 -04007102 } else if (ins->objectid) {
Josef Bacik2552d172009-04-03 10:14:19 -04007103 ret = 0;
7104 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007105out:
Miao Xiea4820392013-09-09 13:19:42 +08007106 if (ret == -ENOSPC)
7107 ins->offset = max_extent_size;
Chris Mason0f70abe2007-02-28 16:46:22 -05007108 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05007109}
Chris Masonec44a352008-04-28 15:29:52 -04007110
Josef Bacik9ed74f22009-09-11 16:12:44 -04007111static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
7112 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04007113{
7114 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb82010-05-16 10:46:24 -04007115 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007116
Josef Bacik9ed74f22009-09-11 16:12:44 -04007117 spin_lock(&info->lock);
Frank Holtonefe120a2013-12-20 11:37:06 -05007118 printk(KERN_INFO "BTRFS: space_info %llu has %llu free, is %sfull\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007119 info->flags,
7120 info->total_bytes - info->bytes_used - info->bytes_pinned -
7121 info->bytes_reserved - info->bytes_readonly,
Chris Masond3977122009-01-05 21:25:51 -05007122 (info->full) ? "" : "not ");
Frank Holtonefe120a2013-12-20 11:37:06 -05007123 printk(KERN_INFO "BTRFS: space_info total=%llu, used=%llu, pinned=%llu, "
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04007124 "reserved=%llu, may_use=%llu, readonly=%llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007125 info->total_bytes, info->bytes_used, info->bytes_pinned,
7126 info->bytes_reserved, info->bytes_may_use,
7127 info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007128 spin_unlock(&info->lock);
7129
7130 if (!dump_block_groups)
7131 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007132
Josef Bacik80eb2342008-10-29 14:49:05 -04007133 down_read(&info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04007134again:
7135 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04007136 spin_lock(&cache->lock);
Frank Holtonefe120a2013-12-20 11:37:06 -05007137 printk(KERN_INFO "BTRFS: "
7138 "block group %llu has %llu bytes, "
7139 "%llu used %llu pinned %llu reserved %s\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007140 cache->key.objectid, cache->key.offset,
7141 btrfs_block_group_used(&cache->item), cache->pinned,
7142 cache->reserved, cache->ro ? "[readonly]" : "");
Josef Bacik0f9dd462008-09-23 13:14:11 -04007143 btrfs_dump_free_space(cache, bytes);
7144 spin_unlock(&cache->lock);
7145 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04007146 if (++index < BTRFS_NR_RAID_TYPES)
7147 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04007148 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04007149}
Zheng Yane8569812008-09-26 10:05:48 -04007150
Josef Bacik00361582013-08-14 14:02:47 -04007151int btrfs_reserve_extent(struct btrfs_root *root,
Yan Zheng11833d62009-09-11 16:11:19 -04007152 u64 num_bytes, u64 min_alloc_size,
7153 u64 empty_size, u64 hint_byte,
Miao Xiee570fd22014-06-19 10:42:50 +08007154 struct btrfs_key *ins, int is_data, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05007155{
Miao Xie9e622d62012-01-26 15:01:12 -05007156 bool final_tried = false;
David Sterbab6919a52013-04-29 13:39:40 +00007157 u64 flags;
Chris Masonfec577f2007-02-26 10:40:21 -05007158 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04007159
David Sterbab6919a52013-04-29 13:39:40 +00007160 flags = btrfs_get_alloc_profile(root, is_data);
Chris Mason98d20f62008-04-14 09:46:10 -04007161again:
Chris Masondb945352007-10-15 16:15:53 -04007162 WARN_ON(num_bytes < root->sectorsize);
Josef Bacik00361582013-08-14 14:02:47 -04007163 ret = find_free_extent(root, num_bytes, empty_size, hint_byte, ins,
Miao Xiee570fd22014-06-19 10:42:50 +08007164 flags, delalloc);
Chris Mason3b951512008-04-17 11:29:12 -04007165
Miao Xie9e622d62012-01-26 15:01:12 -05007166 if (ret == -ENOSPC) {
Miao Xiea4820392013-09-09 13:19:42 +08007167 if (!final_tried && ins->offset) {
7168 num_bytes = min(num_bytes >> 1, ins->offset);
Zach Brown24542bf2012-11-16 00:04:43 +00007169 num_bytes = round_down(num_bytes, root->sectorsize);
Miao Xie9e622d62012-01-26 15:01:12 -05007170 num_bytes = max(num_bytes, min_alloc_size);
Miao Xie9e622d62012-01-26 15:01:12 -05007171 if (num_bytes == min_alloc_size)
7172 final_tried = true;
7173 goto again;
7174 } else if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
7175 struct btrfs_space_info *sinfo;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007176
David Sterbab6919a52013-04-29 13:39:40 +00007177 sinfo = __find_space_info(root->fs_info, flags);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007178 btrfs_err(root->fs_info, "allocation failed flags %llu, wanted %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007179 flags, num_bytes);
Jeff Mahoney53804282012-03-01 14:56:28 +01007180 if (sinfo)
7181 dump_space_info(sinfo, num_bytes, 1);
Miao Xie9e622d62012-01-26 15:01:12 -05007182 }
Chris Mason925baed2008-06-25 16:01:30 -04007183 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04007184
7185 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007186}
7187
Chris Masone688b7252011-10-31 20:52:39 -04007188static int __btrfs_free_reserved_extent(struct btrfs_root *root,
Miao Xiee570fd22014-06-19 10:42:50 +08007189 u64 start, u64 len,
7190 int pin, int delalloc)
Chris Mason65b51a02008-08-01 15:11:20 -04007191{
Josef Bacik0f9dd462008-09-23 13:14:11 -04007192 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05007193 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007194
Josef Bacik0f9dd462008-09-23 13:14:11 -04007195 cache = btrfs_lookup_block_group(root->fs_info, start);
7196 if (!cache) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007197 btrfs_err(root->fs_info, "Unable to find block group for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007198 start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04007199 return -ENOSPC;
7200 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05007201
Chris Masone688b7252011-10-31 20:52:39 -04007202 if (pin)
7203 pin_down_extent(root, cache, start, len, 1);
7204 else {
Filipe Mananadcc82f42015-03-23 14:07:40 +00007205 if (btrfs_test_opt(root, DISCARD))
7206 ret = btrfs_discard_extent(root, start, len, NULL);
Chris Masone688b7252011-10-31 20:52:39 -04007207 btrfs_add_free_space(cache, start, len);
Miao Xiee570fd22014-06-19 10:42:50 +08007208 btrfs_update_reserved_bytes(cache, len, RESERVE_FREE, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04007209 }
Dongsheng Yang31193212014-12-12 16:44:35 +08007210
Chris Masonfa9c0d792009-04-03 09:47:43 -04007211 btrfs_put_block_group(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04007212
liubo1abe9b82011-03-24 11:18:59 +00007213 trace_btrfs_reserved_extent_free(root, start, len);
7214
Chris Masone6dcd2d2008-07-17 12:53:50 -04007215 return ret;
7216}
7217
Chris Masone688b7252011-10-31 20:52:39 -04007218int btrfs_free_reserved_extent(struct btrfs_root *root,
Miao Xiee570fd22014-06-19 10:42:50 +08007219 u64 start, u64 len, int delalloc)
Chris Masone688b7252011-10-31 20:52:39 -04007220{
Miao Xiee570fd22014-06-19 10:42:50 +08007221 return __btrfs_free_reserved_extent(root, start, len, 0, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04007222}
7223
7224int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root,
7225 u64 start, u64 len)
7226{
Miao Xiee570fd22014-06-19 10:42:50 +08007227 return __btrfs_free_reserved_extent(root, start, len, 1, 0);
Chris Masone688b7252011-10-31 20:52:39 -04007228}
7229
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007230static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
7231 struct btrfs_root *root,
7232 u64 parent, u64 root_objectid,
7233 u64 flags, u64 owner, u64 offset,
7234 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04007235{
7236 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007237 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007238 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007239 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007240 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007241 struct extent_buffer *leaf;
7242 int type;
7243 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04007244
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007245 if (parent > 0)
7246 type = BTRFS_SHARED_DATA_REF_KEY;
7247 else
7248 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04007249
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007250 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05007251
7252 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00007253 if (!path)
7254 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05007255
Chris Masonb9473432009-03-13 11:00:37 -04007256 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007257 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
7258 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007259 if (ret) {
7260 btrfs_free_path(path);
7261 return ret;
7262 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04007263
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007264 leaf = path->nodes[0];
7265 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05007266 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007267 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
7268 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
7269 btrfs_set_extent_flags(leaf, extent_item,
7270 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05007271
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007272 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
7273 btrfs_set_extent_inline_ref_type(leaf, iref, type);
7274 if (parent > 0) {
7275 struct btrfs_shared_data_ref *ref;
7276 ref = (struct btrfs_shared_data_ref *)(iref + 1);
7277 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
7278 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
7279 } else {
7280 struct btrfs_extent_data_ref *ref;
7281 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
7282 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
7283 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
7284 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
7285 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
7286 }
Chris Mason47e4bb92008-02-01 14:51:59 -05007287
7288 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05007289 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04007290
Josef Bacikce93ec52014-11-17 15:45:48 -05007291 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007292 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007293 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007294 ins->objectid, ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05007295 BUG();
7296 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04007297 trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007298 return ret;
7299}
7300
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007301static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
7302 struct btrfs_root *root,
7303 u64 parent, u64 root_objectid,
7304 u64 flags, struct btrfs_disk_key *key,
Josef Bacikfcebe452014-05-13 17:30:47 -07007305 int level, struct btrfs_key *ins,
7306 int no_quota)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007307{
7308 int ret;
7309 struct btrfs_fs_info *fs_info = root->fs_info;
7310 struct btrfs_extent_item *extent_item;
7311 struct btrfs_tree_block_info *block_info;
7312 struct btrfs_extent_inline_ref *iref;
7313 struct btrfs_path *path;
7314 struct extent_buffer *leaf;
Josef Bacik3173a182013-03-07 14:22:04 -05007315 u32 size = sizeof(*extent_item) + sizeof(*iref);
Josef Bacikfcebe452014-05-13 17:30:47 -07007316 u64 num_bytes = ins->offset;
Josef Bacik3173a182013-03-07 14:22:04 -05007317 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
7318 SKINNY_METADATA);
7319
7320 if (!skinny_metadata)
7321 size += sizeof(*block_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007322
7323 path = btrfs_alloc_path();
Josef Bacik857cc2f2013-10-07 15:21:08 -04007324 if (!path) {
7325 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
David Sterba707e8a02014-06-04 19:22:26 +02007326 root->nodesize);
Mark Fashehd8926bb2011-07-13 10:38:47 -07007327 return -ENOMEM;
Josef Bacik857cc2f2013-10-07 15:21:08 -04007328 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007329
7330 path->leave_spinning = 1;
7331 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
7332 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007333 if (ret) {
Chris Masondd825252015-04-01 08:36:05 -07007334 btrfs_free_path(path);
Josef Bacik857cc2f2013-10-07 15:21:08 -04007335 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
David Sterba707e8a02014-06-04 19:22:26 +02007336 root->nodesize);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007337 return ret;
7338 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007339
7340 leaf = path->nodes[0];
7341 extent_item = btrfs_item_ptr(leaf, path->slots[0],
7342 struct btrfs_extent_item);
7343 btrfs_set_extent_refs(leaf, extent_item, 1);
7344 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
7345 btrfs_set_extent_flags(leaf, extent_item,
7346 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007347
Josef Bacik3173a182013-03-07 14:22:04 -05007348 if (skinny_metadata) {
7349 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
David Sterba707e8a02014-06-04 19:22:26 +02007350 num_bytes = root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05007351 } else {
7352 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
7353 btrfs_set_tree_block_key(leaf, block_info, key);
7354 btrfs_set_tree_block_level(leaf, block_info, level);
7355 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
7356 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007357
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007358 if (parent > 0) {
7359 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
7360 btrfs_set_extent_inline_ref_type(leaf, iref,
7361 BTRFS_SHARED_BLOCK_REF_KEY);
7362 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
7363 } else {
7364 btrfs_set_extent_inline_ref_type(leaf, iref,
7365 BTRFS_TREE_BLOCK_REF_KEY);
7366 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
7367 }
7368
7369 btrfs_mark_buffer_dirty(leaf);
7370 btrfs_free_path(path);
7371
Josef Bacikce93ec52014-11-17 15:45:48 -05007372 ret = update_block_group(trans, root, ins->objectid, root->nodesize,
7373 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007374 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007375 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007376 ins->objectid, ins->offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007377 BUG();
7378 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04007379
David Sterba707e8a02014-06-04 19:22:26 +02007380 trace_btrfs_reserved_extent_alloc(root, ins->objectid, root->nodesize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007381 return ret;
7382}
7383
7384int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
7385 struct btrfs_root *root,
7386 u64 root_objectid, u64 owner,
7387 u64 offset, struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04007388{
7389 int ret;
Chris Mason1c2308f2008-09-23 13:14:13 -04007390
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007391 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04007392
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007393 ret = btrfs_add_delayed_data_ref(root->fs_info, trans, ins->objectid,
7394 ins->offset, 0,
7395 root_objectid, owner, offset,
7396 BTRFS_ADD_DELAYED_EXTENT, NULL, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007397 return ret;
7398}
Chris Masone02119d2008-09-05 16:13:11 -04007399
7400/*
7401 * this is used by the tree logging recovery code. It records that
7402 * an extent has been allocated and makes sure to clear the free
7403 * space cache bits as well
7404 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007405int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
7406 struct btrfs_root *root,
7407 u64 root_objectid, u64 owner, u64 offset,
7408 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04007409{
7410 int ret;
7411 struct btrfs_block_group_cache *block_group;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04007412
7413 /*
7414 * Mixed block groups will exclude before processing the log so we only
7415 * need to do the exlude dance if this fs isn't mixed.
7416 */
7417 if (!btrfs_fs_incompat(root->fs_info, MIXED_GROUPS)) {
7418 ret = __exclude_logged_extent(root, ins->objectid, ins->offset);
7419 if (ret)
7420 return ret;
7421 }
Chris Masone02119d2008-09-05 16:13:11 -04007422
Chris Masone02119d2008-09-05 16:13:11 -04007423 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04007424 if (!block_group)
7425 return -EINVAL;
Yan Zheng11833d62009-09-11 16:11:19 -04007426
Josef Bacikfb25e912011-07-26 17:00:46 -04007427 ret = btrfs_update_reserved_bytes(block_group, ins->offset,
Miao Xiee570fd22014-06-19 10:42:50 +08007428 RESERVE_ALLOC_NO_ACCOUNT, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007429 BUG_ON(ret); /* logic error */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007430 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
7431 0, owner, offset, ins, 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04007432 btrfs_put_block_group(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04007433 return ret;
7434}
7435
Eric Sandeen48a3b632013-04-25 20:41:01 +00007436static struct extent_buffer *
7437btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
David Sterbafe864572014-06-15 02:28:42 +02007438 u64 bytenr, int level)
Chris Mason65b51a02008-08-01 15:11:20 -04007439{
7440 struct extent_buffer *buf;
7441
David Sterbaa83fffb2014-06-15 02:39:54 +02007442 buf = btrfs_find_create_tree_block(root, bytenr);
Chris Mason65b51a02008-08-01 15:11:20 -04007443 if (!buf)
7444 return ERR_PTR(-ENOMEM);
7445 btrfs_set_header_generation(buf, trans->transid);
Chris Mason85d4e462011-07-26 16:11:19 -04007446 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04007447 btrfs_tree_lock(buf);
Daniel Dressler01d58472014-11-21 17:15:07 +09007448 clean_tree_block(trans, root->fs_info, buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05007449 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
Chris Masonb4ce94d2009-02-04 09:25:08 -05007450
7451 btrfs_set_lock_blocking(buf);
Chris Mason65b51a02008-08-01 15:11:20 -04007452 btrfs_set_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05007453
Chris Masond0c803c2008-09-11 16:17:57 -04007454 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Filipe Manana656f30d2014-09-26 12:25:56 +01007455 buf->log_index = root->log_transid % 2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00007456 /*
7457 * we allow two log transactions at a time, use different
7458 * EXENT bit to differentiate dirty pages.
7459 */
Filipe Manana656f30d2014-09-26 12:25:56 +01007460 if (buf->log_index == 0)
Yan, Zheng8cef4e12009-11-12 09:33:26 +00007461 set_extent_dirty(&root->dirty_log_pages, buf->start,
7462 buf->start + buf->len - 1, GFP_NOFS);
7463 else
7464 set_extent_new(&root->dirty_log_pages, buf->start,
7465 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond0c803c2008-09-11 16:17:57 -04007466 } else {
Filipe Manana656f30d2014-09-26 12:25:56 +01007467 buf->log_index = -1;
Chris Masond0c803c2008-09-11 16:17:57 -04007468 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
7469 buf->start + buf->len - 1, GFP_NOFS);
7470 }
Chris Mason65b51a02008-08-01 15:11:20 -04007471 trans->blocks_used++;
Chris Masonb4ce94d2009-02-04 09:25:08 -05007472 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04007473 return buf;
7474}
7475
Yan, Zhengf0486c62010-05-16 10:46:25 -04007476static struct btrfs_block_rsv *
7477use_block_rsv(struct btrfs_trans_handle *trans,
7478 struct btrfs_root *root, u32 blocksize)
7479{
7480 struct btrfs_block_rsv *block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00007481 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007482 int ret;
Miao Xied88033d2013-05-13 13:55:12 +00007483 bool global_updated = false;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007484
7485 block_rsv = get_block_rsv(trans, root);
7486
Miao Xieb586b322013-05-13 13:55:10 +00007487 if (unlikely(block_rsv->size == 0))
7488 goto try_reserve;
Miao Xied88033d2013-05-13 13:55:12 +00007489again:
Yan, Zhengf0486c62010-05-16 10:46:25 -04007490 ret = block_rsv_use_bytes(block_rsv, blocksize);
7491 if (!ret)
7492 return block_rsv;
7493
Miao Xieb586b322013-05-13 13:55:10 +00007494 if (block_rsv->failfast)
7495 return ERR_PTR(ret);
7496
Miao Xied88033d2013-05-13 13:55:12 +00007497 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
7498 global_updated = true;
7499 update_global_block_rsv(root->fs_info);
7500 goto again;
7501 }
7502
Miao Xieb586b322013-05-13 13:55:10 +00007503 if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
7504 static DEFINE_RATELIMIT_STATE(_rs,
7505 DEFAULT_RATELIMIT_INTERVAL * 10,
7506 /*DEFAULT_RATELIMIT_BURST*/ 1);
7507 if (__ratelimit(&_rs))
7508 WARN(1, KERN_DEBUG
Frank Holtonefe120a2013-12-20 11:37:06 -05007509 "BTRFS: block rsv returned %d\n", ret);
Miao Xieb586b322013-05-13 13:55:10 +00007510 }
7511try_reserve:
7512 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
7513 BTRFS_RESERVE_NO_FLUSH);
7514 if (!ret)
7515 return block_rsv;
7516 /*
7517 * If we couldn't reserve metadata bytes try and use some from
Miao Xie5881cfc2013-05-13 13:55:11 +00007518 * the global reserve if its space type is the same as the global
7519 * reservation.
Miao Xieb586b322013-05-13 13:55:10 +00007520 */
Miao Xie5881cfc2013-05-13 13:55:11 +00007521 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
7522 block_rsv->space_info == global_rsv->space_info) {
Miao Xieb586b322013-05-13 13:55:10 +00007523 ret = block_rsv_use_bytes(global_rsv, blocksize);
7524 if (!ret)
7525 return global_rsv;
7526 }
7527 return ERR_PTR(ret);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007528}
7529
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05007530static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
7531 struct btrfs_block_rsv *block_rsv, u32 blocksize)
Yan, Zhengf0486c62010-05-16 10:46:25 -04007532{
7533 block_rsv_add_bytes(block_rsv, blocksize, 0);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05007534 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007535}
7536
Chris Masonfec577f2007-02-26 10:40:21 -05007537/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04007538 * finds a free extent and does all the dirty work required for allocation
7539 * returns the key for the extent through ins, and a tree buffer for
7540 * the first block of the extent through buf.
7541 *
Omar Sandoval67b78592015-02-24 02:47:04 -08007542 * returns the tree buffer or an ERR_PTR on error.
Chris Masonfec577f2007-02-26 10:40:21 -05007543 */
David Sterba4d75f8a2014-06-15 01:54:12 +02007544struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans,
7545 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007546 u64 parent, u64 root_objectid,
7547 struct btrfs_disk_key *key, int level,
Jan Schmidt5581a512012-05-16 17:04:52 +02007548 u64 hint, u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05007549{
Chris Masone2fa7222007-03-12 16:22:34 -04007550 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007551 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04007552 struct extent_buffer *buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08007553 struct btrfs_delayed_extent_op *extent_op;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007554 u64 flags = 0;
7555 int ret;
David Sterba4d75f8a2014-06-15 01:54:12 +02007556 u32 blocksize = root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05007557 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
7558 SKINNY_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007559
David Sterbafccb84c2014-09-29 23:53:21 +02007560 if (btrfs_test_is_dummy_root(root)) {
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04007561 buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr,
David Sterbafe864572014-06-15 02:28:42 +02007562 level);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04007563 if (!IS_ERR(buf))
7564 root->alloc_bytenr += blocksize;
7565 return buf;
7566 }
David Sterbafccb84c2014-09-29 23:53:21 +02007567
Yan, Zhengf0486c62010-05-16 10:46:25 -04007568 block_rsv = use_block_rsv(trans, root, blocksize);
7569 if (IS_ERR(block_rsv))
7570 return ERR_CAST(block_rsv);
7571
Josef Bacik00361582013-08-14 14:02:47 -04007572 ret = btrfs_reserve_extent(root, blocksize, blocksize,
Miao Xiee570fd22014-06-19 10:42:50 +08007573 empty_size, hint, &ins, 0, 0);
Omar Sandoval67b78592015-02-24 02:47:04 -08007574 if (ret)
7575 goto out_unuse;
Chris Mason55c69072008-01-09 15:55:33 -05007576
David Sterbafe864572014-06-15 02:28:42 +02007577 buf = btrfs_init_new_buffer(trans, root, ins.objectid, level);
Omar Sandoval67b78592015-02-24 02:47:04 -08007578 if (IS_ERR(buf)) {
7579 ret = PTR_ERR(buf);
7580 goto out_free_reserved;
7581 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04007582
7583 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
7584 if (parent == 0)
7585 parent = ins.objectid;
7586 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
7587 } else
7588 BUG_ON(parent > 0);
7589
7590 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
Miao Xie78a61842012-11-21 02:21:28 +00007591 extent_op = btrfs_alloc_delayed_extent_op();
Omar Sandoval67b78592015-02-24 02:47:04 -08007592 if (!extent_op) {
7593 ret = -ENOMEM;
7594 goto out_free_buf;
7595 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04007596 if (key)
7597 memcpy(&extent_op->key, key, sizeof(extent_op->key));
7598 else
7599 memset(&extent_op->key, 0, sizeof(extent_op->key));
7600 extent_op->flags_to_set = flags;
Josef Bacik3173a182013-03-07 14:22:04 -05007601 if (skinny_metadata)
7602 extent_op->update_key = 0;
7603 else
7604 extent_op->update_key = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007605 extent_op->update_flags = 1;
7606 extent_op->is_data = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04007607 extent_op->level = level;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007608
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007609 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
Omar Sandoval67b78592015-02-24 02:47:04 -08007610 ins.objectid, ins.offset,
7611 parent, root_objectid, level,
7612 BTRFS_ADD_DELAYED_EXTENT,
7613 extent_op, 0);
7614 if (ret)
7615 goto out_free_delayed;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007616 }
Chris Masonfec577f2007-02-26 10:40:21 -05007617 return buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08007618
7619out_free_delayed:
7620 btrfs_free_delayed_extent_op(extent_op);
7621out_free_buf:
7622 free_extent_buffer(buf);
7623out_free_reserved:
7624 btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 0);
7625out_unuse:
7626 unuse_block_rsv(root->fs_info, block_rsv, blocksize);
7627 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05007628}
Chris Masona28ec192007-03-06 20:08:01 -05007629
Yan Zheng2c47e6052009-06-27 21:07:35 -04007630struct walk_control {
7631 u64 refs[BTRFS_MAX_LEVEL];
7632 u64 flags[BTRFS_MAX_LEVEL];
7633 struct btrfs_key update_progress;
7634 int stage;
7635 int level;
7636 int shared_level;
7637 int update_ref;
7638 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007639 int reada_slot;
7640 int reada_count;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007641 int for_reloc;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007642};
7643
7644#define DROP_REFERENCE 1
7645#define UPDATE_BACKREF 2
7646
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007647static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
7648 struct btrfs_root *root,
7649 struct walk_control *wc,
7650 struct btrfs_path *path)
7651{
7652 u64 bytenr;
7653 u64 generation;
7654 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007655 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007656 u32 nritems;
7657 u32 blocksize;
7658 struct btrfs_key key;
7659 struct extent_buffer *eb;
7660 int ret;
7661 int slot;
7662 int nread = 0;
7663
7664 if (path->slots[wc->level] < wc->reada_slot) {
7665 wc->reada_count = wc->reada_count * 2 / 3;
7666 wc->reada_count = max(wc->reada_count, 2);
7667 } else {
7668 wc->reada_count = wc->reada_count * 3 / 2;
7669 wc->reada_count = min_t(int, wc->reada_count,
7670 BTRFS_NODEPTRS_PER_BLOCK(root));
7671 }
7672
7673 eb = path->nodes[wc->level];
7674 nritems = btrfs_header_nritems(eb);
David Sterba707e8a02014-06-04 19:22:26 +02007675 blocksize = root->nodesize;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007676
7677 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
7678 if (nread >= wc->reada_count)
7679 break;
7680
7681 cond_resched();
7682 bytenr = btrfs_node_blockptr(eb, slot);
7683 generation = btrfs_node_ptr_generation(eb, slot);
7684
7685 if (slot == path->slots[wc->level])
7686 goto reada;
7687
7688 if (wc->stage == UPDATE_BACKREF &&
7689 generation <= root->root_key.offset)
7690 continue;
7691
Yan, Zheng94fcca92009-10-09 09:25:16 -04007692 /* We don't lock the tree block, it's OK to be racy here */
Josef Bacik3173a182013-03-07 14:22:04 -05007693 ret = btrfs_lookup_extent_info(trans, root, bytenr,
7694 wc->level - 1, 1, &refs,
7695 &flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007696 /* We don't care about errors in readahead. */
7697 if (ret < 0)
7698 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007699 BUG_ON(refs == 0);
7700
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007701 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007702 if (refs == 1)
7703 goto reada;
7704
Yan, Zheng94fcca92009-10-09 09:25:16 -04007705 if (wc->level == 1 &&
7706 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7707 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007708 if (!wc->update_ref ||
7709 generation <= root->root_key.offset)
7710 continue;
7711 btrfs_node_key_to_cpu(eb, &key, slot);
7712 ret = btrfs_comp_cpu_keys(&key,
7713 &wc->update_progress);
7714 if (ret < 0)
7715 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007716 } else {
7717 if (wc->level == 1 &&
7718 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7719 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007720 }
7721reada:
David Sterbad3e46fe2014-06-15 02:04:19 +02007722 readahead_tree_block(root, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007723 nread++;
7724 }
7725 wc->reada_slot = slot;
7726}
7727
Qu Wenruo0ed47922015-04-16 16:55:08 +08007728/*
7729 * TODO: Modify related function to add related node/leaf to dirty_extent_root,
7730 * for later qgroup accounting.
7731 *
7732 * Current, this function does nothing.
7733 */
Mark Fasheh11526512014-07-17 12:39:01 -07007734static int account_leaf_items(struct btrfs_trans_handle *trans,
7735 struct btrfs_root *root,
7736 struct extent_buffer *eb)
7737{
7738 int nr = btrfs_header_nritems(eb);
Qu Wenruo0ed47922015-04-16 16:55:08 +08007739 int i, extent_type;
Mark Fasheh11526512014-07-17 12:39:01 -07007740 struct btrfs_key key;
7741 struct btrfs_file_extent_item *fi;
7742 u64 bytenr, num_bytes;
7743
7744 for (i = 0; i < nr; i++) {
7745 btrfs_item_key_to_cpu(eb, &key, i);
7746
7747 if (key.type != BTRFS_EXTENT_DATA_KEY)
7748 continue;
7749
7750 fi = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
7751 /* filter out non qgroup-accountable extents */
7752 extent_type = btrfs_file_extent_type(eb, fi);
7753
7754 if (extent_type == BTRFS_FILE_EXTENT_INLINE)
7755 continue;
7756
7757 bytenr = btrfs_file_extent_disk_bytenr(eb, fi);
7758 if (!bytenr)
7759 continue;
7760
7761 num_bytes = btrfs_file_extent_disk_num_bytes(eb, fi);
Mark Fasheh11526512014-07-17 12:39:01 -07007762 }
7763 return 0;
7764}
7765
7766/*
7767 * Walk up the tree from the bottom, freeing leaves and any interior
7768 * nodes which have had all slots visited. If a node (leaf or
7769 * interior) is freed, the node above it will have it's slot
7770 * incremented. The root node will never be freed.
7771 *
7772 * At the end of this function, we should have a path which has all
7773 * slots incremented to the next position for a search. If we need to
7774 * read a new node it will be NULL and the node above it will have the
7775 * correct slot selected for a later read.
7776 *
7777 * If we increment the root nodes slot counter past the number of
7778 * elements, 1 is returned to signal completion of the search.
7779 */
7780static int adjust_slots_upwards(struct btrfs_root *root,
7781 struct btrfs_path *path, int root_level)
7782{
7783 int level = 0;
7784 int nr, slot;
7785 struct extent_buffer *eb;
7786
7787 if (root_level == 0)
7788 return 1;
7789
7790 while (level <= root_level) {
7791 eb = path->nodes[level];
7792 nr = btrfs_header_nritems(eb);
7793 path->slots[level]++;
7794 slot = path->slots[level];
7795 if (slot >= nr || level == 0) {
7796 /*
7797 * Don't free the root - we will detect this
7798 * condition after our loop and return a
7799 * positive value for caller to stop walking the tree.
7800 */
7801 if (level != root_level) {
7802 btrfs_tree_unlock_rw(eb, path->locks[level]);
7803 path->locks[level] = 0;
7804
7805 free_extent_buffer(eb);
7806 path->nodes[level] = NULL;
7807 path->slots[level] = 0;
7808 }
7809 } else {
7810 /*
7811 * We have a valid slot to walk back down
7812 * from. Stop here so caller can process these
7813 * new nodes.
7814 */
7815 break;
7816 }
7817
7818 level++;
7819 }
7820
7821 eb = path->nodes[root_level];
7822 if (path->slots[root_level] >= btrfs_header_nritems(eb))
7823 return 1;
7824
7825 return 0;
7826}
7827
7828/*
7829 * root_eb is the subtree root and is locked before this function is called.
Qu Wenruo0ed47922015-04-16 16:55:08 +08007830 * TODO: Modify this function to mark all (including complete shared node)
7831 * to dirty_extent_root to allow it get accounted in qgroup.
Mark Fasheh11526512014-07-17 12:39:01 -07007832 */
7833static int account_shared_subtree(struct btrfs_trans_handle *trans,
7834 struct btrfs_root *root,
7835 struct extent_buffer *root_eb,
7836 u64 root_gen,
7837 int root_level)
7838{
7839 int ret = 0;
7840 int level;
7841 struct extent_buffer *eb = root_eb;
7842 struct btrfs_path *path = NULL;
7843
7844 BUG_ON(root_level < 0 || root_level > BTRFS_MAX_LEVEL);
7845 BUG_ON(root_eb == NULL);
7846
7847 if (!root->fs_info->quota_enabled)
7848 return 0;
7849
7850 if (!extent_buffer_uptodate(root_eb)) {
7851 ret = btrfs_read_buffer(root_eb, root_gen);
7852 if (ret)
7853 goto out;
7854 }
7855
7856 if (root_level == 0) {
7857 ret = account_leaf_items(trans, root, root_eb);
7858 goto out;
7859 }
7860
7861 path = btrfs_alloc_path();
7862 if (!path)
7863 return -ENOMEM;
7864
7865 /*
7866 * Walk down the tree. Missing extent blocks are filled in as
7867 * we go. Metadata is accounted every time we read a new
7868 * extent block.
7869 *
7870 * When we reach a leaf, we account for file extent items in it,
7871 * walk back up the tree (adjusting slot pointers as we go)
7872 * and restart the search process.
7873 */
7874 extent_buffer_get(root_eb); /* For path */
7875 path->nodes[root_level] = root_eb;
7876 path->slots[root_level] = 0;
7877 path->locks[root_level] = 0; /* so release_path doesn't try to unlock */
7878walk_down:
7879 level = root_level;
7880 while (level >= 0) {
7881 if (path->nodes[level] == NULL) {
Mark Fasheh11526512014-07-17 12:39:01 -07007882 int parent_slot;
7883 u64 child_gen;
7884 u64 child_bytenr;
7885
7886 /* We need to get child blockptr/gen from
7887 * parent before we can read it. */
7888 eb = path->nodes[level + 1];
7889 parent_slot = path->slots[level + 1];
7890 child_bytenr = btrfs_node_blockptr(eb, parent_slot);
7891 child_gen = btrfs_node_ptr_generation(eb, parent_slot);
7892
David Sterbace86cd52014-06-15 01:07:32 +02007893 eb = read_tree_block(root, child_bytenr, child_gen);
Liu Bo64c043d2015-05-25 17:30:15 +08007894 if (IS_ERR(eb)) {
7895 ret = PTR_ERR(eb);
7896 goto out;
7897 } else if (!extent_buffer_uptodate(eb)) {
Liu Bo8635eda2015-05-25 17:30:14 +08007898 free_extent_buffer(eb);
Liu Bo64c043d2015-05-25 17:30:15 +08007899 ret = -EIO;
Mark Fasheh11526512014-07-17 12:39:01 -07007900 goto out;
7901 }
7902
7903 path->nodes[level] = eb;
7904 path->slots[level] = 0;
7905
7906 btrfs_tree_read_lock(eb);
7907 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
7908 path->locks[level] = BTRFS_READ_LOCK_BLOCKING;
Mark Fasheh11526512014-07-17 12:39:01 -07007909 }
7910
7911 if (level == 0) {
7912 ret = account_leaf_items(trans, root, path->nodes[level]);
7913 if (ret)
7914 goto out;
7915
7916 /* Nonzero return here means we completed our search */
7917 ret = adjust_slots_upwards(root, path, root_level);
7918 if (ret)
7919 break;
7920
7921 /* Restart search with new slots */
7922 goto walk_down;
7923 }
7924
7925 level--;
7926 }
7927
7928 ret = 0;
7929out:
7930 btrfs_free_path(path);
7931
7932 return ret;
7933}
7934
Chris Mason9aca1d52007-03-13 11:09:37 -04007935/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007936 * helper to process tree block while walking down the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04007937 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04007938 * when wc->stage == UPDATE_BACKREF, this function updates
7939 * back refs for pointers in the block.
7940 *
7941 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04007942 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007943static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
7944 struct btrfs_root *root,
7945 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007946 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04007947{
7948 int level = wc->level;
7949 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04007950 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
7951 int ret;
7952
7953 if (wc->stage == UPDATE_BACKREF &&
7954 btrfs_header_owner(eb) != root->root_key.objectid)
7955 return 1;
7956
7957 /*
7958 * when reference count of tree block is 1, it won't increase
7959 * again. once full backref flag is set, we never clear it.
7960 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04007961 if (lookup_info &&
7962 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
7963 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007964 BUG_ON(!path->locks[level]);
7965 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05007966 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007967 &wc->refs[level],
7968 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007969 BUG_ON(ret == -ENOMEM);
7970 if (ret)
7971 return ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007972 BUG_ON(wc->refs[level] == 0);
7973 }
7974
Yan Zheng2c47e6052009-06-27 21:07:35 -04007975 if (wc->stage == DROP_REFERENCE) {
7976 if (wc->refs[level] > 1)
7977 return 1;
7978
7979 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04007980 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007981 path->locks[level] = 0;
7982 }
7983 return 0;
7984 }
7985
7986 /* wc->stage == UPDATE_BACKREF */
7987 if (!(wc->flags[level] & flag)) {
7988 BUG_ON(!path->locks[level]);
Josef Bacike339a6b2014-07-02 10:54:25 -07007989 ret = btrfs_inc_ref(trans, root, eb, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007990 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07007991 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007992 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007993 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
Josef Bacikb1c79e02013-05-09 13:49:30 -04007994 eb->len, flag,
7995 btrfs_header_level(eb), 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007996 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007997 wc->flags[level] |= flag;
7998 }
7999
8000 /*
8001 * the block is shared by multiple trees, so it's not good to
8002 * keep the tree lock
8003 */
8004 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04008005 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008006 path->locks[level] = 0;
8007 }
8008 return 0;
8009}
8010
8011/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008012 * helper to process tree block pointer.
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008013 *
8014 * when wc->stage == DROP_REFERENCE, this function checks
8015 * reference count of the block pointed to. if the block
8016 * is shared and we need update back refs for the subtree
8017 * rooted at the block, this function changes wc->stage to
8018 * UPDATE_BACKREF. if the block is shared and there is no
8019 * need to update back, this function drops the reference
8020 * to the block.
8021 *
8022 * NOTE: return value 1 means we should stop walking down.
8023 */
8024static noinline int do_walk_down(struct btrfs_trans_handle *trans,
8025 struct btrfs_root *root,
8026 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008027 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008028{
8029 u64 bytenr;
8030 u64 generation;
8031 u64 parent;
8032 u32 blocksize;
8033 struct btrfs_key key;
8034 struct extent_buffer *next;
8035 int level = wc->level;
8036 int reada = 0;
8037 int ret = 0;
Mark Fasheh11526512014-07-17 12:39:01 -07008038 bool need_account = false;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008039
8040 generation = btrfs_node_ptr_generation(path->nodes[level],
8041 path->slots[level]);
8042 /*
8043 * if the lower level block was created before the snapshot
8044 * was created, we know there is no need to update back refs
8045 * for the subtree
8046 */
8047 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04008048 generation <= root->root_key.offset) {
8049 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008050 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008051 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008052
8053 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
David Sterba707e8a02014-06-04 19:22:26 +02008054 blocksize = root->nodesize;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008055
Daniel Dressler01d58472014-11-21 17:15:07 +09008056 next = btrfs_find_tree_block(root->fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008057 if (!next) {
David Sterbaa83fffb2014-06-15 02:39:54 +02008058 next = btrfs_find_create_tree_block(root, bytenr);
Miao Xie90d2c51d2010-03-25 12:37:12 +00008059 if (!next)
8060 return -ENOMEM;
Josef Bacikb2aaaa32013-07-05 17:05:38 -04008061 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
8062 level - 1);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008063 reada = 1;
8064 }
8065 btrfs_tree_lock(next);
8066 btrfs_set_lock_blocking(next);
8067
Josef Bacik3173a182013-03-07 14:22:04 -05008068 ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008069 &wc->refs[level - 1],
8070 &wc->flags[level - 1]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008071 if (ret < 0) {
8072 btrfs_tree_unlock(next);
8073 return ret;
8074 }
8075
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008076 if (unlikely(wc->refs[level - 1] == 0)) {
8077 btrfs_err(root->fs_info, "Missing references.");
8078 BUG();
8079 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008080 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008081
Yan, Zheng94fcca92009-10-09 09:25:16 -04008082 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008083 if (wc->refs[level - 1] > 1) {
Mark Fasheh11526512014-07-17 12:39:01 -07008084 need_account = true;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008085 if (level == 1 &&
8086 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8087 goto skip;
8088
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008089 if (!wc->update_ref ||
8090 generation <= root->root_key.offset)
8091 goto skip;
8092
8093 btrfs_node_key_to_cpu(path->nodes[level], &key,
8094 path->slots[level]);
8095 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
8096 if (ret < 0)
8097 goto skip;
8098
8099 wc->stage = UPDATE_BACKREF;
8100 wc->shared_level = level - 1;
8101 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008102 } else {
8103 if (level == 1 &&
8104 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8105 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008106 }
8107
Chris Masonb9fab912012-05-06 07:23:47 -04008108 if (!btrfs_buffer_uptodate(next, generation, 0)) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008109 btrfs_tree_unlock(next);
8110 free_extent_buffer(next);
8111 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008112 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008113 }
8114
8115 if (!next) {
8116 if (reada && level == 1)
8117 reada_walk_down(trans, root, wc, path);
David Sterbace86cd52014-06-15 01:07:32 +02008118 next = read_tree_block(root, bytenr, generation);
Liu Bo64c043d2015-05-25 17:30:15 +08008119 if (IS_ERR(next)) {
8120 return PTR_ERR(next);
8121 } else if (!extent_buffer_uptodate(next)) {
Josef Bacik416bc652013-04-23 14:17:42 -04008122 free_extent_buffer(next);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00008123 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04008124 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008125 btrfs_tree_lock(next);
8126 btrfs_set_lock_blocking(next);
8127 }
8128
8129 level--;
8130 BUG_ON(level != btrfs_header_level(next));
8131 path->nodes[level] = next;
8132 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008133 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008134 wc->level = level;
8135 if (wc->level == 1)
8136 wc->reada_slot = 0;
8137 return 0;
8138skip:
8139 wc->refs[level - 1] = 0;
8140 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008141 if (wc->stage == DROP_REFERENCE) {
8142 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
8143 parent = path->nodes[level]->start;
8144 } else {
8145 BUG_ON(root->root_key.objectid !=
8146 btrfs_header_owner(path->nodes[level]));
8147 parent = 0;
8148 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008149
Mark Fasheh11526512014-07-17 12:39:01 -07008150 if (need_account) {
8151 ret = account_shared_subtree(trans, root, next,
8152 generation, level - 1);
8153 if (ret) {
8154 printk_ratelimited(KERN_ERR "BTRFS: %s Error "
8155 "%d accounting shared subtree. Quota "
8156 "is out of sync, rescan required.\n",
8157 root->fs_info->sb->s_id, ret);
8158 }
8159 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008160 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008161 root->root_key.objectid, level - 1, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008162 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008163 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008164 btrfs_tree_unlock(next);
8165 free_extent_buffer(next);
Yan, Zheng94fcca92009-10-09 09:25:16 -04008166 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008167 return 1;
8168}
8169
8170/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008171 * helper to process tree block while walking up the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04008172 *
8173 * when wc->stage == DROP_REFERENCE, this function drops
8174 * reference count on the block.
8175 *
8176 * when wc->stage == UPDATE_BACKREF, this function changes
8177 * wc->stage back to DROP_REFERENCE if we changed wc->stage
8178 * to UPDATE_BACKREF previously while processing the block.
8179 *
8180 * NOTE: return value 1 means we should stop walking up.
8181 */
8182static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
8183 struct btrfs_root *root,
8184 struct btrfs_path *path,
8185 struct walk_control *wc)
8186{
Yan, Zhengf0486c62010-05-16 10:46:25 -04008187 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008188 int level = wc->level;
8189 struct extent_buffer *eb = path->nodes[level];
8190 u64 parent = 0;
8191
8192 if (wc->stage == UPDATE_BACKREF) {
8193 BUG_ON(wc->shared_level < level);
8194 if (level < wc->shared_level)
8195 goto out;
8196
Yan Zheng2c47e6052009-06-27 21:07:35 -04008197 ret = find_next_key(path, level + 1, &wc->update_progress);
8198 if (ret > 0)
8199 wc->update_ref = 0;
8200
8201 wc->stage = DROP_REFERENCE;
8202 wc->shared_level = -1;
8203 path->slots[level] = 0;
8204
8205 /*
8206 * check reference count again if the block isn't locked.
8207 * we should start walking down the tree again if reference
8208 * count is one.
8209 */
8210 if (!path->locks[level]) {
8211 BUG_ON(level == 0);
8212 btrfs_tree_lock(eb);
8213 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04008214 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008215
8216 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05008217 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008218 &wc->refs[level],
8219 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008220 if (ret < 0) {
8221 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00008222 path->locks[level] = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008223 return ret;
8224 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008225 BUG_ON(wc->refs[level] == 0);
8226 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04008227 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00008228 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008229 return 1;
8230 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008231 }
8232 }
8233
8234 /* wc->stage == DROP_REFERENCE */
8235 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
8236
8237 if (wc->refs[level] == 1) {
8238 if (level == 0) {
8239 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
Josef Bacike339a6b2014-07-02 10:54:25 -07008240 ret = btrfs_dec_ref(trans, root, eb, 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008241 else
Josef Bacike339a6b2014-07-02 10:54:25 -07008242 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008243 BUG_ON(ret); /* -ENOMEM */
Mark Fasheh11526512014-07-17 12:39:01 -07008244 ret = account_leaf_items(trans, root, eb);
8245 if (ret) {
8246 printk_ratelimited(KERN_ERR "BTRFS: %s Error "
8247 "%d accounting leaf items. Quota "
8248 "is out of sync, rescan required.\n",
8249 root->fs_info->sb->s_id, ret);
8250 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008251 }
8252 /* make block locked assertion in clean_tree_block happy */
8253 if (!path->locks[level] &&
8254 btrfs_header_generation(eb) == trans->transid) {
8255 btrfs_tree_lock(eb);
8256 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04008257 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008258 }
Daniel Dressler01d58472014-11-21 17:15:07 +09008259 clean_tree_block(trans, root->fs_info, eb);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008260 }
8261
8262 if (eb == root->node) {
8263 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
8264 parent = eb->start;
8265 else
8266 BUG_ON(root->root_key.objectid !=
8267 btrfs_header_owner(eb));
8268 } else {
8269 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
8270 parent = path->nodes[level + 1]->start;
8271 else
8272 BUG_ON(root->root_key.objectid !=
8273 btrfs_header_owner(path->nodes[level + 1]));
8274 }
8275
Jan Schmidt5581a512012-05-16 17:04:52 +02008276 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008277out:
8278 wc->refs[level] = 0;
8279 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008280 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008281}
8282
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008283static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
8284 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008285 struct btrfs_path *path,
8286 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04008287{
Yan Zheng2c47e6052009-06-27 21:07:35 -04008288 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008289 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008290 int ret;
8291
Yan Zheng2c47e6052009-06-27 21:07:35 -04008292 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04008293 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008294 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04008295 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008296
Yan Zheng2c47e6052009-06-27 21:07:35 -04008297 if (level == 0)
8298 break;
8299
Yan, Zheng7a7965f2010-02-01 02:41:17 +00008300 if (path->slots[level] >=
8301 btrfs_header_nritems(path->nodes[level]))
8302 break;
8303
Yan, Zheng94fcca92009-10-09 09:25:16 -04008304 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008305 if (ret > 0) {
8306 path->slots[level]++;
8307 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00008308 } else if (ret < 0)
8309 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008310 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008311 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04008312 return 0;
8313}
8314
Chris Masond3977122009-01-05 21:25:51 -05008315static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05008316 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04008317 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008318 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05008319{
Yan Zheng2c47e6052009-06-27 21:07:35 -04008320 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05008321 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04008322
Yan Zheng2c47e6052009-06-27 21:07:35 -04008323 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
8324 while (level < max_level && path->nodes[level]) {
8325 wc->level = level;
8326 if (path->slots[level] + 1 <
8327 btrfs_header_nritems(path->nodes[level])) {
8328 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05008329 return 0;
8330 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008331 ret = walk_up_proc(trans, root, path, wc);
8332 if (ret > 0)
8333 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05008334
Yan Zheng2c47e6052009-06-27 21:07:35 -04008335 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04008336 btrfs_tree_unlock_rw(path->nodes[level],
8337 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008338 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008339 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008340 free_extent_buffer(path->nodes[level]);
8341 path->nodes[level] = NULL;
8342 level++;
Chris Mason20524f02007-03-10 06:35:47 -05008343 }
8344 }
8345 return 1;
8346}
8347
Chris Mason9aca1d52007-03-13 11:09:37 -04008348/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04008349 * drop a subvolume tree.
8350 *
8351 * this function traverses the tree freeing any blocks that only
8352 * referenced by the tree.
8353 *
8354 * when a shared tree block is found. this function decreases its
8355 * reference count by one. if update_ref is true, this function
8356 * also make sure backrefs for the shared block and all lower level
8357 * blocks are properly updated.
David Sterba9d1a2a32013-03-12 15:13:28 +00008358 *
8359 * If called with for_reloc == 0, may exit early with -EAGAIN
Chris Mason9aca1d52007-03-13 11:09:37 -04008360 */
Jeff Mahoney2c536792011-10-03 23:22:41 -04008361int btrfs_drop_snapshot(struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008362 struct btrfs_block_rsv *block_rsv, int update_ref,
8363 int for_reloc)
Chris Mason20524f02007-03-10 06:35:47 -05008364{
Chris Mason5caf2a02007-04-02 11:20:42 -04008365 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008366 struct btrfs_trans_handle *trans;
8367 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04008368 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008369 struct walk_control *wc;
8370 struct btrfs_key key;
8371 int err = 0;
8372 int ret;
8373 int level;
Josef Bacikd29a9f62013-07-17 19:30:20 -04008374 bool root_dropped = false;
Chris Mason20524f02007-03-10 06:35:47 -05008375
Mark Fasheh11526512014-07-17 12:39:01 -07008376 btrfs_debug(root->fs_info, "Drop subvolume %llu", root->objectid);
8377
Chris Mason5caf2a02007-04-02 11:20:42 -04008378 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008379 if (!path) {
8380 err = -ENOMEM;
8381 goto out;
8382 }
Chris Mason20524f02007-03-10 06:35:47 -05008383
Yan Zheng2c47e6052009-06-27 21:07:35 -04008384 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07008385 if (!wc) {
8386 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008387 err = -ENOMEM;
8388 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07008389 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008390
Yan, Zhenga22285a2010-05-16 10:48:46 -04008391 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008392 if (IS_ERR(trans)) {
8393 err = PTR_ERR(trans);
8394 goto out_free;
8395 }
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00008396
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008397 if (block_rsv)
8398 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008399
Chris Mason9f3a7422007-08-07 15:52:19 -04008400 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008401 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008402 path->nodes[level] = btrfs_lock_root_node(root);
8403 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04008404 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008405 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008406 memset(&wc->update_progress, 0,
8407 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04008408 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04008409 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008410 memcpy(&wc->update_progress, &key,
8411 sizeof(wc->update_progress));
8412
Chris Mason6702ed42007-08-07 16:15:09 -04008413 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008414 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04008415 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008416 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
8417 path->lowest_level = 0;
8418 if (ret < 0) {
8419 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008420 goto out_end_trans;
Chris Mason9f3a7422007-08-07 15:52:19 -04008421 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008422 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008423
Chris Mason7d9eb122008-07-08 14:19:17 -04008424 /*
8425 * unlock our path, this is safe because only this
8426 * function is allowed to delete this snapshot
8427 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008428 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04008429
Yan Zheng2c47e6052009-06-27 21:07:35 -04008430 level = btrfs_header_level(root->node);
8431 while (1) {
8432 btrfs_tree_lock(path->nodes[level]);
8433 btrfs_set_lock_blocking(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04008434 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008435
8436 ret = btrfs_lookup_extent_info(trans, root,
8437 path->nodes[level]->start,
Josef Bacik3173a182013-03-07 14:22:04 -05008438 level, 1, &wc->refs[level],
Yan Zheng2c47e6052009-06-27 21:07:35 -04008439 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008440 if (ret < 0) {
8441 err = ret;
8442 goto out_end_trans;
8443 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008444 BUG_ON(wc->refs[level] == 0);
8445
8446 if (level == root_item->drop_level)
8447 break;
8448
8449 btrfs_tree_unlock(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04008450 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008451 WARN_ON(wc->refs[level] != 1);
8452 level--;
8453 }
8454 }
8455
8456 wc->level = level;
8457 wc->shared_level = -1;
8458 wc->stage = DROP_REFERENCE;
8459 wc->update_ref = update_ref;
8460 wc->keep_locks = 0;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008461 wc->for_reloc = for_reloc;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008462 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008463
8464 while (1) {
David Sterba9d1a2a32013-03-12 15:13:28 +00008465
Yan Zheng2c47e6052009-06-27 21:07:35 -04008466 ret = walk_down_tree(trans, root, path, wc);
8467 if (ret < 0) {
8468 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04008469 break;
8470 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008471
8472 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
8473 if (ret < 0) {
8474 err = ret;
8475 break;
8476 }
8477
8478 if (ret > 0) {
8479 BUG_ON(wc->stage != DROP_REFERENCE);
8480 break;
8481 }
8482
8483 if (wc->stage == DROP_REFERENCE) {
8484 level = wc->level;
8485 btrfs_node_key(path->nodes[level],
8486 &root_item->drop_progress,
8487 path->slots[level]);
8488 root_item->drop_level = level;
8489 }
8490
8491 BUG_ON(wc->level == 0);
Josef Bacik3c8f2422013-07-15 11:57:06 -04008492 if (btrfs_should_end_transaction(trans, tree_root) ||
8493 (!for_reloc && btrfs_need_cleaner_sleep(root))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008494 ret = btrfs_update_root(trans, tree_root,
8495 &root->root_key,
8496 root_item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008497 if (ret) {
8498 btrfs_abort_transaction(trans, tree_root, ret);
8499 err = ret;
8500 goto out_end_trans;
8501 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008502
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008503 btrfs_end_transaction_throttle(trans, tree_root);
Josef Bacik3c8f2422013-07-15 11:57:06 -04008504 if (!for_reloc && btrfs_need_cleaner_sleep(root)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05008505 pr_debug("BTRFS: drop snapshot early exit\n");
Josef Bacik3c8f2422013-07-15 11:57:06 -04008506 err = -EAGAIN;
8507 goto out_free;
8508 }
8509
Yan, Zhenga22285a2010-05-16 10:48:46 -04008510 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008511 if (IS_ERR(trans)) {
8512 err = PTR_ERR(trans);
8513 goto out_free;
8514 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008515 if (block_rsv)
8516 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04008517 }
Chris Mason20524f02007-03-10 06:35:47 -05008518 }
David Sterbab3b4aa72011-04-21 01:20:15 +02008519 btrfs_release_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008520 if (err)
8521 goto out_end_trans;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008522
8523 ret = btrfs_del_root(trans, tree_root, &root->root_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008524 if (ret) {
8525 btrfs_abort_transaction(trans, tree_root, ret);
8526 goto out_end_trans;
8527 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008528
Yan, Zheng76dda932009-09-21 16:00:26 -04008529 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Miao Xiecb517ea2013-05-15 07:48:19 +00008530 ret = btrfs_find_root(tree_root, &root->root_key, path,
8531 NULL, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008532 if (ret < 0) {
8533 btrfs_abort_transaction(trans, tree_root, ret);
8534 err = ret;
8535 goto out_end_trans;
8536 } else if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05008537 /* if we fail to delete the orphan item this time
8538 * around, it'll get picked up the next time.
8539 *
8540 * The most common failure here is just -ENOENT.
8541 */
8542 btrfs_del_orphan_item(trans, tree_root,
8543 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04008544 }
8545 }
8546
Miao Xie27cdeb72014-04-02 19:51:05 +08008547 if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) {
Miao Xiecb517ea2013-05-15 07:48:19 +00008548 btrfs_drop_and_free_fs_root(tree_root->fs_info, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04008549 } else {
8550 free_extent_buffer(root->node);
8551 free_extent_buffer(root->commit_root);
Miao Xieb0feb9d2013-05-15 07:48:20 +00008552 btrfs_put_fs_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04008553 }
Josef Bacikd29a9f62013-07-17 19:30:20 -04008554 root_dropped = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008555out_end_trans:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008556 btrfs_end_transaction_throttle(trans, tree_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008557out_free:
Yan Zheng2c47e6052009-06-27 21:07:35 -04008558 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04008559 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008560out:
Josef Bacikd29a9f62013-07-17 19:30:20 -04008561 /*
8562 * So if we need to stop dropping the snapshot for whatever reason we
8563 * need to make sure to add it back to the dead root list so that we
8564 * keep trying to do the work later. This also cleans up roots if we
8565 * don't have it in the radix (like when we recover after a power fail
8566 * or unmount) so we don't leak memory.
8567 */
Josef Bacikb37b39c2013-07-23 16:57:15 -04008568 if (!for_reloc && root_dropped == false)
Josef Bacikd29a9f62013-07-17 19:30:20 -04008569 btrfs_add_dead_root(root);
Wang Shilong90515e72014-01-07 17:26:58 +08008570 if (err && err != -EAGAIN)
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008571 btrfs_std_error(root->fs_info, err);
Jeff Mahoney2c536792011-10-03 23:22:41 -04008572 return err;
Chris Mason20524f02007-03-10 06:35:47 -05008573}
Chris Mason9078a3e2007-04-26 16:46:15 -04008574
Yan Zheng2c47e6052009-06-27 21:07:35 -04008575/*
8576 * drop subtree rooted at tree block 'node'.
8577 *
8578 * NOTE: this function will unlock and release tree block 'node'
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008579 * only used by relocation code
Yan Zheng2c47e6052009-06-27 21:07:35 -04008580 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04008581int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
8582 struct btrfs_root *root,
8583 struct extent_buffer *node,
8584 struct extent_buffer *parent)
8585{
8586 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008587 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008588 int level;
8589 int parent_level;
8590 int ret = 0;
8591 int wret;
8592
Yan Zheng2c47e6052009-06-27 21:07:35 -04008593 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
8594
Yan Zhengf82d02d2008-10-29 14:49:05 -04008595 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00008596 if (!path)
8597 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008598
Yan Zheng2c47e6052009-06-27 21:07:35 -04008599 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00008600 if (!wc) {
8601 btrfs_free_path(path);
8602 return -ENOMEM;
8603 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008604
Chris Masonb9447ef2009-03-09 11:45:38 -04008605 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008606 parent_level = btrfs_header_level(parent);
8607 extent_buffer_get(parent);
8608 path->nodes[parent_level] = parent;
8609 path->slots[parent_level] = btrfs_header_nritems(parent);
8610
Chris Masonb9447ef2009-03-09 11:45:38 -04008611 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008612 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008613 path->nodes[level] = node;
8614 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008615 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008616
8617 wc->refs[parent_level] = 1;
8618 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
8619 wc->level = level;
8620 wc->shared_level = -1;
8621 wc->stage = DROP_REFERENCE;
8622 wc->update_ref = 0;
8623 wc->keep_locks = 1;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008624 wc->for_reloc = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008625 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008626
8627 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008628 wret = walk_down_tree(trans, root, path, wc);
8629 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04008630 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008631 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008632 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04008633
Yan Zheng2c47e6052009-06-27 21:07:35 -04008634 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008635 if (wret < 0)
8636 ret = wret;
8637 if (wret != 0)
8638 break;
8639 }
8640
Yan Zheng2c47e6052009-06-27 21:07:35 -04008641 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008642 btrfs_free_path(path);
8643 return ret;
8644}
8645
Chris Masonec44a352008-04-28 15:29:52 -04008646static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
8647{
8648 u64 num_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03008649 u64 stripped;
Chris Masonec44a352008-04-28 15:29:52 -04008650
Ilya Dryomovfc67c452012-03-27 17:09:17 +03008651 /*
8652 * if restripe for this chunk_type is on pick target profile and
8653 * return, otherwise do the usual balance
8654 */
8655 stripped = get_restripe_target(root->fs_info, flags);
8656 if (stripped)
8657 return extended_to_chunk(stripped);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02008658
Miao Xie95669972014-07-24 11:37:14 +08008659 num_devices = root->fs_info->fs_devices->rw_devices;
Chris Masoncd02dca2010-12-13 14:56:23 -05008660
Ilya Dryomovfc67c452012-03-27 17:09:17 +03008661 stripped = BTRFS_BLOCK_GROUP_RAID0 |
David Woodhouse53b381b2013-01-29 18:40:14 -05008662 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
Ilya Dryomovfc67c452012-03-27 17:09:17 +03008663 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
8664
Chris Masonec44a352008-04-28 15:29:52 -04008665 if (num_devices == 1) {
8666 stripped |= BTRFS_BLOCK_GROUP_DUP;
8667 stripped = flags & ~stripped;
8668
8669 /* turn raid0 into single device chunks */
8670 if (flags & BTRFS_BLOCK_GROUP_RAID0)
8671 return stripped;
8672
8673 /* turn mirroring into duplication */
8674 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
8675 BTRFS_BLOCK_GROUP_RAID10))
8676 return stripped | BTRFS_BLOCK_GROUP_DUP;
Chris Masonec44a352008-04-28 15:29:52 -04008677 } else {
8678 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04008679 if (flags & stripped)
8680 return flags;
8681
8682 stripped |= BTRFS_BLOCK_GROUP_DUP;
8683 stripped = flags & ~stripped;
8684
8685 /* switch duplicated blocks with raid1 */
8686 if (flags & BTRFS_BLOCK_GROUP_DUP)
8687 return stripped | BTRFS_BLOCK_GROUP_RAID1;
8688
Ilya Dryomove3176ca2012-03-27 17:09:16 +03008689 /* this is drive concat, leave it alone */
Chris Masonec44a352008-04-28 15:29:52 -04008690 }
Ilya Dryomove3176ca2012-03-27 17:09:16 +03008691
Chris Masonec44a352008-04-28 15:29:52 -04008692 return flags;
8693}
8694
Miao Xie199c36e2011-07-15 10:34:36 +00008695static int set_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04008696{
Yan, Zhengf0486c62010-05-16 10:46:25 -04008697 struct btrfs_space_info *sinfo = cache->space_info;
8698 u64 num_bytes;
Miao Xie199c36e2011-07-15 10:34:36 +00008699 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008700 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04008701
Chris Masonc286ac42008-07-22 23:06:41 -04008702
Miao Xie199c36e2011-07-15 10:34:36 +00008703 /*
8704 * We need some metadata space and system metadata space for
8705 * allocating chunks in some corner cases until we force to set
8706 * it to be readonly.
8707 */
8708 if ((sinfo->flags &
8709 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
8710 !force)
8711 min_allocable_bytes = 1 * 1024 * 1024;
8712 else
8713 min_allocable_bytes = 0;
8714
Yan, Zhengf0486c62010-05-16 10:46:25 -04008715 spin_lock(&sinfo->lock);
8716 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00008717
8718 if (cache->ro) {
8719 ret = 0;
8720 goto out;
8721 }
8722
Yan, Zhengf0486c62010-05-16 10:46:25 -04008723 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8724 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04008725
Yan, Zhengf0486c62010-05-16 10:46:25 -04008726 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
Josef Bacik37be25b2011-08-05 10:25:38 -04008727 sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes +
8728 min_allocable_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04008729 sinfo->bytes_readonly += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008730 cache->ro = 1;
Josef Bacik633c0aa2014-10-31 09:49:34 -04008731 list_add_tail(&cache->ro_list, &sinfo->ro_bgs);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008732 ret = 0;
8733 }
WuBo61cfea92011-07-26 03:30:11 +00008734out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04008735 spin_unlock(&cache->lock);
8736 spin_unlock(&sinfo->lock);
8737 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04008738}
8739
Yan, Zhengf0486c62010-05-16 10:46:25 -04008740int btrfs_set_block_group_ro(struct btrfs_root *root,
8741 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008742
8743{
Yan, Zhengf0486c62010-05-16 10:46:25 -04008744 struct btrfs_trans_handle *trans;
8745 u64 alloc_flags;
8746 int ret;
8747
8748 BUG_ON(cache->ro);
8749
Chris Mason1bbc6212015-04-06 12:46:08 -07008750again:
Josef Bacik7a7eaa42011-04-13 12:54:33 -04008751 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008752 if (IS_ERR(trans))
8753 return PTR_ERR(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008754
Chris Mason1bbc6212015-04-06 12:46:08 -07008755 /*
8756 * we're not allowed to set block groups readonly after the dirty
8757 * block groups cache has started writing. If it already started,
8758 * back off and let this transaction commit
8759 */
8760 mutex_lock(&root->fs_info->ro_block_group_mutex);
8761 if (trans->transaction->dirty_bg_run) {
8762 u64 transid = trans->transid;
8763
8764 mutex_unlock(&root->fs_info->ro_block_group_mutex);
8765 btrfs_end_transaction(trans, root);
8766
8767 ret = btrfs_wait_for_commit(root, transid);
8768 if (ret)
8769 return ret;
8770 goto again;
8771 }
8772
Chris Mason153c35b2015-05-19 18:54:41 -07008773 /*
8774 * if we are changing raid levels, try to allocate a corresponding
8775 * block group with the new raid level.
8776 */
8777 alloc_flags = update_block_group_flags(root, cache->flags);
8778 if (alloc_flags != cache->flags) {
8779 ret = do_chunk_alloc(trans, root, alloc_flags,
8780 CHUNK_ALLOC_FORCE);
8781 /*
8782 * ENOSPC is allowed here, we may have enough space
8783 * already allocated at the new raid level to
8784 * carry on
8785 */
8786 if (ret == -ENOSPC)
8787 ret = 0;
8788 if (ret < 0)
8789 goto out;
8790 }
Chris Mason1bbc6212015-04-06 12:46:08 -07008791
Miao Xie199c36e2011-07-15 10:34:36 +00008792 ret = set_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008793 if (!ret)
8794 goto out;
8795 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
Josef Bacik698d0082012-09-12 14:08:47 -04008796 ret = do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04008797 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008798 if (ret < 0)
8799 goto out;
Miao Xie199c36e2011-07-15 10:34:36 +00008800 ret = set_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008801out:
Shaohua Li2f081082015-01-09 10:40:15 -08008802 if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
8803 alloc_flags = update_block_group_flags(root, cache->flags);
Filipe Mananaa9629592015-05-18 19:11:40 +01008804 lock_chunks(root->fs_info->chunk_root);
Filipe Manana4617ea32015-06-09 17:48:21 +01008805 check_system_chunk(trans, root, alloc_flags);
Filipe Mananaa9629592015-05-18 19:11:40 +01008806 unlock_chunks(root->fs_info->chunk_root);
Shaohua Li2f081082015-01-09 10:40:15 -08008807 }
Chris Mason1bbc6212015-04-06 12:46:08 -07008808 mutex_unlock(&root->fs_info->ro_block_group_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08008809
Yan, Zhengf0486c62010-05-16 10:46:25 -04008810 btrfs_end_transaction(trans, root);
8811 return ret;
8812}
8813
Chris Masonc87f08c2011-02-16 13:57:04 -05008814int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
8815 struct btrfs_root *root, u64 type)
8816{
8817 u64 alloc_flags = get_alloc_profile(root, type);
Josef Bacik698d0082012-09-12 14:08:47 -04008818 return do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04008819 CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05008820}
8821
Miao Xie6d07bce2011-01-05 10:07:31 +00008822/*
8823 * helper to account the unused space of all the readonly block group in the
Josef Bacik633c0aa2014-10-31 09:49:34 -04008824 * space_info. takes mirrors into account.
Miao Xie6d07bce2011-01-05 10:07:31 +00008825 */
Josef Bacik633c0aa2014-10-31 09:49:34 -04008826u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
Miao Xie6d07bce2011-01-05 10:07:31 +00008827{
8828 struct btrfs_block_group_cache *block_group;
8829 u64 free_bytes = 0;
8830 int factor;
8831
Josef Bacik633c0aa2014-10-31 09:49:34 -04008832 /* It's df, we don't care if it's racey */
8833 if (list_empty(&sinfo->ro_bgs))
8834 return 0;
8835
8836 spin_lock(&sinfo->lock);
8837 list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00008838 spin_lock(&block_group->lock);
8839
8840 if (!block_group->ro) {
8841 spin_unlock(&block_group->lock);
8842 continue;
8843 }
8844
8845 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
8846 BTRFS_BLOCK_GROUP_RAID10 |
8847 BTRFS_BLOCK_GROUP_DUP))
8848 factor = 2;
8849 else
8850 factor = 1;
8851
8852 free_bytes += (block_group->key.offset -
8853 btrfs_block_group_used(&block_group->item)) *
8854 factor;
8855
8856 spin_unlock(&block_group->lock);
8857 }
Miao Xie6d07bce2011-01-05 10:07:31 +00008858 spin_unlock(&sinfo->lock);
8859
8860 return free_bytes;
8861}
8862
Jeff Mahoney143bede2012-03-01 14:56:26 +01008863void btrfs_set_block_group_rw(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04008864 struct btrfs_block_group_cache *cache)
8865{
8866 struct btrfs_space_info *sinfo = cache->space_info;
8867 u64 num_bytes;
8868
8869 BUG_ON(!cache->ro);
8870
8871 spin_lock(&sinfo->lock);
8872 spin_lock(&cache->lock);
8873 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8874 cache->bytes_super - btrfs_block_group_used(&cache->item);
8875 sinfo->bytes_readonly -= num_bytes;
8876 cache->ro = 0;
Josef Bacik633c0aa2014-10-31 09:49:34 -04008877 list_del_init(&cache->ro_list);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008878 spin_unlock(&cache->lock);
8879 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008880}
8881
Josef Bacikba1bf482009-09-11 16:11:19 -04008882/*
8883 * checks to see if its even possible to relocate this block group.
8884 *
8885 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
8886 * ok to go ahead and try.
8887 */
8888int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04008889{
Zheng Yan1a40e232008-09-26 10:09:34 -04008890 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04008891 struct btrfs_space_info *space_info;
8892 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
8893 struct btrfs_device *device;
Josef Bacik6df9a952013-06-27 13:22:46 -04008894 struct btrfs_trans_handle *trans;
liubocdcb7252011-08-03 10:15:25 +00008895 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04008896 u64 dev_min = 1;
8897 u64 dev_nr = 0;
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008898 u64 target;
liubocdcb7252011-08-03 10:15:25 +00008899 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04008900 int full = 0;
8901 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05008902
Josef Bacikba1bf482009-09-11 16:11:19 -04008903 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04008904
Josef Bacikba1bf482009-09-11 16:11:19 -04008905 /* odd, couldn't find the block group, leave it alone */
8906 if (!block_group)
8907 return -1;
Chris Masonedbd8d42007-12-21 16:27:24 -05008908
liubocdcb7252011-08-03 10:15:25 +00008909 min_free = btrfs_block_group_used(&block_group->item);
8910
Josef Bacikba1bf482009-09-11 16:11:19 -04008911 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00008912 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04008913 goto out;
Chris Mason323da792008-05-09 11:46:48 -04008914
Josef Bacikba1bf482009-09-11 16:11:19 -04008915 space_info = block_group->space_info;
8916 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04008917
Josef Bacikba1bf482009-09-11 16:11:19 -04008918 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04008919
Josef Bacikba1bf482009-09-11 16:11:19 -04008920 /*
8921 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04008922 * relocate it unless we're able to allocate a new chunk below.
8923 *
8924 * Otherwise, we need to make sure we have room in the space to handle
8925 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04008926 */
Chris Mason7ce618d2009-09-22 14:48:44 -04008927 if ((space_info->total_bytes != block_group->key.offset) &&
liubocdcb7252011-08-03 10:15:25 +00008928 (space_info->bytes_used + space_info->bytes_reserved +
8929 space_info->bytes_pinned + space_info->bytes_readonly +
8930 min_free < space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04008931 spin_unlock(&space_info->lock);
8932 goto out;
8933 }
8934 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008935
Josef Bacikba1bf482009-09-11 16:11:19 -04008936 /*
8937 * ok we don't have enough space, but maybe we have free space on our
8938 * devices to allocate new chunks for relocation, so loop through our
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008939 * alloc devices and guess if we have enough space. if this block
8940 * group is going to be restriped, run checks against the target
8941 * profile instead of the current one.
Josef Bacikba1bf482009-09-11 16:11:19 -04008942 */
8943 ret = -1;
Chris Mason4313b392008-01-03 09:08:48 -05008944
liubocdcb7252011-08-03 10:15:25 +00008945 /*
8946 * index:
8947 * 0: raid10
8948 * 1: raid1
8949 * 2: dup
8950 * 3: raid0
8951 * 4: single
8952 */
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008953 target = get_restripe_target(root->fs_info, block_group->flags);
8954 if (target) {
Liu Bo31e50222012-11-21 14:18:10 +00008955 index = __get_raid_index(extended_to_chunk(target));
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008956 } else {
8957 /*
8958 * this is just a balance, so if we were marked as full
8959 * we know there is no space for a new chunk
8960 */
8961 if (full)
8962 goto out;
8963
8964 index = get_block_group_index(block_group);
8965 }
8966
Miao Xiee6ec7162013-01-17 05:38:51 +00008967 if (index == BTRFS_RAID_RAID10) {
liubocdcb7252011-08-03 10:15:25 +00008968 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04008969 /* Divide by 2 */
8970 min_free >>= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00008971 } else if (index == BTRFS_RAID_RAID1) {
liubocdcb7252011-08-03 10:15:25 +00008972 dev_min = 2;
Miao Xiee6ec7162013-01-17 05:38:51 +00008973 } else if (index == BTRFS_RAID_DUP) {
Josef Bacik6719db62011-08-20 08:29:51 -04008974 /* Multiply by 2 */
8975 min_free <<= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00008976 } else if (index == BTRFS_RAID_RAID0) {
liubocdcb7252011-08-03 10:15:25 +00008977 dev_min = fs_devices->rw_devices;
David Sterba47c57132015-02-20 18:43:47 +01008978 min_free = div64_u64(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00008979 }
8980
Josef Bacik6df9a952013-06-27 13:22:46 -04008981 /* We need to do this so that we can look at pending chunks */
8982 trans = btrfs_join_transaction(root);
8983 if (IS_ERR(trans)) {
8984 ret = PTR_ERR(trans);
8985 goto out;
8986 }
8987
Josef Bacikba1bf482009-09-11 16:11:19 -04008988 mutex_lock(&root->fs_info->chunk_mutex);
8989 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00008990 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04008991
Josef Bacikba1bf482009-09-11 16:11:19 -04008992 /*
8993 * check to make sure we can actually find a chunk with enough
8994 * space to fit our block group in.
8995 */
Stefan Behrens63a212a2012-11-05 18:29:28 +01008996 if (device->total_bytes > device->bytes_used + min_free &&
8997 !device->is_tgtdev_for_dev_replace) {
Josef Bacik6df9a952013-06-27 13:22:46 -04008998 ret = find_free_dev_extent(trans, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00008999 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04009000 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00009001 dev_nr++;
9002
9003 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05009004 break;
liubocdcb7252011-08-03 10:15:25 +00009005
Josef Bacikba1bf482009-09-11 16:11:19 -04009006 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05009007 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009008 }
Josef Bacikba1bf482009-09-11 16:11:19 -04009009 mutex_unlock(&root->fs_info->chunk_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04009010 btrfs_end_transaction(trans, root);
Chris Masonedbd8d42007-12-21 16:27:24 -05009011out:
Josef Bacikba1bf482009-09-11 16:11:19 -04009012 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05009013 return ret;
9014}
9015
Christoph Hellwigb2950862008-12-02 09:54:17 -05009016static int find_first_block_group(struct btrfs_root *root,
9017 struct btrfs_path *path, struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04009018{
Chris Mason925baed2008-06-25 16:01:30 -04009019 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04009020 struct btrfs_key found_key;
9021 struct extent_buffer *leaf;
9022 int slot;
9023
9024 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
9025 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009026 goto out;
9027
Chris Masond3977122009-01-05 21:25:51 -05009028 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04009029 slot = path->slots[0];
9030 leaf = path->nodes[0];
9031 if (slot >= btrfs_header_nritems(leaf)) {
9032 ret = btrfs_next_leaf(root, path);
9033 if (ret == 0)
9034 continue;
9035 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009036 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04009037 break;
9038 }
9039 btrfs_item_key_to_cpu(leaf, &found_key, slot);
9040
9041 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04009042 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
9043 ret = 0;
9044 goto out;
9045 }
Chris Mason0b86a832008-03-24 15:01:56 -04009046 path->slots[0]++;
9047 }
Chris Mason925baed2008-06-25 16:01:30 -04009048out:
Chris Mason0b86a832008-03-24 15:01:56 -04009049 return ret;
9050}
9051
Josef Bacik0af3d002010-06-21 14:48:16 -04009052void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
9053{
9054 struct btrfs_block_group_cache *block_group;
9055 u64 last = 0;
9056
9057 while (1) {
9058 struct inode *inode;
9059
9060 block_group = btrfs_lookup_first_block_group(info, last);
9061 while (block_group) {
9062 spin_lock(&block_group->lock);
9063 if (block_group->iref)
9064 break;
9065 spin_unlock(&block_group->lock);
9066 block_group = next_block_group(info->tree_root,
9067 block_group);
9068 }
9069 if (!block_group) {
9070 if (last == 0)
9071 break;
9072 last = 0;
9073 continue;
9074 }
9075
9076 inode = block_group->inode;
9077 block_group->iref = 0;
9078 block_group->inode = NULL;
9079 spin_unlock(&block_group->lock);
9080 iput(inode);
9081 last = block_group->key.objectid + block_group->key.offset;
9082 btrfs_put_block_group(block_group);
9083 }
9084}
9085
Zheng Yan1a40e232008-09-26 10:09:34 -04009086int btrfs_free_block_groups(struct btrfs_fs_info *info)
9087{
9088 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04009089 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04009090 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04009091 struct rb_node *n;
9092
Josef Bacik9e351cc2014-03-13 15:42:13 -04009093 down_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04009094 while (!list_empty(&info->caching_block_groups)) {
9095 caching_ctl = list_entry(info->caching_block_groups.next,
9096 struct btrfs_caching_control, list);
9097 list_del(&caching_ctl->list);
9098 put_caching_control(caching_ctl);
9099 }
Josef Bacik9e351cc2014-03-13 15:42:13 -04009100 up_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04009101
Josef Bacik47ab2a62014-09-18 11:20:02 -04009102 spin_lock(&info->unused_bgs_lock);
9103 while (!list_empty(&info->unused_bgs)) {
9104 block_group = list_first_entry(&info->unused_bgs,
9105 struct btrfs_block_group_cache,
9106 bg_list);
9107 list_del_init(&block_group->bg_list);
9108 btrfs_put_block_group(block_group);
9109 }
9110 spin_unlock(&info->unused_bgs_lock);
9111
Zheng Yan1a40e232008-09-26 10:09:34 -04009112 spin_lock(&info->block_group_cache_lock);
9113 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
9114 block_group = rb_entry(n, struct btrfs_block_group_cache,
9115 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04009116 rb_erase(&block_group->cache_node,
9117 &info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +00009118 RB_CLEAR_NODE(&block_group->cache_node);
Yan Zhengd899e052008-10-30 14:25:28 -04009119 spin_unlock(&info->block_group_cache_lock);
9120
Josef Bacik80eb2342008-10-29 14:49:05 -04009121 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04009122 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04009123 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05009124
Josef Bacik817d52f2009-07-13 21:29:25 -04009125 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04009126 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04009127
Josef Bacik3c148742011-02-02 15:53:47 +00009128 /*
9129 * We haven't cached this block group, which means we could
9130 * possibly have excluded extents on this block group.
9131 */
Josef Bacik36cce922013-08-05 11:15:21 -04009132 if (block_group->cached == BTRFS_CACHE_NO ||
9133 block_group->cached == BTRFS_CACHE_ERROR)
Josef Bacik3c148742011-02-02 15:53:47 +00009134 free_excluded_extents(info->extent_root, block_group);
9135
Josef Bacik817d52f2009-07-13 21:29:25 -04009136 btrfs_remove_free_space_cache(block_group);
Josef Bacik11dfe352009-11-13 20:12:59 +00009137 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04009138
9139 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009140 }
9141 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -04009142
9143 /* now that all the block groups are freed, go through and
9144 * free all the space_info structs. This is only called during
9145 * the final stages of unmount, and so we know nobody is
9146 * using them. We call synchronize_rcu() once before we start,
9147 * just to be on the safe side.
9148 */
9149 synchronize_rcu();
9150
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04009151 release_global_block_rsv(info);
9152
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05309153 while (!list_empty(&info->space_info)) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009154 int i;
9155
Chris Mason4184ea72009-03-10 12:39:20 -04009156 space_info = list_entry(info->space_info.next,
9157 struct btrfs_space_info,
9158 list);
David Sterbab069e0c2013-02-08 21:28:17 +00009159 if (btrfs_test_opt(info->tree_root, ENOSPC_DEBUG)) {
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05309160 if (WARN_ON(space_info->bytes_pinned > 0 ||
David Sterbab069e0c2013-02-08 21:28:17 +00009161 space_info->bytes_reserved > 0 ||
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05309162 space_info->bytes_may_use > 0)) {
David Sterbab069e0c2013-02-08 21:28:17 +00009163 dump_space_info(space_info, 0, 0);
9164 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009165 }
Chris Mason4184ea72009-03-10 12:39:20 -04009166 list_del(&space_info->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009167 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
9168 struct kobject *kobj;
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009169 kobj = space_info->block_group_kobjs[i];
9170 space_info->block_group_kobjs[i] = NULL;
9171 if (kobj) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009172 kobject_del(kobj);
9173 kobject_put(kobj);
9174 }
9175 }
9176 kobject_del(&space_info->kobj);
9177 kobject_put(&space_info->kobj);
Chris Mason4184ea72009-03-10 12:39:20 -04009178 }
Zheng Yan1a40e232008-09-26 10:09:34 -04009179 return 0;
9180}
9181
Yan, Zhengb742bb82010-05-16 10:46:24 -04009182static void __link_block_group(struct btrfs_space_info *space_info,
9183 struct btrfs_block_group_cache *cache)
9184{
9185 int index = get_block_group_index(cache);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -04009186 bool first = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04009187
9188 down_write(&space_info->groups_sem);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -04009189 if (list_empty(&space_info->block_groups[index]))
9190 first = true;
9191 list_add_tail(&cache->list, &space_info->block_groups[index]);
9192 up_write(&space_info->groups_sem);
9193
9194 if (first) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009195 struct raid_kobject *rkobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009196 int ret;
9197
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009198 rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS);
9199 if (!rkobj)
9200 goto out_err;
9201 rkobj->raid_type = index;
9202 kobject_init(&rkobj->kobj, &btrfs_raid_ktype);
9203 ret = kobject_add(&rkobj->kobj, &space_info->kobj,
9204 "%s", get_raid_name(index));
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009205 if (ret) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009206 kobject_put(&rkobj->kobj);
9207 goto out_err;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009208 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009209 space_info->block_group_kobjs[index] = &rkobj->kobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009210 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009211
9212 return;
9213out_err:
9214 pr_warn("BTRFS: failed to add kobject for block cache. ignoring.\n");
Yan, Zhengb742bb82010-05-16 10:46:24 -04009215}
9216
Miao Xie920e4a52014-01-15 20:00:55 +08009217static struct btrfs_block_group_cache *
9218btrfs_create_block_group_cache(struct btrfs_root *root, u64 start, u64 size)
9219{
9220 struct btrfs_block_group_cache *cache;
9221
9222 cache = kzalloc(sizeof(*cache), GFP_NOFS);
9223 if (!cache)
9224 return NULL;
9225
9226 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
9227 GFP_NOFS);
9228 if (!cache->free_space_ctl) {
9229 kfree(cache);
9230 return NULL;
9231 }
9232
9233 cache->key.objectid = start;
9234 cache->key.offset = size;
9235 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
9236
9237 cache->sectorsize = root->sectorsize;
9238 cache->fs_info = root->fs_info;
9239 cache->full_stripe_len = btrfs_full_stripe_len(root,
9240 &root->fs_info->mapping_tree,
9241 start);
9242 atomic_set(&cache->count, 1);
9243 spin_lock_init(&cache->lock);
Miao Xiee570fd22014-06-19 10:42:50 +08009244 init_rwsem(&cache->data_rwsem);
Miao Xie920e4a52014-01-15 20:00:55 +08009245 INIT_LIST_HEAD(&cache->list);
9246 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009247 INIT_LIST_HEAD(&cache->bg_list);
Josef Bacik633c0aa2014-10-31 09:49:34 -04009248 INIT_LIST_HEAD(&cache->ro_list);
Josef Bacikce93ec52014-11-17 15:45:48 -05009249 INIT_LIST_HEAD(&cache->dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07009250 INIT_LIST_HEAD(&cache->io_list);
Miao Xie920e4a52014-01-15 20:00:55 +08009251 btrfs_init_free_space_ctl(cache);
Filipe Manana04216822014-11-27 21:14:15 +00009252 atomic_set(&cache->trimming, 0);
Miao Xie920e4a52014-01-15 20:00:55 +08009253
9254 return cache;
9255}
9256
Chris Mason9078a3e2007-04-26 16:46:15 -04009257int btrfs_read_block_groups(struct btrfs_root *root)
9258{
9259 struct btrfs_path *path;
9260 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04009261 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04009262 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04009263 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04009264 struct btrfs_key key;
9265 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04009266 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -04009267 int need_clear = 0;
9268 u64 cache_gen;
Chris Mason96b51792007-10-15 16:15:19 -04009269
Chris Masonbe744172007-05-06 10:15:01 -04009270 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04009271 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04009272 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02009273 key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Chris Mason9078a3e2007-04-26 16:46:15 -04009274 path = btrfs_alloc_path();
9275 if (!path)
9276 return -ENOMEM;
Josef Bacik026fd312011-05-13 10:32:11 -04009277 path->reada = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04009278
David Sterba6c417612011-04-13 15:41:04 +02009279 cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
Josef Bacik73bc1872011-10-03 14:07:49 -04009280 if (btrfs_test_opt(root, SPACE_CACHE) &&
David Sterba6c417612011-04-13 15:41:04 +02009281 btrfs_super_generation(root->fs_info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -04009282 need_clear = 1;
Josef Bacik88c2ba32010-09-21 14:21:34 -04009283 if (btrfs_test_opt(root, CLEAR_CACHE))
9284 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -04009285
Chris Masond3977122009-01-05 21:25:51 -05009286 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04009287 ret = find_first_block_group(root, path, &key);
Yan, Zhengb742bb82010-05-16 10:46:24 -04009288 if (ret > 0)
9289 break;
Chris Mason0b86a832008-03-24 15:01:56 -04009290 if (ret != 0)
9291 goto error;
Miao Xie920e4a52014-01-15 20:00:55 +08009292
Chris Mason5f39d392007-10-15 16:14:19 -04009293 leaf = path->nodes[0];
9294 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Miao Xie920e4a52014-01-15 20:00:55 +08009295
9296 cache = btrfs_create_block_group_cache(root, found_key.objectid,
9297 found_key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04009298 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04009299 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009300 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04009301 }
Josef Bacik96303082009-07-13 21:29:25 -04009302
Liu Bocf7c1ef2012-07-06 03:31:34 -06009303 if (need_clear) {
9304 /*
9305 * When we mount with old space cache, we need to
9306 * set BTRFS_DC_CLEAR and set dirty flag.
9307 *
9308 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
9309 * truncate the old free space cache inode and
9310 * setup a new one.
9311 * b) Setting 'dirty flag' makes sure that we flush
9312 * the new space cache info onto disk.
9313 */
Liu Bocf7c1ef2012-07-06 03:31:34 -06009314 if (btrfs_test_opt(root, SPACE_CACHE))
Josef Bacikce93ec52014-11-17 15:45:48 -05009315 cache->disk_cache_state = BTRFS_DC_CLEAR;
Liu Bocf7c1ef2012-07-06 03:31:34 -06009316 }
Josef Bacik0af3d002010-06-21 14:48:16 -04009317
Chris Mason5f39d392007-10-15 16:14:19 -04009318 read_extent_buffer(leaf, &cache->item,
9319 btrfs_item_ptr_offset(leaf, path->slots[0]),
9320 sizeof(cache->item));
Miao Xie920e4a52014-01-15 20:00:55 +08009321 cache->flags = btrfs_block_group_flags(&cache->item);
Chris Mason0b86a832008-03-24 15:01:56 -04009322
Chris Mason9078a3e2007-04-26 16:46:15 -04009323 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +02009324 btrfs_release_path(path);
Li Zefan34d52cb2011-03-29 13:46:06 +08009325
Josef Bacik817d52f2009-07-13 21:29:25 -04009326 /*
Josef Bacik3c148742011-02-02 15:53:47 +00009327 * We need to exclude the super stripes now so that the space
9328 * info has super bytes accounted for, otherwise we'll think
9329 * we have more space than we actually do.
9330 */
Josef Bacik835d9742013-03-19 12:13:25 -04009331 ret = exclude_super_stripes(root, cache);
9332 if (ret) {
9333 /*
9334 * We may have excluded something, so call this just in
9335 * case.
9336 */
9337 free_excluded_extents(root, cache);
Miao Xie920e4a52014-01-15 20:00:55 +08009338 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -04009339 goto error;
9340 }
Josef Bacik3c148742011-02-02 15:53:47 +00009341
9342 /*
Josef Bacik817d52f2009-07-13 21:29:25 -04009343 * check for two cases, either we are full, and therefore
9344 * don't need to bother with the caching work since we won't
9345 * find any space, or we are empty, and we can just add all
9346 * the space in and be done with it. This saves us _alot_ of
9347 * time, particularly in the full case.
9348 */
9349 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -04009350 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04009351 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik1b2da372009-09-11 16:11:20 -04009352 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04009353 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -04009354 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04009355 cache->cached = BTRFS_CACHE_FINISHED;
9356 add_new_free_space(cache, root->fs_info,
9357 found_key.objectid,
9358 found_key.objectid +
9359 found_key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -04009360 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04009361 }
Chris Mason96b51792007-10-15 16:15:19 -04009362
Josef Bacik8c579fe2013-04-02 12:40:42 -04009363 ret = btrfs_add_block_group_cache(root->fs_info, cache);
9364 if (ret) {
9365 btrfs_remove_free_space_cache(cache);
9366 btrfs_put_block_group(cache);
9367 goto error;
9368 }
9369
Chris Mason6324fbf2008-03-24 15:01:59 -04009370 ret = update_space_info(info, cache->flags, found_key.offset,
9371 btrfs_block_group_used(&cache->item),
9372 &space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -04009373 if (ret) {
9374 btrfs_remove_free_space_cache(cache);
9375 spin_lock(&info->block_group_cache_lock);
9376 rb_erase(&cache->cache_node,
9377 &info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +00009378 RB_CLEAR_NODE(&cache->cache_node);
Josef Bacik8c579fe2013-04-02 12:40:42 -04009379 spin_unlock(&info->block_group_cache_lock);
9380 btrfs_put_block_group(cache);
9381 goto error;
9382 }
9383
Chris Mason6324fbf2008-03-24 15:01:59 -04009384 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -04009385 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009386 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04009387 spin_unlock(&cache->space_info->lock);
9388
Yan, Zhengb742bb82010-05-16 10:46:24 -04009389 __link_block_group(space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04009390
Chris Mason75ccf472008-09-30 19:24:06 -04009391 set_avail_alloc_bits(root->fs_info, cache->flags);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009392 if (btrfs_chunk_readonly(root, cache->key.objectid)) {
Miao Xie199c36e2011-07-15 10:34:36 +00009393 set_block_group_ro(cache, 1);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009394 } else if (btrfs_block_group_used(&cache->item) == 0) {
9395 spin_lock(&info->unused_bgs_lock);
9396 /* Should always be true but just in case. */
9397 if (list_empty(&cache->bg_list)) {
9398 btrfs_get_block_group(cache);
9399 list_add_tail(&cache->bg_list,
9400 &info->unused_bgs);
9401 }
9402 spin_unlock(&info->unused_bgs_lock);
9403 }
Chris Mason9078a3e2007-04-26 16:46:15 -04009404 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04009405
9406 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
9407 if (!(get_alloc_profile(root, space_info->flags) &
9408 (BTRFS_BLOCK_GROUP_RAID10 |
9409 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05009410 BTRFS_BLOCK_GROUP_RAID5 |
9411 BTRFS_BLOCK_GROUP_RAID6 |
Yan, Zhengb742bb82010-05-16 10:46:24 -04009412 BTRFS_BLOCK_GROUP_DUP)))
9413 continue;
9414 /*
9415 * avoid allocating from un-mirrored block group if there are
9416 * mirrored block groups.
9417 */
chandan1095cc02013-07-16 12:28:56 +05309418 list_for_each_entry(cache,
9419 &space_info->block_groups[BTRFS_RAID_RAID0],
9420 list)
Miao Xie199c36e2011-07-15 10:34:36 +00009421 set_block_group_ro(cache, 1);
chandan1095cc02013-07-16 12:28:56 +05309422 list_for_each_entry(cache,
9423 &space_info->block_groups[BTRFS_RAID_SINGLE],
9424 list)
Miao Xie199c36e2011-07-15 10:34:36 +00009425 set_block_group_ro(cache, 1);
Yan, Zhengb742bb82010-05-16 10:46:24 -04009426 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009427
9428 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -04009429 ret = 0;
9430error:
Chris Mason9078a3e2007-04-26 16:46:15 -04009431 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04009432 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04009433}
Chris Mason6324fbf2008-03-24 15:01:59 -04009434
Josef Bacikea658ba2012-09-11 16:57:25 -04009435void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans,
9436 struct btrfs_root *root)
9437{
9438 struct btrfs_block_group_cache *block_group, *tmp;
9439 struct btrfs_root *extent_root = root->fs_info->extent_root;
9440 struct btrfs_block_group_item item;
9441 struct btrfs_key key;
9442 int ret = 0;
9443
Josef Bacik47ab2a62014-09-18 11:20:02 -04009444 list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) {
Josef Bacikea658ba2012-09-11 16:57:25 -04009445 if (ret)
Filipe Mananac92f6be2014-11-26 15:28:55 +00009446 goto next;
Josef Bacikea658ba2012-09-11 16:57:25 -04009447
9448 spin_lock(&block_group->lock);
9449 memcpy(&item, &block_group->item, sizeof(item));
9450 memcpy(&key, &block_group->key, sizeof(key));
9451 spin_unlock(&block_group->lock);
9452
9453 ret = btrfs_insert_item(trans, extent_root, &key, &item,
9454 sizeof(item));
9455 if (ret)
9456 btrfs_abort_transaction(trans, extent_root, ret);
Josef Bacik6df9a952013-06-27 13:22:46 -04009457 ret = btrfs_finish_chunk_alloc(trans, extent_root,
9458 key.objectid, key.offset);
9459 if (ret)
9460 btrfs_abort_transaction(trans, extent_root, ret);
Filipe Mananac92f6be2014-11-26 15:28:55 +00009461next:
9462 list_del_init(&block_group->bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -04009463 }
9464}
9465
Chris Mason6324fbf2008-03-24 15:01:59 -04009466int btrfs_make_block_group(struct btrfs_trans_handle *trans,
9467 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04009468 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04009469 u64 size)
9470{
9471 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04009472 struct btrfs_root *extent_root;
9473 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -04009474
9475 extent_root = root->fs_info->extent_root;
Chris Mason6324fbf2008-03-24 15:01:59 -04009476
Miao Xie995946d2014-04-02 19:51:06 +08009477 btrfs_set_log_full_commit(root->fs_info, trans);
Chris Masone02119d2008-09-05 16:13:11 -04009478
Miao Xie920e4a52014-01-15 20:00:55 +08009479 cache = btrfs_create_block_group_cache(root, chunk_offset, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -04009480 if (!cache)
9481 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +08009482
Chris Mason6324fbf2008-03-24 15:01:59 -04009483 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04009484 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
Chris Mason6324fbf2008-03-24 15:01:59 -04009485 btrfs_set_block_group_flags(&cache->item, type);
9486
Miao Xie920e4a52014-01-15 20:00:55 +08009487 cache->flags = type;
Yan Zheng11833d62009-09-11 16:11:19 -04009488 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04009489 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik835d9742013-03-19 12:13:25 -04009490 ret = exclude_super_stripes(root, cache);
9491 if (ret) {
9492 /*
9493 * We may have excluded something, so call this just in
9494 * case.
9495 */
9496 free_excluded_extents(root, cache);
Miao Xie920e4a52014-01-15 20:00:55 +08009497 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -04009498 return ret;
9499 }
Josef Bacik96303082009-07-13 21:29:25 -04009500
Josef Bacik817d52f2009-07-13 21:29:25 -04009501 add_new_free_space(cache, root->fs_info, chunk_offset,
9502 chunk_offset + size);
9503
Yan Zheng11833d62009-09-11 16:11:19 -04009504 free_excluded_extents(root, cache);
9505
Filipe Manana2e6e5182015-05-12 00:28:11 +01009506 /*
9507 * Call to ensure the corresponding space_info object is created and
9508 * assigned to our block group, but don't update its counters just yet.
9509 * We want our bg to be added to the rbtree with its ->space_info set.
9510 */
9511 ret = update_space_info(root->fs_info, cache->flags, 0, 0,
9512 &cache->space_info);
9513 if (ret) {
9514 btrfs_remove_free_space_cache(cache);
9515 btrfs_put_block_group(cache);
9516 return ret;
9517 }
9518
Josef Bacik8c579fe2013-04-02 12:40:42 -04009519 ret = btrfs_add_block_group_cache(root->fs_info, cache);
9520 if (ret) {
9521 btrfs_remove_free_space_cache(cache);
9522 btrfs_put_block_group(cache);
9523 return ret;
9524 }
9525
Filipe Manana2e6e5182015-05-12 00:28:11 +01009526 /*
9527 * Now that our block group has its ->space_info set and is inserted in
9528 * the rbtree, update the space info's counters.
9529 */
Chris Mason6324fbf2008-03-24 15:01:59 -04009530 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
9531 &cache->space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -04009532 if (ret) {
9533 btrfs_remove_free_space_cache(cache);
9534 spin_lock(&root->fs_info->block_group_cache_lock);
9535 rb_erase(&cache->cache_node,
9536 &root->fs_info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +00009537 RB_CLEAR_NODE(&cache->cache_node);
Josef Bacik8c579fe2013-04-02 12:40:42 -04009538 spin_unlock(&root->fs_info->block_group_cache_lock);
9539 btrfs_put_block_group(cache);
9540 return ret;
9541 }
Li Zefanc7c144d2011-12-07 10:39:22 +08009542 update_global_block_rsv(root->fs_info);
Josef Bacik1b2da372009-09-11 16:11:20 -04009543
9544 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009545 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04009546 spin_unlock(&cache->space_info->lock);
9547
Yan, Zhengb742bb82010-05-16 10:46:24 -04009548 __link_block_group(cache->space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04009549
Josef Bacik47ab2a62014-09-18 11:20:02 -04009550 list_add_tail(&cache->bg_list, &trans->new_bgs);
Chris Mason6324fbf2008-03-24 15:01:59 -04009551
Chris Masond18a2c42008-04-04 15:40:00 -04009552 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason925baed2008-06-25 16:01:30 -04009553
Chris Mason6324fbf2008-03-24 15:01:59 -04009554 return 0;
9555}
Zheng Yan1a40e232008-09-26 10:09:34 -04009556
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009557static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
9558{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03009559 u64 extra_flags = chunk_to_extended(flags) &
9560 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009561
Miao Xiede98ced2013-01-29 10:13:12 +00009562 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009563 if (flags & BTRFS_BLOCK_GROUP_DATA)
9564 fs_info->avail_data_alloc_bits &= ~extra_flags;
9565 if (flags & BTRFS_BLOCK_GROUP_METADATA)
9566 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
9567 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
9568 fs_info->avail_system_alloc_bits &= ~extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00009569 write_sequnlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009570}
9571
Zheng Yan1a40e232008-09-26 10:09:34 -04009572int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
Filipe Manana04216822014-11-27 21:14:15 +00009573 struct btrfs_root *root, u64 group_start,
9574 struct extent_map *em)
Zheng Yan1a40e232008-09-26 10:09:34 -04009575{
9576 struct btrfs_path *path;
9577 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -04009578 struct btrfs_free_cluster *cluster;
Josef Bacik0af3d002010-06-21 14:48:16 -04009579 struct btrfs_root *tree_root = root->fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -04009580 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -04009581 struct inode *inode;
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009582 struct kobject *kobj = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -04009583 int ret;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009584 int index;
Josef Bacik89a55892010-10-14 14:52:27 -04009585 int factor;
Filipe Manana4f69cb92014-11-26 15:28:51 +00009586 struct btrfs_caching_control *caching_ctl = NULL;
Filipe Manana04216822014-11-27 21:14:15 +00009587 bool remove_em;
Zheng Yan1a40e232008-09-26 10:09:34 -04009588
Zheng Yan1a40e232008-09-26 10:09:34 -04009589 root = root->fs_info->extent_root;
9590
9591 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
9592 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -05009593 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -04009594
liubo9f7c43c2011-03-07 02:13:33 +00009595 /*
9596 * Free the reserved super bytes from this block group before
9597 * remove it.
9598 */
9599 free_excluded_extents(root, block_group);
9600
Zheng Yan1a40e232008-09-26 10:09:34 -04009601 memcpy(&key, &block_group->key, sizeof(key));
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009602 index = get_block_group_index(block_group);
Josef Bacik89a55892010-10-14 14:52:27 -04009603 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
9604 BTRFS_BLOCK_GROUP_RAID1 |
9605 BTRFS_BLOCK_GROUP_RAID10))
9606 factor = 2;
9607 else
9608 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04009609
Chris Mason44fb5512009-06-04 15:34:51 -04009610 /* make sure this block group isn't part of an allocation cluster */
9611 cluster = &root->fs_info->data_alloc_cluster;
9612 spin_lock(&cluster->refill_lock);
9613 btrfs_return_cluster_to_free_space(block_group, cluster);
9614 spin_unlock(&cluster->refill_lock);
9615
9616 /*
9617 * make sure this block group isn't part of a metadata
9618 * allocation cluster
9619 */
9620 cluster = &root->fs_info->meta_alloc_cluster;
9621 spin_lock(&cluster->refill_lock);
9622 btrfs_return_cluster_to_free_space(block_group, cluster);
9623 spin_unlock(&cluster->refill_lock);
9624
Zheng Yan1a40e232008-09-26 10:09:34 -04009625 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07009626 if (!path) {
9627 ret = -ENOMEM;
9628 goto out;
9629 }
Zheng Yan1a40e232008-09-26 10:09:34 -04009630
Chris Mason1bbc6212015-04-06 12:46:08 -07009631 /*
9632 * get the inode first so any iput calls done for the io_list
9633 * aren't the final iput (no unlinks allowed now)
9634 */
Ilya Dryomov10b2f342011-10-02 13:56:53 +03009635 inode = lookup_free_space_inode(tree_root, block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -07009636
9637 mutex_lock(&trans->transaction->cache_write_mutex);
9638 /*
9639 * make sure our free spache cache IO is done before remove the
9640 * free space inode
9641 */
9642 spin_lock(&trans->transaction->dirty_bgs_lock);
9643 if (!list_empty(&block_group->io_list)) {
9644 list_del_init(&block_group->io_list);
9645
9646 WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode);
9647
9648 spin_unlock(&trans->transaction->dirty_bgs_lock);
9649 btrfs_wait_cache_io(root, trans, block_group,
9650 &block_group->io_ctl, path,
9651 block_group->key.objectid);
9652 btrfs_put_block_group(block_group);
9653 spin_lock(&trans->transaction->dirty_bgs_lock);
9654 }
9655
9656 if (!list_empty(&block_group->dirty_list)) {
9657 list_del_init(&block_group->dirty_list);
9658 btrfs_put_block_group(block_group);
9659 }
9660 spin_unlock(&trans->transaction->dirty_bgs_lock);
9661 mutex_unlock(&trans->transaction->cache_write_mutex);
9662
Josef Bacik0af3d002010-06-21 14:48:16 -04009663 if (!IS_ERR(inode)) {
Tsutomu Itohb5324022011-07-19 07:27:20 +00009664 ret = btrfs_orphan_add(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009665 if (ret) {
9666 btrfs_add_delayed_iput(inode);
9667 goto out;
9668 }
Josef Bacik0af3d002010-06-21 14:48:16 -04009669 clear_nlink(inode);
9670 /* One for the block groups ref */
9671 spin_lock(&block_group->lock);
9672 if (block_group->iref) {
9673 block_group->iref = 0;
9674 block_group->inode = NULL;
9675 spin_unlock(&block_group->lock);
9676 iput(inode);
9677 } else {
9678 spin_unlock(&block_group->lock);
9679 }
9680 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -04009681 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04009682 }
9683
9684 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
9685 key.offset = block_group->key.objectid;
9686 key.type = 0;
9687
9688 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
9689 if (ret < 0)
9690 goto out;
9691 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +02009692 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04009693 if (ret == 0) {
9694 ret = btrfs_del_item(trans, tree_root, path);
9695 if (ret)
9696 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02009697 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04009698 }
9699
Yan Zheng3dfdb932009-01-21 10:49:16 -05009700 spin_lock(&root->fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009701 rb_erase(&block_group->cache_node,
9702 &root->fs_info->block_group_cache_tree);
Filipe Manana292cbd52014-11-26 15:28:50 +00009703 RB_CLEAR_NODE(&block_group->cache_node);
Liu Boa1897fd2012-12-27 09:01:23 +00009704
9705 if (root->fs_info->first_logical_byte == block_group->key.objectid)
9706 root->fs_info->first_logical_byte = (u64)-1;
Yan Zheng3dfdb932009-01-21 10:49:16 -05009707 spin_unlock(&root->fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04009708
Josef Bacik80eb2342008-10-29 14:49:05 -04009709 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04009710 /*
9711 * we must use list_del_init so people can check to see if they
9712 * are still on the list after taking the semaphore
9713 */
9714 list_del_init(&block_group->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009715 if (list_empty(&block_group->space_info->block_groups[index])) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009716 kobj = block_group->space_info->block_group_kobjs[index];
9717 block_group->space_info->block_group_kobjs[index] = NULL;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009718 clear_avail_alloc_bits(root->fs_info, block_group->flags);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009719 }
Josef Bacik80eb2342008-10-29 14:49:05 -04009720 up_write(&block_group->space_info->groups_sem);
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009721 if (kobj) {
9722 kobject_del(kobj);
9723 kobject_put(kobj);
9724 }
Zheng Yan1a40e232008-09-26 10:09:34 -04009725
Filipe Manana4f69cb92014-11-26 15:28:51 +00009726 if (block_group->has_caching_ctl)
9727 caching_ctl = get_caching_control(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04009728 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04009729 wait_block_group_cache_done(block_group);
Filipe Manana4f69cb92014-11-26 15:28:51 +00009730 if (block_group->has_caching_ctl) {
9731 down_write(&root->fs_info->commit_root_sem);
9732 if (!caching_ctl) {
9733 struct btrfs_caching_control *ctl;
9734
9735 list_for_each_entry(ctl,
9736 &root->fs_info->caching_block_groups, list)
9737 if (ctl->block_group == block_group) {
9738 caching_ctl = ctl;
9739 atomic_inc(&caching_ctl->count);
9740 break;
9741 }
9742 }
9743 if (caching_ctl)
9744 list_del_init(&caching_ctl->list);
9745 up_write(&root->fs_info->commit_root_sem);
9746 if (caching_ctl) {
9747 /* Once for the caching bgs list and once for us. */
9748 put_caching_control(caching_ctl);
9749 put_caching_control(caching_ctl);
9750 }
9751 }
Josef Bacik817d52f2009-07-13 21:29:25 -04009752
Josef Bacikce93ec52014-11-17 15:45:48 -05009753 spin_lock(&trans->transaction->dirty_bgs_lock);
9754 if (!list_empty(&block_group->dirty_list)) {
Chris Mason1bbc6212015-04-06 12:46:08 -07009755 WARN_ON(1);
9756 }
9757 if (!list_empty(&block_group->io_list)) {
9758 WARN_ON(1);
Josef Bacikce93ec52014-11-17 15:45:48 -05009759 }
9760 spin_unlock(&trans->transaction->dirty_bgs_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04009761 btrfs_remove_free_space_cache(block_group);
9762
Yan Zhengc146afa2008-11-12 14:34:12 -05009763 spin_lock(&block_group->space_info->lock);
Filipe Manana75c68e92015-01-16 13:24:40 +00009764 list_del_init(&block_group->ro_list);
Zhao Lei18d018a2015-02-24 20:07:44 +08009765
9766 if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
9767 WARN_ON(block_group->space_info->total_bytes
9768 < block_group->key.offset);
9769 WARN_ON(block_group->space_info->bytes_readonly
9770 < block_group->key.offset);
9771 WARN_ON(block_group->space_info->disk_total
9772 < block_group->key.offset * factor);
9773 }
Yan Zhengc146afa2008-11-12 14:34:12 -05009774 block_group->space_info->total_bytes -= block_group->key.offset;
9775 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -04009776 block_group->space_info->disk_total -= block_group->key.offset * factor;
Zhao Lei18d018a2015-02-24 20:07:44 +08009777
Yan Zhengc146afa2008-11-12 14:34:12 -05009778 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -04009779
Josef Bacik0af3d002010-06-21 14:48:16 -04009780 memcpy(&key, &block_group->key, sizeof(key));
9781
Filipe Manana04216822014-11-27 21:14:15 +00009782 lock_chunks(root);
Filipe Manana495e64f2014-12-02 18:07:30 +00009783 if (!list_empty(&em->list)) {
9784 /* We're in the transaction->pending_chunks list. */
9785 free_extent_map(em);
9786 }
Filipe Manana04216822014-11-27 21:14:15 +00009787 spin_lock(&block_group->lock);
9788 block_group->removed = 1;
9789 /*
9790 * At this point trimming can't start on this block group, because we
9791 * removed the block group from the tree fs_info->block_group_cache_tree
9792 * so no one can't find it anymore and even if someone already got this
9793 * block group before we removed it from the rbtree, they have already
9794 * incremented block_group->trimming - if they didn't, they won't find
9795 * any free space entries because we already removed them all when we
9796 * called btrfs_remove_free_space_cache().
9797 *
9798 * And we must not remove the extent map from the fs_info->mapping_tree
9799 * to prevent the same logical address range and physical device space
9800 * ranges from being reused for a new block group. This is because our
9801 * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is
9802 * completely transactionless, so while it is trimming a range the
9803 * currently running transaction might finish and a new one start,
9804 * allowing for new block groups to be created that can reuse the same
9805 * physical device locations unless we take this special care.
9806 */
9807 remove_em = (atomic_read(&block_group->trimming) == 0);
9808 /*
9809 * Make sure a trimmer task always sees the em in the pinned_chunks list
9810 * if it sees block_group->removed == 1 (needs to lock block_group->lock
9811 * before checking block_group->removed).
9812 */
9813 if (!remove_em) {
9814 /*
9815 * Our em might be in trans->transaction->pending_chunks which
9816 * is protected by fs_info->chunk_mutex ([lock|unlock]_chunks),
9817 * and so is the fs_info->pinned_chunks list.
9818 *
9819 * So at this point we must be holding the chunk_mutex to avoid
9820 * any races with chunk allocation (more specifically at
9821 * volumes.c:contains_pending_extent()), to ensure it always
9822 * sees the em, either in the pending_chunks list or in the
9823 * pinned_chunks list.
9824 */
9825 list_move_tail(&em->list, &root->fs_info->pinned_chunks);
9826 }
9827 spin_unlock(&block_group->lock);
Filipe Manana04216822014-11-27 21:14:15 +00009828
9829 if (remove_em) {
9830 struct extent_map_tree *em_tree;
9831
9832 em_tree = &root->fs_info->mapping_tree.map_tree;
9833 write_lock(&em_tree->lock);
Filipe Manana8dbcd102014-12-02 18:07:49 +00009834 /*
9835 * The em might be in the pending_chunks list, so make sure the
9836 * chunk mutex is locked, since remove_extent_mapping() will
9837 * delete us from that list.
9838 */
Filipe Manana04216822014-11-27 21:14:15 +00009839 remove_extent_mapping(em_tree, em);
9840 write_unlock(&em_tree->lock);
9841 /* once for the tree */
9842 free_extent_map(em);
9843 }
9844
Filipe Manana8dbcd102014-12-02 18:07:49 +00009845 unlock_chunks(root);
9846
Chris Masonfa9c0d792009-04-03 09:47:43 -04009847 btrfs_put_block_group(block_group);
9848 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -04009849
9850 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
9851 if (ret > 0)
9852 ret = -EIO;
9853 if (ret < 0)
9854 goto out;
9855
9856 ret = btrfs_del_item(trans, root, path);
9857out:
9858 btrfs_free_path(path);
9859 return ret;
9860}
liuboacce9522011-01-06 19:30:25 +08009861
Josef Bacik47ab2a62014-09-18 11:20:02 -04009862/*
9863 * Process the unused_bgs list and remove any that don't have any allocated
9864 * space inside of them.
9865 */
9866void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info)
9867{
9868 struct btrfs_block_group_cache *block_group;
9869 struct btrfs_space_info *space_info;
9870 struct btrfs_root *root = fs_info->extent_root;
9871 struct btrfs_trans_handle *trans;
9872 int ret = 0;
9873
9874 if (!fs_info->open)
9875 return;
9876
9877 spin_lock(&fs_info->unused_bgs_lock);
9878 while (!list_empty(&fs_info->unused_bgs)) {
9879 u64 start, end;
9880
9881 block_group = list_first_entry(&fs_info->unused_bgs,
9882 struct btrfs_block_group_cache,
9883 bg_list);
9884 space_info = block_group->space_info;
9885 list_del_init(&block_group->bg_list);
9886 if (ret || btrfs_mixed_space_info(space_info)) {
9887 btrfs_put_block_group(block_group);
9888 continue;
9889 }
9890 spin_unlock(&fs_info->unused_bgs_lock);
9891
Filipe Manana67c5e7d2015-06-11 00:58:53 +01009892 mutex_lock(&root->fs_info->delete_unused_bgs_mutex);
9893
Josef Bacik47ab2a62014-09-18 11:20:02 -04009894 /* Don't want to race with allocators so take the groups_sem */
9895 down_write(&space_info->groups_sem);
9896 spin_lock(&block_group->lock);
9897 if (block_group->reserved ||
9898 btrfs_block_group_used(&block_group->item) ||
9899 block_group->ro) {
9900 /*
9901 * We want to bail if we made new allocations or have
9902 * outstanding allocations in this block group. We do
9903 * the ro check in case balance is currently acting on
9904 * this block group.
9905 */
9906 spin_unlock(&block_group->lock);
9907 up_write(&space_info->groups_sem);
9908 goto next;
9909 }
9910 spin_unlock(&block_group->lock);
9911
9912 /* We don't want to force the issue, only flip if it's ok. */
9913 ret = set_block_group_ro(block_group, 0);
9914 up_write(&space_info->groups_sem);
9915 if (ret < 0) {
9916 ret = 0;
9917 goto next;
9918 }
9919
9920 /*
9921 * Want to do this before we do anything else so we can recover
9922 * properly if we fail to join the transaction.
9923 */
Forrest Liu3d84be72015-02-11 14:24:12 +08009924 /* 1 for btrfs_orphan_reserve_metadata() */
9925 trans = btrfs_start_transaction(root, 1);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009926 if (IS_ERR(trans)) {
9927 btrfs_set_block_group_rw(root, block_group);
9928 ret = PTR_ERR(trans);
9929 goto next;
9930 }
9931
9932 /*
9933 * We could have pending pinned extents for this block group,
9934 * just delete them, we don't care about them anymore.
9935 */
9936 start = block_group->key.objectid;
9937 end = start + block_group->key.offset - 1;
Filipe Mananad4b450c2015-01-29 19:18:25 +00009938 /*
9939 * Hold the unused_bg_unpin_mutex lock to avoid racing with
9940 * btrfs_finish_extent_commit(). If we are at transaction N,
9941 * another task might be running finish_extent_commit() for the
9942 * previous transaction N - 1, and have seen a range belonging
9943 * to the block group in freed_extents[] before we were able to
9944 * clear the whole block group range from freed_extents[]. This
9945 * means that task can lookup for the block group after we
9946 * unpinned it from freed_extents[] and removed it, leading to
9947 * a BUG_ON() at btrfs_unpin_extent_range().
9948 */
9949 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana758eb512014-11-03 14:08:39 +00009950 ret = clear_extent_bits(&fs_info->freed_extents[0], start, end,
Josef Bacik47ab2a62014-09-18 11:20:02 -04009951 EXTENT_DIRTY, GFP_NOFS);
Filipe Manana758eb512014-11-03 14:08:39 +00009952 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +00009953 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana758eb512014-11-03 14:08:39 +00009954 btrfs_set_block_group_rw(root, block_group);
9955 goto end_trans;
9956 }
9957 ret = clear_extent_bits(&fs_info->freed_extents[1], start, end,
Josef Bacik47ab2a62014-09-18 11:20:02 -04009958 EXTENT_DIRTY, GFP_NOFS);
Filipe Manana758eb512014-11-03 14:08:39 +00009959 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +00009960 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana758eb512014-11-03 14:08:39 +00009961 btrfs_set_block_group_rw(root, block_group);
9962 goto end_trans;
9963 }
Filipe Mananad4b450c2015-01-29 19:18:25 +00009964 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009965
9966 /* Reset pinned so btrfs_put_block_group doesn't complain */
Zhao Leic30666d2015-02-25 14:17:20 +08009967 spin_lock(&space_info->lock);
9968 spin_lock(&block_group->lock);
9969
9970 space_info->bytes_pinned -= block_group->pinned;
9971 space_info->bytes_readonly += block_group->pinned;
9972 percpu_counter_add(&space_info->total_bytes_pinned,
9973 -block_group->pinned);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009974 block_group->pinned = 0;
9975
Zhao Leic30666d2015-02-25 14:17:20 +08009976 spin_unlock(&block_group->lock);
9977 spin_unlock(&space_info->lock);
9978
Josef Bacik47ab2a62014-09-18 11:20:02 -04009979 /*
9980 * Btrfs_remove_chunk will abort the transaction if things go
9981 * horribly wrong.
9982 */
9983 ret = btrfs_remove_chunk(trans, root,
9984 block_group->key.objectid);
Filipe Manana758eb512014-11-03 14:08:39 +00009985end_trans:
Josef Bacik47ab2a62014-09-18 11:20:02 -04009986 btrfs_end_transaction(trans, root);
9987next:
Filipe Manana67c5e7d2015-06-11 00:58:53 +01009988 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009989 btrfs_put_block_group(block_group);
9990 spin_lock(&fs_info->unused_bgs_lock);
9991 }
9992 spin_unlock(&fs_info->unused_bgs_lock);
9993}
9994
liuboc59021f2011-03-07 02:13:14 +00009995int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
9996{
9997 struct btrfs_space_info *space_info;
liubo1aba86d2011-04-08 08:44:37 +00009998 struct btrfs_super_block *disk_super;
9999 u64 features;
10000 u64 flags;
10001 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +000010002 int ret;
10003
David Sterba6c417612011-04-13 15:41:04 +020010004 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +000010005 if (!btrfs_super_root(disk_super))
10006 return 1;
liuboc59021f2011-03-07 02:13:14 +000010007
liubo1aba86d2011-04-08 08:44:37 +000010008 features = btrfs_super_incompat_flags(disk_super);
10009 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
10010 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +000010011
liubo1aba86d2011-04-08 08:44:37 +000010012 flags = BTRFS_BLOCK_GROUP_SYSTEM;
10013 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
liuboc59021f2011-03-07 02:13:14 +000010014 if (ret)
liubo1aba86d2011-04-08 08:44:37 +000010015 goto out;
liuboc59021f2011-03-07 02:13:14 +000010016
liubo1aba86d2011-04-08 08:44:37 +000010017 if (mixed) {
10018 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
10019 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
10020 } else {
10021 flags = BTRFS_BLOCK_GROUP_METADATA;
10022 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
10023 if (ret)
10024 goto out;
10025
10026 flags = BTRFS_BLOCK_GROUP_DATA;
10027 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
10028 }
10029out:
liuboc59021f2011-03-07 02:13:14 +000010030 return ret;
10031}
10032
liuboacce9522011-01-06 19:30:25 +080010033int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
10034{
Filipe Manana678886b2014-12-07 21:31:47 +000010035 return unpin_extent_range(root, start, end, false);
liuboacce9522011-01-06 19:30:25 +080010036}
10037
Li Dongyangf7039b12011-03-24 10:24:28 +000010038int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range)
10039{
10040 struct btrfs_fs_info *fs_info = root->fs_info;
10041 struct btrfs_block_group_cache *cache = NULL;
10042 u64 group_trimmed;
10043 u64 start;
10044 u64 end;
10045 u64 trimmed = 0;
Liu Bo2cac13e2012-02-09 18:17:41 +080010046 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +000010047 int ret = 0;
10048
Liu Bo2cac13e2012-02-09 18:17:41 +080010049 /*
10050 * try to trim all FS space, our block group may start from non-zero.
10051 */
10052 if (range->len == total_bytes)
10053 cache = btrfs_lookup_first_block_group(fs_info, range->start);
10054 else
10055 cache = btrfs_lookup_block_group(fs_info, range->start);
Li Dongyangf7039b12011-03-24 10:24:28 +000010056
10057 while (cache) {
10058 if (cache->key.objectid >= (range->start + range->len)) {
10059 btrfs_put_block_group(cache);
10060 break;
10061 }
10062
10063 start = max(range->start, cache->key.objectid);
10064 end = min(range->start + range->len,
10065 cache->key.objectid + cache->key.offset);
10066
10067 if (end - start >= range->minlen) {
10068 if (!block_group_cache_done(cache)) {
Liu Bof6373bf2012-12-27 09:01:18 +000010069 ret = cache_block_group(cache, 0);
Josef Bacik1be41b72013-06-12 13:56:06 -040010070 if (ret) {
10071 btrfs_put_block_group(cache);
10072 break;
10073 }
10074 ret = wait_block_group_cache_done(cache);
10075 if (ret) {
10076 btrfs_put_block_group(cache);
10077 break;
10078 }
Li Dongyangf7039b12011-03-24 10:24:28 +000010079 }
10080 ret = btrfs_trim_block_group(cache,
10081 &group_trimmed,
10082 start,
10083 end,
10084 range->minlen);
10085
10086 trimmed += group_trimmed;
10087 if (ret) {
10088 btrfs_put_block_group(cache);
10089 break;
10090 }
10091 }
10092
10093 cache = next_block_group(fs_info->tree_root, cache);
10094 }
10095
10096 range->len = trimmed;
10097 return ret;
10098}
Miao Xie8257b2d2014-03-06 13:38:19 +080010099
10100/*
Filipe Manana9ea24bb2014-10-29 11:57:59 +000010101 * btrfs_{start,end}_write_no_snapshoting() are similar to
10102 * mnt_{want,drop}_write(), they are used to prevent some tasks from writing
10103 * data into the page cache through nocow before the subvolume is snapshoted,
10104 * but flush the data into disk after the snapshot creation, or to prevent
10105 * operations while snapshoting is ongoing and that cause the snapshot to be
10106 * inconsistent (writes followed by expanding truncates for example).
Miao Xie8257b2d2014-03-06 13:38:19 +080010107 */
Filipe Manana9ea24bb2014-10-29 11:57:59 +000010108void btrfs_end_write_no_snapshoting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080010109{
10110 percpu_counter_dec(&root->subv_writers->counter);
10111 /*
10112 * Make sure counter is updated before we wake up
10113 * waiters.
10114 */
10115 smp_mb();
10116 if (waitqueue_active(&root->subv_writers->wait))
10117 wake_up(&root->subv_writers->wait);
10118}
10119
Filipe Manana9ea24bb2014-10-29 11:57:59 +000010120int btrfs_start_write_no_snapshoting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080010121{
David Sterbaee39b432014-09-30 01:33:33 +020010122 if (atomic_read(&root->will_be_snapshoted))
Miao Xie8257b2d2014-03-06 13:38:19 +080010123 return 0;
10124
10125 percpu_counter_inc(&root->subv_writers->counter);
10126 /*
10127 * Make sure counter is updated before we check for snapshot creation.
10128 */
10129 smp_mb();
David Sterbaee39b432014-09-30 01:33:33 +020010130 if (atomic_read(&root->will_be_snapshoted)) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +000010131 btrfs_end_write_no_snapshoting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +080010132 return 0;
10133 }
10134 return 1;
10135}