blob: 07204bf601edac25ad2757bbd7c85961eeabc56c [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{
Filipe Mananacffc3372015-07-09 13:13:44 +01002299 struct btrfs_delayed_ref_node *ref;
2300
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002301 if (list_empty(&head->ref_list))
2302 return NULL;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002303
Filipe Mananacffc3372015-07-09 13:13:44 +01002304 /*
2305 * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first.
2306 * This is to prevent a ref count from going down to zero, which deletes
2307 * the extent item from the extent tree, when there still are references
2308 * to add, which would fail because they would not find the extent item.
2309 */
2310 list_for_each_entry(ref, &head->ref_list, list) {
2311 if (ref->action == BTRFS_ADD_DELAYED_REF)
2312 return ref;
2313 }
2314
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002315 return list_entry(head->ref_list.next, struct btrfs_delayed_ref_node,
2316 list);
Chris Mason56bec292009-03-13 10:10:06 -04002317}
2318
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002319/*
2320 * Returns 0 on success or if called with an already aborted transaction.
2321 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2322 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002323static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2324 struct btrfs_root *root,
2325 unsigned long nr)
Chris Mason56bec292009-03-13 10:10:06 -04002326{
Chris Mason56bec292009-03-13 10:10:06 -04002327 struct btrfs_delayed_ref_root *delayed_refs;
2328 struct btrfs_delayed_ref_node *ref;
2329 struct btrfs_delayed_ref_head *locked_ref = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002330 struct btrfs_delayed_extent_op *extent_op;
Jan Schmidt097b8a72012-06-21 11:08:04 +02002331 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002332 ktime_t start = ktime_get();
Chris Mason56bec292009-03-13 10:10:06 -04002333 int ret;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002334 unsigned long count = 0;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002335 unsigned long actual_count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002336 int must_insert_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002337
2338 delayed_refs = &trans->transaction->delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002339 while (1) {
2340 if (!locked_ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002341 if (count >= nr)
Chris Mason56bec292009-03-13 10:10:06 -04002342 break;
Chris Mason56bec292009-03-13 10:10:06 -04002343
Josef Bacikd7df2c72014-01-23 09:21:38 -05002344 spin_lock(&delayed_refs->lock);
2345 locked_ref = btrfs_select_ref_head(trans);
2346 if (!locked_ref) {
2347 spin_unlock(&delayed_refs->lock);
2348 break;
2349 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002350
2351 /* grab the lock that says we are going to process
2352 * all the refs for this head */
2353 ret = btrfs_delayed_ref_lock(trans, locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002354 spin_unlock(&delayed_refs->lock);
Chris Masonc3e69d52009-03-13 10:17:05 -04002355 /*
2356 * we may have dropped the spin lock to get the head
2357 * mutex lock, and that might have given someone else
2358 * time to free the head. If that's true, it has been
2359 * removed from our list and we can move on.
2360 */
2361 if (ret == -EAGAIN) {
2362 locked_ref = NULL;
2363 count++;
2364 continue;
Chris Mason56bec292009-03-13 10:10:06 -04002365 }
2366 }
2367
Josef Bacikd7df2c72014-01-23 09:21:38 -05002368 spin_lock(&locked_ref->lock);
Josef Bacikae1e2062012-08-07 16:00:32 -04002369
2370 /*
Arne Jansend1270cd2011-09-13 15:16:43 +02002371 * locked_ref is the head node, so we have to go one
2372 * node back for any delayed ref updates
2373 */
2374 ref = select_delayed_ref(locked_ref);
2375
2376 if (ref && ref->seq &&
Jan Schmidt097b8a72012-06-21 11:08:04 +02002377 btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002378 spin_unlock(&locked_ref->lock);
Miao Xie093486c2012-12-19 08:10:10 +00002379 btrfs_delayed_ref_unlock(locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002380 spin_lock(&delayed_refs->lock);
2381 locked_ref->processing = 0;
Arne Jansend1270cd2011-09-13 15:16:43 +02002382 delayed_refs->num_heads_ready++;
2383 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002384 locked_ref = NULL;
Arne Jansend1270cd2011-09-13 15:16:43 +02002385 cond_resched();
Josef Bacik27a377d2014-02-07 13:57:59 -05002386 count++;
Arne Jansend1270cd2011-09-13 15:16:43 +02002387 continue;
2388 }
2389
2390 /*
Chris Mason56bec292009-03-13 10:10:06 -04002391 * record the must insert reserved flag before we
2392 * drop the spin lock.
2393 */
2394 must_insert_reserved = locked_ref->must_insert_reserved;
2395 locked_ref->must_insert_reserved = 0;
2396
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002397 extent_op = locked_ref->extent_op;
2398 locked_ref->extent_op = NULL;
2399
Chris Mason56bec292009-03-13 10:10:06 -04002400 if (!ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002401
2402
Chris Mason56bec292009-03-13 10:10:06 -04002403 /* All delayed refs have been processed, Go ahead
2404 * and send the head node to run_one_delayed_ref,
2405 * so that any accounting fixes can happen
2406 */
2407 ref = &locked_ref->node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002408
2409 if (extent_op && must_insert_reserved) {
Miao Xie78a61842012-11-21 02:21:28 +00002410 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002411 extent_op = NULL;
2412 }
2413
2414 if (extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002415 spin_unlock(&locked_ref->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002416 ret = run_delayed_extent_op(trans, root,
2417 ref, extent_op);
Miao Xie78a61842012-11-21 02:21:28 +00002418 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002419
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002420 if (ret) {
Josef Bacik857cc2f2013-10-07 15:21:08 -04002421 /*
2422 * Need to reset must_insert_reserved if
2423 * there was an error so the abort stuff
2424 * can cleanup the reserved space
2425 * properly.
2426 */
2427 if (must_insert_reserved)
2428 locked_ref->must_insert_reserved = 1;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002429 locked_ref->processing = 0;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002430 btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret);
Miao Xie093486c2012-12-19 08:10:10 +00002431 btrfs_delayed_ref_unlock(locked_ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002432 return ret;
2433 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002434 continue;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002435 }
Chris Mason56bec292009-03-13 10:10:06 -04002436
Josef Bacikd7df2c72014-01-23 09:21:38 -05002437 /*
2438 * Need to drop our head ref lock and re-aqcuire the
2439 * delayed ref lock and then re-check to make sure
2440 * nobody got added.
2441 */
2442 spin_unlock(&locked_ref->lock);
2443 spin_lock(&delayed_refs->lock);
2444 spin_lock(&locked_ref->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002445 if (!list_empty(&locked_ref->ref_list) ||
Josef Bacik573a0752014-03-27 19:41:34 -04002446 locked_ref->extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002447 spin_unlock(&locked_ref->lock);
2448 spin_unlock(&delayed_refs->lock);
2449 continue;
2450 }
2451 ref->in_tree = 0;
2452 delayed_refs->num_heads--;
Liu Boc46effa2013-10-14 12:59:45 +08002453 rb_erase(&locked_ref->href_node,
2454 &delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002455 spin_unlock(&delayed_refs->lock);
2456 } else {
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002457 actual_count++;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002458 ref->in_tree = 0;
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002459 list_del(&ref->list);
Liu Boc46effa2013-10-14 12:59:45 +08002460 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002461 atomic_dec(&delayed_refs->num_entries);
2462
Miao Xie093486c2012-12-19 08:10:10 +00002463 if (!btrfs_delayed_ref_is_head(ref)) {
Arne Jansen22cd2e72012-08-09 00:16:53 -06002464 /*
2465 * when we play the delayed ref, also correct the
2466 * ref_mod on head
2467 */
2468 switch (ref->action) {
2469 case BTRFS_ADD_DELAYED_REF:
2470 case BTRFS_ADD_DELAYED_EXTENT:
2471 locked_ref->node.ref_mod -= ref->ref_mod;
2472 break;
2473 case BTRFS_DROP_DELAYED_REF:
2474 locked_ref->node.ref_mod += ref->ref_mod;
2475 break;
2476 default:
2477 WARN_ON(1);
2478 }
2479 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002480 spin_unlock(&locked_ref->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002481
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002482 ret = run_one_delayed_ref(trans, root, ref, extent_op,
Chris Mason56bec292009-03-13 10:10:06 -04002483 must_insert_reserved);
Chris Mason56bec292009-03-13 10:10:06 -04002484
Miao Xie78a61842012-11-21 02:21:28 +00002485 btrfs_free_delayed_extent_op(extent_op);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002486 if (ret) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002487 locked_ref->processing = 0;
Miao Xie093486c2012-12-19 08:10:10 +00002488 btrfs_delayed_ref_unlock(locked_ref);
2489 btrfs_put_delayed_ref(ref);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002490 btrfs_debug(fs_info, "run_one_delayed_ref returned %d", ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002491 return ret;
2492 }
2493
Miao Xie093486c2012-12-19 08:10:10 +00002494 /*
2495 * If this node is a head, that means all the refs in this head
2496 * have been dealt with, and we will pick the next head to deal
2497 * with, so we must unlock the head and drop it from the cluster
2498 * list before we release it.
2499 */
2500 if (btrfs_delayed_ref_is_head(ref)) {
Josef Bacik12621332015-02-03 07:50:16 -08002501 if (locked_ref->is_data &&
2502 locked_ref->total_ref_mod < 0) {
2503 spin_lock(&delayed_refs->lock);
2504 delayed_refs->pending_csums -= ref->num_bytes;
2505 spin_unlock(&delayed_refs->lock);
2506 }
Miao Xie093486c2012-12-19 08:10:10 +00002507 btrfs_delayed_ref_unlock(locked_ref);
2508 locked_ref = NULL;
2509 }
2510 btrfs_put_delayed_ref(ref);
2511 count++;
Chris Mason1887be62009-03-13 10:11:24 -04002512 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002513 }
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002514
2515 /*
2516 * We don't want to include ref heads since we can have empty ref heads
2517 * and those will drastically skew our runtime down since we just do
2518 * accounting, no actual extent tree updates.
2519 */
2520 if (actual_count > 0) {
2521 u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start));
2522 u64 avg;
2523
2524 /*
2525 * We weigh the current average higher than our current runtime
2526 * to avoid large swings in the average.
2527 */
2528 spin_lock(&delayed_refs->lock);
2529 avg = fs_info->avg_delayed_ref_runtime * 3 + runtime;
David Sterbaf8c269d2015-01-16 17:21:12 +01002530 fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002531 spin_unlock(&delayed_refs->lock);
2532 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002533 return 0;
Chris Masonc3e69d52009-03-13 10:17:05 -04002534}
2535
Arne Jansen709c0482011-09-12 12:22:57 +02002536#ifdef SCRAMBLE_DELAYED_REFS
2537/*
2538 * Normally delayed refs get processed in ascending bytenr order. This
2539 * correlates in most cases to the order added. To expose dependencies on this
2540 * order, we start to process the tree in the middle instead of the beginning
2541 */
2542static u64 find_middle(struct rb_root *root)
2543{
2544 struct rb_node *n = root->rb_node;
2545 struct btrfs_delayed_ref_node *entry;
2546 int alt = 1;
2547 u64 middle;
2548 u64 first = 0, last = 0;
2549
2550 n = rb_first(root);
2551 if (n) {
2552 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2553 first = entry->bytenr;
2554 }
2555 n = rb_last(root);
2556 if (n) {
2557 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2558 last = entry->bytenr;
2559 }
2560 n = root->rb_node;
2561
2562 while (n) {
2563 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2564 WARN_ON(!entry->in_tree);
2565
2566 middle = entry->bytenr;
2567
2568 if (alt)
2569 n = n->rb_left;
2570 else
2571 n = n->rb_right;
2572
2573 alt = 1 - alt;
2574 }
2575 return middle;
2576}
2577#endif
2578
Josef Bacik1be41b72013-06-12 13:56:06 -04002579static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads)
2580{
2581 u64 num_bytes;
2582
2583 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2584 sizeof(struct btrfs_extent_inline_ref));
2585 if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2586 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2587
2588 /*
2589 * We don't ever fill up leaves all the way so multiply by 2 just to be
2590 * closer to what we're really going to want to ouse.
2591 */
David Sterbaf8c269d2015-01-16 17:21:12 +01002592 return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root));
Josef Bacik1be41b72013-06-12 13:56:06 -04002593}
2594
Josef Bacik12621332015-02-03 07:50:16 -08002595/*
2596 * Takes the number of bytes to be csumm'ed and figures out how many leaves it
2597 * would require to store the csums for that many bytes.
2598 */
Chris Mason28f75a02015-02-04 06:59:29 -08002599u64 btrfs_csum_bytes_to_leaves(struct btrfs_root *root, u64 csum_bytes)
Josef Bacik12621332015-02-03 07:50:16 -08002600{
2601 u64 csum_size;
2602 u64 num_csums_per_leaf;
2603 u64 num_csums;
2604
2605 csum_size = BTRFS_LEAF_DATA_SIZE(root) - sizeof(struct btrfs_item);
2606 num_csums_per_leaf = div64_u64(csum_size,
2607 (u64)btrfs_super_csum_size(root->fs_info->super_copy));
2608 num_csums = div64_u64(csum_bytes, root->sectorsize);
2609 num_csums += num_csums_per_leaf - 1;
2610 num_csums = div64_u64(num_csums, num_csums_per_leaf);
2611 return num_csums;
2612}
2613
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002614int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans,
Josef Bacik1be41b72013-06-12 13:56:06 -04002615 struct btrfs_root *root)
2616{
2617 struct btrfs_block_rsv *global_rsv;
2618 u64 num_heads = trans->transaction->delayed_refs.num_heads_ready;
Josef Bacik12621332015-02-03 07:50:16 -08002619 u64 csum_bytes = trans->transaction->delayed_refs.pending_csums;
Josef Bacikcb723e42015-02-18 08:06:57 -08002620 u64 num_dirty_bgs = trans->transaction->num_dirty_bgs;
2621 u64 num_bytes, num_dirty_bgs_bytes;
Josef Bacik1be41b72013-06-12 13:56:06 -04002622 int ret = 0;
2623
2624 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
2625 num_heads = heads_to_leaves(root, num_heads);
2626 if (num_heads > 1)
David Sterba707e8a02014-06-04 19:22:26 +02002627 num_bytes += (num_heads - 1) * root->nodesize;
Josef Bacik1be41b72013-06-12 13:56:06 -04002628 num_bytes <<= 1;
Chris Mason28f75a02015-02-04 06:59:29 -08002629 num_bytes += btrfs_csum_bytes_to_leaves(root, csum_bytes) * root->nodesize;
Josef Bacikcb723e42015-02-18 08:06:57 -08002630 num_dirty_bgs_bytes = btrfs_calc_trans_metadata_size(root,
2631 num_dirty_bgs);
Josef Bacik1be41b72013-06-12 13:56:06 -04002632 global_rsv = &root->fs_info->global_block_rsv;
2633
2634 /*
2635 * If we can't allocate any more chunks lets make sure we have _lots_ of
2636 * wiggle room since running delayed refs can create more delayed refs.
2637 */
Josef Bacikcb723e42015-02-18 08:06:57 -08002638 if (global_rsv->space_info->full) {
2639 num_dirty_bgs_bytes <<= 1;
Josef Bacik1be41b72013-06-12 13:56:06 -04002640 num_bytes <<= 1;
Josef Bacikcb723e42015-02-18 08:06:57 -08002641 }
Josef Bacik1be41b72013-06-12 13:56:06 -04002642
2643 spin_lock(&global_rsv->lock);
Josef Bacikcb723e42015-02-18 08:06:57 -08002644 if (global_rsv->reserved <= num_bytes + num_dirty_bgs_bytes)
Josef Bacik1be41b72013-06-12 13:56:06 -04002645 ret = 1;
2646 spin_unlock(&global_rsv->lock);
2647 return ret;
2648}
2649
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002650int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans,
2651 struct btrfs_root *root)
2652{
2653 struct btrfs_fs_info *fs_info = root->fs_info;
2654 u64 num_entries =
2655 atomic_read(&trans->transaction->delayed_refs.num_entries);
2656 u64 avg_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002657 u64 val;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002658
2659 smp_mb();
2660 avg_runtime = fs_info->avg_delayed_ref_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002661 val = num_entries * avg_runtime;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002662 if (num_entries * avg_runtime >= NSEC_PER_SEC)
2663 return 1;
Chris Masona79b7d42014-05-22 16:18:52 -07002664 if (val >= NSEC_PER_SEC / 2)
2665 return 2;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002666
2667 return btrfs_check_space_for_delayed_refs(trans, root);
2668}
2669
Chris Masona79b7d42014-05-22 16:18:52 -07002670struct async_delayed_refs {
2671 struct btrfs_root *root;
2672 int count;
2673 int error;
2674 int sync;
2675 struct completion wait;
2676 struct btrfs_work work;
2677};
2678
2679static void delayed_ref_async_start(struct btrfs_work *work)
2680{
2681 struct async_delayed_refs *async;
2682 struct btrfs_trans_handle *trans;
2683 int ret;
2684
2685 async = container_of(work, struct async_delayed_refs, work);
2686
2687 trans = btrfs_join_transaction(async->root);
2688 if (IS_ERR(trans)) {
2689 async->error = PTR_ERR(trans);
2690 goto done;
2691 }
2692
2693 /*
2694 * trans->sync means that when we call end_transaciton, we won't
2695 * wait on delayed refs
2696 */
2697 trans->sync = true;
2698 ret = btrfs_run_delayed_refs(trans, async->root, async->count);
2699 if (ret)
2700 async->error = ret;
2701
2702 ret = btrfs_end_transaction(trans, async->root);
2703 if (ret && !async->error)
2704 async->error = ret;
2705done:
2706 if (async->sync)
2707 complete(&async->wait);
2708 else
2709 kfree(async);
2710}
2711
2712int btrfs_async_run_delayed_refs(struct btrfs_root *root,
2713 unsigned long count, int wait)
2714{
2715 struct async_delayed_refs *async;
2716 int ret;
2717
2718 async = kmalloc(sizeof(*async), GFP_NOFS);
2719 if (!async)
2720 return -ENOMEM;
2721
2722 async->root = root->fs_info->tree_root;
2723 async->count = count;
2724 async->error = 0;
2725 if (wait)
2726 async->sync = 1;
2727 else
2728 async->sync = 0;
2729 init_completion(&async->wait);
2730
Liu Bo9e0af232014-08-15 23:36:53 +08002731 btrfs_init_work(&async->work, btrfs_extent_refs_helper,
2732 delayed_ref_async_start, NULL, NULL);
Chris Masona79b7d42014-05-22 16:18:52 -07002733
2734 btrfs_queue_work(root->fs_info->extent_workers, &async->work);
2735
2736 if (wait) {
2737 wait_for_completion(&async->wait);
2738 ret = async->error;
2739 kfree(async);
2740 return ret;
2741 }
2742 return 0;
2743}
2744
Chris Masonc3e69d52009-03-13 10:17:05 -04002745/*
2746 * this starts processing the delayed reference count updates and
2747 * extent insertions we have queued up so far. count can be
2748 * 0, which means to process everything in the tree at the start
2749 * of the run (but not newly added entries), or it can be some target
2750 * number you'd like to process.
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002751 *
2752 * Returns 0 on success or if called with an aborted transaction
2753 * Returns <0 on error and aborts the transaction
Chris Masonc3e69d52009-03-13 10:17:05 -04002754 */
2755int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2756 struct btrfs_root *root, unsigned long count)
2757{
2758 struct rb_node *node;
2759 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boc46effa2013-10-14 12:59:45 +08002760 struct btrfs_delayed_ref_head *head;
Chris Masonc3e69d52009-03-13 10:17:05 -04002761 int ret;
2762 int run_all = count == (unsigned long)-1;
Chris Masonc3e69d52009-03-13 10:17:05 -04002763
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002764 /* We'll clean this up in btrfs_cleanup_transaction */
2765 if (trans->aborted)
2766 return 0;
2767
Chris Masonc3e69d52009-03-13 10:17:05 -04002768 if (root == root->fs_info->extent_root)
2769 root = root->fs_info->tree_root;
2770
2771 delayed_refs = &trans->transaction->delayed_refs;
Liu Bo26455d32014-12-17 16:14:09 +08002772 if (count == 0)
Josef Bacikd7df2c72014-01-23 09:21:38 -05002773 count = atomic_read(&delayed_refs->num_entries) * 2;
Chris Masonbb721702013-01-29 18:44:12 -05002774
Chris Masonc3e69d52009-03-13 10:17:05 -04002775again:
Arne Jansen709c0482011-09-12 12:22:57 +02002776#ifdef SCRAMBLE_DELAYED_REFS
2777 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
2778#endif
Josef Bacikd7df2c72014-01-23 09:21:38 -05002779 ret = __btrfs_run_delayed_refs(trans, root, count);
2780 if (ret < 0) {
2781 btrfs_abort_transaction(trans, root, ret);
2782 return ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04002783 }
2784
Chris Mason56bec292009-03-13 10:10:06 -04002785 if (run_all) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002786 if (!list_empty(&trans->new_bgs))
Josef Bacikea658ba2012-09-11 16:57:25 -04002787 btrfs_create_pending_block_groups(trans, root);
Josef Bacikea658ba2012-09-11 16:57:25 -04002788
Josef Bacikd7df2c72014-01-23 09:21:38 -05002789 spin_lock(&delayed_refs->lock);
Liu Boc46effa2013-10-14 12:59:45 +08002790 node = rb_first(&delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002791 if (!node) {
2792 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002793 goto out;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002794 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002795 count = (unsigned long)-1;
Chris Mason56bec292009-03-13 10:10:06 -04002796
2797 while (node) {
Liu Boc46effa2013-10-14 12:59:45 +08002798 head = rb_entry(node, struct btrfs_delayed_ref_head,
2799 href_node);
2800 if (btrfs_delayed_ref_is_head(&head->node)) {
2801 struct btrfs_delayed_ref_node *ref;
Chris Mason56bec292009-03-13 10:10:06 -04002802
Liu Boc46effa2013-10-14 12:59:45 +08002803 ref = &head->node;
Chris Mason56bec292009-03-13 10:10:06 -04002804 atomic_inc(&ref->refs);
2805
2806 spin_unlock(&delayed_refs->lock);
David Sterba8cc33e52011-05-02 15:29:25 +02002807 /*
2808 * Mutex was contended, block until it's
2809 * released and try again
2810 */
Chris Mason56bec292009-03-13 10:10:06 -04002811 mutex_lock(&head->mutex);
2812 mutex_unlock(&head->mutex);
2813
2814 btrfs_put_delayed_ref(ref);
Chris Mason1887be62009-03-13 10:11:24 -04002815 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002816 goto again;
Liu Boc46effa2013-10-14 12:59:45 +08002817 } else {
2818 WARN_ON(1);
Chris Mason56bec292009-03-13 10:10:06 -04002819 }
2820 node = rb_next(node);
2821 }
2822 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002823 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002824 goto again;
2825 }
Chris Mason54aa1f42007-06-22 14:16:25 -04002826out:
Jan Schmidtedf39272012-06-28 18:04:55 +02002827 assert_qgroups_uptodate(trans);
Chris Masona28ec192007-03-06 20:08:01 -05002828 return 0;
2829}
2830
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002831int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
2832 struct btrfs_root *root,
2833 u64 bytenr, u64 num_bytes, u64 flags,
Josef Bacikb1c79e02013-05-09 13:49:30 -04002834 int level, int is_data)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002835{
2836 struct btrfs_delayed_extent_op *extent_op;
2837 int ret;
2838
Miao Xie78a61842012-11-21 02:21:28 +00002839 extent_op = btrfs_alloc_delayed_extent_op();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002840 if (!extent_op)
2841 return -ENOMEM;
2842
2843 extent_op->flags_to_set = flags;
2844 extent_op->update_flags = 1;
2845 extent_op->update_key = 0;
2846 extent_op->is_data = is_data ? 1 : 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002847 extent_op->level = level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002848
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002849 ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr,
2850 num_bytes, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002851 if (ret)
Miao Xie78a61842012-11-21 02:21:28 +00002852 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002853 return ret;
2854}
2855
2856static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
2857 struct btrfs_root *root,
2858 struct btrfs_path *path,
2859 u64 objectid, u64 offset, u64 bytenr)
2860{
2861 struct btrfs_delayed_ref_head *head;
2862 struct btrfs_delayed_ref_node *ref;
2863 struct btrfs_delayed_data_ref *data_ref;
2864 struct btrfs_delayed_ref_root *delayed_refs;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002865 int ret = 0;
2866
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002867 delayed_refs = &trans->transaction->delayed_refs;
2868 spin_lock(&delayed_refs->lock);
2869 head = btrfs_find_delayed_ref_head(trans, bytenr);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002870 if (!head) {
2871 spin_unlock(&delayed_refs->lock);
2872 return 0;
2873 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002874
2875 if (!mutex_trylock(&head->mutex)) {
2876 atomic_inc(&head->node.refs);
2877 spin_unlock(&delayed_refs->lock);
2878
David Sterbab3b4aa72011-04-21 01:20:15 +02002879 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002880
David Sterba8cc33e52011-05-02 15:29:25 +02002881 /*
2882 * Mutex was contended, block until it's released and let
2883 * caller try again
2884 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002885 mutex_lock(&head->mutex);
2886 mutex_unlock(&head->mutex);
2887 btrfs_put_delayed_ref(&head->node);
2888 return -EAGAIN;
2889 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002890 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002891
2892 spin_lock(&head->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002893 list_for_each_entry(ref, &head->ref_list, list) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002894 /* If it's a shared ref we know a cross reference exists */
2895 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) {
2896 ret = 1;
2897 break;
2898 }
2899
2900 data_ref = btrfs_delayed_node_to_data_ref(ref);
2901
2902 /*
2903 * If our ref doesn't match the one we're currently looking at
2904 * then we have a cross reference.
2905 */
2906 if (data_ref->root != root->root_key.objectid ||
2907 data_ref->objectid != objectid ||
2908 data_ref->offset != offset) {
2909 ret = 1;
2910 break;
2911 }
2912 }
2913 spin_unlock(&head->lock);
2914 mutex_unlock(&head->mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002915 return ret;
2916}
2917
2918static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
2919 struct btrfs_root *root,
2920 struct btrfs_path *path,
2921 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05002922{
2923 struct btrfs_root *extent_root = root->fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04002924 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002925 struct btrfs_extent_data_ref *ref;
2926 struct btrfs_extent_inline_ref *iref;
2927 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05002928 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002929 u32 item_size;
Yan Zhengf321e492008-07-30 09:26:11 -04002930 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05002931
Chris Masonbe20aa92007-12-17 20:14:01 -05002932 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04002933 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04002934 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05002935
Chris Masonbe20aa92007-12-17 20:14:01 -05002936 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2937 if (ret < 0)
2938 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002939 BUG_ON(ret == 0); /* Corruption */
Yan Zheng80ff3852008-10-30 14:20:02 -04002940
2941 ret = -ENOENT;
2942 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04002943 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002944
Zheng Yan31840ae2008-09-23 13:14:14 -04002945 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04002946 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002947 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05002948
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002949 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05002950 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002951
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002952 ret = 1;
2953 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2954#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2955 if (item_size < sizeof(*ei)) {
2956 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
2957 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002958 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002959#endif
2960 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2961
2962 if (item_size != sizeof(*ei) +
2963 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
2964 goto out;
2965
2966 if (btrfs_extent_generation(leaf, ei) <=
2967 btrfs_root_last_snapshot(&root->root_item))
2968 goto out;
2969
2970 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
2971 if (btrfs_extent_inline_ref_type(leaf, iref) !=
2972 BTRFS_EXTENT_DATA_REF_KEY)
2973 goto out;
2974
2975 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
2976 if (btrfs_extent_refs(leaf, ei) !=
2977 btrfs_extent_data_ref_count(leaf, ref) ||
2978 btrfs_extent_data_ref_root(leaf, ref) !=
2979 root->root_key.objectid ||
2980 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
2981 btrfs_extent_data_ref_offset(leaf, ref) != offset)
2982 goto out;
2983
Yan Zhengf321e492008-07-30 09:26:11 -04002984 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05002985out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002986 return ret;
2987}
2988
2989int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
2990 struct btrfs_root *root,
2991 u64 objectid, u64 offset, u64 bytenr)
2992{
2993 struct btrfs_path *path;
2994 int ret;
2995 int ret2;
2996
2997 path = btrfs_alloc_path();
2998 if (!path)
2999 return -ENOENT;
3000
3001 do {
3002 ret = check_committed_ref(trans, root, path, objectid,
3003 offset, bytenr);
3004 if (ret && ret != -ENOENT)
3005 goto out;
3006
3007 ret2 = check_delayed_ref(trans, root, path, objectid,
3008 offset, bytenr);
3009 } while (ret2 == -EAGAIN);
3010
3011 if (ret2 && ret2 != -ENOENT) {
3012 ret = ret2;
3013 goto out;
3014 }
3015
3016 if (ret != -ENOENT || ret2 != -ENOENT)
3017 ret = 0;
3018out:
Yan Zhengf321e492008-07-30 09:26:11 -04003019 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003020 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3021 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04003022 return ret;
3023}
3024
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003025static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05003026 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003027 struct extent_buffer *buf,
Josef Bacike339a6b2014-07-02 10:54:25 -07003028 int full_backref, int inc)
Zheng Yan31840ae2008-09-23 13:14:14 -04003029{
3030 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003031 u64 num_bytes;
3032 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003033 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04003034 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04003035 struct btrfs_key key;
3036 struct btrfs_file_extent_item *fi;
3037 int i;
3038 int level;
3039 int ret = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04003040 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003041 u64, u64, u64, u64, u64, u64, int);
Zheng Yan31840ae2008-09-23 13:14:14 -04003042
David Sterbafccb84c2014-09-29 23:53:21 +02003043
3044 if (btrfs_test_is_dummy_root(root))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04003045 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02003046
Zheng Yan31840ae2008-09-23 13:14:14 -04003047 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04003048 nritems = btrfs_header_nritems(buf);
3049 level = btrfs_header_level(buf);
3050
Miao Xie27cdeb72014-04-02 19:51:05 +08003051 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003052 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05003053
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003054 if (inc)
3055 process_func = btrfs_inc_extent_ref;
3056 else
3057 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003058
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003059 if (full_backref)
3060 parent = buf->start;
3061 else
3062 parent = 0;
3063
Zheng Yan31840ae2008-09-23 13:14:14 -04003064 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04003065 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003066 btrfs_item_key_to_cpu(buf, &key, i);
David Sterba962a2982014-06-04 18:41:45 +02003067 if (key.type != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04003068 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003069 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04003070 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003071 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04003072 BTRFS_FILE_EXTENT_INLINE)
3073 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003074 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3075 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04003076 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003077
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003078 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3079 key.offset -= btrfs_file_extent_offset(buf, fi);
3080 ret = process_func(trans, root, bytenr, num_bytes,
3081 parent, ref_root, key.objectid,
Josef Bacike339a6b2014-07-02 10:54:25 -07003082 key.offset, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003083 if (ret)
3084 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05003085 } else {
3086 bytenr = btrfs_node_blockptr(buf, i);
David Sterba707e8a02014-06-04 19:22:26 +02003087 num_bytes = root->nodesize;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003088 ret = process_func(trans, root, bytenr, num_bytes,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003089 parent, ref_root, level - 1, 0,
Josef Bacike339a6b2014-07-02 10:54:25 -07003090 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003091 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04003092 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04003093 }
3094 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003095 return 0;
3096fail:
Chris Mason54aa1f42007-06-22 14:16:25 -04003097 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05003098}
3099
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003100int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003101 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04003102{
Josef Bacike339a6b2014-07-02 10:54:25 -07003103 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003104}
Zheng Yan31840ae2008-09-23 13:14:14 -04003105
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003106int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003107 struct extent_buffer *buf, int full_backref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003108{
Josef Bacike339a6b2014-07-02 10:54:25 -07003109 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003110}
3111
Chris Mason9078a3e2007-04-26 16:46:15 -04003112static int write_one_cache_group(struct btrfs_trans_handle *trans,
3113 struct btrfs_root *root,
3114 struct btrfs_path *path,
3115 struct btrfs_block_group_cache *cache)
3116{
3117 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003118 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003119 unsigned long bi;
3120 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04003121
Chris Mason9078a3e2007-04-26 16:46:15 -04003122 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003123 if (ret) {
3124 if (ret > 0)
3125 ret = -ENOENT;
Chris Mason54aa1f42007-06-22 14:16:25 -04003126 goto fail;
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003127 }
Chris Mason5f39d392007-10-15 16:14:19 -04003128
3129 leaf = path->nodes[0];
3130 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3131 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3132 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -04003133fail:
Filipe Manana24b89d02015-04-25 18:31:05 +01003134 btrfs_release_path(path);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003135 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003136
3137}
3138
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003139static struct btrfs_block_group_cache *
3140next_block_group(struct btrfs_root *root,
3141 struct btrfs_block_group_cache *cache)
3142{
3143 struct rb_node *node;
Filipe Manana292cbd52014-11-26 15:28:50 +00003144
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003145 spin_lock(&root->fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003146
3147 /* If our block group was removed, we need a full search. */
3148 if (RB_EMPTY_NODE(&cache->cache_node)) {
3149 const u64 next_bytenr = cache->key.objectid + cache->key.offset;
3150
3151 spin_unlock(&root->fs_info->block_group_cache_lock);
3152 btrfs_put_block_group(cache);
3153 cache = btrfs_lookup_first_block_group(root->fs_info,
3154 next_bytenr);
3155 return cache;
3156 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003157 node = rb_next(&cache->cache_node);
3158 btrfs_put_block_group(cache);
3159 if (node) {
3160 cache = rb_entry(node, struct btrfs_block_group_cache,
3161 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00003162 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003163 } else
3164 cache = NULL;
3165 spin_unlock(&root->fs_info->block_group_cache_lock);
3166 return cache;
3167}
3168
Josef Bacik0af3d002010-06-21 14:48:16 -04003169static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3170 struct btrfs_trans_handle *trans,
3171 struct btrfs_path *path)
3172{
3173 struct btrfs_root *root = block_group->fs_info->tree_root;
3174 struct inode *inode = NULL;
3175 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05003176 int dcs = BTRFS_DC_ERROR;
David Sterbaf8c269d2015-01-16 17:21:12 +01003177 u64 num_pages = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003178 int retries = 0;
3179 int ret = 0;
3180
3181 /*
3182 * If this block group is smaller than 100 megs don't bother caching the
3183 * block group.
3184 */
3185 if (block_group->key.offset < (100 * 1024 * 1024)) {
3186 spin_lock(&block_group->lock);
3187 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3188 spin_unlock(&block_group->lock);
3189 return 0;
3190 }
3191
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003192 if (trans->aborted)
3193 return 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003194again:
3195 inode = lookup_free_space_inode(root, block_group, path);
3196 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3197 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02003198 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003199 goto out;
3200 }
3201
3202 if (IS_ERR(inode)) {
3203 BUG_ON(retries);
3204 retries++;
3205
3206 if (block_group->ro)
3207 goto out_free;
3208
3209 ret = create_free_space_inode(root, trans, block_group, path);
3210 if (ret)
3211 goto out_free;
3212 goto again;
3213 }
3214
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003215 /* We've already setup this transaction, go ahead and exit */
3216 if (block_group->cache_generation == trans->transid &&
3217 i_size_read(inode)) {
3218 dcs = BTRFS_DC_SETUP;
3219 goto out_put;
3220 }
3221
Josef Bacik0af3d002010-06-21 14:48:16 -04003222 /*
3223 * We want to set the generation to 0, that way if anything goes wrong
3224 * from here on out we know not to trust this cache when we load up next
3225 * time.
3226 */
3227 BTRFS_I(inode)->generation = 0;
3228 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003229 if (ret) {
3230 /*
3231 * So theoretically we could recover from this, simply set the
3232 * super cache generation to 0 so we know to invalidate the
3233 * cache, but then we'd have to keep track of the block groups
3234 * that fail this way so we know we _have_ to reset this cache
3235 * before the next commit or risk reading stale cache. So to
3236 * limit our exposure to horrible edge cases lets just abort the
3237 * transaction, this only happens in really bad situations
3238 * anyway.
3239 */
3240 btrfs_abort_transaction(trans, root, ret);
3241 goto out_put;
3242 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003243 WARN_ON(ret);
3244
3245 if (i_size_read(inode) > 0) {
Miao Xie7b61cd92013-05-13 13:55:09 +00003246 ret = btrfs_check_trunc_cache_free_space(root,
3247 &root->fs_info->global_block_rsv);
3248 if (ret)
3249 goto out_put;
3250
Chris Mason1bbc6212015-04-06 12:46:08 -07003251 ret = btrfs_truncate_free_space_cache(root, trans, NULL, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003252 if (ret)
3253 goto out_put;
3254 }
3255
3256 spin_lock(&block_group->lock);
Liu Bocf7c1ef2012-07-06 03:31:34 -06003257 if (block_group->cached != BTRFS_CACHE_FINISHED ||
Chris Masone4c88f02015-04-18 05:22:48 -07003258 !btrfs_test_opt(root, SPACE_CACHE)) {
Liu Bocf7c1ef2012-07-06 03:31:34 -06003259 /*
3260 * don't bother trying to write stuff out _if_
3261 * a) we're not cached,
3262 * b) we're with nospace_cache mount option.
3263 */
Josef Bacik2b209822010-12-03 13:17:53 -05003264 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04003265 spin_unlock(&block_group->lock);
3266 goto out_put;
3267 }
3268 spin_unlock(&block_group->lock);
3269
Josef Bacik6fc823b2012-08-06 13:46:38 -06003270 /*
3271 * Try to preallocate enough space based on how big the block group is.
3272 * Keep in mind this has to include any pinned space which could end up
3273 * taking up quite a bit since it's not folded into the other space
3274 * cache.
3275 */
David Sterbaf8c269d2015-01-16 17:21:12 +01003276 num_pages = div_u64(block_group->key.offset, 256 * 1024 * 1024);
Josef Bacik0af3d002010-06-21 14:48:16 -04003277 if (!num_pages)
3278 num_pages = 1;
3279
Josef Bacik0af3d002010-06-21 14:48:16 -04003280 num_pages *= 16;
3281 num_pages *= PAGE_CACHE_SIZE;
3282
Dongsheng Yange2d1f922015-02-06 10:26:52 -05003283 ret = btrfs_check_data_free_space(inode, num_pages, num_pages);
Josef Bacik0af3d002010-06-21 14:48:16 -04003284 if (ret)
3285 goto out_put;
3286
3287 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3288 num_pages, num_pages,
3289 &alloc_hint);
Josef Bacik2b209822010-12-03 13:17:53 -05003290 if (!ret)
3291 dcs = BTRFS_DC_SETUP;
Josef Bacik0af3d002010-06-21 14:48:16 -04003292 btrfs_free_reserved_data_space(inode, num_pages);
Josef Bacikc09544e2011-08-30 10:19:10 -04003293
Josef Bacik0af3d002010-06-21 14:48:16 -04003294out_put:
3295 iput(inode);
3296out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02003297 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003298out:
3299 spin_lock(&block_group->lock);
Josef Bacike65cbb92011-12-13 16:04:54 -05003300 if (!ret && dcs == BTRFS_DC_SETUP)
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003301 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05003302 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04003303 spin_unlock(&block_group->lock);
3304
3305 return ret;
3306}
3307
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003308int btrfs_setup_space_cache(struct btrfs_trans_handle *trans,
3309 struct btrfs_root *root)
3310{
3311 struct btrfs_block_group_cache *cache, *tmp;
3312 struct btrfs_transaction *cur_trans = trans->transaction;
3313 struct btrfs_path *path;
3314
3315 if (list_empty(&cur_trans->dirty_bgs) ||
3316 !btrfs_test_opt(root, SPACE_CACHE))
3317 return 0;
3318
3319 path = btrfs_alloc_path();
3320 if (!path)
3321 return -ENOMEM;
3322
3323 /* Could add new block groups, use _safe just in case */
3324 list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs,
3325 dirty_list) {
3326 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3327 cache_save_setup(cache, trans, path);
3328 }
3329
3330 btrfs_free_path(path);
3331 return 0;
3332}
3333
Chris Mason1bbc6212015-04-06 12:46:08 -07003334/*
3335 * transaction commit does final block group cache writeback during a
3336 * critical section where nothing is allowed to change the FS. This is
3337 * required in order for the cache to actually match the block group,
3338 * but can introduce a lot of latency into the commit.
3339 *
3340 * So, btrfs_start_dirty_block_groups is here to kick off block group
3341 * cache IO. There's a chance we'll have to redo some of it if the
3342 * block group changes again during the commit, but it greatly reduces
3343 * the commit latency by getting rid of the easy block groups while
3344 * we're still allowing others to join the commit.
3345 */
3346int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans,
3347 struct btrfs_root *root)
3348{
3349 struct btrfs_block_group_cache *cache;
3350 struct btrfs_transaction *cur_trans = trans->transaction;
3351 int ret = 0;
3352 int should_put;
3353 struct btrfs_path *path = NULL;
3354 LIST_HEAD(dirty);
3355 struct list_head *io = &cur_trans->io_bgs;
3356 int num_started = 0;
3357 int loops = 0;
3358
3359 spin_lock(&cur_trans->dirty_bgs_lock);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003360 if (list_empty(&cur_trans->dirty_bgs)) {
3361 spin_unlock(&cur_trans->dirty_bgs_lock);
3362 return 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003363 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003364 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Chris Mason1bbc6212015-04-06 12:46:08 -07003365 spin_unlock(&cur_trans->dirty_bgs_lock);
3366
3367again:
Chris Mason1bbc6212015-04-06 12:46:08 -07003368 /*
3369 * make sure all the block groups on our dirty list actually
3370 * exist
3371 */
3372 btrfs_create_pending_block_groups(trans, root);
3373
3374 if (!path) {
3375 path = btrfs_alloc_path();
3376 if (!path)
3377 return -ENOMEM;
3378 }
3379
Filipe Mananab58d1a92015-04-25 18:29:16 +01003380 /*
3381 * cache_write_mutex is here only to save us from balance or automatic
3382 * removal of empty block groups deleting this block group while we are
3383 * writing out the cache
3384 */
3385 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003386 while (!list_empty(&dirty)) {
3387 cache = list_first_entry(&dirty,
3388 struct btrfs_block_group_cache,
3389 dirty_list);
Chris Mason1bbc6212015-04-06 12:46:08 -07003390 /*
3391 * this can happen if something re-dirties a block
3392 * group that is already under IO. Just wait for it to
3393 * finish and then do it all again
3394 */
3395 if (!list_empty(&cache->io_list)) {
3396 list_del_init(&cache->io_list);
3397 btrfs_wait_cache_io(root, trans, cache,
3398 &cache->io_ctl, path,
3399 cache->key.objectid);
3400 btrfs_put_block_group(cache);
3401 }
3402
3403
3404 /*
3405 * btrfs_wait_cache_io uses the cache->dirty_list to decide
3406 * if it should update the cache_state. Don't delete
3407 * until after we wait.
3408 *
3409 * Since we're not running in the commit critical section
3410 * we need the dirty_bgs_lock to protect from update_block_group
3411 */
3412 spin_lock(&cur_trans->dirty_bgs_lock);
3413 list_del_init(&cache->dirty_list);
3414 spin_unlock(&cur_trans->dirty_bgs_lock);
3415
3416 should_put = 1;
3417
3418 cache_save_setup(cache, trans, path);
3419
3420 if (cache->disk_cache_state == BTRFS_DC_SETUP) {
3421 cache->io_ctl.inode = NULL;
3422 ret = btrfs_write_out_cache(root, trans, cache, path);
3423 if (ret == 0 && cache->io_ctl.inode) {
3424 num_started++;
3425 should_put = 0;
3426
3427 /*
3428 * the cache_write_mutex is protecting
3429 * the io_list
3430 */
3431 list_add_tail(&cache->io_list, io);
3432 } else {
3433 /*
3434 * if we failed to write the cache, the
3435 * generation will be bad and life goes on
3436 */
3437 ret = 0;
3438 }
3439 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003440 if (!ret) {
Chris Mason1bbc6212015-04-06 12:46:08 -07003441 ret = write_one_cache_group(trans, root, path, cache);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003442 /*
3443 * Our block group might still be attached to the list
3444 * of new block groups in the transaction handle of some
3445 * other task (struct btrfs_trans_handle->new_bgs). This
3446 * means its block group item isn't yet in the extent
3447 * tree. If this happens ignore the error, as we will
3448 * try again later in the critical section of the
3449 * transaction commit.
3450 */
3451 if (ret == -ENOENT) {
3452 ret = 0;
3453 spin_lock(&cur_trans->dirty_bgs_lock);
3454 if (list_empty(&cache->dirty_list)) {
3455 list_add_tail(&cache->dirty_list,
3456 &cur_trans->dirty_bgs);
3457 btrfs_get_block_group(cache);
3458 }
3459 spin_unlock(&cur_trans->dirty_bgs_lock);
3460 } else if (ret) {
3461 btrfs_abort_transaction(trans, root, ret);
3462 }
3463 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003464
3465 /* if its not on the io list, we need to put the block group */
3466 if (should_put)
3467 btrfs_put_block_group(cache);
3468
3469 if (ret)
3470 break;
Filipe Mananab58d1a92015-04-25 18:29:16 +01003471
3472 /*
3473 * Avoid blocking other tasks for too long. It might even save
3474 * us from writing caches for block groups that are going to be
3475 * removed.
3476 */
3477 mutex_unlock(&trans->transaction->cache_write_mutex);
3478 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003479 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003480 mutex_unlock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003481
3482 /*
3483 * go through delayed refs for all the stuff we've just kicked off
3484 * and then loop back (just once)
3485 */
3486 ret = btrfs_run_delayed_refs(trans, root, 0);
3487 if (!ret && loops == 0) {
3488 loops++;
3489 spin_lock(&cur_trans->dirty_bgs_lock);
3490 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003491 /*
3492 * dirty_bgs_lock protects us from concurrent block group
3493 * deletes too (not just cache_write_mutex).
3494 */
3495 if (!list_empty(&dirty)) {
3496 spin_unlock(&cur_trans->dirty_bgs_lock);
3497 goto again;
3498 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003499 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Mason1bbc6212015-04-06 12:46:08 -07003500 }
3501
3502 btrfs_free_path(path);
3503 return ret;
3504}
3505
Chris Mason96b51792007-10-15 16:15:19 -04003506int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
3507 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04003508{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003509 struct btrfs_block_group_cache *cache;
Josef Bacikce93ec52014-11-17 15:45:48 -05003510 struct btrfs_transaction *cur_trans = trans->transaction;
3511 int ret = 0;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003512 int should_put;
Chris Mason9078a3e2007-04-26 16:46:15 -04003513 struct btrfs_path *path;
Chris Mason1bbc6212015-04-06 12:46:08 -07003514 struct list_head *io = &cur_trans->io_bgs;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003515 int num_started = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003516
3517 path = btrfs_alloc_path();
3518 if (!path)
3519 return -ENOMEM;
3520
Josef Bacikce93ec52014-11-17 15:45:48 -05003521 /*
3522 * We don't need the lock here since we are protected by the transaction
3523 * commit. We want to do the cache_save_setup first and then run the
3524 * delayed refs to make sure we have the best chance at doing this all
3525 * in one shot.
3526 */
3527 while (!list_empty(&cur_trans->dirty_bgs)) {
3528 cache = list_first_entry(&cur_trans->dirty_bgs,
3529 struct btrfs_block_group_cache,
3530 dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003531
3532 /*
3533 * this can happen if cache_save_setup re-dirties a block
3534 * group that is already under IO. Just wait for it to
3535 * finish and then do it all again
3536 */
3537 if (!list_empty(&cache->io_list)) {
3538 list_del_init(&cache->io_list);
3539 btrfs_wait_cache_io(root, trans, cache,
3540 &cache->io_ctl, path,
3541 cache->key.objectid);
3542 btrfs_put_block_group(cache);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003543 }
3544
Chris Mason1bbc6212015-04-06 12:46:08 -07003545 /*
3546 * don't remove from the dirty list until after we've waited
3547 * on any pending IO
3548 */
Josef Bacikce93ec52014-11-17 15:45:48 -05003549 list_del_init(&cache->dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003550 should_put = 1;
3551
Chris Mason1bbc6212015-04-06 12:46:08 -07003552 cache_save_setup(cache, trans, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003553
Josef Bacikce93ec52014-11-17 15:45:48 -05003554 if (!ret)
Chris Masonc9dc4c62015-04-04 17:14:42 -07003555 ret = btrfs_run_delayed_refs(trans, root, (unsigned long) -1);
3556
3557 if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) {
3558 cache->io_ctl.inode = NULL;
3559 ret = btrfs_write_out_cache(root, trans, cache, path);
3560 if (ret == 0 && cache->io_ctl.inode) {
3561 num_started++;
3562 should_put = 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003563 list_add_tail(&cache->io_list, io);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003564 } else {
3565 /*
3566 * if we failed to write the cache, the
3567 * generation will be bad and life goes on
3568 */
3569 ret = 0;
3570 }
3571 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003572 if (!ret) {
Josef Bacikce93ec52014-11-17 15:45:48 -05003573 ret = write_one_cache_group(trans, root, path, cache);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003574 if (ret)
3575 btrfs_abort_transaction(trans, root, ret);
3576 }
Chris Masonc9dc4c62015-04-04 17:14:42 -07003577
3578 /* if its not on the io list, we need to put the block group */
3579 if (should_put)
3580 btrfs_put_block_group(cache);
3581 }
3582
Chris Mason1bbc6212015-04-06 12:46:08 -07003583 while (!list_empty(io)) {
3584 cache = list_first_entry(io, struct btrfs_block_group_cache,
Chris Masonc9dc4c62015-04-04 17:14:42 -07003585 io_list);
3586 list_del_init(&cache->io_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003587 btrfs_wait_cache_io(root, trans, cache,
3588 &cache->io_ctl, path, cache->key.objectid);
Josef Bacik0af3d002010-06-21 14:48:16 -04003589 btrfs_put_block_group(cache);
3590 }
3591
Chris Mason9078a3e2007-04-26 16:46:15 -04003592 btrfs_free_path(path);
Josef Bacikce93ec52014-11-17 15:45:48 -05003593 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003594}
3595
Yan Zhengd2fb3432008-12-11 16:30:39 -05003596int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
3597{
3598 struct btrfs_block_group_cache *block_group;
3599 int readonly = 0;
3600
3601 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
3602 if (!block_group || block_group->ro)
3603 readonly = 1;
3604 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04003605 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003606 return readonly;
3607}
3608
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003609static const char *alloc_name(u64 flags)
3610{
3611 switch (flags) {
3612 case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA:
3613 return "mixed";
3614 case BTRFS_BLOCK_GROUP_METADATA:
3615 return "metadata";
3616 case BTRFS_BLOCK_GROUP_DATA:
3617 return "data";
3618 case BTRFS_BLOCK_GROUP_SYSTEM:
3619 return "system";
3620 default:
3621 WARN_ON(1);
3622 return "invalid-combination";
3623 };
3624}
3625
Chris Mason593060d2008-03-25 16:50:33 -04003626static int update_space_info(struct btrfs_fs_info *info, u64 flags,
3627 u64 total_bytes, u64 bytes_used,
3628 struct btrfs_space_info **space_info)
3629{
3630 struct btrfs_space_info *found;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003631 int i;
3632 int factor;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003633 int ret;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003634
3635 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
3636 BTRFS_BLOCK_GROUP_RAID10))
3637 factor = 2;
3638 else
3639 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04003640
3641 found = __find_space_info(info, flags);
3642 if (found) {
Josef Bacik25179202008-10-29 14:49:05 -04003643 spin_lock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003644 found->total_bytes += total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003645 found->disk_total += total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003646 found->bytes_used += bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003647 found->disk_used += bytes_used * factor;
Filipe Manana2e6e5182015-05-12 00:28:11 +01003648 if (total_bytes > 0)
3649 found->full = 0;
Josef Bacik25179202008-10-29 14:49:05 -04003650 spin_unlock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003651 *space_info = found;
3652 return 0;
3653 }
Yan Zhengc146afa2008-11-12 14:34:12 -05003654 found = kzalloc(sizeof(*found), GFP_NOFS);
Chris Mason593060d2008-03-25 16:50:33 -04003655 if (!found)
3656 return -ENOMEM;
3657
Tejun Heo908c7f12014-09-08 09:51:29 +09003658 ret = percpu_counter_init(&found->total_bytes_pinned, 0, GFP_KERNEL);
Josef Bacikb150a4f2013-06-19 15:00:04 -04003659 if (ret) {
3660 kfree(found);
3661 return ret;
3662 }
3663
Jeff Mahoneyc1895442014-05-27 12:59:57 -04003664 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
Yan, Zhengb742bb82010-05-16 10:46:24 -04003665 INIT_LIST_HEAD(&found->block_groups[i]);
Josef Bacik80eb2342008-10-29 14:49:05 -04003666 init_rwsem(&found->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003667 spin_lock_init(&found->lock);
Ilya Dryomov52ba6922012-01-16 22:04:47 +02003668 found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
Chris Mason593060d2008-03-25 16:50:33 -04003669 found->total_bytes = total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003670 found->disk_total = total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003671 found->bytes_used = bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003672 found->disk_used = bytes_used * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003673 found->bytes_pinned = 0;
Zheng Yane8569812008-09-26 10:05:48 -04003674 found->bytes_reserved = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003675 found->bytes_readonly = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003676 found->bytes_may_use = 0;
Filipe Manana2e6e5182015-05-12 00:28:11 +01003677 if (total_bytes > 0)
3678 found->full = 0;
3679 else
3680 found->full = 1;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003681 found->force_alloc = CHUNK_ALLOC_NO_FORCE;
Josef Bacik6d741192011-04-11 20:20:11 -04003682 found->chunk_alloc = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003683 found->flush = 0;
3684 init_waitqueue_head(&found->wait);
Josef Bacik633c0aa2014-10-31 09:49:34 -04003685 INIT_LIST_HEAD(&found->ro_bgs);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003686
3687 ret = kobject_init_and_add(&found->kobj, &space_info_ktype,
3688 info->space_info_kobj, "%s",
3689 alloc_name(found->flags));
3690 if (ret) {
3691 kfree(found);
3692 return ret;
3693 }
3694
Chris Mason593060d2008-03-25 16:50:33 -04003695 *space_info = found;
Chris Mason4184ea72009-03-10 12:39:20 -04003696 list_add_rcu(&found->list, &info->space_info);
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003697 if (flags & BTRFS_BLOCK_GROUP_DATA)
3698 info->data_sinfo = found;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003699
3700 return ret;
Chris Mason593060d2008-03-25 16:50:33 -04003701}
3702
Chris Mason8790d502008-04-03 16:29:03 -04003703static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3704{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003705 u64 extra_flags = chunk_to_extended(flags) &
3706 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003707
Miao Xiede98ced2013-01-29 10:13:12 +00003708 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003709 if (flags & BTRFS_BLOCK_GROUP_DATA)
3710 fs_info->avail_data_alloc_bits |= extra_flags;
3711 if (flags & BTRFS_BLOCK_GROUP_METADATA)
3712 fs_info->avail_metadata_alloc_bits |= extra_flags;
3713 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3714 fs_info->avail_system_alloc_bits |= extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003715 write_sequnlock(&fs_info->profiles_lock);
Chris Mason8790d502008-04-03 16:29:03 -04003716}
Chris Mason593060d2008-03-25 16:50:33 -04003717
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003718/*
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003719 * returns target flags in extended format or 0 if restripe for this
3720 * chunk_type is not in progress
Ilya Dryomovc6664b42012-04-12 16:03:56 -04003721 *
3722 * should be called with either volume_mutex or balance_lock held
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003723 */
3724static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
3725{
3726 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3727 u64 target = 0;
3728
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003729 if (!bctl)
3730 return 0;
3731
3732 if (flags & BTRFS_BLOCK_GROUP_DATA &&
3733 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3734 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
3735 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
3736 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3737 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
3738 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
3739 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3740 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
3741 }
3742
3743 return target;
3744}
3745
3746/*
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003747 * @flags: available profiles in extended format (see ctree.h)
3748 *
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003749 * Returns reduced profile in chunk format. If profile changing is in
3750 * progress (either running or paused) picks the target profile (if it's
3751 * already available), otherwise falls back to plain reducing.
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003752 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003753static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04003754{
Miao Xie95669972014-07-24 11:37:14 +08003755 u64 num_devices = root->fs_info->fs_devices->rw_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003756 u64 target;
David Woodhouse53b381b2013-01-29 18:40:14 -05003757 u64 tmp;
Chris Masona061fc82008-05-07 11:43:44 -04003758
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003759 /*
3760 * see if restripe for this chunk_type is in progress, if so
3761 * try to reduce to the target profile
3762 */
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003763 spin_lock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003764 target = get_restripe_target(root->fs_info, flags);
3765 if (target) {
3766 /* pick target profile only if it's already available */
3767 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003768 spin_unlock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003769 return extended_to_chunk(target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003770 }
3771 }
3772 spin_unlock(&root->fs_info->balance_lock);
3773
David Woodhouse53b381b2013-01-29 18:40:14 -05003774 /* First, mask out the RAID levels which aren't possible */
Chris Masona061fc82008-05-07 11:43:44 -04003775 if (num_devices == 1)
David Woodhouse53b381b2013-01-29 18:40:14 -05003776 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0 |
3777 BTRFS_BLOCK_GROUP_RAID5);
3778 if (num_devices < 3)
3779 flags &= ~BTRFS_BLOCK_GROUP_RAID6;
Chris Masona061fc82008-05-07 11:43:44 -04003780 if (num_devices < 4)
3781 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
3782
David Woodhouse53b381b2013-01-29 18:40:14 -05003783 tmp = flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID0 |
3784 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID5 |
3785 BTRFS_BLOCK_GROUP_RAID6 | BTRFS_BLOCK_GROUP_RAID10);
3786 flags &= ~tmp;
Chris Masonec44a352008-04-28 15:29:52 -04003787
David Woodhouse53b381b2013-01-29 18:40:14 -05003788 if (tmp & BTRFS_BLOCK_GROUP_RAID6)
3789 tmp = BTRFS_BLOCK_GROUP_RAID6;
3790 else if (tmp & BTRFS_BLOCK_GROUP_RAID5)
3791 tmp = BTRFS_BLOCK_GROUP_RAID5;
3792 else if (tmp & BTRFS_BLOCK_GROUP_RAID10)
3793 tmp = BTRFS_BLOCK_GROUP_RAID10;
3794 else if (tmp & BTRFS_BLOCK_GROUP_RAID1)
3795 tmp = BTRFS_BLOCK_GROUP_RAID1;
3796 else if (tmp & BTRFS_BLOCK_GROUP_RAID0)
3797 tmp = BTRFS_BLOCK_GROUP_RAID0;
Chris Masonec44a352008-04-28 15:29:52 -04003798
David Woodhouse53b381b2013-01-29 18:40:14 -05003799 return extended_to_chunk(flags | tmp);
Chris Masonec44a352008-04-28 15:29:52 -04003800}
3801
Filipe Mananaf8213bd2014-04-24 15:15:29 +01003802static u64 get_alloc_profile(struct btrfs_root *root, u64 orig_flags)
Josef Bacik6a632092009-02-20 11:00:09 -05003803{
Miao Xiede98ced2013-01-29 10:13:12 +00003804 unsigned seq;
Filipe Mananaf8213bd2014-04-24 15:15:29 +01003805 u64 flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003806
3807 do {
Filipe Mananaf8213bd2014-04-24 15:15:29 +01003808 flags = orig_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003809 seq = read_seqbegin(&root->fs_info->profiles_lock);
3810
3811 if (flags & BTRFS_BLOCK_GROUP_DATA)
3812 flags |= root->fs_info->avail_data_alloc_bits;
3813 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3814 flags |= root->fs_info->avail_system_alloc_bits;
3815 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
3816 flags |= root->fs_info->avail_metadata_alloc_bits;
3817 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02003818
Yan, Zhengb742bb82010-05-16 10:46:24 -04003819 return btrfs_reduce_alloc_profile(root, flags);
3820}
Josef Bacik6a632092009-02-20 11:00:09 -05003821
Miao Xie6d07bce2011-01-05 10:07:31 +00003822u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
Yan, Zhengb742bb82010-05-16 10:46:24 -04003823{
3824 u64 flags;
David Woodhouse53b381b2013-01-29 18:40:14 -05003825 u64 ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003826
Yan, Zhengb742bb82010-05-16 10:46:24 -04003827 if (data)
3828 flags = BTRFS_BLOCK_GROUP_DATA;
3829 else if (root == root->fs_info->chunk_root)
3830 flags = BTRFS_BLOCK_GROUP_SYSTEM;
3831 else
3832 flags = BTRFS_BLOCK_GROUP_METADATA;
3833
David Woodhouse53b381b2013-01-29 18:40:14 -05003834 ret = get_alloc_profile(root, flags);
3835 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003836}
3837
Josef Bacik6a632092009-02-20 11:00:09 -05003838/*
3839 * This will check the space that the inode allocates from to make sure we have
3840 * enough space for bytes.
3841 */
Dongsheng Yange2d1f922015-02-06 10:26:52 -05003842int btrfs_check_data_free_space(struct inode *inode, u64 bytes, u64 write_bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003843{
3844 struct btrfs_space_info *data_sinfo;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003845 struct btrfs_root *root = BTRFS_I(inode)->root;
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003846 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacikab6e24102010-03-19 14:38:13 +00003847 u64 used;
Zhao Lei94b947b2015-02-14 13:23:45 +08003848 int ret = 0;
Zhao Leic99f1b02015-03-02 19:32:20 +08003849 int need_commit = 2;
3850 int have_pinned_space;
Josef Bacik6a632092009-02-20 11:00:09 -05003851
3852 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00003853 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05003854
Miao Xie9dced182013-10-25 17:33:36 +08003855 if (btrfs_is_free_space_inode(inode)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08003856 need_commit = 0;
Miao Xie9dced182013-10-25 17:33:36 +08003857 ASSERT(current->journal_info);
Josef Bacik0af3d002010-06-21 14:48:16 -04003858 }
3859
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003860 data_sinfo = fs_info->data_sinfo;
Chris Mason33b4d472009-09-22 14:45:50 -04003861 if (!data_sinfo)
3862 goto alloc;
3863
Josef Bacik6a632092009-02-20 11:00:09 -05003864again:
3865 /* make sure we have enough space to handle the data first */
3866 spin_lock(&data_sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003867 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
3868 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
3869 data_sinfo->bytes_may_use;
Josef Bacikab6e24102010-03-19 14:38:13 +00003870
3871 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003872 struct btrfs_trans_handle *trans;
3873
Josef Bacik6a632092009-02-20 11:00:09 -05003874 /*
3875 * if we don't have enough free bytes in this space then we need
3876 * to alloc a new chunk.
3877 */
Zhao Leib9fd47c2015-02-09 14:40:20 +08003878 if (!data_sinfo->full) {
Josef Bacik6a632092009-02-20 11:00:09 -05003879 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05003880
Chris Mason0e4f8f82011-04-15 16:05:44 -04003881 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05003882 spin_unlock(&data_sinfo->lock);
Chris Mason33b4d472009-09-22 14:45:50 -04003883alloc:
Josef Bacik6a632092009-02-20 11:00:09 -05003884 alloc_target = btrfs_get_alloc_profile(root, 1);
Miao Xie9dced182013-10-25 17:33:36 +08003885 /*
3886 * It is ugly that we don't call nolock join
3887 * transaction for the free space inode case here.
3888 * But it is safe because we only do the data space
3889 * reservation for the free space cache in the
3890 * transaction context, the common join transaction
3891 * just increase the counter of the current transaction
3892 * handler, doesn't try to acquire the trans_lock of
3893 * the fs.
3894 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003895 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003896 if (IS_ERR(trans))
3897 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05003898
3899 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0e4f8f82011-04-15 16:05:44 -04003900 alloc_target,
3901 CHUNK_ALLOC_NO_FORCE);
Josef Bacik6a632092009-02-20 11:00:09 -05003902 btrfs_end_transaction(trans, root);
Miao Xied52a5b52011-01-05 10:07:18 +00003903 if (ret < 0) {
3904 if (ret != -ENOSPC)
3905 return ret;
Zhao Leic99f1b02015-03-02 19:32:20 +08003906 else {
3907 have_pinned_space = 1;
Miao Xied52a5b52011-01-05 10:07:18 +00003908 goto commit_trans;
Zhao Leic99f1b02015-03-02 19:32:20 +08003909 }
Miao Xied52a5b52011-01-05 10:07:18 +00003910 }
Chris Mason33b4d472009-09-22 14:45:50 -04003911
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003912 if (!data_sinfo)
3913 data_sinfo = fs_info->data_sinfo;
3914
Josef Bacik6a632092009-02-20 11:00:09 -05003915 goto again;
3916 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003917
3918 /*
Josef Bacikb150a4f2013-06-19 15:00:04 -04003919 * If we don't have enough pinned space to deal with this
Zhao Lei94b947b2015-02-14 13:23:45 +08003920 * allocation, and no removed chunk in current transaction,
3921 * don't bother committing the transaction.
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003922 */
Zhao Leic99f1b02015-03-02 19:32:20 +08003923 have_pinned_space = percpu_counter_compare(
3924 &data_sinfo->total_bytes_pinned,
3925 used + bytes - data_sinfo->total_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05003926 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003927
3928 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00003929commit_trans:
Zhao Leic99f1b02015-03-02 19:32:20 +08003930 if (need_commit &&
Josef Bacika4abeea2011-04-11 17:25:13 -04003931 !atomic_read(&root->fs_info->open_ioctl_trans)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08003932 need_commit--;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003933
Zhao Lei9a4e7272015-04-09 12:34:43 +08003934 if (need_commit > 0)
3935 btrfs_wait_ordered_roots(fs_info, -1);
3936
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003937 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003938 if (IS_ERR(trans))
3939 return PTR_ERR(trans);
Zhao Leic99f1b02015-03-02 19:32:20 +08003940 if (have_pinned_space >= 0 ||
3941 trans->transaction->have_free_bgs ||
3942 need_commit > 0) {
Zhao Lei94b947b2015-02-14 13:23:45 +08003943 ret = btrfs_commit_transaction(trans, root);
3944 if (ret)
3945 return ret;
Zhao Leid7c15172015-02-26 10:49:20 +08003946 /*
3947 * make sure that all running delayed iput are
3948 * done
3949 */
3950 down_write(&root->fs_info->delayed_iput_sem);
3951 up_write(&root->fs_info->delayed_iput_sem);
Zhao Lei94b947b2015-02-14 13:23:45 +08003952 goto again;
3953 } else {
3954 btrfs_end_transaction(trans, root);
3955 }
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003956 }
3957
Jeff Mahoneycab45e22013-10-16 16:27:01 -04003958 trace_btrfs_space_reservation(root->fs_info,
3959 "space_info:enospc",
3960 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05003961 return -ENOSPC;
3962 }
Dongsheng Yange2d1f922015-02-06 10:26:52 -05003963 ret = btrfs_qgroup_reserve(root, write_bytes);
Dongsheng Yang237c0e92014-12-29 06:23:05 -05003964 if (ret)
3965 goto out;
Josef Bacik6a632092009-02-20 11:00:09 -05003966 data_sinfo->bytes_may_use += bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05003967 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04003968 data_sinfo->flags, bytes, 1);
Dongsheng Yang237c0e92014-12-29 06:23:05 -05003969out:
Josef Bacik6a632092009-02-20 11:00:09 -05003970 spin_unlock(&data_sinfo->lock);
3971
Dongsheng Yang237c0e92014-12-29 06:23:05 -05003972 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003973}
3974
3975/*
Josef Bacikfb25e912011-07-26 17:00:46 -04003976 * Called if we need to clear a data reservation for this inode.
Josef Bacik6a632092009-02-20 11:00:09 -05003977 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003978void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003979{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003980 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003981 struct btrfs_space_info *data_sinfo;
3982
3983 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00003984 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05003985
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003986 data_sinfo = root->fs_info->data_sinfo;
Josef Bacik6a632092009-02-20 11:00:09 -05003987 spin_lock(&data_sinfo->lock);
Josef Bacik7ee9e442013-06-21 16:37:03 -04003988 WARN_ON(data_sinfo->bytes_may_use < bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05003989 data_sinfo->bytes_may_use -= bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05003990 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04003991 data_sinfo->flags, bytes, 0);
Josef Bacik6a632092009-02-20 11:00:09 -05003992 spin_unlock(&data_sinfo->lock);
3993}
3994
Josef Bacik97e728d2009-04-21 17:40:57 -04003995static void force_metadata_allocation(struct btrfs_fs_info *info)
3996{
3997 struct list_head *head = &info->space_info;
3998 struct btrfs_space_info *found;
3999
4000 rcu_read_lock();
4001 list_for_each_entry_rcu(found, head, list) {
4002 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004003 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04004004 }
4005 rcu_read_unlock();
4006}
4007
Miao Xie3c76cd82013-04-25 10:12:38 +00004008static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
4009{
4010 return (global->size << 1);
4011}
4012
Chris Masone5bc2452010-10-26 13:37:56 -04004013static int should_alloc_chunk(struct btrfs_root *root,
Josef Bacik698d0082012-09-12 14:08:47 -04004014 struct btrfs_space_info *sinfo, int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04004015{
Josef Bacikfb25e912011-07-26 17:00:46 -04004016 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zheng424499d2010-05-16 10:46:25 -04004017 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
Chris Mason0e4f8f82011-04-15 16:05:44 -04004018 u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved;
Chris Masone5bc2452010-10-26 13:37:56 -04004019 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04004020
Chris Mason0e4f8f82011-04-15 16:05:44 -04004021 if (force == CHUNK_ALLOC_FORCE)
4022 return 1;
4023
4024 /*
Josef Bacikfb25e912011-07-26 17:00:46 -04004025 * We need to take into account the global rsv because for all intents
4026 * and purposes it's used space. Don't worry about locking the
4027 * global_rsv, it doesn't change except when the transaction commits.
4028 */
Josef Bacik54338b52012-08-14 16:20:52 -04004029 if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA)
Miao Xie3c76cd82013-04-25 10:12:38 +00004030 num_allocated += calc_global_rsv_need_space(global_rsv);
Josef Bacikfb25e912011-07-26 17:00:46 -04004031
4032 /*
Chris Mason0e4f8f82011-04-15 16:05:44 -04004033 * in limited mode, we want to have some free space up to
4034 * about 1% of the FS size.
4035 */
4036 if (force == CHUNK_ALLOC_LIMITED) {
David Sterba6c417612011-04-13 15:41:04 +02004037 thresh = btrfs_super_total_bytes(root->fs_info->super_copy);
Chris Mason0e4f8f82011-04-15 16:05:44 -04004038 thresh = max_t(u64, 64 * 1024 * 1024,
4039 div_factor_fine(thresh, 1));
4040
4041 if (num_bytes - num_allocated < thresh)
4042 return 1;
4043 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004044
Josef Bacik698d0082012-09-12 14:08:47 -04004045 if (num_allocated + 2 * 1024 * 1024 < div_factor(num_bytes, 8))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04004046 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04004047 return 1;
4048}
4049
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004050static u64 get_profile_num_devs(struct btrfs_root *root, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004051{
4052 u64 num_dev;
4053
David Woodhouse53b381b2013-01-29 18:40:14 -05004054 if (type & (BTRFS_BLOCK_GROUP_RAID10 |
4055 BTRFS_BLOCK_GROUP_RAID0 |
4056 BTRFS_BLOCK_GROUP_RAID5 |
4057 BTRFS_BLOCK_GROUP_RAID6))
Liu Bo15d1ff82012-03-29 09:57:44 -04004058 num_dev = root->fs_info->fs_devices->rw_devices;
4059 else if (type & BTRFS_BLOCK_GROUP_RAID1)
4060 num_dev = 2;
4061 else
4062 num_dev = 1; /* DUP or single */
4063
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004064 return num_dev;
Liu Bo15d1ff82012-03-29 09:57:44 -04004065}
4066
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004067/*
4068 * If @is_allocation is true, reserve space in the system space info necessary
4069 * for allocating a chunk, otherwise if it's false, reserve space necessary for
4070 * removing a chunk.
4071 */
4072void check_system_chunk(struct btrfs_trans_handle *trans,
4073 struct btrfs_root *root,
Filipe Manana4617ea32015-06-09 17:48:21 +01004074 u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004075{
4076 struct btrfs_space_info *info;
4077 u64 left;
4078 u64 thresh;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004079 int ret = 0;
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004080 u64 num_devs;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004081
4082 /*
4083 * Needed because we can end up allocating a system chunk and for an
4084 * atomic and race free space reservation in the chunk block reserve.
4085 */
4086 ASSERT(mutex_is_locked(&root->fs_info->chunk_mutex));
Liu Bo15d1ff82012-03-29 09:57:44 -04004087
4088 info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4089 spin_lock(&info->lock);
4090 left = info->total_bytes - info->bytes_used - info->bytes_pinned -
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004091 info->bytes_reserved - info->bytes_readonly -
4092 info->bytes_may_use;
Liu Bo15d1ff82012-03-29 09:57:44 -04004093 spin_unlock(&info->lock);
4094
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004095 num_devs = get_profile_num_devs(root, type);
4096
4097 /* num_devs device items to update and 1 chunk item to add or remove */
Filipe Manana4617ea32015-06-09 17:48:21 +01004098 thresh = btrfs_calc_trunc_metadata_size(root, num_devs) +
4099 btrfs_calc_trans_metadata_size(root, 1);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004100
Liu Bo15d1ff82012-03-29 09:57:44 -04004101 if (left < thresh && btrfs_test_opt(root, ENOSPC_DEBUG)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00004102 btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu",
4103 left, thresh, type);
Liu Bo15d1ff82012-03-29 09:57:44 -04004104 dump_space_info(info, 0, 0);
4105 }
4106
4107 if (left < thresh) {
4108 u64 flags;
4109
4110 flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0);
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004111 /*
4112 * Ignore failure to create system chunk. We might end up not
4113 * needing it, as we might not need to COW all nodes/leafs from
4114 * the paths we visit in the chunk tree (they were already COWed
4115 * or created in the current transaction for example).
4116 */
4117 ret = btrfs_alloc_chunk(trans, root, flags);
4118 }
4119
4120 if (!ret) {
4121 ret = btrfs_block_rsv_add(root->fs_info->chunk_root,
4122 &root->fs_info->chunk_block_rsv,
4123 thresh, BTRFS_RESERVE_NO_FLUSH);
4124 if (!ret)
4125 trans->chunk_bytes_reserved += thresh;
Liu Bo15d1ff82012-03-29 09:57:44 -04004126 }
4127}
4128
Chris Mason6324fbf2008-03-24 15:01:59 -04004129static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Josef Bacik698d0082012-09-12 14:08:47 -04004130 struct btrfs_root *extent_root, u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04004131{
4132 struct btrfs_space_info *space_info;
Josef Bacik97e728d2009-04-21 17:40:57 -04004133 struct btrfs_fs_info *fs_info = extent_root->fs_info;
Josef Bacik6d741192011-04-11 20:20:11 -04004134 int wait_for_alloc = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05004135 int ret = 0;
4136
Josef Bacikc6b305a2012-12-18 09:16:16 -05004137 /* Don't re-enter if we're already allocating a chunk */
4138 if (trans->allocating_chunk)
4139 return -ENOSPC;
4140
Chris Mason6324fbf2008-03-24 15:01:59 -04004141 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04004142 if (!space_info) {
4143 ret = update_space_info(extent_root->fs_info, flags,
4144 0, 0, &space_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004145 BUG_ON(ret); /* -ENOMEM */
Chris Mason593060d2008-03-25 16:50:33 -04004146 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004147 BUG_ON(!space_info); /* Logic error */
Chris Mason6324fbf2008-03-24 15:01:59 -04004148
Josef Bacik6d741192011-04-11 20:20:11 -04004149again:
Josef Bacik25179202008-10-29 14:49:05 -04004150 spin_lock(&space_info->lock);
Miao Xie9e622d62012-01-26 15:01:12 -05004151 if (force < space_info->force_alloc)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004152 force = space_info->force_alloc;
Josef Bacik25179202008-10-29 14:49:05 -04004153 if (space_info->full) {
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01004154 if (should_alloc_chunk(extent_root, space_info, force))
4155 ret = -ENOSPC;
4156 else
4157 ret = 0;
Josef Bacik25179202008-10-29 14:49:05 -04004158 spin_unlock(&space_info->lock);
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01004159 return ret;
Josef Bacik25179202008-10-29 14:49:05 -04004160 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004161
Josef Bacik698d0082012-09-12 14:08:47 -04004162 if (!should_alloc_chunk(extent_root, space_info, force)) {
Josef Bacik25179202008-10-29 14:49:05 -04004163 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04004164 return 0;
4165 } else if (space_info->chunk_alloc) {
4166 wait_for_alloc = 1;
4167 } else {
4168 space_info->chunk_alloc = 1;
Josef Bacik25179202008-10-29 14:49:05 -04004169 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004170
Josef Bacik25179202008-10-29 14:49:05 -04004171 spin_unlock(&space_info->lock);
4172
Josef Bacik6d741192011-04-11 20:20:11 -04004173 mutex_lock(&fs_info->chunk_mutex);
4174
4175 /*
4176 * The chunk_mutex is held throughout the entirety of a chunk
4177 * allocation, so once we've acquired the chunk_mutex we know that the
4178 * other guy is done and we need to recheck and see if we should
4179 * allocate.
4180 */
4181 if (wait_for_alloc) {
4182 mutex_unlock(&fs_info->chunk_mutex);
4183 wait_for_alloc = 0;
4184 goto again;
4185 }
4186
Josef Bacikc6b305a2012-12-18 09:16:16 -05004187 trans->allocating_chunk = true;
4188
Josef Bacik97e728d2009-04-21 17:40:57 -04004189 /*
Josef Bacik67377732010-09-16 16:19:09 -04004190 * If we have mixed data/metadata chunks we want to make sure we keep
4191 * allocating mixed chunks instead of individual chunks.
4192 */
4193 if (btrfs_mixed_space_info(space_info))
4194 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
4195
4196 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04004197 * if we're doing a data chunk, go ahead and make sure that
4198 * we keep a reasonable number of metadata chunks allocated in the
4199 * FS as well.
4200 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04004201 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04004202 fs_info->data_chunk_allocations++;
4203 if (!(fs_info->data_chunk_allocations %
4204 fs_info->metadata_ratio))
4205 force_metadata_allocation(fs_info);
4206 }
4207
Liu Bo15d1ff82012-03-29 09:57:44 -04004208 /*
4209 * Check if we have enough space in SYSTEM chunk because we may need
4210 * to update devices.
4211 */
Filipe Manana4617ea32015-06-09 17:48:21 +01004212 check_system_chunk(trans, extent_root, flags);
Liu Bo15d1ff82012-03-29 09:57:44 -04004213
Yan Zheng2b820322008-11-17 21:11:30 -05004214 ret = btrfs_alloc_chunk(trans, extent_root, flags);
Josef Bacikc6b305a2012-12-18 09:16:16 -05004215 trans->allocating_chunk = false;
Mark Fasheh92b8e8972011-07-12 10:57:59 -07004216
Josef Bacik9ed74f22009-09-11 16:12:44 -04004217 spin_lock(&space_info->lock);
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004218 if (ret < 0 && ret != -ENOSPC)
4219 goto out;
Chris Masond3977122009-01-05 21:25:51 -05004220 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04004221 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04004222 else
4223 ret = 1;
Josef Bacik6d741192011-04-11 20:20:11 -04004224
Chris Mason0e4f8f82011-04-15 16:05:44 -04004225 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004226out:
Josef Bacik6d741192011-04-11 20:20:11 -04004227 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004228 spin_unlock(&space_info->lock);
Dan Carpentera25c75d2012-04-18 09:59:29 +03004229 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana00d80e32015-07-20 14:56:20 +01004230 /*
4231 * When we allocate a new chunk we reserve space in the chunk block
4232 * reserve to make sure we can COW nodes/leafs in the chunk tree or
4233 * add new nodes/leafs to it if we end up needing to do it when
4234 * inserting the chunk item and updating device items as part of the
4235 * second phase of chunk allocation, performed by
4236 * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a
4237 * large number of new block groups to create in our transaction
4238 * handle's new_bgs list to avoid exhausting the chunk block reserve
4239 * in extreme cases - like having a single transaction create many new
4240 * block groups when starting to write out the free space caches of all
4241 * the block groups that were made dirty during the lifetime of the
4242 * transaction.
4243 */
4244 if (trans->chunk_bytes_reserved >= (2 * 1024 * 1024ull)) {
4245 btrfs_create_pending_block_groups(trans, trans->root);
4246 btrfs_trans_release_chunk_metadata(trans);
4247 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04004248 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04004249}
4250
Josef Bacika80c8dc2012-09-06 16:59:33 -04004251static int can_overcommit(struct btrfs_root *root,
4252 struct btrfs_space_info *space_info, u64 bytes,
Miao Xie08e007d2012-10-16 11:33:38 +00004253 enum btrfs_reserve_flush_enum flush)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004254{
Josef Bacik96f1bb52013-01-30 17:02:51 -05004255 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004256 u64 profile = btrfs_get_alloc_profile(root, 0);
Miao Xie3c76cd82013-04-25 10:12:38 +00004257 u64 space_size;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004258 u64 avail;
4259 u64 used;
4260
4261 used = space_info->bytes_used + space_info->bytes_reserved +
Josef Bacik96f1bb52013-01-30 17:02:51 -05004262 space_info->bytes_pinned + space_info->bytes_readonly;
4263
Josef Bacik96f1bb52013-01-30 17:02:51 -05004264 /*
4265 * We only want to allow over committing if we have lots of actual space
4266 * free, but if we don't have enough space to handle the global reserve
4267 * space then we could end up having a real enospc problem when trying
4268 * to allocate a chunk or some other such important allocation.
4269 */
Miao Xie3c76cd82013-04-25 10:12:38 +00004270 spin_lock(&global_rsv->lock);
4271 space_size = calc_global_rsv_need_space(global_rsv);
4272 spin_unlock(&global_rsv->lock);
4273 if (used + space_size >= space_info->total_bytes)
Josef Bacik96f1bb52013-01-30 17:02:51 -05004274 return 0;
4275
4276 used += space_info->bytes_may_use;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004277
4278 spin_lock(&root->fs_info->free_chunk_lock);
4279 avail = root->fs_info->free_chunk_space;
4280 spin_unlock(&root->fs_info->free_chunk_lock);
4281
4282 /*
4283 * If we have dup, raid1 or raid10 then only half of the free
David Woodhouse53b381b2013-01-29 18:40:14 -05004284 * space is actually useable. For raid56, the space info used
4285 * doesn't include the parity drive, so we don't have to
4286 * change the math
Josef Bacika80c8dc2012-09-06 16:59:33 -04004287 */
4288 if (profile & (BTRFS_BLOCK_GROUP_DUP |
4289 BTRFS_BLOCK_GROUP_RAID1 |
4290 BTRFS_BLOCK_GROUP_RAID10))
4291 avail >>= 1;
4292
4293 /*
Miao Xie561c2942012-10-16 11:32:18 +00004294 * If we aren't flushing all things, let us overcommit up to
4295 * 1/2th of the space. If we can flush, don't let us overcommit
4296 * too much, let it overcommit up to 1/8 of the space.
Josef Bacika80c8dc2012-09-06 16:59:33 -04004297 */
Miao Xie08e007d2012-10-16 11:33:38 +00004298 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacik14575ae2013-09-17 10:48:00 -04004299 avail >>= 3;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004300 else
Josef Bacik14575ae2013-09-17 10:48:00 -04004301 avail >>= 1;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004302
Josef Bacik14575ae2013-09-17 10:48:00 -04004303 if (used + bytes < space_info->total_bytes + avail)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004304 return 1;
4305 return 0;
4306}
4307
Eric Sandeen48a3b632013-04-25 20:41:01 +00004308static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root,
Miao Xie6c255e62014-03-06 13:55:01 +08004309 unsigned long nr_pages, int nr_items)
Miao Xieda633a42012-12-20 11:19:09 +00004310{
4311 struct super_block *sb = root->fs_info->sb;
Miao Xieda633a42012-12-20 11:19:09 +00004312
Josef Bacik925a6ef2013-06-20 12:31:27 -04004313 if (down_read_trylock(&sb->s_umount)) {
4314 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
4315 up_read(&sb->s_umount);
4316 } else {
Miao Xieda633a42012-12-20 11:19:09 +00004317 /*
4318 * We needn't worry the filesystem going from r/w to r/o though
4319 * we don't acquire ->s_umount mutex, because the filesystem
4320 * should guarantee the delalloc inodes list be empty after
4321 * the filesystem is readonly(all dirty pages are written to
4322 * the disk).
4323 */
Miao Xie6c255e62014-03-06 13:55:01 +08004324 btrfs_start_delalloc_roots(root->fs_info, 0, nr_items);
Josef Bacik98ad69c2013-04-04 11:55:49 -04004325 if (!current->journal_info)
Miao Xie6c255e62014-03-06 13:55:01 +08004326 btrfs_wait_ordered_roots(root->fs_info, nr_items);
Miao Xieda633a42012-12-20 11:19:09 +00004327 }
4328}
4329
Miao Xie18cd8ea2013-11-04 23:13:22 +08004330static inline int calc_reclaim_items_nr(struct btrfs_root *root, u64 to_reclaim)
4331{
4332 u64 bytes;
4333 int nr;
4334
4335 bytes = btrfs_calc_trans_metadata_size(root, 1);
4336 nr = (int)div64_u64(to_reclaim, bytes);
4337 if (!nr)
4338 nr = 1;
4339 return nr;
4340}
4341
Miao Xiec61a16a2013-11-04 23:13:23 +08004342#define EXTENT_SIZE_PER_ITEM (256 * 1024)
4343
Yan, Zheng5da9d012010-05-16 10:46:25 -04004344/*
4345 * shrink metadata reservation for delalloc
4346 */
Josef Bacikf4c738c2012-07-02 17:10:51 -04004347static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig,
4348 bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04004349{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004350 struct btrfs_block_rsv *block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004351 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04004352 struct btrfs_trans_handle *trans;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004353 u64 delalloc_bytes;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004354 u64 max_reclaim;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004355 long time_left;
Miao Xied3ee29e2013-11-04 23:13:20 +08004356 unsigned long nr_pages;
4357 int loops;
Miao Xieb0244192013-11-04 23:13:25 +08004358 int items;
Miao Xie08e007d2012-10-16 11:33:38 +00004359 enum btrfs_reserve_flush_enum flush;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004360
Miao Xiec61a16a2013-11-04 23:13:23 +08004361 /* Calc the number of the pages we need flush for space reservation */
Miao Xieb0244192013-11-04 23:13:25 +08004362 items = calc_reclaim_items_nr(root, to_reclaim);
4363 to_reclaim = items * EXTENT_SIZE_PER_ITEM;
Miao Xiec61a16a2013-11-04 23:13:23 +08004364
Josef Bacik663350a2011-11-03 22:54:25 -04004365 trans = (struct btrfs_trans_handle *)current->journal_info;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004366 block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004367 space_info = block_rsv->space_info;
Chris Masonbf9022e2010-10-26 13:40:45 -04004368
Miao Xie963d6782013-01-29 10:10:51 +00004369 delalloc_bytes = percpu_counter_sum_positive(
4370 &root->fs_info->delalloc_bytes);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004371 if (delalloc_bytes == 0) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004372 if (trans)
Josef Bacikf4c738c2012-07-02 17:10:51 -04004373 return;
Miao Xie38c135a2013-11-04 23:13:21 +08004374 if (wait_ordered)
Miao Xieb0244192013-11-04 23:13:25 +08004375 btrfs_wait_ordered_roots(root->fs_info, items);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004376 return;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004377 }
4378
Miao Xied3ee29e2013-11-04 23:13:20 +08004379 loops = 0;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004380 while (delalloc_bytes && loops < 3) {
4381 max_reclaim = min(delalloc_bytes, to_reclaim);
4382 nr_pages = max_reclaim >> PAGE_CACHE_SHIFT;
Miao Xie6c255e62014-03-06 13:55:01 +08004383 btrfs_writeback_inodes_sb_nr(root, nr_pages, items);
Josef Bacikdea31f52012-09-06 16:47:00 -04004384 /*
4385 * We need to wait for the async pages to actually start before
4386 * we do anything.
4387 */
Miao Xie9f3a0742013-11-04 23:13:24 +08004388 max_reclaim = atomic_read(&root->fs_info->async_delalloc_pages);
4389 if (!max_reclaim)
4390 goto skip_async;
Josef Bacikdea31f52012-09-06 16:47:00 -04004391
Miao Xie9f3a0742013-11-04 23:13:24 +08004392 if (max_reclaim <= nr_pages)
4393 max_reclaim = 0;
4394 else
4395 max_reclaim -= nr_pages;
4396
4397 wait_event(root->fs_info->async_submit_wait,
4398 atomic_read(&root->fs_info->async_delalloc_pages) <=
4399 (int)max_reclaim);
4400skip_async:
Miao Xie08e007d2012-10-16 11:33:38 +00004401 if (!trans)
4402 flush = BTRFS_RESERVE_FLUSH_ALL;
4403 else
4404 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacik0019f102010-10-15 15:18:40 -04004405 spin_lock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00004406 if (can_overcommit(root, space_info, orig, flush)) {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004407 spin_unlock(&space_info->lock);
4408 break;
4409 }
Josef Bacik0019f102010-10-15 15:18:40 -04004410 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004411
Chris Mason36e39c42011-03-12 07:08:42 -05004412 loops++;
Josef Bacikf104d042011-10-14 13:56:58 -04004413 if (wait_ordered && !trans) {
Miao Xieb0244192013-11-04 23:13:25 +08004414 btrfs_wait_ordered_roots(root->fs_info, items);
Josef Bacikf104d042011-10-14 13:56:58 -04004415 } else {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004416 time_left = schedule_timeout_killable(1);
Josef Bacikf104d042011-10-14 13:56:58 -04004417 if (time_left)
4418 break;
4419 }
Miao Xie963d6782013-01-29 10:10:51 +00004420 delalloc_bytes = percpu_counter_sum_positive(
4421 &root->fs_info->delalloc_bytes);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004422 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04004423}
4424
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004425/**
Josef Bacik663350a2011-11-03 22:54:25 -04004426 * maybe_commit_transaction - possibly commit the transaction if its ok to
4427 * @root - the root we're allocating for
4428 * @bytes - the number of bytes we want to reserve
4429 * @force - force the commit
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004430 *
Josef Bacik663350a2011-11-03 22:54:25 -04004431 * This will check to make sure that committing the transaction will actually
4432 * get us somewhere and then commit the transaction if it does. Otherwise it
4433 * will return -ENOSPC.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004434 */
Josef Bacik663350a2011-11-03 22:54:25 -04004435static int may_commit_transaction(struct btrfs_root *root,
4436 struct btrfs_space_info *space_info,
4437 u64 bytes, int force)
4438{
4439 struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv;
4440 struct btrfs_trans_handle *trans;
4441
4442 trans = (struct btrfs_trans_handle *)current->journal_info;
4443 if (trans)
4444 return -EAGAIN;
4445
4446 if (force)
4447 goto commit;
4448
4449 /* See if there is enough pinned space to make this reservation */
Josef Bacikb150a4f2013-06-19 15:00:04 -04004450 if (percpu_counter_compare(&space_info->total_bytes_pinned,
Miao Xie0424c542014-03-06 13:54:59 +08004451 bytes) >= 0)
Josef Bacik663350a2011-11-03 22:54:25 -04004452 goto commit;
Josef Bacik663350a2011-11-03 22:54:25 -04004453
4454 /*
4455 * See if there is some space in the delayed insertion reservation for
4456 * this reservation.
4457 */
4458 if (space_info != delayed_rsv->space_info)
4459 return -ENOSPC;
4460
4461 spin_lock(&delayed_rsv->lock);
Josef Bacikb150a4f2013-06-19 15:00:04 -04004462 if (percpu_counter_compare(&space_info->total_bytes_pinned,
4463 bytes - delayed_rsv->size) >= 0) {
Josef Bacik663350a2011-11-03 22:54:25 -04004464 spin_unlock(&delayed_rsv->lock);
4465 return -ENOSPC;
4466 }
4467 spin_unlock(&delayed_rsv->lock);
4468
4469commit:
4470 trans = btrfs_join_transaction(root);
4471 if (IS_ERR(trans))
4472 return -ENOSPC;
4473
4474 return btrfs_commit_transaction(trans, root);
4475}
4476
Josef Bacik96c3f432012-06-21 14:05:49 -04004477enum flush_state {
Josef Bacik67b0fd62012-09-24 13:42:00 -04004478 FLUSH_DELAYED_ITEMS_NR = 1,
4479 FLUSH_DELAYED_ITEMS = 2,
4480 FLUSH_DELALLOC = 3,
4481 FLUSH_DELALLOC_WAIT = 4,
Josef Bacikea658ba2012-09-11 16:57:25 -04004482 ALLOC_CHUNK = 5,
4483 COMMIT_TRANS = 6,
Josef Bacik96c3f432012-06-21 14:05:49 -04004484};
4485
4486static int flush_space(struct btrfs_root *root,
4487 struct btrfs_space_info *space_info, u64 num_bytes,
4488 u64 orig_bytes, int state)
4489{
4490 struct btrfs_trans_handle *trans;
4491 int nr;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004492 int ret = 0;
Josef Bacik96c3f432012-06-21 14:05:49 -04004493
4494 switch (state) {
Josef Bacik96c3f432012-06-21 14:05:49 -04004495 case FLUSH_DELAYED_ITEMS_NR:
4496 case FLUSH_DELAYED_ITEMS:
Miao Xie18cd8ea2013-11-04 23:13:22 +08004497 if (state == FLUSH_DELAYED_ITEMS_NR)
4498 nr = calc_reclaim_items_nr(root, num_bytes) * 2;
4499 else
Josef Bacik96c3f432012-06-21 14:05:49 -04004500 nr = -1;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004501
Josef Bacik96c3f432012-06-21 14:05:49 -04004502 trans = btrfs_join_transaction(root);
4503 if (IS_ERR(trans)) {
4504 ret = PTR_ERR(trans);
4505 break;
4506 }
4507 ret = btrfs_run_delayed_items_nr(trans, root, nr);
4508 btrfs_end_transaction(trans, root);
4509 break;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004510 case FLUSH_DELALLOC:
4511 case FLUSH_DELALLOC_WAIT:
Miao Xie24af7dd2014-03-06 13:55:00 +08004512 shrink_delalloc(root, num_bytes * 2, orig_bytes,
Josef Bacik67b0fd62012-09-24 13:42:00 -04004513 state == FLUSH_DELALLOC_WAIT);
4514 break;
Josef Bacikea658ba2012-09-11 16:57:25 -04004515 case ALLOC_CHUNK:
4516 trans = btrfs_join_transaction(root);
4517 if (IS_ERR(trans)) {
4518 ret = PTR_ERR(trans);
4519 break;
4520 }
4521 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Josef Bacikea658ba2012-09-11 16:57:25 -04004522 btrfs_get_alloc_profile(root, 0),
4523 CHUNK_ALLOC_NO_FORCE);
4524 btrfs_end_transaction(trans, root);
4525 if (ret == -ENOSPC)
4526 ret = 0;
4527 break;
Josef Bacik96c3f432012-06-21 14:05:49 -04004528 case COMMIT_TRANS:
4529 ret = may_commit_transaction(root, space_info, orig_bytes, 0);
4530 break;
4531 default:
4532 ret = -ENOSPC;
4533 break;
4534 }
4535
4536 return ret;
4537}
Miao Xie21c7e752014-05-13 17:29:04 -07004538
4539static inline u64
4540btrfs_calc_reclaim_metadata_size(struct btrfs_root *root,
4541 struct btrfs_space_info *space_info)
4542{
4543 u64 used;
4544 u64 expected;
4545 u64 to_reclaim;
4546
4547 to_reclaim = min_t(u64, num_online_cpus() * 1024 * 1024,
4548 16 * 1024 * 1024);
4549 spin_lock(&space_info->lock);
4550 if (can_overcommit(root, space_info, to_reclaim,
4551 BTRFS_RESERVE_FLUSH_ALL)) {
4552 to_reclaim = 0;
4553 goto out;
4554 }
4555
4556 used = space_info->bytes_used + space_info->bytes_reserved +
4557 space_info->bytes_pinned + space_info->bytes_readonly +
4558 space_info->bytes_may_use;
4559 if (can_overcommit(root, space_info, 1024 * 1024,
4560 BTRFS_RESERVE_FLUSH_ALL))
4561 expected = div_factor_fine(space_info->total_bytes, 95);
4562 else
4563 expected = div_factor_fine(space_info->total_bytes, 90);
4564
4565 if (used > expected)
4566 to_reclaim = used - expected;
4567 else
4568 to_reclaim = 0;
4569 to_reclaim = min(to_reclaim, space_info->bytes_may_use +
4570 space_info->bytes_reserved);
4571out:
4572 spin_unlock(&space_info->lock);
4573
4574 return to_reclaim;
4575}
4576
4577static inline int need_do_async_reclaim(struct btrfs_space_info *space_info,
4578 struct btrfs_fs_info *fs_info, u64 used)
4579{
Josef Bacik365c5312015-02-18 13:58:15 -08004580 u64 thresh = div_factor_fine(space_info->total_bytes, 98);
4581
4582 /* If we're just plain full then async reclaim just slows us down. */
4583 if (space_info->bytes_used >= thresh)
4584 return 0;
4585
4586 return (used >= thresh && !btrfs_fs_closing(fs_info) &&
Miao Xie21c7e752014-05-13 17:29:04 -07004587 !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state));
4588}
4589
4590static int btrfs_need_do_async_reclaim(struct btrfs_space_info *space_info,
Liu Bo25ce4592014-09-10 12:58:50 +08004591 struct btrfs_fs_info *fs_info,
4592 int flush_state)
Miao Xie21c7e752014-05-13 17:29:04 -07004593{
4594 u64 used;
4595
4596 spin_lock(&space_info->lock);
Liu Bo25ce4592014-09-10 12:58:50 +08004597 /*
4598 * We run out of space and have not got any free space via flush_space,
4599 * so don't bother doing async reclaim.
4600 */
4601 if (flush_state > COMMIT_TRANS && space_info->full) {
4602 spin_unlock(&space_info->lock);
4603 return 0;
4604 }
4605
Miao Xie21c7e752014-05-13 17:29:04 -07004606 used = space_info->bytes_used + space_info->bytes_reserved +
4607 space_info->bytes_pinned + space_info->bytes_readonly +
4608 space_info->bytes_may_use;
4609 if (need_do_async_reclaim(space_info, fs_info, used)) {
4610 spin_unlock(&space_info->lock);
4611 return 1;
4612 }
4613 spin_unlock(&space_info->lock);
4614
4615 return 0;
4616}
4617
4618static void btrfs_async_reclaim_metadata_space(struct work_struct *work)
4619{
4620 struct btrfs_fs_info *fs_info;
4621 struct btrfs_space_info *space_info;
4622 u64 to_reclaim;
4623 int flush_state;
4624
4625 fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work);
4626 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4627
4628 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root,
4629 space_info);
4630 if (!to_reclaim)
4631 return;
4632
4633 flush_state = FLUSH_DELAYED_ITEMS_NR;
4634 do {
4635 flush_space(fs_info->fs_root, space_info, to_reclaim,
4636 to_reclaim, flush_state);
4637 flush_state++;
Liu Bo25ce4592014-09-10 12:58:50 +08004638 if (!btrfs_need_do_async_reclaim(space_info, fs_info,
4639 flush_state))
Miao Xie21c7e752014-05-13 17:29:04 -07004640 return;
Josef Bacik365c5312015-02-18 13:58:15 -08004641 } while (flush_state < COMMIT_TRANS);
Miao Xie21c7e752014-05-13 17:29:04 -07004642}
4643
4644void btrfs_init_async_reclaim_work(struct work_struct *work)
4645{
4646 INIT_WORK(work, btrfs_async_reclaim_metadata_space);
4647}
4648
Josef Bacik663350a2011-11-03 22:54:25 -04004649/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004650 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
4651 * @root - the root we're allocating for
4652 * @block_rsv - the block_rsv we're allocating for
4653 * @orig_bytes - the number of bytes we want
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04004654 * @flush - whether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004655 *
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004656 * This will reserve orgi_bytes number of bytes from the space info associated
4657 * with the block_rsv. If there is not enough space it will make an attempt to
4658 * flush out space to make room. It will do this by flushing delalloc if
4659 * possible or committing the transaction. If flush is 0 then no attempts to
4660 * regain reservations will be made and this will fail if there is not enough
4661 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004662 */
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004663static int reserve_metadata_bytes(struct btrfs_root *root,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004664 struct btrfs_block_rsv *block_rsv,
Miao Xie08e007d2012-10-16 11:33:38 +00004665 u64 orig_bytes,
4666 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004667{
4668 struct btrfs_space_info *space_info = block_rsv->space_info;
Josef Bacik2bf64752011-09-26 17:12:22 -04004669 u64 used;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004670 u64 num_bytes = orig_bytes;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004671 int flush_state = FLUSH_DELAYED_ITEMS_NR;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004672 int ret = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004673 bool flushing = false;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004674
4675again:
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004676 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004677 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004678 /*
Miao Xie08e007d2012-10-16 11:33:38 +00004679 * We only want to wait if somebody other than us is flushing and we
4680 * are actually allowed to flush all things.
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004681 */
Miao Xie08e007d2012-10-16 11:33:38 +00004682 while (flush == BTRFS_RESERVE_FLUSH_ALL && !flushing &&
4683 space_info->flush) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004684 spin_unlock(&space_info->lock);
4685 /*
4686 * If we have a trans handle we can't wait because the flusher
4687 * may have to commit the transaction, which would mean we would
4688 * deadlock since we are waiting for the flusher to finish, but
4689 * hold the current transaction open.
4690 */
Josef Bacik663350a2011-11-03 22:54:25 -04004691 if (current->journal_info)
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004692 return -EAGAIN;
Arne Jansenb9688bb2012-04-18 10:27:16 +02004693 ret = wait_event_killable(space_info->wait, !space_info->flush);
4694 /* Must have been killed, return */
4695 if (ret)
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004696 return -EINTR;
4697
4698 spin_lock(&space_info->lock);
4699 }
4700
4701 ret = -ENOSPC;
Josef Bacik2bf64752011-09-26 17:12:22 -04004702 used = space_info->bytes_used + space_info->bytes_reserved +
4703 space_info->bytes_pinned + space_info->bytes_readonly +
4704 space_info->bytes_may_use;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004705
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004706 /*
4707 * The idea here is that we've not already over-reserved the block group
4708 * then we can go ahead and save our reservation first and then start
4709 * flushing if we need to. Otherwise if we've already overcommitted
4710 * lets start flushing stuff first and then come back and try to make
4711 * our reservation.
4712 */
Josef Bacik2bf64752011-09-26 17:12:22 -04004713 if (used <= space_info->total_bytes) {
4714 if (used + orig_bytes <= space_info->total_bytes) {
Josef Bacikfb25e912011-07-26 17:00:46 -04004715 space_info->bytes_may_use += orig_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004716 trace_btrfs_space_reservation(root->fs_info,
Liu Bo2bcc0322012-03-29 09:57:44 -04004717 "space_info", space_info->flags, orig_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004718 ret = 0;
4719 } else {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004720 /*
4721 * Ok set num_bytes to orig_bytes since we aren't
4722 * overocmmitted, this way we only try and reclaim what
4723 * we need.
4724 */
4725 num_bytes = orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004726 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004727 } else {
4728 /*
4729 * Ok we're over committed, set num_bytes to the overcommitted
4730 * amount plus the amount of bytes that we need for this
4731 * reservation.
4732 */
Josef Bacik2bf64752011-09-26 17:12:22 -04004733 num_bytes = used - space_info->total_bytes +
Josef Bacik96c3f432012-06-21 14:05:49 -04004734 (orig_bytes * 2);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004735 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004736
Josef Bacik44734ed2012-09-28 16:04:19 -04004737 if (ret && can_overcommit(root, space_info, orig_bytes, flush)) {
4738 space_info->bytes_may_use += orig_bytes;
4739 trace_btrfs_space_reservation(root->fs_info, "space_info",
4740 space_info->flags, orig_bytes,
4741 1);
4742 ret = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04004743 }
4744
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004745 /*
4746 * Couldn't make our reservation, save our place so while we're trying
4747 * to reclaim space we can actually use it instead of somebody else
4748 * stealing it from us.
Miao Xie08e007d2012-10-16 11:33:38 +00004749 *
4750 * We make the other tasks wait for the flush only when we can flush
4751 * all things.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004752 */
Josef Bacik72bcd992012-12-18 15:16:34 -05004753 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004754 flushing = true;
4755 space_info->flush = 1;
Miao Xie21c7e752014-05-13 17:29:04 -07004756 } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
4757 used += orig_bytes;
Josef Bacikf6acfd52014-09-18 11:27:17 -04004758 /*
4759 * We will do the space reservation dance during log replay,
4760 * which means we won't have fs_info->fs_root set, so don't do
4761 * the async reclaim as we will panic.
4762 */
4763 if (!root->fs_info->log_root_recovering &&
4764 need_do_async_reclaim(space_info, root->fs_info, used) &&
Miao Xie21c7e752014-05-13 17:29:04 -07004765 !work_busy(&root->fs_info->async_reclaim_work))
4766 queue_work(system_unbound_wq,
4767 &root->fs_info->async_reclaim_work);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004768 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004769 spin_unlock(&space_info->lock);
4770
Miao Xie08e007d2012-10-16 11:33:38 +00004771 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004772 goto out;
4773
Josef Bacik96c3f432012-06-21 14:05:49 -04004774 ret = flush_space(root, space_info, num_bytes, orig_bytes,
4775 flush_state);
4776 flush_state++;
Miao Xie08e007d2012-10-16 11:33:38 +00004777
4778 /*
4779 * If we are FLUSH_LIMIT, we can not flush delalloc, or the deadlock
4780 * would happen. So skip delalloc flush.
4781 */
4782 if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4783 (flush_state == FLUSH_DELALLOC ||
4784 flush_state == FLUSH_DELALLOC_WAIT))
4785 flush_state = ALLOC_CHUNK;
4786
Josef Bacik96c3f432012-06-21 14:05:49 -04004787 if (!ret)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004788 goto again;
Miao Xie08e007d2012-10-16 11:33:38 +00004789 else if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4790 flush_state < COMMIT_TRANS)
4791 goto again;
4792 else if (flush == BTRFS_RESERVE_FLUSH_ALL &&
4793 flush_state <= COMMIT_TRANS)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004794 goto again;
4795
4796out:
Josef Bacik5d803662013-02-07 16:06:02 -05004797 if (ret == -ENOSPC &&
4798 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
4799 struct btrfs_block_rsv *global_rsv =
4800 &root->fs_info->global_block_rsv;
4801
4802 if (block_rsv != global_rsv &&
4803 !block_rsv_use_bytes(global_rsv, orig_bytes))
4804 ret = 0;
4805 }
Jeff Mahoneycab45e22013-10-16 16:27:01 -04004806 if (ret == -ENOSPC)
4807 trace_btrfs_space_reservation(root->fs_info,
4808 "space_info:enospc",
4809 space_info->flags, orig_bytes, 1);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004810 if (flushing) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004811 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004812 space_info->flush = 0;
4813 wake_up_all(&space_info->wait);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004814 spin_unlock(&space_info->lock);
4815 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004816 return ret;
4817}
4818
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004819static struct btrfs_block_rsv *get_block_rsv(
4820 const struct btrfs_trans_handle *trans,
4821 const struct btrfs_root *root)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004822{
Josef Bacik4c13d752011-08-30 11:31:29 -04004823 struct btrfs_block_rsv *block_rsv = NULL;
4824
Miao Xie27cdeb72014-04-02 19:51:05 +08004825 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Josef Bacik0e721102012-06-26 16:13:18 -04004826 block_rsv = trans->block_rsv;
4827
4828 if (root == root->fs_info->csum_root && trans->adding_csums)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004829 block_rsv = trans->block_rsv;
Josef Bacik4c13d752011-08-30 11:31:29 -04004830
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004831 if (root == root->fs_info->uuid_root)
4832 block_rsv = trans->block_rsv;
4833
Josef Bacik4c13d752011-08-30 11:31:29 -04004834 if (!block_rsv)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004835 block_rsv = root->block_rsv;
4836
4837 if (!block_rsv)
4838 block_rsv = &root->fs_info->empty_block_rsv;
4839
4840 return block_rsv;
4841}
4842
4843static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
4844 u64 num_bytes)
4845{
4846 int ret = -ENOSPC;
4847 spin_lock(&block_rsv->lock);
4848 if (block_rsv->reserved >= num_bytes) {
4849 block_rsv->reserved -= num_bytes;
4850 if (block_rsv->reserved < block_rsv->size)
4851 block_rsv->full = 0;
4852 ret = 0;
4853 }
4854 spin_unlock(&block_rsv->lock);
4855 return ret;
4856}
4857
4858static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
4859 u64 num_bytes, int update_size)
4860{
4861 spin_lock(&block_rsv->lock);
4862 block_rsv->reserved += num_bytes;
4863 if (update_size)
4864 block_rsv->size += num_bytes;
4865 else if (block_rsv->reserved >= block_rsv->size)
4866 block_rsv->full = 1;
4867 spin_unlock(&block_rsv->lock);
4868}
4869
Josef Bacikd52be812013-05-29 14:54:47 -04004870int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
4871 struct btrfs_block_rsv *dest, u64 num_bytes,
4872 int min_factor)
4873{
4874 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
4875 u64 min_bytes;
4876
4877 if (global_rsv->space_info != dest->space_info)
4878 return -ENOSPC;
4879
4880 spin_lock(&global_rsv->lock);
4881 min_bytes = div_factor(global_rsv->size, min_factor);
4882 if (global_rsv->reserved < min_bytes + num_bytes) {
4883 spin_unlock(&global_rsv->lock);
4884 return -ENOSPC;
4885 }
4886 global_rsv->reserved -= num_bytes;
4887 if (global_rsv->reserved < global_rsv->size)
4888 global_rsv->full = 0;
4889 spin_unlock(&global_rsv->lock);
4890
4891 block_rsv_add_bytes(dest, num_bytes, 1);
4892 return 0;
4893}
4894
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004895static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
4896 struct btrfs_block_rsv *block_rsv,
David Sterba62a45b62011-04-20 15:52:26 +02004897 struct btrfs_block_rsv *dest, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004898{
4899 struct btrfs_space_info *space_info = block_rsv->space_info;
4900
4901 spin_lock(&block_rsv->lock);
4902 if (num_bytes == (u64)-1)
4903 num_bytes = block_rsv->size;
4904 block_rsv->size -= num_bytes;
4905 if (block_rsv->reserved >= block_rsv->size) {
4906 num_bytes = block_rsv->reserved - block_rsv->size;
4907 block_rsv->reserved = block_rsv->size;
4908 block_rsv->full = 1;
4909 } else {
4910 num_bytes = 0;
4911 }
4912 spin_unlock(&block_rsv->lock);
4913
4914 if (num_bytes > 0) {
4915 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00004916 spin_lock(&dest->lock);
4917 if (!dest->full) {
4918 u64 bytes_to_add;
4919
4920 bytes_to_add = dest->size - dest->reserved;
4921 bytes_to_add = min(num_bytes, bytes_to_add);
4922 dest->reserved += bytes_to_add;
4923 if (dest->reserved >= dest->size)
4924 dest->full = 1;
4925 num_bytes -= bytes_to_add;
4926 }
4927 spin_unlock(&dest->lock);
4928 }
4929 if (num_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04004930 spin_lock(&space_info->lock);
Josef Bacikfb25e912011-07-26 17:00:46 -04004931 space_info->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004932 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004933 space_info->flags, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004934 spin_unlock(&space_info->lock);
4935 }
4936 }
4937}
4938
4939static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src,
4940 struct btrfs_block_rsv *dst, u64 num_bytes)
4941{
4942 int ret;
4943
4944 ret = block_rsv_use_bytes(src, num_bytes);
4945 if (ret)
4946 return ret;
4947
4948 block_rsv_add_bytes(dst, num_bytes, 1);
4949 return 0;
4950}
4951
Miao Xie66d8f3d2012-09-06 04:02:28 -06004952void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004953{
4954 memset(rsv, 0, sizeof(*rsv));
4955 spin_lock_init(&rsv->lock);
Miao Xie66d8f3d2012-09-06 04:02:28 -06004956 rsv->type = type;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004957}
4958
Miao Xie66d8f3d2012-09-06 04:02:28 -06004959struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root,
4960 unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004961{
4962 struct btrfs_block_rsv *block_rsv;
4963 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004964
4965 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
4966 if (!block_rsv)
4967 return NULL;
4968
Miao Xie66d8f3d2012-09-06 04:02:28 -06004969 btrfs_init_block_rsv(block_rsv, type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004970 block_rsv->space_info = __find_space_info(fs_info,
4971 BTRFS_BLOCK_GROUP_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004972 return block_rsv;
4973}
4974
4975void btrfs_free_block_rsv(struct btrfs_root *root,
4976 struct btrfs_block_rsv *rsv)
4977{
Josef Bacik2aaa6652012-08-29 14:27:18 -04004978 if (!rsv)
4979 return;
Josef Bacikdabdb642011-08-08 12:50:18 -04004980 btrfs_block_rsv_release(root, rsv, (u64)-1);
4981 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004982}
4983
Chris Masoncdfb0802015-04-06 18:17:00 -07004984void __btrfs_free_block_rsv(struct btrfs_block_rsv *rsv)
4985{
4986 kfree(rsv);
4987}
4988
Miao Xie08e007d2012-10-16 11:33:38 +00004989int btrfs_block_rsv_add(struct btrfs_root *root,
4990 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
4991 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004992{
4993 int ret;
4994
4995 if (num_bytes == 0)
4996 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004997
Miao Xie61b520a2011-11-10 20:45:05 -05004998 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004999 if (!ret) {
5000 block_rsv_add_bytes(block_rsv, num_bytes, 1);
5001 return 0;
5002 }
5003
Yan, Zhengf0486c62010-05-16 10:46:25 -04005004 return ret;
5005}
5006
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005007int btrfs_block_rsv_check(struct btrfs_root *root,
Josef Bacik36ba0222011-10-18 12:15:48 -04005008 struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005009{
5010 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005011 int ret = -ENOSPC;
5012
5013 if (!block_rsv)
5014 return 0;
5015
5016 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04005017 num_bytes = div_factor(block_rsv->size, min_factor);
5018 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005019 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005020 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005021
Josef Bacik36ba0222011-10-18 12:15:48 -04005022 return ret;
5023}
5024
Miao Xie08e007d2012-10-16 11:33:38 +00005025int btrfs_block_rsv_refill(struct btrfs_root *root,
5026 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
5027 enum btrfs_reserve_flush_enum flush)
Josef Bacik36ba0222011-10-18 12:15:48 -04005028{
5029 u64 num_bytes = 0;
5030 int ret = -ENOSPC;
5031
5032 if (!block_rsv)
5033 return 0;
5034
5035 spin_lock(&block_rsv->lock);
5036 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04005037 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005038 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04005039 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04005040 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005041 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04005042
Yan, Zhengf0486c62010-05-16 10:46:25 -04005043 if (!ret)
5044 return 0;
5045
Miao Xieaa38a712011-11-18 17:43:00 +08005046 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Josef Bacikdabdb642011-08-08 12:50:18 -04005047 if (!ret) {
5048 block_rsv_add_bytes(block_rsv, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005049 return 0;
5050 }
5051
Josef Bacik13553e52011-08-08 13:33:21 -04005052 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005053}
5054
5055int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv,
5056 struct btrfs_block_rsv *dst_rsv,
5057 u64 num_bytes)
5058{
5059 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
5060}
5061
5062void btrfs_block_rsv_release(struct btrfs_root *root,
5063 struct btrfs_block_rsv *block_rsv,
5064 u64 num_bytes)
5065{
5066 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Liu Bo17504582013-12-29 21:44:50 +08005067 if (global_rsv == block_rsv ||
Yan, Zhengf0486c62010-05-16 10:46:25 -04005068 block_rsv->space_info != global_rsv->space_info)
5069 global_rsv = NULL;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005070 block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv,
5071 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005072}
5073
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005074/*
5075 * helper to calculate size of global block reservation.
5076 * the desired value is sum of space used by extent tree,
5077 * checksum tree and root tree
5078 */
5079static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info)
5080{
5081 struct btrfs_space_info *sinfo;
5082 u64 num_bytes;
5083 u64 meta_used;
5084 u64 data_used;
David Sterba6c417612011-04-13 15:41:04 +02005085 int csum_size = btrfs_super_csum_size(fs_info->super_copy);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005086
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005087 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA);
5088 spin_lock(&sinfo->lock);
5089 data_used = sinfo->bytes_used;
5090 spin_unlock(&sinfo->lock);
5091
5092 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
5093 spin_lock(&sinfo->lock);
Josef Bacik6d487552010-10-15 15:13:32 -04005094 if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA)
5095 data_used = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005096 meta_used = sinfo->bytes_used;
5097 spin_unlock(&sinfo->lock);
5098
5099 num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) *
5100 csum_size * 2;
David Sterbaf8c269d2015-01-16 17:21:12 +01005101 num_bytes += div_u64(data_used + meta_used, 50);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005102
5103 if (num_bytes * 3 > meta_used)
David Sterbaf8c269d2015-01-16 17:21:12 +01005104 num_bytes = div_u64(meta_used, 3);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005105
David Sterba707e8a02014-06-04 19:22:26 +02005106 return ALIGN(num_bytes, fs_info->extent_root->nodesize << 10);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005107}
5108
5109static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
5110{
5111 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
5112 struct btrfs_space_info *sinfo = block_rsv->space_info;
5113 u64 num_bytes;
5114
5115 num_bytes = calc_global_metadata_size(fs_info);
5116
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005117 spin_lock(&sinfo->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005118 spin_lock(&block_rsv->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005119
Josef Bacikfdf30d12013-03-26 15:31:45 -04005120 block_rsv->size = min_t(u64, num_bytes, 512 * 1024 * 1024);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005121
5122 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
Josef Bacik6d487552010-10-15 15:13:32 -04005123 sinfo->bytes_reserved + sinfo->bytes_readonly +
5124 sinfo->bytes_may_use;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005125
5126 if (sinfo->total_bytes > num_bytes) {
5127 num_bytes = sinfo->total_bytes - num_bytes;
5128 block_rsv->reserved += num_bytes;
Josef Bacikfb25e912011-07-26 17:00:46 -04005129 sinfo->bytes_may_use += num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005130 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04005131 sinfo->flags, num_bytes, 1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005132 }
5133
5134 if (block_rsv->reserved >= block_rsv->size) {
5135 num_bytes = block_rsv->reserved - block_rsv->size;
Josef Bacikfb25e912011-07-26 17:00:46 -04005136 sinfo->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005137 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04005138 sinfo->flags, num_bytes, 0);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005139 block_rsv->reserved = block_rsv->size;
5140 block_rsv->full = 1;
5141 }
David Sterba182608c2011-05-05 13:13:16 +02005142
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005143 spin_unlock(&block_rsv->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005144 spin_unlock(&sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005145}
5146
Yan, Zhengf0486c62010-05-16 10:46:25 -04005147static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
5148{
5149 struct btrfs_space_info *space_info;
5150
5151 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
5152 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005153
5154 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005155 fs_info->global_block_rsv.space_info = space_info;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005156 fs_info->delalloc_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005157 fs_info->trans_block_rsv.space_info = space_info;
5158 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04005159 fs_info->delayed_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005160
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005161 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
5162 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
5163 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
5164 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Stefan Behrens3a6cad92013-05-16 14:48:19 +00005165 if (fs_info->quota_root)
5166 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005167 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005168
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005169 update_global_block_rsv(fs_info);
5170}
5171
5172static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
5173{
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005174 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
5175 (u64)-1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005176 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
5177 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
5178 WARN_ON(fs_info->trans_block_rsv.size > 0);
5179 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
5180 WARN_ON(fs_info->chunk_block_rsv.size > 0);
5181 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04005182 WARN_ON(fs_info->delayed_block_rsv.size > 0);
5183 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04005184}
5185
Yan, Zhenga22285a2010-05-16 10:48:46 -04005186void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
5187 struct btrfs_root *root)
5188{
Josef Bacik0e721102012-06-26 16:13:18 -04005189 if (!trans->block_rsv)
5190 return;
5191
Yan, Zhenga22285a2010-05-16 10:48:46 -04005192 if (!trans->bytes_reserved)
5193 return;
5194
Chris Masone77266e2012-02-24 10:39:05 -05005195 trace_btrfs_space_reservation(root->fs_info, "transaction",
Liu Bo2bcc0322012-03-29 09:57:44 -04005196 trans->transid, trans->bytes_reserved, 0);
Josef Bacikb24e03d2011-10-14 14:40:17 -04005197 btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005198 trans->bytes_reserved = 0;
5199}
5200
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005201/*
5202 * To be called after all the new block groups attached to the transaction
5203 * handle have been created (btrfs_create_pending_block_groups()).
5204 */
5205void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
5206{
5207 struct btrfs_fs_info *fs_info = trans->root->fs_info;
5208
5209 if (!trans->chunk_bytes_reserved)
5210 return;
5211
5212 WARN_ON_ONCE(!list_empty(&trans->new_bgs));
5213
5214 block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL,
5215 trans->chunk_bytes_reserved);
5216 trans->chunk_bytes_reserved = 0;
5217}
5218
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005219/* Can only return 0 or -ENOSPC */
Yan, Zhengd68fc572010-05-16 10:49:58 -04005220int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
5221 struct inode *inode)
5222{
5223 struct btrfs_root *root = BTRFS_I(inode)->root;
5224 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
5225 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
5226
5227 /*
Josef Bacikfcb80c22011-05-03 10:40:22 -04005228 * We need to hold space in order to delete our orphan item once we've
5229 * added it, so this takes the reservation so we can release it later
5230 * when we are truly done with the orphan item.
Yan, Zhengd68fc572010-05-16 10:49:58 -04005231 */
Chris Masonff5714c2011-05-28 07:00:39 -04005232 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005233 trace_btrfs_space_reservation(root->fs_info, "orphan",
5234 btrfs_ino(inode), num_bytes, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04005235 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
5236}
5237
5238void btrfs_orphan_release_metadata(struct inode *inode)
5239{
5240 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonff5714c2011-05-28 07:00:39 -04005241 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005242 trace_btrfs_space_reservation(root->fs_info, "orphan",
5243 btrfs_ino(inode), num_bytes, 0);
Yan, Zhengd68fc572010-05-16 10:49:58 -04005244 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
5245}
5246
Miao Xied5c12072013-02-28 10:04:33 +00005247/*
5248 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
5249 * root: the root of the parent directory
5250 * rsv: block reservation
5251 * items: the number of items that we need do reservation
5252 * qgroup_reserved: used to return the reserved size in qgroup
5253 *
5254 * This function is used to reserve the space for snapshot/subvolume
5255 * creation and deletion. Those operations are different with the
5256 * common file/directory operations, they change two fs/file trees
5257 * and root tree, the number of items that the qgroup reserves is
5258 * different with the free space reservation. So we can not use
5259 * the space reseravtion mechanism in start_transaction().
5260 */
5261int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
5262 struct btrfs_block_rsv *rsv,
5263 int items,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005264 u64 *qgroup_reserved,
5265 bool use_global_rsv)
Yan, Zhenga22285a2010-05-16 10:48:46 -04005266{
Miao Xied5c12072013-02-28 10:04:33 +00005267 u64 num_bytes;
5268 int ret;
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005269 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Miao Xied5c12072013-02-28 10:04:33 +00005270
5271 if (root->fs_info->quota_enabled) {
5272 /* One for parent inode, two for dir entries */
David Sterba707e8a02014-06-04 19:22:26 +02005273 num_bytes = 3 * root->nodesize;
Miao Xied5c12072013-02-28 10:04:33 +00005274 ret = btrfs_qgroup_reserve(root, num_bytes);
5275 if (ret)
5276 return ret;
5277 } else {
5278 num_bytes = 0;
5279 }
5280
5281 *qgroup_reserved = num_bytes;
5282
5283 num_bytes = btrfs_calc_trans_metadata_size(root, items);
5284 rsv->space_info = __find_space_info(root->fs_info,
5285 BTRFS_BLOCK_GROUP_METADATA);
5286 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
5287 BTRFS_RESERVE_FLUSH_ALL);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005288
5289 if (ret == -ENOSPC && use_global_rsv)
5290 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes);
5291
Miao Xied5c12072013-02-28 10:04:33 +00005292 if (ret) {
5293 if (*qgroup_reserved)
5294 btrfs_qgroup_free(root, *qgroup_reserved);
5295 }
5296
5297 return ret;
5298}
5299
5300void btrfs_subvolume_release_metadata(struct btrfs_root *root,
5301 struct btrfs_block_rsv *rsv,
5302 u64 qgroup_reserved)
5303{
5304 btrfs_block_rsv_release(root, rsv, (u64)-1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005305}
5306
Josef Bacik7709cde2011-08-04 10:25:02 -04005307/**
5308 * drop_outstanding_extent - drop an outstanding extent
5309 * @inode: the inode we're dropping the extent for
Josef Bacikdcab6a32015-02-11 15:08:59 -05005310 * @num_bytes: the number of bytes we're relaseing.
Josef Bacik7709cde2011-08-04 10:25:02 -04005311 *
5312 * This is called when we are freeing up an outstanding extent, either called
5313 * after an error or after an extent is written. This will return the number of
5314 * reserved extents that need to be freed. This must be called with
5315 * BTRFS_I(inode)->lock held.
5316 */
Josef Bacikdcab6a32015-02-11 15:08:59 -05005317static unsigned drop_outstanding_extent(struct inode *inode, u64 num_bytes)
Josef Bacik9e0baf62011-07-15 15:16:44 +00005318{
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005319 unsigned drop_inode_space = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005320 unsigned dropped_extents = 0;
Josef Bacikdcab6a32015-02-11 15:08:59 -05005321 unsigned num_extents = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005322
Josef Bacikdcab6a32015-02-11 15:08:59 -05005323 num_extents = (unsigned)div64_u64(num_bytes +
5324 BTRFS_MAX_EXTENT_SIZE - 1,
5325 BTRFS_MAX_EXTENT_SIZE);
5326 ASSERT(num_extents);
5327 ASSERT(BTRFS_I(inode)->outstanding_extents >= num_extents);
5328 BTRFS_I(inode)->outstanding_extents -= num_extents;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005329
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005330 if (BTRFS_I(inode)->outstanding_extents == 0 &&
Josef Bacik72ac3c02012-05-23 14:13:11 -04005331 test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5332 &BTRFS_I(inode)->runtime_flags))
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005333 drop_inode_space = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005334
Josef Bacik9e0baf62011-07-15 15:16:44 +00005335 /*
5336 * If we have more or the same amount of outsanding extents than we have
5337 * reserved then we need to leave the reserved extents count alone.
5338 */
5339 if (BTRFS_I(inode)->outstanding_extents >=
5340 BTRFS_I(inode)->reserved_extents)
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005341 return drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005342
5343 dropped_extents = BTRFS_I(inode)->reserved_extents -
5344 BTRFS_I(inode)->outstanding_extents;
5345 BTRFS_I(inode)->reserved_extents -= dropped_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005346 return dropped_extents + drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005347}
5348
Josef Bacik7709cde2011-08-04 10:25:02 -04005349/**
5350 * calc_csum_metadata_size - return the amount of metada space that must be
5351 * reserved/free'd for the given bytes.
5352 * @inode: the inode we're manipulating
5353 * @num_bytes: the number of bytes in question
5354 * @reserve: 1 if we are reserving space, 0 if we are freeing space
5355 *
5356 * This adjusts the number of csum_bytes in the inode and then returns the
5357 * correct amount of metadata that must either be reserved or freed. We
5358 * calculate how many checksums we can fit into one leaf and then divide the
5359 * number of bytes that will need to be checksumed by this value to figure out
5360 * how many checksums will be required. If we are adding bytes then the number
5361 * may go up and we will return the number of additional bytes that must be
5362 * reserved. If it is going down we will return the number of bytes that must
5363 * be freed.
5364 *
5365 * This must be called with BTRFS_I(inode)->lock held.
5366 */
5367static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes,
5368 int reserve)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005369{
Josef Bacik7709cde2011-08-04 10:25:02 -04005370 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik12621332015-02-03 07:50:16 -08005371 u64 old_csums, num_csums;
Josef Bacik7709cde2011-08-04 10:25:02 -04005372
5373 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM &&
5374 BTRFS_I(inode)->csum_bytes == 0)
5375 return 0;
5376
Chris Mason28f75a02015-02-04 06:59:29 -08005377 old_csums = btrfs_csum_bytes_to_leaves(root, BTRFS_I(inode)->csum_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04005378 if (reserve)
5379 BTRFS_I(inode)->csum_bytes += num_bytes;
5380 else
5381 BTRFS_I(inode)->csum_bytes -= num_bytes;
Chris Mason28f75a02015-02-04 06:59:29 -08005382 num_csums = btrfs_csum_bytes_to_leaves(root, BTRFS_I(inode)->csum_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04005383
5384 /* No change, no need to reserve more */
5385 if (old_csums == num_csums)
5386 return 0;
5387
5388 if (reserve)
5389 return btrfs_calc_trans_metadata_size(root,
5390 num_csums - old_csums);
5391
5392 return btrfs_calc_trans_metadata_size(root, old_csums - num_csums);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005393}
5394
5395int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
5396{
5397 struct btrfs_root *root = BTRFS_I(inode)->root;
5398 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005399 u64 to_reserve = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05005400 u64 csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005401 unsigned nr_extents = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05005402 int extra_reserve = 0;
Miao Xie08e007d2012-10-16 11:33:38 +00005403 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
Jan Schmidteb6b88d2013-01-27 23:26:00 -07005404 int ret = 0;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005405 bool delalloc_lock = true;
Wang Shilong88e081bf2013-03-01 11:36:01 +00005406 u64 to_free = 0;
5407 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005408
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005409 /* If we are a free space inode we need to not flush since we will be in
5410 * the middle of a transaction commit. We also don't need the delalloc
5411 * mutex since we won't race with anybody. We need this mostly to make
5412 * lockdep shut its filthy mouth.
5413 */
5414 if (btrfs_is_free_space_inode(inode)) {
Miao Xie08e007d2012-10-16 11:33:38 +00005415 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005416 delalloc_lock = false;
5417 }
Josef Bacikc09544e2011-08-30 10:19:10 -04005418
Miao Xie08e007d2012-10-16 11:33:38 +00005419 if (flush != BTRFS_RESERVE_NO_FLUSH &&
5420 btrfs_transaction_in_commit(root->fs_info))
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005421 schedule_timeout(1);
5422
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005423 if (delalloc_lock)
5424 mutex_lock(&BTRFS_I(inode)->delalloc_mutex);
5425
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005426 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005427
Josef Bacik9e0baf62011-07-15 15:16:44 +00005428 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik6a41dd02015-03-13 15:12:23 -04005429 nr_extents = (unsigned)div64_u64(num_bytes +
5430 BTRFS_MAX_EXTENT_SIZE - 1,
5431 BTRFS_MAX_EXTENT_SIZE);
5432 BTRFS_I(inode)->outstanding_extents += nr_extents;
5433 nr_extents = 0;
Josef Bacik57a45ced2011-01-25 16:30:38 -05005434
Josef Bacik9e0baf62011-07-15 15:16:44 +00005435 if (BTRFS_I(inode)->outstanding_extents >
Josef Bacik660d3f62011-12-09 11:18:51 -05005436 BTRFS_I(inode)->reserved_extents)
Josef Bacik9e0baf62011-07-15 15:16:44 +00005437 nr_extents = BTRFS_I(inode)->outstanding_extents -
5438 BTRFS_I(inode)->reserved_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005439
5440 /*
5441 * Add an item to reserve for updating the inode when we complete the
5442 * delalloc io.
5443 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04005444 if (!test_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5445 &BTRFS_I(inode)->runtime_flags)) {
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005446 nr_extents++;
Josef Bacik660d3f62011-12-09 11:18:51 -05005447 extra_reserve = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005448 }
5449
5450 to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04005451 to_reserve += calc_csum_metadata_size(inode, num_bytes, 1);
Josef Bacik660d3f62011-12-09 11:18:51 -05005452 csum_bytes = BTRFS_I(inode)->csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005453 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05005454
Wang Shilong88e081bf2013-03-01 11:36:01 +00005455 if (root->fs_info->quota_enabled) {
Dongsheng Yang237c0e92014-12-29 06:23:05 -05005456 ret = btrfs_qgroup_reserve(root, nr_extents * root->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005457 if (ret)
5458 goto out_fail;
Wang Shilonga9870c02013-03-01 11:33:01 +00005459 }
Arne Jansenc5567232011-09-14 15:44:05 +02005460
Wang Shilong88e081bf2013-03-01 11:36:01 +00005461 ret = reserve_metadata_bytes(root, block_rsv, to_reserve, flush);
5462 if (unlikely(ret)) {
5463 if (root->fs_info->quota_enabled)
Dongsheng Yang237c0e92014-12-29 06:23:05 -05005464 btrfs_qgroup_free(root, nr_extents * root->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005465 goto out_fail;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005466 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005467
Josef Bacik660d3f62011-12-09 11:18:51 -05005468 spin_lock(&BTRFS_I(inode)->lock);
5469 if (extra_reserve) {
Josef Bacik72ac3c02012-05-23 14:13:11 -04005470 set_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5471 &BTRFS_I(inode)->runtime_flags);
Josef Bacik660d3f62011-12-09 11:18:51 -05005472 nr_extents--;
5473 }
5474 BTRFS_I(inode)->reserved_extents += nr_extents;
5475 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005476
5477 if (delalloc_lock)
5478 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
Josef Bacik660d3f62011-12-09 11:18:51 -05005479
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005480 if (to_reserve)
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05305481 trace_btrfs_space_reservation(root->fs_info, "delalloc",
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005482 btrfs_ino(inode), to_reserve, 1);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005483 block_rsv_add_bytes(block_rsv, to_reserve, 1);
5484
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005485 return 0;
Wang Shilong88e081bf2013-03-01 11:36:01 +00005486
5487out_fail:
5488 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacikdcab6a32015-02-11 15:08:59 -05005489 dropped = drop_outstanding_extent(inode, num_bytes);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005490 /*
5491 * If the inodes csum_bytes is the same as the original
5492 * csum_bytes then we know we haven't raced with any free()ers
5493 * so we can just reduce our inodes csum bytes and carry on.
Wang Shilong88e081bf2013-03-01 11:36:01 +00005494 */
Josef Bacikf4881bc2013-03-25 16:03:35 -04005495 if (BTRFS_I(inode)->csum_bytes == csum_bytes) {
Wang Shilong88e081bf2013-03-01 11:36:01 +00005496 calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacikf4881bc2013-03-25 16:03:35 -04005497 } else {
5498 u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes;
5499 u64 bytes;
5500
5501 /*
5502 * This is tricky, but first we need to figure out how much we
5503 * free'd from any free-ers that occured during this
5504 * reservation, so we reset ->csum_bytes to the csum_bytes
5505 * before we dropped our lock, and then call the free for the
5506 * number of bytes that were freed while we were trying our
5507 * reservation.
5508 */
5509 bytes = csum_bytes - BTRFS_I(inode)->csum_bytes;
5510 BTRFS_I(inode)->csum_bytes = csum_bytes;
5511 to_free = calc_csum_metadata_size(inode, bytes, 0);
5512
5513
5514 /*
5515 * Now we need to see how much we would have freed had we not
5516 * been making this reservation and our ->csum_bytes were not
5517 * artificially inflated.
5518 */
5519 BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes;
5520 bytes = csum_bytes - orig_csum_bytes;
5521 bytes = calc_csum_metadata_size(inode, bytes, 0);
5522
5523 /*
5524 * Now reset ->csum_bytes to what it should be. If bytes is
5525 * more than to_free then we would have free'd more space had we
5526 * not had an artificially high ->csum_bytes, so we need to free
5527 * the remainder. If bytes is the same or less then we don't
5528 * need to do anything, the other free-ers did the correct
5529 * thing.
5530 */
5531 BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes;
5532 if (bytes > to_free)
5533 to_free = bytes - to_free;
5534 else
5535 to_free = 0;
5536 }
Wang Shilong88e081bf2013-03-01 11:36:01 +00005537 spin_unlock(&BTRFS_I(inode)->lock);
Dongsheng Yange2d1f922015-02-06 10:26:52 -05005538 if (dropped)
Wang Shilong88e081bf2013-03-01 11:36:01 +00005539 to_free += btrfs_calc_trans_metadata_size(root, dropped);
5540
5541 if (to_free) {
5542 btrfs_block_rsv_release(root, block_rsv, to_free);
5543 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5544 btrfs_ino(inode), to_free, 0);
5545 }
5546 if (delalloc_lock)
5547 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
5548 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005549}
5550
Josef Bacik7709cde2011-08-04 10:25:02 -04005551/**
5552 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
5553 * @inode: the inode to release the reservation for
5554 * @num_bytes: the number of bytes we're releasing
5555 *
5556 * This will release the metadata reservation for an inode. This can be called
5557 * once we complete IO for a given set of bytes to release their metadata
5558 * reservations.
5559 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005560void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
5561{
5562 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005563 u64 to_free = 0;
5564 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005565
5566 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik7709cde2011-08-04 10:25:02 -04005567 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacikdcab6a32015-02-11 15:08:59 -05005568 dropped = drop_outstanding_extent(inode, num_bytes);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005569
Miao Xie09348562013-02-07 10:12:07 +00005570 if (num_bytes)
5571 to_free = calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacik7709cde2011-08-04 10:25:02 -04005572 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00005573 if (dropped > 0)
5574 to_free += btrfs_calc_trans_metadata_size(root, dropped);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005575
Josef Bacik6a3891c2015-03-16 17:38:52 -04005576 if (btrfs_test_is_dummy_root(root))
5577 return;
5578
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005579 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5580 btrfs_ino(inode), to_free, 0);
Arne Jansenc5567232011-09-14 15:44:05 +02005581
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005582 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
5583 to_free);
5584}
5585
Josef Bacik7709cde2011-08-04 10:25:02 -04005586/**
5587 * btrfs_delalloc_reserve_space - reserve data and metadata space for delalloc
5588 * @inode: inode we're writing to
5589 * @num_bytes: the number of bytes we want to allocate
5590 *
5591 * This will do the following things
5592 *
5593 * o reserve space in the data space info for num_bytes
5594 * o reserve space in the metadata space info based on number of outstanding
5595 * extents and how much csums will be needed
5596 * o add to the inodes ->delalloc_bytes
5597 * o add it to the fs_info's delalloc inodes list.
5598 *
5599 * This will return 0 for success and -ENOSPC if there is no space left.
5600 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005601int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes)
5602{
5603 int ret;
5604
Dongsheng Yange2d1f922015-02-06 10:26:52 -05005605 ret = btrfs_check_data_free_space(inode, num_bytes, num_bytes);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005606 if (ret)
5607 return ret;
5608
5609 ret = btrfs_delalloc_reserve_metadata(inode, num_bytes);
5610 if (ret) {
5611 btrfs_free_reserved_data_space(inode, num_bytes);
5612 return ret;
5613 }
5614
5615 return 0;
5616}
5617
Josef Bacik7709cde2011-08-04 10:25:02 -04005618/**
5619 * btrfs_delalloc_release_space - release data and metadata space for delalloc
5620 * @inode: inode we're releasing space for
5621 * @num_bytes: the number of bytes we want to free up
5622 *
5623 * This must be matched with a call to btrfs_delalloc_reserve_space. This is
5624 * called in the case that we don't need the metadata AND data reservations
5625 * anymore. So if there is an error or we insert an inline extent.
5626 *
5627 * This function will release the metadata space that was not used and will
5628 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
5629 * list if there are no delalloc bytes left.
5630 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005631void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes)
5632{
5633 btrfs_delalloc_release_metadata(inode, num_bytes);
5634 btrfs_free_reserved_data_space(inode, num_bytes);
5635}
5636
Josef Bacikce93ec52014-11-17 15:45:48 -05005637static int update_block_group(struct btrfs_trans_handle *trans,
5638 struct btrfs_root *root, u64 bytenr,
5639 u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04005640{
Josef Bacik0af3d002010-06-21 14:48:16 -04005641 struct btrfs_block_group_cache *cache = NULL;
Chris Mason9078a3e2007-04-26 16:46:15 -04005642 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04005643 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005644 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04005645 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04005646 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04005647
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005648 /* block accounting for super block */
Miao Xieeb73c1b2013-05-15 07:48:22 +00005649 spin_lock(&info->delalloc_root_lock);
David Sterba6c417612011-04-13 15:41:04 +02005650 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005651 if (alloc)
5652 old_val += num_bytes;
5653 else
5654 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02005655 btrfs_set_super_bytes_used(info->super_copy, old_val);
Miao Xieeb73c1b2013-05-15 07:48:22 +00005656 spin_unlock(&info->delalloc_root_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005657
Chris Masond3977122009-01-05 21:25:51 -05005658 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04005659 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05005660 if (!cache)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005661 return -ENOENT;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005662 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
5663 BTRFS_BLOCK_GROUP_RAID1 |
5664 BTRFS_BLOCK_GROUP_RAID10))
5665 factor = 2;
5666 else
5667 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04005668 /*
5669 * If this block group has free space cache written out, we
5670 * need to make sure to load it if we are removing space. This
5671 * is because we need the unpinning stage to actually add the
5672 * space back to the block group, otherwise we will leak space.
5673 */
5674 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Liu Bof6373bf2012-12-27 09:01:18 +00005675 cache_block_group(cache, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04005676
Chris Masondb945352007-10-15 16:15:53 -04005677 byte_in_group = bytenr - cache->key.objectid;
5678 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04005679
Josef Bacik25179202008-10-29 14:49:05 -04005680 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04005681 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04005682
Josef Bacik73bc1872011-10-03 14:07:49 -04005683 if (btrfs_test_opt(root, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04005684 cache->disk_cache_state < BTRFS_DC_CLEAR)
5685 cache->disk_cache_state = BTRFS_DC_CLEAR;
5686
Chris Mason9078a3e2007-04-26 16:46:15 -04005687 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04005688 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04005689 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04005690 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04005691 btrfs_set_block_group_used(&cache->item, old_val);
5692 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04005693 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005694 cache->space_info->bytes_used += num_bytes;
5695 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04005696 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005697 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04005698 } else {
Chris Masondb945352007-10-15 16:15:53 -04005699 old_val -= num_bytes;
Filipe Mananaae0ab002014-11-26 15:28:52 +00005700 btrfs_set_block_group_used(&cache->item, old_val);
5701 cache->pinned += num_bytes;
5702 cache->space_info->bytes_pinned += num_bytes;
5703 cache->space_info->bytes_used -= num_bytes;
5704 cache->space_info->disk_used -= num_bytes * factor;
5705 spin_unlock(&cache->lock);
5706 spin_unlock(&cache->space_info->lock);
Josef Bacik47ab2a62014-09-18 11:20:02 -04005707
Filipe Mananaae0ab002014-11-26 15:28:52 +00005708 set_extent_dirty(info->pinned_extents,
5709 bytenr, bytenr + num_bytes - 1,
5710 GFP_NOFS | __GFP_NOFAIL);
Josef Bacik47ab2a62014-09-18 11:20:02 -04005711 /*
5712 * No longer have used bytes in this block group, queue
5713 * it for deletion.
5714 */
5715 if (old_val == 0) {
5716 spin_lock(&info->unused_bgs_lock);
5717 if (list_empty(&cache->bg_list)) {
5718 btrfs_get_block_group(cache);
5719 list_add_tail(&cache->bg_list,
5720 &info->unused_bgs);
5721 }
5722 spin_unlock(&info->unused_bgs_lock);
5723 }
Chris Masoncd1bc462007-04-27 10:08:34 -04005724 }
Chris Mason1bbc6212015-04-06 12:46:08 -07005725
5726 spin_lock(&trans->transaction->dirty_bgs_lock);
5727 if (list_empty(&cache->dirty_list)) {
5728 list_add_tail(&cache->dirty_list,
5729 &trans->transaction->dirty_bgs);
5730 trans->transaction->num_dirty_bgs++;
5731 btrfs_get_block_group(cache);
5732 }
5733 spin_unlock(&trans->transaction->dirty_bgs_lock);
5734
Chris Masonfa9c0d792009-04-03 09:47:43 -04005735 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04005736 total -= num_bytes;
5737 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005738 }
5739 return 0;
5740}
Chris Mason6324fbf2008-03-24 15:01:59 -04005741
Chris Masona061fc82008-05-07 11:43:44 -04005742static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
5743{
Josef Bacik0f9dd462008-09-23 13:14:11 -04005744 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05005745 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005746
Liu Boa1897fd2012-12-27 09:01:23 +00005747 spin_lock(&root->fs_info->block_group_cache_lock);
5748 bytenr = root->fs_info->first_logical_byte;
5749 spin_unlock(&root->fs_info->block_group_cache_lock);
5750
5751 if (bytenr < (u64)-1)
5752 return bytenr;
5753
Josef Bacik0f9dd462008-09-23 13:14:11 -04005754 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
5755 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04005756 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005757
Yan Zhengd2fb3432008-12-11 16:30:39 -05005758 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005759 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05005760
5761 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04005762}
5763
Yan, Zhengf0486c62010-05-16 10:46:25 -04005764static int pin_down_extent(struct btrfs_root *root,
5765 struct btrfs_block_group_cache *cache,
5766 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05005767{
Yan Zheng11833d62009-09-11 16:11:19 -04005768 spin_lock(&cache->space_info->lock);
5769 spin_lock(&cache->lock);
5770 cache->pinned += num_bytes;
5771 cache->space_info->bytes_pinned += num_bytes;
5772 if (reserved) {
5773 cache->reserved -= num_bytes;
5774 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05005775 }
Yan Zheng11833d62009-09-11 16:11:19 -04005776 spin_unlock(&cache->lock);
5777 spin_unlock(&cache->space_info->lock);
5778
Yan, Zhengf0486c62010-05-16 10:46:25 -04005779 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
5780 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Dongsheng Yange2d1f922015-02-06 10:26:52 -05005781 if (reserved)
Josef Bacik0be5dc62013-10-07 15:18:52 -04005782 trace_btrfs_reserved_extent_free(root, bytenr, num_bytes);
Yan324ae4d2007-11-16 14:57:08 -05005783 return 0;
5784}
Chris Mason9078a3e2007-04-26 16:46:15 -04005785
Yan, Zhengf0486c62010-05-16 10:46:25 -04005786/*
5787 * this function must be called within transaction
5788 */
5789int btrfs_pin_extent(struct btrfs_root *root,
5790 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04005791{
Yan, Zhengf0486c62010-05-16 10:46:25 -04005792 struct btrfs_block_group_cache *cache;
5793
5794 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005795 BUG_ON(!cache); /* Logic error */
Yan, Zhengf0486c62010-05-16 10:46:25 -04005796
5797 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
5798
5799 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04005800 return 0;
5801}
Zheng Yane8569812008-09-26 10:05:48 -04005802
Yan, Zhengf0486c62010-05-16 10:46:25 -04005803/*
Chris Masone688b7252011-10-31 20:52:39 -04005804 * this function must be called within transaction
Yan, Zhengf0486c62010-05-16 10:46:25 -04005805 */
Liu Bodcfac412012-12-27 09:01:20 +00005806int btrfs_pin_extent_for_log_replay(struct btrfs_root *root,
Chris Masone688b7252011-10-31 20:52:39 -04005807 u64 bytenr, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005808{
Chris Masone688b7252011-10-31 20:52:39 -04005809 struct btrfs_block_group_cache *cache;
Josef Bacikb50c6e22013-04-25 15:55:30 -04005810 int ret;
Chris Masone688b7252011-10-31 20:52:39 -04005811
5812 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005813 if (!cache)
5814 return -EINVAL;
Chris Masone688b7252011-10-31 20:52:39 -04005815
5816 /*
5817 * pull in the free space cache (if any) so that our pin
5818 * removes the free space from the cache. We have load_only set
5819 * to one because the slow code to read in the free extents does check
5820 * the pinned extents.
5821 */
Liu Bof6373bf2012-12-27 09:01:18 +00005822 cache_block_group(cache, 1);
Chris Masone688b7252011-10-31 20:52:39 -04005823
5824 pin_down_extent(root, cache, bytenr, num_bytes, 0);
5825
5826 /* remove us from the free space cache (if we're there at all) */
Josef Bacikb50c6e22013-04-25 15:55:30 -04005827 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
Chris Masone688b7252011-10-31 20:52:39 -04005828 btrfs_put_block_group(cache);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005829 return ret;
Chris Masone688b7252011-10-31 20:52:39 -04005830}
5831
Josef Bacik8c2a1a32013-06-06 13:19:32 -04005832static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes)
5833{
5834 int ret;
5835 struct btrfs_block_group_cache *block_group;
5836 struct btrfs_caching_control *caching_ctl;
5837
5838 block_group = btrfs_lookup_block_group(root->fs_info, start);
5839 if (!block_group)
5840 return -EINVAL;
5841
5842 cache_block_group(block_group, 0);
5843 caching_ctl = get_caching_control(block_group);
5844
5845 if (!caching_ctl) {
5846 /* Logic error */
5847 BUG_ON(!block_group_cache_done(block_group));
5848 ret = btrfs_remove_free_space(block_group, start, num_bytes);
5849 } else {
5850 mutex_lock(&caching_ctl->mutex);
5851
5852 if (start >= caching_ctl->progress) {
5853 ret = add_excluded_extent(root, start, num_bytes);
5854 } else if (start + num_bytes <= caching_ctl->progress) {
5855 ret = btrfs_remove_free_space(block_group,
5856 start, num_bytes);
5857 } else {
5858 num_bytes = caching_ctl->progress - start;
5859 ret = btrfs_remove_free_space(block_group,
5860 start, num_bytes);
5861 if (ret)
5862 goto out_lock;
5863
5864 num_bytes = (start + num_bytes) -
5865 caching_ctl->progress;
5866 start = caching_ctl->progress;
5867 ret = add_excluded_extent(root, start, num_bytes);
5868 }
5869out_lock:
5870 mutex_unlock(&caching_ctl->mutex);
5871 put_caching_control(caching_ctl);
5872 }
5873 btrfs_put_block_group(block_group);
5874 return ret;
5875}
5876
5877int btrfs_exclude_logged_extents(struct btrfs_root *log,
5878 struct extent_buffer *eb)
5879{
5880 struct btrfs_file_extent_item *item;
5881 struct btrfs_key key;
5882 int found_type;
5883 int i;
5884
5885 if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS))
5886 return 0;
5887
5888 for (i = 0; i < btrfs_header_nritems(eb); i++) {
5889 btrfs_item_key_to_cpu(eb, &key, i);
5890 if (key.type != BTRFS_EXTENT_DATA_KEY)
5891 continue;
5892 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
5893 found_type = btrfs_file_extent_type(eb, item);
5894 if (found_type == BTRFS_FILE_EXTENT_INLINE)
5895 continue;
5896 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
5897 continue;
5898 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
5899 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
5900 __exclude_logged_extent(log, key.objectid, key.offset);
5901 }
5902
5903 return 0;
5904}
5905
Josef Bacikfb25e912011-07-26 17:00:46 -04005906/**
5907 * btrfs_update_reserved_bytes - update the block_group and space info counters
5908 * @cache: The cache we are manipulating
5909 * @num_bytes: The number of bytes in question
5910 * @reserve: One of the reservation enums
Miao Xiee570fd22014-06-19 10:42:50 +08005911 * @delalloc: The blocks are allocated for the delalloc write
Josef Bacikfb25e912011-07-26 17:00:46 -04005912 *
5913 * This is called by the allocator when it reserves space, or by somebody who is
5914 * freeing space that was never actually used on disk. For example if you
5915 * reserve some space for a new leaf in transaction A and before transaction A
5916 * commits you free that leaf, you call this with reserve set to 0 in order to
5917 * clear the reservation.
5918 *
5919 * Metadata reservations should be called with RESERVE_ALLOC so we do the proper
5920 * ENOSPC accounting. For data we handle the reservation through clearing the
5921 * delalloc bits in the io_tree. We have to do this since we could end up
5922 * allocating less disk space for the amount of data we have reserved in the
5923 * case of compression.
5924 *
5925 * If this is a reservation and the block group has become read only we cannot
5926 * make the reservation and return -EAGAIN, otherwise this function always
5927 * succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04005928 */
Josef Bacikfb25e912011-07-26 17:00:46 -04005929static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
Miao Xiee570fd22014-06-19 10:42:50 +08005930 u64 num_bytes, int reserve, int delalloc)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005931{
Josef Bacikfb25e912011-07-26 17:00:46 -04005932 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005933 int ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005934
Josef Bacikfb25e912011-07-26 17:00:46 -04005935 spin_lock(&space_info->lock);
5936 spin_lock(&cache->lock);
5937 if (reserve != RESERVE_FREE) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005938 if (cache->ro) {
5939 ret = -EAGAIN;
5940 } else {
Josef Bacikfb25e912011-07-26 17:00:46 -04005941 cache->reserved += num_bytes;
5942 space_info->bytes_reserved += num_bytes;
5943 if (reserve == RESERVE_ALLOC) {
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005944 trace_btrfs_space_reservation(cache->fs_info,
Liu Bo2bcc0322012-03-29 09:57:44 -04005945 "space_info", space_info->flags,
5946 num_bytes, 0);
Josef Bacikfb25e912011-07-26 17:00:46 -04005947 space_info->bytes_may_use -= num_bytes;
5948 }
Miao Xiee570fd22014-06-19 10:42:50 +08005949
5950 if (delalloc)
5951 cache->delalloc_bytes += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005952 }
Josef Bacikfb25e912011-07-26 17:00:46 -04005953 } else {
5954 if (cache->ro)
5955 space_info->bytes_readonly += num_bytes;
5956 cache->reserved -= num_bytes;
5957 space_info->bytes_reserved -= num_bytes;
Miao Xiee570fd22014-06-19 10:42:50 +08005958
5959 if (delalloc)
5960 cache->delalloc_bytes -= num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005961 }
Josef Bacikfb25e912011-07-26 17:00:46 -04005962 spin_unlock(&cache->lock);
5963 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005964 return ret;
5965}
5966
Jeff Mahoney143bede2012-03-01 14:56:26 +01005967void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04005968 struct btrfs_root *root)
5969{
5970 struct btrfs_fs_info *fs_info = root->fs_info;
5971 struct btrfs_caching_control *next;
5972 struct btrfs_caching_control *caching_ctl;
5973 struct btrfs_block_group_cache *cache;
5974
Josef Bacik9e351cc2014-03-13 15:42:13 -04005975 down_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04005976
5977 list_for_each_entry_safe(caching_ctl, next,
5978 &fs_info->caching_block_groups, list) {
5979 cache = caching_ctl->block_group;
5980 if (block_group_cache_done(cache)) {
5981 cache->last_byte_to_unpin = (u64)-1;
5982 list_del_init(&caching_ctl->list);
5983 put_caching_control(caching_ctl);
5984 } else {
5985 cache->last_byte_to_unpin = caching_ctl->progress;
5986 }
5987 }
5988
5989 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
5990 fs_info->pinned_extents = &fs_info->freed_extents[1];
5991 else
5992 fs_info->pinned_extents = &fs_info->freed_extents[0];
5993
Josef Bacik9e351cc2014-03-13 15:42:13 -04005994 up_write(&fs_info->commit_root_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005995
5996 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04005997}
5998
Filipe Manana678886b2014-12-07 21:31:47 +00005999static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end,
6000 const bool return_free_space)
Yan Zheng11833d62009-09-11 16:11:19 -04006001{
6002 struct btrfs_fs_info *fs_info = root->fs_info;
6003 struct btrfs_block_group_cache *cache = NULL;
Josef Bacik7b398f82012-10-22 15:52:28 -04006004 struct btrfs_space_info *space_info;
6005 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Yan Zheng11833d62009-09-11 16:11:19 -04006006 u64 len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006007 bool readonly;
Yan Zheng11833d62009-09-11 16:11:19 -04006008
6009 while (start <= end) {
Josef Bacik7b398f82012-10-22 15:52:28 -04006010 readonly = false;
Yan Zheng11833d62009-09-11 16:11:19 -04006011 if (!cache ||
6012 start >= cache->key.objectid + cache->key.offset) {
6013 if (cache)
6014 btrfs_put_block_group(cache);
6015 cache = btrfs_lookup_block_group(fs_info, start);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006016 BUG_ON(!cache); /* Logic error */
Yan Zheng11833d62009-09-11 16:11:19 -04006017 }
6018
6019 len = cache->key.objectid + cache->key.offset - start;
6020 len = min(len, end + 1 - start);
6021
6022 if (start < cache->last_byte_to_unpin) {
6023 len = min(len, cache->last_byte_to_unpin - start);
Filipe Manana678886b2014-12-07 21:31:47 +00006024 if (return_free_space)
6025 btrfs_add_free_space(cache, start, len);
Yan Zheng11833d62009-09-11 16:11:19 -04006026 }
Josef Bacik25179202008-10-29 14:49:05 -04006027
Yan, Zhengf0486c62010-05-16 10:46:25 -04006028 start += len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006029 space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006030
Josef Bacik7b398f82012-10-22 15:52:28 -04006031 spin_lock(&space_info->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006032 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006033 cache->pinned -= len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006034 space_info->bytes_pinned -= len;
Liu Bod288db52014-07-02 16:58:01 +08006035 percpu_counter_add(&space_info->total_bytes_pinned, -len);
Josef Bacik7b398f82012-10-22 15:52:28 -04006036 if (cache->ro) {
6037 space_info->bytes_readonly += len;
6038 readonly = true;
6039 }
Josef Bacik25179202008-10-29 14:49:05 -04006040 spin_unlock(&cache->lock);
Josef Bacik7b398f82012-10-22 15:52:28 -04006041 if (!readonly && global_rsv->space_info == space_info) {
6042 spin_lock(&global_rsv->lock);
6043 if (!global_rsv->full) {
6044 len = min(len, global_rsv->size -
6045 global_rsv->reserved);
6046 global_rsv->reserved += len;
6047 space_info->bytes_may_use += len;
6048 if (global_rsv->reserved >= global_rsv->size)
6049 global_rsv->full = 1;
6050 }
6051 spin_unlock(&global_rsv->lock);
6052 }
6053 spin_unlock(&space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006054 }
6055
6056 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006057 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04006058 return 0;
6059}
6060
6061int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04006062 struct btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -05006063{
Yan Zheng11833d62009-09-11 16:11:19 -04006064 struct btrfs_fs_info *fs_info = root->fs_info;
6065 struct extent_io_tree *unpin;
Chris Mason1a5bc162007-10-15 16:15:26 -04006066 u64 start;
6067 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05006068 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05006069
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006070 if (trans->aborted)
6071 return 0;
6072
Yan Zheng11833d62009-09-11 16:11:19 -04006073 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6074 unpin = &fs_info->freed_extents[1];
6075 else
6076 unpin = &fs_info->freed_extents[0];
6077
Chris Masond3977122009-01-05 21:25:51 -05006078 while (1) {
Filipe Mananad4b450c2015-01-29 19:18:25 +00006079 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Chris Mason1a5bc162007-10-15 16:15:26 -04006080 ret = find_first_extent_bit(unpin, 0, &start, &end,
Josef Bacike6138872012-09-27 17:07:30 -04006081 EXTENT_DIRTY, NULL);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006082 if (ret) {
6083 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05006084 break;
Filipe Mananad4b450c2015-01-29 19:18:25 +00006085 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05006086
Li Dongyang5378e602011-03-24 10:24:27 +00006087 if (btrfs_test_opt(root, DISCARD))
6088 ret = btrfs_discard_extent(root, start,
6089 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05006090
Chris Mason1a5bc162007-10-15 16:15:26 -04006091 clear_extent_dirty(unpin, start, end, GFP_NOFS);
Filipe Manana678886b2014-12-07 21:31:47 +00006092 unpin_extent_range(root, start, end, true);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006093 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masonb9473432009-03-13 11:00:37 -04006094 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05006095 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006096
Chris Masone20d96d2007-03-22 12:13:20 -04006097 return 0;
6098}
6099
Josef Bacikb150a4f2013-06-19 15:00:04 -04006100static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes,
6101 u64 owner, u64 root_objectid)
6102{
6103 struct btrfs_space_info *space_info;
6104 u64 flags;
6105
6106 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
6107 if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID)
6108 flags = BTRFS_BLOCK_GROUP_SYSTEM;
6109 else
6110 flags = BTRFS_BLOCK_GROUP_METADATA;
6111 } else {
6112 flags = BTRFS_BLOCK_GROUP_DATA;
6113 }
6114
6115 space_info = __find_space_info(fs_info, flags);
6116 BUG_ON(!space_info); /* Logic bug */
6117 percpu_counter_add(&space_info->total_bytes_pinned, num_bytes);
6118}
6119
6120
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006121static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
6122 struct btrfs_root *root,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006123 struct btrfs_delayed_ref_node *node, u64 parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006124 u64 root_objectid, u64 owner_objectid,
6125 u64 owner_offset, int refs_to_drop,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006126 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05006127{
Chris Masone2fa7222007-03-12 16:22:34 -04006128 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006129 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04006130 struct btrfs_fs_info *info = root->fs_info;
6131 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04006132 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006133 struct btrfs_extent_item *ei;
6134 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05006135 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006136 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05006137 int extent_slot = 0;
6138 int found_extent = 0;
6139 int num_to_del = 1;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006140 int no_quota = node->no_quota;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006141 u32 item_size;
6142 u64 refs;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006143 u64 bytenr = node->bytenr;
6144 u64 num_bytes = node->num_bytes;
Josef Bacikfcebe452014-05-13 17:30:47 -07006145 int last_ref = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05006146 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
6147 SKINNY_METADATA);
Chris Mason037e6392007-03-07 11:50:24 -05006148
Josef Bacikfcebe452014-05-13 17:30:47 -07006149 if (!info->quota_enabled || !is_fstree(root_objectid))
6150 no_quota = 1;
6151
Chris Mason5caf2a02007-04-02 11:20:42 -04006152 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04006153 if (!path)
6154 return -ENOMEM;
6155
Chris Mason3c12ac72008-04-21 12:01:38 -04006156 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04006157 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006158
6159 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
6160 BUG_ON(!is_data && refs_to_drop != 1);
6161
Josef Bacik3173a182013-03-07 14:22:04 -05006162 if (is_data)
6163 skinny_metadata = 0;
6164
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006165 ret = lookup_extent_backref(trans, extent_root, path, &iref,
6166 bytenr, num_bytes, parent,
6167 root_objectid, owner_objectid,
6168 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05006169 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05006170 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006171 while (extent_slot >= 0) {
6172 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05006173 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006174 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05006175 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006176 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
6177 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05006178 found_extent = 1;
6179 break;
6180 }
Josef Bacik3173a182013-03-07 14:22:04 -05006181 if (key.type == BTRFS_METADATA_ITEM_KEY &&
6182 key.offset == owner_objectid) {
6183 found_extent = 1;
6184 break;
6185 }
Chris Mason952fcca2008-02-18 16:33:44 -05006186 if (path->slots[0] - extent_slot > 5)
6187 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006188 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05006189 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006190#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6191 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
6192 if (found_extent && item_size < sizeof(*ei))
6193 found_extent = 0;
6194#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04006195 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006196 BUG_ON(iref);
Chris Mason56bec292009-03-13 10:10:06 -04006197 ret = remove_extent_backref(trans, extent_root, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006198 NULL, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07006199 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06006200 if (ret) {
6201 btrfs_abort_transaction(trans, extent_root, ret);
6202 goto out;
6203 }
David Sterbab3b4aa72011-04-21 01:20:15 +02006204 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04006205 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006206
6207 key.objectid = bytenr;
6208 key.type = BTRFS_EXTENT_ITEM_KEY;
6209 key.offset = num_bytes;
6210
Josef Bacik3173a182013-03-07 14:22:04 -05006211 if (!is_data && skinny_metadata) {
6212 key.type = BTRFS_METADATA_ITEM_KEY;
6213 key.offset = owner_objectid;
6214 }
6215
Zheng Yan31840ae2008-09-23 13:14:14 -04006216 ret = btrfs_search_slot(trans, extent_root,
6217 &key, path, -1, 1);
Josef Bacik3173a182013-03-07 14:22:04 -05006218 if (ret > 0 && skinny_metadata && path->slots[0]) {
6219 /*
6220 * Couldn't find our skinny metadata item,
6221 * see if we have ye olde extent item.
6222 */
6223 path->slots[0]--;
6224 btrfs_item_key_to_cpu(path->nodes[0], &key,
6225 path->slots[0]);
6226 if (key.objectid == bytenr &&
6227 key.type == BTRFS_EXTENT_ITEM_KEY &&
6228 key.offset == num_bytes)
6229 ret = 0;
6230 }
6231
6232 if (ret > 0 && skinny_metadata) {
6233 skinny_metadata = false;
Filipe Manana9ce49a02014-04-24 15:15:28 +01006234 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05006235 key.type = BTRFS_EXTENT_ITEM_KEY;
6236 key.offset = num_bytes;
6237 btrfs_release_path(path);
6238 ret = btrfs_search_slot(trans, extent_root,
6239 &key, path, -1, 1);
6240 }
6241
Josef Bacikf3465ca2008-11-12 14:19:50 -05006242 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006243 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006244 ret, bytenr);
Josef Bacikb783e622011-07-13 15:03:50 +00006245 if (ret > 0)
6246 btrfs_print_leaf(extent_root,
6247 path->nodes[0]);
Josef Bacikf3465ca2008-11-12 14:19:50 -05006248 }
David Sterba005d6422012-09-18 07:52:32 -06006249 if (ret < 0) {
6250 btrfs_abort_transaction(trans, extent_root, ret);
6251 goto out;
6252 }
Zheng Yan31840ae2008-09-23 13:14:14 -04006253 extent_slot = path->slots[0];
6254 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306255 } else if (WARN_ON(ret == -ENOENT)) {
Chris Mason7bb86312007-12-11 09:25:06 -05006256 btrfs_print_leaf(extent_root, path->nodes[0]);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006257 btrfs_err(info,
6258 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006259 bytenr, parent, root_objectid, owner_objectid,
6260 owner_offset);
Josef Bacikc4a050b2014-03-14 16:36:53 -04006261 btrfs_abort_transaction(trans, extent_root, ret);
6262 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006263 } else {
David Sterba005d6422012-09-18 07:52:32 -06006264 btrfs_abort_transaction(trans, extent_root, ret);
6265 goto out;
Chris Mason7bb86312007-12-11 09:25:06 -05006266 }
Chris Mason5f39d392007-10-15 16:14:19 -04006267
6268 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006269 item_size = btrfs_item_size_nr(leaf, extent_slot);
6270#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6271 if (item_size < sizeof(*ei)) {
6272 BUG_ON(found_extent || extent_slot != path->slots[0]);
6273 ret = convert_extent_item_v0(trans, extent_root, path,
6274 owner_objectid, 0);
David Sterba005d6422012-09-18 07:52:32 -06006275 if (ret < 0) {
6276 btrfs_abort_transaction(trans, extent_root, ret);
6277 goto out;
6278 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006279
David Sterbab3b4aa72011-04-21 01:20:15 +02006280 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006281 path->leave_spinning = 1;
6282
6283 key.objectid = bytenr;
6284 key.type = BTRFS_EXTENT_ITEM_KEY;
6285 key.offset = num_bytes;
6286
6287 ret = btrfs_search_slot(trans, extent_root, &key, path,
6288 -1, 1);
6289 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006290 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006291 ret, bytenr);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006292 btrfs_print_leaf(extent_root, path->nodes[0]);
6293 }
David Sterba005d6422012-09-18 07:52:32 -06006294 if (ret < 0) {
6295 btrfs_abort_transaction(trans, extent_root, ret);
6296 goto out;
6297 }
6298
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006299 extent_slot = path->slots[0];
6300 leaf = path->nodes[0];
6301 item_size = btrfs_item_size_nr(leaf, extent_slot);
6302 }
6303#endif
6304 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05006305 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04006306 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05006307 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
6308 key.type == BTRFS_EXTENT_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006309 struct btrfs_tree_block_info *bi;
6310 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
6311 bi = (struct btrfs_tree_block_info *)(ei + 1);
6312 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05006313 }
6314
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006315 refs = btrfs_extent_refs(leaf, ei);
Josef Bacik32b02532013-04-24 16:38:50 -04006316 if (refs < refs_to_drop) {
6317 btrfs_err(info, "trying to drop %d refs but we only have %Lu "
David Sterba351fd352014-05-15 16:48:20 +02006318 "for bytenr %Lu", refs_to_drop, refs, bytenr);
Josef Bacik32b02532013-04-24 16:38:50 -04006319 ret = -EINVAL;
6320 btrfs_abort_transaction(trans, extent_root, ret);
6321 goto out;
6322 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006323 refs -= refs_to_drop;
6324
6325 if (refs > 0) {
6326 if (extent_op)
6327 __run_delayed_extent_op(extent_op, leaf, ei);
6328 /*
6329 * In the case of inline back ref, reference count will
6330 * be updated by remove_extent_backref
6331 */
6332 if (iref) {
6333 BUG_ON(!found_extent);
6334 } else {
6335 btrfs_set_extent_refs(leaf, ei, refs);
6336 btrfs_mark_buffer_dirty(leaf);
6337 }
6338 if (found_extent) {
6339 ret = remove_extent_backref(trans, extent_root, path,
6340 iref, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07006341 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06006342 if (ret) {
6343 btrfs_abort_transaction(trans, extent_root, ret);
6344 goto out;
6345 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006346 }
Josef Bacikb150a4f2013-06-19 15:00:04 -04006347 add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid,
6348 root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006349 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006350 if (found_extent) {
6351 BUG_ON(is_data && refs_to_drop !=
6352 extent_data_ref_count(root, path, iref));
6353 if (iref) {
6354 BUG_ON(path->slots[0] != extent_slot);
6355 } else {
6356 BUG_ON(path->slots[0] != extent_slot + 1);
6357 path->slots[0] = extent_slot;
6358 num_to_del = 2;
6359 }
Chris Mason78fae272007-03-25 11:35:08 -04006360 }
Chris Masonb9473432009-03-13 11:00:37 -04006361
Josef Bacikfcebe452014-05-13 17:30:47 -07006362 last_ref = 1;
Chris Mason952fcca2008-02-18 16:33:44 -05006363 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
6364 num_to_del);
David Sterba005d6422012-09-18 07:52:32 -06006365 if (ret) {
6366 btrfs_abort_transaction(trans, extent_root, ret);
6367 goto out;
6368 }
David Sterbab3b4aa72011-04-21 01:20:15 +02006369 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01006370
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006371 if (is_data) {
Chris Mason459931e2008-12-10 09:10:46 -05006372 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
David Sterba005d6422012-09-18 07:52:32 -06006373 if (ret) {
6374 btrfs_abort_transaction(trans, extent_root, ret);
6375 goto out;
6376 }
Chris Mason459931e2008-12-10 09:10:46 -05006377 }
6378
Josef Bacikce93ec52014-11-17 15:45:48 -05006379 ret = update_block_group(trans, root, bytenr, num_bytes, 0);
David Sterba005d6422012-09-18 07:52:32 -06006380 if (ret) {
6381 btrfs_abort_transaction(trans, extent_root, ret);
6382 goto out;
6383 }
Chris Masona28ec192007-03-06 20:08:01 -05006384 }
Josef Bacikfcebe452014-05-13 17:30:47 -07006385 btrfs_release_path(path);
6386
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006387out:
Chris Mason5caf2a02007-04-02 11:20:42 -04006388 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05006389 return ret;
6390}
6391
6392/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04006393 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04006394 * delayed ref for that extent as well. This searches the delayed ref tree for
6395 * a given extent, and if there are no other delayed refs to be processed, it
6396 * removes it from the tree.
6397 */
6398static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
6399 struct btrfs_root *root, u64 bytenr)
6400{
6401 struct btrfs_delayed_ref_head *head;
6402 struct btrfs_delayed_ref_root *delayed_refs;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006403 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04006404
6405 delayed_refs = &trans->transaction->delayed_refs;
6406 spin_lock(&delayed_refs->lock);
6407 head = btrfs_find_delayed_ref_head(trans, bytenr);
6408 if (!head)
Chris Masoncf93da72014-01-29 07:02:40 -08006409 goto out_delayed_unlock;
Chris Mason1887be62009-03-13 10:11:24 -04006410
Josef Bacikd7df2c72014-01-23 09:21:38 -05006411 spin_lock(&head->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08006412 if (!list_empty(&head->ref_list))
Chris Mason1887be62009-03-13 10:11:24 -04006413 goto out;
6414
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006415 if (head->extent_op) {
6416 if (!head->must_insert_reserved)
6417 goto out;
Miao Xie78a61842012-11-21 02:21:28 +00006418 btrfs_free_delayed_extent_op(head->extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006419 head->extent_op = NULL;
6420 }
6421
Chris Mason1887be62009-03-13 10:11:24 -04006422 /*
6423 * waiting for the lock here would deadlock. If someone else has it
6424 * locked they are already in the process of dropping it anyway
6425 */
6426 if (!mutex_trylock(&head->mutex))
6427 goto out;
6428
6429 /*
6430 * at this point we have a head with no other entries. Go
6431 * ahead and process it.
6432 */
6433 head->node.in_tree = 0;
Liu Boc46effa2013-10-14 12:59:45 +08006434 rb_erase(&head->href_node, &delayed_refs->href_root);
Chris Masonc3e69d52009-03-13 10:17:05 -04006435
Josef Bacikd7df2c72014-01-23 09:21:38 -05006436 atomic_dec(&delayed_refs->num_entries);
Chris Mason1887be62009-03-13 10:11:24 -04006437
6438 /*
6439 * we don't take a ref on the node because we're removing it from the
6440 * tree, so we just steal the ref the tree was holding.
6441 */
Chris Masonc3e69d52009-03-13 10:17:05 -04006442 delayed_refs->num_heads--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05006443 if (head->processing == 0)
Chris Masonc3e69d52009-03-13 10:17:05 -04006444 delayed_refs->num_heads_ready--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05006445 head->processing = 0;
6446 spin_unlock(&head->lock);
Chris Mason1887be62009-03-13 10:11:24 -04006447 spin_unlock(&delayed_refs->lock);
6448
Yan, Zhengf0486c62010-05-16 10:46:25 -04006449 BUG_ON(head->extent_op);
6450 if (head->must_insert_reserved)
6451 ret = 1;
6452
6453 mutex_unlock(&head->mutex);
Chris Mason1887be62009-03-13 10:11:24 -04006454 btrfs_put_delayed_ref(&head->node);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006455 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04006456out:
Josef Bacikd7df2c72014-01-23 09:21:38 -05006457 spin_unlock(&head->lock);
Chris Masoncf93da72014-01-29 07:02:40 -08006458
6459out_delayed_unlock:
Chris Mason1887be62009-03-13 10:11:24 -04006460 spin_unlock(&delayed_refs->lock);
6461 return 0;
6462}
6463
Yan, Zhengf0486c62010-05-16 10:46:25 -04006464void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
6465 struct btrfs_root *root,
6466 struct extent_buffer *buf,
Jan Schmidt5581a512012-05-16 17:04:52 +02006467 u64 parent, int last_ref)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006468{
Josef Bacikb150a4f2013-06-19 15:00:04 -04006469 int pin = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006470 int ret;
6471
6472 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006473 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
6474 buf->start, buf->len,
6475 parent, root->root_key.objectid,
6476 btrfs_header_level(buf),
Jan Schmidt5581a512012-05-16 17:04:52 +02006477 BTRFS_DROP_DELAYED_REF, NULL, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006478 BUG_ON(ret); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006479 }
6480
6481 if (!last_ref)
6482 return;
6483
Yan, Zhengf0486c62010-05-16 10:46:25 -04006484 if (btrfs_header_generation(buf) == trans->transid) {
Filipe Manana62198722015-01-06 20:18:45 +00006485 struct btrfs_block_group_cache *cache;
6486
Yan, Zhengf0486c62010-05-16 10:46:25 -04006487 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
6488 ret = check_ref_cleanup(trans, root, buf->start);
6489 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04006490 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006491 }
6492
Filipe Manana62198722015-01-06 20:18:45 +00006493 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
6494
Yan, Zhengf0486c62010-05-16 10:46:25 -04006495 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
6496 pin_down_extent(root, cache, buf->start, buf->len, 1);
Filipe Manana62198722015-01-06 20:18:45 +00006497 btrfs_put_block_group(cache);
Josef Bacik37be25b2011-08-05 10:25:38 -04006498 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006499 }
6500
6501 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
6502
6503 btrfs_add_free_space(cache, buf->start, buf->len);
Miao Xiee570fd22014-06-19 10:42:50 +08006504 btrfs_update_reserved_bytes(cache, buf->len, RESERVE_FREE, 0);
Filipe Manana62198722015-01-06 20:18:45 +00006505 btrfs_put_block_group(cache);
Josef Bacik0be5dc62013-10-07 15:18:52 -04006506 trace_btrfs_reserved_extent_free(root, buf->start, buf->len);
Josef Bacikb150a4f2013-06-19 15:00:04 -04006507 pin = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006508 }
6509out:
Josef Bacikb150a4f2013-06-19 15:00:04 -04006510 if (pin)
6511 add_pinned_bytes(root->fs_info, buf->len,
6512 btrfs_header_level(buf),
6513 root->root_key.objectid);
6514
Josef Bacika826d6d2011-03-16 13:42:43 -04006515 /*
6516 * Deleting the buffer, clear the corrupt flag since it doesn't matter
6517 * anymore.
6518 */
6519 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006520}
6521
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006522/* Can return -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006523int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root,
6524 u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid,
Josef Bacikfcebe452014-05-13 17:30:47 -07006525 u64 owner, u64 offset, int no_quota)
Chris Mason925baed2008-06-25 16:01:30 -04006526{
6527 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006528 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason925baed2008-06-25 16:01:30 -04006529
David Sterbafccb84c2014-09-29 23:53:21 +02006530 if (btrfs_test_is_dummy_root(root))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04006531 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02006532
Josef Bacikb150a4f2013-06-19 15:00:04 -04006533 add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid);
6534
Chris Mason56bec292009-03-13 10:10:06 -04006535 /*
6536 * tree log blocks never actually go into the extent allocation
6537 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04006538 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006539 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
6540 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04006541 /* unlocks the pinned mutex */
Yan Zheng11833d62009-09-11 16:11:19 -04006542 btrfs_pin_extent(root, bytenr, num_bytes, 1);
Chris Mason56bec292009-03-13 10:10:06 -04006543 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006544 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006545 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
6546 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006547 parent, root_objectid, (int)owner,
Josef Bacikfcebe452014-05-13 17:30:47 -07006548 BTRFS_DROP_DELAYED_REF, NULL, no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006549 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006550 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
6551 num_bytes,
6552 parent, root_objectid, owner,
6553 offset, BTRFS_DROP_DELAYED_REF,
Josef Bacikfcebe452014-05-13 17:30:47 -07006554 NULL, no_quota);
Chris Mason56bec292009-03-13 10:10:06 -04006555 }
Chris Mason925baed2008-06-25 16:01:30 -04006556 return ret;
6557}
6558
Chris Masonfec577f2007-02-26 10:40:21 -05006559/*
Josef Bacik817d52f2009-07-13 21:29:25 -04006560 * when we wait for progress in the block group caching, its because
6561 * our allocation attempt failed at least once. So, we must sleep
6562 * and let some progress happen before we try again.
6563 *
6564 * This function will sleep at least once waiting for new free space to
6565 * show up, and then it will check the block group free space numbers
6566 * for our min num_bytes. Another option is to have it go ahead
6567 * and look in the rbtree for a free extent of a given size, but this
6568 * is a good start.
Josef Bacik36cce922013-08-05 11:15:21 -04006569 *
6570 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
6571 * any of the information in this block group.
Josef Bacik817d52f2009-07-13 21:29:25 -04006572 */
Josef Bacik36cce922013-08-05 11:15:21 -04006573static noinline void
Josef Bacik817d52f2009-07-13 21:29:25 -04006574wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
6575 u64 num_bytes)
6576{
Yan Zheng11833d62009-09-11 16:11:19 -04006577 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04006578
Yan Zheng11833d62009-09-11 16:11:19 -04006579 caching_ctl = get_caching_control(cache);
6580 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04006581 return;
Josef Bacik817d52f2009-07-13 21:29:25 -04006582
Yan Zheng11833d62009-09-11 16:11:19 -04006583 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08006584 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04006585
6586 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -04006587}
6588
6589static noinline int
6590wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
6591{
6592 struct btrfs_caching_control *caching_ctl;
Josef Bacik36cce922013-08-05 11:15:21 -04006593 int ret = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006594
6595 caching_ctl = get_caching_control(cache);
6596 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04006597 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006598
6599 wait_event(caching_ctl->wait, block_group_cache_done(cache));
Josef Bacik36cce922013-08-05 11:15:21 -04006600 if (cache->cached == BTRFS_CACHE_ERROR)
6601 ret = -EIO;
Yan Zheng11833d62009-09-11 16:11:19 -04006602 put_caching_control(caching_ctl);
Josef Bacik36cce922013-08-05 11:15:21 -04006603 return ret;
Josef Bacik817d52f2009-07-13 21:29:25 -04006604}
6605
Liu Bo31e50222012-11-21 14:18:10 +00006606int __get_raid_index(u64 flags)
Yan, Zhengb742bb82010-05-16 10:46:24 -04006607{
Ilya Dryomov7738a532012-03-27 17:09:17 +03006608 if (flags & BTRFS_BLOCK_GROUP_RAID10)
Miao Xiee6ec7162013-01-17 05:38:51 +00006609 return BTRFS_RAID_RAID10;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006610 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
Miao Xiee6ec7162013-01-17 05:38:51 +00006611 return BTRFS_RAID_RAID1;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006612 else if (flags & BTRFS_BLOCK_GROUP_DUP)
Miao Xiee6ec7162013-01-17 05:38:51 +00006613 return BTRFS_RAID_DUP;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006614 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
Miao Xiee6ec7162013-01-17 05:38:51 +00006615 return BTRFS_RAID_RAID0;
David Woodhouse53b381b2013-01-29 18:40:14 -05006616 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
Chris Masone942f882013-02-20 14:06:05 -05006617 return BTRFS_RAID_RAID5;
David Woodhouse53b381b2013-01-29 18:40:14 -05006618 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
Chris Masone942f882013-02-20 14:06:05 -05006619 return BTRFS_RAID_RAID6;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006620
Chris Masone942f882013-02-20 14:06:05 -05006621 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
Yan, Zhengb742bb82010-05-16 10:46:24 -04006622}
6623
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04006624int get_block_group_index(struct btrfs_block_group_cache *cache)
Ilya Dryomov7738a532012-03-27 17:09:17 +03006625{
Liu Bo31e50222012-11-21 14:18:10 +00006626 return __get_raid_index(cache->flags);
Ilya Dryomov7738a532012-03-27 17:09:17 +03006627}
6628
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04006629static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = {
6630 [BTRFS_RAID_RAID10] = "raid10",
6631 [BTRFS_RAID_RAID1] = "raid1",
6632 [BTRFS_RAID_DUP] = "dup",
6633 [BTRFS_RAID_RAID0] = "raid0",
6634 [BTRFS_RAID_SINGLE] = "single",
6635 [BTRFS_RAID_RAID5] = "raid5",
6636 [BTRFS_RAID_RAID6] = "raid6",
6637};
6638
Jeff Mahoney1b8e5df2013-11-20 16:50:23 -05006639static const char *get_raid_name(enum btrfs_raid_types type)
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04006640{
6641 if (type >= BTRFS_NR_RAID_TYPES)
6642 return NULL;
6643
6644 return btrfs_raid_type_names[type];
6645}
6646
Josef Bacik817d52f2009-07-13 21:29:25 -04006647enum btrfs_loop_type {
Josef Bacik285ff5a2012-01-13 15:27:45 -05006648 LOOP_CACHING_NOWAIT = 0,
6649 LOOP_CACHING_WAIT = 1,
6650 LOOP_ALLOC_CHUNK = 2,
6651 LOOP_NO_EMPTY_SIZE = 3,
Josef Bacik817d52f2009-07-13 21:29:25 -04006652};
6653
Miao Xiee570fd22014-06-19 10:42:50 +08006654static inline void
6655btrfs_lock_block_group(struct btrfs_block_group_cache *cache,
6656 int delalloc)
6657{
6658 if (delalloc)
6659 down_read(&cache->data_rwsem);
6660}
6661
6662static inline void
6663btrfs_grab_block_group(struct btrfs_block_group_cache *cache,
6664 int delalloc)
6665{
6666 btrfs_get_block_group(cache);
6667 if (delalloc)
6668 down_read(&cache->data_rwsem);
6669}
6670
6671static struct btrfs_block_group_cache *
6672btrfs_lock_cluster(struct btrfs_block_group_cache *block_group,
6673 struct btrfs_free_cluster *cluster,
6674 int delalloc)
6675{
6676 struct btrfs_block_group_cache *used_bg;
6677 bool locked = false;
6678again:
6679 spin_lock(&cluster->refill_lock);
6680 if (locked) {
6681 if (used_bg == cluster->block_group)
6682 return used_bg;
6683
6684 up_read(&used_bg->data_rwsem);
6685 btrfs_put_block_group(used_bg);
6686 }
6687
6688 used_bg = cluster->block_group;
6689 if (!used_bg)
6690 return NULL;
6691
6692 if (used_bg == block_group)
6693 return used_bg;
6694
6695 btrfs_get_block_group(used_bg);
6696
6697 if (!delalloc)
6698 return used_bg;
6699
6700 if (down_read_trylock(&used_bg->data_rwsem))
6701 return used_bg;
6702
6703 spin_unlock(&cluster->refill_lock);
6704 down_read(&used_bg->data_rwsem);
6705 locked = true;
6706 goto again;
6707}
6708
6709static inline void
6710btrfs_release_block_group(struct btrfs_block_group_cache *cache,
6711 int delalloc)
6712{
6713 if (delalloc)
6714 up_read(&cache->data_rwsem);
6715 btrfs_put_block_group(cache);
6716}
6717
Josef Bacik817d52f2009-07-13 21:29:25 -04006718/*
Chris Masonfec577f2007-02-26 10:40:21 -05006719 * walks the btree of allocated extents and find a hole of a given size.
6720 * The key ins is changed to record the hole:
Miao Xiea4820392013-09-09 13:19:42 +08006721 * ins->objectid == start position
Chris Mason62e27492007-03-15 12:56:47 -04006722 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Miao Xiea4820392013-09-09 13:19:42 +08006723 * ins->offset == the size of the hole.
Chris Masonfec577f2007-02-26 10:40:21 -05006724 * Any available blocks before search_start are skipped.
Miao Xiea4820392013-09-09 13:19:42 +08006725 *
6726 * If there is no suitable free space, we will record the max size of
6727 * the free space extent currently.
Chris Masonfec577f2007-02-26 10:40:21 -05006728 */
Josef Bacik00361582013-08-14 14:02:47 -04006729static noinline int find_free_extent(struct btrfs_root *orig_root,
Chris Mason98ed5172008-01-03 10:01:48 -05006730 u64 num_bytes, u64 empty_size,
Chris Mason98ed5172008-01-03 10:01:48 -05006731 u64 hint_byte, struct btrfs_key *ins,
Miao Xiee570fd22014-06-19 10:42:50 +08006732 u64 flags, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05006733{
Josef Bacik80eb2342008-10-29 14:49:05 -04006734 int ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05006735 struct btrfs_root *root = orig_root->fs_info->extent_root;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006736 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04006737 struct btrfs_block_group_cache *block_group = NULL;
Josef Bacik81c9ad22012-01-18 10:56:06 -05006738 u64 search_start = 0;
Miao Xiea4820392013-09-09 13:19:42 +08006739 u64 max_extent_size = 0;
Chris Mason239b14b2008-03-24 15:02:07 -04006740 int empty_cluster = 2 * 1024 * 1024;
Josef Bacik80eb2342008-10-29 14:49:05 -04006741 struct btrfs_space_info *space_info;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006742 int loop = 0;
David Sterbab6919a52013-04-29 13:39:40 +00006743 int index = __get_raid_index(flags);
6744 int alloc_type = (flags & BTRFS_BLOCK_GROUP_DATA) ?
Josef Bacikfb25e912011-07-26 17:00:46 -04006745 RESERVE_ALLOC_NO_ACCOUNT : RESERVE_ALLOC;
Josef Bacik0a243252009-09-11 16:11:20 -04006746 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006747 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04006748 bool use_cluster = true;
Miao Xie60d2adb2011-09-09 17:34:35 +08006749 bool have_caching_bg = false;
Chris Masonfec577f2007-02-26 10:40:21 -05006750
Chris Masondb945352007-10-15 16:15:53 -04006751 WARN_ON(num_bytes < root->sectorsize);
David Sterba962a2982014-06-04 18:41:45 +02006752 ins->type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacik80eb2342008-10-29 14:49:05 -04006753 ins->objectid = 0;
6754 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04006755
David Sterbab6919a52013-04-29 13:39:40 +00006756 trace_find_free_extent(orig_root, num_bytes, empty_size, flags);
Josef Bacik3f7de032011-11-10 08:29:20 -05006757
David Sterbab6919a52013-04-29 13:39:40 +00006758 space_info = __find_space_info(root->fs_info, flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00006759 if (!space_info) {
David Sterbab6919a52013-04-29 13:39:40 +00006760 btrfs_err(root->fs_info, "No space info for %llu", flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00006761 return -ENOSPC;
6762 }
Josef Bacik2552d172009-04-03 10:14:19 -04006763
Josef Bacik67377732010-09-16 16:19:09 -04006764 /*
6765 * If the space info is for both data and metadata it means we have a
6766 * small filesystem and we can't use the clustering stuff.
6767 */
6768 if (btrfs_mixed_space_info(space_info))
6769 use_cluster = false;
6770
David Sterbab6919a52013-04-29 13:39:40 +00006771 if (flags & BTRFS_BLOCK_GROUP_METADATA && use_cluster) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006772 last_ptr = &root->fs_info->meta_alloc_cluster;
Chris Mason536ac8a2009-02-12 09:41:38 -05006773 if (!btrfs_test_opt(root, SSD))
6774 empty_cluster = 64 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04006775 }
6776
David Sterbab6919a52013-04-29 13:39:40 +00006777 if ((flags & BTRFS_BLOCK_GROUP_DATA) && use_cluster &&
Josef Bacik67377732010-09-16 16:19:09 -04006778 btrfs_test_opt(root, SSD)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006779 last_ptr = &root->fs_info->data_alloc_cluster;
6780 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04006781
Chris Mason239b14b2008-03-24 15:02:07 -04006782 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006783 spin_lock(&last_ptr->lock);
6784 if (last_ptr->block_group)
6785 hint_byte = last_ptr->window_start;
6786 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04006787 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006788
Chris Masona061fc82008-05-07 11:43:44 -04006789 search_start = max(search_start, first_logical_byte(root, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04006790 search_start = max(search_start, hint_byte);
Chris Mason0b86a832008-03-24 15:01:56 -04006791
Josef Bacik817d52f2009-07-13 21:29:25 -04006792 if (!last_ptr)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006793 empty_cluster = 0;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006794
Josef Bacik2552d172009-04-03 10:14:19 -04006795 if (search_start == hint_byte) {
Josef Bacik2552d172009-04-03 10:14:19 -04006796 block_group = btrfs_lookup_block_group(root->fs_info,
6797 search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04006798 /*
6799 * we don't want to use the block group if it doesn't match our
6800 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05006801 *
6802 * However if we are re-searching with an ideal block group
6803 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04006804 */
David Sterbab6919a52013-04-29 13:39:40 +00006805 if (block_group && block_group_bits(block_group, flags) &&
Josef Bacik285ff5a2012-01-13 15:27:45 -05006806 block_group->cached != BTRFS_CACHE_NO) {
Josef Bacik2552d172009-04-03 10:14:19 -04006807 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04006808 if (list_empty(&block_group->list) ||
6809 block_group->ro) {
6810 /*
6811 * someone is removing this block group,
6812 * we can't jump into the have_block_group
6813 * target because our list pointers are not
6814 * valid
6815 */
6816 btrfs_put_block_group(block_group);
6817 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05006818 } else {
Yan, Zhengb742bb82010-05-16 10:46:24 -04006819 index = get_block_group_index(block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08006820 btrfs_lock_block_group(block_group, delalloc);
Chris Mason44fb5512009-06-04 15:34:51 -04006821 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05006822 }
Josef Bacik2552d172009-04-03 10:14:19 -04006823 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006824 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006825 }
Chris Mason42e70e72008-11-07 18:17:11 -05006826 }
Josef Bacik2552d172009-04-03 10:14:19 -04006827search:
Miao Xie60d2adb2011-09-09 17:34:35 +08006828 have_caching_bg = false;
Josef Bacik80eb2342008-10-29 14:49:05 -04006829 down_read(&space_info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04006830 list_for_each_entry(block_group, &space_info->block_groups[index],
6831 list) {
Josef Bacik6226cb0a2009-04-03 10:14:18 -04006832 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04006833 int cached;
Chris Mason8a1413a2008-11-10 16:13:54 -05006834
Miao Xiee570fd22014-06-19 10:42:50 +08006835 btrfs_grab_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04006836 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05006837
Chris Mason83a50de2010-12-13 15:06:46 -05006838 /*
6839 * this can happen if we end up cycling through all the
6840 * raid types, but we want to make sure we only allocate
6841 * for the proper type.
6842 */
David Sterbab6919a52013-04-29 13:39:40 +00006843 if (!block_group_bits(block_group, flags)) {
Chris Mason83a50de2010-12-13 15:06:46 -05006844 u64 extra = BTRFS_BLOCK_GROUP_DUP |
6845 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05006846 BTRFS_BLOCK_GROUP_RAID5 |
6847 BTRFS_BLOCK_GROUP_RAID6 |
Chris Mason83a50de2010-12-13 15:06:46 -05006848 BTRFS_BLOCK_GROUP_RAID10;
6849
6850 /*
6851 * if they asked for extra copies and this block group
6852 * doesn't provide them, bail. This does allow us to
6853 * fill raid0 from raid1.
6854 */
David Sterbab6919a52013-04-29 13:39:40 +00006855 if ((flags & extra) && !(block_group->flags & extra))
Chris Mason83a50de2010-12-13 15:06:46 -05006856 goto loop;
6857 }
6858
Josef Bacik2552d172009-04-03 10:14:19 -04006859have_block_group:
Josef Bacik291c7d22011-11-14 13:52:14 -05006860 cached = block_group_cache_done(block_group);
6861 if (unlikely(!cached)) {
Liu Bof6373bf2012-12-27 09:01:18 +00006862 ret = cache_block_group(block_group, 0);
Chris Mason1d4284b2012-03-28 20:31:37 -04006863 BUG_ON(ret < 0);
6864 ret = 0;
Josef Bacikea6a4782008-11-20 12:16:16 -05006865 }
6866
Josef Bacik36cce922013-08-05 11:15:21 -04006867 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
6868 goto loop;
Josef Bacikea6a4782008-11-20 12:16:16 -05006869 if (unlikely(block_group->ro))
Josef Bacik2552d172009-04-03 10:14:19 -04006870 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006871
Josef Bacik0a243252009-09-11 16:11:20 -04006872 /*
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006873 * Ok we want to try and use the cluster allocator, so
6874 * lets look there
Josef Bacik0a243252009-09-11 16:11:20 -04006875 */
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006876 if (last_ptr) {
Miao Xie215a63d2014-01-15 20:00:56 +08006877 struct btrfs_block_group_cache *used_block_group;
Chris Mason8de972b2013-01-04 15:39:43 -05006878 unsigned long aligned_cluster;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006879 /*
6880 * the refill lock keeps out other
6881 * people trying to start a new cluster
6882 */
Miao Xiee570fd22014-06-19 10:42:50 +08006883 used_block_group = btrfs_lock_cluster(block_group,
6884 last_ptr,
6885 delalloc);
6886 if (!used_block_group)
Chris Mason44fb5512009-06-04 15:34:51 -04006887 goto refill_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -04006888
Miao Xiee570fd22014-06-19 10:42:50 +08006889 if (used_block_group != block_group &&
6890 (used_block_group->ro ||
6891 !block_group_bits(used_block_group, flags)))
6892 goto release_cluster;
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006893
6894 offset = btrfs_alloc_from_cluster(used_block_group,
Miao Xiea4820392013-09-09 13:19:42 +08006895 last_ptr,
6896 num_bytes,
6897 used_block_group->key.objectid,
6898 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006899 if (offset) {
6900 /* we have a block, we're done */
6901 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05006902 trace_btrfs_reserve_extent_cluster(root,
Miao Xie89d43462014-01-15 20:00:57 +08006903 used_block_group,
6904 search_start, num_bytes);
Miao Xie215a63d2014-01-15 20:00:56 +08006905 if (used_block_group != block_group) {
Miao Xiee570fd22014-06-19 10:42:50 +08006906 btrfs_release_block_group(block_group,
6907 delalloc);
Miao Xie215a63d2014-01-15 20:00:56 +08006908 block_group = used_block_group;
6909 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006910 goto checks;
6911 }
6912
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006913 WARN_ON(last_ptr->block_group != used_block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08006914release_cluster:
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006915 /* If we are on LOOP_NO_EMPTY_SIZE, we can't
6916 * set up a new clusters, so lets just skip it
6917 * and let the allocator find whatever block
6918 * it can find. If we reach this point, we
6919 * will have tried the cluster allocator
6920 * plenty of times and not have found
6921 * anything, so we are likely way too
6922 * fragmented for the clustering stuff to find
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006923 * anything.
6924 *
6925 * However, if the cluster is taken from the
6926 * current block group, release the cluster
6927 * first, so that we stand a better chance of
6928 * succeeding in the unclustered
6929 * allocation. */
6930 if (loop >= LOOP_NO_EMPTY_SIZE &&
Miao Xiee570fd22014-06-19 10:42:50 +08006931 used_block_group != block_group) {
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006932 spin_unlock(&last_ptr->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08006933 btrfs_release_block_group(used_block_group,
6934 delalloc);
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006935 goto unclustered_alloc;
6936 }
6937
Chris Masonfa9c0d792009-04-03 09:47:43 -04006938 /*
6939 * this cluster didn't work out, free it and
6940 * start over
6941 */
6942 btrfs_return_cluster_to_free_space(NULL, last_ptr);
6943
Miao Xiee570fd22014-06-19 10:42:50 +08006944 if (used_block_group != block_group)
6945 btrfs_release_block_group(used_block_group,
6946 delalloc);
6947refill_cluster:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006948 if (loop >= LOOP_NO_EMPTY_SIZE) {
6949 spin_unlock(&last_ptr->refill_lock);
6950 goto unclustered_alloc;
6951 }
6952
Chris Mason8de972b2013-01-04 15:39:43 -05006953 aligned_cluster = max_t(unsigned long,
6954 empty_cluster + empty_size,
6955 block_group->full_stripe_len);
6956
Chris Masonfa9c0d792009-04-03 09:47:43 -04006957 /* allocate a cluster in this block group */
Josef Bacik00361582013-08-14 14:02:47 -04006958 ret = btrfs_find_space_cluster(root, block_group,
6959 last_ptr, search_start,
6960 num_bytes,
6961 aligned_cluster);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006962 if (ret == 0) {
6963 /*
6964 * now pull our allocation out of this
6965 * cluster
6966 */
6967 offset = btrfs_alloc_from_cluster(block_group,
Miao Xiea4820392013-09-09 13:19:42 +08006968 last_ptr,
6969 num_bytes,
6970 search_start,
6971 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006972 if (offset) {
6973 /* we found one, proceed */
6974 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05006975 trace_btrfs_reserve_extent_cluster(root,
6976 block_group, search_start,
6977 num_bytes);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006978 goto checks;
6979 }
Josef Bacik0a243252009-09-11 16:11:20 -04006980 } else if (!cached && loop > LOOP_CACHING_NOWAIT
6981 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04006982 spin_unlock(&last_ptr->refill_lock);
6983
Josef Bacik0a243252009-09-11 16:11:20 -04006984 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04006985 wait_block_group_cache_progress(block_group,
6986 num_bytes + empty_cluster + empty_size);
6987 goto have_block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006988 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006989
Chris Masonfa9c0d792009-04-03 09:47:43 -04006990 /*
6991 * at this point we either didn't find a cluster
6992 * or we weren't able to allocate a block from our
6993 * cluster. Free the cluster we've been trying
6994 * to use, and go to the next block group
6995 */
Josef Bacik0a243252009-09-11 16:11:20 -04006996 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006997 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04006998 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006999 }
7000
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007001unclustered_alloc:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007002 spin_lock(&block_group->free_space_ctl->tree_lock);
7003 if (cached &&
7004 block_group->free_space_ctl->free_space <
7005 num_bytes + empty_cluster + empty_size) {
Miao Xiea4820392013-09-09 13:19:42 +08007006 if (block_group->free_space_ctl->free_space >
7007 max_extent_size)
7008 max_extent_size =
7009 block_group->free_space_ctl->free_space;
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007010 spin_unlock(&block_group->free_space_ctl->tree_lock);
7011 goto loop;
7012 }
7013 spin_unlock(&block_group->free_space_ctl->tree_lock);
7014
Josef Bacik6226cb0a2009-04-03 10:14:18 -04007015 offset = btrfs_find_space_for_alloc(block_group, search_start,
Miao Xiea4820392013-09-09 13:19:42 +08007016 num_bytes, empty_size,
7017 &max_extent_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007018 /*
7019 * If we didn't find a chunk, and we haven't failed on this
7020 * block group before, and this block group is in the middle of
7021 * caching and we are ok with waiting, then go ahead and wait
7022 * for progress to be made, and set failed_alloc to true.
7023 *
7024 * If failed_alloc is true then we've already waited on this
7025 * block group once and should move on to the next block group.
7026 */
7027 if (!offset && !failed_alloc && !cached &&
7028 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04007029 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007030 num_bytes + empty_size);
7031 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04007032 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007033 } else if (!offset) {
Miao Xie60d2adb2011-09-09 17:34:35 +08007034 if (!cached)
7035 have_caching_bg = true;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007036 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04007037 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007038checks:
David Sterba4e54b172014-06-05 01:39:19 +02007039 search_start = ALIGN(offset, root->stripesize);
Chris Masone37c9e62007-05-09 20:13:14 -04007040
Josef Bacik2552d172009-04-03 10:14:19 -04007041 /* move on to the next group */
7042 if (search_start + num_bytes >
Miao Xie215a63d2014-01-15 20:00:56 +08007043 block_group->key.objectid + block_group->key.offset) {
7044 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04007045 goto loop;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04007046 }
Josef Bacik80eb2342008-10-29 14:49:05 -04007047
Josef Bacik6226cb0a2009-04-03 10:14:18 -04007048 if (offset < search_start)
Miao Xie215a63d2014-01-15 20:00:56 +08007049 btrfs_add_free_space(block_group, offset,
Josef Bacik6226cb0a2009-04-03 10:14:18 -04007050 search_start - offset);
7051 BUG_ON(offset > search_start);
7052
Miao Xie215a63d2014-01-15 20:00:56 +08007053 ret = btrfs_update_reserved_bytes(block_group, num_bytes,
Miao Xiee570fd22014-06-19 10:42:50 +08007054 alloc_type, delalloc);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007055 if (ret == -EAGAIN) {
Miao Xie215a63d2014-01-15 20:00:56 +08007056 btrfs_add_free_space(block_group, offset, num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007057 goto loop;
7058 }
Yan Zheng11833d62009-09-11 16:11:19 -04007059
Josef Bacik2552d172009-04-03 10:14:19 -04007060 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007061 ins->objectid = search_start;
7062 ins->offset = num_bytes;
7063
Josef Bacik3f7de032011-11-10 08:29:20 -05007064 trace_btrfs_reserve_extent(orig_root, block_group,
7065 search_start, num_bytes);
Miao Xiee570fd22014-06-19 10:42:50 +08007066 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007067 break;
7068loop:
Josef Bacik0a243252009-09-11 16:11:20 -04007069 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007070 failed_alloc = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04007071 BUG_ON(index != get_block_group_index(block_group));
Miao Xiee570fd22014-06-19 10:42:50 +08007072 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007073 }
7074 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05007075
Miao Xie60d2adb2011-09-09 17:34:35 +08007076 if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg)
7077 goto search;
7078
Yan, Zhengb742bb82010-05-16 10:46:24 -04007079 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
7080 goto search;
7081
Josef Bacik285ff5a2012-01-13 15:27:45 -05007082 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05007083 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
7084 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04007085 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
7086 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
7087 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
7088 * again
Chris Masonfa9c0d792009-04-03 09:47:43 -04007089 */
Josef Bacik723bda22011-05-27 16:11:38 -04007090 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) {
Yan, Zhengb742bb82010-05-16 10:46:24 -04007091 index = 0;
Josef Bacik723bda22011-05-27 16:11:38 -04007092 loop++;
Josef Bacik817d52f2009-07-13 21:29:25 -04007093 if (loop == LOOP_ALLOC_CHUNK) {
Josef Bacik00361582013-08-14 14:02:47 -04007094 struct btrfs_trans_handle *trans;
Wang Shilongf017f152014-03-13 13:19:47 +08007095 int exist = 0;
Josef Bacik00361582013-08-14 14:02:47 -04007096
Wang Shilongf017f152014-03-13 13:19:47 +08007097 trans = current->journal_info;
7098 if (trans)
7099 exist = 1;
7100 else
7101 trans = btrfs_join_transaction(root);
7102
Josef Bacik00361582013-08-14 14:02:47 -04007103 if (IS_ERR(trans)) {
7104 ret = PTR_ERR(trans);
7105 goto out;
7106 }
7107
David Sterbab6919a52013-04-29 13:39:40 +00007108 ret = do_chunk_alloc(trans, root, flags,
Josef Bacikea658ba2012-09-11 16:57:25 -04007109 CHUNK_ALLOC_FORCE);
7110 /*
7111 * Do not bail out on ENOSPC since we
7112 * can do more things.
7113 */
Josef Bacik00361582013-08-14 14:02:47 -04007114 if (ret < 0 && ret != -ENOSPC)
Josef Bacikea658ba2012-09-11 16:57:25 -04007115 btrfs_abort_transaction(trans,
7116 root, ret);
Josef Bacik00361582013-08-14 14:02:47 -04007117 else
7118 ret = 0;
Wang Shilongf017f152014-03-13 13:19:47 +08007119 if (!exist)
7120 btrfs_end_transaction(trans, root);
Josef Bacik00361582013-08-14 14:02:47 -04007121 if (ret)
Josef Bacikea658ba2012-09-11 16:57:25 -04007122 goto out;
Josef Bacik723bda22011-05-27 16:11:38 -04007123 }
7124
7125 if (loop == LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007126 empty_size = 0;
7127 empty_cluster = 0;
7128 }
Chris Mason42e70e72008-11-07 18:17:11 -05007129
Josef Bacik723bda22011-05-27 16:11:38 -04007130 goto search;
Josef Bacik2552d172009-04-03 10:14:19 -04007131 } else if (!ins->objectid) {
7132 ret = -ENOSPC;
Josef Bacikd82a6f12011-05-11 15:26:06 -04007133 } else if (ins->objectid) {
Josef Bacik2552d172009-04-03 10:14:19 -04007134 ret = 0;
7135 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007136out:
Miao Xiea4820392013-09-09 13:19:42 +08007137 if (ret == -ENOSPC)
7138 ins->offset = max_extent_size;
Chris Mason0f70abe2007-02-28 16:46:22 -05007139 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05007140}
Chris Masonec44a352008-04-28 15:29:52 -04007141
Josef Bacik9ed74f22009-09-11 16:12:44 -04007142static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
7143 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04007144{
7145 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb82010-05-16 10:46:24 -04007146 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007147
Josef Bacik9ed74f22009-09-11 16:12:44 -04007148 spin_lock(&info->lock);
Frank Holtonefe120a2013-12-20 11:37:06 -05007149 printk(KERN_INFO "BTRFS: space_info %llu has %llu free, is %sfull\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007150 info->flags,
7151 info->total_bytes - info->bytes_used - info->bytes_pinned -
7152 info->bytes_reserved - info->bytes_readonly,
Chris Masond3977122009-01-05 21:25:51 -05007153 (info->full) ? "" : "not ");
Frank Holtonefe120a2013-12-20 11:37:06 -05007154 printk(KERN_INFO "BTRFS: space_info total=%llu, used=%llu, pinned=%llu, "
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04007155 "reserved=%llu, may_use=%llu, readonly=%llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007156 info->total_bytes, info->bytes_used, info->bytes_pinned,
7157 info->bytes_reserved, info->bytes_may_use,
7158 info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007159 spin_unlock(&info->lock);
7160
7161 if (!dump_block_groups)
7162 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007163
Josef Bacik80eb2342008-10-29 14:49:05 -04007164 down_read(&info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04007165again:
7166 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04007167 spin_lock(&cache->lock);
Frank Holtonefe120a2013-12-20 11:37:06 -05007168 printk(KERN_INFO "BTRFS: "
7169 "block group %llu has %llu bytes, "
7170 "%llu used %llu pinned %llu reserved %s\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007171 cache->key.objectid, cache->key.offset,
7172 btrfs_block_group_used(&cache->item), cache->pinned,
7173 cache->reserved, cache->ro ? "[readonly]" : "");
Josef Bacik0f9dd462008-09-23 13:14:11 -04007174 btrfs_dump_free_space(cache, bytes);
7175 spin_unlock(&cache->lock);
7176 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04007177 if (++index < BTRFS_NR_RAID_TYPES)
7178 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04007179 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04007180}
Zheng Yane8569812008-09-26 10:05:48 -04007181
Josef Bacik00361582013-08-14 14:02:47 -04007182int btrfs_reserve_extent(struct btrfs_root *root,
Yan Zheng11833d62009-09-11 16:11:19 -04007183 u64 num_bytes, u64 min_alloc_size,
7184 u64 empty_size, u64 hint_byte,
Miao Xiee570fd22014-06-19 10:42:50 +08007185 struct btrfs_key *ins, int is_data, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05007186{
Miao Xie9e622d62012-01-26 15:01:12 -05007187 bool final_tried = false;
David Sterbab6919a52013-04-29 13:39:40 +00007188 u64 flags;
Chris Masonfec577f2007-02-26 10:40:21 -05007189 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04007190
David Sterbab6919a52013-04-29 13:39:40 +00007191 flags = btrfs_get_alloc_profile(root, is_data);
Chris Mason98d20f62008-04-14 09:46:10 -04007192again:
Chris Masondb945352007-10-15 16:15:53 -04007193 WARN_ON(num_bytes < root->sectorsize);
Josef Bacik00361582013-08-14 14:02:47 -04007194 ret = find_free_extent(root, num_bytes, empty_size, hint_byte, ins,
Miao Xiee570fd22014-06-19 10:42:50 +08007195 flags, delalloc);
Chris Mason3b951512008-04-17 11:29:12 -04007196
Miao Xie9e622d62012-01-26 15:01:12 -05007197 if (ret == -ENOSPC) {
Miao Xiea4820392013-09-09 13:19:42 +08007198 if (!final_tried && ins->offset) {
7199 num_bytes = min(num_bytes >> 1, ins->offset);
Zach Brown24542bf2012-11-16 00:04:43 +00007200 num_bytes = round_down(num_bytes, root->sectorsize);
Miao Xie9e622d62012-01-26 15:01:12 -05007201 num_bytes = max(num_bytes, min_alloc_size);
Miao Xie9e622d62012-01-26 15:01:12 -05007202 if (num_bytes == min_alloc_size)
7203 final_tried = true;
7204 goto again;
7205 } else if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
7206 struct btrfs_space_info *sinfo;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007207
David Sterbab6919a52013-04-29 13:39:40 +00007208 sinfo = __find_space_info(root->fs_info, flags);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007209 btrfs_err(root->fs_info, "allocation failed flags %llu, wanted %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007210 flags, num_bytes);
Jeff Mahoney53804282012-03-01 14:56:28 +01007211 if (sinfo)
7212 dump_space_info(sinfo, num_bytes, 1);
Miao Xie9e622d62012-01-26 15:01:12 -05007213 }
Chris Mason925baed2008-06-25 16:01:30 -04007214 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04007215
7216 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007217}
7218
Chris Masone688b7252011-10-31 20:52:39 -04007219static int __btrfs_free_reserved_extent(struct btrfs_root *root,
Miao Xiee570fd22014-06-19 10:42:50 +08007220 u64 start, u64 len,
7221 int pin, int delalloc)
Chris Mason65b51a02008-08-01 15:11:20 -04007222{
Josef Bacik0f9dd462008-09-23 13:14:11 -04007223 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05007224 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007225
Josef Bacik0f9dd462008-09-23 13:14:11 -04007226 cache = btrfs_lookup_block_group(root->fs_info, start);
7227 if (!cache) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007228 btrfs_err(root->fs_info, "Unable to find block group for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007229 start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04007230 return -ENOSPC;
7231 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05007232
Chris Masone688b7252011-10-31 20:52:39 -04007233 if (pin)
7234 pin_down_extent(root, cache, start, len, 1);
7235 else {
Filipe Mananadcc82f42015-03-23 14:07:40 +00007236 if (btrfs_test_opt(root, DISCARD))
7237 ret = btrfs_discard_extent(root, start, len, NULL);
Chris Masone688b7252011-10-31 20:52:39 -04007238 btrfs_add_free_space(cache, start, len);
Miao Xiee570fd22014-06-19 10:42:50 +08007239 btrfs_update_reserved_bytes(cache, len, RESERVE_FREE, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04007240 }
Dongsheng Yang31193212014-12-12 16:44:35 +08007241
Chris Masonfa9c0d792009-04-03 09:47:43 -04007242 btrfs_put_block_group(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04007243
liubo1abe9b82011-03-24 11:18:59 +00007244 trace_btrfs_reserved_extent_free(root, start, len);
7245
Chris Masone6dcd2d2008-07-17 12:53:50 -04007246 return ret;
7247}
7248
Chris Masone688b7252011-10-31 20:52:39 -04007249int btrfs_free_reserved_extent(struct btrfs_root *root,
Miao Xiee570fd22014-06-19 10:42:50 +08007250 u64 start, u64 len, int delalloc)
Chris Masone688b7252011-10-31 20:52:39 -04007251{
Miao Xiee570fd22014-06-19 10:42:50 +08007252 return __btrfs_free_reserved_extent(root, start, len, 0, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04007253}
7254
7255int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root,
7256 u64 start, u64 len)
7257{
Miao Xiee570fd22014-06-19 10:42:50 +08007258 return __btrfs_free_reserved_extent(root, start, len, 1, 0);
Chris Masone688b7252011-10-31 20:52:39 -04007259}
7260
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007261static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
7262 struct btrfs_root *root,
7263 u64 parent, u64 root_objectid,
7264 u64 flags, u64 owner, u64 offset,
7265 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04007266{
7267 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007268 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007269 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007270 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007271 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007272 struct extent_buffer *leaf;
7273 int type;
7274 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04007275
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007276 if (parent > 0)
7277 type = BTRFS_SHARED_DATA_REF_KEY;
7278 else
7279 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04007280
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007281 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05007282
7283 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00007284 if (!path)
7285 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05007286
Chris Masonb9473432009-03-13 11:00:37 -04007287 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007288 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
7289 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007290 if (ret) {
7291 btrfs_free_path(path);
7292 return ret;
7293 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04007294
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007295 leaf = path->nodes[0];
7296 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05007297 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007298 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
7299 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
7300 btrfs_set_extent_flags(leaf, extent_item,
7301 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05007302
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007303 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
7304 btrfs_set_extent_inline_ref_type(leaf, iref, type);
7305 if (parent > 0) {
7306 struct btrfs_shared_data_ref *ref;
7307 ref = (struct btrfs_shared_data_ref *)(iref + 1);
7308 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
7309 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
7310 } else {
7311 struct btrfs_extent_data_ref *ref;
7312 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
7313 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
7314 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
7315 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
7316 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
7317 }
Chris Mason47e4bb92008-02-01 14:51:59 -05007318
7319 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05007320 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04007321
Josef Bacikce93ec52014-11-17 15:45:48 -05007322 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007323 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007324 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007325 ins->objectid, ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05007326 BUG();
7327 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04007328 trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007329 return ret;
7330}
7331
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007332static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
7333 struct btrfs_root *root,
7334 u64 parent, u64 root_objectid,
7335 u64 flags, struct btrfs_disk_key *key,
Josef Bacikfcebe452014-05-13 17:30:47 -07007336 int level, struct btrfs_key *ins,
7337 int no_quota)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007338{
7339 int ret;
7340 struct btrfs_fs_info *fs_info = root->fs_info;
7341 struct btrfs_extent_item *extent_item;
7342 struct btrfs_tree_block_info *block_info;
7343 struct btrfs_extent_inline_ref *iref;
7344 struct btrfs_path *path;
7345 struct extent_buffer *leaf;
Josef Bacik3173a182013-03-07 14:22:04 -05007346 u32 size = sizeof(*extent_item) + sizeof(*iref);
Josef Bacikfcebe452014-05-13 17:30:47 -07007347 u64 num_bytes = ins->offset;
Josef Bacik3173a182013-03-07 14:22:04 -05007348 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
7349 SKINNY_METADATA);
7350
7351 if (!skinny_metadata)
7352 size += sizeof(*block_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007353
7354 path = btrfs_alloc_path();
Josef Bacik857cc2f2013-10-07 15:21:08 -04007355 if (!path) {
7356 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
David Sterba707e8a02014-06-04 19:22:26 +02007357 root->nodesize);
Mark Fashehd8926bb2011-07-13 10:38:47 -07007358 return -ENOMEM;
Josef Bacik857cc2f2013-10-07 15:21:08 -04007359 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007360
7361 path->leave_spinning = 1;
7362 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
7363 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007364 if (ret) {
Chris Masondd825252015-04-01 08:36:05 -07007365 btrfs_free_path(path);
Josef Bacik857cc2f2013-10-07 15:21:08 -04007366 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
David Sterba707e8a02014-06-04 19:22:26 +02007367 root->nodesize);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007368 return ret;
7369 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007370
7371 leaf = path->nodes[0];
7372 extent_item = btrfs_item_ptr(leaf, path->slots[0],
7373 struct btrfs_extent_item);
7374 btrfs_set_extent_refs(leaf, extent_item, 1);
7375 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
7376 btrfs_set_extent_flags(leaf, extent_item,
7377 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007378
Josef Bacik3173a182013-03-07 14:22:04 -05007379 if (skinny_metadata) {
7380 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
David Sterba707e8a02014-06-04 19:22:26 +02007381 num_bytes = root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05007382 } else {
7383 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
7384 btrfs_set_tree_block_key(leaf, block_info, key);
7385 btrfs_set_tree_block_level(leaf, block_info, level);
7386 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
7387 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007388
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007389 if (parent > 0) {
7390 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
7391 btrfs_set_extent_inline_ref_type(leaf, iref,
7392 BTRFS_SHARED_BLOCK_REF_KEY);
7393 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
7394 } else {
7395 btrfs_set_extent_inline_ref_type(leaf, iref,
7396 BTRFS_TREE_BLOCK_REF_KEY);
7397 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
7398 }
7399
7400 btrfs_mark_buffer_dirty(leaf);
7401 btrfs_free_path(path);
7402
Josef Bacikce93ec52014-11-17 15:45:48 -05007403 ret = update_block_group(trans, root, ins->objectid, root->nodesize,
7404 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007405 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007406 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007407 ins->objectid, ins->offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007408 BUG();
7409 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04007410
David Sterba707e8a02014-06-04 19:22:26 +02007411 trace_btrfs_reserved_extent_alloc(root, ins->objectid, root->nodesize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007412 return ret;
7413}
7414
7415int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
7416 struct btrfs_root *root,
7417 u64 root_objectid, u64 owner,
7418 u64 offset, struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04007419{
7420 int ret;
Chris Mason1c2308f2008-09-23 13:14:13 -04007421
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007422 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04007423
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007424 ret = btrfs_add_delayed_data_ref(root->fs_info, trans, ins->objectid,
7425 ins->offset, 0,
7426 root_objectid, owner, offset,
7427 BTRFS_ADD_DELAYED_EXTENT, NULL, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007428 return ret;
7429}
Chris Masone02119d2008-09-05 16:13:11 -04007430
7431/*
7432 * this is used by the tree logging recovery code. It records that
7433 * an extent has been allocated and makes sure to clear the free
7434 * space cache bits as well
7435 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007436int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
7437 struct btrfs_root *root,
7438 u64 root_objectid, u64 owner, u64 offset,
7439 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04007440{
7441 int ret;
7442 struct btrfs_block_group_cache *block_group;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04007443
7444 /*
7445 * Mixed block groups will exclude before processing the log so we only
7446 * need to do the exlude dance if this fs isn't mixed.
7447 */
7448 if (!btrfs_fs_incompat(root->fs_info, MIXED_GROUPS)) {
7449 ret = __exclude_logged_extent(root, ins->objectid, ins->offset);
7450 if (ret)
7451 return ret;
7452 }
Chris Masone02119d2008-09-05 16:13:11 -04007453
Chris Masone02119d2008-09-05 16:13:11 -04007454 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04007455 if (!block_group)
7456 return -EINVAL;
Yan Zheng11833d62009-09-11 16:11:19 -04007457
Josef Bacikfb25e912011-07-26 17:00:46 -04007458 ret = btrfs_update_reserved_bytes(block_group, ins->offset,
Miao Xiee570fd22014-06-19 10:42:50 +08007459 RESERVE_ALLOC_NO_ACCOUNT, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007460 BUG_ON(ret); /* logic error */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007461 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
7462 0, owner, offset, ins, 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04007463 btrfs_put_block_group(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04007464 return ret;
7465}
7466
Eric Sandeen48a3b632013-04-25 20:41:01 +00007467static struct extent_buffer *
7468btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
David Sterbafe864572014-06-15 02:28:42 +02007469 u64 bytenr, int level)
Chris Mason65b51a02008-08-01 15:11:20 -04007470{
7471 struct extent_buffer *buf;
7472
David Sterbaa83fffb2014-06-15 02:39:54 +02007473 buf = btrfs_find_create_tree_block(root, bytenr);
Chris Mason65b51a02008-08-01 15:11:20 -04007474 if (!buf)
7475 return ERR_PTR(-ENOMEM);
7476 btrfs_set_header_generation(buf, trans->transid);
Chris Mason85d4e462011-07-26 16:11:19 -04007477 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04007478 btrfs_tree_lock(buf);
Daniel Dressler01d58472014-11-21 17:15:07 +09007479 clean_tree_block(trans, root->fs_info, buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05007480 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
Chris Masonb4ce94d2009-02-04 09:25:08 -05007481
7482 btrfs_set_lock_blocking(buf);
Chris Mason65b51a02008-08-01 15:11:20 -04007483 btrfs_set_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05007484
Chris Masond0c803c2008-09-11 16:17:57 -04007485 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Filipe Manana656f30d2014-09-26 12:25:56 +01007486 buf->log_index = root->log_transid % 2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00007487 /*
7488 * we allow two log transactions at a time, use different
7489 * EXENT bit to differentiate dirty pages.
7490 */
Filipe Manana656f30d2014-09-26 12:25:56 +01007491 if (buf->log_index == 0)
Yan, Zheng8cef4e12009-11-12 09:33:26 +00007492 set_extent_dirty(&root->dirty_log_pages, buf->start,
7493 buf->start + buf->len - 1, GFP_NOFS);
7494 else
7495 set_extent_new(&root->dirty_log_pages, buf->start,
7496 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond0c803c2008-09-11 16:17:57 -04007497 } else {
Filipe Manana656f30d2014-09-26 12:25:56 +01007498 buf->log_index = -1;
Chris Masond0c803c2008-09-11 16:17:57 -04007499 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
7500 buf->start + buf->len - 1, GFP_NOFS);
7501 }
Chris Mason65b51a02008-08-01 15:11:20 -04007502 trans->blocks_used++;
Chris Masonb4ce94d2009-02-04 09:25:08 -05007503 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04007504 return buf;
7505}
7506
Yan, Zhengf0486c62010-05-16 10:46:25 -04007507static struct btrfs_block_rsv *
7508use_block_rsv(struct btrfs_trans_handle *trans,
7509 struct btrfs_root *root, u32 blocksize)
7510{
7511 struct btrfs_block_rsv *block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00007512 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007513 int ret;
Miao Xied88033d2013-05-13 13:55:12 +00007514 bool global_updated = false;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007515
7516 block_rsv = get_block_rsv(trans, root);
7517
Miao Xieb586b322013-05-13 13:55:10 +00007518 if (unlikely(block_rsv->size == 0))
7519 goto try_reserve;
Miao Xied88033d2013-05-13 13:55:12 +00007520again:
Yan, Zhengf0486c62010-05-16 10:46:25 -04007521 ret = block_rsv_use_bytes(block_rsv, blocksize);
7522 if (!ret)
7523 return block_rsv;
7524
Miao Xieb586b322013-05-13 13:55:10 +00007525 if (block_rsv->failfast)
7526 return ERR_PTR(ret);
7527
Miao Xied88033d2013-05-13 13:55:12 +00007528 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
7529 global_updated = true;
7530 update_global_block_rsv(root->fs_info);
7531 goto again;
7532 }
7533
Miao Xieb586b322013-05-13 13:55:10 +00007534 if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
7535 static DEFINE_RATELIMIT_STATE(_rs,
7536 DEFAULT_RATELIMIT_INTERVAL * 10,
7537 /*DEFAULT_RATELIMIT_BURST*/ 1);
7538 if (__ratelimit(&_rs))
7539 WARN(1, KERN_DEBUG
Frank Holtonefe120a2013-12-20 11:37:06 -05007540 "BTRFS: block rsv returned %d\n", ret);
Miao Xieb586b322013-05-13 13:55:10 +00007541 }
7542try_reserve:
7543 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
7544 BTRFS_RESERVE_NO_FLUSH);
7545 if (!ret)
7546 return block_rsv;
7547 /*
7548 * If we couldn't reserve metadata bytes try and use some from
Miao Xie5881cfc2013-05-13 13:55:11 +00007549 * the global reserve if its space type is the same as the global
7550 * reservation.
Miao Xieb586b322013-05-13 13:55:10 +00007551 */
Miao Xie5881cfc2013-05-13 13:55:11 +00007552 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
7553 block_rsv->space_info == global_rsv->space_info) {
Miao Xieb586b322013-05-13 13:55:10 +00007554 ret = block_rsv_use_bytes(global_rsv, blocksize);
7555 if (!ret)
7556 return global_rsv;
7557 }
7558 return ERR_PTR(ret);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007559}
7560
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05007561static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
7562 struct btrfs_block_rsv *block_rsv, u32 blocksize)
Yan, Zhengf0486c62010-05-16 10:46:25 -04007563{
7564 block_rsv_add_bytes(block_rsv, blocksize, 0);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05007565 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007566}
7567
Chris Masonfec577f2007-02-26 10:40:21 -05007568/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04007569 * finds a free extent and does all the dirty work required for allocation
7570 * returns the key for the extent through ins, and a tree buffer for
7571 * the first block of the extent through buf.
7572 *
Omar Sandoval67b78592015-02-24 02:47:04 -08007573 * returns the tree buffer or an ERR_PTR on error.
Chris Masonfec577f2007-02-26 10:40:21 -05007574 */
David Sterba4d75f8a2014-06-15 01:54:12 +02007575struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans,
7576 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007577 u64 parent, u64 root_objectid,
7578 struct btrfs_disk_key *key, int level,
Jan Schmidt5581a512012-05-16 17:04:52 +02007579 u64 hint, u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05007580{
Chris Masone2fa7222007-03-12 16:22:34 -04007581 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007582 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04007583 struct extent_buffer *buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08007584 struct btrfs_delayed_extent_op *extent_op;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007585 u64 flags = 0;
7586 int ret;
David Sterba4d75f8a2014-06-15 01:54:12 +02007587 u32 blocksize = root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05007588 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
7589 SKINNY_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007590
David Sterbafccb84c2014-09-29 23:53:21 +02007591 if (btrfs_test_is_dummy_root(root)) {
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04007592 buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr,
David Sterbafe864572014-06-15 02:28:42 +02007593 level);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04007594 if (!IS_ERR(buf))
7595 root->alloc_bytenr += blocksize;
7596 return buf;
7597 }
David Sterbafccb84c2014-09-29 23:53:21 +02007598
Yan, Zhengf0486c62010-05-16 10:46:25 -04007599 block_rsv = use_block_rsv(trans, root, blocksize);
7600 if (IS_ERR(block_rsv))
7601 return ERR_CAST(block_rsv);
7602
Josef Bacik00361582013-08-14 14:02:47 -04007603 ret = btrfs_reserve_extent(root, blocksize, blocksize,
Miao Xiee570fd22014-06-19 10:42:50 +08007604 empty_size, hint, &ins, 0, 0);
Omar Sandoval67b78592015-02-24 02:47:04 -08007605 if (ret)
7606 goto out_unuse;
Chris Mason55c69072008-01-09 15:55:33 -05007607
David Sterbafe864572014-06-15 02:28:42 +02007608 buf = btrfs_init_new_buffer(trans, root, ins.objectid, level);
Omar Sandoval67b78592015-02-24 02:47:04 -08007609 if (IS_ERR(buf)) {
7610 ret = PTR_ERR(buf);
7611 goto out_free_reserved;
7612 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04007613
7614 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
7615 if (parent == 0)
7616 parent = ins.objectid;
7617 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
7618 } else
7619 BUG_ON(parent > 0);
7620
7621 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
Miao Xie78a61842012-11-21 02:21:28 +00007622 extent_op = btrfs_alloc_delayed_extent_op();
Omar Sandoval67b78592015-02-24 02:47:04 -08007623 if (!extent_op) {
7624 ret = -ENOMEM;
7625 goto out_free_buf;
7626 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04007627 if (key)
7628 memcpy(&extent_op->key, key, sizeof(extent_op->key));
7629 else
7630 memset(&extent_op->key, 0, sizeof(extent_op->key));
7631 extent_op->flags_to_set = flags;
Josef Bacik3173a182013-03-07 14:22:04 -05007632 if (skinny_metadata)
7633 extent_op->update_key = 0;
7634 else
7635 extent_op->update_key = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007636 extent_op->update_flags = 1;
7637 extent_op->is_data = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04007638 extent_op->level = level;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007639
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007640 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
Omar Sandoval67b78592015-02-24 02:47:04 -08007641 ins.objectid, ins.offset,
7642 parent, root_objectid, level,
7643 BTRFS_ADD_DELAYED_EXTENT,
7644 extent_op, 0);
7645 if (ret)
7646 goto out_free_delayed;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007647 }
Chris Masonfec577f2007-02-26 10:40:21 -05007648 return buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08007649
7650out_free_delayed:
7651 btrfs_free_delayed_extent_op(extent_op);
7652out_free_buf:
7653 free_extent_buffer(buf);
7654out_free_reserved:
7655 btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 0);
7656out_unuse:
7657 unuse_block_rsv(root->fs_info, block_rsv, blocksize);
7658 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05007659}
Chris Masona28ec192007-03-06 20:08:01 -05007660
Yan Zheng2c47e6052009-06-27 21:07:35 -04007661struct walk_control {
7662 u64 refs[BTRFS_MAX_LEVEL];
7663 u64 flags[BTRFS_MAX_LEVEL];
7664 struct btrfs_key update_progress;
7665 int stage;
7666 int level;
7667 int shared_level;
7668 int update_ref;
7669 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007670 int reada_slot;
7671 int reada_count;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007672 int for_reloc;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007673};
7674
7675#define DROP_REFERENCE 1
7676#define UPDATE_BACKREF 2
7677
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007678static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
7679 struct btrfs_root *root,
7680 struct walk_control *wc,
7681 struct btrfs_path *path)
7682{
7683 u64 bytenr;
7684 u64 generation;
7685 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007686 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007687 u32 nritems;
7688 u32 blocksize;
7689 struct btrfs_key key;
7690 struct extent_buffer *eb;
7691 int ret;
7692 int slot;
7693 int nread = 0;
7694
7695 if (path->slots[wc->level] < wc->reada_slot) {
7696 wc->reada_count = wc->reada_count * 2 / 3;
7697 wc->reada_count = max(wc->reada_count, 2);
7698 } else {
7699 wc->reada_count = wc->reada_count * 3 / 2;
7700 wc->reada_count = min_t(int, wc->reada_count,
7701 BTRFS_NODEPTRS_PER_BLOCK(root));
7702 }
7703
7704 eb = path->nodes[wc->level];
7705 nritems = btrfs_header_nritems(eb);
David Sterba707e8a02014-06-04 19:22:26 +02007706 blocksize = root->nodesize;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007707
7708 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
7709 if (nread >= wc->reada_count)
7710 break;
7711
7712 cond_resched();
7713 bytenr = btrfs_node_blockptr(eb, slot);
7714 generation = btrfs_node_ptr_generation(eb, slot);
7715
7716 if (slot == path->slots[wc->level])
7717 goto reada;
7718
7719 if (wc->stage == UPDATE_BACKREF &&
7720 generation <= root->root_key.offset)
7721 continue;
7722
Yan, Zheng94fcca92009-10-09 09:25:16 -04007723 /* We don't lock the tree block, it's OK to be racy here */
Josef Bacik3173a182013-03-07 14:22:04 -05007724 ret = btrfs_lookup_extent_info(trans, root, bytenr,
7725 wc->level - 1, 1, &refs,
7726 &flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007727 /* We don't care about errors in readahead. */
7728 if (ret < 0)
7729 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007730 BUG_ON(refs == 0);
7731
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007732 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007733 if (refs == 1)
7734 goto reada;
7735
Yan, Zheng94fcca92009-10-09 09:25:16 -04007736 if (wc->level == 1 &&
7737 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7738 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007739 if (!wc->update_ref ||
7740 generation <= root->root_key.offset)
7741 continue;
7742 btrfs_node_key_to_cpu(eb, &key, slot);
7743 ret = btrfs_comp_cpu_keys(&key,
7744 &wc->update_progress);
7745 if (ret < 0)
7746 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007747 } else {
7748 if (wc->level == 1 &&
7749 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7750 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007751 }
7752reada:
David Sterbad3e46fe2014-06-15 02:04:19 +02007753 readahead_tree_block(root, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007754 nread++;
7755 }
7756 wc->reada_slot = slot;
7757}
7758
Qu Wenruo0ed47922015-04-16 16:55:08 +08007759/*
7760 * TODO: Modify related function to add related node/leaf to dirty_extent_root,
7761 * for later qgroup accounting.
7762 *
7763 * Current, this function does nothing.
7764 */
Mark Fasheh11526512014-07-17 12:39:01 -07007765static int account_leaf_items(struct btrfs_trans_handle *trans,
7766 struct btrfs_root *root,
7767 struct extent_buffer *eb)
7768{
7769 int nr = btrfs_header_nritems(eb);
Qu Wenruo0ed47922015-04-16 16:55:08 +08007770 int i, extent_type;
Mark Fasheh11526512014-07-17 12:39:01 -07007771 struct btrfs_key key;
7772 struct btrfs_file_extent_item *fi;
7773 u64 bytenr, num_bytes;
7774
7775 for (i = 0; i < nr; i++) {
7776 btrfs_item_key_to_cpu(eb, &key, i);
7777
7778 if (key.type != BTRFS_EXTENT_DATA_KEY)
7779 continue;
7780
7781 fi = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
7782 /* filter out non qgroup-accountable extents */
7783 extent_type = btrfs_file_extent_type(eb, fi);
7784
7785 if (extent_type == BTRFS_FILE_EXTENT_INLINE)
7786 continue;
7787
7788 bytenr = btrfs_file_extent_disk_bytenr(eb, fi);
7789 if (!bytenr)
7790 continue;
7791
7792 num_bytes = btrfs_file_extent_disk_num_bytes(eb, fi);
Mark Fasheh11526512014-07-17 12:39:01 -07007793 }
7794 return 0;
7795}
7796
7797/*
7798 * Walk up the tree from the bottom, freeing leaves and any interior
7799 * nodes which have had all slots visited. If a node (leaf or
7800 * interior) is freed, the node above it will have it's slot
7801 * incremented. The root node will never be freed.
7802 *
7803 * At the end of this function, we should have a path which has all
7804 * slots incremented to the next position for a search. If we need to
7805 * read a new node it will be NULL and the node above it will have the
7806 * correct slot selected for a later read.
7807 *
7808 * If we increment the root nodes slot counter past the number of
7809 * elements, 1 is returned to signal completion of the search.
7810 */
7811static int adjust_slots_upwards(struct btrfs_root *root,
7812 struct btrfs_path *path, int root_level)
7813{
7814 int level = 0;
7815 int nr, slot;
7816 struct extent_buffer *eb;
7817
7818 if (root_level == 0)
7819 return 1;
7820
7821 while (level <= root_level) {
7822 eb = path->nodes[level];
7823 nr = btrfs_header_nritems(eb);
7824 path->slots[level]++;
7825 slot = path->slots[level];
7826 if (slot >= nr || level == 0) {
7827 /*
7828 * Don't free the root - we will detect this
7829 * condition after our loop and return a
7830 * positive value for caller to stop walking the tree.
7831 */
7832 if (level != root_level) {
7833 btrfs_tree_unlock_rw(eb, path->locks[level]);
7834 path->locks[level] = 0;
7835
7836 free_extent_buffer(eb);
7837 path->nodes[level] = NULL;
7838 path->slots[level] = 0;
7839 }
7840 } else {
7841 /*
7842 * We have a valid slot to walk back down
7843 * from. Stop here so caller can process these
7844 * new nodes.
7845 */
7846 break;
7847 }
7848
7849 level++;
7850 }
7851
7852 eb = path->nodes[root_level];
7853 if (path->slots[root_level] >= btrfs_header_nritems(eb))
7854 return 1;
7855
7856 return 0;
7857}
7858
7859/*
7860 * root_eb is the subtree root and is locked before this function is called.
Qu Wenruo0ed47922015-04-16 16:55:08 +08007861 * TODO: Modify this function to mark all (including complete shared node)
7862 * to dirty_extent_root to allow it get accounted in qgroup.
Mark Fasheh11526512014-07-17 12:39:01 -07007863 */
7864static int account_shared_subtree(struct btrfs_trans_handle *trans,
7865 struct btrfs_root *root,
7866 struct extent_buffer *root_eb,
7867 u64 root_gen,
7868 int root_level)
7869{
7870 int ret = 0;
7871 int level;
7872 struct extent_buffer *eb = root_eb;
7873 struct btrfs_path *path = NULL;
7874
7875 BUG_ON(root_level < 0 || root_level > BTRFS_MAX_LEVEL);
7876 BUG_ON(root_eb == NULL);
7877
7878 if (!root->fs_info->quota_enabled)
7879 return 0;
7880
7881 if (!extent_buffer_uptodate(root_eb)) {
7882 ret = btrfs_read_buffer(root_eb, root_gen);
7883 if (ret)
7884 goto out;
7885 }
7886
7887 if (root_level == 0) {
7888 ret = account_leaf_items(trans, root, root_eb);
7889 goto out;
7890 }
7891
7892 path = btrfs_alloc_path();
7893 if (!path)
7894 return -ENOMEM;
7895
7896 /*
7897 * Walk down the tree. Missing extent blocks are filled in as
7898 * we go. Metadata is accounted every time we read a new
7899 * extent block.
7900 *
7901 * When we reach a leaf, we account for file extent items in it,
7902 * walk back up the tree (adjusting slot pointers as we go)
7903 * and restart the search process.
7904 */
7905 extent_buffer_get(root_eb); /* For path */
7906 path->nodes[root_level] = root_eb;
7907 path->slots[root_level] = 0;
7908 path->locks[root_level] = 0; /* so release_path doesn't try to unlock */
7909walk_down:
7910 level = root_level;
7911 while (level >= 0) {
7912 if (path->nodes[level] == NULL) {
Mark Fasheh11526512014-07-17 12:39:01 -07007913 int parent_slot;
7914 u64 child_gen;
7915 u64 child_bytenr;
7916
7917 /* We need to get child blockptr/gen from
7918 * parent before we can read it. */
7919 eb = path->nodes[level + 1];
7920 parent_slot = path->slots[level + 1];
7921 child_bytenr = btrfs_node_blockptr(eb, parent_slot);
7922 child_gen = btrfs_node_ptr_generation(eb, parent_slot);
7923
David Sterbace86cd52014-06-15 01:07:32 +02007924 eb = read_tree_block(root, child_bytenr, child_gen);
Liu Bo64c043d2015-05-25 17:30:15 +08007925 if (IS_ERR(eb)) {
7926 ret = PTR_ERR(eb);
7927 goto out;
7928 } else if (!extent_buffer_uptodate(eb)) {
Liu Bo8635eda2015-05-25 17:30:14 +08007929 free_extent_buffer(eb);
Liu Bo64c043d2015-05-25 17:30:15 +08007930 ret = -EIO;
Mark Fasheh11526512014-07-17 12:39:01 -07007931 goto out;
7932 }
7933
7934 path->nodes[level] = eb;
7935 path->slots[level] = 0;
7936
7937 btrfs_tree_read_lock(eb);
7938 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
7939 path->locks[level] = BTRFS_READ_LOCK_BLOCKING;
Mark Fasheh11526512014-07-17 12:39:01 -07007940 }
7941
7942 if (level == 0) {
7943 ret = account_leaf_items(trans, root, path->nodes[level]);
7944 if (ret)
7945 goto out;
7946
7947 /* Nonzero return here means we completed our search */
7948 ret = adjust_slots_upwards(root, path, root_level);
7949 if (ret)
7950 break;
7951
7952 /* Restart search with new slots */
7953 goto walk_down;
7954 }
7955
7956 level--;
7957 }
7958
7959 ret = 0;
7960out:
7961 btrfs_free_path(path);
7962
7963 return ret;
7964}
7965
Chris Mason9aca1d52007-03-13 11:09:37 -04007966/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007967 * helper to process tree block while walking down the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04007968 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04007969 * when wc->stage == UPDATE_BACKREF, this function updates
7970 * back refs for pointers in the block.
7971 *
7972 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04007973 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007974static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
7975 struct btrfs_root *root,
7976 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007977 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04007978{
7979 int level = wc->level;
7980 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04007981 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
7982 int ret;
7983
7984 if (wc->stage == UPDATE_BACKREF &&
7985 btrfs_header_owner(eb) != root->root_key.objectid)
7986 return 1;
7987
7988 /*
7989 * when reference count of tree block is 1, it won't increase
7990 * again. once full backref flag is set, we never clear it.
7991 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04007992 if (lookup_info &&
7993 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
7994 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007995 BUG_ON(!path->locks[level]);
7996 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05007997 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007998 &wc->refs[level],
7999 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008000 BUG_ON(ret == -ENOMEM);
8001 if (ret)
8002 return ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008003 BUG_ON(wc->refs[level] == 0);
8004 }
8005
Yan Zheng2c47e6052009-06-27 21:07:35 -04008006 if (wc->stage == DROP_REFERENCE) {
8007 if (wc->refs[level] > 1)
8008 return 1;
8009
8010 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04008011 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008012 path->locks[level] = 0;
8013 }
8014 return 0;
8015 }
8016
8017 /* wc->stage == UPDATE_BACKREF */
8018 if (!(wc->flags[level] & flag)) {
8019 BUG_ON(!path->locks[level]);
Josef Bacike339a6b2014-07-02 10:54:25 -07008020 ret = btrfs_inc_ref(trans, root, eb, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008021 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07008022 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008023 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008024 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
Josef Bacikb1c79e02013-05-09 13:49:30 -04008025 eb->len, flag,
8026 btrfs_header_level(eb), 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008027 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008028 wc->flags[level] |= flag;
8029 }
8030
8031 /*
8032 * the block is shared by multiple trees, so it's not good to
8033 * keep the tree lock
8034 */
8035 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04008036 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008037 path->locks[level] = 0;
8038 }
8039 return 0;
8040}
8041
8042/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008043 * helper to process tree block pointer.
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008044 *
8045 * when wc->stage == DROP_REFERENCE, this function checks
8046 * reference count of the block pointed to. if the block
8047 * is shared and we need update back refs for the subtree
8048 * rooted at the block, this function changes wc->stage to
8049 * UPDATE_BACKREF. if the block is shared and there is no
8050 * need to update back, this function drops the reference
8051 * to the block.
8052 *
8053 * NOTE: return value 1 means we should stop walking down.
8054 */
8055static noinline int do_walk_down(struct btrfs_trans_handle *trans,
8056 struct btrfs_root *root,
8057 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008058 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008059{
8060 u64 bytenr;
8061 u64 generation;
8062 u64 parent;
8063 u32 blocksize;
8064 struct btrfs_key key;
8065 struct extent_buffer *next;
8066 int level = wc->level;
8067 int reada = 0;
8068 int ret = 0;
Mark Fasheh11526512014-07-17 12:39:01 -07008069 bool need_account = false;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008070
8071 generation = btrfs_node_ptr_generation(path->nodes[level],
8072 path->slots[level]);
8073 /*
8074 * if the lower level block was created before the snapshot
8075 * was created, we know there is no need to update back refs
8076 * for the subtree
8077 */
8078 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04008079 generation <= root->root_key.offset) {
8080 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008081 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008082 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008083
8084 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
David Sterba707e8a02014-06-04 19:22:26 +02008085 blocksize = root->nodesize;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008086
Daniel Dressler01d58472014-11-21 17:15:07 +09008087 next = btrfs_find_tree_block(root->fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008088 if (!next) {
David Sterbaa83fffb2014-06-15 02:39:54 +02008089 next = btrfs_find_create_tree_block(root, bytenr);
Miao Xie90d2c51d2010-03-25 12:37:12 +00008090 if (!next)
8091 return -ENOMEM;
Josef Bacikb2aaaa32013-07-05 17:05:38 -04008092 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
8093 level - 1);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008094 reada = 1;
8095 }
8096 btrfs_tree_lock(next);
8097 btrfs_set_lock_blocking(next);
8098
Josef Bacik3173a182013-03-07 14:22:04 -05008099 ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008100 &wc->refs[level - 1],
8101 &wc->flags[level - 1]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008102 if (ret < 0) {
8103 btrfs_tree_unlock(next);
8104 return ret;
8105 }
8106
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008107 if (unlikely(wc->refs[level - 1] == 0)) {
8108 btrfs_err(root->fs_info, "Missing references.");
8109 BUG();
8110 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008111 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008112
Yan, Zheng94fcca92009-10-09 09:25:16 -04008113 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008114 if (wc->refs[level - 1] > 1) {
Mark Fasheh11526512014-07-17 12:39:01 -07008115 need_account = true;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008116 if (level == 1 &&
8117 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8118 goto skip;
8119
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008120 if (!wc->update_ref ||
8121 generation <= root->root_key.offset)
8122 goto skip;
8123
8124 btrfs_node_key_to_cpu(path->nodes[level], &key,
8125 path->slots[level]);
8126 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
8127 if (ret < 0)
8128 goto skip;
8129
8130 wc->stage = UPDATE_BACKREF;
8131 wc->shared_level = level - 1;
8132 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008133 } else {
8134 if (level == 1 &&
8135 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8136 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008137 }
8138
Chris Masonb9fab912012-05-06 07:23:47 -04008139 if (!btrfs_buffer_uptodate(next, generation, 0)) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008140 btrfs_tree_unlock(next);
8141 free_extent_buffer(next);
8142 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008143 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008144 }
8145
8146 if (!next) {
8147 if (reada && level == 1)
8148 reada_walk_down(trans, root, wc, path);
David Sterbace86cd52014-06-15 01:07:32 +02008149 next = read_tree_block(root, bytenr, generation);
Liu Bo64c043d2015-05-25 17:30:15 +08008150 if (IS_ERR(next)) {
8151 return PTR_ERR(next);
8152 } else if (!extent_buffer_uptodate(next)) {
Josef Bacik416bc652013-04-23 14:17:42 -04008153 free_extent_buffer(next);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00008154 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04008155 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008156 btrfs_tree_lock(next);
8157 btrfs_set_lock_blocking(next);
8158 }
8159
8160 level--;
8161 BUG_ON(level != btrfs_header_level(next));
8162 path->nodes[level] = next;
8163 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008164 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008165 wc->level = level;
8166 if (wc->level == 1)
8167 wc->reada_slot = 0;
8168 return 0;
8169skip:
8170 wc->refs[level - 1] = 0;
8171 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008172 if (wc->stage == DROP_REFERENCE) {
8173 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
8174 parent = path->nodes[level]->start;
8175 } else {
8176 BUG_ON(root->root_key.objectid !=
8177 btrfs_header_owner(path->nodes[level]));
8178 parent = 0;
8179 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008180
Mark Fasheh11526512014-07-17 12:39:01 -07008181 if (need_account) {
8182 ret = account_shared_subtree(trans, root, next,
8183 generation, level - 1);
8184 if (ret) {
8185 printk_ratelimited(KERN_ERR "BTRFS: %s Error "
8186 "%d accounting shared subtree. Quota "
8187 "is out of sync, rescan required.\n",
8188 root->fs_info->sb->s_id, ret);
8189 }
8190 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008191 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008192 root->root_key.objectid, level - 1, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008193 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008194 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008195 btrfs_tree_unlock(next);
8196 free_extent_buffer(next);
Yan, Zheng94fcca92009-10-09 09:25:16 -04008197 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008198 return 1;
8199}
8200
8201/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008202 * helper to process tree block while walking up the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04008203 *
8204 * when wc->stage == DROP_REFERENCE, this function drops
8205 * reference count on the block.
8206 *
8207 * when wc->stage == UPDATE_BACKREF, this function changes
8208 * wc->stage back to DROP_REFERENCE if we changed wc->stage
8209 * to UPDATE_BACKREF previously while processing the block.
8210 *
8211 * NOTE: return value 1 means we should stop walking up.
8212 */
8213static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
8214 struct btrfs_root *root,
8215 struct btrfs_path *path,
8216 struct walk_control *wc)
8217{
Yan, Zhengf0486c62010-05-16 10:46:25 -04008218 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008219 int level = wc->level;
8220 struct extent_buffer *eb = path->nodes[level];
8221 u64 parent = 0;
8222
8223 if (wc->stage == UPDATE_BACKREF) {
8224 BUG_ON(wc->shared_level < level);
8225 if (level < wc->shared_level)
8226 goto out;
8227
Yan Zheng2c47e6052009-06-27 21:07:35 -04008228 ret = find_next_key(path, level + 1, &wc->update_progress);
8229 if (ret > 0)
8230 wc->update_ref = 0;
8231
8232 wc->stage = DROP_REFERENCE;
8233 wc->shared_level = -1;
8234 path->slots[level] = 0;
8235
8236 /*
8237 * check reference count again if the block isn't locked.
8238 * we should start walking down the tree again if reference
8239 * count is one.
8240 */
8241 if (!path->locks[level]) {
8242 BUG_ON(level == 0);
8243 btrfs_tree_lock(eb);
8244 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04008245 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008246
8247 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05008248 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008249 &wc->refs[level],
8250 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008251 if (ret < 0) {
8252 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00008253 path->locks[level] = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008254 return ret;
8255 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008256 BUG_ON(wc->refs[level] == 0);
8257 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04008258 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00008259 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008260 return 1;
8261 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008262 }
8263 }
8264
8265 /* wc->stage == DROP_REFERENCE */
8266 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
8267
8268 if (wc->refs[level] == 1) {
8269 if (level == 0) {
8270 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
Josef Bacike339a6b2014-07-02 10:54:25 -07008271 ret = btrfs_dec_ref(trans, root, eb, 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008272 else
Josef Bacike339a6b2014-07-02 10:54:25 -07008273 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008274 BUG_ON(ret); /* -ENOMEM */
Mark Fasheh11526512014-07-17 12:39:01 -07008275 ret = account_leaf_items(trans, root, eb);
8276 if (ret) {
8277 printk_ratelimited(KERN_ERR "BTRFS: %s Error "
8278 "%d accounting leaf items. Quota "
8279 "is out of sync, rescan required.\n",
8280 root->fs_info->sb->s_id, ret);
8281 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008282 }
8283 /* make block locked assertion in clean_tree_block happy */
8284 if (!path->locks[level] &&
8285 btrfs_header_generation(eb) == trans->transid) {
8286 btrfs_tree_lock(eb);
8287 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04008288 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008289 }
Daniel Dressler01d58472014-11-21 17:15:07 +09008290 clean_tree_block(trans, root->fs_info, eb);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008291 }
8292
8293 if (eb == root->node) {
8294 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
8295 parent = eb->start;
8296 else
8297 BUG_ON(root->root_key.objectid !=
8298 btrfs_header_owner(eb));
8299 } else {
8300 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
8301 parent = path->nodes[level + 1]->start;
8302 else
8303 BUG_ON(root->root_key.objectid !=
8304 btrfs_header_owner(path->nodes[level + 1]));
8305 }
8306
Jan Schmidt5581a512012-05-16 17:04:52 +02008307 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008308out:
8309 wc->refs[level] = 0;
8310 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008311 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008312}
8313
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008314static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
8315 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008316 struct btrfs_path *path,
8317 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04008318{
Yan Zheng2c47e6052009-06-27 21:07:35 -04008319 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008320 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008321 int ret;
8322
Yan Zheng2c47e6052009-06-27 21:07:35 -04008323 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04008324 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008325 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04008326 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008327
Yan Zheng2c47e6052009-06-27 21:07:35 -04008328 if (level == 0)
8329 break;
8330
Yan, Zheng7a7965f2010-02-01 02:41:17 +00008331 if (path->slots[level] >=
8332 btrfs_header_nritems(path->nodes[level]))
8333 break;
8334
Yan, Zheng94fcca92009-10-09 09:25:16 -04008335 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008336 if (ret > 0) {
8337 path->slots[level]++;
8338 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00008339 } else if (ret < 0)
8340 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008341 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008342 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04008343 return 0;
8344}
8345
Chris Masond3977122009-01-05 21:25:51 -05008346static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05008347 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04008348 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008349 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05008350{
Yan Zheng2c47e6052009-06-27 21:07:35 -04008351 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05008352 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04008353
Yan Zheng2c47e6052009-06-27 21:07:35 -04008354 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
8355 while (level < max_level && path->nodes[level]) {
8356 wc->level = level;
8357 if (path->slots[level] + 1 <
8358 btrfs_header_nritems(path->nodes[level])) {
8359 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05008360 return 0;
8361 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008362 ret = walk_up_proc(trans, root, path, wc);
8363 if (ret > 0)
8364 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05008365
Yan Zheng2c47e6052009-06-27 21:07:35 -04008366 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04008367 btrfs_tree_unlock_rw(path->nodes[level],
8368 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008369 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008370 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008371 free_extent_buffer(path->nodes[level]);
8372 path->nodes[level] = NULL;
8373 level++;
Chris Mason20524f02007-03-10 06:35:47 -05008374 }
8375 }
8376 return 1;
8377}
8378
Chris Mason9aca1d52007-03-13 11:09:37 -04008379/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04008380 * drop a subvolume tree.
8381 *
8382 * this function traverses the tree freeing any blocks that only
8383 * referenced by the tree.
8384 *
8385 * when a shared tree block is found. this function decreases its
8386 * reference count by one. if update_ref is true, this function
8387 * also make sure backrefs for the shared block and all lower level
8388 * blocks are properly updated.
David Sterba9d1a2a32013-03-12 15:13:28 +00008389 *
8390 * If called with for_reloc == 0, may exit early with -EAGAIN
Chris Mason9aca1d52007-03-13 11:09:37 -04008391 */
Jeff Mahoney2c536792011-10-03 23:22:41 -04008392int btrfs_drop_snapshot(struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008393 struct btrfs_block_rsv *block_rsv, int update_ref,
8394 int for_reloc)
Chris Mason20524f02007-03-10 06:35:47 -05008395{
Chris Mason5caf2a02007-04-02 11:20:42 -04008396 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008397 struct btrfs_trans_handle *trans;
8398 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04008399 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008400 struct walk_control *wc;
8401 struct btrfs_key key;
8402 int err = 0;
8403 int ret;
8404 int level;
Josef Bacikd29a9f62013-07-17 19:30:20 -04008405 bool root_dropped = false;
Chris Mason20524f02007-03-10 06:35:47 -05008406
Mark Fasheh11526512014-07-17 12:39:01 -07008407 btrfs_debug(root->fs_info, "Drop subvolume %llu", root->objectid);
8408
Chris Mason5caf2a02007-04-02 11:20:42 -04008409 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008410 if (!path) {
8411 err = -ENOMEM;
8412 goto out;
8413 }
Chris Mason20524f02007-03-10 06:35:47 -05008414
Yan Zheng2c47e6052009-06-27 21:07:35 -04008415 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07008416 if (!wc) {
8417 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008418 err = -ENOMEM;
8419 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07008420 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008421
Yan, Zhenga22285a2010-05-16 10:48:46 -04008422 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008423 if (IS_ERR(trans)) {
8424 err = PTR_ERR(trans);
8425 goto out_free;
8426 }
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00008427
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008428 if (block_rsv)
8429 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008430
Chris Mason9f3a7422007-08-07 15:52:19 -04008431 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008432 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008433 path->nodes[level] = btrfs_lock_root_node(root);
8434 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04008435 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008436 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008437 memset(&wc->update_progress, 0,
8438 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04008439 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04008440 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008441 memcpy(&wc->update_progress, &key,
8442 sizeof(wc->update_progress));
8443
Chris Mason6702ed42007-08-07 16:15:09 -04008444 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008445 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04008446 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008447 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
8448 path->lowest_level = 0;
8449 if (ret < 0) {
8450 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008451 goto out_end_trans;
Chris Mason9f3a7422007-08-07 15:52:19 -04008452 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008453 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008454
Chris Mason7d9eb122008-07-08 14:19:17 -04008455 /*
8456 * unlock our path, this is safe because only this
8457 * function is allowed to delete this snapshot
8458 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008459 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04008460
Yan Zheng2c47e6052009-06-27 21:07:35 -04008461 level = btrfs_header_level(root->node);
8462 while (1) {
8463 btrfs_tree_lock(path->nodes[level]);
8464 btrfs_set_lock_blocking(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04008465 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008466
8467 ret = btrfs_lookup_extent_info(trans, root,
8468 path->nodes[level]->start,
Josef Bacik3173a182013-03-07 14:22:04 -05008469 level, 1, &wc->refs[level],
Yan Zheng2c47e6052009-06-27 21:07:35 -04008470 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008471 if (ret < 0) {
8472 err = ret;
8473 goto out_end_trans;
8474 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008475 BUG_ON(wc->refs[level] == 0);
8476
8477 if (level == root_item->drop_level)
8478 break;
8479
8480 btrfs_tree_unlock(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04008481 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008482 WARN_ON(wc->refs[level] != 1);
8483 level--;
8484 }
8485 }
8486
8487 wc->level = level;
8488 wc->shared_level = -1;
8489 wc->stage = DROP_REFERENCE;
8490 wc->update_ref = update_ref;
8491 wc->keep_locks = 0;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008492 wc->for_reloc = for_reloc;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008493 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008494
8495 while (1) {
David Sterba9d1a2a32013-03-12 15:13:28 +00008496
Yan Zheng2c47e6052009-06-27 21:07:35 -04008497 ret = walk_down_tree(trans, root, path, wc);
8498 if (ret < 0) {
8499 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04008500 break;
8501 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008502
8503 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
8504 if (ret < 0) {
8505 err = ret;
8506 break;
8507 }
8508
8509 if (ret > 0) {
8510 BUG_ON(wc->stage != DROP_REFERENCE);
8511 break;
8512 }
8513
8514 if (wc->stage == DROP_REFERENCE) {
8515 level = wc->level;
8516 btrfs_node_key(path->nodes[level],
8517 &root_item->drop_progress,
8518 path->slots[level]);
8519 root_item->drop_level = level;
8520 }
8521
8522 BUG_ON(wc->level == 0);
Josef Bacik3c8f2422013-07-15 11:57:06 -04008523 if (btrfs_should_end_transaction(trans, tree_root) ||
8524 (!for_reloc && btrfs_need_cleaner_sleep(root))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008525 ret = btrfs_update_root(trans, tree_root,
8526 &root->root_key,
8527 root_item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008528 if (ret) {
8529 btrfs_abort_transaction(trans, tree_root, ret);
8530 err = ret;
8531 goto out_end_trans;
8532 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008533
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008534 btrfs_end_transaction_throttle(trans, tree_root);
Josef Bacik3c8f2422013-07-15 11:57:06 -04008535 if (!for_reloc && btrfs_need_cleaner_sleep(root)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05008536 pr_debug("BTRFS: drop snapshot early exit\n");
Josef Bacik3c8f2422013-07-15 11:57:06 -04008537 err = -EAGAIN;
8538 goto out_free;
8539 }
8540
Yan, Zhenga22285a2010-05-16 10:48:46 -04008541 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008542 if (IS_ERR(trans)) {
8543 err = PTR_ERR(trans);
8544 goto out_free;
8545 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008546 if (block_rsv)
8547 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04008548 }
Chris Mason20524f02007-03-10 06:35:47 -05008549 }
David Sterbab3b4aa72011-04-21 01:20:15 +02008550 btrfs_release_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008551 if (err)
8552 goto out_end_trans;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008553
8554 ret = btrfs_del_root(trans, tree_root, &root->root_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008555 if (ret) {
8556 btrfs_abort_transaction(trans, tree_root, ret);
8557 goto out_end_trans;
8558 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008559
Yan, Zheng76dda932009-09-21 16:00:26 -04008560 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Miao Xiecb517ea2013-05-15 07:48:19 +00008561 ret = btrfs_find_root(tree_root, &root->root_key, path,
8562 NULL, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008563 if (ret < 0) {
8564 btrfs_abort_transaction(trans, tree_root, ret);
8565 err = ret;
8566 goto out_end_trans;
8567 } else if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05008568 /* if we fail to delete the orphan item this time
8569 * around, it'll get picked up the next time.
8570 *
8571 * The most common failure here is just -ENOENT.
8572 */
8573 btrfs_del_orphan_item(trans, tree_root,
8574 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04008575 }
8576 }
8577
Miao Xie27cdeb72014-04-02 19:51:05 +08008578 if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) {
Miao Xiecb517ea2013-05-15 07:48:19 +00008579 btrfs_drop_and_free_fs_root(tree_root->fs_info, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04008580 } else {
8581 free_extent_buffer(root->node);
8582 free_extent_buffer(root->commit_root);
Miao Xieb0feb9d2013-05-15 07:48:20 +00008583 btrfs_put_fs_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04008584 }
Josef Bacikd29a9f62013-07-17 19:30:20 -04008585 root_dropped = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008586out_end_trans:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008587 btrfs_end_transaction_throttle(trans, tree_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008588out_free:
Yan Zheng2c47e6052009-06-27 21:07:35 -04008589 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04008590 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008591out:
Josef Bacikd29a9f62013-07-17 19:30:20 -04008592 /*
8593 * So if we need to stop dropping the snapshot for whatever reason we
8594 * need to make sure to add it back to the dead root list so that we
8595 * keep trying to do the work later. This also cleans up roots if we
8596 * don't have it in the radix (like when we recover after a power fail
8597 * or unmount) so we don't leak memory.
8598 */
Josef Bacikb37b39c2013-07-23 16:57:15 -04008599 if (!for_reloc && root_dropped == false)
Josef Bacikd29a9f62013-07-17 19:30:20 -04008600 btrfs_add_dead_root(root);
Wang Shilong90515e72014-01-07 17:26:58 +08008601 if (err && err != -EAGAIN)
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008602 btrfs_std_error(root->fs_info, err);
Jeff Mahoney2c536792011-10-03 23:22:41 -04008603 return err;
Chris Mason20524f02007-03-10 06:35:47 -05008604}
Chris Mason9078a3e2007-04-26 16:46:15 -04008605
Yan Zheng2c47e6052009-06-27 21:07:35 -04008606/*
8607 * drop subtree rooted at tree block 'node'.
8608 *
8609 * NOTE: this function will unlock and release tree block 'node'
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008610 * only used by relocation code
Yan Zheng2c47e6052009-06-27 21:07:35 -04008611 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04008612int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
8613 struct btrfs_root *root,
8614 struct extent_buffer *node,
8615 struct extent_buffer *parent)
8616{
8617 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008618 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008619 int level;
8620 int parent_level;
8621 int ret = 0;
8622 int wret;
8623
Yan Zheng2c47e6052009-06-27 21:07:35 -04008624 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
8625
Yan Zhengf82d02d2008-10-29 14:49:05 -04008626 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00008627 if (!path)
8628 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008629
Yan Zheng2c47e6052009-06-27 21:07:35 -04008630 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00008631 if (!wc) {
8632 btrfs_free_path(path);
8633 return -ENOMEM;
8634 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008635
Chris Masonb9447ef2009-03-09 11:45:38 -04008636 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008637 parent_level = btrfs_header_level(parent);
8638 extent_buffer_get(parent);
8639 path->nodes[parent_level] = parent;
8640 path->slots[parent_level] = btrfs_header_nritems(parent);
8641
Chris Masonb9447ef2009-03-09 11:45:38 -04008642 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008643 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008644 path->nodes[level] = node;
8645 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008646 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008647
8648 wc->refs[parent_level] = 1;
8649 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
8650 wc->level = level;
8651 wc->shared_level = -1;
8652 wc->stage = DROP_REFERENCE;
8653 wc->update_ref = 0;
8654 wc->keep_locks = 1;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008655 wc->for_reloc = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008656 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008657
8658 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008659 wret = walk_down_tree(trans, root, path, wc);
8660 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04008661 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008662 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008663 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04008664
Yan Zheng2c47e6052009-06-27 21:07:35 -04008665 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008666 if (wret < 0)
8667 ret = wret;
8668 if (wret != 0)
8669 break;
8670 }
8671
Yan Zheng2c47e6052009-06-27 21:07:35 -04008672 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008673 btrfs_free_path(path);
8674 return ret;
8675}
8676
Chris Masonec44a352008-04-28 15:29:52 -04008677static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
8678{
8679 u64 num_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03008680 u64 stripped;
Chris Masonec44a352008-04-28 15:29:52 -04008681
Ilya Dryomovfc67c452012-03-27 17:09:17 +03008682 /*
8683 * if restripe for this chunk_type is on pick target profile and
8684 * return, otherwise do the usual balance
8685 */
8686 stripped = get_restripe_target(root->fs_info, flags);
8687 if (stripped)
8688 return extended_to_chunk(stripped);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02008689
Miao Xie95669972014-07-24 11:37:14 +08008690 num_devices = root->fs_info->fs_devices->rw_devices;
Chris Masoncd02dca2010-12-13 14:56:23 -05008691
Ilya Dryomovfc67c452012-03-27 17:09:17 +03008692 stripped = BTRFS_BLOCK_GROUP_RAID0 |
David Woodhouse53b381b2013-01-29 18:40:14 -05008693 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
Ilya Dryomovfc67c452012-03-27 17:09:17 +03008694 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
8695
Chris Masonec44a352008-04-28 15:29:52 -04008696 if (num_devices == 1) {
8697 stripped |= BTRFS_BLOCK_GROUP_DUP;
8698 stripped = flags & ~stripped;
8699
8700 /* turn raid0 into single device chunks */
8701 if (flags & BTRFS_BLOCK_GROUP_RAID0)
8702 return stripped;
8703
8704 /* turn mirroring into duplication */
8705 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
8706 BTRFS_BLOCK_GROUP_RAID10))
8707 return stripped | BTRFS_BLOCK_GROUP_DUP;
Chris Masonec44a352008-04-28 15:29:52 -04008708 } else {
8709 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04008710 if (flags & stripped)
8711 return flags;
8712
8713 stripped |= BTRFS_BLOCK_GROUP_DUP;
8714 stripped = flags & ~stripped;
8715
8716 /* switch duplicated blocks with raid1 */
8717 if (flags & BTRFS_BLOCK_GROUP_DUP)
8718 return stripped | BTRFS_BLOCK_GROUP_RAID1;
8719
Ilya Dryomove3176ca2012-03-27 17:09:16 +03008720 /* this is drive concat, leave it alone */
Chris Masonec44a352008-04-28 15:29:52 -04008721 }
Ilya Dryomove3176ca2012-03-27 17:09:16 +03008722
Chris Masonec44a352008-04-28 15:29:52 -04008723 return flags;
8724}
8725
Miao Xie199c36e2011-07-15 10:34:36 +00008726static int set_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04008727{
Yan, Zhengf0486c62010-05-16 10:46:25 -04008728 struct btrfs_space_info *sinfo = cache->space_info;
8729 u64 num_bytes;
Miao Xie199c36e2011-07-15 10:34:36 +00008730 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008731 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04008732
Chris Masonc286ac42008-07-22 23:06:41 -04008733
Miao Xie199c36e2011-07-15 10:34:36 +00008734 /*
8735 * We need some metadata space and system metadata space for
8736 * allocating chunks in some corner cases until we force to set
8737 * it to be readonly.
8738 */
8739 if ((sinfo->flags &
8740 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
8741 !force)
8742 min_allocable_bytes = 1 * 1024 * 1024;
8743 else
8744 min_allocable_bytes = 0;
8745
Yan, Zhengf0486c62010-05-16 10:46:25 -04008746 spin_lock(&sinfo->lock);
8747 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00008748
8749 if (cache->ro) {
8750 ret = 0;
8751 goto out;
8752 }
8753
Yan, Zhengf0486c62010-05-16 10:46:25 -04008754 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8755 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04008756
Yan, Zhengf0486c62010-05-16 10:46:25 -04008757 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
Josef Bacik37be25b2011-08-05 10:25:38 -04008758 sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes +
8759 min_allocable_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04008760 sinfo->bytes_readonly += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008761 cache->ro = 1;
Josef Bacik633c0aa2014-10-31 09:49:34 -04008762 list_add_tail(&cache->ro_list, &sinfo->ro_bgs);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008763 ret = 0;
8764 }
WuBo61cfea92011-07-26 03:30:11 +00008765out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04008766 spin_unlock(&cache->lock);
8767 spin_unlock(&sinfo->lock);
8768 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04008769}
8770
Yan, Zhengf0486c62010-05-16 10:46:25 -04008771int btrfs_set_block_group_ro(struct btrfs_root *root,
8772 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008773
8774{
Yan, Zhengf0486c62010-05-16 10:46:25 -04008775 struct btrfs_trans_handle *trans;
8776 u64 alloc_flags;
8777 int ret;
8778
8779 BUG_ON(cache->ro);
8780
Chris Mason1bbc6212015-04-06 12:46:08 -07008781again:
Josef Bacik7a7eaa42011-04-13 12:54:33 -04008782 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008783 if (IS_ERR(trans))
8784 return PTR_ERR(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008785
Chris Mason1bbc6212015-04-06 12:46:08 -07008786 /*
8787 * we're not allowed to set block groups readonly after the dirty
8788 * block groups cache has started writing. If it already started,
8789 * back off and let this transaction commit
8790 */
8791 mutex_lock(&root->fs_info->ro_block_group_mutex);
8792 if (trans->transaction->dirty_bg_run) {
8793 u64 transid = trans->transid;
8794
8795 mutex_unlock(&root->fs_info->ro_block_group_mutex);
8796 btrfs_end_transaction(trans, root);
8797
8798 ret = btrfs_wait_for_commit(root, transid);
8799 if (ret)
8800 return ret;
8801 goto again;
8802 }
8803
Chris Mason153c35b2015-05-19 18:54:41 -07008804 /*
8805 * if we are changing raid levels, try to allocate a corresponding
8806 * block group with the new raid level.
8807 */
8808 alloc_flags = update_block_group_flags(root, cache->flags);
8809 if (alloc_flags != cache->flags) {
8810 ret = do_chunk_alloc(trans, root, alloc_flags,
8811 CHUNK_ALLOC_FORCE);
8812 /*
8813 * ENOSPC is allowed here, we may have enough space
8814 * already allocated at the new raid level to
8815 * carry on
8816 */
8817 if (ret == -ENOSPC)
8818 ret = 0;
8819 if (ret < 0)
8820 goto out;
8821 }
Chris Mason1bbc6212015-04-06 12:46:08 -07008822
Miao Xie199c36e2011-07-15 10:34:36 +00008823 ret = set_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008824 if (!ret)
8825 goto out;
8826 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
Josef Bacik698d0082012-09-12 14:08:47 -04008827 ret = do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04008828 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008829 if (ret < 0)
8830 goto out;
Miao Xie199c36e2011-07-15 10:34:36 +00008831 ret = set_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008832out:
Shaohua Li2f081082015-01-09 10:40:15 -08008833 if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
8834 alloc_flags = update_block_group_flags(root, cache->flags);
Filipe Mananaa9629592015-05-18 19:11:40 +01008835 lock_chunks(root->fs_info->chunk_root);
Filipe Manana4617ea32015-06-09 17:48:21 +01008836 check_system_chunk(trans, root, alloc_flags);
Filipe Mananaa9629592015-05-18 19:11:40 +01008837 unlock_chunks(root->fs_info->chunk_root);
Shaohua Li2f081082015-01-09 10:40:15 -08008838 }
Chris Mason1bbc6212015-04-06 12:46:08 -07008839 mutex_unlock(&root->fs_info->ro_block_group_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08008840
Yan, Zhengf0486c62010-05-16 10:46:25 -04008841 btrfs_end_transaction(trans, root);
8842 return ret;
8843}
8844
Chris Masonc87f08c2011-02-16 13:57:04 -05008845int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
8846 struct btrfs_root *root, u64 type)
8847{
8848 u64 alloc_flags = get_alloc_profile(root, type);
Josef Bacik698d0082012-09-12 14:08:47 -04008849 return do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04008850 CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05008851}
8852
Miao Xie6d07bce2011-01-05 10:07:31 +00008853/*
8854 * helper to account the unused space of all the readonly block group in the
Josef Bacik633c0aa2014-10-31 09:49:34 -04008855 * space_info. takes mirrors into account.
Miao Xie6d07bce2011-01-05 10:07:31 +00008856 */
Josef Bacik633c0aa2014-10-31 09:49:34 -04008857u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
Miao Xie6d07bce2011-01-05 10:07:31 +00008858{
8859 struct btrfs_block_group_cache *block_group;
8860 u64 free_bytes = 0;
8861 int factor;
8862
Josef Bacik633c0aa2014-10-31 09:49:34 -04008863 /* It's df, we don't care if it's racey */
8864 if (list_empty(&sinfo->ro_bgs))
8865 return 0;
8866
8867 spin_lock(&sinfo->lock);
8868 list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00008869 spin_lock(&block_group->lock);
8870
8871 if (!block_group->ro) {
8872 spin_unlock(&block_group->lock);
8873 continue;
8874 }
8875
8876 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
8877 BTRFS_BLOCK_GROUP_RAID10 |
8878 BTRFS_BLOCK_GROUP_DUP))
8879 factor = 2;
8880 else
8881 factor = 1;
8882
8883 free_bytes += (block_group->key.offset -
8884 btrfs_block_group_used(&block_group->item)) *
8885 factor;
8886
8887 spin_unlock(&block_group->lock);
8888 }
Miao Xie6d07bce2011-01-05 10:07:31 +00008889 spin_unlock(&sinfo->lock);
8890
8891 return free_bytes;
8892}
8893
Jeff Mahoney143bede2012-03-01 14:56:26 +01008894void btrfs_set_block_group_rw(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04008895 struct btrfs_block_group_cache *cache)
8896{
8897 struct btrfs_space_info *sinfo = cache->space_info;
8898 u64 num_bytes;
8899
8900 BUG_ON(!cache->ro);
8901
8902 spin_lock(&sinfo->lock);
8903 spin_lock(&cache->lock);
8904 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8905 cache->bytes_super - btrfs_block_group_used(&cache->item);
8906 sinfo->bytes_readonly -= num_bytes;
8907 cache->ro = 0;
Josef Bacik633c0aa2014-10-31 09:49:34 -04008908 list_del_init(&cache->ro_list);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008909 spin_unlock(&cache->lock);
8910 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008911}
8912
Josef Bacikba1bf482009-09-11 16:11:19 -04008913/*
8914 * checks to see if its even possible to relocate this block group.
8915 *
8916 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
8917 * ok to go ahead and try.
8918 */
8919int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04008920{
Zheng Yan1a40e232008-09-26 10:09:34 -04008921 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04008922 struct btrfs_space_info *space_info;
8923 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
8924 struct btrfs_device *device;
Josef Bacik6df9a952013-06-27 13:22:46 -04008925 struct btrfs_trans_handle *trans;
liubocdcb7252011-08-03 10:15:25 +00008926 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04008927 u64 dev_min = 1;
8928 u64 dev_nr = 0;
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008929 u64 target;
liubocdcb7252011-08-03 10:15:25 +00008930 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04008931 int full = 0;
8932 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05008933
Josef Bacikba1bf482009-09-11 16:11:19 -04008934 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04008935
Josef Bacikba1bf482009-09-11 16:11:19 -04008936 /* odd, couldn't find the block group, leave it alone */
8937 if (!block_group)
8938 return -1;
Chris Masonedbd8d42007-12-21 16:27:24 -05008939
liubocdcb7252011-08-03 10:15:25 +00008940 min_free = btrfs_block_group_used(&block_group->item);
8941
Josef Bacikba1bf482009-09-11 16:11:19 -04008942 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00008943 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04008944 goto out;
Chris Mason323da792008-05-09 11:46:48 -04008945
Josef Bacikba1bf482009-09-11 16:11:19 -04008946 space_info = block_group->space_info;
8947 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04008948
Josef Bacikba1bf482009-09-11 16:11:19 -04008949 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04008950
Josef Bacikba1bf482009-09-11 16:11:19 -04008951 /*
8952 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04008953 * relocate it unless we're able to allocate a new chunk below.
8954 *
8955 * Otherwise, we need to make sure we have room in the space to handle
8956 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04008957 */
Chris Mason7ce618d2009-09-22 14:48:44 -04008958 if ((space_info->total_bytes != block_group->key.offset) &&
liubocdcb7252011-08-03 10:15:25 +00008959 (space_info->bytes_used + space_info->bytes_reserved +
8960 space_info->bytes_pinned + space_info->bytes_readonly +
8961 min_free < space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04008962 spin_unlock(&space_info->lock);
8963 goto out;
8964 }
8965 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008966
Josef Bacikba1bf482009-09-11 16:11:19 -04008967 /*
8968 * ok we don't have enough space, but maybe we have free space on our
8969 * devices to allocate new chunks for relocation, so loop through our
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008970 * alloc devices and guess if we have enough space. if this block
8971 * group is going to be restriped, run checks against the target
8972 * profile instead of the current one.
Josef Bacikba1bf482009-09-11 16:11:19 -04008973 */
8974 ret = -1;
Chris Mason4313b392008-01-03 09:08:48 -05008975
liubocdcb7252011-08-03 10:15:25 +00008976 /*
8977 * index:
8978 * 0: raid10
8979 * 1: raid1
8980 * 2: dup
8981 * 3: raid0
8982 * 4: single
8983 */
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008984 target = get_restripe_target(root->fs_info, block_group->flags);
8985 if (target) {
Liu Bo31e50222012-11-21 14:18:10 +00008986 index = __get_raid_index(extended_to_chunk(target));
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008987 } else {
8988 /*
8989 * this is just a balance, so if we were marked as full
8990 * we know there is no space for a new chunk
8991 */
8992 if (full)
8993 goto out;
8994
8995 index = get_block_group_index(block_group);
8996 }
8997
Miao Xiee6ec7162013-01-17 05:38:51 +00008998 if (index == BTRFS_RAID_RAID10) {
liubocdcb7252011-08-03 10:15:25 +00008999 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04009000 /* Divide by 2 */
9001 min_free >>= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009002 } else if (index == BTRFS_RAID_RAID1) {
liubocdcb7252011-08-03 10:15:25 +00009003 dev_min = 2;
Miao Xiee6ec7162013-01-17 05:38:51 +00009004 } else if (index == BTRFS_RAID_DUP) {
Josef Bacik6719db62011-08-20 08:29:51 -04009005 /* Multiply by 2 */
9006 min_free <<= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009007 } else if (index == BTRFS_RAID_RAID0) {
liubocdcb7252011-08-03 10:15:25 +00009008 dev_min = fs_devices->rw_devices;
David Sterba47c57132015-02-20 18:43:47 +01009009 min_free = div64_u64(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00009010 }
9011
Josef Bacik6df9a952013-06-27 13:22:46 -04009012 /* We need to do this so that we can look at pending chunks */
9013 trans = btrfs_join_transaction(root);
9014 if (IS_ERR(trans)) {
9015 ret = PTR_ERR(trans);
9016 goto out;
9017 }
9018
Josef Bacikba1bf482009-09-11 16:11:19 -04009019 mutex_lock(&root->fs_info->chunk_mutex);
9020 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00009021 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04009022
Josef Bacikba1bf482009-09-11 16:11:19 -04009023 /*
9024 * check to make sure we can actually find a chunk with enough
9025 * space to fit our block group in.
9026 */
Stefan Behrens63a212a2012-11-05 18:29:28 +01009027 if (device->total_bytes > device->bytes_used + min_free &&
9028 !device->is_tgtdev_for_dev_replace) {
Josef Bacik6df9a952013-06-27 13:22:46 -04009029 ret = find_free_dev_extent(trans, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00009030 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04009031 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00009032 dev_nr++;
9033
9034 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05009035 break;
liubocdcb7252011-08-03 10:15:25 +00009036
Josef Bacikba1bf482009-09-11 16:11:19 -04009037 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05009038 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009039 }
Josef Bacikba1bf482009-09-11 16:11:19 -04009040 mutex_unlock(&root->fs_info->chunk_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04009041 btrfs_end_transaction(trans, root);
Chris Masonedbd8d42007-12-21 16:27:24 -05009042out:
Josef Bacikba1bf482009-09-11 16:11:19 -04009043 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05009044 return ret;
9045}
9046
Christoph Hellwigb2950862008-12-02 09:54:17 -05009047static int find_first_block_group(struct btrfs_root *root,
9048 struct btrfs_path *path, struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04009049{
Chris Mason925baed2008-06-25 16:01:30 -04009050 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04009051 struct btrfs_key found_key;
9052 struct extent_buffer *leaf;
9053 int slot;
9054
9055 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
9056 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009057 goto out;
9058
Chris Masond3977122009-01-05 21:25:51 -05009059 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04009060 slot = path->slots[0];
9061 leaf = path->nodes[0];
9062 if (slot >= btrfs_header_nritems(leaf)) {
9063 ret = btrfs_next_leaf(root, path);
9064 if (ret == 0)
9065 continue;
9066 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009067 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04009068 break;
9069 }
9070 btrfs_item_key_to_cpu(leaf, &found_key, slot);
9071
9072 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04009073 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
9074 ret = 0;
9075 goto out;
9076 }
Chris Mason0b86a832008-03-24 15:01:56 -04009077 path->slots[0]++;
9078 }
Chris Mason925baed2008-06-25 16:01:30 -04009079out:
Chris Mason0b86a832008-03-24 15:01:56 -04009080 return ret;
9081}
9082
Josef Bacik0af3d002010-06-21 14:48:16 -04009083void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
9084{
9085 struct btrfs_block_group_cache *block_group;
9086 u64 last = 0;
9087
9088 while (1) {
9089 struct inode *inode;
9090
9091 block_group = btrfs_lookup_first_block_group(info, last);
9092 while (block_group) {
9093 spin_lock(&block_group->lock);
9094 if (block_group->iref)
9095 break;
9096 spin_unlock(&block_group->lock);
9097 block_group = next_block_group(info->tree_root,
9098 block_group);
9099 }
9100 if (!block_group) {
9101 if (last == 0)
9102 break;
9103 last = 0;
9104 continue;
9105 }
9106
9107 inode = block_group->inode;
9108 block_group->iref = 0;
9109 block_group->inode = NULL;
9110 spin_unlock(&block_group->lock);
9111 iput(inode);
9112 last = block_group->key.objectid + block_group->key.offset;
9113 btrfs_put_block_group(block_group);
9114 }
9115}
9116
Zheng Yan1a40e232008-09-26 10:09:34 -04009117int btrfs_free_block_groups(struct btrfs_fs_info *info)
9118{
9119 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04009120 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04009121 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04009122 struct rb_node *n;
9123
Josef Bacik9e351cc2014-03-13 15:42:13 -04009124 down_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04009125 while (!list_empty(&info->caching_block_groups)) {
9126 caching_ctl = list_entry(info->caching_block_groups.next,
9127 struct btrfs_caching_control, list);
9128 list_del(&caching_ctl->list);
9129 put_caching_control(caching_ctl);
9130 }
Josef Bacik9e351cc2014-03-13 15:42:13 -04009131 up_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04009132
Josef Bacik47ab2a62014-09-18 11:20:02 -04009133 spin_lock(&info->unused_bgs_lock);
9134 while (!list_empty(&info->unused_bgs)) {
9135 block_group = list_first_entry(&info->unused_bgs,
9136 struct btrfs_block_group_cache,
9137 bg_list);
9138 list_del_init(&block_group->bg_list);
9139 btrfs_put_block_group(block_group);
9140 }
9141 spin_unlock(&info->unused_bgs_lock);
9142
Zheng Yan1a40e232008-09-26 10:09:34 -04009143 spin_lock(&info->block_group_cache_lock);
9144 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
9145 block_group = rb_entry(n, struct btrfs_block_group_cache,
9146 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04009147 rb_erase(&block_group->cache_node,
9148 &info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +00009149 RB_CLEAR_NODE(&block_group->cache_node);
Yan Zhengd899e052008-10-30 14:25:28 -04009150 spin_unlock(&info->block_group_cache_lock);
9151
Josef Bacik80eb2342008-10-29 14:49:05 -04009152 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04009153 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04009154 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05009155
Josef Bacik817d52f2009-07-13 21:29:25 -04009156 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04009157 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04009158
Josef Bacik3c148742011-02-02 15:53:47 +00009159 /*
9160 * We haven't cached this block group, which means we could
9161 * possibly have excluded extents on this block group.
9162 */
Josef Bacik36cce922013-08-05 11:15:21 -04009163 if (block_group->cached == BTRFS_CACHE_NO ||
9164 block_group->cached == BTRFS_CACHE_ERROR)
Josef Bacik3c148742011-02-02 15:53:47 +00009165 free_excluded_extents(info->extent_root, block_group);
9166
Josef Bacik817d52f2009-07-13 21:29:25 -04009167 btrfs_remove_free_space_cache(block_group);
Josef Bacik11dfe352009-11-13 20:12:59 +00009168 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04009169
9170 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009171 }
9172 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -04009173
9174 /* now that all the block groups are freed, go through and
9175 * free all the space_info structs. This is only called during
9176 * the final stages of unmount, and so we know nobody is
9177 * using them. We call synchronize_rcu() once before we start,
9178 * just to be on the safe side.
9179 */
9180 synchronize_rcu();
9181
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04009182 release_global_block_rsv(info);
9183
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05309184 while (!list_empty(&info->space_info)) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009185 int i;
9186
Chris Mason4184ea72009-03-10 12:39:20 -04009187 space_info = list_entry(info->space_info.next,
9188 struct btrfs_space_info,
9189 list);
David Sterbab069e0c2013-02-08 21:28:17 +00009190 if (btrfs_test_opt(info->tree_root, ENOSPC_DEBUG)) {
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05309191 if (WARN_ON(space_info->bytes_pinned > 0 ||
David Sterbab069e0c2013-02-08 21:28:17 +00009192 space_info->bytes_reserved > 0 ||
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05309193 space_info->bytes_may_use > 0)) {
David Sterbab069e0c2013-02-08 21:28:17 +00009194 dump_space_info(space_info, 0, 0);
9195 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009196 }
Chris Mason4184ea72009-03-10 12:39:20 -04009197 list_del(&space_info->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009198 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
9199 struct kobject *kobj;
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009200 kobj = space_info->block_group_kobjs[i];
9201 space_info->block_group_kobjs[i] = NULL;
9202 if (kobj) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009203 kobject_del(kobj);
9204 kobject_put(kobj);
9205 }
9206 }
9207 kobject_del(&space_info->kobj);
9208 kobject_put(&space_info->kobj);
Chris Mason4184ea72009-03-10 12:39:20 -04009209 }
Zheng Yan1a40e232008-09-26 10:09:34 -04009210 return 0;
9211}
9212
Yan, Zhengb742bb82010-05-16 10:46:24 -04009213static void __link_block_group(struct btrfs_space_info *space_info,
9214 struct btrfs_block_group_cache *cache)
9215{
9216 int index = get_block_group_index(cache);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -04009217 bool first = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04009218
9219 down_write(&space_info->groups_sem);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -04009220 if (list_empty(&space_info->block_groups[index]))
9221 first = true;
9222 list_add_tail(&cache->list, &space_info->block_groups[index]);
9223 up_write(&space_info->groups_sem);
9224
9225 if (first) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009226 struct raid_kobject *rkobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009227 int ret;
9228
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009229 rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS);
9230 if (!rkobj)
9231 goto out_err;
9232 rkobj->raid_type = index;
9233 kobject_init(&rkobj->kobj, &btrfs_raid_ktype);
9234 ret = kobject_add(&rkobj->kobj, &space_info->kobj,
9235 "%s", get_raid_name(index));
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009236 if (ret) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009237 kobject_put(&rkobj->kobj);
9238 goto out_err;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009239 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009240 space_info->block_group_kobjs[index] = &rkobj->kobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009241 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009242
9243 return;
9244out_err:
9245 pr_warn("BTRFS: failed to add kobject for block cache. ignoring.\n");
Yan, Zhengb742bb82010-05-16 10:46:24 -04009246}
9247
Miao Xie920e4a52014-01-15 20:00:55 +08009248static struct btrfs_block_group_cache *
9249btrfs_create_block_group_cache(struct btrfs_root *root, u64 start, u64 size)
9250{
9251 struct btrfs_block_group_cache *cache;
9252
9253 cache = kzalloc(sizeof(*cache), GFP_NOFS);
9254 if (!cache)
9255 return NULL;
9256
9257 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
9258 GFP_NOFS);
9259 if (!cache->free_space_ctl) {
9260 kfree(cache);
9261 return NULL;
9262 }
9263
9264 cache->key.objectid = start;
9265 cache->key.offset = size;
9266 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
9267
9268 cache->sectorsize = root->sectorsize;
9269 cache->fs_info = root->fs_info;
9270 cache->full_stripe_len = btrfs_full_stripe_len(root,
9271 &root->fs_info->mapping_tree,
9272 start);
9273 atomic_set(&cache->count, 1);
9274 spin_lock_init(&cache->lock);
Miao Xiee570fd22014-06-19 10:42:50 +08009275 init_rwsem(&cache->data_rwsem);
Miao Xie920e4a52014-01-15 20:00:55 +08009276 INIT_LIST_HEAD(&cache->list);
9277 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009278 INIT_LIST_HEAD(&cache->bg_list);
Josef Bacik633c0aa2014-10-31 09:49:34 -04009279 INIT_LIST_HEAD(&cache->ro_list);
Josef Bacikce93ec52014-11-17 15:45:48 -05009280 INIT_LIST_HEAD(&cache->dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07009281 INIT_LIST_HEAD(&cache->io_list);
Miao Xie920e4a52014-01-15 20:00:55 +08009282 btrfs_init_free_space_ctl(cache);
Filipe Manana04216822014-11-27 21:14:15 +00009283 atomic_set(&cache->trimming, 0);
Miao Xie920e4a52014-01-15 20:00:55 +08009284
9285 return cache;
9286}
9287
Chris Mason9078a3e2007-04-26 16:46:15 -04009288int btrfs_read_block_groups(struct btrfs_root *root)
9289{
9290 struct btrfs_path *path;
9291 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04009292 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04009293 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04009294 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04009295 struct btrfs_key key;
9296 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04009297 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -04009298 int need_clear = 0;
9299 u64 cache_gen;
Chris Mason96b51792007-10-15 16:15:19 -04009300
Chris Masonbe744172007-05-06 10:15:01 -04009301 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04009302 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04009303 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02009304 key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Chris Mason9078a3e2007-04-26 16:46:15 -04009305 path = btrfs_alloc_path();
9306 if (!path)
9307 return -ENOMEM;
Josef Bacik026fd312011-05-13 10:32:11 -04009308 path->reada = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04009309
David Sterba6c417612011-04-13 15:41:04 +02009310 cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
Josef Bacik73bc1872011-10-03 14:07:49 -04009311 if (btrfs_test_opt(root, SPACE_CACHE) &&
David Sterba6c417612011-04-13 15:41:04 +02009312 btrfs_super_generation(root->fs_info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -04009313 need_clear = 1;
Josef Bacik88c2ba32010-09-21 14:21:34 -04009314 if (btrfs_test_opt(root, CLEAR_CACHE))
9315 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -04009316
Chris Masond3977122009-01-05 21:25:51 -05009317 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04009318 ret = find_first_block_group(root, path, &key);
Yan, Zhengb742bb82010-05-16 10:46:24 -04009319 if (ret > 0)
9320 break;
Chris Mason0b86a832008-03-24 15:01:56 -04009321 if (ret != 0)
9322 goto error;
Miao Xie920e4a52014-01-15 20:00:55 +08009323
Chris Mason5f39d392007-10-15 16:14:19 -04009324 leaf = path->nodes[0];
9325 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Miao Xie920e4a52014-01-15 20:00:55 +08009326
9327 cache = btrfs_create_block_group_cache(root, found_key.objectid,
9328 found_key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04009329 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04009330 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009331 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04009332 }
Josef Bacik96303082009-07-13 21:29:25 -04009333
Liu Bocf7c1ef2012-07-06 03:31:34 -06009334 if (need_clear) {
9335 /*
9336 * When we mount with old space cache, we need to
9337 * set BTRFS_DC_CLEAR and set dirty flag.
9338 *
9339 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
9340 * truncate the old free space cache inode and
9341 * setup a new one.
9342 * b) Setting 'dirty flag' makes sure that we flush
9343 * the new space cache info onto disk.
9344 */
Liu Bocf7c1ef2012-07-06 03:31:34 -06009345 if (btrfs_test_opt(root, SPACE_CACHE))
Josef Bacikce93ec52014-11-17 15:45:48 -05009346 cache->disk_cache_state = BTRFS_DC_CLEAR;
Liu Bocf7c1ef2012-07-06 03:31:34 -06009347 }
Josef Bacik0af3d002010-06-21 14:48:16 -04009348
Chris Mason5f39d392007-10-15 16:14:19 -04009349 read_extent_buffer(leaf, &cache->item,
9350 btrfs_item_ptr_offset(leaf, path->slots[0]),
9351 sizeof(cache->item));
Miao Xie920e4a52014-01-15 20:00:55 +08009352 cache->flags = btrfs_block_group_flags(&cache->item);
Chris Mason0b86a832008-03-24 15:01:56 -04009353
Chris Mason9078a3e2007-04-26 16:46:15 -04009354 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +02009355 btrfs_release_path(path);
Li Zefan34d52cb2011-03-29 13:46:06 +08009356
Josef Bacik817d52f2009-07-13 21:29:25 -04009357 /*
Josef Bacik3c148742011-02-02 15:53:47 +00009358 * We need to exclude the super stripes now so that the space
9359 * info has super bytes accounted for, otherwise we'll think
9360 * we have more space than we actually do.
9361 */
Josef Bacik835d9742013-03-19 12:13:25 -04009362 ret = exclude_super_stripes(root, cache);
9363 if (ret) {
9364 /*
9365 * We may have excluded something, so call this just in
9366 * case.
9367 */
9368 free_excluded_extents(root, cache);
Miao Xie920e4a52014-01-15 20:00:55 +08009369 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -04009370 goto error;
9371 }
Josef Bacik3c148742011-02-02 15:53:47 +00009372
9373 /*
Josef Bacik817d52f2009-07-13 21:29:25 -04009374 * check for two cases, either we are full, and therefore
9375 * don't need to bother with the caching work since we won't
9376 * find any space, or we are empty, and we can just add all
9377 * the space in and be done with it. This saves us _alot_ of
9378 * time, particularly in the full case.
9379 */
9380 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -04009381 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04009382 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik1b2da372009-09-11 16:11:20 -04009383 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04009384 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -04009385 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04009386 cache->cached = BTRFS_CACHE_FINISHED;
9387 add_new_free_space(cache, root->fs_info,
9388 found_key.objectid,
9389 found_key.objectid +
9390 found_key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -04009391 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04009392 }
Chris Mason96b51792007-10-15 16:15:19 -04009393
Josef Bacik8c579fe2013-04-02 12:40:42 -04009394 ret = btrfs_add_block_group_cache(root->fs_info, cache);
9395 if (ret) {
9396 btrfs_remove_free_space_cache(cache);
9397 btrfs_put_block_group(cache);
9398 goto error;
9399 }
9400
Chris Mason6324fbf2008-03-24 15:01:59 -04009401 ret = update_space_info(info, cache->flags, found_key.offset,
9402 btrfs_block_group_used(&cache->item),
9403 &space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -04009404 if (ret) {
9405 btrfs_remove_free_space_cache(cache);
9406 spin_lock(&info->block_group_cache_lock);
9407 rb_erase(&cache->cache_node,
9408 &info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +00009409 RB_CLEAR_NODE(&cache->cache_node);
Josef Bacik8c579fe2013-04-02 12:40:42 -04009410 spin_unlock(&info->block_group_cache_lock);
9411 btrfs_put_block_group(cache);
9412 goto error;
9413 }
9414
Chris Mason6324fbf2008-03-24 15:01:59 -04009415 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -04009416 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009417 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04009418 spin_unlock(&cache->space_info->lock);
9419
Yan, Zhengb742bb82010-05-16 10:46:24 -04009420 __link_block_group(space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04009421
Chris Mason75ccf472008-09-30 19:24:06 -04009422 set_avail_alloc_bits(root->fs_info, cache->flags);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009423 if (btrfs_chunk_readonly(root, cache->key.objectid)) {
Miao Xie199c36e2011-07-15 10:34:36 +00009424 set_block_group_ro(cache, 1);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009425 } else if (btrfs_block_group_used(&cache->item) == 0) {
9426 spin_lock(&info->unused_bgs_lock);
9427 /* Should always be true but just in case. */
9428 if (list_empty(&cache->bg_list)) {
9429 btrfs_get_block_group(cache);
9430 list_add_tail(&cache->bg_list,
9431 &info->unused_bgs);
9432 }
9433 spin_unlock(&info->unused_bgs_lock);
9434 }
Chris Mason9078a3e2007-04-26 16:46:15 -04009435 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04009436
9437 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
9438 if (!(get_alloc_profile(root, space_info->flags) &
9439 (BTRFS_BLOCK_GROUP_RAID10 |
9440 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05009441 BTRFS_BLOCK_GROUP_RAID5 |
9442 BTRFS_BLOCK_GROUP_RAID6 |
Yan, Zhengb742bb82010-05-16 10:46:24 -04009443 BTRFS_BLOCK_GROUP_DUP)))
9444 continue;
9445 /*
9446 * avoid allocating from un-mirrored block group if there are
9447 * mirrored block groups.
9448 */
chandan1095cc02013-07-16 12:28:56 +05309449 list_for_each_entry(cache,
9450 &space_info->block_groups[BTRFS_RAID_RAID0],
9451 list)
Miao Xie199c36e2011-07-15 10:34:36 +00009452 set_block_group_ro(cache, 1);
chandan1095cc02013-07-16 12:28:56 +05309453 list_for_each_entry(cache,
9454 &space_info->block_groups[BTRFS_RAID_SINGLE],
9455 list)
Miao Xie199c36e2011-07-15 10:34:36 +00009456 set_block_group_ro(cache, 1);
Yan, Zhengb742bb82010-05-16 10:46:24 -04009457 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009458
9459 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -04009460 ret = 0;
9461error:
Chris Mason9078a3e2007-04-26 16:46:15 -04009462 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04009463 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04009464}
Chris Mason6324fbf2008-03-24 15:01:59 -04009465
Josef Bacikea658ba2012-09-11 16:57:25 -04009466void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans,
9467 struct btrfs_root *root)
9468{
9469 struct btrfs_block_group_cache *block_group, *tmp;
9470 struct btrfs_root *extent_root = root->fs_info->extent_root;
9471 struct btrfs_block_group_item item;
9472 struct btrfs_key key;
9473 int ret = 0;
9474
Josef Bacik47ab2a62014-09-18 11:20:02 -04009475 list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) {
Josef Bacikea658ba2012-09-11 16:57:25 -04009476 if (ret)
Filipe Mananac92f6be2014-11-26 15:28:55 +00009477 goto next;
Josef Bacikea658ba2012-09-11 16:57:25 -04009478
9479 spin_lock(&block_group->lock);
9480 memcpy(&item, &block_group->item, sizeof(item));
9481 memcpy(&key, &block_group->key, sizeof(key));
9482 spin_unlock(&block_group->lock);
9483
9484 ret = btrfs_insert_item(trans, extent_root, &key, &item,
9485 sizeof(item));
9486 if (ret)
9487 btrfs_abort_transaction(trans, extent_root, ret);
Josef Bacik6df9a952013-06-27 13:22:46 -04009488 ret = btrfs_finish_chunk_alloc(trans, extent_root,
9489 key.objectid, key.offset);
9490 if (ret)
9491 btrfs_abort_transaction(trans, extent_root, ret);
Filipe Mananac92f6be2014-11-26 15:28:55 +00009492next:
9493 list_del_init(&block_group->bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -04009494 }
9495}
9496
Chris Mason6324fbf2008-03-24 15:01:59 -04009497int btrfs_make_block_group(struct btrfs_trans_handle *trans,
9498 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04009499 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04009500 u64 size)
9501{
9502 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04009503 struct btrfs_root *extent_root;
9504 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -04009505
9506 extent_root = root->fs_info->extent_root;
Chris Mason6324fbf2008-03-24 15:01:59 -04009507
Miao Xie995946d2014-04-02 19:51:06 +08009508 btrfs_set_log_full_commit(root->fs_info, trans);
Chris Masone02119d2008-09-05 16:13:11 -04009509
Miao Xie920e4a52014-01-15 20:00:55 +08009510 cache = btrfs_create_block_group_cache(root, chunk_offset, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -04009511 if (!cache)
9512 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +08009513
Chris Mason6324fbf2008-03-24 15:01:59 -04009514 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04009515 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
Chris Mason6324fbf2008-03-24 15:01:59 -04009516 btrfs_set_block_group_flags(&cache->item, type);
9517
Miao Xie920e4a52014-01-15 20:00:55 +08009518 cache->flags = type;
Yan Zheng11833d62009-09-11 16:11:19 -04009519 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04009520 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik835d9742013-03-19 12:13:25 -04009521 ret = exclude_super_stripes(root, cache);
9522 if (ret) {
9523 /*
9524 * We may have excluded something, so call this just in
9525 * case.
9526 */
9527 free_excluded_extents(root, cache);
Miao Xie920e4a52014-01-15 20:00:55 +08009528 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -04009529 return ret;
9530 }
Josef Bacik96303082009-07-13 21:29:25 -04009531
Josef Bacik817d52f2009-07-13 21:29:25 -04009532 add_new_free_space(cache, root->fs_info, chunk_offset,
9533 chunk_offset + size);
9534
Yan Zheng11833d62009-09-11 16:11:19 -04009535 free_excluded_extents(root, cache);
9536
Filipe Manana2e6e5182015-05-12 00:28:11 +01009537 /*
9538 * Call to ensure the corresponding space_info object is created and
9539 * assigned to our block group, but don't update its counters just yet.
9540 * We want our bg to be added to the rbtree with its ->space_info set.
9541 */
9542 ret = update_space_info(root->fs_info, cache->flags, 0, 0,
9543 &cache->space_info);
9544 if (ret) {
9545 btrfs_remove_free_space_cache(cache);
9546 btrfs_put_block_group(cache);
9547 return ret;
9548 }
9549
Josef Bacik8c579fe2013-04-02 12:40:42 -04009550 ret = btrfs_add_block_group_cache(root->fs_info, cache);
9551 if (ret) {
9552 btrfs_remove_free_space_cache(cache);
9553 btrfs_put_block_group(cache);
9554 return ret;
9555 }
9556
Filipe Manana2e6e5182015-05-12 00:28:11 +01009557 /*
9558 * Now that our block group has its ->space_info set and is inserted in
9559 * the rbtree, update the space info's counters.
9560 */
Chris Mason6324fbf2008-03-24 15:01:59 -04009561 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
9562 &cache->space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -04009563 if (ret) {
9564 btrfs_remove_free_space_cache(cache);
9565 spin_lock(&root->fs_info->block_group_cache_lock);
9566 rb_erase(&cache->cache_node,
9567 &root->fs_info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +00009568 RB_CLEAR_NODE(&cache->cache_node);
Josef Bacik8c579fe2013-04-02 12:40:42 -04009569 spin_unlock(&root->fs_info->block_group_cache_lock);
9570 btrfs_put_block_group(cache);
9571 return ret;
9572 }
Li Zefanc7c144d2011-12-07 10:39:22 +08009573 update_global_block_rsv(root->fs_info);
Josef Bacik1b2da372009-09-11 16:11:20 -04009574
9575 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009576 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04009577 spin_unlock(&cache->space_info->lock);
9578
Yan, Zhengb742bb82010-05-16 10:46:24 -04009579 __link_block_group(cache->space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04009580
Josef Bacik47ab2a62014-09-18 11:20:02 -04009581 list_add_tail(&cache->bg_list, &trans->new_bgs);
Chris Mason6324fbf2008-03-24 15:01:59 -04009582
Chris Masond18a2c42008-04-04 15:40:00 -04009583 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason925baed2008-06-25 16:01:30 -04009584
Chris Mason6324fbf2008-03-24 15:01:59 -04009585 return 0;
9586}
Zheng Yan1a40e232008-09-26 10:09:34 -04009587
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009588static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
9589{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03009590 u64 extra_flags = chunk_to_extended(flags) &
9591 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009592
Miao Xiede98ced2013-01-29 10:13:12 +00009593 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009594 if (flags & BTRFS_BLOCK_GROUP_DATA)
9595 fs_info->avail_data_alloc_bits &= ~extra_flags;
9596 if (flags & BTRFS_BLOCK_GROUP_METADATA)
9597 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
9598 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
9599 fs_info->avail_system_alloc_bits &= ~extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00009600 write_sequnlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009601}
9602
Zheng Yan1a40e232008-09-26 10:09:34 -04009603int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
Filipe Manana04216822014-11-27 21:14:15 +00009604 struct btrfs_root *root, u64 group_start,
9605 struct extent_map *em)
Zheng Yan1a40e232008-09-26 10:09:34 -04009606{
9607 struct btrfs_path *path;
9608 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -04009609 struct btrfs_free_cluster *cluster;
Josef Bacik0af3d002010-06-21 14:48:16 -04009610 struct btrfs_root *tree_root = root->fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -04009611 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -04009612 struct inode *inode;
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009613 struct kobject *kobj = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -04009614 int ret;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009615 int index;
Josef Bacik89a55892010-10-14 14:52:27 -04009616 int factor;
Filipe Manana4f69cb92014-11-26 15:28:51 +00009617 struct btrfs_caching_control *caching_ctl = NULL;
Filipe Manana04216822014-11-27 21:14:15 +00009618 bool remove_em;
Zheng Yan1a40e232008-09-26 10:09:34 -04009619
Zheng Yan1a40e232008-09-26 10:09:34 -04009620 root = root->fs_info->extent_root;
9621
9622 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
9623 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -05009624 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -04009625
liubo9f7c43c2011-03-07 02:13:33 +00009626 /*
9627 * Free the reserved super bytes from this block group before
9628 * remove it.
9629 */
9630 free_excluded_extents(root, block_group);
9631
Zheng Yan1a40e232008-09-26 10:09:34 -04009632 memcpy(&key, &block_group->key, sizeof(key));
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009633 index = get_block_group_index(block_group);
Josef Bacik89a55892010-10-14 14:52:27 -04009634 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
9635 BTRFS_BLOCK_GROUP_RAID1 |
9636 BTRFS_BLOCK_GROUP_RAID10))
9637 factor = 2;
9638 else
9639 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04009640
Chris Mason44fb5512009-06-04 15:34:51 -04009641 /* make sure this block group isn't part of an allocation cluster */
9642 cluster = &root->fs_info->data_alloc_cluster;
9643 spin_lock(&cluster->refill_lock);
9644 btrfs_return_cluster_to_free_space(block_group, cluster);
9645 spin_unlock(&cluster->refill_lock);
9646
9647 /*
9648 * make sure this block group isn't part of a metadata
9649 * allocation cluster
9650 */
9651 cluster = &root->fs_info->meta_alloc_cluster;
9652 spin_lock(&cluster->refill_lock);
9653 btrfs_return_cluster_to_free_space(block_group, cluster);
9654 spin_unlock(&cluster->refill_lock);
9655
Zheng Yan1a40e232008-09-26 10:09:34 -04009656 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07009657 if (!path) {
9658 ret = -ENOMEM;
9659 goto out;
9660 }
Zheng Yan1a40e232008-09-26 10:09:34 -04009661
Chris Mason1bbc6212015-04-06 12:46:08 -07009662 /*
9663 * get the inode first so any iput calls done for the io_list
9664 * aren't the final iput (no unlinks allowed now)
9665 */
Ilya Dryomov10b2f342011-10-02 13:56:53 +03009666 inode = lookup_free_space_inode(tree_root, block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -07009667
9668 mutex_lock(&trans->transaction->cache_write_mutex);
9669 /*
9670 * make sure our free spache cache IO is done before remove the
9671 * free space inode
9672 */
9673 spin_lock(&trans->transaction->dirty_bgs_lock);
9674 if (!list_empty(&block_group->io_list)) {
9675 list_del_init(&block_group->io_list);
9676
9677 WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode);
9678
9679 spin_unlock(&trans->transaction->dirty_bgs_lock);
9680 btrfs_wait_cache_io(root, trans, block_group,
9681 &block_group->io_ctl, path,
9682 block_group->key.objectid);
9683 btrfs_put_block_group(block_group);
9684 spin_lock(&trans->transaction->dirty_bgs_lock);
9685 }
9686
9687 if (!list_empty(&block_group->dirty_list)) {
9688 list_del_init(&block_group->dirty_list);
9689 btrfs_put_block_group(block_group);
9690 }
9691 spin_unlock(&trans->transaction->dirty_bgs_lock);
9692 mutex_unlock(&trans->transaction->cache_write_mutex);
9693
Josef Bacik0af3d002010-06-21 14:48:16 -04009694 if (!IS_ERR(inode)) {
Tsutomu Itohb5324022011-07-19 07:27:20 +00009695 ret = btrfs_orphan_add(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009696 if (ret) {
9697 btrfs_add_delayed_iput(inode);
9698 goto out;
9699 }
Josef Bacik0af3d002010-06-21 14:48:16 -04009700 clear_nlink(inode);
9701 /* One for the block groups ref */
9702 spin_lock(&block_group->lock);
9703 if (block_group->iref) {
9704 block_group->iref = 0;
9705 block_group->inode = NULL;
9706 spin_unlock(&block_group->lock);
9707 iput(inode);
9708 } else {
9709 spin_unlock(&block_group->lock);
9710 }
9711 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -04009712 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04009713 }
9714
9715 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
9716 key.offset = block_group->key.objectid;
9717 key.type = 0;
9718
9719 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
9720 if (ret < 0)
9721 goto out;
9722 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +02009723 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04009724 if (ret == 0) {
9725 ret = btrfs_del_item(trans, tree_root, path);
9726 if (ret)
9727 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02009728 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04009729 }
9730
Yan Zheng3dfdb932009-01-21 10:49:16 -05009731 spin_lock(&root->fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009732 rb_erase(&block_group->cache_node,
9733 &root->fs_info->block_group_cache_tree);
Filipe Manana292cbd52014-11-26 15:28:50 +00009734 RB_CLEAR_NODE(&block_group->cache_node);
Liu Boa1897fd2012-12-27 09:01:23 +00009735
9736 if (root->fs_info->first_logical_byte == block_group->key.objectid)
9737 root->fs_info->first_logical_byte = (u64)-1;
Yan Zheng3dfdb932009-01-21 10:49:16 -05009738 spin_unlock(&root->fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04009739
Josef Bacik80eb2342008-10-29 14:49:05 -04009740 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04009741 /*
9742 * we must use list_del_init so people can check to see if they
9743 * are still on the list after taking the semaphore
9744 */
9745 list_del_init(&block_group->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009746 if (list_empty(&block_group->space_info->block_groups[index])) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009747 kobj = block_group->space_info->block_group_kobjs[index];
9748 block_group->space_info->block_group_kobjs[index] = NULL;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009749 clear_avail_alloc_bits(root->fs_info, block_group->flags);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009750 }
Josef Bacik80eb2342008-10-29 14:49:05 -04009751 up_write(&block_group->space_info->groups_sem);
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009752 if (kobj) {
9753 kobject_del(kobj);
9754 kobject_put(kobj);
9755 }
Zheng Yan1a40e232008-09-26 10:09:34 -04009756
Filipe Manana4f69cb92014-11-26 15:28:51 +00009757 if (block_group->has_caching_ctl)
9758 caching_ctl = get_caching_control(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04009759 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04009760 wait_block_group_cache_done(block_group);
Filipe Manana4f69cb92014-11-26 15:28:51 +00009761 if (block_group->has_caching_ctl) {
9762 down_write(&root->fs_info->commit_root_sem);
9763 if (!caching_ctl) {
9764 struct btrfs_caching_control *ctl;
9765
9766 list_for_each_entry(ctl,
9767 &root->fs_info->caching_block_groups, list)
9768 if (ctl->block_group == block_group) {
9769 caching_ctl = ctl;
9770 atomic_inc(&caching_ctl->count);
9771 break;
9772 }
9773 }
9774 if (caching_ctl)
9775 list_del_init(&caching_ctl->list);
9776 up_write(&root->fs_info->commit_root_sem);
9777 if (caching_ctl) {
9778 /* Once for the caching bgs list and once for us. */
9779 put_caching_control(caching_ctl);
9780 put_caching_control(caching_ctl);
9781 }
9782 }
Josef Bacik817d52f2009-07-13 21:29:25 -04009783
Josef Bacikce93ec52014-11-17 15:45:48 -05009784 spin_lock(&trans->transaction->dirty_bgs_lock);
9785 if (!list_empty(&block_group->dirty_list)) {
Chris Mason1bbc6212015-04-06 12:46:08 -07009786 WARN_ON(1);
9787 }
9788 if (!list_empty(&block_group->io_list)) {
9789 WARN_ON(1);
Josef Bacikce93ec52014-11-17 15:45:48 -05009790 }
9791 spin_unlock(&trans->transaction->dirty_bgs_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04009792 btrfs_remove_free_space_cache(block_group);
9793
Yan Zhengc146afa2008-11-12 14:34:12 -05009794 spin_lock(&block_group->space_info->lock);
Filipe Manana75c68e92015-01-16 13:24:40 +00009795 list_del_init(&block_group->ro_list);
Zhao Lei18d018a2015-02-24 20:07:44 +08009796
9797 if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
9798 WARN_ON(block_group->space_info->total_bytes
9799 < block_group->key.offset);
9800 WARN_ON(block_group->space_info->bytes_readonly
9801 < block_group->key.offset);
9802 WARN_ON(block_group->space_info->disk_total
9803 < block_group->key.offset * factor);
9804 }
Yan Zhengc146afa2008-11-12 14:34:12 -05009805 block_group->space_info->total_bytes -= block_group->key.offset;
9806 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -04009807 block_group->space_info->disk_total -= block_group->key.offset * factor;
Zhao Lei18d018a2015-02-24 20:07:44 +08009808
Yan Zhengc146afa2008-11-12 14:34:12 -05009809 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -04009810
Josef Bacik0af3d002010-06-21 14:48:16 -04009811 memcpy(&key, &block_group->key, sizeof(key));
9812
Filipe Manana04216822014-11-27 21:14:15 +00009813 lock_chunks(root);
Filipe Manana495e64f2014-12-02 18:07:30 +00009814 if (!list_empty(&em->list)) {
9815 /* We're in the transaction->pending_chunks list. */
9816 free_extent_map(em);
9817 }
Filipe Manana04216822014-11-27 21:14:15 +00009818 spin_lock(&block_group->lock);
9819 block_group->removed = 1;
9820 /*
9821 * At this point trimming can't start on this block group, because we
9822 * removed the block group from the tree fs_info->block_group_cache_tree
9823 * so no one can't find it anymore and even if someone already got this
9824 * block group before we removed it from the rbtree, they have already
9825 * incremented block_group->trimming - if they didn't, they won't find
9826 * any free space entries because we already removed them all when we
9827 * called btrfs_remove_free_space_cache().
9828 *
9829 * And we must not remove the extent map from the fs_info->mapping_tree
9830 * to prevent the same logical address range and physical device space
9831 * ranges from being reused for a new block group. This is because our
9832 * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is
9833 * completely transactionless, so while it is trimming a range the
9834 * currently running transaction might finish and a new one start,
9835 * allowing for new block groups to be created that can reuse the same
9836 * physical device locations unless we take this special care.
9837 */
9838 remove_em = (atomic_read(&block_group->trimming) == 0);
9839 /*
9840 * Make sure a trimmer task always sees the em in the pinned_chunks list
9841 * if it sees block_group->removed == 1 (needs to lock block_group->lock
9842 * before checking block_group->removed).
9843 */
9844 if (!remove_em) {
9845 /*
9846 * Our em might be in trans->transaction->pending_chunks which
9847 * is protected by fs_info->chunk_mutex ([lock|unlock]_chunks),
9848 * and so is the fs_info->pinned_chunks list.
9849 *
9850 * So at this point we must be holding the chunk_mutex to avoid
9851 * any races with chunk allocation (more specifically at
9852 * volumes.c:contains_pending_extent()), to ensure it always
9853 * sees the em, either in the pending_chunks list or in the
9854 * pinned_chunks list.
9855 */
9856 list_move_tail(&em->list, &root->fs_info->pinned_chunks);
9857 }
9858 spin_unlock(&block_group->lock);
Filipe Manana04216822014-11-27 21:14:15 +00009859
9860 if (remove_em) {
9861 struct extent_map_tree *em_tree;
9862
9863 em_tree = &root->fs_info->mapping_tree.map_tree;
9864 write_lock(&em_tree->lock);
Filipe Manana8dbcd102014-12-02 18:07:49 +00009865 /*
9866 * The em might be in the pending_chunks list, so make sure the
9867 * chunk mutex is locked, since remove_extent_mapping() will
9868 * delete us from that list.
9869 */
Filipe Manana04216822014-11-27 21:14:15 +00009870 remove_extent_mapping(em_tree, em);
9871 write_unlock(&em_tree->lock);
9872 /* once for the tree */
9873 free_extent_map(em);
9874 }
9875
Filipe Manana8dbcd102014-12-02 18:07:49 +00009876 unlock_chunks(root);
9877
Chris Masonfa9c0d792009-04-03 09:47:43 -04009878 btrfs_put_block_group(block_group);
9879 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -04009880
9881 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
9882 if (ret > 0)
9883 ret = -EIO;
9884 if (ret < 0)
9885 goto out;
9886
9887 ret = btrfs_del_item(trans, root, path);
9888out:
9889 btrfs_free_path(path);
9890 return ret;
9891}
liuboacce9522011-01-06 19:30:25 +08009892
Josef Bacik47ab2a62014-09-18 11:20:02 -04009893/*
9894 * Process the unused_bgs list and remove any that don't have any allocated
9895 * space inside of them.
9896 */
9897void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info)
9898{
9899 struct btrfs_block_group_cache *block_group;
9900 struct btrfs_space_info *space_info;
9901 struct btrfs_root *root = fs_info->extent_root;
9902 struct btrfs_trans_handle *trans;
9903 int ret = 0;
9904
9905 if (!fs_info->open)
9906 return;
9907
9908 spin_lock(&fs_info->unused_bgs_lock);
9909 while (!list_empty(&fs_info->unused_bgs)) {
9910 u64 start, end;
9911
9912 block_group = list_first_entry(&fs_info->unused_bgs,
9913 struct btrfs_block_group_cache,
9914 bg_list);
9915 space_info = block_group->space_info;
9916 list_del_init(&block_group->bg_list);
9917 if (ret || btrfs_mixed_space_info(space_info)) {
9918 btrfs_put_block_group(block_group);
9919 continue;
9920 }
9921 spin_unlock(&fs_info->unused_bgs_lock);
9922
Filipe Manana67c5e7d2015-06-11 00:58:53 +01009923 mutex_lock(&root->fs_info->delete_unused_bgs_mutex);
9924
Josef Bacik47ab2a62014-09-18 11:20:02 -04009925 /* Don't want to race with allocators so take the groups_sem */
9926 down_write(&space_info->groups_sem);
9927 spin_lock(&block_group->lock);
9928 if (block_group->reserved ||
9929 btrfs_block_group_used(&block_group->item) ||
9930 block_group->ro) {
9931 /*
9932 * We want to bail if we made new allocations or have
9933 * outstanding allocations in this block group. We do
9934 * the ro check in case balance is currently acting on
9935 * this block group.
9936 */
9937 spin_unlock(&block_group->lock);
9938 up_write(&space_info->groups_sem);
9939 goto next;
9940 }
9941 spin_unlock(&block_group->lock);
9942
9943 /* We don't want to force the issue, only flip if it's ok. */
9944 ret = set_block_group_ro(block_group, 0);
9945 up_write(&space_info->groups_sem);
9946 if (ret < 0) {
9947 ret = 0;
9948 goto next;
9949 }
9950
9951 /*
9952 * Want to do this before we do anything else so we can recover
9953 * properly if we fail to join the transaction.
9954 */
Forrest Liu3d84be72015-02-11 14:24:12 +08009955 /* 1 for btrfs_orphan_reserve_metadata() */
9956 trans = btrfs_start_transaction(root, 1);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009957 if (IS_ERR(trans)) {
9958 btrfs_set_block_group_rw(root, block_group);
9959 ret = PTR_ERR(trans);
9960 goto next;
9961 }
9962
9963 /*
9964 * We could have pending pinned extents for this block group,
9965 * just delete them, we don't care about them anymore.
9966 */
9967 start = block_group->key.objectid;
9968 end = start + block_group->key.offset - 1;
Filipe Mananad4b450c2015-01-29 19:18:25 +00009969 /*
9970 * Hold the unused_bg_unpin_mutex lock to avoid racing with
9971 * btrfs_finish_extent_commit(). If we are at transaction N,
9972 * another task might be running finish_extent_commit() for the
9973 * previous transaction N - 1, and have seen a range belonging
9974 * to the block group in freed_extents[] before we were able to
9975 * clear the whole block group range from freed_extents[]. This
9976 * means that task can lookup for the block group after we
9977 * unpinned it from freed_extents[] and removed it, leading to
9978 * a BUG_ON() at btrfs_unpin_extent_range().
9979 */
9980 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana758eb512014-11-03 14:08:39 +00009981 ret = clear_extent_bits(&fs_info->freed_extents[0], start, end,
Josef Bacik47ab2a62014-09-18 11:20:02 -04009982 EXTENT_DIRTY, GFP_NOFS);
Filipe Manana758eb512014-11-03 14:08:39 +00009983 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +00009984 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana758eb512014-11-03 14:08:39 +00009985 btrfs_set_block_group_rw(root, block_group);
9986 goto end_trans;
9987 }
9988 ret = clear_extent_bits(&fs_info->freed_extents[1], start, end,
Josef Bacik47ab2a62014-09-18 11:20:02 -04009989 EXTENT_DIRTY, GFP_NOFS);
Filipe Manana758eb512014-11-03 14:08:39 +00009990 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +00009991 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana758eb512014-11-03 14:08:39 +00009992 btrfs_set_block_group_rw(root, block_group);
9993 goto end_trans;
9994 }
Filipe Mananad4b450c2015-01-29 19:18:25 +00009995 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009996
9997 /* Reset pinned so btrfs_put_block_group doesn't complain */
Zhao Leic30666d2015-02-25 14:17:20 +08009998 spin_lock(&space_info->lock);
9999 spin_lock(&block_group->lock);
10000
10001 space_info->bytes_pinned -= block_group->pinned;
10002 space_info->bytes_readonly += block_group->pinned;
10003 percpu_counter_add(&space_info->total_bytes_pinned,
10004 -block_group->pinned);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010005 block_group->pinned = 0;
10006
Zhao Leic30666d2015-02-25 14:17:20 +080010007 spin_unlock(&block_group->lock);
10008 spin_unlock(&space_info->lock);
10009
Josef Bacik47ab2a62014-09-18 11:20:02 -040010010 /*
10011 * Btrfs_remove_chunk will abort the transaction if things go
10012 * horribly wrong.
10013 */
10014 ret = btrfs_remove_chunk(trans, root,
10015 block_group->key.objectid);
Filipe Manana758eb512014-11-03 14:08:39 +000010016end_trans:
Josef Bacik47ab2a62014-09-18 11:20:02 -040010017 btrfs_end_transaction(trans, root);
10018next:
Filipe Manana67c5e7d2015-06-11 00:58:53 +010010019 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010020 btrfs_put_block_group(block_group);
10021 spin_lock(&fs_info->unused_bgs_lock);
10022 }
10023 spin_unlock(&fs_info->unused_bgs_lock);
10024}
10025
liuboc59021f2011-03-07 02:13:14 +000010026int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
10027{
10028 struct btrfs_space_info *space_info;
liubo1aba86d2011-04-08 08:44:37 +000010029 struct btrfs_super_block *disk_super;
10030 u64 features;
10031 u64 flags;
10032 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +000010033 int ret;
10034
David Sterba6c417612011-04-13 15:41:04 +020010035 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +000010036 if (!btrfs_super_root(disk_super))
10037 return 1;
liuboc59021f2011-03-07 02:13:14 +000010038
liubo1aba86d2011-04-08 08:44:37 +000010039 features = btrfs_super_incompat_flags(disk_super);
10040 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
10041 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +000010042
liubo1aba86d2011-04-08 08:44:37 +000010043 flags = BTRFS_BLOCK_GROUP_SYSTEM;
10044 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
liuboc59021f2011-03-07 02:13:14 +000010045 if (ret)
liubo1aba86d2011-04-08 08:44:37 +000010046 goto out;
liuboc59021f2011-03-07 02:13:14 +000010047
liubo1aba86d2011-04-08 08:44:37 +000010048 if (mixed) {
10049 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
10050 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
10051 } else {
10052 flags = BTRFS_BLOCK_GROUP_METADATA;
10053 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
10054 if (ret)
10055 goto out;
10056
10057 flags = BTRFS_BLOCK_GROUP_DATA;
10058 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
10059 }
10060out:
liuboc59021f2011-03-07 02:13:14 +000010061 return ret;
10062}
10063
liuboacce9522011-01-06 19:30:25 +080010064int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
10065{
Filipe Manana678886b2014-12-07 21:31:47 +000010066 return unpin_extent_range(root, start, end, false);
liuboacce9522011-01-06 19:30:25 +080010067}
10068
Li Dongyangf7039b12011-03-24 10:24:28 +000010069int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range)
10070{
10071 struct btrfs_fs_info *fs_info = root->fs_info;
10072 struct btrfs_block_group_cache *cache = NULL;
10073 u64 group_trimmed;
10074 u64 start;
10075 u64 end;
10076 u64 trimmed = 0;
Liu Bo2cac13e2012-02-09 18:17:41 +080010077 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +000010078 int ret = 0;
10079
Liu Bo2cac13e2012-02-09 18:17:41 +080010080 /*
10081 * try to trim all FS space, our block group may start from non-zero.
10082 */
10083 if (range->len == total_bytes)
10084 cache = btrfs_lookup_first_block_group(fs_info, range->start);
10085 else
10086 cache = btrfs_lookup_block_group(fs_info, range->start);
Li Dongyangf7039b12011-03-24 10:24:28 +000010087
10088 while (cache) {
10089 if (cache->key.objectid >= (range->start + range->len)) {
10090 btrfs_put_block_group(cache);
10091 break;
10092 }
10093
10094 start = max(range->start, cache->key.objectid);
10095 end = min(range->start + range->len,
10096 cache->key.objectid + cache->key.offset);
10097
10098 if (end - start >= range->minlen) {
10099 if (!block_group_cache_done(cache)) {
Liu Bof6373bf2012-12-27 09:01:18 +000010100 ret = cache_block_group(cache, 0);
Josef Bacik1be41b72013-06-12 13:56:06 -040010101 if (ret) {
10102 btrfs_put_block_group(cache);
10103 break;
10104 }
10105 ret = wait_block_group_cache_done(cache);
10106 if (ret) {
10107 btrfs_put_block_group(cache);
10108 break;
10109 }
Li Dongyangf7039b12011-03-24 10:24:28 +000010110 }
10111 ret = btrfs_trim_block_group(cache,
10112 &group_trimmed,
10113 start,
10114 end,
10115 range->minlen);
10116
10117 trimmed += group_trimmed;
10118 if (ret) {
10119 btrfs_put_block_group(cache);
10120 break;
10121 }
10122 }
10123
10124 cache = next_block_group(fs_info->tree_root, cache);
10125 }
10126
10127 range->len = trimmed;
10128 return ret;
10129}
Miao Xie8257b2d2014-03-06 13:38:19 +080010130
10131/*
Filipe Manana9ea24bb2014-10-29 11:57:59 +000010132 * btrfs_{start,end}_write_no_snapshoting() are similar to
10133 * mnt_{want,drop}_write(), they are used to prevent some tasks from writing
10134 * data into the page cache through nocow before the subvolume is snapshoted,
10135 * but flush the data into disk after the snapshot creation, or to prevent
10136 * operations while snapshoting is ongoing and that cause the snapshot to be
10137 * inconsistent (writes followed by expanding truncates for example).
Miao Xie8257b2d2014-03-06 13:38:19 +080010138 */
Filipe Manana9ea24bb2014-10-29 11:57:59 +000010139void btrfs_end_write_no_snapshoting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080010140{
10141 percpu_counter_dec(&root->subv_writers->counter);
10142 /*
10143 * Make sure counter is updated before we wake up
10144 * waiters.
10145 */
10146 smp_mb();
10147 if (waitqueue_active(&root->subv_writers->wait))
10148 wake_up(&root->subv_writers->wait);
10149}
10150
Filipe Manana9ea24bb2014-10-29 11:57:59 +000010151int btrfs_start_write_no_snapshoting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080010152{
David Sterbaee39b432014-09-30 01:33:33 +020010153 if (atomic_read(&root->will_be_snapshoted))
Miao Xie8257b2d2014-03-06 13:38:19 +080010154 return 0;
10155
10156 percpu_counter_inc(&root->subv_writers->counter);
10157 /*
10158 * Make sure counter is updated before we check for snapshot creation.
10159 */
10160 smp_mb();
David Sterbaee39b432014-09-30 01:33:33 +020010161 if (atomic_read(&root->will_be_snapshoted)) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +000010162 btrfs_end_write_no_snapshoting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +080010163 return 0;
10164 }
10165 return 1;
10166}