blob: 130df70f334826c0f1d4e876061affd1538dd646 [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
Zhaolei9ed0dea2015-08-06 22:16:24 +08001319static noinline u32 extent_data_ref_count(struct btrfs_path *path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001320 struct btrfs_extent_inline_ref *iref)
1321{
1322 struct btrfs_key key;
1323 struct extent_buffer *leaf;
1324 struct btrfs_extent_data_ref *ref1;
1325 struct btrfs_shared_data_ref *ref2;
1326 u32 num_refs = 0;
1327
1328 leaf = path->nodes[0];
1329 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1330 if (iref) {
1331 if (btrfs_extent_inline_ref_type(leaf, iref) ==
1332 BTRFS_EXTENT_DATA_REF_KEY) {
1333 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1334 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1335 } else {
1336 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1337 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1338 }
1339 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1340 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1341 struct btrfs_extent_data_ref);
1342 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1343 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1344 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1345 struct btrfs_shared_data_ref);
1346 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1347#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1348 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1349 struct btrfs_extent_ref_v0 *ref0;
1350 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1351 struct btrfs_extent_ref_v0);
1352 num_refs = btrfs_ref_count_v0(leaf, ref0);
1353#endif
1354 } else {
1355 WARN_ON(1);
1356 }
1357 return num_refs;
1358}
1359
1360static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
1361 struct btrfs_root *root,
1362 struct btrfs_path *path,
1363 u64 bytenr, u64 parent,
1364 u64 root_objectid)
1365{
1366 struct btrfs_key key;
1367 int ret;
1368
1369 key.objectid = bytenr;
1370 if (parent) {
1371 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1372 key.offset = parent;
1373 } else {
1374 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1375 key.offset = root_objectid;
1376 }
1377
1378 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1379 if (ret > 0)
1380 ret = -ENOENT;
1381#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1382 if (ret == -ENOENT && parent) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001383 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001384 key.type = BTRFS_EXTENT_REF_V0_KEY;
1385 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1386 if (ret > 0)
1387 ret = -ENOENT;
1388 }
1389#endif
1390 return ret;
1391}
1392
1393static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
1394 struct btrfs_root *root,
1395 struct btrfs_path *path,
1396 u64 bytenr, u64 parent,
1397 u64 root_objectid)
1398{
1399 struct btrfs_key key;
1400 int ret;
1401
1402 key.objectid = bytenr;
1403 if (parent) {
1404 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1405 key.offset = parent;
1406 } else {
1407 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1408 key.offset = root_objectid;
1409 }
1410
1411 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
David Sterbab3b4aa72011-04-21 01:20:15 +02001412 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04001413 return ret;
1414}
1415
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001416static inline int extent_ref_type(u64 parent, u64 owner)
1417{
1418 int type;
1419 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1420 if (parent > 0)
1421 type = BTRFS_SHARED_BLOCK_REF_KEY;
1422 else
1423 type = BTRFS_TREE_BLOCK_REF_KEY;
1424 } else {
1425 if (parent > 0)
1426 type = BTRFS_SHARED_DATA_REF_KEY;
1427 else
1428 type = BTRFS_EXTENT_DATA_REF_KEY;
1429 }
1430 return type;
1431}
1432
Yan Zheng2c47e6052009-06-27 21:07:35 -04001433static int find_next_key(struct btrfs_path *path, int level,
1434 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001435
1436{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001437 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001438 if (!path->nodes[level])
1439 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001440 if (path->slots[level] + 1 >=
1441 btrfs_header_nritems(path->nodes[level]))
1442 continue;
1443 if (level == 0)
1444 btrfs_item_key_to_cpu(path->nodes[level], key,
1445 path->slots[level] + 1);
1446 else
1447 btrfs_node_key_to_cpu(path->nodes[level], key,
1448 path->slots[level] + 1);
1449 return 0;
1450 }
1451 return 1;
1452}
1453
1454/*
1455 * look for inline back ref. if back ref is found, *ref_ret is set
1456 * to the address of inline back ref, and 0 is returned.
1457 *
1458 * if back ref isn't found, *ref_ret is set to the address where it
1459 * should be inserted, and -ENOENT is returned.
1460 *
1461 * if insert is true and there are too many inline back refs, the path
1462 * points to the extent item, and -EAGAIN is returned.
1463 *
1464 * NOTE: inline back refs are ordered in the same way that back ref
1465 * items in the tree are ordered.
1466 */
1467static noinline_for_stack
1468int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
1469 struct btrfs_root *root,
1470 struct btrfs_path *path,
1471 struct btrfs_extent_inline_ref **ref_ret,
1472 u64 bytenr, u64 num_bytes,
1473 u64 parent, u64 root_objectid,
1474 u64 owner, u64 offset, int insert)
1475{
1476 struct btrfs_key key;
1477 struct extent_buffer *leaf;
1478 struct btrfs_extent_item *ei;
1479 struct btrfs_extent_inline_ref *iref;
1480 u64 flags;
1481 u64 item_size;
1482 unsigned long ptr;
1483 unsigned long end;
1484 int extra_size;
1485 int type;
1486 int want;
1487 int ret;
1488 int err = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05001489 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
1490 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001491
1492 key.objectid = bytenr;
1493 key.type = BTRFS_EXTENT_ITEM_KEY;
1494 key.offset = num_bytes;
1495
1496 want = extent_ref_type(parent, owner);
1497 if (insert) {
1498 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001499 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001500 } else
1501 extra_size = -1;
Josef Bacik3173a182013-03-07 14:22:04 -05001502
1503 /*
1504 * Owner is our parent level, so we can just add one to get the level
1505 * for the block we are interested in.
1506 */
1507 if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) {
1508 key.type = BTRFS_METADATA_ITEM_KEY;
1509 key.offset = owner;
1510 }
1511
1512again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001513 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1514 if (ret < 0) {
1515 err = ret;
1516 goto out;
1517 }
Josef Bacik3173a182013-03-07 14:22:04 -05001518
1519 /*
1520 * We may be a newly converted file system which still has the old fat
1521 * extent entries for metadata, so try and see if we have one of those.
1522 */
1523 if (ret > 0 && skinny_metadata) {
1524 skinny_metadata = false;
1525 if (path->slots[0]) {
1526 path->slots[0]--;
1527 btrfs_item_key_to_cpu(path->nodes[0], &key,
1528 path->slots[0]);
1529 if (key.objectid == bytenr &&
1530 key.type == BTRFS_EXTENT_ITEM_KEY &&
1531 key.offset == num_bytes)
1532 ret = 0;
1533 }
1534 if (ret) {
Filipe Manana9ce49a02014-04-24 15:15:28 +01001535 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05001536 key.type = BTRFS_EXTENT_ITEM_KEY;
1537 key.offset = num_bytes;
1538 btrfs_release_path(path);
1539 goto again;
1540 }
1541 }
1542
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001543 if (ret && !insert) {
1544 err = -ENOENT;
1545 goto out;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301546 } else if (WARN_ON(ret)) {
Josef Bacik492104c2013-03-08 15:41:02 -05001547 err = -EIO;
Josef Bacik492104c2013-03-08 15:41:02 -05001548 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001549 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001550
1551 leaf = path->nodes[0];
1552 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1553#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1554 if (item_size < sizeof(*ei)) {
1555 if (!insert) {
1556 err = -ENOENT;
1557 goto out;
1558 }
1559 ret = convert_extent_item_v0(trans, root, path, owner,
1560 extra_size);
1561 if (ret < 0) {
1562 err = ret;
1563 goto out;
1564 }
1565 leaf = path->nodes[0];
1566 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1567 }
1568#endif
1569 BUG_ON(item_size < sizeof(*ei));
1570
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001571 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1572 flags = btrfs_extent_flags(leaf, ei);
1573
1574 ptr = (unsigned long)(ei + 1);
1575 end = (unsigned long)ei + item_size;
1576
Josef Bacik3173a182013-03-07 14:22:04 -05001577 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001578 ptr += sizeof(struct btrfs_tree_block_info);
1579 BUG_ON(ptr > end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001580 }
1581
1582 err = -ENOENT;
1583 while (1) {
1584 if (ptr >= end) {
1585 WARN_ON(ptr > end);
1586 break;
1587 }
1588 iref = (struct btrfs_extent_inline_ref *)ptr;
1589 type = btrfs_extent_inline_ref_type(leaf, iref);
1590 if (want < type)
1591 break;
1592 if (want > type) {
1593 ptr += btrfs_extent_inline_ref_size(type);
1594 continue;
1595 }
1596
1597 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1598 struct btrfs_extent_data_ref *dref;
1599 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1600 if (match_extent_data_ref(leaf, dref, root_objectid,
1601 owner, offset)) {
1602 err = 0;
1603 break;
1604 }
1605 if (hash_extent_data_ref_item(leaf, dref) <
1606 hash_extent_data_ref(root_objectid, owner, offset))
1607 break;
1608 } else {
1609 u64 ref_offset;
1610 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1611 if (parent > 0) {
1612 if (parent == ref_offset) {
1613 err = 0;
1614 break;
1615 }
1616 if (ref_offset < parent)
1617 break;
1618 } else {
1619 if (root_objectid == ref_offset) {
1620 err = 0;
1621 break;
1622 }
1623 if (ref_offset < root_objectid)
1624 break;
1625 }
1626 }
1627 ptr += btrfs_extent_inline_ref_size(type);
1628 }
1629 if (err == -ENOENT && insert) {
1630 if (item_size + extra_size >=
1631 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1632 err = -EAGAIN;
1633 goto out;
1634 }
1635 /*
1636 * To add new inline back ref, we have to make sure
1637 * there is no corresponding back ref item.
1638 * For simplicity, we just do not add new inline back
1639 * ref if there is any kind of item for this block
1640 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001641 if (find_next_key(path, 0, &key) == 0 &&
1642 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001643 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001644 err = -EAGAIN;
1645 goto out;
1646 }
1647 }
1648 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1649out:
Yan Zheng85d41982009-06-11 08:51:10 -04001650 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001651 path->keep_locks = 0;
1652 btrfs_unlock_up_safe(path, 1);
1653 }
1654 return err;
1655}
1656
1657/*
1658 * helper to add new inline back ref
1659 */
1660static noinline_for_stack
Tsutomu Itohfd279fa2013-04-16 05:19:11 +00001661void setup_inline_extent_backref(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001662 struct btrfs_path *path,
1663 struct btrfs_extent_inline_ref *iref,
1664 u64 parent, u64 root_objectid,
1665 u64 owner, u64 offset, int refs_to_add,
1666 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001667{
1668 struct extent_buffer *leaf;
1669 struct btrfs_extent_item *ei;
1670 unsigned long ptr;
1671 unsigned long end;
1672 unsigned long item_offset;
1673 u64 refs;
1674 int size;
1675 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001676
1677 leaf = path->nodes[0];
1678 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1679 item_offset = (unsigned long)iref - (unsigned long)ei;
1680
1681 type = extent_ref_type(parent, owner);
1682 size = btrfs_extent_inline_ref_size(type);
1683
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00001684 btrfs_extend_item(root, path, size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001685
1686 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1687 refs = btrfs_extent_refs(leaf, ei);
1688 refs += refs_to_add;
1689 btrfs_set_extent_refs(leaf, ei, refs);
1690 if (extent_op)
1691 __run_delayed_extent_op(extent_op, leaf, ei);
1692
1693 ptr = (unsigned long)ei + item_offset;
1694 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1695 if (ptr < end - size)
1696 memmove_extent_buffer(leaf, ptr + size, ptr,
1697 end - size - ptr);
1698
1699 iref = (struct btrfs_extent_inline_ref *)ptr;
1700 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1701 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1702 struct btrfs_extent_data_ref *dref;
1703 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1704 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1705 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1706 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1707 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1708 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1709 struct btrfs_shared_data_ref *sref;
1710 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1711 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1712 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1713 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1714 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1715 } else {
1716 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1717 }
1718 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001719}
1720
1721static int lookup_extent_backref(struct btrfs_trans_handle *trans,
1722 struct btrfs_root *root,
1723 struct btrfs_path *path,
1724 struct btrfs_extent_inline_ref **ref_ret,
1725 u64 bytenr, u64 num_bytes, u64 parent,
1726 u64 root_objectid, u64 owner, u64 offset)
1727{
1728 int ret;
1729
1730 ret = lookup_inline_extent_backref(trans, root, path, ref_ret,
1731 bytenr, num_bytes, parent,
1732 root_objectid, owner, offset, 0);
1733 if (ret != -ENOENT)
1734 return ret;
1735
David Sterbab3b4aa72011-04-21 01:20:15 +02001736 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001737 *ref_ret = NULL;
1738
1739 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1740 ret = lookup_tree_block_ref(trans, root, path, bytenr, parent,
1741 root_objectid);
1742 } else {
1743 ret = lookup_extent_data_ref(trans, root, path, bytenr, parent,
1744 root_objectid, owner, offset);
1745 }
1746 return ret;
1747}
1748
1749/*
1750 * helper to update/remove inline back ref
1751 */
1752static noinline_for_stack
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001753void update_inline_extent_backref(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001754 struct btrfs_path *path,
1755 struct btrfs_extent_inline_ref *iref,
1756 int refs_to_mod,
Josef Bacikfcebe452014-05-13 17:30:47 -07001757 struct btrfs_delayed_extent_op *extent_op,
1758 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001759{
1760 struct extent_buffer *leaf;
1761 struct btrfs_extent_item *ei;
1762 struct btrfs_extent_data_ref *dref = NULL;
1763 struct btrfs_shared_data_ref *sref = NULL;
1764 unsigned long ptr;
1765 unsigned long end;
1766 u32 item_size;
1767 int size;
1768 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001769 u64 refs;
1770
1771 leaf = path->nodes[0];
1772 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1773 refs = btrfs_extent_refs(leaf, ei);
1774 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1775 refs += refs_to_mod;
1776 btrfs_set_extent_refs(leaf, ei, refs);
1777 if (extent_op)
1778 __run_delayed_extent_op(extent_op, leaf, ei);
1779
1780 type = btrfs_extent_inline_ref_type(leaf, iref);
1781
1782 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1783 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1784 refs = btrfs_extent_data_ref_count(leaf, dref);
1785 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1786 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1787 refs = btrfs_shared_data_ref_count(leaf, sref);
1788 } else {
1789 refs = 1;
1790 BUG_ON(refs_to_mod != -1);
1791 }
1792
1793 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1794 refs += refs_to_mod;
1795
1796 if (refs > 0) {
1797 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1798 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1799 else
1800 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1801 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001802 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001803 size = btrfs_extent_inline_ref_size(type);
1804 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1805 ptr = (unsigned long)iref;
1806 end = (unsigned long)ei + item_size;
1807 if (ptr + size < end)
1808 memmove_extent_buffer(leaf, ptr, ptr + size,
1809 end - ptr - size);
1810 item_size -= size;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001811 btrfs_truncate_item(root, path, item_size, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001812 }
1813 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001814}
1815
1816static noinline_for_stack
1817int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
1818 struct btrfs_root *root,
1819 struct btrfs_path *path,
1820 u64 bytenr, u64 num_bytes, u64 parent,
1821 u64 root_objectid, u64 owner,
1822 u64 offset, int refs_to_add,
1823 struct btrfs_delayed_extent_op *extent_op)
1824{
1825 struct btrfs_extent_inline_ref *iref;
1826 int ret;
1827
1828 ret = lookup_inline_extent_backref(trans, root, path, &iref,
1829 bytenr, num_bytes, parent,
1830 root_objectid, owner, offset, 1);
1831 if (ret == 0) {
1832 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001833 update_inline_extent_backref(root, path, iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001834 refs_to_add, extent_op, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001835 } else if (ret == -ENOENT) {
Tsutomu Itohfd279fa2013-04-16 05:19:11 +00001836 setup_inline_extent_backref(root, path, iref, parent,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001837 root_objectid, owner, offset,
1838 refs_to_add, extent_op);
1839 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001840 }
1841 return ret;
1842}
1843
1844static int insert_extent_backref(struct btrfs_trans_handle *trans,
1845 struct btrfs_root *root,
1846 struct btrfs_path *path,
1847 u64 bytenr, u64 parent, u64 root_objectid,
1848 u64 owner, u64 offset, int refs_to_add)
1849{
1850 int ret;
1851 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1852 BUG_ON(refs_to_add != 1);
1853 ret = insert_tree_block_ref(trans, root, path, bytenr,
1854 parent, root_objectid);
1855 } else {
1856 ret = insert_extent_data_ref(trans, root, path, bytenr,
1857 parent, root_objectid,
1858 owner, offset, refs_to_add);
1859 }
1860 return ret;
1861}
1862
1863static int remove_extent_backref(struct btrfs_trans_handle *trans,
1864 struct btrfs_root *root,
1865 struct btrfs_path *path,
1866 struct btrfs_extent_inline_ref *iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001867 int refs_to_drop, int is_data, int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001868{
Jeff Mahoney143bede2012-03-01 14:56:26 +01001869 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001870
1871 BUG_ON(!is_data && refs_to_drop != 1);
1872 if (iref) {
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001873 update_inline_extent_backref(root, path, iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001874 -refs_to_drop, NULL, last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001875 } else if (is_data) {
Josef Bacikfcebe452014-05-13 17:30:47 -07001876 ret = remove_extent_data_ref(trans, root, path, refs_to_drop,
1877 last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001878 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001879 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001880 ret = btrfs_del_item(trans, root, path);
1881 }
1882 return ret;
1883}
1884
Jeff Mahoney86557862015-06-15 09:41:16 -04001885#define in_range(b, first, len) ((b) >= (first) && (b) < (first) + (len))
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001886static int btrfs_issue_discard(struct block_device *bdev, u64 start, u64 len,
1887 u64 *discarded_bytes)
Chris Mason15916de2008-11-19 21:17:22 -05001888{
Jeff Mahoney86557862015-06-15 09:41:16 -04001889 int j, ret = 0;
1890 u64 bytes_left, end;
Jeff Mahoney4d89d372015-06-15 09:41:15 -04001891 u64 aligned_start = ALIGN(start, 1 << 9);
1892
1893 if (WARN_ON(start != aligned_start)) {
1894 len -= aligned_start - start;
1895 len = round_down(len, 1 << 9);
1896 start = aligned_start;
1897 }
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001898
1899 *discarded_bytes = 0;
Jeff Mahoney86557862015-06-15 09:41:16 -04001900
1901 if (!len)
1902 return 0;
1903
1904 end = start + len;
1905 bytes_left = len;
1906
1907 /* Skip any superblocks on this device. */
1908 for (j = 0; j < BTRFS_SUPER_MIRROR_MAX; j++) {
1909 u64 sb_start = btrfs_sb_offset(j);
1910 u64 sb_end = sb_start + BTRFS_SUPER_INFO_SIZE;
1911 u64 size = sb_start - start;
1912
1913 if (!in_range(sb_start, start, bytes_left) &&
1914 !in_range(sb_end, start, bytes_left) &&
1915 !in_range(start, sb_start, BTRFS_SUPER_INFO_SIZE))
1916 continue;
1917
1918 /*
1919 * Superblock spans beginning of range. Adjust start and
1920 * try again.
1921 */
1922 if (sb_start <= start) {
1923 start += sb_end - start;
1924 if (start > end) {
1925 bytes_left = 0;
1926 break;
1927 }
1928 bytes_left = end - start;
1929 continue;
1930 }
1931
1932 if (size) {
1933 ret = blkdev_issue_discard(bdev, start >> 9, size >> 9,
1934 GFP_NOFS, 0);
1935 if (!ret)
1936 *discarded_bytes += size;
1937 else if (ret != -EOPNOTSUPP)
1938 return ret;
1939 }
1940
1941 start = sb_end;
1942 if (start > end) {
1943 bytes_left = 0;
1944 break;
1945 }
1946 bytes_left = end - start;
1947 }
1948
1949 if (bytes_left) {
1950 ret = blkdev_issue_discard(bdev, start >> 9, bytes_left >> 9,
Jeff Mahoney4d89d372015-06-15 09:41:15 -04001951 GFP_NOFS, 0);
1952 if (!ret)
Jeff Mahoney86557862015-06-15 09:41:16 -04001953 *discarded_bytes += bytes_left;
Jeff Mahoney4d89d372015-06-15 09:41:15 -04001954 }
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001955 return ret;
Chris Mason15916de2008-11-19 21:17:22 -05001956}
Chris Mason15916de2008-11-19 21:17:22 -05001957
Filipe Manana1edb647b2014-12-08 14:01:12 +00001958int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr,
1959 u64 num_bytes, u64 *actual_bytes)
Liu Hui1f3c79a2009-01-05 15:57:51 -05001960{
Liu Hui1f3c79a2009-01-05 15:57:51 -05001961 int ret;
Li Dongyang5378e602011-03-24 10:24:27 +00001962 u64 discarded_bytes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02001963 struct btrfs_bio *bbio = NULL;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001964
Christoph Hellwige244a0a2009-10-14 09:24:59 -04001965
Liu Hui1f3c79a2009-01-05 15:57:51 -05001966 /* Tell the block device(s) that the sectors can be discarded */
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001967 ret = btrfs_map_block(root->fs_info, REQ_DISCARD,
Jan Schmidta1d3c472011-08-04 17:15:33 +02001968 bytenr, &num_bytes, &bbio, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001969 /* Error condition is -ENOMEM */
Liu Hui1f3c79a2009-01-05 15:57:51 -05001970 if (!ret) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02001971 struct btrfs_bio_stripe *stripe = bbio->stripes;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001972 int i;
1973
Liu Hui1f3c79a2009-01-05 15:57:51 -05001974
Jan Schmidta1d3c472011-08-04 17:15:33 +02001975 for (i = 0; i < bbio->num_stripes; i++, stripe++) {
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001976 u64 bytes;
Josef Bacikd5e20032011-08-04 14:52:27 +00001977 if (!stripe->dev->can_discard)
1978 continue;
1979
Li Dongyang5378e602011-03-24 10:24:27 +00001980 ret = btrfs_issue_discard(stripe->dev->bdev,
1981 stripe->physical,
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001982 stripe->length,
1983 &bytes);
Li Dongyang5378e602011-03-24 10:24:27 +00001984 if (!ret)
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001985 discarded_bytes += bytes;
Li Dongyang5378e602011-03-24 10:24:27 +00001986 else if (ret != -EOPNOTSUPP)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001987 break; /* Logic errors or -ENOMEM, or -EIO but I don't know how that could happen JDM */
Josef Bacikd5e20032011-08-04 14:52:27 +00001988
1989 /*
1990 * Just in case we get back EOPNOTSUPP for some reason,
1991 * just ignore the return value so we don't screw up
1992 * people calling discard_extent.
1993 */
1994 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001995 }
Zhao Lei6e9606d2015-01-20 15:11:34 +08001996 btrfs_put_bbio(bbio);
Liu Hui1f3c79a2009-01-05 15:57:51 -05001997 }
Li Dongyang5378e602011-03-24 10:24:27 +00001998
1999 if (actual_bytes)
2000 *actual_bytes = discarded_bytes;
2001
Liu Hui1f3c79a2009-01-05 15:57:51 -05002002
David Woodhouse53b381b2013-01-29 18:40:14 -05002003 if (ret == -EOPNOTSUPP)
2004 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002005 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002006}
2007
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002008/* Can return -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002009int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
2010 struct btrfs_root *root,
2011 u64 bytenr, u64 num_bytes, u64 parent,
Josef Bacikfcebe452014-05-13 17:30:47 -07002012 u64 root_objectid, u64 owner, u64 offset,
2013 int no_quota)
Zheng Yan31840ae2008-09-23 13:14:14 -04002014{
2015 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002016 struct btrfs_fs_info *fs_info = root->fs_info;
2017
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002018 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
2019 root_objectid == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04002020
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002021 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002022 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
2023 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002024 parent, root_objectid, (int)owner,
Josef Bacikfcebe452014-05-13 17:30:47 -07002025 BTRFS_ADD_DELAYED_REF, NULL, no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002026 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002027 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
2028 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002029 parent, root_objectid, owner, offset,
Josef Bacikfcebe452014-05-13 17:30:47 -07002030 BTRFS_ADD_DELAYED_REF, NULL, no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002031 }
Zheng Yan31840ae2008-09-23 13:14:14 -04002032 return ret;
2033}
2034
Chris Mason925baed2008-06-25 16:01:30 -04002035static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002036 struct btrfs_root *root,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002037 struct btrfs_delayed_ref_node *node,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002038 u64 parent, u64 root_objectid,
2039 u64 owner, u64 offset, int refs_to_add,
2040 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04002041{
Josef Bacikfcebe452014-05-13 17:30:47 -07002042 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5caf2a02007-04-02 11:20:42 -04002043 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002044 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04002045 struct btrfs_extent_item *item;
Josef Bacikfcebe452014-05-13 17:30:47 -07002046 struct btrfs_key key;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002047 u64 bytenr = node->bytenr;
2048 u64 num_bytes = node->num_bytes;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002049 u64 refs;
2050 int ret;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002051 int no_quota = node->no_quota;
Chris Mason037e6392007-03-07 11:50:24 -05002052
Chris Mason5caf2a02007-04-02 11:20:42 -04002053 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002054 if (!path)
2055 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04002056
Josef Bacikfcebe452014-05-13 17:30:47 -07002057 if (!is_fstree(root_objectid) || !root->fs_info->quota_enabled)
2058 no_quota = 1;
2059
Chris Mason3c12ac72008-04-21 12:01:38 -04002060 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04002061 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002062 /* this will setup the path even if it fails to insert the back ref */
Josef Bacikfcebe452014-05-13 17:30:47 -07002063 ret = insert_inline_extent_backref(trans, fs_info->extent_root, path,
2064 bytenr, num_bytes, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002065 root_objectid, owner, offset,
2066 refs_to_add, extent_op);
Qu Wenruo0ed47922015-04-16 16:55:08 +08002067 if ((ret < 0 && ret != -EAGAIN) || !ret)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002068 goto out;
Josef Bacikfcebe452014-05-13 17:30:47 -07002069
2070 /*
2071 * Ok we had -EAGAIN which means we didn't have space to insert and
2072 * inline extent ref, so just update the reference count and add a
2073 * normal backref.
2074 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002075 leaf = path->nodes[0];
Josef Bacikfcebe452014-05-13 17:30:47 -07002076 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002077 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2078 refs = btrfs_extent_refs(leaf, item);
2079 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
2080 if (extent_op)
2081 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04002082
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002083 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002084 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05002085
Chris Mason3c12ac72008-04-21 12:01:38 -04002086 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04002087 path->leave_spinning = 1;
Chris Mason56bec292009-03-13 10:10:06 -04002088 /* now insert the actual backref */
Zheng Yan31840ae2008-09-23 13:14:14 -04002089 ret = insert_extent_backref(trans, root->fs_info->extent_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002090 path, bytenr, parent, root_objectid,
2091 owner, offset, refs_to_add);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002092 if (ret)
2093 btrfs_abort_transaction(trans, root, ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002094out:
Chris Mason74493f72007-12-11 09:25:06 -05002095 btrfs_free_path(path);
Liu Bo30d133f2013-10-11 16:30:23 +08002096 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002097}
2098
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002099static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
2100 struct btrfs_root *root,
2101 struct btrfs_delayed_ref_node *node,
2102 struct btrfs_delayed_extent_op *extent_op,
2103 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04002104{
Chris Mason56bec292009-03-13 10:10:06 -04002105 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002106 struct btrfs_delayed_data_ref *ref;
2107 struct btrfs_key ins;
2108 u64 parent = 0;
2109 u64 ref_root = 0;
2110 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002111
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002112 ins.objectid = node->bytenr;
2113 ins.offset = node->num_bytes;
2114 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04002115
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002116 ref = btrfs_delayed_node_to_data_ref(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002117 trace_run_delayed_data_ref(node, ref, node->action);
2118
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002119 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
2120 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002121 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002122
2123 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002124 if (extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002125 flags |= extent_op->flags_to_set;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002126 ret = alloc_reserved_file_extent(trans, root,
2127 parent, ref_root, flags,
2128 ref->objectid, ref->offset,
2129 &ins, node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002130 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002131 ret = __btrfs_inc_extent_ref(trans, root, node, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002132 ref_root, ref->objectid,
2133 ref->offset, node->ref_mod,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002134 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002135 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002136 ret = __btrfs_free_extent(trans, root, node, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002137 ref_root, ref->objectid,
2138 ref->offset, node->ref_mod,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002139 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002140 } else {
2141 BUG();
2142 }
Chris Mason56bec292009-03-13 10:10:06 -04002143 return ret;
2144}
2145
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002146static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
2147 struct extent_buffer *leaf,
2148 struct btrfs_extent_item *ei)
2149{
2150 u64 flags = btrfs_extent_flags(leaf, ei);
2151 if (extent_op->update_flags) {
2152 flags |= extent_op->flags_to_set;
2153 btrfs_set_extent_flags(leaf, ei, flags);
2154 }
2155
2156 if (extent_op->update_key) {
2157 struct btrfs_tree_block_info *bi;
2158 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
2159 bi = (struct btrfs_tree_block_info *)(ei + 1);
2160 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
2161 }
2162}
2163
2164static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
2165 struct btrfs_root *root,
2166 struct btrfs_delayed_ref_node *node,
2167 struct btrfs_delayed_extent_op *extent_op)
2168{
2169 struct btrfs_key key;
2170 struct btrfs_path *path;
2171 struct btrfs_extent_item *ei;
2172 struct extent_buffer *leaf;
2173 u32 item_size;
2174 int ret;
2175 int err = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002176 int metadata = !extent_op->is_data;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002177
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002178 if (trans->aborted)
2179 return 0;
2180
Josef Bacik3173a182013-03-07 14:22:04 -05002181 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2182 metadata = 0;
2183
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002184 path = btrfs_alloc_path();
2185 if (!path)
2186 return -ENOMEM;
2187
2188 key.objectid = node->bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002189
Josef Bacik3173a182013-03-07 14:22:04 -05002190 if (metadata) {
Josef Bacik3173a182013-03-07 14:22:04 -05002191 key.type = BTRFS_METADATA_ITEM_KEY;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002192 key.offset = extent_op->level;
Josef Bacik3173a182013-03-07 14:22:04 -05002193 } else {
2194 key.type = BTRFS_EXTENT_ITEM_KEY;
2195 key.offset = node->num_bytes;
2196 }
2197
2198again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002199 path->reada = 1;
2200 path->leave_spinning = 1;
2201 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key,
2202 path, 0, 1);
2203 if (ret < 0) {
2204 err = ret;
2205 goto out;
2206 }
2207 if (ret > 0) {
Josef Bacik3173a182013-03-07 14:22:04 -05002208 if (metadata) {
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002209 if (path->slots[0] > 0) {
2210 path->slots[0]--;
2211 btrfs_item_key_to_cpu(path->nodes[0], &key,
2212 path->slots[0]);
2213 if (key.objectid == node->bytenr &&
2214 key.type == BTRFS_EXTENT_ITEM_KEY &&
2215 key.offset == node->num_bytes)
2216 ret = 0;
2217 }
2218 if (ret > 0) {
2219 btrfs_release_path(path);
2220 metadata = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002221
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002222 key.objectid = node->bytenr;
2223 key.offset = node->num_bytes;
2224 key.type = BTRFS_EXTENT_ITEM_KEY;
2225 goto again;
2226 }
2227 } else {
2228 err = -EIO;
2229 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05002230 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002231 }
2232
2233 leaf = path->nodes[0];
2234 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2235#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2236 if (item_size < sizeof(*ei)) {
2237 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
2238 path, (u64)-1, 0);
2239 if (ret < 0) {
2240 err = ret;
2241 goto out;
2242 }
2243 leaf = path->nodes[0];
2244 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2245 }
2246#endif
2247 BUG_ON(item_size < sizeof(*ei));
2248 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2249 __run_delayed_extent_op(extent_op, leaf, ei);
2250
2251 btrfs_mark_buffer_dirty(leaf);
2252out:
2253 btrfs_free_path(path);
2254 return err;
2255}
2256
2257static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
2258 struct btrfs_root *root,
2259 struct btrfs_delayed_ref_node *node,
2260 struct btrfs_delayed_extent_op *extent_op,
2261 int insert_reserved)
2262{
2263 int ret = 0;
2264 struct btrfs_delayed_tree_ref *ref;
2265 struct btrfs_key ins;
2266 u64 parent = 0;
2267 u64 ref_root = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002268 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
2269 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002270
2271 ref = btrfs_delayed_node_to_tree_ref(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002272 trace_run_delayed_tree_ref(node, ref, node->action);
2273
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002274 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2275 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002276 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002277
Josef Bacik3173a182013-03-07 14:22:04 -05002278 ins.objectid = node->bytenr;
2279 if (skinny_metadata) {
2280 ins.offset = ref->level;
2281 ins.type = BTRFS_METADATA_ITEM_KEY;
2282 } else {
2283 ins.offset = node->num_bytes;
2284 ins.type = BTRFS_EXTENT_ITEM_KEY;
2285 }
2286
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002287 BUG_ON(node->ref_mod != 1);
2288 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002289 BUG_ON(!extent_op || !extent_op->update_flags);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002290 ret = alloc_reserved_tree_block(trans, root,
2291 parent, ref_root,
2292 extent_op->flags_to_set,
2293 &extent_op->key,
Josef Bacikfcebe452014-05-13 17:30:47 -07002294 ref->level, &ins,
2295 node->no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002296 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002297 ret = __btrfs_inc_extent_ref(trans, root, node,
2298 parent, ref_root,
2299 ref->level, 0, 1,
Josef Bacikfcebe452014-05-13 17:30:47 -07002300 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002301 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002302 ret = __btrfs_free_extent(trans, root, node,
2303 parent, ref_root,
2304 ref->level, 0, 1, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002305 } else {
2306 BUG();
2307 }
2308 return ret;
2309}
2310
Chris Mason56bec292009-03-13 10:10:06 -04002311/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002312static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
2313 struct btrfs_root *root,
2314 struct btrfs_delayed_ref_node *node,
2315 struct btrfs_delayed_extent_op *extent_op,
2316 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002317{
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002318 int ret = 0;
2319
Josef Bacik857cc2f2013-10-07 15:21:08 -04002320 if (trans->aborted) {
2321 if (insert_reserved)
2322 btrfs_pin_extent(root, node->bytenr,
2323 node->num_bytes, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002324 return 0;
Josef Bacik857cc2f2013-10-07 15:21:08 -04002325 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002326
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002327 if (btrfs_delayed_ref_is_head(node)) {
Chris Mason56bec292009-03-13 10:10:06 -04002328 struct btrfs_delayed_ref_head *head;
2329 /*
2330 * we've hit the end of the chain and we were supposed
2331 * to insert this extent into the tree. But, it got
2332 * deleted before we ever needed to insert it, so all
2333 * we have to do is clean up the accounting
2334 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002335 BUG_ON(extent_op);
2336 head = btrfs_delayed_node_to_head(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002337 trace_run_delayed_ref_head(node, head, node->action);
2338
Chris Mason56bec292009-03-13 10:10:06 -04002339 if (insert_reserved) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04002340 btrfs_pin_extent(root, node->bytenr,
2341 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002342 if (head->is_data) {
2343 ret = btrfs_del_csums(trans, root,
2344 node->bytenr,
2345 node->num_bytes);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002346 }
Chris Mason56bec292009-03-13 10:10:06 -04002347 }
Qu Wenruo297d7502015-09-08 17:08:37 +08002348
2349 /* Also free its reserved qgroup space */
2350 btrfs_qgroup_free_delayed_ref(root->fs_info,
2351 head->qgroup_ref_root,
2352 head->qgroup_reserved);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002353 return ret;
Chris Mason56bec292009-03-13 10:10:06 -04002354 }
Josef Bacikeb099672009-02-12 09:27:38 -05002355
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002356 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2357 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2358 ret = run_delayed_tree_ref(trans, root, node, extent_op,
2359 insert_reserved);
2360 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2361 node->type == BTRFS_SHARED_DATA_REF_KEY)
2362 ret = run_delayed_data_ref(trans, root, node, extent_op,
2363 insert_reserved);
2364 else
2365 BUG();
2366 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002367}
2368
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002369static inline struct btrfs_delayed_ref_node *
Chris Mason56bec292009-03-13 10:10:06 -04002370select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002371{
Filipe Mananacffc3372015-07-09 13:13:44 +01002372 struct btrfs_delayed_ref_node *ref;
2373
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002374 if (list_empty(&head->ref_list))
2375 return NULL;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002376
Filipe Mananacffc3372015-07-09 13:13:44 +01002377 /*
2378 * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first.
2379 * This is to prevent a ref count from going down to zero, which deletes
2380 * the extent item from the extent tree, when there still are references
2381 * to add, which would fail because they would not find the extent item.
2382 */
2383 list_for_each_entry(ref, &head->ref_list, list) {
2384 if (ref->action == BTRFS_ADD_DELAYED_REF)
2385 return ref;
2386 }
2387
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002388 return list_entry(head->ref_list.next, struct btrfs_delayed_ref_node,
2389 list);
Chris Mason56bec292009-03-13 10:10:06 -04002390}
2391
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002392/*
2393 * Returns 0 on success or if called with an already aborted transaction.
2394 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2395 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002396static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2397 struct btrfs_root *root,
2398 unsigned long nr)
Chris Mason56bec292009-03-13 10:10:06 -04002399{
Chris Mason56bec292009-03-13 10:10:06 -04002400 struct btrfs_delayed_ref_root *delayed_refs;
2401 struct btrfs_delayed_ref_node *ref;
2402 struct btrfs_delayed_ref_head *locked_ref = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002403 struct btrfs_delayed_extent_op *extent_op;
Jan Schmidt097b8a72012-06-21 11:08:04 +02002404 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002405 ktime_t start = ktime_get();
Chris Mason56bec292009-03-13 10:10:06 -04002406 int ret;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002407 unsigned long count = 0;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002408 unsigned long actual_count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002409 int must_insert_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002410
2411 delayed_refs = &trans->transaction->delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002412 while (1) {
2413 if (!locked_ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002414 if (count >= nr)
Chris Mason56bec292009-03-13 10:10:06 -04002415 break;
Chris Mason56bec292009-03-13 10:10:06 -04002416
Josef Bacikd7df2c72014-01-23 09:21:38 -05002417 spin_lock(&delayed_refs->lock);
2418 locked_ref = btrfs_select_ref_head(trans);
2419 if (!locked_ref) {
2420 spin_unlock(&delayed_refs->lock);
2421 break;
2422 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002423
2424 /* grab the lock that says we are going to process
2425 * all the refs for this head */
2426 ret = btrfs_delayed_ref_lock(trans, locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002427 spin_unlock(&delayed_refs->lock);
Chris Masonc3e69d52009-03-13 10:17:05 -04002428 /*
2429 * we may have dropped the spin lock to get the head
2430 * mutex lock, and that might have given someone else
2431 * time to free the head. If that's true, it has been
2432 * removed from our list and we can move on.
2433 */
2434 if (ret == -EAGAIN) {
2435 locked_ref = NULL;
2436 count++;
2437 continue;
Chris Mason56bec292009-03-13 10:10:06 -04002438 }
2439 }
2440
Josef Bacikd7df2c72014-01-23 09:21:38 -05002441 spin_lock(&locked_ref->lock);
Josef Bacikae1e2062012-08-07 16:00:32 -04002442
2443 /*
Arne Jansend1270cd2011-09-13 15:16:43 +02002444 * locked_ref is the head node, so we have to go one
2445 * node back for any delayed ref updates
2446 */
2447 ref = select_delayed_ref(locked_ref);
2448
2449 if (ref && ref->seq &&
Jan Schmidt097b8a72012-06-21 11:08:04 +02002450 btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002451 spin_unlock(&locked_ref->lock);
Miao Xie093486c2012-12-19 08:10:10 +00002452 btrfs_delayed_ref_unlock(locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002453 spin_lock(&delayed_refs->lock);
2454 locked_ref->processing = 0;
Arne Jansend1270cd2011-09-13 15:16:43 +02002455 delayed_refs->num_heads_ready++;
2456 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002457 locked_ref = NULL;
Arne Jansend1270cd2011-09-13 15:16:43 +02002458 cond_resched();
Josef Bacik27a377d2014-02-07 13:57:59 -05002459 count++;
Arne Jansend1270cd2011-09-13 15:16:43 +02002460 continue;
2461 }
2462
2463 /*
Chris Mason56bec292009-03-13 10:10:06 -04002464 * record the must insert reserved flag before we
2465 * drop the spin lock.
2466 */
2467 must_insert_reserved = locked_ref->must_insert_reserved;
2468 locked_ref->must_insert_reserved = 0;
2469
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002470 extent_op = locked_ref->extent_op;
2471 locked_ref->extent_op = NULL;
2472
Chris Mason56bec292009-03-13 10:10:06 -04002473 if (!ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002474
2475
Chris Mason56bec292009-03-13 10:10:06 -04002476 /* All delayed refs have been processed, Go ahead
2477 * and send the head node to run_one_delayed_ref,
2478 * so that any accounting fixes can happen
2479 */
2480 ref = &locked_ref->node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002481
2482 if (extent_op && must_insert_reserved) {
Miao Xie78a61842012-11-21 02:21:28 +00002483 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002484 extent_op = NULL;
2485 }
2486
2487 if (extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002488 spin_unlock(&locked_ref->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002489 ret = run_delayed_extent_op(trans, root,
2490 ref, extent_op);
Miao Xie78a61842012-11-21 02:21:28 +00002491 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002492
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002493 if (ret) {
Josef Bacik857cc2f2013-10-07 15:21:08 -04002494 /*
2495 * Need to reset must_insert_reserved if
2496 * there was an error so the abort stuff
2497 * can cleanup the reserved space
2498 * properly.
2499 */
2500 if (must_insert_reserved)
2501 locked_ref->must_insert_reserved = 1;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002502 locked_ref->processing = 0;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002503 btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret);
Miao Xie093486c2012-12-19 08:10:10 +00002504 btrfs_delayed_ref_unlock(locked_ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002505 return ret;
2506 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002507 continue;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002508 }
Chris Mason56bec292009-03-13 10:10:06 -04002509
Josef Bacikd7df2c72014-01-23 09:21:38 -05002510 /*
2511 * Need to drop our head ref lock and re-aqcuire the
2512 * delayed ref lock and then re-check to make sure
2513 * nobody got added.
2514 */
2515 spin_unlock(&locked_ref->lock);
2516 spin_lock(&delayed_refs->lock);
2517 spin_lock(&locked_ref->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002518 if (!list_empty(&locked_ref->ref_list) ||
Josef Bacik573a0752014-03-27 19:41:34 -04002519 locked_ref->extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002520 spin_unlock(&locked_ref->lock);
2521 spin_unlock(&delayed_refs->lock);
2522 continue;
2523 }
2524 ref->in_tree = 0;
2525 delayed_refs->num_heads--;
Liu Boc46effa2013-10-14 12:59:45 +08002526 rb_erase(&locked_ref->href_node,
2527 &delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002528 spin_unlock(&delayed_refs->lock);
2529 } else {
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002530 actual_count++;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002531 ref->in_tree = 0;
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002532 list_del(&ref->list);
Liu Boc46effa2013-10-14 12:59:45 +08002533 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002534 atomic_dec(&delayed_refs->num_entries);
2535
Miao Xie093486c2012-12-19 08:10:10 +00002536 if (!btrfs_delayed_ref_is_head(ref)) {
Arne Jansen22cd2e72012-08-09 00:16:53 -06002537 /*
2538 * when we play the delayed ref, also correct the
2539 * ref_mod on head
2540 */
2541 switch (ref->action) {
2542 case BTRFS_ADD_DELAYED_REF:
2543 case BTRFS_ADD_DELAYED_EXTENT:
2544 locked_ref->node.ref_mod -= ref->ref_mod;
2545 break;
2546 case BTRFS_DROP_DELAYED_REF:
2547 locked_ref->node.ref_mod += ref->ref_mod;
2548 break;
2549 default:
2550 WARN_ON(1);
2551 }
2552 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002553 spin_unlock(&locked_ref->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002554
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002555 ret = run_one_delayed_ref(trans, root, ref, extent_op,
Chris Mason56bec292009-03-13 10:10:06 -04002556 must_insert_reserved);
Chris Mason56bec292009-03-13 10:10:06 -04002557
Miao Xie78a61842012-11-21 02:21:28 +00002558 btrfs_free_delayed_extent_op(extent_op);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002559 if (ret) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002560 locked_ref->processing = 0;
Miao Xie093486c2012-12-19 08:10:10 +00002561 btrfs_delayed_ref_unlock(locked_ref);
2562 btrfs_put_delayed_ref(ref);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002563 btrfs_debug(fs_info, "run_one_delayed_ref returned %d", ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002564 return ret;
2565 }
2566
Miao Xie093486c2012-12-19 08:10:10 +00002567 /*
2568 * If this node is a head, that means all the refs in this head
2569 * have been dealt with, and we will pick the next head to deal
2570 * with, so we must unlock the head and drop it from the cluster
2571 * list before we release it.
2572 */
2573 if (btrfs_delayed_ref_is_head(ref)) {
Josef Bacik12621332015-02-03 07:50:16 -08002574 if (locked_ref->is_data &&
2575 locked_ref->total_ref_mod < 0) {
2576 spin_lock(&delayed_refs->lock);
2577 delayed_refs->pending_csums -= ref->num_bytes;
2578 spin_unlock(&delayed_refs->lock);
2579 }
Miao Xie093486c2012-12-19 08:10:10 +00002580 btrfs_delayed_ref_unlock(locked_ref);
2581 locked_ref = NULL;
2582 }
2583 btrfs_put_delayed_ref(ref);
2584 count++;
Chris Mason1887be62009-03-13 10:11:24 -04002585 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002586 }
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002587
2588 /*
2589 * We don't want to include ref heads since we can have empty ref heads
2590 * and those will drastically skew our runtime down since we just do
2591 * accounting, no actual extent tree updates.
2592 */
2593 if (actual_count > 0) {
2594 u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start));
2595 u64 avg;
2596
2597 /*
2598 * We weigh the current average higher than our current runtime
2599 * to avoid large swings in the average.
2600 */
2601 spin_lock(&delayed_refs->lock);
2602 avg = fs_info->avg_delayed_ref_runtime * 3 + runtime;
David Sterbaf8c269d2015-01-16 17:21:12 +01002603 fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002604 spin_unlock(&delayed_refs->lock);
2605 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002606 return 0;
Chris Masonc3e69d52009-03-13 10:17:05 -04002607}
2608
Arne Jansen709c0482011-09-12 12:22:57 +02002609#ifdef SCRAMBLE_DELAYED_REFS
2610/*
2611 * Normally delayed refs get processed in ascending bytenr order. This
2612 * correlates in most cases to the order added. To expose dependencies on this
2613 * order, we start to process the tree in the middle instead of the beginning
2614 */
2615static u64 find_middle(struct rb_root *root)
2616{
2617 struct rb_node *n = root->rb_node;
2618 struct btrfs_delayed_ref_node *entry;
2619 int alt = 1;
2620 u64 middle;
2621 u64 first = 0, last = 0;
2622
2623 n = rb_first(root);
2624 if (n) {
2625 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2626 first = entry->bytenr;
2627 }
2628 n = rb_last(root);
2629 if (n) {
2630 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2631 last = entry->bytenr;
2632 }
2633 n = root->rb_node;
2634
2635 while (n) {
2636 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2637 WARN_ON(!entry->in_tree);
2638
2639 middle = entry->bytenr;
2640
2641 if (alt)
2642 n = n->rb_left;
2643 else
2644 n = n->rb_right;
2645
2646 alt = 1 - alt;
2647 }
2648 return middle;
2649}
2650#endif
2651
Josef Bacik1be41b72013-06-12 13:56:06 -04002652static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads)
2653{
2654 u64 num_bytes;
2655
2656 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2657 sizeof(struct btrfs_extent_inline_ref));
2658 if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2659 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2660
2661 /*
2662 * We don't ever fill up leaves all the way so multiply by 2 just to be
2663 * closer to what we're really going to want to ouse.
2664 */
David Sterbaf8c269d2015-01-16 17:21:12 +01002665 return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root));
Josef Bacik1be41b72013-06-12 13:56:06 -04002666}
2667
Josef Bacik12621332015-02-03 07:50:16 -08002668/*
2669 * Takes the number of bytes to be csumm'ed and figures out how many leaves it
2670 * would require to store the csums for that many bytes.
2671 */
Chris Mason28f75a02015-02-04 06:59:29 -08002672u64 btrfs_csum_bytes_to_leaves(struct btrfs_root *root, u64 csum_bytes)
Josef Bacik12621332015-02-03 07:50:16 -08002673{
2674 u64 csum_size;
2675 u64 num_csums_per_leaf;
2676 u64 num_csums;
2677
2678 csum_size = BTRFS_LEAF_DATA_SIZE(root) - sizeof(struct btrfs_item);
2679 num_csums_per_leaf = div64_u64(csum_size,
2680 (u64)btrfs_super_csum_size(root->fs_info->super_copy));
2681 num_csums = div64_u64(csum_bytes, root->sectorsize);
2682 num_csums += num_csums_per_leaf - 1;
2683 num_csums = div64_u64(num_csums, num_csums_per_leaf);
2684 return num_csums;
2685}
2686
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002687int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans,
Josef Bacik1be41b72013-06-12 13:56:06 -04002688 struct btrfs_root *root)
2689{
2690 struct btrfs_block_rsv *global_rsv;
2691 u64 num_heads = trans->transaction->delayed_refs.num_heads_ready;
Josef Bacik12621332015-02-03 07:50:16 -08002692 u64 csum_bytes = trans->transaction->delayed_refs.pending_csums;
Josef Bacikcb723e42015-02-18 08:06:57 -08002693 u64 num_dirty_bgs = trans->transaction->num_dirty_bgs;
2694 u64 num_bytes, num_dirty_bgs_bytes;
Josef Bacik1be41b72013-06-12 13:56:06 -04002695 int ret = 0;
2696
2697 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
2698 num_heads = heads_to_leaves(root, num_heads);
2699 if (num_heads > 1)
David Sterba707e8a02014-06-04 19:22:26 +02002700 num_bytes += (num_heads - 1) * root->nodesize;
Josef Bacik1be41b72013-06-12 13:56:06 -04002701 num_bytes <<= 1;
Chris Mason28f75a02015-02-04 06:59:29 -08002702 num_bytes += btrfs_csum_bytes_to_leaves(root, csum_bytes) * root->nodesize;
Josef Bacikcb723e42015-02-18 08:06:57 -08002703 num_dirty_bgs_bytes = btrfs_calc_trans_metadata_size(root,
2704 num_dirty_bgs);
Josef Bacik1be41b72013-06-12 13:56:06 -04002705 global_rsv = &root->fs_info->global_block_rsv;
2706
2707 /*
2708 * If we can't allocate any more chunks lets make sure we have _lots_ of
2709 * wiggle room since running delayed refs can create more delayed refs.
2710 */
Josef Bacikcb723e42015-02-18 08:06:57 -08002711 if (global_rsv->space_info->full) {
2712 num_dirty_bgs_bytes <<= 1;
Josef Bacik1be41b72013-06-12 13:56:06 -04002713 num_bytes <<= 1;
Josef Bacikcb723e42015-02-18 08:06:57 -08002714 }
Josef Bacik1be41b72013-06-12 13:56:06 -04002715
2716 spin_lock(&global_rsv->lock);
Josef Bacikcb723e42015-02-18 08:06:57 -08002717 if (global_rsv->reserved <= num_bytes + num_dirty_bgs_bytes)
Josef Bacik1be41b72013-06-12 13:56:06 -04002718 ret = 1;
2719 spin_unlock(&global_rsv->lock);
2720 return ret;
2721}
2722
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002723int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans,
2724 struct btrfs_root *root)
2725{
2726 struct btrfs_fs_info *fs_info = root->fs_info;
2727 u64 num_entries =
2728 atomic_read(&trans->transaction->delayed_refs.num_entries);
2729 u64 avg_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002730 u64 val;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002731
2732 smp_mb();
2733 avg_runtime = fs_info->avg_delayed_ref_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002734 val = num_entries * avg_runtime;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002735 if (num_entries * avg_runtime >= NSEC_PER_SEC)
2736 return 1;
Chris Masona79b7d42014-05-22 16:18:52 -07002737 if (val >= NSEC_PER_SEC / 2)
2738 return 2;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002739
2740 return btrfs_check_space_for_delayed_refs(trans, root);
2741}
2742
Chris Masona79b7d42014-05-22 16:18:52 -07002743struct async_delayed_refs {
2744 struct btrfs_root *root;
2745 int count;
2746 int error;
2747 int sync;
2748 struct completion wait;
2749 struct btrfs_work work;
2750};
2751
2752static void delayed_ref_async_start(struct btrfs_work *work)
2753{
2754 struct async_delayed_refs *async;
2755 struct btrfs_trans_handle *trans;
2756 int ret;
2757
2758 async = container_of(work, struct async_delayed_refs, work);
2759
2760 trans = btrfs_join_transaction(async->root);
2761 if (IS_ERR(trans)) {
2762 async->error = PTR_ERR(trans);
2763 goto done;
2764 }
2765
2766 /*
2767 * trans->sync means that when we call end_transaciton, we won't
2768 * wait on delayed refs
2769 */
2770 trans->sync = true;
2771 ret = btrfs_run_delayed_refs(trans, async->root, async->count);
2772 if (ret)
2773 async->error = ret;
2774
2775 ret = btrfs_end_transaction(trans, async->root);
2776 if (ret && !async->error)
2777 async->error = ret;
2778done:
2779 if (async->sync)
2780 complete(&async->wait);
2781 else
2782 kfree(async);
2783}
2784
2785int btrfs_async_run_delayed_refs(struct btrfs_root *root,
2786 unsigned long count, int wait)
2787{
2788 struct async_delayed_refs *async;
2789 int ret;
2790
2791 async = kmalloc(sizeof(*async), GFP_NOFS);
2792 if (!async)
2793 return -ENOMEM;
2794
2795 async->root = root->fs_info->tree_root;
2796 async->count = count;
2797 async->error = 0;
2798 if (wait)
2799 async->sync = 1;
2800 else
2801 async->sync = 0;
2802 init_completion(&async->wait);
2803
Liu Bo9e0af232014-08-15 23:36:53 +08002804 btrfs_init_work(&async->work, btrfs_extent_refs_helper,
2805 delayed_ref_async_start, NULL, NULL);
Chris Masona79b7d42014-05-22 16:18:52 -07002806
2807 btrfs_queue_work(root->fs_info->extent_workers, &async->work);
2808
2809 if (wait) {
2810 wait_for_completion(&async->wait);
2811 ret = async->error;
2812 kfree(async);
2813 return ret;
2814 }
2815 return 0;
2816}
2817
Chris Masonc3e69d52009-03-13 10:17:05 -04002818/*
2819 * this starts processing the delayed reference count updates and
2820 * extent insertions we have queued up so far. count can be
2821 * 0, which means to process everything in the tree at the start
2822 * of the run (but not newly added entries), or it can be some target
2823 * number you'd like to process.
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002824 *
2825 * Returns 0 on success or if called with an aborted transaction
2826 * Returns <0 on error and aborts the transaction
Chris Masonc3e69d52009-03-13 10:17:05 -04002827 */
2828int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2829 struct btrfs_root *root, unsigned long count)
2830{
2831 struct rb_node *node;
2832 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boc46effa2013-10-14 12:59:45 +08002833 struct btrfs_delayed_ref_head *head;
Chris Masonc3e69d52009-03-13 10:17:05 -04002834 int ret;
2835 int run_all = count == (unsigned long)-1;
Filipe Mananad9a05402015-10-03 13:13:13 +01002836 bool can_flush_pending_bgs = trans->can_flush_pending_bgs;
Chris Masonc3e69d52009-03-13 10:17:05 -04002837
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002838 /* We'll clean this up in btrfs_cleanup_transaction */
2839 if (trans->aborted)
2840 return 0;
2841
Chris Masonc3e69d52009-03-13 10:17:05 -04002842 if (root == root->fs_info->extent_root)
2843 root = root->fs_info->tree_root;
2844
2845 delayed_refs = &trans->transaction->delayed_refs;
Liu Bo26455d32014-12-17 16:14:09 +08002846 if (count == 0)
Josef Bacikd7df2c72014-01-23 09:21:38 -05002847 count = atomic_read(&delayed_refs->num_entries) * 2;
Chris Masonbb721702013-01-29 18:44:12 -05002848
Chris Masonc3e69d52009-03-13 10:17:05 -04002849again:
Arne Jansen709c0482011-09-12 12:22:57 +02002850#ifdef SCRAMBLE_DELAYED_REFS
2851 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
2852#endif
Filipe Mananad9a05402015-10-03 13:13:13 +01002853 trans->can_flush_pending_bgs = false;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002854 ret = __btrfs_run_delayed_refs(trans, root, count);
2855 if (ret < 0) {
2856 btrfs_abort_transaction(trans, root, ret);
2857 return ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04002858 }
2859
Chris Mason56bec292009-03-13 10:10:06 -04002860 if (run_all) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002861 if (!list_empty(&trans->new_bgs))
Josef Bacikea658ba2012-09-11 16:57:25 -04002862 btrfs_create_pending_block_groups(trans, root);
Josef Bacikea658ba2012-09-11 16:57:25 -04002863
Josef Bacikd7df2c72014-01-23 09:21:38 -05002864 spin_lock(&delayed_refs->lock);
Liu Boc46effa2013-10-14 12:59:45 +08002865 node = rb_first(&delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002866 if (!node) {
2867 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002868 goto out;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002869 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002870 count = (unsigned long)-1;
Chris Mason56bec292009-03-13 10:10:06 -04002871
2872 while (node) {
Liu Boc46effa2013-10-14 12:59:45 +08002873 head = rb_entry(node, struct btrfs_delayed_ref_head,
2874 href_node);
2875 if (btrfs_delayed_ref_is_head(&head->node)) {
2876 struct btrfs_delayed_ref_node *ref;
Chris Mason56bec292009-03-13 10:10:06 -04002877
Liu Boc46effa2013-10-14 12:59:45 +08002878 ref = &head->node;
Chris Mason56bec292009-03-13 10:10:06 -04002879 atomic_inc(&ref->refs);
2880
2881 spin_unlock(&delayed_refs->lock);
David Sterba8cc33e52011-05-02 15:29:25 +02002882 /*
2883 * Mutex was contended, block until it's
2884 * released and try again
2885 */
Chris Mason56bec292009-03-13 10:10:06 -04002886 mutex_lock(&head->mutex);
2887 mutex_unlock(&head->mutex);
2888
2889 btrfs_put_delayed_ref(ref);
Chris Mason1887be62009-03-13 10:11:24 -04002890 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002891 goto again;
Liu Boc46effa2013-10-14 12:59:45 +08002892 } else {
2893 WARN_ON(1);
Chris Mason56bec292009-03-13 10:10:06 -04002894 }
2895 node = rb_next(node);
2896 }
2897 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002898 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002899 goto again;
2900 }
Chris Mason54aa1f42007-06-22 14:16:25 -04002901out:
Jan Schmidtedf39272012-06-28 18:04:55 +02002902 assert_qgroups_uptodate(trans);
Filipe Mananad9a05402015-10-03 13:13:13 +01002903 trans->can_flush_pending_bgs = can_flush_pending_bgs;
Chris Masona28ec192007-03-06 20:08:01 -05002904 return 0;
2905}
2906
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002907int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
2908 struct btrfs_root *root,
2909 u64 bytenr, u64 num_bytes, u64 flags,
Josef Bacikb1c79e02013-05-09 13:49:30 -04002910 int level, int is_data)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002911{
2912 struct btrfs_delayed_extent_op *extent_op;
2913 int ret;
2914
Miao Xie78a61842012-11-21 02:21:28 +00002915 extent_op = btrfs_alloc_delayed_extent_op();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002916 if (!extent_op)
2917 return -ENOMEM;
2918
2919 extent_op->flags_to_set = flags;
2920 extent_op->update_flags = 1;
2921 extent_op->update_key = 0;
2922 extent_op->is_data = is_data ? 1 : 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002923 extent_op->level = level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002924
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002925 ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr,
2926 num_bytes, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002927 if (ret)
Miao Xie78a61842012-11-21 02:21:28 +00002928 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002929 return ret;
2930}
2931
2932static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
2933 struct btrfs_root *root,
2934 struct btrfs_path *path,
2935 u64 objectid, u64 offset, u64 bytenr)
2936{
2937 struct btrfs_delayed_ref_head *head;
2938 struct btrfs_delayed_ref_node *ref;
2939 struct btrfs_delayed_data_ref *data_ref;
2940 struct btrfs_delayed_ref_root *delayed_refs;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002941 int ret = 0;
2942
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002943 delayed_refs = &trans->transaction->delayed_refs;
2944 spin_lock(&delayed_refs->lock);
2945 head = btrfs_find_delayed_ref_head(trans, bytenr);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002946 if (!head) {
2947 spin_unlock(&delayed_refs->lock);
2948 return 0;
2949 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002950
2951 if (!mutex_trylock(&head->mutex)) {
2952 atomic_inc(&head->node.refs);
2953 spin_unlock(&delayed_refs->lock);
2954
David Sterbab3b4aa72011-04-21 01:20:15 +02002955 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002956
David Sterba8cc33e52011-05-02 15:29:25 +02002957 /*
2958 * Mutex was contended, block until it's released and let
2959 * caller try again
2960 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002961 mutex_lock(&head->mutex);
2962 mutex_unlock(&head->mutex);
2963 btrfs_put_delayed_ref(&head->node);
2964 return -EAGAIN;
2965 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002966 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002967
2968 spin_lock(&head->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002969 list_for_each_entry(ref, &head->ref_list, list) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002970 /* If it's a shared ref we know a cross reference exists */
2971 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) {
2972 ret = 1;
2973 break;
2974 }
2975
2976 data_ref = btrfs_delayed_node_to_data_ref(ref);
2977
2978 /*
2979 * If our ref doesn't match the one we're currently looking at
2980 * then we have a cross reference.
2981 */
2982 if (data_ref->root != root->root_key.objectid ||
2983 data_ref->objectid != objectid ||
2984 data_ref->offset != offset) {
2985 ret = 1;
2986 break;
2987 }
2988 }
2989 spin_unlock(&head->lock);
2990 mutex_unlock(&head->mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002991 return ret;
2992}
2993
2994static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
2995 struct btrfs_root *root,
2996 struct btrfs_path *path,
2997 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05002998{
2999 struct btrfs_root *extent_root = root->fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04003000 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003001 struct btrfs_extent_data_ref *ref;
3002 struct btrfs_extent_inline_ref *iref;
3003 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05003004 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003005 u32 item_size;
Yan Zhengf321e492008-07-30 09:26:11 -04003006 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05003007
Chris Masonbe20aa92007-12-17 20:14:01 -05003008 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04003009 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04003010 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05003011
Chris Masonbe20aa92007-12-17 20:14:01 -05003012 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
3013 if (ret < 0)
3014 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003015 BUG_ON(ret == 0); /* Corruption */
Yan Zheng80ff3852008-10-30 14:20:02 -04003016
3017 ret = -ENOENT;
3018 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04003019 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003020
Zheng Yan31840ae2008-09-23 13:14:14 -04003021 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04003022 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003023 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05003024
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003025 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05003026 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003027
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003028 ret = 1;
3029 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
3030#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
3031 if (item_size < sizeof(*ei)) {
3032 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
3033 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003034 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003035#endif
3036 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
3037
3038 if (item_size != sizeof(*ei) +
3039 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
3040 goto out;
3041
3042 if (btrfs_extent_generation(leaf, ei) <=
3043 btrfs_root_last_snapshot(&root->root_item))
3044 goto out;
3045
3046 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
3047 if (btrfs_extent_inline_ref_type(leaf, iref) !=
3048 BTRFS_EXTENT_DATA_REF_KEY)
3049 goto out;
3050
3051 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
3052 if (btrfs_extent_refs(leaf, ei) !=
3053 btrfs_extent_data_ref_count(leaf, ref) ||
3054 btrfs_extent_data_ref_root(leaf, ref) !=
3055 root->root_key.objectid ||
3056 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
3057 btrfs_extent_data_ref_offset(leaf, ref) != offset)
3058 goto out;
3059
Yan Zhengf321e492008-07-30 09:26:11 -04003060 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05003061out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003062 return ret;
3063}
3064
3065int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
3066 struct btrfs_root *root,
3067 u64 objectid, u64 offset, u64 bytenr)
3068{
3069 struct btrfs_path *path;
3070 int ret;
3071 int ret2;
3072
3073 path = btrfs_alloc_path();
3074 if (!path)
3075 return -ENOENT;
3076
3077 do {
3078 ret = check_committed_ref(trans, root, path, objectid,
3079 offset, bytenr);
3080 if (ret && ret != -ENOENT)
3081 goto out;
3082
3083 ret2 = check_delayed_ref(trans, root, path, objectid,
3084 offset, bytenr);
3085 } while (ret2 == -EAGAIN);
3086
3087 if (ret2 && ret2 != -ENOENT) {
3088 ret = ret2;
3089 goto out;
3090 }
3091
3092 if (ret != -ENOENT || ret2 != -ENOENT)
3093 ret = 0;
3094out:
Yan Zhengf321e492008-07-30 09:26:11 -04003095 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003096 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3097 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04003098 return ret;
3099}
3100
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003101static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05003102 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003103 struct extent_buffer *buf,
Josef Bacike339a6b2014-07-02 10:54:25 -07003104 int full_backref, int inc)
Zheng Yan31840ae2008-09-23 13:14:14 -04003105{
3106 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003107 u64 num_bytes;
3108 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003109 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04003110 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04003111 struct btrfs_key key;
3112 struct btrfs_file_extent_item *fi;
3113 int i;
3114 int level;
3115 int ret = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04003116 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003117 u64, u64, u64, u64, u64, u64, int);
Zheng Yan31840ae2008-09-23 13:14:14 -04003118
David Sterbafccb84c2014-09-29 23:53:21 +02003119
3120 if (btrfs_test_is_dummy_root(root))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04003121 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02003122
Zheng Yan31840ae2008-09-23 13:14:14 -04003123 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04003124 nritems = btrfs_header_nritems(buf);
3125 level = btrfs_header_level(buf);
3126
Miao Xie27cdeb72014-04-02 19:51:05 +08003127 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003128 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05003129
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003130 if (inc)
3131 process_func = btrfs_inc_extent_ref;
3132 else
3133 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003134
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003135 if (full_backref)
3136 parent = buf->start;
3137 else
3138 parent = 0;
3139
Zheng Yan31840ae2008-09-23 13:14:14 -04003140 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04003141 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003142 btrfs_item_key_to_cpu(buf, &key, i);
David Sterba962a2982014-06-04 18:41:45 +02003143 if (key.type != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04003144 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003145 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04003146 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003147 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04003148 BTRFS_FILE_EXTENT_INLINE)
3149 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003150 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3151 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04003152 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003153
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003154 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3155 key.offset -= btrfs_file_extent_offset(buf, fi);
3156 ret = process_func(trans, root, bytenr, num_bytes,
3157 parent, ref_root, key.objectid,
Josef Bacike339a6b2014-07-02 10:54:25 -07003158 key.offset, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003159 if (ret)
3160 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05003161 } else {
3162 bytenr = btrfs_node_blockptr(buf, i);
David Sterba707e8a02014-06-04 19:22:26 +02003163 num_bytes = root->nodesize;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003164 ret = process_func(trans, root, bytenr, num_bytes,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003165 parent, ref_root, level - 1, 0,
Josef Bacike339a6b2014-07-02 10:54:25 -07003166 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003167 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04003168 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04003169 }
3170 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003171 return 0;
3172fail:
Chris Mason54aa1f42007-06-22 14:16:25 -04003173 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05003174}
3175
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003176int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003177 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04003178{
Josef Bacike339a6b2014-07-02 10:54:25 -07003179 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003180}
Zheng Yan31840ae2008-09-23 13:14:14 -04003181
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003182int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003183 struct extent_buffer *buf, int full_backref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003184{
Josef Bacike339a6b2014-07-02 10:54:25 -07003185 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003186}
3187
Chris Mason9078a3e2007-04-26 16:46:15 -04003188static int write_one_cache_group(struct btrfs_trans_handle *trans,
3189 struct btrfs_root *root,
3190 struct btrfs_path *path,
3191 struct btrfs_block_group_cache *cache)
3192{
3193 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003194 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003195 unsigned long bi;
3196 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04003197
Chris Mason9078a3e2007-04-26 16:46:15 -04003198 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003199 if (ret) {
3200 if (ret > 0)
3201 ret = -ENOENT;
Chris Mason54aa1f42007-06-22 14:16:25 -04003202 goto fail;
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003203 }
Chris Mason5f39d392007-10-15 16:14:19 -04003204
3205 leaf = path->nodes[0];
3206 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3207 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3208 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -04003209fail:
Filipe Manana24b89d02015-04-25 18:31:05 +01003210 btrfs_release_path(path);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003211 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003212
3213}
3214
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003215static struct btrfs_block_group_cache *
3216next_block_group(struct btrfs_root *root,
3217 struct btrfs_block_group_cache *cache)
3218{
3219 struct rb_node *node;
Filipe Manana292cbd52014-11-26 15:28:50 +00003220
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003221 spin_lock(&root->fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003222
3223 /* If our block group was removed, we need a full search. */
3224 if (RB_EMPTY_NODE(&cache->cache_node)) {
3225 const u64 next_bytenr = cache->key.objectid + cache->key.offset;
3226
3227 spin_unlock(&root->fs_info->block_group_cache_lock);
3228 btrfs_put_block_group(cache);
3229 cache = btrfs_lookup_first_block_group(root->fs_info,
3230 next_bytenr);
3231 return cache;
3232 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003233 node = rb_next(&cache->cache_node);
3234 btrfs_put_block_group(cache);
3235 if (node) {
3236 cache = rb_entry(node, struct btrfs_block_group_cache,
3237 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00003238 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003239 } else
3240 cache = NULL;
3241 spin_unlock(&root->fs_info->block_group_cache_lock);
3242 return cache;
3243}
3244
Josef Bacik0af3d002010-06-21 14:48:16 -04003245static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3246 struct btrfs_trans_handle *trans,
3247 struct btrfs_path *path)
3248{
3249 struct btrfs_root *root = block_group->fs_info->tree_root;
3250 struct inode *inode = NULL;
3251 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05003252 int dcs = BTRFS_DC_ERROR;
David Sterbaf8c269d2015-01-16 17:21:12 +01003253 u64 num_pages = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003254 int retries = 0;
3255 int ret = 0;
3256
3257 /*
3258 * If this block group is smaller than 100 megs don't bother caching the
3259 * block group.
3260 */
3261 if (block_group->key.offset < (100 * 1024 * 1024)) {
3262 spin_lock(&block_group->lock);
3263 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3264 spin_unlock(&block_group->lock);
3265 return 0;
3266 }
3267
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003268 if (trans->aborted)
3269 return 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003270again:
3271 inode = lookup_free_space_inode(root, block_group, path);
3272 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3273 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02003274 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003275 goto out;
3276 }
3277
3278 if (IS_ERR(inode)) {
3279 BUG_ON(retries);
3280 retries++;
3281
3282 if (block_group->ro)
3283 goto out_free;
3284
3285 ret = create_free_space_inode(root, trans, block_group, path);
3286 if (ret)
3287 goto out_free;
3288 goto again;
3289 }
3290
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003291 /* We've already setup this transaction, go ahead and exit */
3292 if (block_group->cache_generation == trans->transid &&
3293 i_size_read(inode)) {
3294 dcs = BTRFS_DC_SETUP;
3295 goto out_put;
3296 }
3297
Josef Bacik0af3d002010-06-21 14:48:16 -04003298 /*
3299 * We want to set the generation to 0, that way if anything goes wrong
3300 * from here on out we know not to trust this cache when we load up next
3301 * time.
3302 */
3303 BTRFS_I(inode)->generation = 0;
3304 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003305 if (ret) {
3306 /*
3307 * So theoretically we could recover from this, simply set the
3308 * super cache generation to 0 so we know to invalidate the
3309 * cache, but then we'd have to keep track of the block groups
3310 * that fail this way so we know we _have_ to reset this cache
3311 * before the next commit or risk reading stale cache. So to
3312 * limit our exposure to horrible edge cases lets just abort the
3313 * transaction, this only happens in really bad situations
3314 * anyway.
3315 */
3316 btrfs_abort_transaction(trans, root, ret);
3317 goto out_put;
3318 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003319 WARN_ON(ret);
3320
3321 if (i_size_read(inode) > 0) {
Miao Xie7b61cd92013-05-13 13:55:09 +00003322 ret = btrfs_check_trunc_cache_free_space(root,
3323 &root->fs_info->global_block_rsv);
3324 if (ret)
3325 goto out_put;
3326
Chris Mason1bbc6212015-04-06 12:46:08 -07003327 ret = btrfs_truncate_free_space_cache(root, trans, NULL, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003328 if (ret)
3329 goto out_put;
3330 }
3331
3332 spin_lock(&block_group->lock);
Liu Bocf7c1ef2012-07-06 03:31:34 -06003333 if (block_group->cached != BTRFS_CACHE_FINISHED ||
Chris Masone4c88f02015-04-18 05:22:48 -07003334 !btrfs_test_opt(root, SPACE_CACHE)) {
Liu Bocf7c1ef2012-07-06 03:31:34 -06003335 /*
3336 * don't bother trying to write stuff out _if_
3337 * a) we're not cached,
3338 * b) we're with nospace_cache mount option.
3339 */
Josef Bacik2b209822010-12-03 13:17:53 -05003340 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04003341 spin_unlock(&block_group->lock);
3342 goto out_put;
3343 }
3344 spin_unlock(&block_group->lock);
3345
Josef Bacik6fc823b2012-08-06 13:46:38 -06003346 /*
3347 * Try to preallocate enough space based on how big the block group is.
3348 * Keep in mind this has to include any pinned space which could end up
3349 * taking up quite a bit since it's not folded into the other space
3350 * cache.
3351 */
David Sterbaf8c269d2015-01-16 17:21:12 +01003352 num_pages = div_u64(block_group->key.offset, 256 * 1024 * 1024);
Josef Bacik0af3d002010-06-21 14:48:16 -04003353 if (!num_pages)
3354 num_pages = 1;
3355
Josef Bacik0af3d002010-06-21 14:48:16 -04003356 num_pages *= 16;
3357 num_pages *= PAGE_CACHE_SIZE;
3358
Dongsheng Yange2d1f922015-02-06 10:26:52 -05003359 ret = btrfs_check_data_free_space(inode, num_pages, num_pages);
Josef Bacik0af3d002010-06-21 14:48:16 -04003360 if (ret)
3361 goto out_put;
3362
3363 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3364 num_pages, num_pages,
3365 &alloc_hint);
Josef Bacik2b209822010-12-03 13:17:53 -05003366 if (!ret)
3367 dcs = BTRFS_DC_SETUP;
Josef Bacik0af3d002010-06-21 14:48:16 -04003368 btrfs_free_reserved_data_space(inode, num_pages);
Josef Bacikc09544e2011-08-30 10:19:10 -04003369
Josef Bacik0af3d002010-06-21 14:48:16 -04003370out_put:
3371 iput(inode);
3372out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02003373 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003374out:
3375 spin_lock(&block_group->lock);
Josef Bacike65cbb92011-12-13 16:04:54 -05003376 if (!ret && dcs == BTRFS_DC_SETUP)
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003377 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05003378 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04003379 spin_unlock(&block_group->lock);
3380
3381 return ret;
3382}
3383
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003384int btrfs_setup_space_cache(struct btrfs_trans_handle *trans,
3385 struct btrfs_root *root)
3386{
3387 struct btrfs_block_group_cache *cache, *tmp;
3388 struct btrfs_transaction *cur_trans = trans->transaction;
3389 struct btrfs_path *path;
3390
3391 if (list_empty(&cur_trans->dirty_bgs) ||
3392 !btrfs_test_opt(root, SPACE_CACHE))
3393 return 0;
3394
3395 path = btrfs_alloc_path();
3396 if (!path)
3397 return -ENOMEM;
3398
3399 /* Could add new block groups, use _safe just in case */
3400 list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs,
3401 dirty_list) {
3402 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3403 cache_save_setup(cache, trans, path);
3404 }
3405
3406 btrfs_free_path(path);
3407 return 0;
3408}
3409
Chris Mason1bbc6212015-04-06 12:46:08 -07003410/*
3411 * transaction commit does final block group cache writeback during a
3412 * critical section where nothing is allowed to change the FS. This is
3413 * required in order for the cache to actually match the block group,
3414 * but can introduce a lot of latency into the commit.
3415 *
3416 * So, btrfs_start_dirty_block_groups is here to kick off block group
3417 * cache IO. There's a chance we'll have to redo some of it if the
3418 * block group changes again during the commit, but it greatly reduces
3419 * the commit latency by getting rid of the easy block groups while
3420 * we're still allowing others to join the commit.
3421 */
3422int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans,
3423 struct btrfs_root *root)
3424{
3425 struct btrfs_block_group_cache *cache;
3426 struct btrfs_transaction *cur_trans = trans->transaction;
3427 int ret = 0;
3428 int should_put;
3429 struct btrfs_path *path = NULL;
3430 LIST_HEAD(dirty);
3431 struct list_head *io = &cur_trans->io_bgs;
3432 int num_started = 0;
3433 int loops = 0;
3434
3435 spin_lock(&cur_trans->dirty_bgs_lock);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003436 if (list_empty(&cur_trans->dirty_bgs)) {
3437 spin_unlock(&cur_trans->dirty_bgs_lock);
3438 return 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003439 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003440 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Chris Mason1bbc6212015-04-06 12:46:08 -07003441 spin_unlock(&cur_trans->dirty_bgs_lock);
3442
3443again:
Chris Mason1bbc6212015-04-06 12:46:08 -07003444 /*
3445 * make sure all the block groups on our dirty list actually
3446 * exist
3447 */
3448 btrfs_create_pending_block_groups(trans, root);
3449
3450 if (!path) {
3451 path = btrfs_alloc_path();
3452 if (!path)
3453 return -ENOMEM;
3454 }
3455
Filipe Mananab58d1a92015-04-25 18:29:16 +01003456 /*
3457 * cache_write_mutex is here only to save us from balance or automatic
3458 * removal of empty block groups deleting this block group while we are
3459 * writing out the cache
3460 */
3461 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003462 while (!list_empty(&dirty)) {
3463 cache = list_first_entry(&dirty,
3464 struct btrfs_block_group_cache,
3465 dirty_list);
Chris Mason1bbc6212015-04-06 12:46:08 -07003466 /*
3467 * this can happen if something re-dirties a block
3468 * group that is already under IO. Just wait for it to
3469 * finish and then do it all again
3470 */
3471 if (!list_empty(&cache->io_list)) {
3472 list_del_init(&cache->io_list);
3473 btrfs_wait_cache_io(root, trans, cache,
3474 &cache->io_ctl, path,
3475 cache->key.objectid);
3476 btrfs_put_block_group(cache);
3477 }
3478
3479
3480 /*
3481 * btrfs_wait_cache_io uses the cache->dirty_list to decide
3482 * if it should update the cache_state. Don't delete
3483 * until after we wait.
3484 *
3485 * Since we're not running in the commit critical section
3486 * we need the dirty_bgs_lock to protect from update_block_group
3487 */
3488 spin_lock(&cur_trans->dirty_bgs_lock);
3489 list_del_init(&cache->dirty_list);
3490 spin_unlock(&cur_trans->dirty_bgs_lock);
3491
3492 should_put = 1;
3493
3494 cache_save_setup(cache, trans, path);
3495
3496 if (cache->disk_cache_state == BTRFS_DC_SETUP) {
3497 cache->io_ctl.inode = NULL;
3498 ret = btrfs_write_out_cache(root, trans, cache, path);
3499 if (ret == 0 && cache->io_ctl.inode) {
3500 num_started++;
3501 should_put = 0;
3502
3503 /*
3504 * the cache_write_mutex is protecting
3505 * the io_list
3506 */
3507 list_add_tail(&cache->io_list, io);
3508 } else {
3509 /*
3510 * if we failed to write the cache, the
3511 * generation will be bad and life goes on
3512 */
3513 ret = 0;
3514 }
3515 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003516 if (!ret) {
Chris Mason1bbc6212015-04-06 12:46:08 -07003517 ret = write_one_cache_group(trans, root, path, cache);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003518 /*
3519 * Our block group might still be attached to the list
3520 * of new block groups in the transaction handle of some
3521 * other task (struct btrfs_trans_handle->new_bgs). This
3522 * means its block group item isn't yet in the extent
3523 * tree. If this happens ignore the error, as we will
3524 * try again later in the critical section of the
3525 * transaction commit.
3526 */
3527 if (ret == -ENOENT) {
3528 ret = 0;
3529 spin_lock(&cur_trans->dirty_bgs_lock);
3530 if (list_empty(&cache->dirty_list)) {
3531 list_add_tail(&cache->dirty_list,
3532 &cur_trans->dirty_bgs);
3533 btrfs_get_block_group(cache);
3534 }
3535 spin_unlock(&cur_trans->dirty_bgs_lock);
3536 } else if (ret) {
3537 btrfs_abort_transaction(trans, root, ret);
3538 }
3539 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003540
3541 /* if its not on the io list, we need to put the block group */
3542 if (should_put)
3543 btrfs_put_block_group(cache);
3544
3545 if (ret)
3546 break;
Filipe Mananab58d1a92015-04-25 18:29:16 +01003547
3548 /*
3549 * Avoid blocking other tasks for too long. It might even save
3550 * us from writing caches for block groups that are going to be
3551 * removed.
3552 */
3553 mutex_unlock(&trans->transaction->cache_write_mutex);
3554 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003555 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003556 mutex_unlock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003557
3558 /*
3559 * go through delayed refs for all the stuff we've just kicked off
3560 * and then loop back (just once)
3561 */
3562 ret = btrfs_run_delayed_refs(trans, root, 0);
3563 if (!ret && loops == 0) {
3564 loops++;
3565 spin_lock(&cur_trans->dirty_bgs_lock);
3566 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003567 /*
3568 * dirty_bgs_lock protects us from concurrent block group
3569 * deletes too (not just cache_write_mutex).
3570 */
3571 if (!list_empty(&dirty)) {
3572 spin_unlock(&cur_trans->dirty_bgs_lock);
3573 goto again;
3574 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003575 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Mason1bbc6212015-04-06 12:46:08 -07003576 }
3577
3578 btrfs_free_path(path);
3579 return ret;
3580}
3581
Chris Mason96b51792007-10-15 16:15:19 -04003582int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
3583 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04003584{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003585 struct btrfs_block_group_cache *cache;
Josef Bacikce93ec52014-11-17 15:45:48 -05003586 struct btrfs_transaction *cur_trans = trans->transaction;
3587 int ret = 0;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003588 int should_put;
Chris Mason9078a3e2007-04-26 16:46:15 -04003589 struct btrfs_path *path;
Chris Mason1bbc6212015-04-06 12:46:08 -07003590 struct list_head *io = &cur_trans->io_bgs;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003591 int num_started = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003592
3593 path = btrfs_alloc_path();
3594 if (!path)
3595 return -ENOMEM;
3596
Josef Bacikce93ec52014-11-17 15:45:48 -05003597 /*
3598 * We don't need the lock here since we are protected by the transaction
3599 * commit. We want to do the cache_save_setup first and then run the
3600 * delayed refs to make sure we have the best chance at doing this all
3601 * in one shot.
3602 */
3603 while (!list_empty(&cur_trans->dirty_bgs)) {
3604 cache = list_first_entry(&cur_trans->dirty_bgs,
3605 struct btrfs_block_group_cache,
3606 dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003607
3608 /*
3609 * this can happen if cache_save_setup re-dirties a block
3610 * group that is already under IO. Just wait for it to
3611 * finish and then do it all again
3612 */
3613 if (!list_empty(&cache->io_list)) {
3614 list_del_init(&cache->io_list);
3615 btrfs_wait_cache_io(root, trans, cache,
3616 &cache->io_ctl, path,
3617 cache->key.objectid);
3618 btrfs_put_block_group(cache);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003619 }
3620
Chris Mason1bbc6212015-04-06 12:46:08 -07003621 /*
3622 * don't remove from the dirty list until after we've waited
3623 * on any pending IO
3624 */
Josef Bacikce93ec52014-11-17 15:45:48 -05003625 list_del_init(&cache->dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003626 should_put = 1;
3627
Chris Mason1bbc6212015-04-06 12:46:08 -07003628 cache_save_setup(cache, trans, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003629
Josef Bacikce93ec52014-11-17 15:45:48 -05003630 if (!ret)
Chris Masonc9dc4c62015-04-04 17:14:42 -07003631 ret = btrfs_run_delayed_refs(trans, root, (unsigned long) -1);
3632
3633 if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) {
3634 cache->io_ctl.inode = NULL;
3635 ret = btrfs_write_out_cache(root, trans, cache, path);
3636 if (ret == 0 && cache->io_ctl.inode) {
3637 num_started++;
3638 should_put = 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003639 list_add_tail(&cache->io_list, io);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003640 } else {
3641 /*
3642 * if we failed to write the cache, the
3643 * generation will be bad and life goes on
3644 */
3645 ret = 0;
3646 }
3647 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003648 if (!ret) {
Josef Bacikce93ec52014-11-17 15:45:48 -05003649 ret = write_one_cache_group(trans, root, path, cache);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003650 if (ret)
3651 btrfs_abort_transaction(trans, root, ret);
3652 }
Chris Masonc9dc4c62015-04-04 17:14:42 -07003653
3654 /* if its not on the io list, we need to put the block group */
3655 if (should_put)
3656 btrfs_put_block_group(cache);
3657 }
3658
Chris Mason1bbc6212015-04-06 12:46:08 -07003659 while (!list_empty(io)) {
3660 cache = list_first_entry(io, struct btrfs_block_group_cache,
Chris Masonc9dc4c62015-04-04 17:14:42 -07003661 io_list);
3662 list_del_init(&cache->io_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003663 btrfs_wait_cache_io(root, trans, cache,
3664 &cache->io_ctl, path, cache->key.objectid);
Josef Bacik0af3d002010-06-21 14:48:16 -04003665 btrfs_put_block_group(cache);
3666 }
3667
Chris Mason9078a3e2007-04-26 16:46:15 -04003668 btrfs_free_path(path);
Josef Bacikce93ec52014-11-17 15:45:48 -05003669 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003670}
3671
Yan Zhengd2fb3432008-12-11 16:30:39 -05003672int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
3673{
3674 struct btrfs_block_group_cache *block_group;
3675 int readonly = 0;
3676
3677 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
3678 if (!block_group || block_group->ro)
3679 readonly = 1;
3680 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04003681 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003682 return readonly;
3683}
3684
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003685static const char *alloc_name(u64 flags)
3686{
3687 switch (flags) {
3688 case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA:
3689 return "mixed";
3690 case BTRFS_BLOCK_GROUP_METADATA:
3691 return "metadata";
3692 case BTRFS_BLOCK_GROUP_DATA:
3693 return "data";
3694 case BTRFS_BLOCK_GROUP_SYSTEM:
3695 return "system";
3696 default:
3697 WARN_ON(1);
3698 return "invalid-combination";
3699 };
3700}
3701
Chris Mason593060d2008-03-25 16:50:33 -04003702static int update_space_info(struct btrfs_fs_info *info, u64 flags,
3703 u64 total_bytes, u64 bytes_used,
3704 struct btrfs_space_info **space_info)
3705{
3706 struct btrfs_space_info *found;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003707 int i;
3708 int factor;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003709 int ret;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003710
3711 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
3712 BTRFS_BLOCK_GROUP_RAID10))
3713 factor = 2;
3714 else
3715 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04003716
3717 found = __find_space_info(info, flags);
3718 if (found) {
Josef Bacik25179202008-10-29 14:49:05 -04003719 spin_lock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003720 found->total_bytes += total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003721 found->disk_total += total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003722 found->bytes_used += bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003723 found->disk_used += bytes_used * factor;
Filipe Manana2e6e5182015-05-12 00:28:11 +01003724 if (total_bytes > 0)
3725 found->full = 0;
Josef Bacik25179202008-10-29 14:49:05 -04003726 spin_unlock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003727 *space_info = found;
3728 return 0;
3729 }
Yan Zhengc146afa2008-11-12 14:34:12 -05003730 found = kzalloc(sizeof(*found), GFP_NOFS);
Chris Mason593060d2008-03-25 16:50:33 -04003731 if (!found)
3732 return -ENOMEM;
3733
Tejun Heo908c7f12014-09-08 09:51:29 +09003734 ret = percpu_counter_init(&found->total_bytes_pinned, 0, GFP_KERNEL);
Josef Bacikb150a4f2013-06-19 15:00:04 -04003735 if (ret) {
3736 kfree(found);
3737 return ret;
3738 }
3739
Jeff Mahoneyc1895442014-05-27 12:59:57 -04003740 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
Yan, Zhengb742bb82010-05-16 10:46:24 -04003741 INIT_LIST_HEAD(&found->block_groups[i]);
Josef Bacik80eb2342008-10-29 14:49:05 -04003742 init_rwsem(&found->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003743 spin_lock_init(&found->lock);
Ilya Dryomov52ba6922012-01-16 22:04:47 +02003744 found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
Chris Mason593060d2008-03-25 16:50:33 -04003745 found->total_bytes = total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003746 found->disk_total = total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003747 found->bytes_used = bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003748 found->disk_used = bytes_used * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003749 found->bytes_pinned = 0;
Zheng Yane8569812008-09-26 10:05:48 -04003750 found->bytes_reserved = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003751 found->bytes_readonly = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003752 found->bytes_may_use = 0;
Filipe Manana6af3e3a2015-09-07 10:41:12 +01003753 found->full = 0;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003754 found->force_alloc = CHUNK_ALLOC_NO_FORCE;
Josef Bacik6d741192011-04-11 20:20:11 -04003755 found->chunk_alloc = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003756 found->flush = 0;
3757 init_waitqueue_head(&found->wait);
Josef Bacik633c0aa2014-10-31 09:49:34 -04003758 INIT_LIST_HEAD(&found->ro_bgs);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003759
3760 ret = kobject_init_and_add(&found->kobj, &space_info_ktype,
3761 info->space_info_kobj, "%s",
3762 alloc_name(found->flags));
3763 if (ret) {
3764 kfree(found);
3765 return ret;
3766 }
3767
Chris Mason593060d2008-03-25 16:50:33 -04003768 *space_info = found;
Chris Mason4184ea72009-03-10 12:39:20 -04003769 list_add_rcu(&found->list, &info->space_info);
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003770 if (flags & BTRFS_BLOCK_GROUP_DATA)
3771 info->data_sinfo = found;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003772
3773 return ret;
Chris Mason593060d2008-03-25 16:50:33 -04003774}
3775
Chris Mason8790d502008-04-03 16:29:03 -04003776static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3777{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003778 u64 extra_flags = chunk_to_extended(flags) &
3779 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003780
Miao Xiede98ced2013-01-29 10:13:12 +00003781 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003782 if (flags & BTRFS_BLOCK_GROUP_DATA)
3783 fs_info->avail_data_alloc_bits |= extra_flags;
3784 if (flags & BTRFS_BLOCK_GROUP_METADATA)
3785 fs_info->avail_metadata_alloc_bits |= extra_flags;
3786 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3787 fs_info->avail_system_alloc_bits |= extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003788 write_sequnlock(&fs_info->profiles_lock);
Chris Mason8790d502008-04-03 16:29:03 -04003789}
Chris Mason593060d2008-03-25 16:50:33 -04003790
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003791/*
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003792 * returns target flags in extended format or 0 if restripe for this
3793 * chunk_type is not in progress
Ilya Dryomovc6664b42012-04-12 16:03:56 -04003794 *
3795 * should be called with either volume_mutex or balance_lock held
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003796 */
3797static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
3798{
3799 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3800 u64 target = 0;
3801
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003802 if (!bctl)
3803 return 0;
3804
3805 if (flags & BTRFS_BLOCK_GROUP_DATA &&
3806 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3807 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
3808 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
3809 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3810 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
3811 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
3812 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3813 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
3814 }
3815
3816 return target;
3817}
3818
3819/*
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003820 * @flags: available profiles in extended format (see ctree.h)
3821 *
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003822 * Returns reduced profile in chunk format. If profile changing is in
3823 * progress (either running or paused) picks the target profile (if it's
3824 * already available), otherwise falls back to plain reducing.
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003825 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003826static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04003827{
Miao Xie95669972014-07-24 11:37:14 +08003828 u64 num_devices = root->fs_info->fs_devices->rw_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003829 u64 target;
Zhao Lei9c170b22015-09-15 21:08:08 +08003830 u64 raid_type;
3831 u64 allowed = 0;
Chris Masona061fc82008-05-07 11:43:44 -04003832
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003833 /*
3834 * see if restripe for this chunk_type is in progress, if so
3835 * try to reduce to the target profile
3836 */
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003837 spin_lock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003838 target = get_restripe_target(root->fs_info, flags);
3839 if (target) {
3840 /* pick target profile only if it's already available */
3841 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003842 spin_unlock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003843 return extended_to_chunk(target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003844 }
3845 }
3846 spin_unlock(&root->fs_info->balance_lock);
3847
David Woodhouse53b381b2013-01-29 18:40:14 -05003848 /* First, mask out the RAID levels which aren't possible */
Zhao Lei9c170b22015-09-15 21:08:08 +08003849 for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) {
3850 if (num_devices >= btrfs_raid_array[raid_type].devs_min)
3851 allowed |= btrfs_raid_group[raid_type];
3852 }
3853 allowed &= flags;
Chris Masona061fc82008-05-07 11:43:44 -04003854
Zhao Lei9c170b22015-09-15 21:08:08 +08003855 if (allowed & BTRFS_BLOCK_GROUP_RAID6)
3856 allowed = BTRFS_BLOCK_GROUP_RAID6;
3857 else if (allowed & BTRFS_BLOCK_GROUP_RAID5)
3858 allowed = BTRFS_BLOCK_GROUP_RAID5;
3859 else if (allowed & BTRFS_BLOCK_GROUP_RAID10)
3860 allowed = BTRFS_BLOCK_GROUP_RAID10;
3861 else if (allowed & BTRFS_BLOCK_GROUP_RAID1)
3862 allowed = BTRFS_BLOCK_GROUP_RAID1;
3863 else if (allowed & BTRFS_BLOCK_GROUP_RAID0)
3864 allowed = BTRFS_BLOCK_GROUP_RAID0;
Chris Masonec44a352008-04-28 15:29:52 -04003865
Zhao Lei9c170b22015-09-15 21:08:08 +08003866 flags &= ~BTRFS_BLOCK_GROUP_PROFILE_MASK;
Chris Masonec44a352008-04-28 15:29:52 -04003867
Zhao Lei9c170b22015-09-15 21:08:08 +08003868 return extended_to_chunk(flags | allowed);
Chris Masonec44a352008-04-28 15:29:52 -04003869}
3870
Filipe Mananaf8213bd2014-04-24 15:15:29 +01003871static u64 get_alloc_profile(struct btrfs_root *root, u64 orig_flags)
Josef Bacik6a632092009-02-20 11:00:09 -05003872{
Miao Xiede98ced2013-01-29 10:13:12 +00003873 unsigned seq;
Filipe Mananaf8213bd2014-04-24 15:15:29 +01003874 u64 flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003875
3876 do {
Filipe Mananaf8213bd2014-04-24 15:15:29 +01003877 flags = orig_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003878 seq = read_seqbegin(&root->fs_info->profiles_lock);
3879
3880 if (flags & BTRFS_BLOCK_GROUP_DATA)
3881 flags |= root->fs_info->avail_data_alloc_bits;
3882 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3883 flags |= root->fs_info->avail_system_alloc_bits;
3884 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
3885 flags |= root->fs_info->avail_metadata_alloc_bits;
3886 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02003887
Yan, Zhengb742bb82010-05-16 10:46:24 -04003888 return btrfs_reduce_alloc_profile(root, flags);
3889}
Josef Bacik6a632092009-02-20 11:00:09 -05003890
Miao Xie6d07bce2011-01-05 10:07:31 +00003891u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
Yan, Zhengb742bb82010-05-16 10:46:24 -04003892{
3893 u64 flags;
David Woodhouse53b381b2013-01-29 18:40:14 -05003894 u64 ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003895
Yan, Zhengb742bb82010-05-16 10:46:24 -04003896 if (data)
3897 flags = BTRFS_BLOCK_GROUP_DATA;
3898 else if (root == root->fs_info->chunk_root)
3899 flags = BTRFS_BLOCK_GROUP_SYSTEM;
3900 else
3901 flags = BTRFS_BLOCK_GROUP_METADATA;
3902
David Woodhouse53b381b2013-01-29 18:40:14 -05003903 ret = get_alloc_profile(root, flags);
3904 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003905}
3906
Josef Bacik6a632092009-02-20 11:00:09 -05003907/*
3908 * This will check the space that the inode allocates from to make sure we have
3909 * enough space for bytes.
3910 */
Dongsheng Yange2d1f922015-02-06 10:26:52 -05003911int btrfs_check_data_free_space(struct inode *inode, u64 bytes, u64 write_bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003912{
3913 struct btrfs_space_info *data_sinfo;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003914 struct btrfs_root *root = BTRFS_I(inode)->root;
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003915 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacikab6e24102010-03-19 14:38:13 +00003916 u64 used;
Zhao Lei94b947b2015-02-14 13:23:45 +08003917 int ret = 0;
Zhao Leic99f1b02015-03-02 19:32:20 +08003918 int need_commit = 2;
3919 int have_pinned_space;
Josef Bacik6a632092009-02-20 11:00:09 -05003920
3921 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00003922 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05003923
Miao Xie9dced182013-10-25 17:33:36 +08003924 if (btrfs_is_free_space_inode(inode)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08003925 need_commit = 0;
Miao Xie9dced182013-10-25 17:33:36 +08003926 ASSERT(current->journal_info);
Josef Bacik0af3d002010-06-21 14:48:16 -04003927 }
3928
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003929 data_sinfo = fs_info->data_sinfo;
Chris Mason33b4d472009-09-22 14:45:50 -04003930 if (!data_sinfo)
3931 goto alloc;
3932
Josef Bacik6a632092009-02-20 11:00:09 -05003933again:
3934 /* make sure we have enough space to handle the data first */
3935 spin_lock(&data_sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003936 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
3937 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
3938 data_sinfo->bytes_may_use;
Josef Bacikab6e24102010-03-19 14:38:13 +00003939
3940 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003941 struct btrfs_trans_handle *trans;
3942
Josef Bacik6a632092009-02-20 11:00:09 -05003943 /*
3944 * if we don't have enough free bytes in this space then we need
3945 * to alloc a new chunk.
3946 */
Zhao Leib9fd47c2015-02-09 14:40:20 +08003947 if (!data_sinfo->full) {
Josef Bacik6a632092009-02-20 11:00:09 -05003948 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05003949
Chris Mason0e4f8f82011-04-15 16:05:44 -04003950 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05003951 spin_unlock(&data_sinfo->lock);
Chris Mason33b4d472009-09-22 14:45:50 -04003952alloc:
Josef Bacik6a632092009-02-20 11:00:09 -05003953 alloc_target = btrfs_get_alloc_profile(root, 1);
Miao Xie9dced182013-10-25 17:33:36 +08003954 /*
3955 * It is ugly that we don't call nolock join
3956 * transaction for the free space inode case here.
3957 * But it is safe because we only do the data space
3958 * reservation for the free space cache in the
3959 * transaction context, the common join transaction
3960 * just increase the counter of the current transaction
3961 * handler, doesn't try to acquire the trans_lock of
3962 * the fs.
3963 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003964 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003965 if (IS_ERR(trans))
3966 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05003967
3968 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0e4f8f82011-04-15 16:05:44 -04003969 alloc_target,
3970 CHUNK_ALLOC_NO_FORCE);
Josef Bacik6a632092009-02-20 11:00:09 -05003971 btrfs_end_transaction(trans, root);
Miao Xied52a5b52011-01-05 10:07:18 +00003972 if (ret < 0) {
3973 if (ret != -ENOSPC)
3974 return ret;
Zhao Leic99f1b02015-03-02 19:32:20 +08003975 else {
3976 have_pinned_space = 1;
Miao Xied52a5b52011-01-05 10:07:18 +00003977 goto commit_trans;
Zhao Leic99f1b02015-03-02 19:32:20 +08003978 }
Miao Xied52a5b52011-01-05 10:07:18 +00003979 }
Chris Mason33b4d472009-09-22 14:45:50 -04003980
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003981 if (!data_sinfo)
3982 data_sinfo = fs_info->data_sinfo;
3983
Josef Bacik6a632092009-02-20 11:00:09 -05003984 goto again;
3985 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003986
3987 /*
Josef Bacikb150a4f2013-06-19 15:00:04 -04003988 * If we don't have enough pinned space to deal with this
Zhao Lei94b947b2015-02-14 13:23:45 +08003989 * allocation, and no removed chunk in current transaction,
3990 * don't bother committing the transaction.
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003991 */
Zhao Leic99f1b02015-03-02 19:32:20 +08003992 have_pinned_space = percpu_counter_compare(
3993 &data_sinfo->total_bytes_pinned,
3994 used + bytes - data_sinfo->total_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05003995 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003996
3997 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00003998commit_trans:
Zhao Leic99f1b02015-03-02 19:32:20 +08003999 if (need_commit &&
Josef Bacika4abeea2011-04-11 17:25:13 -04004000 !atomic_read(&root->fs_info->open_ioctl_trans)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004001 need_commit--;
Josef Bacikb150a4f2013-06-19 15:00:04 -04004002
Zhao Lei9a4e7272015-04-09 12:34:43 +08004003 if (need_commit > 0)
4004 btrfs_wait_ordered_roots(fs_info, -1);
4005
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004006 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004007 if (IS_ERR(trans))
4008 return PTR_ERR(trans);
Zhao Leic99f1b02015-03-02 19:32:20 +08004009 if (have_pinned_space >= 0 ||
4010 trans->transaction->have_free_bgs ||
4011 need_commit > 0) {
Zhao Lei94b947b2015-02-14 13:23:45 +08004012 ret = btrfs_commit_transaction(trans, root);
4013 if (ret)
4014 return ret;
Zhao Leid7c15172015-02-26 10:49:20 +08004015 /*
4016 * make sure that all running delayed iput are
4017 * done
4018 */
4019 down_write(&root->fs_info->delayed_iput_sem);
4020 up_write(&root->fs_info->delayed_iput_sem);
Zhao Lei94b947b2015-02-14 13:23:45 +08004021 goto again;
4022 } else {
4023 btrfs_end_transaction(trans, root);
4024 }
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004025 }
4026
Jeff Mahoneycab45e22013-10-16 16:27:01 -04004027 trace_btrfs_space_reservation(root->fs_info,
4028 "space_info:enospc",
4029 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004030 return -ENOSPC;
4031 }
Dongsheng Yange2d1f922015-02-06 10:26:52 -05004032 ret = btrfs_qgroup_reserve(root, write_bytes);
Dongsheng Yang237c0e92014-12-29 06:23:05 -05004033 if (ret)
4034 goto out;
Josef Bacik6a632092009-02-20 11:00:09 -05004035 data_sinfo->bytes_may_use += bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004036 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004037 data_sinfo->flags, bytes, 1);
Dongsheng Yang237c0e92014-12-29 06:23:05 -05004038out:
Josef Bacik6a632092009-02-20 11:00:09 -05004039 spin_unlock(&data_sinfo->lock);
4040
Dongsheng Yang237c0e92014-12-29 06:23:05 -05004041 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004042}
4043
4044/*
Josef Bacikfb25e912011-07-26 17:00:46 -04004045 * Called if we need to clear a data reservation for this inode.
Josef Bacik6a632092009-02-20 11:00:09 -05004046 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004047void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05004048{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004049 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik6a632092009-02-20 11:00:09 -05004050 struct btrfs_space_info *data_sinfo;
4051
4052 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00004053 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05004054
Li Zefanb4d7c3c2012-07-09 20:21:07 -06004055 data_sinfo = root->fs_info->data_sinfo;
Josef Bacik6a632092009-02-20 11:00:09 -05004056 spin_lock(&data_sinfo->lock);
Josef Bacik7ee9e442013-06-21 16:37:03 -04004057 WARN_ON(data_sinfo->bytes_may_use < bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05004058 data_sinfo->bytes_may_use -= bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004059 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004060 data_sinfo->flags, bytes, 0);
Josef Bacik6a632092009-02-20 11:00:09 -05004061 spin_unlock(&data_sinfo->lock);
4062}
4063
Josef Bacik97e728d2009-04-21 17:40:57 -04004064static void force_metadata_allocation(struct btrfs_fs_info *info)
4065{
4066 struct list_head *head = &info->space_info;
4067 struct btrfs_space_info *found;
4068
4069 rcu_read_lock();
4070 list_for_each_entry_rcu(found, head, list) {
4071 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004072 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04004073 }
4074 rcu_read_unlock();
4075}
4076
Miao Xie3c76cd82013-04-25 10:12:38 +00004077static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
4078{
4079 return (global->size << 1);
4080}
4081
Chris Masone5bc2452010-10-26 13:37:56 -04004082static int should_alloc_chunk(struct btrfs_root *root,
Josef Bacik698d0082012-09-12 14:08:47 -04004083 struct btrfs_space_info *sinfo, int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04004084{
Josef Bacikfb25e912011-07-26 17:00:46 -04004085 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zheng424499d2010-05-16 10:46:25 -04004086 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
Chris Mason0e4f8f82011-04-15 16:05:44 -04004087 u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved;
Chris Masone5bc2452010-10-26 13:37:56 -04004088 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04004089
Chris Mason0e4f8f82011-04-15 16:05:44 -04004090 if (force == CHUNK_ALLOC_FORCE)
4091 return 1;
4092
4093 /*
Josef Bacikfb25e912011-07-26 17:00:46 -04004094 * We need to take into account the global rsv because for all intents
4095 * and purposes it's used space. Don't worry about locking the
4096 * global_rsv, it doesn't change except when the transaction commits.
4097 */
Josef Bacik54338b52012-08-14 16:20:52 -04004098 if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA)
Miao Xie3c76cd82013-04-25 10:12:38 +00004099 num_allocated += calc_global_rsv_need_space(global_rsv);
Josef Bacikfb25e912011-07-26 17:00:46 -04004100
4101 /*
Chris Mason0e4f8f82011-04-15 16:05:44 -04004102 * in limited mode, we want to have some free space up to
4103 * about 1% of the FS size.
4104 */
4105 if (force == CHUNK_ALLOC_LIMITED) {
David Sterba6c417612011-04-13 15:41:04 +02004106 thresh = btrfs_super_total_bytes(root->fs_info->super_copy);
Chris Mason0e4f8f82011-04-15 16:05:44 -04004107 thresh = max_t(u64, 64 * 1024 * 1024,
4108 div_factor_fine(thresh, 1));
4109
4110 if (num_bytes - num_allocated < thresh)
4111 return 1;
4112 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004113
Josef Bacik698d0082012-09-12 14:08:47 -04004114 if (num_allocated + 2 * 1024 * 1024 < div_factor(num_bytes, 8))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04004115 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04004116 return 1;
4117}
4118
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004119static u64 get_profile_num_devs(struct btrfs_root *root, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004120{
4121 u64 num_dev;
4122
David Woodhouse53b381b2013-01-29 18:40:14 -05004123 if (type & (BTRFS_BLOCK_GROUP_RAID10 |
4124 BTRFS_BLOCK_GROUP_RAID0 |
4125 BTRFS_BLOCK_GROUP_RAID5 |
4126 BTRFS_BLOCK_GROUP_RAID6))
Liu Bo15d1ff82012-03-29 09:57:44 -04004127 num_dev = root->fs_info->fs_devices->rw_devices;
4128 else if (type & BTRFS_BLOCK_GROUP_RAID1)
4129 num_dev = 2;
4130 else
4131 num_dev = 1; /* DUP or single */
4132
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004133 return num_dev;
Liu Bo15d1ff82012-03-29 09:57:44 -04004134}
4135
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004136/*
4137 * If @is_allocation is true, reserve space in the system space info necessary
4138 * for allocating a chunk, otherwise if it's false, reserve space necessary for
4139 * removing a chunk.
4140 */
4141void check_system_chunk(struct btrfs_trans_handle *trans,
4142 struct btrfs_root *root,
Filipe Manana4617ea32015-06-09 17:48:21 +01004143 u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004144{
4145 struct btrfs_space_info *info;
4146 u64 left;
4147 u64 thresh;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004148 int ret = 0;
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004149 u64 num_devs;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004150
4151 /*
4152 * Needed because we can end up allocating a system chunk and for an
4153 * atomic and race free space reservation in the chunk block reserve.
4154 */
4155 ASSERT(mutex_is_locked(&root->fs_info->chunk_mutex));
Liu Bo15d1ff82012-03-29 09:57:44 -04004156
4157 info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4158 spin_lock(&info->lock);
4159 left = info->total_bytes - info->bytes_used - info->bytes_pinned -
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004160 info->bytes_reserved - info->bytes_readonly -
4161 info->bytes_may_use;
Liu Bo15d1ff82012-03-29 09:57:44 -04004162 spin_unlock(&info->lock);
4163
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004164 num_devs = get_profile_num_devs(root, type);
4165
4166 /* num_devs device items to update and 1 chunk item to add or remove */
Filipe Manana4617ea32015-06-09 17:48:21 +01004167 thresh = btrfs_calc_trunc_metadata_size(root, num_devs) +
4168 btrfs_calc_trans_metadata_size(root, 1);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004169
Liu Bo15d1ff82012-03-29 09:57:44 -04004170 if (left < thresh && btrfs_test_opt(root, ENOSPC_DEBUG)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00004171 btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu",
4172 left, thresh, type);
Liu Bo15d1ff82012-03-29 09:57:44 -04004173 dump_space_info(info, 0, 0);
4174 }
4175
4176 if (left < thresh) {
4177 u64 flags;
4178
4179 flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0);
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004180 /*
4181 * Ignore failure to create system chunk. We might end up not
4182 * needing it, as we might not need to COW all nodes/leafs from
4183 * the paths we visit in the chunk tree (they were already COWed
4184 * or created in the current transaction for example).
4185 */
4186 ret = btrfs_alloc_chunk(trans, root, flags);
4187 }
4188
4189 if (!ret) {
4190 ret = btrfs_block_rsv_add(root->fs_info->chunk_root,
4191 &root->fs_info->chunk_block_rsv,
4192 thresh, BTRFS_RESERVE_NO_FLUSH);
4193 if (!ret)
4194 trans->chunk_bytes_reserved += thresh;
Liu Bo15d1ff82012-03-29 09:57:44 -04004195 }
4196}
4197
Chris Mason6324fbf2008-03-24 15:01:59 -04004198static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Josef Bacik698d0082012-09-12 14:08:47 -04004199 struct btrfs_root *extent_root, u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04004200{
4201 struct btrfs_space_info *space_info;
Josef Bacik97e728d2009-04-21 17:40:57 -04004202 struct btrfs_fs_info *fs_info = extent_root->fs_info;
Josef Bacik6d741192011-04-11 20:20:11 -04004203 int wait_for_alloc = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05004204 int ret = 0;
4205
Josef Bacikc6b305a2012-12-18 09:16:16 -05004206 /* Don't re-enter if we're already allocating a chunk */
4207 if (trans->allocating_chunk)
4208 return -ENOSPC;
4209
Chris Mason6324fbf2008-03-24 15:01:59 -04004210 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04004211 if (!space_info) {
4212 ret = update_space_info(extent_root->fs_info, flags,
4213 0, 0, &space_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004214 BUG_ON(ret); /* -ENOMEM */
Chris Mason593060d2008-03-25 16:50:33 -04004215 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004216 BUG_ON(!space_info); /* Logic error */
Chris Mason6324fbf2008-03-24 15:01:59 -04004217
Josef Bacik6d741192011-04-11 20:20:11 -04004218again:
Josef Bacik25179202008-10-29 14:49:05 -04004219 spin_lock(&space_info->lock);
Miao Xie9e622d62012-01-26 15:01:12 -05004220 if (force < space_info->force_alloc)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004221 force = space_info->force_alloc;
Josef Bacik25179202008-10-29 14:49:05 -04004222 if (space_info->full) {
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01004223 if (should_alloc_chunk(extent_root, space_info, force))
4224 ret = -ENOSPC;
4225 else
4226 ret = 0;
Josef Bacik25179202008-10-29 14:49:05 -04004227 spin_unlock(&space_info->lock);
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01004228 return ret;
Josef Bacik25179202008-10-29 14:49:05 -04004229 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004230
Josef Bacik698d0082012-09-12 14:08:47 -04004231 if (!should_alloc_chunk(extent_root, space_info, force)) {
Josef Bacik25179202008-10-29 14:49:05 -04004232 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04004233 return 0;
4234 } else if (space_info->chunk_alloc) {
4235 wait_for_alloc = 1;
4236 } else {
4237 space_info->chunk_alloc = 1;
Josef Bacik25179202008-10-29 14:49:05 -04004238 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004239
Josef Bacik25179202008-10-29 14:49:05 -04004240 spin_unlock(&space_info->lock);
4241
Josef Bacik6d741192011-04-11 20:20:11 -04004242 mutex_lock(&fs_info->chunk_mutex);
4243
4244 /*
4245 * The chunk_mutex is held throughout the entirety of a chunk
4246 * allocation, so once we've acquired the chunk_mutex we know that the
4247 * other guy is done and we need to recheck and see if we should
4248 * allocate.
4249 */
4250 if (wait_for_alloc) {
4251 mutex_unlock(&fs_info->chunk_mutex);
4252 wait_for_alloc = 0;
4253 goto again;
4254 }
4255
Josef Bacikc6b305a2012-12-18 09:16:16 -05004256 trans->allocating_chunk = true;
4257
Josef Bacik97e728d2009-04-21 17:40:57 -04004258 /*
Josef Bacik67377732010-09-16 16:19:09 -04004259 * If we have mixed data/metadata chunks we want to make sure we keep
4260 * allocating mixed chunks instead of individual chunks.
4261 */
4262 if (btrfs_mixed_space_info(space_info))
4263 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
4264
4265 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04004266 * if we're doing a data chunk, go ahead and make sure that
4267 * we keep a reasonable number of metadata chunks allocated in the
4268 * FS as well.
4269 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04004270 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04004271 fs_info->data_chunk_allocations++;
4272 if (!(fs_info->data_chunk_allocations %
4273 fs_info->metadata_ratio))
4274 force_metadata_allocation(fs_info);
4275 }
4276
Liu Bo15d1ff82012-03-29 09:57:44 -04004277 /*
4278 * Check if we have enough space in SYSTEM chunk because we may need
4279 * to update devices.
4280 */
Filipe Manana4617ea32015-06-09 17:48:21 +01004281 check_system_chunk(trans, extent_root, flags);
Liu Bo15d1ff82012-03-29 09:57:44 -04004282
Yan Zheng2b820322008-11-17 21:11:30 -05004283 ret = btrfs_alloc_chunk(trans, extent_root, flags);
Josef Bacikc6b305a2012-12-18 09:16:16 -05004284 trans->allocating_chunk = false;
Mark Fasheh92b8e8972011-07-12 10:57:59 -07004285
Josef Bacik9ed74f22009-09-11 16:12:44 -04004286 spin_lock(&space_info->lock);
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004287 if (ret < 0 && ret != -ENOSPC)
4288 goto out;
Chris Masond3977122009-01-05 21:25:51 -05004289 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04004290 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04004291 else
4292 ret = 1;
Josef Bacik6d741192011-04-11 20:20:11 -04004293
Chris Mason0e4f8f82011-04-15 16:05:44 -04004294 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004295out:
Josef Bacik6d741192011-04-11 20:20:11 -04004296 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004297 spin_unlock(&space_info->lock);
Dan Carpentera25c75d2012-04-18 09:59:29 +03004298 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana00d80e32015-07-20 14:56:20 +01004299 /*
4300 * When we allocate a new chunk we reserve space in the chunk block
4301 * reserve to make sure we can COW nodes/leafs in the chunk tree or
4302 * add new nodes/leafs to it if we end up needing to do it when
4303 * inserting the chunk item and updating device items as part of the
4304 * second phase of chunk allocation, performed by
4305 * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a
4306 * large number of new block groups to create in our transaction
4307 * handle's new_bgs list to avoid exhausting the chunk block reserve
4308 * in extreme cases - like having a single transaction create many new
4309 * block groups when starting to write out the free space caches of all
4310 * the block groups that were made dirty during the lifetime of the
4311 * transaction.
4312 */
Filipe Mananad9a05402015-10-03 13:13:13 +01004313 if (trans->can_flush_pending_bgs &&
4314 trans->chunk_bytes_reserved >= (2 * 1024 * 1024ull)) {
Filipe Manana00d80e32015-07-20 14:56:20 +01004315 btrfs_create_pending_block_groups(trans, trans->root);
4316 btrfs_trans_release_chunk_metadata(trans);
4317 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04004318 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04004319}
4320
Josef Bacika80c8dc2012-09-06 16:59:33 -04004321static int can_overcommit(struct btrfs_root *root,
4322 struct btrfs_space_info *space_info, u64 bytes,
Miao Xie08e007d2012-10-16 11:33:38 +00004323 enum btrfs_reserve_flush_enum flush)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004324{
Josef Bacik96f1bb52013-01-30 17:02:51 -05004325 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004326 u64 profile = btrfs_get_alloc_profile(root, 0);
Miao Xie3c76cd82013-04-25 10:12:38 +00004327 u64 space_size;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004328 u64 avail;
4329 u64 used;
4330
4331 used = space_info->bytes_used + space_info->bytes_reserved +
Josef Bacik96f1bb52013-01-30 17:02:51 -05004332 space_info->bytes_pinned + space_info->bytes_readonly;
4333
Josef Bacik96f1bb52013-01-30 17:02:51 -05004334 /*
4335 * We only want to allow over committing if we have lots of actual space
4336 * free, but if we don't have enough space to handle the global reserve
4337 * space then we could end up having a real enospc problem when trying
4338 * to allocate a chunk or some other such important allocation.
4339 */
Miao Xie3c76cd82013-04-25 10:12:38 +00004340 spin_lock(&global_rsv->lock);
4341 space_size = calc_global_rsv_need_space(global_rsv);
4342 spin_unlock(&global_rsv->lock);
4343 if (used + space_size >= space_info->total_bytes)
Josef Bacik96f1bb52013-01-30 17:02:51 -05004344 return 0;
4345
4346 used += space_info->bytes_may_use;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004347
4348 spin_lock(&root->fs_info->free_chunk_lock);
4349 avail = root->fs_info->free_chunk_space;
4350 spin_unlock(&root->fs_info->free_chunk_lock);
4351
4352 /*
4353 * If we have dup, raid1 or raid10 then only half of the free
David Woodhouse53b381b2013-01-29 18:40:14 -05004354 * space is actually useable. For raid56, the space info used
4355 * doesn't include the parity drive, so we don't have to
4356 * change the math
Josef Bacika80c8dc2012-09-06 16:59:33 -04004357 */
4358 if (profile & (BTRFS_BLOCK_GROUP_DUP |
4359 BTRFS_BLOCK_GROUP_RAID1 |
4360 BTRFS_BLOCK_GROUP_RAID10))
4361 avail >>= 1;
4362
4363 /*
Miao Xie561c2942012-10-16 11:32:18 +00004364 * If we aren't flushing all things, let us overcommit up to
4365 * 1/2th of the space. If we can flush, don't let us overcommit
4366 * too much, let it overcommit up to 1/8 of the space.
Josef Bacika80c8dc2012-09-06 16:59:33 -04004367 */
Miao Xie08e007d2012-10-16 11:33:38 +00004368 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacik14575ae2013-09-17 10:48:00 -04004369 avail >>= 3;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004370 else
Josef Bacik14575ae2013-09-17 10:48:00 -04004371 avail >>= 1;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004372
Josef Bacik14575ae2013-09-17 10:48:00 -04004373 if (used + bytes < space_info->total_bytes + avail)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004374 return 1;
4375 return 0;
4376}
4377
Eric Sandeen48a3b632013-04-25 20:41:01 +00004378static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root,
Miao Xie6c255e62014-03-06 13:55:01 +08004379 unsigned long nr_pages, int nr_items)
Miao Xieda633a42012-12-20 11:19:09 +00004380{
4381 struct super_block *sb = root->fs_info->sb;
Miao Xieda633a42012-12-20 11:19:09 +00004382
Josef Bacik925a6ef2013-06-20 12:31:27 -04004383 if (down_read_trylock(&sb->s_umount)) {
4384 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
4385 up_read(&sb->s_umount);
4386 } else {
Miao Xieda633a42012-12-20 11:19:09 +00004387 /*
4388 * We needn't worry the filesystem going from r/w to r/o though
4389 * we don't acquire ->s_umount mutex, because the filesystem
4390 * should guarantee the delalloc inodes list be empty after
4391 * the filesystem is readonly(all dirty pages are written to
4392 * the disk).
4393 */
Miao Xie6c255e62014-03-06 13:55:01 +08004394 btrfs_start_delalloc_roots(root->fs_info, 0, nr_items);
Josef Bacik98ad69c2013-04-04 11:55:49 -04004395 if (!current->journal_info)
Miao Xie6c255e62014-03-06 13:55:01 +08004396 btrfs_wait_ordered_roots(root->fs_info, nr_items);
Miao Xieda633a42012-12-20 11:19:09 +00004397 }
4398}
4399
Miao Xie18cd8ea2013-11-04 23:13:22 +08004400static inline int calc_reclaim_items_nr(struct btrfs_root *root, u64 to_reclaim)
4401{
4402 u64 bytes;
4403 int nr;
4404
4405 bytes = btrfs_calc_trans_metadata_size(root, 1);
4406 nr = (int)div64_u64(to_reclaim, bytes);
4407 if (!nr)
4408 nr = 1;
4409 return nr;
4410}
4411
Miao Xiec61a16a2013-11-04 23:13:23 +08004412#define EXTENT_SIZE_PER_ITEM (256 * 1024)
4413
Yan, Zheng5da9d012010-05-16 10:46:25 -04004414/*
4415 * shrink metadata reservation for delalloc
4416 */
Josef Bacikf4c738c2012-07-02 17:10:51 -04004417static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig,
4418 bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04004419{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004420 struct btrfs_block_rsv *block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004421 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04004422 struct btrfs_trans_handle *trans;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004423 u64 delalloc_bytes;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004424 u64 max_reclaim;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004425 long time_left;
Miao Xied3ee29e2013-11-04 23:13:20 +08004426 unsigned long nr_pages;
4427 int loops;
Miao Xieb0244192013-11-04 23:13:25 +08004428 int items;
Miao Xie08e007d2012-10-16 11:33:38 +00004429 enum btrfs_reserve_flush_enum flush;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004430
Miao Xiec61a16a2013-11-04 23:13:23 +08004431 /* Calc the number of the pages we need flush for space reservation */
Miao Xieb0244192013-11-04 23:13:25 +08004432 items = calc_reclaim_items_nr(root, to_reclaim);
4433 to_reclaim = items * EXTENT_SIZE_PER_ITEM;
Miao Xiec61a16a2013-11-04 23:13:23 +08004434
Josef Bacik663350a2011-11-03 22:54:25 -04004435 trans = (struct btrfs_trans_handle *)current->journal_info;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004436 block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004437 space_info = block_rsv->space_info;
Chris Masonbf9022e2010-10-26 13:40:45 -04004438
Miao Xie963d6782013-01-29 10:10:51 +00004439 delalloc_bytes = percpu_counter_sum_positive(
4440 &root->fs_info->delalloc_bytes);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004441 if (delalloc_bytes == 0) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004442 if (trans)
Josef Bacikf4c738c2012-07-02 17:10:51 -04004443 return;
Miao Xie38c135a2013-11-04 23:13:21 +08004444 if (wait_ordered)
Miao Xieb0244192013-11-04 23:13:25 +08004445 btrfs_wait_ordered_roots(root->fs_info, items);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004446 return;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004447 }
4448
Miao Xied3ee29e2013-11-04 23:13:20 +08004449 loops = 0;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004450 while (delalloc_bytes && loops < 3) {
4451 max_reclaim = min(delalloc_bytes, to_reclaim);
4452 nr_pages = max_reclaim >> PAGE_CACHE_SHIFT;
Miao Xie6c255e62014-03-06 13:55:01 +08004453 btrfs_writeback_inodes_sb_nr(root, nr_pages, items);
Josef Bacikdea31f52012-09-06 16:47:00 -04004454 /*
4455 * We need to wait for the async pages to actually start before
4456 * we do anything.
4457 */
Miao Xie9f3a0742013-11-04 23:13:24 +08004458 max_reclaim = atomic_read(&root->fs_info->async_delalloc_pages);
4459 if (!max_reclaim)
4460 goto skip_async;
Josef Bacikdea31f52012-09-06 16:47:00 -04004461
Miao Xie9f3a0742013-11-04 23:13:24 +08004462 if (max_reclaim <= nr_pages)
4463 max_reclaim = 0;
4464 else
4465 max_reclaim -= nr_pages;
4466
4467 wait_event(root->fs_info->async_submit_wait,
4468 atomic_read(&root->fs_info->async_delalloc_pages) <=
4469 (int)max_reclaim);
4470skip_async:
Miao Xie08e007d2012-10-16 11:33:38 +00004471 if (!trans)
4472 flush = BTRFS_RESERVE_FLUSH_ALL;
4473 else
4474 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacik0019f102010-10-15 15:18:40 -04004475 spin_lock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00004476 if (can_overcommit(root, space_info, orig, flush)) {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004477 spin_unlock(&space_info->lock);
4478 break;
4479 }
Josef Bacik0019f102010-10-15 15:18:40 -04004480 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004481
Chris Mason36e39c42011-03-12 07:08:42 -05004482 loops++;
Josef Bacikf104d042011-10-14 13:56:58 -04004483 if (wait_ordered && !trans) {
Miao Xieb0244192013-11-04 23:13:25 +08004484 btrfs_wait_ordered_roots(root->fs_info, items);
Josef Bacikf104d042011-10-14 13:56:58 -04004485 } else {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004486 time_left = schedule_timeout_killable(1);
Josef Bacikf104d042011-10-14 13:56:58 -04004487 if (time_left)
4488 break;
4489 }
Miao Xie963d6782013-01-29 10:10:51 +00004490 delalloc_bytes = percpu_counter_sum_positive(
4491 &root->fs_info->delalloc_bytes);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004492 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04004493}
4494
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004495/**
Josef Bacik663350a2011-11-03 22:54:25 -04004496 * maybe_commit_transaction - possibly commit the transaction if its ok to
4497 * @root - the root we're allocating for
4498 * @bytes - the number of bytes we want to reserve
4499 * @force - force the commit
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004500 *
Josef Bacik663350a2011-11-03 22:54:25 -04004501 * This will check to make sure that committing the transaction will actually
4502 * get us somewhere and then commit the transaction if it does. Otherwise it
4503 * will return -ENOSPC.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004504 */
Josef Bacik663350a2011-11-03 22:54:25 -04004505static int may_commit_transaction(struct btrfs_root *root,
4506 struct btrfs_space_info *space_info,
4507 u64 bytes, int force)
4508{
4509 struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv;
4510 struct btrfs_trans_handle *trans;
4511
4512 trans = (struct btrfs_trans_handle *)current->journal_info;
4513 if (trans)
4514 return -EAGAIN;
4515
4516 if (force)
4517 goto commit;
4518
4519 /* See if there is enough pinned space to make this reservation */
Josef Bacikb150a4f2013-06-19 15:00:04 -04004520 if (percpu_counter_compare(&space_info->total_bytes_pinned,
Miao Xie0424c542014-03-06 13:54:59 +08004521 bytes) >= 0)
Josef Bacik663350a2011-11-03 22:54:25 -04004522 goto commit;
Josef Bacik663350a2011-11-03 22:54:25 -04004523
4524 /*
4525 * See if there is some space in the delayed insertion reservation for
4526 * this reservation.
4527 */
4528 if (space_info != delayed_rsv->space_info)
4529 return -ENOSPC;
4530
4531 spin_lock(&delayed_rsv->lock);
Josef Bacikb150a4f2013-06-19 15:00:04 -04004532 if (percpu_counter_compare(&space_info->total_bytes_pinned,
4533 bytes - delayed_rsv->size) >= 0) {
Josef Bacik663350a2011-11-03 22:54:25 -04004534 spin_unlock(&delayed_rsv->lock);
4535 return -ENOSPC;
4536 }
4537 spin_unlock(&delayed_rsv->lock);
4538
4539commit:
4540 trans = btrfs_join_transaction(root);
4541 if (IS_ERR(trans))
4542 return -ENOSPC;
4543
4544 return btrfs_commit_transaction(trans, root);
4545}
4546
Josef Bacik96c3f432012-06-21 14:05:49 -04004547enum flush_state {
Josef Bacik67b0fd62012-09-24 13:42:00 -04004548 FLUSH_DELAYED_ITEMS_NR = 1,
4549 FLUSH_DELAYED_ITEMS = 2,
4550 FLUSH_DELALLOC = 3,
4551 FLUSH_DELALLOC_WAIT = 4,
Josef Bacikea658ba2012-09-11 16:57:25 -04004552 ALLOC_CHUNK = 5,
4553 COMMIT_TRANS = 6,
Josef Bacik96c3f432012-06-21 14:05:49 -04004554};
4555
4556static int flush_space(struct btrfs_root *root,
4557 struct btrfs_space_info *space_info, u64 num_bytes,
4558 u64 orig_bytes, int state)
4559{
4560 struct btrfs_trans_handle *trans;
4561 int nr;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004562 int ret = 0;
Josef Bacik96c3f432012-06-21 14:05:49 -04004563
4564 switch (state) {
Josef Bacik96c3f432012-06-21 14:05:49 -04004565 case FLUSH_DELAYED_ITEMS_NR:
4566 case FLUSH_DELAYED_ITEMS:
Miao Xie18cd8ea2013-11-04 23:13:22 +08004567 if (state == FLUSH_DELAYED_ITEMS_NR)
4568 nr = calc_reclaim_items_nr(root, num_bytes) * 2;
4569 else
Josef Bacik96c3f432012-06-21 14:05:49 -04004570 nr = -1;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004571
Josef Bacik96c3f432012-06-21 14:05:49 -04004572 trans = btrfs_join_transaction(root);
4573 if (IS_ERR(trans)) {
4574 ret = PTR_ERR(trans);
4575 break;
4576 }
4577 ret = btrfs_run_delayed_items_nr(trans, root, nr);
4578 btrfs_end_transaction(trans, root);
4579 break;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004580 case FLUSH_DELALLOC:
4581 case FLUSH_DELALLOC_WAIT:
Miao Xie24af7dd2014-03-06 13:55:00 +08004582 shrink_delalloc(root, num_bytes * 2, orig_bytes,
Josef Bacik67b0fd62012-09-24 13:42:00 -04004583 state == FLUSH_DELALLOC_WAIT);
4584 break;
Josef Bacikea658ba2012-09-11 16:57:25 -04004585 case ALLOC_CHUNK:
4586 trans = btrfs_join_transaction(root);
4587 if (IS_ERR(trans)) {
4588 ret = PTR_ERR(trans);
4589 break;
4590 }
4591 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Josef Bacikea658ba2012-09-11 16:57:25 -04004592 btrfs_get_alloc_profile(root, 0),
4593 CHUNK_ALLOC_NO_FORCE);
4594 btrfs_end_transaction(trans, root);
4595 if (ret == -ENOSPC)
4596 ret = 0;
4597 break;
Josef Bacik96c3f432012-06-21 14:05:49 -04004598 case COMMIT_TRANS:
4599 ret = may_commit_transaction(root, space_info, orig_bytes, 0);
4600 break;
4601 default:
4602 ret = -ENOSPC;
4603 break;
4604 }
4605
4606 return ret;
4607}
Miao Xie21c7e752014-05-13 17:29:04 -07004608
4609static inline u64
4610btrfs_calc_reclaim_metadata_size(struct btrfs_root *root,
4611 struct btrfs_space_info *space_info)
4612{
4613 u64 used;
4614 u64 expected;
4615 u64 to_reclaim;
4616
4617 to_reclaim = min_t(u64, num_online_cpus() * 1024 * 1024,
4618 16 * 1024 * 1024);
4619 spin_lock(&space_info->lock);
4620 if (can_overcommit(root, space_info, to_reclaim,
4621 BTRFS_RESERVE_FLUSH_ALL)) {
4622 to_reclaim = 0;
4623 goto out;
4624 }
4625
4626 used = space_info->bytes_used + space_info->bytes_reserved +
4627 space_info->bytes_pinned + space_info->bytes_readonly +
4628 space_info->bytes_may_use;
4629 if (can_overcommit(root, space_info, 1024 * 1024,
4630 BTRFS_RESERVE_FLUSH_ALL))
4631 expected = div_factor_fine(space_info->total_bytes, 95);
4632 else
4633 expected = div_factor_fine(space_info->total_bytes, 90);
4634
4635 if (used > expected)
4636 to_reclaim = used - expected;
4637 else
4638 to_reclaim = 0;
4639 to_reclaim = min(to_reclaim, space_info->bytes_may_use +
4640 space_info->bytes_reserved);
4641out:
4642 spin_unlock(&space_info->lock);
4643
4644 return to_reclaim;
4645}
4646
4647static inline int need_do_async_reclaim(struct btrfs_space_info *space_info,
4648 struct btrfs_fs_info *fs_info, u64 used)
4649{
Josef Bacik365c5312015-02-18 13:58:15 -08004650 u64 thresh = div_factor_fine(space_info->total_bytes, 98);
4651
4652 /* If we're just plain full then async reclaim just slows us down. */
4653 if (space_info->bytes_used >= thresh)
4654 return 0;
4655
4656 return (used >= thresh && !btrfs_fs_closing(fs_info) &&
Miao Xie21c7e752014-05-13 17:29:04 -07004657 !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state));
4658}
4659
4660static int btrfs_need_do_async_reclaim(struct btrfs_space_info *space_info,
Liu Bo25ce4592014-09-10 12:58:50 +08004661 struct btrfs_fs_info *fs_info,
4662 int flush_state)
Miao Xie21c7e752014-05-13 17:29:04 -07004663{
4664 u64 used;
4665
4666 spin_lock(&space_info->lock);
Liu Bo25ce4592014-09-10 12:58:50 +08004667 /*
4668 * We run out of space and have not got any free space via flush_space,
4669 * so don't bother doing async reclaim.
4670 */
4671 if (flush_state > COMMIT_TRANS && space_info->full) {
4672 spin_unlock(&space_info->lock);
4673 return 0;
4674 }
4675
Miao Xie21c7e752014-05-13 17:29:04 -07004676 used = space_info->bytes_used + space_info->bytes_reserved +
4677 space_info->bytes_pinned + space_info->bytes_readonly +
4678 space_info->bytes_may_use;
4679 if (need_do_async_reclaim(space_info, fs_info, used)) {
4680 spin_unlock(&space_info->lock);
4681 return 1;
4682 }
4683 spin_unlock(&space_info->lock);
4684
4685 return 0;
4686}
4687
4688static void btrfs_async_reclaim_metadata_space(struct work_struct *work)
4689{
4690 struct btrfs_fs_info *fs_info;
4691 struct btrfs_space_info *space_info;
4692 u64 to_reclaim;
4693 int flush_state;
4694
4695 fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work);
4696 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4697
4698 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root,
4699 space_info);
4700 if (!to_reclaim)
4701 return;
4702
4703 flush_state = FLUSH_DELAYED_ITEMS_NR;
4704 do {
4705 flush_space(fs_info->fs_root, space_info, to_reclaim,
4706 to_reclaim, flush_state);
4707 flush_state++;
Liu Bo25ce4592014-09-10 12:58:50 +08004708 if (!btrfs_need_do_async_reclaim(space_info, fs_info,
4709 flush_state))
Miao Xie21c7e752014-05-13 17:29:04 -07004710 return;
Josef Bacik365c5312015-02-18 13:58:15 -08004711 } while (flush_state < COMMIT_TRANS);
Miao Xie21c7e752014-05-13 17:29:04 -07004712}
4713
4714void btrfs_init_async_reclaim_work(struct work_struct *work)
4715{
4716 INIT_WORK(work, btrfs_async_reclaim_metadata_space);
4717}
4718
Josef Bacik663350a2011-11-03 22:54:25 -04004719/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004720 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
4721 * @root - the root we're allocating for
4722 * @block_rsv - the block_rsv we're allocating for
4723 * @orig_bytes - the number of bytes we want
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04004724 * @flush - whether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004725 *
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004726 * This will reserve orgi_bytes number of bytes from the space info associated
4727 * with the block_rsv. If there is not enough space it will make an attempt to
4728 * flush out space to make room. It will do this by flushing delalloc if
4729 * possible or committing the transaction. If flush is 0 then no attempts to
4730 * regain reservations will be made and this will fail if there is not enough
4731 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004732 */
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004733static int reserve_metadata_bytes(struct btrfs_root *root,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004734 struct btrfs_block_rsv *block_rsv,
Miao Xie08e007d2012-10-16 11:33:38 +00004735 u64 orig_bytes,
4736 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004737{
4738 struct btrfs_space_info *space_info = block_rsv->space_info;
Josef Bacik2bf64752011-09-26 17:12:22 -04004739 u64 used;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004740 u64 num_bytes = orig_bytes;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004741 int flush_state = FLUSH_DELAYED_ITEMS_NR;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004742 int ret = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004743 bool flushing = false;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004744
4745again:
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004746 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004747 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004748 /*
Miao Xie08e007d2012-10-16 11:33:38 +00004749 * We only want to wait if somebody other than us is flushing and we
4750 * are actually allowed to flush all things.
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004751 */
Miao Xie08e007d2012-10-16 11:33:38 +00004752 while (flush == BTRFS_RESERVE_FLUSH_ALL && !flushing &&
4753 space_info->flush) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004754 spin_unlock(&space_info->lock);
4755 /*
4756 * If we have a trans handle we can't wait because the flusher
4757 * may have to commit the transaction, which would mean we would
4758 * deadlock since we are waiting for the flusher to finish, but
4759 * hold the current transaction open.
4760 */
Josef Bacik663350a2011-11-03 22:54:25 -04004761 if (current->journal_info)
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004762 return -EAGAIN;
Arne Jansenb9688bb2012-04-18 10:27:16 +02004763 ret = wait_event_killable(space_info->wait, !space_info->flush);
4764 /* Must have been killed, return */
4765 if (ret)
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004766 return -EINTR;
4767
4768 spin_lock(&space_info->lock);
4769 }
4770
4771 ret = -ENOSPC;
Josef Bacik2bf64752011-09-26 17:12:22 -04004772 used = space_info->bytes_used + space_info->bytes_reserved +
4773 space_info->bytes_pinned + space_info->bytes_readonly +
4774 space_info->bytes_may_use;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004775
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004776 /*
4777 * The idea here is that we've not already over-reserved the block group
4778 * then we can go ahead and save our reservation first and then start
4779 * flushing if we need to. Otherwise if we've already overcommitted
4780 * lets start flushing stuff first and then come back and try to make
4781 * our reservation.
4782 */
Josef Bacik2bf64752011-09-26 17:12:22 -04004783 if (used <= space_info->total_bytes) {
4784 if (used + orig_bytes <= space_info->total_bytes) {
Josef Bacikfb25e912011-07-26 17:00:46 -04004785 space_info->bytes_may_use += orig_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004786 trace_btrfs_space_reservation(root->fs_info,
Liu Bo2bcc0322012-03-29 09:57:44 -04004787 "space_info", space_info->flags, orig_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004788 ret = 0;
4789 } else {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004790 /*
4791 * Ok set num_bytes to orig_bytes since we aren't
4792 * overocmmitted, this way we only try and reclaim what
4793 * we need.
4794 */
4795 num_bytes = orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004796 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004797 } else {
4798 /*
4799 * Ok we're over committed, set num_bytes to the overcommitted
4800 * amount plus the amount of bytes that we need for this
4801 * reservation.
4802 */
Josef Bacik2bf64752011-09-26 17:12:22 -04004803 num_bytes = used - space_info->total_bytes +
Josef Bacik96c3f432012-06-21 14:05:49 -04004804 (orig_bytes * 2);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004805 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004806
Josef Bacik44734ed2012-09-28 16:04:19 -04004807 if (ret && can_overcommit(root, space_info, orig_bytes, flush)) {
4808 space_info->bytes_may_use += orig_bytes;
4809 trace_btrfs_space_reservation(root->fs_info, "space_info",
4810 space_info->flags, orig_bytes,
4811 1);
4812 ret = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04004813 }
4814
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004815 /*
4816 * Couldn't make our reservation, save our place so while we're trying
4817 * to reclaim space we can actually use it instead of somebody else
4818 * stealing it from us.
Miao Xie08e007d2012-10-16 11:33:38 +00004819 *
4820 * We make the other tasks wait for the flush only when we can flush
4821 * all things.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004822 */
Josef Bacik72bcd992012-12-18 15:16:34 -05004823 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004824 flushing = true;
4825 space_info->flush = 1;
Miao Xie21c7e752014-05-13 17:29:04 -07004826 } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
4827 used += orig_bytes;
Josef Bacikf6acfd52014-09-18 11:27:17 -04004828 /*
4829 * We will do the space reservation dance during log replay,
4830 * which means we won't have fs_info->fs_root set, so don't do
4831 * the async reclaim as we will panic.
4832 */
4833 if (!root->fs_info->log_root_recovering &&
4834 need_do_async_reclaim(space_info, root->fs_info, used) &&
Miao Xie21c7e752014-05-13 17:29:04 -07004835 !work_busy(&root->fs_info->async_reclaim_work))
4836 queue_work(system_unbound_wq,
4837 &root->fs_info->async_reclaim_work);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004838 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004839 spin_unlock(&space_info->lock);
4840
Miao Xie08e007d2012-10-16 11:33:38 +00004841 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004842 goto out;
4843
Josef Bacik96c3f432012-06-21 14:05:49 -04004844 ret = flush_space(root, space_info, num_bytes, orig_bytes,
4845 flush_state);
4846 flush_state++;
Miao Xie08e007d2012-10-16 11:33:38 +00004847
4848 /*
4849 * If we are FLUSH_LIMIT, we can not flush delalloc, or the deadlock
4850 * would happen. So skip delalloc flush.
4851 */
4852 if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4853 (flush_state == FLUSH_DELALLOC ||
4854 flush_state == FLUSH_DELALLOC_WAIT))
4855 flush_state = ALLOC_CHUNK;
4856
Josef Bacik96c3f432012-06-21 14:05:49 -04004857 if (!ret)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004858 goto again;
Miao Xie08e007d2012-10-16 11:33:38 +00004859 else if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4860 flush_state < COMMIT_TRANS)
4861 goto again;
4862 else if (flush == BTRFS_RESERVE_FLUSH_ALL &&
4863 flush_state <= COMMIT_TRANS)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004864 goto again;
4865
4866out:
Josef Bacik5d803662013-02-07 16:06:02 -05004867 if (ret == -ENOSPC &&
4868 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
4869 struct btrfs_block_rsv *global_rsv =
4870 &root->fs_info->global_block_rsv;
4871
4872 if (block_rsv != global_rsv &&
4873 !block_rsv_use_bytes(global_rsv, orig_bytes))
4874 ret = 0;
4875 }
Jeff Mahoneycab45e22013-10-16 16:27:01 -04004876 if (ret == -ENOSPC)
4877 trace_btrfs_space_reservation(root->fs_info,
4878 "space_info:enospc",
4879 space_info->flags, orig_bytes, 1);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004880 if (flushing) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004881 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004882 space_info->flush = 0;
4883 wake_up_all(&space_info->wait);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004884 spin_unlock(&space_info->lock);
4885 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004886 return ret;
4887}
4888
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004889static struct btrfs_block_rsv *get_block_rsv(
4890 const struct btrfs_trans_handle *trans,
4891 const struct btrfs_root *root)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004892{
Josef Bacik4c13d752011-08-30 11:31:29 -04004893 struct btrfs_block_rsv *block_rsv = NULL;
4894
Alexandru Moisee9cf4392015-09-09 00:18:50 +00004895 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
4896 (root == root->fs_info->csum_root && trans->adding_csums) ||
4897 (root == root->fs_info->uuid_root))
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004898 block_rsv = trans->block_rsv;
4899
Josef Bacik4c13d752011-08-30 11:31:29 -04004900 if (!block_rsv)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004901 block_rsv = root->block_rsv;
4902
4903 if (!block_rsv)
4904 block_rsv = &root->fs_info->empty_block_rsv;
4905
4906 return block_rsv;
4907}
4908
4909static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
4910 u64 num_bytes)
4911{
4912 int ret = -ENOSPC;
4913 spin_lock(&block_rsv->lock);
4914 if (block_rsv->reserved >= num_bytes) {
4915 block_rsv->reserved -= num_bytes;
4916 if (block_rsv->reserved < block_rsv->size)
4917 block_rsv->full = 0;
4918 ret = 0;
4919 }
4920 spin_unlock(&block_rsv->lock);
4921 return ret;
4922}
4923
4924static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
4925 u64 num_bytes, int update_size)
4926{
4927 spin_lock(&block_rsv->lock);
4928 block_rsv->reserved += num_bytes;
4929 if (update_size)
4930 block_rsv->size += num_bytes;
4931 else if (block_rsv->reserved >= block_rsv->size)
4932 block_rsv->full = 1;
4933 spin_unlock(&block_rsv->lock);
4934}
4935
Josef Bacikd52be812013-05-29 14:54:47 -04004936int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
4937 struct btrfs_block_rsv *dest, u64 num_bytes,
4938 int min_factor)
4939{
4940 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
4941 u64 min_bytes;
4942
4943 if (global_rsv->space_info != dest->space_info)
4944 return -ENOSPC;
4945
4946 spin_lock(&global_rsv->lock);
4947 min_bytes = div_factor(global_rsv->size, min_factor);
4948 if (global_rsv->reserved < min_bytes + num_bytes) {
4949 spin_unlock(&global_rsv->lock);
4950 return -ENOSPC;
4951 }
4952 global_rsv->reserved -= num_bytes;
4953 if (global_rsv->reserved < global_rsv->size)
4954 global_rsv->full = 0;
4955 spin_unlock(&global_rsv->lock);
4956
4957 block_rsv_add_bytes(dest, num_bytes, 1);
4958 return 0;
4959}
4960
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004961static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
4962 struct btrfs_block_rsv *block_rsv,
David Sterba62a45b62011-04-20 15:52:26 +02004963 struct btrfs_block_rsv *dest, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004964{
4965 struct btrfs_space_info *space_info = block_rsv->space_info;
4966
4967 spin_lock(&block_rsv->lock);
4968 if (num_bytes == (u64)-1)
4969 num_bytes = block_rsv->size;
4970 block_rsv->size -= num_bytes;
4971 if (block_rsv->reserved >= block_rsv->size) {
4972 num_bytes = block_rsv->reserved - block_rsv->size;
4973 block_rsv->reserved = block_rsv->size;
4974 block_rsv->full = 1;
4975 } else {
4976 num_bytes = 0;
4977 }
4978 spin_unlock(&block_rsv->lock);
4979
4980 if (num_bytes > 0) {
4981 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00004982 spin_lock(&dest->lock);
4983 if (!dest->full) {
4984 u64 bytes_to_add;
4985
4986 bytes_to_add = dest->size - dest->reserved;
4987 bytes_to_add = min(num_bytes, bytes_to_add);
4988 dest->reserved += bytes_to_add;
4989 if (dest->reserved >= dest->size)
4990 dest->full = 1;
4991 num_bytes -= bytes_to_add;
4992 }
4993 spin_unlock(&dest->lock);
4994 }
4995 if (num_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04004996 spin_lock(&space_info->lock);
Josef Bacikfb25e912011-07-26 17:00:46 -04004997 space_info->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004998 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004999 space_info->flags, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005000 spin_unlock(&space_info->lock);
5001 }
5002 }
5003}
5004
5005static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src,
5006 struct btrfs_block_rsv *dst, u64 num_bytes)
5007{
5008 int ret;
5009
5010 ret = block_rsv_use_bytes(src, num_bytes);
5011 if (ret)
5012 return ret;
5013
5014 block_rsv_add_bytes(dst, num_bytes, 1);
5015 return 0;
5016}
5017
Miao Xie66d8f3d2012-09-06 04:02:28 -06005018void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005019{
5020 memset(rsv, 0, sizeof(*rsv));
5021 spin_lock_init(&rsv->lock);
Miao Xie66d8f3d2012-09-06 04:02:28 -06005022 rsv->type = type;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005023}
5024
Miao Xie66d8f3d2012-09-06 04:02:28 -06005025struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root,
5026 unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005027{
5028 struct btrfs_block_rsv *block_rsv;
5029 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005030
5031 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
5032 if (!block_rsv)
5033 return NULL;
5034
Miao Xie66d8f3d2012-09-06 04:02:28 -06005035 btrfs_init_block_rsv(block_rsv, type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005036 block_rsv->space_info = __find_space_info(fs_info,
5037 BTRFS_BLOCK_GROUP_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005038 return block_rsv;
5039}
5040
5041void btrfs_free_block_rsv(struct btrfs_root *root,
5042 struct btrfs_block_rsv *rsv)
5043{
Josef Bacik2aaa6652012-08-29 14:27:18 -04005044 if (!rsv)
5045 return;
Josef Bacikdabdb642011-08-08 12:50:18 -04005046 btrfs_block_rsv_release(root, rsv, (u64)-1);
5047 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005048}
5049
Chris Masoncdfb0802015-04-06 18:17:00 -07005050void __btrfs_free_block_rsv(struct btrfs_block_rsv *rsv)
5051{
5052 kfree(rsv);
5053}
5054
Miao Xie08e007d2012-10-16 11:33:38 +00005055int btrfs_block_rsv_add(struct btrfs_root *root,
5056 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
5057 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005058{
5059 int ret;
5060
5061 if (num_bytes == 0)
5062 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005063
Miao Xie61b520a2011-11-10 20:45:05 -05005064 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005065 if (!ret) {
5066 block_rsv_add_bytes(block_rsv, num_bytes, 1);
5067 return 0;
5068 }
5069
Yan, Zhengf0486c62010-05-16 10:46:25 -04005070 return ret;
5071}
5072
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005073int btrfs_block_rsv_check(struct btrfs_root *root,
Josef Bacik36ba0222011-10-18 12:15:48 -04005074 struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005075{
5076 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005077 int ret = -ENOSPC;
5078
5079 if (!block_rsv)
5080 return 0;
5081
5082 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04005083 num_bytes = div_factor(block_rsv->size, min_factor);
5084 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005085 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005086 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005087
Josef Bacik36ba0222011-10-18 12:15:48 -04005088 return ret;
5089}
5090
Miao Xie08e007d2012-10-16 11:33:38 +00005091int btrfs_block_rsv_refill(struct btrfs_root *root,
5092 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
5093 enum btrfs_reserve_flush_enum flush)
Josef Bacik36ba0222011-10-18 12:15:48 -04005094{
5095 u64 num_bytes = 0;
5096 int ret = -ENOSPC;
5097
5098 if (!block_rsv)
5099 return 0;
5100
5101 spin_lock(&block_rsv->lock);
5102 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04005103 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005104 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04005105 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04005106 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005107 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04005108
Yan, Zhengf0486c62010-05-16 10:46:25 -04005109 if (!ret)
5110 return 0;
5111
Miao Xieaa38a712011-11-18 17:43:00 +08005112 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Josef Bacikdabdb642011-08-08 12:50:18 -04005113 if (!ret) {
5114 block_rsv_add_bytes(block_rsv, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005115 return 0;
5116 }
5117
Josef Bacik13553e52011-08-08 13:33:21 -04005118 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005119}
5120
5121int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv,
5122 struct btrfs_block_rsv *dst_rsv,
5123 u64 num_bytes)
5124{
5125 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
5126}
5127
5128void btrfs_block_rsv_release(struct btrfs_root *root,
5129 struct btrfs_block_rsv *block_rsv,
5130 u64 num_bytes)
5131{
5132 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Liu Bo17504582013-12-29 21:44:50 +08005133 if (global_rsv == block_rsv ||
Yan, Zhengf0486c62010-05-16 10:46:25 -04005134 block_rsv->space_info != global_rsv->space_info)
5135 global_rsv = NULL;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005136 block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv,
5137 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005138}
5139
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005140/*
5141 * helper to calculate size of global block reservation.
5142 * the desired value is sum of space used by extent tree,
5143 * checksum tree and root tree
5144 */
5145static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info)
5146{
5147 struct btrfs_space_info *sinfo;
5148 u64 num_bytes;
5149 u64 meta_used;
5150 u64 data_used;
David Sterba6c417612011-04-13 15:41:04 +02005151 int csum_size = btrfs_super_csum_size(fs_info->super_copy);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005152
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005153 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA);
5154 spin_lock(&sinfo->lock);
5155 data_used = sinfo->bytes_used;
5156 spin_unlock(&sinfo->lock);
5157
5158 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
5159 spin_lock(&sinfo->lock);
Josef Bacik6d487552010-10-15 15:13:32 -04005160 if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA)
5161 data_used = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005162 meta_used = sinfo->bytes_used;
5163 spin_unlock(&sinfo->lock);
5164
5165 num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) *
5166 csum_size * 2;
David Sterbaf8c269d2015-01-16 17:21:12 +01005167 num_bytes += div_u64(data_used + meta_used, 50);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005168
5169 if (num_bytes * 3 > meta_used)
David Sterbaf8c269d2015-01-16 17:21:12 +01005170 num_bytes = div_u64(meta_used, 3);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005171
David Sterba707e8a02014-06-04 19:22:26 +02005172 return ALIGN(num_bytes, fs_info->extent_root->nodesize << 10);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005173}
5174
5175static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
5176{
5177 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
5178 struct btrfs_space_info *sinfo = block_rsv->space_info;
5179 u64 num_bytes;
5180
5181 num_bytes = calc_global_metadata_size(fs_info);
5182
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005183 spin_lock(&sinfo->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005184 spin_lock(&block_rsv->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005185
Josef Bacikfdf30d12013-03-26 15:31:45 -04005186 block_rsv->size = min_t(u64, num_bytes, 512 * 1024 * 1024);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005187
5188 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
Josef Bacik6d487552010-10-15 15:13:32 -04005189 sinfo->bytes_reserved + sinfo->bytes_readonly +
5190 sinfo->bytes_may_use;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005191
5192 if (sinfo->total_bytes > num_bytes) {
5193 num_bytes = sinfo->total_bytes - num_bytes;
5194 block_rsv->reserved += num_bytes;
Josef Bacikfb25e912011-07-26 17:00:46 -04005195 sinfo->bytes_may_use += num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005196 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04005197 sinfo->flags, num_bytes, 1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005198 }
5199
5200 if (block_rsv->reserved >= block_rsv->size) {
5201 num_bytes = block_rsv->reserved - block_rsv->size;
Josef Bacikfb25e912011-07-26 17:00:46 -04005202 sinfo->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005203 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04005204 sinfo->flags, num_bytes, 0);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005205 block_rsv->reserved = block_rsv->size;
5206 block_rsv->full = 1;
5207 }
David Sterba182608c2011-05-05 13:13:16 +02005208
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005209 spin_unlock(&block_rsv->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005210 spin_unlock(&sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005211}
5212
Yan, Zhengf0486c62010-05-16 10:46:25 -04005213static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
5214{
5215 struct btrfs_space_info *space_info;
5216
5217 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
5218 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005219
5220 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005221 fs_info->global_block_rsv.space_info = space_info;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005222 fs_info->delalloc_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005223 fs_info->trans_block_rsv.space_info = space_info;
5224 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04005225 fs_info->delayed_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005226
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005227 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
5228 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
5229 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
5230 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Stefan Behrens3a6cad92013-05-16 14:48:19 +00005231 if (fs_info->quota_root)
5232 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005233 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005234
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005235 update_global_block_rsv(fs_info);
5236}
5237
5238static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
5239{
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005240 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
5241 (u64)-1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005242 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
5243 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
5244 WARN_ON(fs_info->trans_block_rsv.size > 0);
5245 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
5246 WARN_ON(fs_info->chunk_block_rsv.size > 0);
5247 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04005248 WARN_ON(fs_info->delayed_block_rsv.size > 0);
5249 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04005250}
5251
Yan, Zhenga22285a2010-05-16 10:48:46 -04005252void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
5253 struct btrfs_root *root)
5254{
Josef Bacik0e721102012-06-26 16:13:18 -04005255 if (!trans->block_rsv)
5256 return;
5257
Yan, Zhenga22285a2010-05-16 10:48:46 -04005258 if (!trans->bytes_reserved)
5259 return;
5260
Chris Masone77266e2012-02-24 10:39:05 -05005261 trace_btrfs_space_reservation(root->fs_info, "transaction",
Liu Bo2bcc0322012-03-29 09:57:44 -04005262 trans->transid, trans->bytes_reserved, 0);
Josef Bacikb24e03d2011-10-14 14:40:17 -04005263 btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005264 trans->bytes_reserved = 0;
5265}
5266
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005267/*
5268 * To be called after all the new block groups attached to the transaction
5269 * handle have been created (btrfs_create_pending_block_groups()).
5270 */
5271void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
5272{
5273 struct btrfs_fs_info *fs_info = trans->root->fs_info;
5274
5275 if (!trans->chunk_bytes_reserved)
5276 return;
5277
5278 WARN_ON_ONCE(!list_empty(&trans->new_bgs));
5279
5280 block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL,
5281 trans->chunk_bytes_reserved);
5282 trans->chunk_bytes_reserved = 0;
5283}
5284
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005285/* Can only return 0 or -ENOSPC */
Yan, Zhengd68fc572010-05-16 10:49:58 -04005286int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
5287 struct inode *inode)
5288{
5289 struct btrfs_root *root = BTRFS_I(inode)->root;
5290 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
5291 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
5292
5293 /*
Josef Bacikfcb80c22011-05-03 10:40:22 -04005294 * We need to hold space in order to delete our orphan item once we've
5295 * added it, so this takes the reservation so we can release it later
5296 * when we are truly done with the orphan item.
Yan, Zhengd68fc572010-05-16 10:49:58 -04005297 */
Chris Masonff5714c2011-05-28 07:00:39 -04005298 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005299 trace_btrfs_space_reservation(root->fs_info, "orphan",
5300 btrfs_ino(inode), num_bytes, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04005301 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
5302}
5303
5304void btrfs_orphan_release_metadata(struct inode *inode)
5305{
5306 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonff5714c2011-05-28 07:00:39 -04005307 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005308 trace_btrfs_space_reservation(root->fs_info, "orphan",
5309 btrfs_ino(inode), num_bytes, 0);
Yan, Zhengd68fc572010-05-16 10:49:58 -04005310 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
5311}
5312
Miao Xied5c12072013-02-28 10:04:33 +00005313/*
5314 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
5315 * root: the root of the parent directory
5316 * rsv: block reservation
5317 * items: the number of items that we need do reservation
5318 * qgroup_reserved: used to return the reserved size in qgroup
5319 *
5320 * This function is used to reserve the space for snapshot/subvolume
5321 * creation and deletion. Those operations are different with the
5322 * common file/directory operations, they change two fs/file trees
5323 * and root tree, the number of items that the qgroup reserves is
5324 * different with the free space reservation. So we can not use
5325 * the space reseravtion mechanism in start_transaction().
5326 */
5327int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
5328 struct btrfs_block_rsv *rsv,
5329 int items,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005330 u64 *qgroup_reserved,
5331 bool use_global_rsv)
Yan, Zhenga22285a2010-05-16 10:48:46 -04005332{
Miao Xied5c12072013-02-28 10:04:33 +00005333 u64 num_bytes;
5334 int ret;
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005335 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Miao Xied5c12072013-02-28 10:04:33 +00005336
5337 if (root->fs_info->quota_enabled) {
5338 /* One for parent inode, two for dir entries */
David Sterba707e8a02014-06-04 19:22:26 +02005339 num_bytes = 3 * root->nodesize;
Qu Wenruo71741092015-09-08 17:22:41 +08005340 ret = btrfs_qgroup_reserve_meta(root, num_bytes);
Miao Xied5c12072013-02-28 10:04:33 +00005341 if (ret)
5342 return ret;
5343 } else {
5344 num_bytes = 0;
5345 }
5346
5347 *qgroup_reserved = num_bytes;
5348
5349 num_bytes = btrfs_calc_trans_metadata_size(root, items);
5350 rsv->space_info = __find_space_info(root->fs_info,
5351 BTRFS_BLOCK_GROUP_METADATA);
5352 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
5353 BTRFS_RESERVE_FLUSH_ALL);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005354
5355 if (ret == -ENOSPC && use_global_rsv)
5356 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes);
5357
Qu Wenruo71741092015-09-08 17:22:41 +08005358 if (ret && *qgroup_reserved)
5359 btrfs_qgroup_free_meta(root, *qgroup_reserved);
Miao Xied5c12072013-02-28 10:04:33 +00005360
5361 return ret;
5362}
5363
5364void btrfs_subvolume_release_metadata(struct btrfs_root *root,
5365 struct btrfs_block_rsv *rsv,
5366 u64 qgroup_reserved)
5367{
5368 btrfs_block_rsv_release(root, rsv, (u64)-1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005369}
5370
Josef Bacik7709cde2011-08-04 10:25:02 -04005371/**
5372 * drop_outstanding_extent - drop an outstanding extent
5373 * @inode: the inode we're dropping the extent for
Josef Bacikdcab6a32015-02-11 15:08:59 -05005374 * @num_bytes: the number of bytes we're relaseing.
Josef Bacik7709cde2011-08-04 10:25:02 -04005375 *
5376 * This is called when we are freeing up an outstanding extent, either called
5377 * after an error or after an extent is written. This will return the number of
5378 * reserved extents that need to be freed. This must be called with
5379 * BTRFS_I(inode)->lock held.
5380 */
Josef Bacikdcab6a32015-02-11 15:08:59 -05005381static unsigned drop_outstanding_extent(struct inode *inode, u64 num_bytes)
Josef Bacik9e0baf62011-07-15 15:16:44 +00005382{
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005383 unsigned drop_inode_space = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005384 unsigned dropped_extents = 0;
Josef Bacikdcab6a32015-02-11 15:08:59 -05005385 unsigned num_extents = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005386
Josef Bacikdcab6a32015-02-11 15:08:59 -05005387 num_extents = (unsigned)div64_u64(num_bytes +
5388 BTRFS_MAX_EXTENT_SIZE - 1,
5389 BTRFS_MAX_EXTENT_SIZE);
5390 ASSERT(num_extents);
5391 ASSERT(BTRFS_I(inode)->outstanding_extents >= num_extents);
5392 BTRFS_I(inode)->outstanding_extents -= num_extents;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005393
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005394 if (BTRFS_I(inode)->outstanding_extents == 0 &&
Josef Bacik72ac3c02012-05-23 14:13:11 -04005395 test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5396 &BTRFS_I(inode)->runtime_flags))
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005397 drop_inode_space = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005398
Josef Bacik9e0baf62011-07-15 15:16:44 +00005399 /*
5400 * If we have more or the same amount of outsanding extents than we have
5401 * reserved then we need to leave the reserved extents count alone.
5402 */
5403 if (BTRFS_I(inode)->outstanding_extents >=
5404 BTRFS_I(inode)->reserved_extents)
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005405 return drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005406
5407 dropped_extents = BTRFS_I(inode)->reserved_extents -
5408 BTRFS_I(inode)->outstanding_extents;
5409 BTRFS_I(inode)->reserved_extents -= dropped_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005410 return dropped_extents + drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005411}
5412
Josef Bacik7709cde2011-08-04 10:25:02 -04005413/**
5414 * calc_csum_metadata_size - return the amount of metada space that must be
5415 * reserved/free'd for the given bytes.
5416 * @inode: the inode we're manipulating
5417 * @num_bytes: the number of bytes in question
5418 * @reserve: 1 if we are reserving space, 0 if we are freeing space
5419 *
5420 * This adjusts the number of csum_bytes in the inode and then returns the
5421 * correct amount of metadata that must either be reserved or freed. We
5422 * calculate how many checksums we can fit into one leaf and then divide the
5423 * number of bytes that will need to be checksumed by this value to figure out
5424 * how many checksums will be required. If we are adding bytes then the number
5425 * may go up and we will return the number of additional bytes that must be
5426 * reserved. If it is going down we will return the number of bytes that must
5427 * be freed.
5428 *
5429 * This must be called with BTRFS_I(inode)->lock held.
5430 */
5431static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes,
5432 int reserve)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005433{
Josef Bacik7709cde2011-08-04 10:25:02 -04005434 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik12621332015-02-03 07:50:16 -08005435 u64 old_csums, num_csums;
Josef Bacik7709cde2011-08-04 10:25:02 -04005436
5437 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM &&
5438 BTRFS_I(inode)->csum_bytes == 0)
5439 return 0;
5440
Chris Mason28f75a02015-02-04 06:59:29 -08005441 old_csums = btrfs_csum_bytes_to_leaves(root, BTRFS_I(inode)->csum_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04005442 if (reserve)
5443 BTRFS_I(inode)->csum_bytes += num_bytes;
5444 else
5445 BTRFS_I(inode)->csum_bytes -= num_bytes;
Chris Mason28f75a02015-02-04 06:59:29 -08005446 num_csums = btrfs_csum_bytes_to_leaves(root, BTRFS_I(inode)->csum_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04005447
5448 /* No change, no need to reserve more */
5449 if (old_csums == num_csums)
5450 return 0;
5451
5452 if (reserve)
5453 return btrfs_calc_trans_metadata_size(root,
5454 num_csums - old_csums);
5455
5456 return btrfs_calc_trans_metadata_size(root, old_csums - num_csums);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005457}
5458
5459int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
5460{
5461 struct btrfs_root *root = BTRFS_I(inode)->root;
5462 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005463 u64 to_reserve = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05005464 u64 csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005465 unsigned nr_extents = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05005466 int extra_reserve = 0;
Miao Xie08e007d2012-10-16 11:33:38 +00005467 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
Jan Schmidteb6b88d2013-01-27 23:26:00 -07005468 int ret = 0;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005469 bool delalloc_lock = true;
Wang Shilong88e081bf2013-03-01 11:36:01 +00005470 u64 to_free = 0;
5471 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005472
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005473 /* If we are a free space inode we need to not flush since we will be in
5474 * the middle of a transaction commit. We also don't need the delalloc
5475 * mutex since we won't race with anybody. We need this mostly to make
5476 * lockdep shut its filthy mouth.
5477 */
5478 if (btrfs_is_free_space_inode(inode)) {
Miao Xie08e007d2012-10-16 11:33:38 +00005479 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005480 delalloc_lock = false;
5481 }
Josef Bacikc09544e2011-08-30 10:19:10 -04005482
Miao Xie08e007d2012-10-16 11:33:38 +00005483 if (flush != BTRFS_RESERVE_NO_FLUSH &&
5484 btrfs_transaction_in_commit(root->fs_info))
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005485 schedule_timeout(1);
5486
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005487 if (delalloc_lock)
5488 mutex_lock(&BTRFS_I(inode)->delalloc_mutex);
5489
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005490 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005491
Josef Bacik9e0baf62011-07-15 15:16:44 +00005492 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik6a41dd02015-03-13 15:12:23 -04005493 nr_extents = (unsigned)div64_u64(num_bytes +
5494 BTRFS_MAX_EXTENT_SIZE - 1,
5495 BTRFS_MAX_EXTENT_SIZE);
5496 BTRFS_I(inode)->outstanding_extents += nr_extents;
5497 nr_extents = 0;
Josef Bacik57a45ced2011-01-25 16:30:38 -05005498
Josef Bacik9e0baf62011-07-15 15:16:44 +00005499 if (BTRFS_I(inode)->outstanding_extents >
Josef Bacik660d3f62011-12-09 11:18:51 -05005500 BTRFS_I(inode)->reserved_extents)
Josef Bacik9e0baf62011-07-15 15:16:44 +00005501 nr_extents = BTRFS_I(inode)->outstanding_extents -
5502 BTRFS_I(inode)->reserved_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005503
5504 /*
5505 * Add an item to reserve for updating the inode when we complete the
5506 * delalloc io.
5507 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04005508 if (!test_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5509 &BTRFS_I(inode)->runtime_flags)) {
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005510 nr_extents++;
Josef Bacik660d3f62011-12-09 11:18:51 -05005511 extra_reserve = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005512 }
5513
5514 to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04005515 to_reserve += calc_csum_metadata_size(inode, num_bytes, 1);
Josef Bacik660d3f62011-12-09 11:18:51 -05005516 csum_bytes = BTRFS_I(inode)->csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005517 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05005518
Wang Shilong88e081bf2013-03-01 11:36:01 +00005519 if (root->fs_info->quota_enabled) {
Qu Wenruo71741092015-09-08 17:22:41 +08005520 ret = btrfs_qgroup_reserve_meta(root,
5521 nr_extents * root->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005522 if (ret)
5523 goto out_fail;
Wang Shilonga9870c02013-03-01 11:33:01 +00005524 }
Arne Jansenc5567232011-09-14 15:44:05 +02005525
Wang Shilong88e081bf2013-03-01 11:36:01 +00005526 ret = reserve_metadata_bytes(root, block_rsv, to_reserve, flush);
5527 if (unlikely(ret)) {
Qu Wenruo71741092015-09-08 17:22:41 +08005528 btrfs_qgroup_free_meta(root, nr_extents * root->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005529 goto out_fail;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005530 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005531
Josef Bacik660d3f62011-12-09 11:18:51 -05005532 spin_lock(&BTRFS_I(inode)->lock);
5533 if (extra_reserve) {
Josef Bacik72ac3c02012-05-23 14:13:11 -04005534 set_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5535 &BTRFS_I(inode)->runtime_flags);
Josef Bacik660d3f62011-12-09 11:18:51 -05005536 nr_extents--;
5537 }
5538 BTRFS_I(inode)->reserved_extents += nr_extents;
5539 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005540
5541 if (delalloc_lock)
5542 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
Josef Bacik660d3f62011-12-09 11:18:51 -05005543
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005544 if (to_reserve)
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05305545 trace_btrfs_space_reservation(root->fs_info, "delalloc",
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005546 btrfs_ino(inode), to_reserve, 1);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005547 block_rsv_add_bytes(block_rsv, to_reserve, 1);
5548
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005549 return 0;
Wang Shilong88e081bf2013-03-01 11:36:01 +00005550
5551out_fail:
5552 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacikdcab6a32015-02-11 15:08:59 -05005553 dropped = drop_outstanding_extent(inode, num_bytes);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005554 /*
5555 * If the inodes csum_bytes is the same as the original
5556 * csum_bytes then we know we haven't raced with any free()ers
5557 * so we can just reduce our inodes csum bytes and carry on.
Wang Shilong88e081bf2013-03-01 11:36:01 +00005558 */
Josef Bacikf4881bc2013-03-25 16:03:35 -04005559 if (BTRFS_I(inode)->csum_bytes == csum_bytes) {
Wang Shilong88e081bf2013-03-01 11:36:01 +00005560 calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacikf4881bc2013-03-25 16:03:35 -04005561 } else {
5562 u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes;
5563 u64 bytes;
5564
5565 /*
5566 * This is tricky, but first we need to figure out how much we
5567 * free'd from any free-ers that occured during this
5568 * reservation, so we reset ->csum_bytes to the csum_bytes
5569 * before we dropped our lock, and then call the free for the
5570 * number of bytes that were freed while we were trying our
5571 * reservation.
5572 */
5573 bytes = csum_bytes - BTRFS_I(inode)->csum_bytes;
5574 BTRFS_I(inode)->csum_bytes = csum_bytes;
5575 to_free = calc_csum_metadata_size(inode, bytes, 0);
5576
5577
5578 /*
5579 * Now we need to see how much we would have freed had we not
5580 * been making this reservation and our ->csum_bytes were not
5581 * artificially inflated.
5582 */
5583 BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes;
5584 bytes = csum_bytes - orig_csum_bytes;
5585 bytes = calc_csum_metadata_size(inode, bytes, 0);
5586
5587 /*
5588 * Now reset ->csum_bytes to what it should be. If bytes is
5589 * more than to_free then we would have free'd more space had we
5590 * not had an artificially high ->csum_bytes, so we need to free
5591 * the remainder. If bytes is the same or less then we don't
5592 * need to do anything, the other free-ers did the correct
5593 * thing.
5594 */
5595 BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes;
5596 if (bytes > to_free)
5597 to_free = bytes - to_free;
5598 else
5599 to_free = 0;
5600 }
Wang Shilong88e081bf2013-03-01 11:36:01 +00005601 spin_unlock(&BTRFS_I(inode)->lock);
Dongsheng Yange2d1f922015-02-06 10:26:52 -05005602 if (dropped)
Wang Shilong88e081bf2013-03-01 11:36:01 +00005603 to_free += btrfs_calc_trans_metadata_size(root, dropped);
5604
5605 if (to_free) {
5606 btrfs_block_rsv_release(root, block_rsv, to_free);
5607 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5608 btrfs_ino(inode), to_free, 0);
5609 }
5610 if (delalloc_lock)
5611 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
5612 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005613}
5614
Josef Bacik7709cde2011-08-04 10:25:02 -04005615/**
5616 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
5617 * @inode: the inode to release the reservation for
5618 * @num_bytes: the number of bytes we're releasing
5619 *
5620 * This will release the metadata reservation for an inode. This can be called
5621 * once we complete IO for a given set of bytes to release their metadata
5622 * reservations.
5623 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005624void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
5625{
5626 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005627 u64 to_free = 0;
5628 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005629
5630 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik7709cde2011-08-04 10:25:02 -04005631 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacikdcab6a32015-02-11 15:08:59 -05005632 dropped = drop_outstanding_extent(inode, num_bytes);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005633
Miao Xie09348562013-02-07 10:12:07 +00005634 if (num_bytes)
5635 to_free = calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacik7709cde2011-08-04 10:25:02 -04005636 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00005637 if (dropped > 0)
5638 to_free += btrfs_calc_trans_metadata_size(root, dropped);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005639
Josef Bacik6a3891c2015-03-16 17:38:52 -04005640 if (btrfs_test_is_dummy_root(root))
5641 return;
5642
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005643 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5644 btrfs_ino(inode), to_free, 0);
Arne Jansenc5567232011-09-14 15:44:05 +02005645
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005646 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
5647 to_free);
5648}
5649
Josef Bacik7709cde2011-08-04 10:25:02 -04005650/**
5651 * btrfs_delalloc_reserve_space - reserve data and metadata space for delalloc
5652 * @inode: inode we're writing to
5653 * @num_bytes: the number of bytes we want to allocate
5654 *
5655 * This will do the following things
5656 *
5657 * o reserve space in the data space info for num_bytes
5658 * o reserve space in the metadata space info based on number of outstanding
5659 * extents and how much csums will be needed
5660 * o add to the inodes ->delalloc_bytes
5661 * o add it to the fs_info's delalloc inodes list.
5662 *
5663 * This will return 0 for success and -ENOSPC if there is no space left.
5664 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005665int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes)
5666{
5667 int ret;
5668
Dongsheng Yange2d1f922015-02-06 10:26:52 -05005669 ret = btrfs_check_data_free_space(inode, num_bytes, num_bytes);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005670 if (ret)
5671 return ret;
5672
5673 ret = btrfs_delalloc_reserve_metadata(inode, num_bytes);
5674 if (ret) {
5675 btrfs_free_reserved_data_space(inode, num_bytes);
5676 return ret;
5677 }
5678
5679 return 0;
5680}
5681
Josef Bacik7709cde2011-08-04 10:25:02 -04005682/**
5683 * btrfs_delalloc_release_space - release data and metadata space for delalloc
5684 * @inode: inode we're releasing space for
5685 * @num_bytes: the number of bytes we want to free up
5686 *
5687 * This must be matched with a call to btrfs_delalloc_reserve_space. This is
5688 * called in the case that we don't need the metadata AND data reservations
5689 * anymore. So if there is an error or we insert an inline extent.
5690 *
5691 * This function will release the metadata space that was not used and will
5692 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
5693 * list if there are no delalloc bytes left.
5694 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005695void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes)
5696{
5697 btrfs_delalloc_release_metadata(inode, num_bytes);
5698 btrfs_free_reserved_data_space(inode, num_bytes);
5699}
5700
Josef Bacikce93ec52014-11-17 15:45:48 -05005701static int update_block_group(struct btrfs_trans_handle *trans,
5702 struct btrfs_root *root, u64 bytenr,
5703 u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04005704{
Josef Bacik0af3d002010-06-21 14:48:16 -04005705 struct btrfs_block_group_cache *cache = NULL;
Chris Mason9078a3e2007-04-26 16:46:15 -04005706 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04005707 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005708 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04005709 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04005710 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04005711
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005712 /* block accounting for super block */
Miao Xieeb73c1b2013-05-15 07:48:22 +00005713 spin_lock(&info->delalloc_root_lock);
David Sterba6c417612011-04-13 15:41:04 +02005714 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005715 if (alloc)
5716 old_val += num_bytes;
5717 else
5718 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02005719 btrfs_set_super_bytes_used(info->super_copy, old_val);
Miao Xieeb73c1b2013-05-15 07:48:22 +00005720 spin_unlock(&info->delalloc_root_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005721
Chris Masond3977122009-01-05 21:25:51 -05005722 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04005723 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05005724 if (!cache)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005725 return -ENOENT;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005726 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
5727 BTRFS_BLOCK_GROUP_RAID1 |
5728 BTRFS_BLOCK_GROUP_RAID10))
5729 factor = 2;
5730 else
5731 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04005732 /*
5733 * If this block group has free space cache written out, we
5734 * need to make sure to load it if we are removing space. This
5735 * is because we need the unpinning stage to actually add the
5736 * space back to the block group, otherwise we will leak space.
5737 */
5738 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Liu Bof6373bf2012-12-27 09:01:18 +00005739 cache_block_group(cache, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04005740
Chris Masondb945352007-10-15 16:15:53 -04005741 byte_in_group = bytenr - cache->key.objectid;
5742 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04005743
Josef Bacik25179202008-10-29 14:49:05 -04005744 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04005745 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04005746
Josef Bacik73bc1872011-10-03 14:07:49 -04005747 if (btrfs_test_opt(root, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04005748 cache->disk_cache_state < BTRFS_DC_CLEAR)
5749 cache->disk_cache_state = BTRFS_DC_CLEAR;
5750
Chris Mason9078a3e2007-04-26 16:46:15 -04005751 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04005752 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04005753 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04005754 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04005755 btrfs_set_block_group_used(&cache->item, old_val);
5756 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04005757 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005758 cache->space_info->bytes_used += num_bytes;
5759 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04005760 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005761 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04005762 } else {
Chris Masondb945352007-10-15 16:15:53 -04005763 old_val -= num_bytes;
Filipe Mananaae0ab002014-11-26 15:28:52 +00005764 btrfs_set_block_group_used(&cache->item, old_val);
5765 cache->pinned += num_bytes;
5766 cache->space_info->bytes_pinned += num_bytes;
5767 cache->space_info->bytes_used -= num_bytes;
5768 cache->space_info->disk_used -= num_bytes * factor;
5769 spin_unlock(&cache->lock);
5770 spin_unlock(&cache->space_info->lock);
Josef Bacik47ab2a62014-09-18 11:20:02 -04005771
Filipe Mananaae0ab002014-11-26 15:28:52 +00005772 set_extent_dirty(info->pinned_extents,
5773 bytenr, bytenr + num_bytes - 1,
5774 GFP_NOFS | __GFP_NOFAIL);
Josef Bacik47ab2a62014-09-18 11:20:02 -04005775 /*
5776 * No longer have used bytes in this block group, queue
5777 * it for deletion.
5778 */
5779 if (old_val == 0) {
5780 spin_lock(&info->unused_bgs_lock);
5781 if (list_empty(&cache->bg_list)) {
5782 btrfs_get_block_group(cache);
5783 list_add_tail(&cache->bg_list,
5784 &info->unused_bgs);
5785 }
5786 spin_unlock(&info->unused_bgs_lock);
5787 }
Chris Masoncd1bc462007-04-27 10:08:34 -04005788 }
Chris Mason1bbc6212015-04-06 12:46:08 -07005789
5790 spin_lock(&trans->transaction->dirty_bgs_lock);
5791 if (list_empty(&cache->dirty_list)) {
5792 list_add_tail(&cache->dirty_list,
5793 &trans->transaction->dirty_bgs);
5794 trans->transaction->num_dirty_bgs++;
5795 btrfs_get_block_group(cache);
5796 }
5797 spin_unlock(&trans->transaction->dirty_bgs_lock);
5798
Chris Masonfa9c0d792009-04-03 09:47:43 -04005799 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04005800 total -= num_bytes;
5801 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005802 }
5803 return 0;
5804}
Chris Mason6324fbf2008-03-24 15:01:59 -04005805
Chris Masona061fc82008-05-07 11:43:44 -04005806static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
5807{
Josef Bacik0f9dd462008-09-23 13:14:11 -04005808 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05005809 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005810
Liu Boa1897fd2012-12-27 09:01:23 +00005811 spin_lock(&root->fs_info->block_group_cache_lock);
5812 bytenr = root->fs_info->first_logical_byte;
5813 spin_unlock(&root->fs_info->block_group_cache_lock);
5814
5815 if (bytenr < (u64)-1)
5816 return bytenr;
5817
Josef Bacik0f9dd462008-09-23 13:14:11 -04005818 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
5819 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04005820 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005821
Yan Zhengd2fb3432008-12-11 16:30:39 -05005822 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005823 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05005824
5825 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04005826}
5827
Yan, Zhengf0486c62010-05-16 10:46:25 -04005828static int pin_down_extent(struct btrfs_root *root,
5829 struct btrfs_block_group_cache *cache,
5830 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05005831{
Yan Zheng11833d62009-09-11 16:11:19 -04005832 spin_lock(&cache->space_info->lock);
5833 spin_lock(&cache->lock);
5834 cache->pinned += num_bytes;
5835 cache->space_info->bytes_pinned += num_bytes;
5836 if (reserved) {
5837 cache->reserved -= num_bytes;
5838 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05005839 }
Yan Zheng11833d62009-09-11 16:11:19 -04005840 spin_unlock(&cache->lock);
5841 spin_unlock(&cache->space_info->lock);
5842
Yan, Zhengf0486c62010-05-16 10:46:25 -04005843 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
5844 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Dongsheng Yange2d1f922015-02-06 10:26:52 -05005845 if (reserved)
Josef Bacik0be5dc62013-10-07 15:18:52 -04005846 trace_btrfs_reserved_extent_free(root, bytenr, num_bytes);
Yan324ae4d2007-11-16 14:57:08 -05005847 return 0;
5848}
Chris Mason9078a3e2007-04-26 16:46:15 -04005849
Yan, Zhengf0486c62010-05-16 10:46:25 -04005850/*
5851 * this function must be called within transaction
5852 */
5853int btrfs_pin_extent(struct btrfs_root *root,
5854 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04005855{
Yan, Zhengf0486c62010-05-16 10:46:25 -04005856 struct btrfs_block_group_cache *cache;
5857
5858 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005859 BUG_ON(!cache); /* Logic error */
Yan, Zhengf0486c62010-05-16 10:46:25 -04005860
5861 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
5862
5863 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04005864 return 0;
5865}
Zheng Yane8569812008-09-26 10:05:48 -04005866
Yan, Zhengf0486c62010-05-16 10:46:25 -04005867/*
Chris Masone688b7252011-10-31 20:52:39 -04005868 * this function must be called within transaction
Yan, Zhengf0486c62010-05-16 10:46:25 -04005869 */
Liu Bodcfac412012-12-27 09:01:20 +00005870int btrfs_pin_extent_for_log_replay(struct btrfs_root *root,
Chris Masone688b7252011-10-31 20:52:39 -04005871 u64 bytenr, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005872{
Chris Masone688b7252011-10-31 20:52:39 -04005873 struct btrfs_block_group_cache *cache;
Josef Bacikb50c6e22013-04-25 15:55:30 -04005874 int ret;
Chris Masone688b7252011-10-31 20:52:39 -04005875
5876 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005877 if (!cache)
5878 return -EINVAL;
Chris Masone688b7252011-10-31 20:52:39 -04005879
5880 /*
5881 * pull in the free space cache (if any) so that our pin
5882 * removes the free space from the cache. We have load_only set
5883 * to one because the slow code to read in the free extents does check
5884 * the pinned extents.
5885 */
Liu Bof6373bf2012-12-27 09:01:18 +00005886 cache_block_group(cache, 1);
Chris Masone688b7252011-10-31 20:52:39 -04005887
5888 pin_down_extent(root, cache, bytenr, num_bytes, 0);
5889
5890 /* remove us from the free space cache (if we're there at all) */
Josef Bacikb50c6e22013-04-25 15:55:30 -04005891 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
Chris Masone688b7252011-10-31 20:52:39 -04005892 btrfs_put_block_group(cache);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005893 return ret;
Chris Masone688b7252011-10-31 20:52:39 -04005894}
5895
Josef Bacik8c2a1a32013-06-06 13:19:32 -04005896static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes)
5897{
5898 int ret;
5899 struct btrfs_block_group_cache *block_group;
5900 struct btrfs_caching_control *caching_ctl;
5901
5902 block_group = btrfs_lookup_block_group(root->fs_info, start);
5903 if (!block_group)
5904 return -EINVAL;
5905
5906 cache_block_group(block_group, 0);
5907 caching_ctl = get_caching_control(block_group);
5908
5909 if (!caching_ctl) {
5910 /* Logic error */
5911 BUG_ON(!block_group_cache_done(block_group));
5912 ret = btrfs_remove_free_space(block_group, start, num_bytes);
5913 } else {
5914 mutex_lock(&caching_ctl->mutex);
5915
5916 if (start >= caching_ctl->progress) {
5917 ret = add_excluded_extent(root, start, num_bytes);
5918 } else if (start + num_bytes <= caching_ctl->progress) {
5919 ret = btrfs_remove_free_space(block_group,
5920 start, num_bytes);
5921 } else {
5922 num_bytes = caching_ctl->progress - start;
5923 ret = btrfs_remove_free_space(block_group,
5924 start, num_bytes);
5925 if (ret)
5926 goto out_lock;
5927
5928 num_bytes = (start + num_bytes) -
5929 caching_ctl->progress;
5930 start = caching_ctl->progress;
5931 ret = add_excluded_extent(root, start, num_bytes);
5932 }
5933out_lock:
5934 mutex_unlock(&caching_ctl->mutex);
5935 put_caching_control(caching_ctl);
5936 }
5937 btrfs_put_block_group(block_group);
5938 return ret;
5939}
5940
5941int btrfs_exclude_logged_extents(struct btrfs_root *log,
5942 struct extent_buffer *eb)
5943{
5944 struct btrfs_file_extent_item *item;
5945 struct btrfs_key key;
5946 int found_type;
5947 int i;
5948
5949 if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS))
5950 return 0;
5951
5952 for (i = 0; i < btrfs_header_nritems(eb); i++) {
5953 btrfs_item_key_to_cpu(eb, &key, i);
5954 if (key.type != BTRFS_EXTENT_DATA_KEY)
5955 continue;
5956 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
5957 found_type = btrfs_file_extent_type(eb, item);
5958 if (found_type == BTRFS_FILE_EXTENT_INLINE)
5959 continue;
5960 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
5961 continue;
5962 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
5963 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
5964 __exclude_logged_extent(log, key.objectid, key.offset);
5965 }
5966
5967 return 0;
5968}
5969
Josef Bacikfb25e912011-07-26 17:00:46 -04005970/**
5971 * btrfs_update_reserved_bytes - update the block_group and space info counters
5972 * @cache: The cache we are manipulating
5973 * @num_bytes: The number of bytes in question
5974 * @reserve: One of the reservation enums
Miao Xiee570fd22014-06-19 10:42:50 +08005975 * @delalloc: The blocks are allocated for the delalloc write
Josef Bacikfb25e912011-07-26 17:00:46 -04005976 *
5977 * This is called by the allocator when it reserves space, or by somebody who is
5978 * freeing space that was never actually used on disk. For example if you
5979 * reserve some space for a new leaf in transaction A and before transaction A
5980 * commits you free that leaf, you call this with reserve set to 0 in order to
5981 * clear the reservation.
5982 *
5983 * Metadata reservations should be called with RESERVE_ALLOC so we do the proper
5984 * ENOSPC accounting. For data we handle the reservation through clearing the
5985 * delalloc bits in the io_tree. We have to do this since we could end up
5986 * allocating less disk space for the amount of data we have reserved in the
5987 * case of compression.
5988 *
5989 * If this is a reservation and the block group has become read only we cannot
5990 * make the reservation and return -EAGAIN, otherwise this function always
5991 * succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04005992 */
Josef Bacikfb25e912011-07-26 17:00:46 -04005993static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
Miao Xiee570fd22014-06-19 10:42:50 +08005994 u64 num_bytes, int reserve, int delalloc)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005995{
Josef Bacikfb25e912011-07-26 17:00:46 -04005996 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005997 int ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005998
Josef Bacikfb25e912011-07-26 17:00:46 -04005999 spin_lock(&space_info->lock);
6000 spin_lock(&cache->lock);
6001 if (reserve != RESERVE_FREE) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04006002 if (cache->ro) {
6003 ret = -EAGAIN;
6004 } else {
Josef Bacikfb25e912011-07-26 17:00:46 -04006005 cache->reserved += num_bytes;
6006 space_info->bytes_reserved += num_bytes;
6007 if (reserve == RESERVE_ALLOC) {
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006008 trace_btrfs_space_reservation(cache->fs_info,
Liu Bo2bcc0322012-03-29 09:57:44 -04006009 "space_info", space_info->flags,
6010 num_bytes, 0);
Josef Bacikfb25e912011-07-26 17:00:46 -04006011 space_info->bytes_may_use -= num_bytes;
6012 }
Miao Xiee570fd22014-06-19 10:42:50 +08006013
6014 if (delalloc)
6015 cache->delalloc_bytes += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006016 }
Josef Bacikfb25e912011-07-26 17:00:46 -04006017 } else {
6018 if (cache->ro)
6019 space_info->bytes_readonly += num_bytes;
6020 cache->reserved -= num_bytes;
6021 space_info->bytes_reserved -= num_bytes;
Miao Xiee570fd22014-06-19 10:42:50 +08006022
6023 if (delalloc)
6024 cache->delalloc_bytes -= num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006025 }
Josef Bacikfb25e912011-07-26 17:00:46 -04006026 spin_unlock(&cache->lock);
6027 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006028 return ret;
6029}
6030
Jeff Mahoney143bede2012-03-01 14:56:26 +01006031void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04006032 struct btrfs_root *root)
6033{
6034 struct btrfs_fs_info *fs_info = root->fs_info;
6035 struct btrfs_caching_control *next;
6036 struct btrfs_caching_control *caching_ctl;
6037 struct btrfs_block_group_cache *cache;
6038
Josef Bacik9e351cc2014-03-13 15:42:13 -04006039 down_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04006040
6041 list_for_each_entry_safe(caching_ctl, next,
6042 &fs_info->caching_block_groups, list) {
6043 cache = caching_ctl->block_group;
6044 if (block_group_cache_done(cache)) {
6045 cache->last_byte_to_unpin = (u64)-1;
6046 list_del_init(&caching_ctl->list);
6047 put_caching_control(caching_ctl);
6048 } else {
6049 cache->last_byte_to_unpin = caching_ctl->progress;
6050 }
6051 }
6052
6053 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6054 fs_info->pinned_extents = &fs_info->freed_extents[1];
6055 else
6056 fs_info->pinned_extents = &fs_info->freed_extents[0];
6057
Josef Bacik9e351cc2014-03-13 15:42:13 -04006058 up_write(&fs_info->commit_root_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006059
6060 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04006061}
6062
Filipe Manana678886b2014-12-07 21:31:47 +00006063static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end,
6064 const bool return_free_space)
Yan Zheng11833d62009-09-11 16:11:19 -04006065{
6066 struct btrfs_fs_info *fs_info = root->fs_info;
6067 struct btrfs_block_group_cache *cache = NULL;
Josef Bacik7b398f82012-10-22 15:52:28 -04006068 struct btrfs_space_info *space_info;
6069 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Yan Zheng11833d62009-09-11 16:11:19 -04006070 u64 len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006071 bool readonly;
Yan Zheng11833d62009-09-11 16:11:19 -04006072
6073 while (start <= end) {
Josef Bacik7b398f82012-10-22 15:52:28 -04006074 readonly = false;
Yan Zheng11833d62009-09-11 16:11:19 -04006075 if (!cache ||
6076 start >= cache->key.objectid + cache->key.offset) {
6077 if (cache)
6078 btrfs_put_block_group(cache);
6079 cache = btrfs_lookup_block_group(fs_info, start);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006080 BUG_ON(!cache); /* Logic error */
Yan Zheng11833d62009-09-11 16:11:19 -04006081 }
6082
6083 len = cache->key.objectid + cache->key.offset - start;
6084 len = min(len, end + 1 - start);
6085
6086 if (start < cache->last_byte_to_unpin) {
6087 len = min(len, cache->last_byte_to_unpin - start);
Filipe Manana678886b2014-12-07 21:31:47 +00006088 if (return_free_space)
6089 btrfs_add_free_space(cache, start, len);
Yan Zheng11833d62009-09-11 16:11:19 -04006090 }
Josef Bacik25179202008-10-29 14:49:05 -04006091
Yan, Zhengf0486c62010-05-16 10:46:25 -04006092 start += len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006093 space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006094
Josef Bacik7b398f82012-10-22 15:52:28 -04006095 spin_lock(&space_info->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006096 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006097 cache->pinned -= len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006098 space_info->bytes_pinned -= len;
Liu Bod288db52014-07-02 16:58:01 +08006099 percpu_counter_add(&space_info->total_bytes_pinned, -len);
Josef Bacik7b398f82012-10-22 15:52:28 -04006100 if (cache->ro) {
6101 space_info->bytes_readonly += len;
6102 readonly = true;
6103 }
Josef Bacik25179202008-10-29 14:49:05 -04006104 spin_unlock(&cache->lock);
Josef Bacik7b398f82012-10-22 15:52:28 -04006105 if (!readonly && global_rsv->space_info == space_info) {
6106 spin_lock(&global_rsv->lock);
6107 if (!global_rsv->full) {
6108 len = min(len, global_rsv->size -
6109 global_rsv->reserved);
6110 global_rsv->reserved += len;
6111 space_info->bytes_may_use += len;
6112 if (global_rsv->reserved >= global_rsv->size)
6113 global_rsv->full = 1;
6114 }
6115 spin_unlock(&global_rsv->lock);
6116 }
6117 spin_unlock(&space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006118 }
6119
6120 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006121 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04006122 return 0;
6123}
6124
6125int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04006126 struct btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -05006127{
Yan Zheng11833d62009-09-11 16:11:19 -04006128 struct btrfs_fs_info *fs_info = root->fs_info;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006129 struct btrfs_block_group_cache *block_group, *tmp;
6130 struct list_head *deleted_bgs;
Yan Zheng11833d62009-09-11 16:11:19 -04006131 struct extent_io_tree *unpin;
Chris Mason1a5bc162007-10-15 16:15:26 -04006132 u64 start;
6133 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05006134 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05006135
Yan Zheng11833d62009-09-11 16:11:19 -04006136 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6137 unpin = &fs_info->freed_extents[1];
6138 else
6139 unpin = &fs_info->freed_extents[0];
6140
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006141 while (!trans->aborted) {
Filipe Mananad4b450c2015-01-29 19:18:25 +00006142 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Chris Mason1a5bc162007-10-15 16:15:26 -04006143 ret = find_first_extent_bit(unpin, 0, &start, &end,
Josef Bacike6138872012-09-27 17:07:30 -04006144 EXTENT_DIRTY, NULL);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006145 if (ret) {
6146 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05006147 break;
Filipe Mananad4b450c2015-01-29 19:18:25 +00006148 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05006149
Li Dongyang5378e602011-03-24 10:24:27 +00006150 if (btrfs_test_opt(root, DISCARD))
6151 ret = btrfs_discard_extent(root, start,
6152 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05006153
Chris Mason1a5bc162007-10-15 16:15:26 -04006154 clear_extent_dirty(unpin, start, end, GFP_NOFS);
Filipe Manana678886b2014-12-07 21:31:47 +00006155 unpin_extent_range(root, start, end, true);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006156 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masonb9473432009-03-13 11:00:37 -04006157 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05006158 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006159
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006160 /*
6161 * Transaction is finished. We don't need the lock anymore. We
6162 * do need to clean up the block groups in case of a transaction
6163 * abort.
6164 */
6165 deleted_bgs = &trans->transaction->deleted_bgs;
6166 list_for_each_entry_safe(block_group, tmp, deleted_bgs, bg_list) {
6167 u64 trimmed = 0;
6168
6169 ret = -EROFS;
6170 if (!trans->aborted)
6171 ret = btrfs_discard_extent(root,
6172 block_group->key.objectid,
6173 block_group->key.offset,
6174 &trimmed);
6175
6176 list_del_init(&block_group->bg_list);
6177 btrfs_put_block_group_trimming(block_group);
6178 btrfs_put_block_group(block_group);
6179
6180 if (ret) {
6181 const char *errstr = btrfs_decode_error(ret);
6182 btrfs_warn(fs_info,
6183 "Discard failed while removing blockgroup: errno=%d %s\n",
6184 ret, errstr);
6185 }
6186 }
6187
Chris Masone20d96d2007-03-22 12:13:20 -04006188 return 0;
6189}
6190
Josef Bacikb150a4f2013-06-19 15:00:04 -04006191static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes,
6192 u64 owner, u64 root_objectid)
6193{
6194 struct btrfs_space_info *space_info;
6195 u64 flags;
6196
6197 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
6198 if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID)
6199 flags = BTRFS_BLOCK_GROUP_SYSTEM;
6200 else
6201 flags = BTRFS_BLOCK_GROUP_METADATA;
6202 } else {
6203 flags = BTRFS_BLOCK_GROUP_DATA;
6204 }
6205
6206 space_info = __find_space_info(fs_info, flags);
6207 BUG_ON(!space_info); /* Logic bug */
6208 percpu_counter_add(&space_info->total_bytes_pinned, num_bytes);
6209}
6210
6211
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006212static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
6213 struct btrfs_root *root,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006214 struct btrfs_delayed_ref_node *node, u64 parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006215 u64 root_objectid, u64 owner_objectid,
6216 u64 owner_offset, int refs_to_drop,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006217 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05006218{
Chris Masone2fa7222007-03-12 16:22:34 -04006219 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006220 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04006221 struct btrfs_fs_info *info = root->fs_info;
6222 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04006223 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006224 struct btrfs_extent_item *ei;
6225 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05006226 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006227 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05006228 int extent_slot = 0;
6229 int found_extent = 0;
6230 int num_to_del = 1;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006231 int no_quota = node->no_quota;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006232 u32 item_size;
6233 u64 refs;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006234 u64 bytenr = node->bytenr;
6235 u64 num_bytes = node->num_bytes;
Josef Bacikfcebe452014-05-13 17:30:47 -07006236 int last_ref = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05006237 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
6238 SKINNY_METADATA);
Chris Mason037e6392007-03-07 11:50:24 -05006239
Josef Bacikfcebe452014-05-13 17:30:47 -07006240 if (!info->quota_enabled || !is_fstree(root_objectid))
6241 no_quota = 1;
6242
Chris Mason5caf2a02007-04-02 11:20:42 -04006243 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04006244 if (!path)
6245 return -ENOMEM;
6246
Chris Mason3c12ac72008-04-21 12:01:38 -04006247 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04006248 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006249
6250 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
6251 BUG_ON(!is_data && refs_to_drop != 1);
6252
Josef Bacik3173a182013-03-07 14:22:04 -05006253 if (is_data)
6254 skinny_metadata = 0;
6255
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006256 ret = lookup_extent_backref(trans, extent_root, path, &iref,
6257 bytenr, num_bytes, parent,
6258 root_objectid, owner_objectid,
6259 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05006260 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05006261 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006262 while (extent_slot >= 0) {
6263 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05006264 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006265 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05006266 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006267 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
6268 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05006269 found_extent = 1;
6270 break;
6271 }
Josef Bacik3173a182013-03-07 14:22:04 -05006272 if (key.type == BTRFS_METADATA_ITEM_KEY &&
6273 key.offset == owner_objectid) {
6274 found_extent = 1;
6275 break;
6276 }
Chris Mason952fcca2008-02-18 16:33:44 -05006277 if (path->slots[0] - extent_slot > 5)
6278 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006279 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05006280 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006281#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6282 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
6283 if (found_extent && item_size < sizeof(*ei))
6284 found_extent = 0;
6285#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04006286 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006287 BUG_ON(iref);
Chris Mason56bec292009-03-13 10:10:06 -04006288 ret = remove_extent_backref(trans, extent_root, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006289 NULL, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07006290 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06006291 if (ret) {
6292 btrfs_abort_transaction(trans, extent_root, ret);
6293 goto out;
6294 }
David Sterbab3b4aa72011-04-21 01:20:15 +02006295 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04006296 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006297
6298 key.objectid = bytenr;
6299 key.type = BTRFS_EXTENT_ITEM_KEY;
6300 key.offset = num_bytes;
6301
Josef Bacik3173a182013-03-07 14:22:04 -05006302 if (!is_data && skinny_metadata) {
6303 key.type = BTRFS_METADATA_ITEM_KEY;
6304 key.offset = owner_objectid;
6305 }
6306
Zheng Yan31840ae2008-09-23 13:14:14 -04006307 ret = btrfs_search_slot(trans, extent_root,
6308 &key, path, -1, 1);
Josef Bacik3173a182013-03-07 14:22:04 -05006309 if (ret > 0 && skinny_metadata && path->slots[0]) {
6310 /*
6311 * Couldn't find our skinny metadata item,
6312 * see if we have ye olde extent item.
6313 */
6314 path->slots[0]--;
6315 btrfs_item_key_to_cpu(path->nodes[0], &key,
6316 path->slots[0]);
6317 if (key.objectid == bytenr &&
6318 key.type == BTRFS_EXTENT_ITEM_KEY &&
6319 key.offset == num_bytes)
6320 ret = 0;
6321 }
6322
6323 if (ret > 0 && skinny_metadata) {
6324 skinny_metadata = false;
Filipe Manana9ce49a02014-04-24 15:15:28 +01006325 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05006326 key.type = BTRFS_EXTENT_ITEM_KEY;
6327 key.offset = num_bytes;
6328 btrfs_release_path(path);
6329 ret = btrfs_search_slot(trans, extent_root,
6330 &key, path, -1, 1);
6331 }
6332
Josef Bacikf3465ca2008-11-12 14:19:50 -05006333 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006334 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006335 ret, bytenr);
Josef Bacikb783e622011-07-13 15:03:50 +00006336 if (ret > 0)
6337 btrfs_print_leaf(extent_root,
6338 path->nodes[0]);
Josef Bacikf3465ca2008-11-12 14:19:50 -05006339 }
David Sterba005d6422012-09-18 07:52:32 -06006340 if (ret < 0) {
6341 btrfs_abort_transaction(trans, extent_root, ret);
6342 goto out;
6343 }
Zheng Yan31840ae2008-09-23 13:14:14 -04006344 extent_slot = path->slots[0];
6345 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306346 } else if (WARN_ON(ret == -ENOENT)) {
Chris Mason7bb86312007-12-11 09:25:06 -05006347 btrfs_print_leaf(extent_root, path->nodes[0]);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006348 btrfs_err(info,
6349 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006350 bytenr, parent, root_objectid, owner_objectid,
6351 owner_offset);
Josef Bacikc4a050b2014-03-14 16:36:53 -04006352 btrfs_abort_transaction(trans, extent_root, ret);
6353 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006354 } else {
David Sterba005d6422012-09-18 07:52:32 -06006355 btrfs_abort_transaction(trans, extent_root, ret);
6356 goto out;
Chris Mason7bb86312007-12-11 09:25:06 -05006357 }
Chris Mason5f39d392007-10-15 16:14:19 -04006358
6359 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006360 item_size = btrfs_item_size_nr(leaf, extent_slot);
6361#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6362 if (item_size < sizeof(*ei)) {
6363 BUG_ON(found_extent || extent_slot != path->slots[0]);
6364 ret = convert_extent_item_v0(trans, extent_root, path,
6365 owner_objectid, 0);
David Sterba005d6422012-09-18 07:52:32 -06006366 if (ret < 0) {
6367 btrfs_abort_transaction(trans, extent_root, ret);
6368 goto out;
6369 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006370
David Sterbab3b4aa72011-04-21 01:20:15 +02006371 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006372 path->leave_spinning = 1;
6373
6374 key.objectid = bytenr;
6375 key.type = BTRFS_EXTENT_ITEM_KEY;
6376 key.offset = num_bytes;
6377
6378 ret = btrfs_search_slot(trans, extent_root, &key, path,
6379 -1, 1);
6380 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006381 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006382 ret, bytenr);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006383 btrfs_print_leaf(extent_root, path->nodes[0]);
6384 }
David Sterba005d6422012-09-18 07:52:32 -06006385 if (ret < 0) {
6386 btrfs_abort_transaction(trans, extent_root, ret);
6387 goto out;
6388 }
6389
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006390 extent_slot = path->slots[0];
6391 leaf = path->nodes[0];
6392 item_size = btrfs_item_size_nr(leaf, extent_slot);
6393 }
6394#endif
6395 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05006396 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04006397 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05006398 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
6399 key.type == BTRFS_EXTENT_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006400 struct btrfs_tree_block_info *bi;
6401 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
6402 bi = (struct btrfs_tree_block_info *)(ei + 1);
6403 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05006404 }
6405
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006406 refs = btrfs_extent_refs(leaf, ei);
Josef Bacik32b02532013-04-24 16:38:50 -04006407 if (refs < refs_to_drop) {
6408 btrfs_err(info, "trying to drop %d refs but we only have %Lu "
David Sterba351fd352014-05-15 16:48:20 +02006409 "for bytenr %Lu", refs_to_drop, refs, bytenr);
Josef Bacik32b02532013-04-24 16:38:50 -04006410 ret = -EINVAL;
6411 btrfs_abort_transaction(trans, extent_root, ret);
6412 goto out;
6413 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006414 refs -= refs_to_drop;
6415
6416 if (refs > 0) {
6417 if (extent_op)
6418 __run_delayed_extent_op(extent_op, leaf, ei);
6419 /*
6420 * In the case of inline back ref, reference count will
6421 * be updated by remove_extent_backref
6422 */
6423 if (iref) {
6424 BUG_ON(!found_extent);
6425 } else {
6426 btrfs_set_extent_refs(leaf, ei, refs);
6427 btrfs_mark_buffer_dirty(leaf);
6428 }
6429 if (found_extent) {
6430 ret = remove_extent_backref(trans, extent_root, path,
6431 iref, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07006432 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06006433 if (ret) {
6434 btrfs_abort_transaction(trans, extent_root, ret);
6435 goto out;
6436 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006437 }
Josef Bacikb150a4f2013-06-19 15:00:04 -04006438 add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid,
6439 root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006440 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006441 if (found_extent) {
6442 BUG_ON(is_data && refs_to_drop !=
Zhaolei9ed0dea2015-08-06 22:16:24 +08006443 extent_data_ref_count(path, iref));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006444 if (iref) {
6445 BUG_ON(path->slots[0] != extent_slot);
6446 } else {
6447 BUG_ON(path->slots[0] != extent_slot + 1);
6448 path->slots[0] = extent_slot;
6449 num_to_del = 2;
6450 }
Chris Mason78fae272007-03-25 11:35:08 -04006451 }
Chris Masonb9473432009-03-13 11:00:37 -04006452
Josef Bacikfcebe452014-05-13 17:30:47 -07006453 last_ref = 1;
Chris Mason952fcca2008-02-18 16:33:44 -05006454 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
6455 num_to_del);
David Sterba005d6422012-09-18 07:52:32 -06006456 if (ret) {
6457 btrfs_abort_transaction(trans, extent_root, ret);
6458 goto out;
6459 }
David Sterbab3b4aa72011-04-21 01:20:15 +02006460 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01006461
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006462 if (is_data) {
Chris Mason459931e2008-12-10 09:10:46 -05006463 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
David Sterba005d6422012-09-18 07:52:32 -06006464 if (ret) {
6465 btrfs_abort_transaction(trans, extent_root, ret);
6466 goto out;
6467 }
Chris Mason459931e2008-12-10 09:10:46 -05006468 }
6469
Josef Bacikce93ec52014-11-17 15:45:48 -05006470 ret = update_block_group(trans, root, bytenr, num_bytes, 0);
David Sterba005d6422012-09-18 07:52:32 -06006471 if (ret) {
6472 btrfs_abort_transaction(trans, extent_root, ret);
6473 goto out;
6474 }
Chris Masona28ec192007-03-06 20:08:01 -05006475 }
Josef Bacikfcebe452014-05-13 17:30:47 -07006476 btrfs_release_path(path);
6477
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006478out:
Chris Mason5caf2a02007-04-02 11:20:42 -04006479 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05006480 return ret;
6481}
6482
6483/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04006484 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04006485 * delayed ref for that extent as well. This searches the delayed ref tree for
6486 * a given extent, and if there are no other delayed refs to be processed, it
6487 * removes it from the tree.
6488 */
6489static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
6490 struct btrfs_root *root, u64 bytenr)
6491{
6492 struct btrfs_delayed_ref_head *head;
6493 struct btrfs_delayed_ref_root *delayed_refs;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006494 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04006495
6496 delayed_refs = &trans->transaction->delayed_refs;
6497 spin_lock(&delayed_refs->lock);
6498 head = btrfs_find_delayed_ref_head(trans, bytenr);
6499 if (!head)
Chris Masoncf93da72014-01-29 07:02:40 -08006500 goto out_delayed_unlock;
Chris Mason1887be62009-03-13 10:11:24 -04006501
Josef Bacikd7df2c72014-01-23 09:21:38 -05006502 spin_lock(&head->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08006503 if (!list_empty(&head->ref_list))
Chris Mason1887be62009-03-13 10:11:24 -04006504 goto out;
6505
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006506 if (head->extent_op) {
6507 if (!head->must_insert_reserved)
6508 goto out;
Miao Xie78a61842012-11-21 02:21:28 +00006509 btrfs_free_delayed_extent_op(head->extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006510 head->extent_op = NULL;
6511 }
6512
Chris Mason1887be62009-03-13 10:11:24 -04006513 /*
6514 * waiting for the lock here would deadlock. If someone else has it
6515 * locked they are already in the process of dropping it anyway
6516 */
6517 if (!mutex_trylock(&head->mutex))
6518 goto out;
6519
6520 /*
6521 * at this point we have a head with no other entries. Go
6522 * ahead and process it.
6523 */
6524 head->node.in_tree = 0;
Liu Boc46effa2013-10-14 12:59:45 +08006525 rb_erase(&head->href_node, &delayed_refs->href_root);
Chris Masonc3e69d52009-03-13 10:17:05 -04006526
Josef Bacikd7df2c72014-01-23 09:21:38 -05006527 atomic_dec(&delayed_refs->num_entries);
Chris Mason1887be62009-03-13 10:11:24 -04006528
6529 /*
6530 * we don't take a ref on the node because we're removing it from the
6531 * tree, so we just steal the ref the tree was holding.
6532 */
Chris Masonc3e69d52009-03-13 10:17:05 -04006533 delayed_refs->num_heads--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05006534 if (head->processing == 0)
Chris Masonc3e69d52009-03-13 10:17:05 -04006535 delayed_refs->num_heads_ready--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05006536 head->processing = 0;
6537 spin_unlock(&head->lock);
Chris Mason1887be62009-03-13 10:11:24 -04006538 spin_unlock(&delayed_refs->lock);
6539
Yan, Zhengf0486c62010-05-16 10:46:25 -04006540 BUG_ON(head->extent_op);
6541 if (head->must_insert_reserved)
6542 ret = 1;
6543
6544 mutex_unlock(&head->mutex);
Chris Mason1887be62009-03-13 10:11:24 -04006545 btrfs_put_delayed_ref(&head->node);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006546 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04006547out:
Josef Bacikd7df2c72014-01-23 09:21:38 -05006548 spin_unlock(&head->lock);
Chris Masoncf93da72014-01-29 07:02:40 -08006549
6550out_delayed_unlock:
Chris Mason1887be62009-03-13 10:11:24 -04006551 spin_unlock(&delayed_refs->lock);
6552 return 0;
6553}
6554
Yan, Zhengf0486c62010-05-16 10:46:25 -04006555void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
6556 struct btrfs_root *root,
6557 struct extent_buffer *buf,
Jan Schmidt5581a512012-05-16 17:04:52 +02006558 u64 parent, int last_ref)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006559{
Josef Bacikb150a4f2013-06-19 15:00:04 -04006560 int pin = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006561 int ret;
6562
6563 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006564 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
6565 buf->start, buf->len,
6566 parent, root->root_key.objectid,
6567 btrfs_header_level(buf),
Jan Schmidt5581a512012-05-16 17:04:52 +02006568 BTRFS_DROP_DELAYED_REF, NULL, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006569 BUG_ON(ret); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006570 }
6571
6572 if (!last_ref)
6573 return;
6574
Yan, Zhengf0486c62010-05-16 10:46:25 -04006575 if (btrfs_header_generation(buf) == trans->transid) {
Filipe Manana62198722015-01-06 20:18:45 +00006576 struct btrfs_block_group_cache *cache;
6577
Yan, Zhengf0486c62010-05-16 10:46:25 -04006578 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
6579 ret = check_ref_cleanup(trans, root, buf->start);
6580 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04006581 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006582 }
6583
Filipe Manana62198722015-01-06 20:18:45 +00006584 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
6585
Yan, Zhengf0486c62010-05-16 10:46:25 -04006586 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
6587 pin_down_extent(root, cache, buf->start, buf->len, 1);
Filipe Manana62198722015-01-06 20:18:45 +00006588 btrfs_put_block_group(cache);
Josef Bacik37be25b2011-08-05 10:25:38 -04006589 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006590 }
6591
6592 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
6593
6594 btrfs_add_free_space(cache, buf->start, buf->len);
Miao Xiee570fd22014-06-19 10:42:50 +08006595 btrfs_update_reserved_bytes(cache, buf->len, RESERVE_FREE, 0);
Filipe Manana62198722015-01-06 20:18:45 +00006596 btrfs_put_block_group(cache);
Josef Bacik0be5dc62013-10-07 15:18:52 -04006597 trace_btrfs_reserved_extent_free(root, buf->start, buf->len);
Josef Bacikb150a4f2013-06-19 15:00:04 -04006598 pin = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006599 }
6600out:
Josef Bacikb150a4f2013-06-19 15:00:04 -04006601 if (pin)
6602 add_pinned_bytes(root->fs_info, buf->len,
6603 btrfs_header_level(buf),
6604 root->root_key.objectid);
6605
Josef Bacika826d6d2011-03-16 13:42:43 -04006606 /*
6607 * Deleting the buffer, clear the corrupt flag since it doesn't matter
6608 * anymore.
6609 */
6610 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006611}
6612
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006613/* Can return -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006614int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root,
6615 u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid,
Josef Bacikfcebe452014-05-13 17:30:47 -07006616 u64 owner, u64 offset, int no_quota)
Chris Mason925baed2008-06-25 16:01:30 -04006617{
6618 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006619 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason925baed2008-06-25 16:01:30 -04006620
David Sterbafccb84c2014-09-29 23:53:21 +02006621 if (btrfs_test_is_dummy_root(root))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04006622 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02006623
Josef Bacikb150a4f2013-06-19 15:00:04 -04006624 add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid);
6625
Chris Mason56bec292009-03-13 10:10:06 -04006626 /*
6627 * tree log blocks never actually go into the extent allocation
6628 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04006629 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006630 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
6631 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04006632 /* unlocks the pinned mutex */
Yan Zheng11833d62009-09-11 16:11:19 -04006633 btrfs_pin_extent(root, bytenr, num_bytes, 1);
Chris Mason56bec292009-03-13 10:10:06 -04006634 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006635 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006636 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
6637 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006638 parent, root_objectid, (int)owner,
Josef Bacikfcebe452014-05-13 17:30:47 -07006639 BTRFS_DROP_DELAYED_REF, NULL, no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006640 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006641 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
6642 num_bytes,
6643 parent, root_objectid, owner,
6644 offset, BTRFS_DROP_DELAYED_REF,
Josef Bacikfcebe452014-05-13 17:30:47 -07006645 NULL, no_quota);
Chris Mason56bec292009-03-13 10:10:06 -04006646 }
Chris Mason925baed2008-06-25 16:01:30 -04006647 return ret;
6648}
6649
Chris Masonfec577f2007-02-26 10:40:21 -05006650/*
Josef Bacik817d52f2009-07-13 21:29:25 -04006651 * when we wait for progress in the block group caching, its because
6652 * our allocation attempt failed at least once. So, we must sleep
6653 * and let some progress happen before we try again.
6654 *
6655 * This function will sleep at least once waiting for new free space to
6656 * show up, and then it will check the block group free space numbers
6657 * for our min num_bytes. Another option is to have it go ahead
6658 * and look in the rbtree for a free extent of a given size, but this
6659 * is a good start.
Josef Bacik36cce922013-08-05 11:15:21 -04006660 *
6661 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
6662 * any of the information in this block group.
Josef Bacik817d52f2009-07-13 21:29:25 -04006663 */
Josef Bacik36cce922013-08-05 11:15:21 -04006664static noinline void
Josef Bacik817d52f2009-07-13 21:29:25 -04006665wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
6666 u64 num_bytes)
6667{
Yan Zheng11833d62009-09-11 16:11:19 -04006668 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04006669
Yan Zheng11833d62009-09-11 16:11:19 -04006670 caching_ctl = get_caching_control(cache);
6671 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04006672 return;
Josef Bacik817d52f2009-07-13 21:29:25 -04006673
Yan Zheng11833d62009-09-11 16:11:19 -04006674 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08006675 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04006676
6677 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -04006678}
6679
6680static noinline int
6681wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
6682{
6683 struct btrfs_caching_control *caching_ctl;
Josef Bacik36cce922013-08-05 11:15:21 -04006684 int ret = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006685
6686 caching_ctl = get_caching_control(cache);
6687 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04006688 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006689
6690 wait_event(caching_ctl->wait, block_group_cache_done(cache));
Josef Bacik36cce922013-08-05 11:15:21 -04006691 if (cache->cached == BTRFS_CACHE_ERROR)
6692 ret = -EIO;
Yan Zheng11833d62009-09-11 16:11:19 -04006693 put_caching_control(caching_ctl);
Josef Bacik36cce922013-08-05 11:15:21 -04006694 return ret;
Josef Bacik817d52f2009-07-13 21:29:25 -04006695}
6696
Liu Bo31e50222012-11-21 14:18:10 +00006697int __get_raid_index(u64 flags)
Yan, Zhengb742bb82010-05-16 10:46:24 -04006698{
Ilya Dryomov7738a532012-03-27 17:09:17 +03006699 if (flags & BTRFS_BLOCK_GROUP_RAID10)
Miao Xiee6ec7162013-01-17 05:38:51 +00006700 return BTRFS_RAID_RAID10;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006701 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
Miao Xiee6ec7162013-01-17 05:38:51 +00006702 return BTRFS_RAID_RAID1;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006703 else if (flags & BTRFS_BLOCK_GROUP_DUP)
Miao Xiee6ec7162013-01-17 05:38:51 +00006704 return BTRFS_RAID_DUP;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006705 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
Miao Xiee6ec7162013-01-17 05:38:51 +00006706 return BTRFS_RAID_RAID0;
David Woodhouse53b381b2013-01-29 18:40:14 -05006707 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
Chris Masone942f882013-02-20 14:06:05 -05006708 return BTRFS_RAID_RAID5;
David Woodhouse53b381b2013-01-29 18:40:14 -05006709 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
Chris Masone942f882013-02-20 14:06:05 -05006710 return BTRFS_RAID_RAID6;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006711
Chris Masone942f882013-02-20 14:06:05 -05006712 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
Yan, Zhengb742bb82010-05-16 10:46:24 -04006713}
6714
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04006715int get_block_group_index(struct btrfs_block_group_cache *cache)
Ilya Dryomov7738a532012-03-27 17:09:17 +03006716{
Liu Bo31e50222012-11-21 14:18:10 +00006717 return __get_raid_index(cache->flags);
Ilya Dryomov7738a532012-03-27 17:09:17 +03006718}
6719
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04006720static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = {
6721 [BTRFS_RAID_RAID10] = "raid10",
6722 [BTRFS_RAID_RAID1] = "raid1",
6723 [BTRFS_RAID_DUP] = "dup",
6724 [BTRFS_RAID_RAID0] = "raid0",
6725 [BTRFS_RAID_SINGLE] = "single",
6726 [BTRFS_RAID_RAID5] = "raid5",
6727 [BTRFS_RAID_RAID6] = "raid6",
6728};
6729
Jeff Mahoney1b8e5df2013-11-20 16:50:23 -05006730static const char *get_raid_name(enum btrfs_raid_types type)
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04006731{
6732 if (type >= BTRFS_NR_RAID_TYPES)
6733 return NULL;
6734
6735 return btrfs_raid_type_names[type];
6736}
6737
Josef Bacik817d52f2009-07-13 21:29:25 -04006738enum btrfs_loop_type {
Josef Bacik285ff5a2012-01-13 15:27:45 -05006739 LOOP_CACHING_NOWAIT = 0,
6740 LOOP_CACHING_WAIT = 1,
6741 LOOP_ALLOC_CHUNK = 2,
6742 LOOP_NO_EMPTY_SIZE = 3,
Josef Bacik817d52f2009-07-13 21:29:25 -04006743};
6744
Miao Xiee570fd22014-06-19 10:42:50 +08006745static inline void
6746btrfs_lock_block_group(struct btrfs_block_group_cache *cache,
6747 int delalloc)
6748{
6749 if (delalloc)
6750 down_read(&cache->data_rwsem);
6751}
6752
6753static inline void
6754btrfs_grab_block_group(struct btrfs_block_group_cache *cache,
6755 int delalloc)
6756{
6757 btrfs_get_block_group(cache);
6758 if (delalloc)
6759 down_read(&cache->data_rwsem);
6760}
6761
6762static struct btrfs_block_group_cache *
6763btrfs_lock_cluster(struct btrfs_block_group_cache *block_group,
6764 struct btrfs_free_cluster *cluster,
6765 int delalloc)
6766{
6767 struct btrfs_block_group_cache *used_bg;
6768 bool locked = false;
6769again:
6770 spin_lock(&cluster->refill_lock);
6771 if (locked) {
6772 if (used_bg == cluster->block_group)
6773 return used_bg;
6774
6775 up_read(&used_bg->data_rwsem);
6776 btrfs_put_block_group(used_bg);
6777 }
6778
6779 used_bg = cluster->block_group;
6780 if (!used_bg)
6781 return NULL;
6782
6783 if (used_bg == block_group)
6784 return used_bg;
6785
6786 btrfs_get_block_group(used_bg);
6787
6788 if (!delalloc)
6789 return used_bg;
6790
6791 if (down_read_trylock(&used_bg->data_rwsem))
6792 return used_bg;
6793
6794 spin_unlock(&cluster->refill_lock);
6795 down_read(&used_bg->data_rwsem);
6796 locked = true;
6797 goto again;
6798}
6799
6800static inline void
6801btrfs_release_block_group(struct btrfs_block_group_cache *cache,
6802 int delalloc)
6803{
6804 if (delalloc)
6805 up_read(&cache->data_rwsem);
6806 btrfs_put_block_group(cache);
6807}
6808
Josef Bacik817d52f2009-07-13 21:29:25 -04006809/*
Chris Masonfec577f2007-02-26 10:40:21 -05006810 * walks the btree of allocated extents and find a hole of a given size.
6811 * The key ins is changed to record the hole:
Miao Xiea4820392013-09-09 13:19:42 +08006812 * ins->objectid == start position
Chris Mason62e27492007-03-15 12:56:47 -04006813 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Miao Xiea4820392013-09-09 13:19:42 +08006814 * ins->offset == the size of the hole.
Chris Masonfec577f2007-02-26 10:40:21 -05006815 * Any available blocks before search_start are skipped.
Miao Xiea4820392013-09-09 13:19:42 +08006816 *
6817 * If there is no suitable free space, we will record the max size of
6818 * the free space extent currently.
Chris Masonfec577f2007-02-26 10:40:21 -05006819 */
Josef Bacik00361582013-08-14 14:02:47 -04006820static noinline int find_free_extent(struct btrfs_root *orig_root,
Chris Mason98ed5172008-01-03 10:01:48 -05006821 u64 num_bytes, u64 empty_size,
Chris Mason98ed5172008-01-03 10:01:48 -05006822 u64 hint_byte, struct btrfs_key *ins,
Miao Xiee570fd22014-06-19 10:42:50 +08006823 u64 flags, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05006824{
Josef Bacik80eb2342008-10-29 14:49:05 -04006825 int ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05006826 struct btrfs_root *root = orig_root->fs_info->extent_root;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006827 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04006828 struct btrfs_block_group_cache *block_group = NULL;
Josef Bacik81c9ad22012-01-18 10:56:06 -05006829 u64 search_start = 0;
Miao Xiea4820392013-09-09 13:19:42 +08006830 u64 max_extent_size = 0;
Chris Mason239b14b2008-03-24 15:02:07 -04006831 int empty_cluster = 2 * 1024 * 1024;
Josef Bacik80eb2342008-10-29 14:49:05 -04006832 struct btrfs_space_info *space_info;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006833 int loop = 0;
David Sterbab6919a52013-04-29 13:39:40 +00006834 int index = __get_raid_index(flags);
6835 int alloc_type = (flags & BTRFS_BLOCK_GROUP_DATA) ?
Josef Bacikfb25e912011-07-26 17:00:46 -04006836 RESERVE_ALLOC_NO_ACCOUNT : RESERVE_ALLOC;
Josef Bacik0a243252009-09-11 16:11:20 -04006837 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006838 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04006839 bool use_cluster = true;
Miao Xie60d2adb2011-09-09 17:34:35 +08006840 bool have_caching_bg = false;
Chris Masonfec577f2007-02-26 10:40:21 -05006841
Chris Masondb945352007-10-15 16:15:53 -04006842 WARN_ON(num_bytes < root->sectorsize);
David Sterba962a2982014-06-04 18:41:45 +02006843 ins->type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacik80eb2342008-10-29 14:49:05 -04006844 ins->objectid = 0;
6845 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04006846
David Sterbab6919a52013-04-29 13:39:40 +00006847 trace_find_free_extent(orig_root, num_bytes, empty_size, flags);
Josef Bacik3f7de032011-11-10 08:29:20 -05006848
David Sterbab6919a52013-04-29 13:39:40 +00006849 space_info = __find_space_info(root->fs_info, flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00006850 if (!space_info) {
David Sterbab6919a52013-04-29 13:39:40 +00006851 btrfs_err(root->fs_info, "No space info for %llu", flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00006852 return -ENOSPC;
6853 }
Josef Bacik2552d172009-04-03 10:14:19 -04006854
Josef Bacik67377732010-09-16 16:19:09 -04006855 /*
6856 * If the space info is for both data and metadata it means we have a
6857 * small filesystem and we can't use the clustering stuff.
6858 */
6859 if (btrfs_mixed_space_info(space_info))
6860 use_cluster = false;
6861
David Sterbab6919a52013-04-29 13:39:40 +00006862 if (flags & BTRFS_BLOCK_GROUP_METADATA && use_cluster) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006863 last_ptr = &root->fs_info->meta_alloc_cluster;
Chris Mason536ac8a2009-02-12 09:41:38 -05006864 if (!btrfs_test_opt(root, SSD))
6865 empty_cluster = 64 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04006866 }
6867
David Sterbab6919a52013-04-29 13:39:40 +00006868 if ((flags & BTRFS_BLOCK_GROUP_DATA) && use_cluster &&
Josef Bacik67377732010-09-16 16:19:09 -04006869 btrfs_test_opt(root, SSD)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006870 last_ptr = &root->fs_info->data_alloc_cluster;
6871 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04006872
Chris Mason239b14b2008-03-24 15:02:07 -04006873 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006874 spin_lock(&last_ptr->lock);
6875 if (last_ptr->block_group)
6876 hint_byte = last_ptr->window_start;
6877 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04006878 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006879
Chris Masona061fc82008-05-07 11:43:44 -04006880 search_start = max(search_start, first_logical_byte(root, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04006881 search_start = max(search_start, hint_byte);
Chris Mason0b86a832008-03-24 15:01:56 -04006882
Josef Bacik817d52f2009-07-13 21:29:25 -04006883 if (!last_ptr)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006884 empty_cluster = 0;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006885
Josef Bacik2552d172009-04-03 10:14:19 -04006886 if (search_start == hint_byte) {
Josef Bacik2552d172009-04-03 10:14:19 -04006887 block_group = btrfs_lookup_block_group(root->fs_info,
6888 search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04006889 /*
6890 * we don't want to use the block group if it doesn't match our
6891 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05006892 *
6893 * However if we are re-searching with an ideal block group
6894 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04006895 */
David Sterbab6919a52013-04-29 13:39:40 +00006896 if (block_group && block_group_bits(block_group, flags) &&
Josef Bacik285ff5a2012-01-13 15:27:45 -05006897 block_group->cached != BTRFS_CACHE_NO) {
Josef Bacik2552d172009-04-03 10:14:19 -04006898 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04006899 if (list_empty(&block_group->list) ||
6900 block_group->ro) {
6901 /*
6902 * someone is removing this block group,
6903 * we can't jump into the have_block_group
6904 * target because our list pointers are not
6905 * valid
6906 */
6907 btrfs_put_block_group(block_group);
6908 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05006909 } else {
Yan, Zhengb742bb82010-05-16 10:46:24 -04006910 index = get_block_group_index(block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08006911 btrfs_lock_block_group(block_group, delalloc);
Chris Mason44fb5512009-06-04 15:34:51 -04006912 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05006913 }
Josef Bacik2552d172009-04-03 10:14:19 -04006914 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006915 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006916 }
Chris Mason42e70e72008-11-07 18:17:11 -05006917 }
Josef Bacik2552d172009-04-03 10:14:19 -04006918search:
Miao Xie60d2adb2011-09-09 17:34:35 +08006919 have_caching_bg = false;
Josef Bacik80eb2342008-10-29 14:49:05 -04006920 down_read(&space_info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04006921 list_for_each_entry(block_group, &space_info->block_groups[index],
6922 list) {
Josef Bacik6226cb0a2009-04-03 10:14:18 -04006923 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04006924 int cached;
Chris Mason8a1413a2008-11-10 16:13:54 -05006925
Miao Xiee570fd22014-06-19 10:42:50 +08006926 btrfs_grab_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04006927 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05006928
Chris Mason83a50de2010-12-13 15:06:46 -05006929 /*
6930 * this can happen if we end up cycling through all the
6931 * raid types, but we want to make sure we only allocate
6932 * for the proper type.
6933 */
David Sterbab6919a52013-04-29 13:39:40 +00006934 if (!block_group_bits(block_group, flags)) {
Chris Mason83a50de2010-12-13 15:06:46 -05006935 u64 extra = BTRFS_BLOCK_GROUP_DUP |
6936 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05006937 BTRFS_BLOCK_GROUP_RAID5 |
6938 BTRFS_BLOCK_GROUP_RAID6 |
Chris Mason83a50de2010-12-13 15:06:46 -05006939 BTRFS_BLOCK_GROUP_RAID10;
6940
6941 /*
6942 * if they asked for extra copies and this block group
6943 * doesn't provide them, bail. This does allow us to
6944 * fill raid0 from raid1.
6945 */
David Sterbab6919a52013-04-29 13:39:40 +00006946 if ((flags & extra) && !(block_group->flags & extra))
Chris Mason83a50de2010-12-13 15:06:46 -05006947 goto loop;
6948 }
6949
Josef Bacik2552d172009-04-03 10:14:19 -04006950have_block_group:
Josef Bacik291c7d22011-11-14 13:52:14 -05006951 cached = block_group_cache_done(block_group);
6952 if (unlikely(!cached)) {
Liu Bof6373bf2012-12-27 09:01:18 +00006953 ret = cache_block_group(block_group, 0);
Chris Mason1d4284b2012-03-28 20:31:37 -04006954 BUG_ON(ret < 0);
6955 ret = 0;
Josef Bacikea6a4782008-11-20 12:16:16 -05006956 }
6957
Josef Bacik36cce922013-08-05 11:15:21 -04006958 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
6959 goto loop;
Josef Bacikea6a4782008-11-20 12:16:16 -05006960 if (unlikely(block_group->ro))
Josef Bacik2552d172009-04-03 10:14:19 -04006961 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006962
Josef Bacik0a243252009-09-11 16:11:20 -04006963 /*
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006964 * Ok we want to try and use the cluster allocator, so
6965 * lets look there
Josef Bacik0a243252009-09-11 16:11:20 -04006966 */
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006967 if (last_ptr) {
Miao Xie215a63d2014-01-15 20:00:56 +08006968 struct btrfs_block_group_cache *used_block_group;
Chris Mason8de972b2013-01-04 15:39:43 -05006969 unsigned long aligned_cluster;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006970 /*
6971 * the refill lock keeps out other
6972 * people trying to start a new cluster
6973 */
Miao Xiee570fd22014-06-19 10:42:50 +08006974 used_block_group = btrfs_lock_cluster(block_group,
6975 last_ptr,
6976 delalloc);
6977 if (!used_block_group)
Chris Mason44fb5512009-06-04 15:34:51 -04006978 goto refill_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -04006979
Miao Xiee570fd22014-06-19 10:42:50 +08006980 if (used_block_group != block_group &&
6981 (used_block_group->ro ||
6982 !block_group_bits(used_block_group, flags)))
6983 goto release_cluster;
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006984
6985 offset = btrfs_alloc_from_cluster(used_block_group,
Miao Xiea4820392013-09-09 13:19:42 +08006986 last_ptr,
6987 num_bytes,
6988 used_block_group->key.objectid,
6989 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006990 if (offset) {
6991 /* we have a block, we're done */
6992 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05006993 trace_btrfs_reserve_extent_cluster(root,
Miao Xie89d43462014-01-15 20:00:57 +08006994 used_block_group,
6995 search_start, num_bytes);
Miao Xie215a63d2014-01-15 20:00:56 +08006996 if (used_block_group != block_group) {
Miao Xiee570fd22014-06-19 10:42:50 +08006997 btrfs_release_block_group(block_group,
6998 delalloc);
Miao Xie215a63d2014-01-15 20:00:56 +08006999 block_group = used_block_group;
7000 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007001 goto checks;
7002 }
7003
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05007004 WARN_ON(last_ptr->block_group != used_block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08007005release_cluster:
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007006 /* If we are on LOOP_NO_EMPTY_SIZE, we can't
7007 * set up a new clusters, so lets just skip it
7008 * and let the allocator find whatever block
7009 * it can find. If we reach this point, we
7010 * will have tried the cluster allocator
7011 * plenty of times and not have found
7012 * anything, so we are likely way too
7013 * fragmented for the clustering stuff to find
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007014 * anything.
7015 *
7016 * However, if the cluster is taken from the
7017 * current block group, release the cluster
7018 * first, so that we stand a better chance of
7019 * succeeding in the unclustered
7020 * allocation. */
7021 if (loop >= LOOP_NO_EMPTY_SIZE &&
Miao Xiee570fd22014-06-19 10:42:50 +08007022 used_block_group != block_group) {
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007023 spin_unlock(&last_ptr->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08007024 btrfs_release_block_group(used_block_group,
7025 delalloc);
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007026 goto unclustered_alloc;
7027 }
7028
Chris Masonfa9c0d792009-04-03 09:47:43 -04007029 /*
7030 * this cluster didn't work out, free it and
7031 * start over
7032 */
7033 btrfs_return_cluster_to_free_space(NULL, last_ptr);
7034
Miao Xiee570fd22014-06-19 10:42:50 +08007035 if (used_block_group != block_group)
7036 btrfs_release_block_group(used_block_group,
7037 delalloc);
7038refill_cluster:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007039 if (loop >= LOOP_NO_EMPTY_SIZE) {
7040 spin_unlock(&last_ptr->refill_lock);
7041 goto unclustered_alloc;
7042 }
7043
Chris Mason8de972b2013-01-04 15:39:43 -05007044 aligned_cluster = max_t(unsigned long,
7045 empty_cluster + empty_size,
7046 block_group->full_stripe_len);
7047
Chris Masonfa9c0d792009-04-03 09:47:43 -04007048 /* allocate a cluster in this block group */
Josef Bacik00361582013-08-14 14:02:47 -04007049 ret = btrfs_find_space_cluster(root, block_group,
7050 last_ptr, search_start,
7051 num_bytes,
7052 aligned_cluster);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007053 if (ret == 0) {
7054 /*
7055 * now pull our allocation out of this
7056 * cluster
7057 */
7058 offset = btrfs_alloc_from_cluster(block_group,
Miao Xiea4820392013-09-09 13:19:42 +08007059 last_ptr,
7060 num_bytes,
7061 search_start,
7062 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007063 if (offset) {
7064 /* we found one, proceed */
7065 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05007066 trace_btrfs_reserve_extent_cluster(root,
7067 block_group, search_start,
7068 num_bytes);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007069 goto checks;
7070 }
Josef Bacik0a243252009-09-11 16:11:20 -04007071 } else if (!cached && loop > LOOP_CACHING_NOWAIT
7072 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04007073 spin_unlock(&last_ptr->refill_lock);
7074
Josef Bacik0a243252009-09-11 16:11:20 -04007075 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04007076 wait_block_group_cache_progress(block_group,
7077 num_bytes + empty_cluster + empty_size);
7078 goto have_block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007079 }
Josef Bacik817d52f2009-07-13 21:29:25 -04007080
Chris Masonfa9c0d792009-04-03 09:47:43 -04007081 /*
7082 * at this point we either didn't find a cluster
7083 * or we weren't able to allocate a block from our
7084 * cluster. Free the cluster we've been trying
7085 * to use, and go to the next block group
7086 */
Josef Bacik0a243252009-09-11 16:11:20 -04007087 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007088 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04007089 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007090 }
7091
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007092unclustered_alloc:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007093 spin_lock(&block_group->free_space_ctl->tree_lock);
7094 if (cached &&
7095 block_group->free_space_ctl->free_space <
7096 num_bytes + empty_cluster + empty_size) {
Miao Xiea4820392013-09-09 13:19:42 +08007097 if (block_group->free_space_ctl->free_space >
7098 max_extent_size)
7099 max_extent_size =
7100 block_group->free_space_ctl->free_space;
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007101 spin_unlock(&block_group->free_space_ctl->tree_lock);
7102 goto loop;
7103 }
7104 spin_unlock(&block_group->free_space_ctl->tree_lock);
7105
Josef Bacik6226cb0a2009-04-03 10:14:18 -04007106 offset = btrfs_find_space_for_alloc(block_group, search_start,
Miao Xiea4820392013-09-09 13:19:42 +08007107 num_bytes, empty_size,
7108 &max_extent_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007109 /*
7110 * If we didn't find a chunk, and we haven't failed on this
7111 * block group before, and this block group is in the middle of
7112 * caching and we are ok with waiting, then go ahead and wait
7113 * for progress to be made, and set failed_alloc to true.
7114 *
7115 * If failed_alloc is true then we've already waited on this
7116 * block group once and should move on to the next block group.
7117 */
7118 if (!offset && !failed_alloc && !cached &&
7119 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04007120 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007121 num_bytes + empty_size);
7122 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04007123 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007124 } else if (!offset) {
Miao Xie60d2adb2011-09-09 17:34:35 +08007125 if (!cached)
7126 have_caching_bg = true;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007127 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04007128 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007129checks:
David Sterba4e54b172014-06-05 01:39:19 +02007130 search_start = ALIGN(offset, root->stripesize);
Chris Masone37c9e62007-05-09 20:13:14 -04007131
Josef Bacik2552d172009-04-03 10:14:19 -04007132 /* move on to the next group */
7133 if (search_start + num_bytes >
Miao Xie215a63d2014-01-15 20:00:56 +08007134 block_group->key.objectid + block_group->key.offset) {
7135 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04007136 goto loop;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04007137 }
Josef Bacik80eb2342008-10-29 14:49:05 -04007138
Josef Bacik6226cb0a2009-04-03 10:14:18 -04007139 if (offset < search_start)
Miao Xie215a63d2014-01-15 20:00:56 +08007140 btrfs_add_free_space(block_group, offset,
Josef Bacik6226cb0a2009-04-03 10:14:18 -04007141 search_start - offset);
7142 BUG_ON(offset > search_start);
7143
Miao Xie215a63d2014-01-15 20:00:56 +08007144 ret = btrfs_update_reserved_bytes(block_group, num_bytes,
Miao Xiee570fd22014-06-19 10:42:50 +08007145 alloc_type, delalloc);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007146 if (ret == -EAGAIN) {
Miao Xie215a63d2014-01-15 20:00:56 +08007147 btrfs_add_free_space(block_group, offset, num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007148 goto loop;
7149 }
Yan Zheng11833d62009-09-11 16:11:19 -04007150
Josef Bacik2552d172009-04-03 10:14:19 -04007151 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007152 ins->objectid = search_start;
7153 ins->offset = num_bytes;
7154
Josef Bacik3f7de032011-11-10 08:29:20 -05007155 trace_btrfs_reserve_extent(orig_root, block_group,
7156 search_start, num_bytes);
Miao Xiee570fd22014-06-19 10:42:50 +08007157 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007158 break;
7159loop:
Josef Bacik0a243252009-09-11 16:11:20 -04007160 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007161 failed_alloc = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04007162 BUG_ON(index != get_block_group_index(block_group));
Miao Xiee570fd22014-06-19 10:42:50 +08007163 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007164 }
7165 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05007166
Miao Xie60d2adb2011-09-09 17:34:35 +08007167 if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg)
7168 goto search;
7169
Yan, Zhengb742bb82010-05-16 10:46:24 -04007170 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
7171 goto search;
7172
Josef Bacik285ff5a2012-01-13 15:27:45 -05007173 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05007174 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
7175 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04007176 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
7177 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
7178 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
7179 * again
Chris Masonfa9c0d792009-04-03 09:47:43 -04007180 */
Josef Bacik723bda22011-05-27 16:11:38 -04007181 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) {
Yan, Zhengb742bb82010-05-16 10:46:24 -04007182 index = 0;
Josef Bacik723bda22011-05-27 16:11:38 -04007183 loop++;
Josef Bacik817d52f2009-07-13 21:29:25 -04007184 if (loop == LOOP_ALLOC_CHUNK) {
Josef Bacik00361582013-08-14 14:02:47 -04007185 struct btrfs_trans_handle *trans;
Wang Shilongf017f152014-03-13 13:19:47 +08007186 int exist = 0;
Josef Bacik00361582013-08-14 14:02:47 -04007187
Wang Shilongf017f152014-03-13 13:19:47 +08007188 trans = current->journal_info;
7189 if (trans)
7190 exist = 1;
7191 else
7192 trans = btrfs_join_transaction(root);
7193
Josef Bacik00361582013-08-14 14:02:47 -04007194 if (IS_ERR(trans)) {
7195 ret = PTR_ERR(trans);
7196 goto out;
7197 }
7198
David Sterbab6919a52013-04-29 13:39:40 +00007199 ret = do_chunk_alloc(trans, root, flags,
Josef Bacikea658ba2012-09-11 16:57:25 -04007200 CHUNK_ALLOC_FORCE);
7201 /*
7202 * Do not bail out on ENOSPC since we
7203 * can do more things.
7204 */
Josef Bacik00361582013-08-14 14:02:47 -04007205 if (ret < 0 && ret != -ENOSPC)
Josef Bacikea658ba2012-09-11 16:57:25 -04007206 btrfs_abort_transaction(trans,
7207 root, ret);
Josef Bacik00361582013-08-14 14:02:47 -04007208 else
7209 ret = 0;
Wang Shilongf017f152014-03-13 13:19:47 +08007210 if (!exist)
7211 btrfs_end_transaction(trans, root);
Josef Bacik00361582013-08-14 14:02:47 -04007212 if (ret)
Josef Bacikea658ba2012-09-11 16:57:25 -04007213 goto out;
Josef Bacik723bda22011-05-27 16:11:38 -04007214 }
7215
7216 if (loop == LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007217 empty_size = 0;
7218 empty_cluster = 0;
7219 }
Chris Mason42e70e72008-11-07 18:17:11 -05007220
Josef Bacik723bda22011-05-27 16:11:38 -04007221 goto search;
Josef Bacik2552d172009-04-03 10:14:19 -04007222 } else if (!ins->objectid) {
7223 ret = -ENOSPC;
Josef Bacikd82a6f12011-05-11 15:26:06 -04007224 } else if (ins->objectid) {
Josef Bacik2552d172009-04-03 10:14:19 -04007225 ret = 0;
7226 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007227out:
Miao Xiea4820392013-09-09 13:19:42 +08007228 if (ret == -ENOSPC)
7229 ins->offset = max_extent_size;
Chris Mason0f70abe2007-02-28 16:46:22 -05007230 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05007231}
Chris Masonec44a352008-04-28 15:29:52 -04007232
Josef Bacik9ed74f22009-09-11 16:12:44 -04007233static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
7234 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04007235{
7236 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb82010-05-16 10:46:24 -04007237 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007238
Josef Bacik9ed74f22009-09-11 16:12:44 -04007239 spin_lock(&info->lock);
Frank Holtonefe120a2013-12-20 11:37:06 -05007240 printk(KERN_INFO "BTRFS: space_info %llu has %llu free, is %sfull\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007241 info->flags,
7242 info->total_bytes - info->bytes_used - info->bytes_pinned -
7243 info->bytes_reserved - info->bytes_readonly,
Chris Masond3977122009-01-05 21:25:51 -05007244 (info->full) ? "" : "not ");
Frank Holtonefe120a2013-12-20 11:37:06 -05007245 printk(KERN_INFO "BTRFS: space_info total=%llu, used=%llu, pinned=%llu, "
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04007246 "reserved=%llu, may_use=%llu, readonly=%llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007247 info->total_bytes, info->bytes_used, info->bytes_pinned,
7248 info->bytes_reserved, info->bytes_may_use,
7249 info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007250 spin_unlock(&info->lock);
7251
7252 if (!dump_block_groups)
7253 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007254
Josef Bacik80eb2342008-10-29 14:49:05 -04007255 down_read(&info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04007256again:
7257 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04007258 spin_lock(&cache->lock);
Frank Holtonefe120a2013-12-20 11:37:06 -05007259 printk(KERN_INFO "BTRFS: "
7260 "block group %llu has %llu bytes, "
7261 "%llu used %llu pinned %llu reserved %s\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007262 cache->key.objectid, cache->key.offset,
7263 btrfs_block_group_used(&cache->item), cache->pinned,
7264 cache->reserved, cache->ro ? "[readonly]" : "");
Josef Bacik0f9dd462008-09-23 13:14:11 -04007265 btrfs_dump_free_space(cache, bytes);
7266 spin_unlock(&cache->lock);
7267 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04007268 if (++index < BTRFS_NR_RAID_TYPES)
7269 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04007270 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04007271}
Zheng Yane8569812008-09-26 10:05:48 -04007272
Josef Bacik00361582013-08-14 14:02:47 -04007273int btrfs_reserve_extent(struct btrfs_root *root,
Yan Zheng11833d62009-09-11 16:11:19 -04007274 u64 num_bytes, u64 min_alloc_size,
7275 u64 empty_size, u64 hint_byte,
Miao Xiee570fd22014-06-19 10:42:50 +08007276 struct btrfs_key *ins, int is_data, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05007277{
Miao Xie9e622d62012-01-26 15:01:12 -05007278 bool final_tried = false;
David Sterbab6919a52013-04-29 13:39:40 +00007279 u64 flags;
Chris Masonfec577f2007-02-26 10:40:21 -05007280 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04007281
David Sterbab6919a52013-04-29 13:39:40 +00007282 flags = btrfs_get_alloc_profile(root, is_data);
Chris Mason98d20f62008-04-14 09:46:10 -04007283again:
Chris Masondb945352007-10-15 16:15:53 -04007284 WARN_ON(num_bytes < root->sectorsize);
Josef Bacik00361582013-08-14 14:02:47 -04007285 ret = find_free_extent(root, num_bytes, empty_size, hint_byte, ins,
Miao Xiee570fd22014-06-19 10:42:50 +08007286 flags, delalloc);
Chris Mason3b951512008-04-17 11:29:12 -04007287
Miao Xie9e622d62012-01-26 15:01:12 -05007288 if (ret == -ENOSPC) {
Miao Xiea4820392013-09-09 13:19:42 +08007289 if (!final_tried && ins->offset) {
7290 num_bytes = min(num_bytes >> 1, ins->offset);
Zach Brown24542bf2012-11-16 00:04:43 +00007291 num_bytes = round_down(num_bytes, root->sectorsize);
Miao Xie9e622d62012-01-26 15:01:12 -05007292 num_bytes = max(num_bytes, min_alloc_size);
Miao Xie9e622d62012-01-26 15:01:12 -05007293 if (num_bytes == min_alloc_size)
7294 final_tried = true;
7295 goto again;
7296 } else if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
7297 struct btrfs_space_info *sinfo;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007298
David Sterbab6919a52013-04-29 13:39:40 +00007299 sinfo = __find_space_info(root->fs_info, flags);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007300 btrfs_err(root->fs_info, "allocation failed flags %llu, wanted %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007301 flags, num_bytes);
Jeff Mahoney53804282012-03-01 14:56:28 +01007302 if (sinfo)
7303 dump_space_info(sinfo, num_bytes, 1);
Miao Xie9e622d62012-01-26 15:01:12 -05007304 }
Chris Mason925baed2008-06-25 16:01:30 -04007305 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04007306
7307 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007308}
7309
Chris Masone688b7252011-10-31 20:52:39 -04007310static int __btrfs_free_reserved_extent(struct btrfs_root *root,
Miao Xiee570fd22014-06-19 10:42:50 +08007311 u64 start, u64 len,
7312 int pin, int delalloc)
Chris Mason65b51a02008-08-01 15:11:20 -04007313{
Josef Bacik0f9dd462008-09-23 13:14:11 -04007314 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05007315 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007316
Josef Bacik0f9dd462008-09-23 13:14:11 -04007317 cache = btrfs_lookup_block_group(root->fs_info, start);
7318 if (!cache) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007319 btrfs_err(root->fs_info, "Unable to find block group for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007320 start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04007321 return -ENOSPC;
7322 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05007323
Chris Masone688b7252011-10-31 20:52:39 -04007324 if (pin)
7325 pin_down_extent(root, cache, start, len, 1);
7326 else {
Filipe Mananadcc82f42015-03-23 14:07:40 +00007327 if (btrfs_test_opt(root, DISCARD))
7328 ret = btrfs_discard_extent(root, start, len, NULL);
Chris Masone688b7252011-10-31 20:52:39 -04007329 btrfs_add_free_space(cache, start, len);
Miao Xiee570fd22014-06-19 10:42:50 +08007330 btrfs_update_reserved_bytes(cache, len, RESERVE_FREE, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04007331 }
Dongsheng Yang31193212014-12-12 16:44:35 +08007332
Chris Masonfa9c0d792009-04-03 09:47:43 -04007333 btrfs_put_block_group(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04007334
liubo1abe9b82011-03-24 11:18:59 +00007335 trace_btrfs_reserved_extent_free(root, start, len);
7336
Chris Masone6dcd2d2008-07-17 12:53:50 -04007337 return ret;
7338}
7339
Chris Masone688b7252011-10-31 20:52:39 -04007340int btrfs_free_reserved_extent(struct btrfs_root *root,
Miao Xiee570fd22014-06-19 10:42:50 +08007341 u64 start, u64 len, int delalloc)
Chris Masone688b7252011-10-31 20:52:39 -04007342{
Miao Xiee570fd22014-06-19 10:42:50 +08007343 return __btrfs_free_reserved_extent(root, start, len, 0, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04007344}
7345
7346int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root,
7347 u64 start, u64 len)
7348{
Miao Xiee570fd22014-06-19 10:42:50 +08007349 return __btrfs_free_reserved_extent(root, start, len, 1, 0);
Chris Masone688b7252011-10-31 20:52:39 -04007350}
7351
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007352static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
7353 struct btrfs_root *root,
7354 u64 parent, u64 root_objectid,
7355 u64 flags, u64 owner, u64 offset,
7356 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04007357{
7358 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007359 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007360 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007361 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007362 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007363 struct extent_buffer *leaf;
7364 int type;
7365 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04007366
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007367 if (parent > 0)
7368 type = BTRFS_SHARED_DATA_REF_KEY;
7369 else
7370 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04007371
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007372 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05007373
7374 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00007375 if (!path)
7376 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05007377
Chris Masonb9473432009-03-13 11:00:37 -04007378 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007379 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
7380 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007381 if (ret) {
7382 btrfs_free_path(path);
7383 return ret;
7384 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04007385
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007386 leaf = path->nodes[0];
7387 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05007388 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007389 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
7390 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
7391 btrfs_set_extent_flags(leaf, extent_item,
7392 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05007393
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007394 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
7395 btrfs_set_extent_inline_ref_type(leaf, iref, type);
7396 if (parent > 0) {
7397 struct btrfs_shared_data_ref *ref;
7398 ref = (struct btrfs_shared_data_ref *)(iref + 1);
7399 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
7400 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
7401 } else {
7402 struct btrfs_extent_data_ref *ref;
7403 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
7404 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
7405 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
7406 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
7407 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
7408 }
Chris Mason47e4bb92008-02-01 14:51:59 -05007409
7410 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05007411 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04007412
Josef Bacikce93ec52014-11-17 15:45:48 -05007413 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007414 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007415 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007416 ins->objectid, ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05007417 BUG();
7418 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04007419 trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007420 return ret;
7421}
7422
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007423static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
7424 struct btrfs_root *root,
7425 u64 parent, u64 root_objectid,
7426 u64 flags, struct btrfs_disk_key *key,
Josef Bacikfcebe452014-05-13 17:30:47 -07007427 int level, struct btrfs_key *ins,
7428 int no_quota)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007429{
7430 int ret;
7431 struct btrfs_fs_info *fs_info = root->fs_info;
7432 struct btrfs_extent_item *extent_item;
7433 struct btrfs_tree_block_info *block_info;
7434 struct btrfs_extent_inline_ref *iref;
7435 struct btrfs_path *path;
7436 struct extent_buffer *leaf;
Josef Bacik3173a182013-03-07 14:22:04 -05007437 u32 size = sizeof(*extent_item) + sizeof(*iref);
Josef Bacikfcebe452014-05-13 17:30:47 -07007438 u64 num_bytes = ins->offset;
Josef Bacik3173a182013-03-07 14:22:04 -05007439 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
7440 SKINNY_METADATA);
7441
7442 if (!skinny_metadata)
7443 size += sizeof(*block_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007444
7445 path = btrfs_alloc_path();
Josef Bacik857cc2f2013-10-07 15:21:08 -04007446 if (!path) {
7447 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
David Sterba707e8a02014-06-04 19:22:26 +02007448 root->nodesize);
Mark Fashehd8926bb2011-07-13 10:38:47 -07007449 return -ENOMEM;
Josef Bacik857cc2f2013-10-07 15:21:08 -04007450 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007451
7452 path->leave_spinning = 1;
7453 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
7454 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007455 if (ret) {
Chris Masondd825252015-04-01 08:36:05 -07007456 btrfs_free_path(path);
Josef Bacik857cc2f2013-10-07 15:21:08 -04007457 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
David Sterba707e8a02014-06-04 19:22:26 +02007458 root->nodesize);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007459 return ret;
7460 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007461
7462 leaf = path->nodes[0];
7463 extent_item = btrfs_item_ptr(leaf, path->slots[0],
7464 struct btrfs_extent_item);
7465 btrfs_set_extent_refs(leaf, extent_item, 1);
7466 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
7467 btrfs_set_extent_flags(leaf, extent_item,
7468 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007469
Josef Bacik3173a182013-03-07 14:22:04 -05007470 if (skinny_metadata) {
7471 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
David Sterba707e8a02014-06-04 19:22:26 +02007472 num_bytes = root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05007473 } else {
7474 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
7475 btrfs_set_tree_block_key(leaf, block_info, key);
7476 btrfs_set_tree_block_level(leaf, block_info, level);
7477 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
7478 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007479
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007480 if (parent > 0) {
7481 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
7482 btrfs_set_extent_inline_ref_type(leaf, iref,
7483 BTRFS_SHARED_BLOCK_REF_KEY);
7484 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
7485 } else {
7486 btrfs_set_extent_inline_ref_type(leaf, iref,
7487 BTRFS_TREE_BLOCK_REF_KEY);
7488 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
7489 }
7490
7491 btrfs_mark_buffer_dirty(leaf);
7492 btrfs_free_path(path);
7493
Josef Bacikce93ec52014-11-17 15:45:48 -05007494 ret = update_block_group(trans, root, ins->objectid, root->nodesize,
7495 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007496 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007497 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007498 ins->objectid, ins->offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007499 BUG();
7500 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04007501
David Sterba707e8a02014-06-04 19:22:26 +02007502 trace_btrfs_reserved_extent_alloc(root, ins->objectid, root->nodesize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007503 return ret;
7504}
7505
7506int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
7507 struct btrfs_root *root,
7508 u64 root_objectid, u64 owner,
7509 u64 offset, struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04007510{
7511 int ret;
Chris Mason1c2308f2008-09-23 13:14:13 -04007512
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007513 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04007514
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007515 ret = btrfs_add_delayed_data_ref(root->fs_info, trans, ins->objectid,
7516 ins->offset, 0,
7517 root_objectid, owner, offset,
7518 BTRFS_ADD_DELAYED_EXTENT, NULL, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007519 return ret;
7520}
Chris Masone02119d2008-09-05 16:13:11 -04007521
7522/*
7523 * this is used by the tree logging recovery code. It records that
7524 * an extent has been allocated and makes sure to clear the free
7525 * space cache bits as well
7526 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007527int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
7528 struct btrfs_root *root,
7529 u64 root_objectid, u64 owner, u64 offset,
7530 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04007531{
7532 int ret;
7533 struct btrfs_block_group_cache *block_group;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04007534
7535 /*
7536 * Mixed block groups will exclude before processing the log so we only
7537 * need to do the exlude dance if this fs isn't mixed.
7538 */
7539 if (!btrfs_fs_incompat(root->fs_info, MIXED_GROUPS)) {
7540 ret = __exclude_logged_extent(root, ins->objectid, ins->offset);
7541 if (ret)
7542 return ret;
7543 }
Chris Masone02119d2008-09-05 16:13:11 -04007544
Chris Masone02119d2008-09-05 16:13:11 -04007545 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04007546 if (!block_group)
7547 return -EINVAL;
Yan Zheng11833d62009-09-11 16:11:19 -04007548
Josef Bacikfb25e912011-07-26 17:00:46 -04007549 ret = btrfs_update_reserved_bytes(block_group, ins->offset,
Miao Xiee570fd22014-06-19 10:42:50 +08007550 RESERVE_ALLOC_NO_ACCOUNT, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007551 BUG_ON(ret); /* logic error */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007552 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
7553 0, owner, offset, ins, 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04007554 btrfs_put_block_group(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04007555 return ret;
7556}
7557
Eric Sandeen48a3b632013-04-25 20:41:01 +00007558static struct extent_buffer *
7559btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
David Sterbafe864572014-06-15 02:28:42 +02007560 u64 bytenr, int level)
Chris Mason65b51a02008-08-01 15:11:20 -04007561{
7562 struct extent_buffer *buf;
7563
David Sterbaa83fffb2014-06-15 02:39:54 +02007564 buf = btrfs_find_create_tree_block(root, bytenr);
Chris Mason65b51a02008-08-01 15:11:20 -04007565 if (!buf)
7566 return ERR_PTR(-ENOMEM);
7567 btrfs_set_header_generation(buf, trans->transid);
Chris Mason85d4e462011-07-26 16:11:19 -04007568 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04007569 btrfs_tree_lock(buf);
Daniel Dressler01d58472014-11-21 17:15:07 +09007570 clean_tree_block(trans, root->fs_info, buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05007571 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
Chris Masonb4ce94d2009-02-04 09:25:08 -05007572
7573 btrfs_set_lock_blocking(buf);
Chris Mason65b51a02008-08-01 15:11:20 -04007574 btrfs_set_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05007575
Chris Masond0c803c2008-09-11 16:17:57 -04007576 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Filipe Manana656f30d2014-09-26 12:25:56 +01007577 buf->log_index = root->log_transid % 2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00007578 /*
7579 * we allow two log transactions at a time, use different
7580 * EXENT bit to differentiate dirty pages.
7581 */
Filipe Manana656f30d2014-09-26 12:25:56 +01007582 if (buf->log_index == 0)
Yan, Zheng8cef4e12009-11-12 09:33:26 +00007583 set_extent_dirty(&root->dirty_log_pages, buf->start,
7584 buf->start + buf->len - 1, GFP_NOFS);
7585 else
7586 set_extent_new(&root->dirty_log_pages, buf->start,
7587 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond0c803c2008-09-11 16:17:57 -04007588 } else {
Filipe Manana656f30d2014-09-26 12:25:56 +01007589 buf->log_index = -1;
Chris Masond0c803c2008-09-11 16:17:57 -04007590 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
7591 buf->start + buf->len - 1, GFP_NOFS);
7592 }
Chris Mason65b51a02008-08-01 15:11:20 -04007593 trans->blocks_used++;
Chris Masonb4ce94d2009-02-04 09:25:08 -05007594 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04007595 return buf;
7596}
7597
Yan, Zhengf0486c62010-05-16 10:46:25 -04007598static struct btrfs_block_rsv *
7599use_block_rsv(struct btrfs_trans_handle *trans,
7600 struct btrfs_root *root, u32 blocksize)
7601{
7602 struct btrfs_block_rsv *block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00007603 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007604 int ret;
Miao Xied88033d2013-05-13 13:55:12 +00007605 bool global_updated = false;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007606
7607 block_rsv = get_block_rsv(trans, root);
7608
Miao Xieb586b322013-05-13 13:55:10 +00007609 if (unlikely(block_rsv->size == 0))
7610 goto try_reserve;
Miao Xied88033d2013-05-13 13:55:12 +00007611again:
Yan, Zhengf0486c62010-05-16 10:46:25 -04007612 ret = block_rsv_use_bytes(block_rsv, blocksize);
7613 if (!ret)
7614 return block_rsv;
7615
Miao Xieb586b322013-05-13 13:55:10 +00007616 if (block_rsv->failfast)
7617 return ERR_PTR(ret);
7618
Miao Xied88033d2013-05-13 13:55:12 +00007619 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
7620 global_updated = true;
7621 update_global_block_rsv(root->fs_info);
7622 goto again;
7623 }
7624
Miao Xieb586b322013-05-13 13:55:10 +00007625 if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
7626 static DEFINE_RATELIMIT_STATE(_rs,
7627 DEFAULT_RATELIMIT_INTERVAL * 10,
7628 /*DEFAULT_RATELIMIT_BURST*/ 1);
7629 if (__ratelimit(&_rs))
7630 WARN(1, KERN_DEBUG
Frank Holtonefe120a2013-12-20 11:37:06 -05007631 "BTRFS: block rsv returned %d\n", ret);
Miao Xieb586b322013-05-13 13:55:10 +00007632 }
7633try_reserve:
7634 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
7635 BTRFS_RESERVE_NO_FLUSH);
7636 if (!ret)
7637 return block_rsv;
7638 /*
7639 * If we couldn't reserve metadata bytes try and use some from
Miao Xie5881cfc2013-05-13 13:55:11 +00007640 * the global reserve if its space type is the same as the global
7641 * reservation.
Miao Xieb586b322013-05-13 13:55:10 +00007642 */
Miao Xie5881cfc2013-05-13 13:55:11 +00007643 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
7644 block_rsv->space_info == global_rsv->space_info) {
Miao Xieb586b322013-05-13 13:55:10 +00007645 ret = block_rsv_use_bytes(global_rsv, blocksize);
7646 if (!ret)
7647 return global_rsv;
7648 }
7649 return ERR_PTR(ret);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007650}
7651
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05007652static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
7653 struct btrfs_block_rsv *block_rsv, u32 blocksize)
Yan, Zhengf0486c62010-05-16 10:46:25 -04007654{
7655 block_rsv_add_bytes(block_rsv, blocksize, 0);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05007656 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007657}
7658
Chris Masonfec577f2007-02-26 10:40:21 -05007659/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04007660 * finds a free extent and does all the dirty work required for allocation
Omar Sandoval67b78592015-02-24 02:47:04 -08007661 * returns the tree buffer or an ERR_PTR on error.
Chris Masonfec577f2007-02-26 10:40:21 -05007662 */
David Sterba4d75f8a2014-06-15 01:54:12 +02007663struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans,
7664 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007665 u64 parent, u64 root_objectid,
7666 struct btrfs_disk_key *key, int level,
Jan Schmidt5581a512012-05-16 17:04:52 +02007667 u64 hint, u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05007668{
Chris Masone2fa7222007-03-12 16:22:34 -04007669 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007670 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04007671 struct extent_buffer *buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08007672 struct btrfs_delayed_extent_op *extent_op;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007673 u64 flags = 0;
7674 int ret;
David Sterba4d75f8a2014-06-15 01:54:12 +02007675 u32 blocksize = root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05007676 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
7677 SKINNY_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007678
David Sterbafccb84c2014-09-29 23:53:21 +02007679 if (btrfs_test_is_dummy_root(root)) {
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04007680 buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr,
David Sterbafe864572014-06-15 02:28:42 +02007681 level);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04007682 if (!IS_ERR(buf))
7683 root->alloc_bytenr += blocksize;
7684 return buf;
7685 }
David Sterbafccb84c2014-09-29 23:53:21 +02007686
Yan, Zhengf0486c62010-05-16 10:46:25 -04007687 block_rsv = use_block_rsv(trans, root, blocksize);
7688 if (IS_ERR(block_rsv))
7689 return ERR_CAST(block_rsv);
7690
Josef Bacik00361582013-08-14 14:02:47 -04007691 ret = btrfs_reserve_extent(root, blocksize, blocksize,
Miao Xiee570fd22014-06-19 10:42:50 +08007692 empty_size, hint, &ins, 0, 0);
Omar Sandoval67b78592015-02-24 02:47:04 -08007693 if (ret)
7694 goto out_unuse;
Chris Mason55c69072008-01-09 15:55:33 -05007695
David Sterbafe864572014-06-15 02:28:42 +02007696 buf = btrfs_init_new_buffer(trans, root, ins.objectid, level);
Omar Sandoval67b78592015-02-24 02:47:04 -08007697 if (IS_ERR(buf)) {
7698 ret = PTR_ERR(buf);
7699 goto out_free_reserved;
7700 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04007701
7702 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
7703 if (parent == 0)
7704 parent = ins.objectid;
7705 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
7706 } else
7707 BUG_ON(parent > 0);
7708
7709 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
Miao Xie78a61842012-11-21 02:21:28 +00007710 extent_op = btrfs_alloc_delayed_extent_op();
Omar Sandoval67b78592015-02-24 02:47:04 -08007711 if (!extent_op) {
7712 ret = -ENOMEM;
7713 goto out_free_buf;
7714 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04007715 if (key)
7716 memcpy(&extent_op->key, key, sizeof(extent_op->key));
7717 else
7718 memset(&extent_op->key, 0, sizeof(extent_op->key));
7719 extent_op->flags_to_set = flags;
Josef Bacik3173a182013-03-07 14:22:04 -05007720 if (skinny_metadata)
7721 extent_op->update_key = 0;
7722 else
7723 extent_op->update_key = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007724 extent_op->update_flags = 1;
7725 extent_op->is_data = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04007726 extent_op->level = level;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007727
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007728 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
Omar Sandoval67b78592015-02-24 02:47:04 -08007729 ins.objectid, ins.offset,
7730 parent, root_objectid, level,
7731 BTRFS_ADD_DELAYED_EXTENT,
7732 extent_op, 0);
7733 if (ret)
7734 goto out_free_delayed;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007735 }
Chris Masonfec577f2007-02-26 10:40:21 -05007736 return buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08007737
7738out_free_delayed:
7739 btrfs_free_delayed_extent_op(extent_op);
7740out_free_buf:
7741 free_extent_buffer(buf);
7742out_free_reserved:
7743 btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 0);
7744out_unuse:
7745 unuse_block_rsv(root->fs_info, block_rsv, blocksize);
7746 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05007747}
Chris Masona28ec192007-03-06 20:08:01 -05007748
Yan Zheng2c47e6052009-06-27 21:07:35 -04007749struct walk_control {
7750 u64 refs[BTRFS_MAX_LEVEL];
7751 u64 flags[BTRFS_MAX_LEVEL];
7752 struct btrfs_key update_progress;
7753 int stage;
7754 int level;
7755 int shared_level;
7756 int update_ref;
7757 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007758 int reada_slot;
7759 int reada_count;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007760 int for_reloc;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007761};
7762
7763#define DROP_REFERENCE 1
7764#define UPDATE_BACKREF 2
7765
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007766static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
7767 struct btrfs_root *root,
7768 struct walk_control *wc,
7769 struct btrfs_path *path)
7770{
7771 u64 bytenr;
7772 u64 generation;
7773 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007774 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007775 u32 nritems;
7776 u32 blocksize;
7777 struct btrfs_key key;
7778 struct extent_buffer *eb;
7779 int ret;
7780 int slot;
7781 int nread = 0;
7782
7783 if (path->slots[wc->level] < wc->reada_slot) {
7784 wc->reada_count = wc->reada_count * 2 / 3;
7785 wc->reada_count = max(wc->reada_count, 2);
7786 } else {
7787 wc->reada_count = wc->reada_count * 3 / 2;
7788 wc->reada_count = min_t(int, wc->reada_count,
7789 BTRFS_NODEPTRS_PER_BLOCK(root));
7790 }
7791
7792 eb = path->nodes[wc->level];
7793 nritems = btrfs_header_nritems(eb);
David Sterba707e8a02014-06-04 19:22:26 +02007794 blocksize = root->nodesize;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007795
7796 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
7797 if (nread >= wc->reada_count)
7798 break;
7799
7800 cond_resched();
7801 bytenr = btrfs_node_blockptr(eb, slot);
7802 generation = btrfs_node_ptr_generation(eb, slot);
7803
7804 if (slot == path->slots[wc->level])
7805 goto reada;
7806
7807 if (wc->stage == UPDATE_BACKREF &&
7808 generation <= root->root_key.offset)
7809 continue;
7810
Yan, Zheng94fcca92009-10-09 09:25:16 -04007811 /* We don't lock the tree block, it's OK to be racy here */
Josef Bacik3173a182013-03-07 14:22:04 -05007812 ret = btrfs_lookup_extent_info(trans, root, bytenr,
7813 wc->level - 1, 1, &refs,
7814 &flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007815 /* We don't care about errors in readahead. */
7816 if (ret < 0)
7817 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007818 BUG_ON(refs == 0);
7819
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007820 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007821 if (refs == 1)
7822 goto reada;
7823
Yan, Zheng94fcca92009-10-09 09:25:16 -04007824 if (wc->level == 1 &&
7825 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7826 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007827 if (!wc->update_ref ||
7828 generation <= root->root_key.offset)
7829 continue;
7830 btrfs_node_key_to_cpu(eb, &key, slot);
7831 ret = btrfs_comp_cpu_keys(&key,
7832 &wc->update_progress);
7833 if (ret < 0)
7834 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007835 } else {
7836 if (wc->level == 1 &&
7837 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7838 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007839 }
7840reada:
David Sterbad3e46fe2014-06-15 02:04:19 +02007841 readahead_tree_block(root, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007842 nread++;
7843 }
7844 wc->reada_slot = slot;
7845}
7846
Qu Wenruo0ed47922015-04-16 16:55:08 +08007847/*
7848 * TODO: Modify related function to add related node/leaf to dirty_extent_root,
7849 * for later qgroup accounting.
7850 *
7851 * Current, this function does nothing.
7852 */
Mark Fasheh11526512014-07-17 12:39:01 -07007853static int account_leaf_items(struct btrfs_trans_handle *trans,
7854 struct btrfs_root *root,
7855 struct extent_buffer *eb)
7856{
7857 int nr = btrfs_header_nritems(eb);
Qu Wenruo0ed47922015-04-16 16:55:08 +08007858 int i, extent_type;
Mark Fasheh11526512014-07-17 12:39:01 -07007859 struct btrfs_key key;
7860 struct btrfs_file_extent_item *fi;
7861 u64 bytenr, num_bytes;
7862
7863 for (i = 0; i < nr; i++) {
7864 btrfs_item_key_to_cpu(eb, &key, i);
7865
7866 if (key.type != BTRFS_EXTENT_DATA_KEY)
7867 continue;
7868
7869 fi = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
7870 /* filter out non qgroup-accountable extents */
7871 extent_type = btrfs_file_extent_type(eb, fi);
7872
7873 if (extent_type == BTRFS_FILE_EXTENT_INLINE)
7874 continue;
7875
7876 bytenr = btrfs_file_extent_disk_bytenr(eb, fi);
7877 if (!bytenr)
7878 continue;
7879
7880 num_bytes = btrfs_file_extent_disk_num_bytes(eb, fi);
Mark Fasheh11526512014-07-17 12:39:01 -07007881 }
7882 return 0;
7883}
7884
7885/*
7886 * Walk up the tree from the bottom, freeing leaves and any interior
7887 * nodes which have had all slots visited. If a node (leaf or
7888 * interior) is freed, the node above it will have it's slot
7889 * incremented. The root node will never be freed.
7890 *
7891 * At the end of this function, we should have a path which has all
7892 * slots incremented to the next position for a search. If we need to
7893 * read a new node it will be NULL and the node above it will have the
7894 * correct slot selected for a later read.
7895 *
7896 * If we increment the root nodes slot counter past the number of
7897 * elements, 1 is returned to signal completion of the search.
7898 */
7899static int adjust_slots_upwards(struct btrfs_root *root,
7900 struct btrfs_path *path, int root_level)
7901{
7902 int level = 0;
7903 int nr, slot;
7904 struct extent_buffer *eb;
7905
7906 if (root_level == 0)
7907 return 1;
7908
7909 while (level <= root_level) {
7910 eb = path->nodes[level];
7911 nr = btrfs_header_nritems(eb);
7912 path->slots[level]++;
7913 slot = path->slots[level];
7914 if (slot >= nr || level == 0) {
7915 /*
7916 * Don't free the root - we will detect this
7917 * condition after our loop and return a
7918 * positive value for caller to stop walking the tree.
7919 */
7920 if (level != root_level) {
7921 btrfs_tree_unlock_rw(eb, path->locks[level]);
7922 path->locks[level] = 0;
7923
7924 free_extent_buffer(eb);
7925 path->nodes[level] = NULL;
7926 path->slots[level] = 0;
7927 }
7928 } else {
7929 /*
7930 * We have a valid slot to walk back down
7931 * from. Stop here so caller can process these
7932 * new nodes.
7933 */
7934 break;
7935 }
7936
7937 level++;
7938 }
7939
7940 eb = path->nodes[root_level];
7941 if (path->slots[root_level] >= btrfs_header_nritems(eb))
7942 return 1;
7943
7944 return 0;
7945}
7946
7947/*
7948 * root_eb is the subtree root and is locked before this function is called.
Qu Wenruo0ed47922015-04-16 16:55:08 +08007949 * TODO: Modify this function to mark all (including complete shared node)
7950 * to dirty_extent_root to allow it get accounted in qgroup.
Mark Fasheh11526512014-07-17 12:39:01 -07007951 */
7952static int account_shared_subtree(struct btrfs_trans_handle *trans,
7953 struct btrfs_root *root,
7954 struct extent_buffer *root_eb,
7955 u64 root_gen,
7956 int root_level)
7957{
7958 int ret = 0;
7959 int level;
7960 struct extent_buffer *eb = root_eb;
7961 struct btrfs_path *path = NULL;
7962
7963 BUG_ON(root_level < 0 || root_level > BTRFS_MAX_LEVEL);
7964 BUG_ON(root_eb == NULL);
7965
7966 if (!root->fs_info->quota_enabled)
7967 return 0;
7968
7969 if (!extent_buffer_uptodate(root_eb)) {
7970 ret = btrfs_read_buffer(root_eb, root_gen);
7971 if (ret)
7972 goto out;
7973 }
7974
7975 if (root_level == 0) {
7976 ret = account_leaf_items(trans, root, root_eb);
7977 goto out;
7978 }
7979
7980 path = btrfs_alloc_path();
7981 if (!path)
7982 return -ENOMEM;
7983
7984 /*
7985 * Walk down the tree. Missing extent blocks are filled in as
7986 * we go. Metadata is accounted every time we read a new
7987 * extent block.
7988 *
7989 * When we reach a leaf, we account for file extent items in it,
7990 * walk back up the tree (adjusting slot pointers as we go)
7991 * and restart the search process.
7992 */
7993 extent_buffer_get(root_eb); /* For path */
7994 path->nodes[root_level] = root_eb;
7995 path->slots[root_level] = 0;
7996 path->locks[root_level] = 0; /* so release_path doesn't try to unlock */
7997walk_down:
7998 level = root_level;
7999 while (level >= 0) {
8000 if (path->nodes[level] == NULL) {
Mark Fasheh11526512014-07-17 12:39:01 -07008001 int parent_slot;
8002 u64 child_gen;
8003 u64 child_bytenr;
8004
8005 /* We need to get child blockptr/gen from
8006 * parent before we can read it. */
8007 eb = path->nodes[level + 1];
8008 parent_slot = path->slots[level + 1];
8009 child_bytenr = btrfs_node_blockptr(eb, parent_slot);
8010 child_gen = btrfs_node_ptr_generation(eb, parent_slot);
8011
David Sterbace86cd52014-06-15 01:07:32 +02008012 eb = read_tree_block(root, child_bytenr, child_gen);
Liu Bo64c043d2015-05-25 17:30:15 +08008013 if (IS_ERR(eb)) {
8014 ret = PTR_ERR(eb);
8015 goto out;
8016 } else if (!extent_buffer_uptodate(eb)) {
Liu Bo8635eda2015-05-25 17:30:14 +08008017 free_extent_buffer(eb);
Liu Bo64c043d2015-05-25 17:30:15 +08008018 ret = -EIO;
Mark Fasheh11526512014-07-17 12:39:01 -07008019 goto out;
8020 }
8021
8022 path->nodes[level] = eb;
8023 path->slots[level] = 0;
8024
8025 btrfs_tree_read_lock(eb);
8026 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
8027 path->locks[level] = BTRFS_READ_LOCK_BLOCKING;
Mark Fasheh11526512014-07-17 12:39:01 -07008028 }
8029
8030 if (level == 0) {
8031 ret = account_leaf_items(trans, root, path->nodes[level]);
8032 if (ret)
8033 goto out;
8034
8035 /* Nonzero return here means we completed our search */
8036 ret = adjust_slots_upwards(root, path, root_level);
8037 if (ret)
8038 break;
8039
8040 /* Restart search with new slots */
8041 goto walk_down;
8042 }
8043
8044 level--;
8045 }
8046
8047 ret = 0;
8048out:
8049 btrfs_free_path(path);
8050
8051 return ret;
8052}
8053
Chris Mason9aca1d52007-03-13 11:09:37 -04008054/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008055 * helper to process tree block while walking down the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04008056 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04008057 * when wc->stage == UPDATE_BACKREF, this function updates
8058 * back refs for pointers in the block.
8059 *
8060 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04008061 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008062static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
8063 struct btrfs_root *root,
8064 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008065 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04008066{
8067 int level = wc->level;
8068 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04008069 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
8070 int ret;
8071
8072 if (wc->stage == UPDATE_BACKREF &&
8073 btrfs_header_owner(eb) != root->root_key.objectid)
8074 return 1;
8075
8076 /*
8077 * when reference count of tree block is 1, it won't increase
8078 * again. once full backref flag is set, we never clear it.
8079 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04008080 if (lookup_info &&
8081 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
8082 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008083 BUG_ON(!path->locks[level]);
8084 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05008085 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008086 &wc->refs[level],
8087 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008088 BUG_ON(ret == -ENOMEM);
8089 if (ret)
8090 return ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008091 BUG_ON(wc->refs[level] == 0);
8092 }
8093
Yan Zheng2c47e6052009-06-27 21:07:35 -04008094 if (wc->stage == DROP_REFERENCE) {
8095 if (wc->refs[level] > 1)
8096 return 1;
8097
8098 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04008099 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008100 path->locks[level] = 0;
8101 }
8102 return 0;
8103 }
8104
8105 /* wc->stage == UPDATE_BACKREF */
8106 if (!(wc->flags[level] & flag)) {
8107 BUG_ON(!path->locks[level]);
Josef Bacike339a6b2014-07-02 10:54:25 -07008108 ret = btrfs_inc_ref(trans, root, eb, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008109 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07008110 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008111 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008112 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
Josef Bacikb1c79e02013-05-09 13:49:30 -04008113 eb->len, flag,
8114 btrfs_header_level(eb), 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008115 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008116 wc->flags[level] |= flag;
8117 }
8118
8119 /*
8120 * the block is shared by multiple trees, so it's not good to
8121 * keep the tree lock
8122 */
8123 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04008124 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008125 path->locks[level] = 0;
8126 }
8127 return 0;
8128}
8129
8130/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008131 * helper to process tree block pointer.
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008132 *
8133 * when wc->stage == DROP_REFERENCE, this function checks
8134 * reference count of the block pointed to. if the block
8135 * is shared and we need update back refs for the subtree
8136 * rooted at the block, this function changes wc->stage to
8137 * UPDATE_BACKREF. if the block is shared and there is no
8138 * need to update back, this function drops the reference
8139 * to the block.
8140 *
8141 * NOTE: return value 1 means we should stop walking down.
8142 */
8143static noinline int do_walk_down(struct btrfs_trans_handle *trans,
8144 struct btrfs_root *root,
8145 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008146 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008147{
8148 u64 bytenr;
8149 u64 generation;
8150 u64 parent;
8151 u32 blocksize;
8152 struct btrfs_key key;
8153 struct extent_buffer *next;
8154 int level = wc->level;
8155 int reada = 0;
8156 int ret = 0;
Mark Fasheh11526512014-07-17 12:39:01 -07008157 bool need_account = false;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008158
8159 generation = btrfs_node_ptr_generation(path->nodes[level],
8160 path->slots[level]);
8161 /*
8162 * if the lower level block was created before the snapshot
8163 * was created, we know there is no need to update back refs
8164 * for the subtree
8165 */
8166 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04008167 generation <= root->root_key.offset) {
8168 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008169 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008170 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008171
8172 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
David Sterba707e8a02014-06-04 19:22:26 +02008173 blocksize = root->nodesize;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008174
Daniel Dressler01d58472014-11-21 17:15:07 +09008175 next = btrfs_find_tree_block(root->fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008176 if (!next) {
David Sterbaa83fffb2014-06-15 02:39:54 +02008177 next = btrfs_find_create_tree_block(root, bytenr);
Miao Xie90d2c51d2010-03-25 12:37:12 +00008178 if (!next)
8179 return -ENOMEM;
Josef Bacikb2aaaa32013-07-05 17:05:38 -04008180 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
8181 level - 1);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008182 reada = 1;
8183 }
8184 btrfs_tree_lock(next);
8185 btrfs_set_lock_blocking(next);
8186
Josef Bacik3173a182013-03-07 14:22:04 -05008187 ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008188 &wc->refs[level - 1],
8189 &wc->flags[level - 1]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008190 if (ret < 0) {
8191 btrfs_tree_unlock(next);
8192 return ret;
8193 }
8194
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008195 if (unlikely(wc->refs[level - 1] == 0)) {
8196 btrfs_err(root->fs_info, "Missing references.");
8197 BUG();
8198 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008199 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008200
Yan, Zheng94fcca92009-10-09 09:25:16 -04008201 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008202 if (wc->refs[level - 1] > 1) {
Mark Fasheh11526512014-07-17 12:39:01 -07008203 need_account = true;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008204 if (level == 1 &&
8205 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8206 goto skip;
8207
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008208 if (!wc->update_ref ||
8209 generation <= root->root_key.offset)
8210 goto skip;
8211
8212 btrfs_node_key_to_cpu(path->nodes[level], &key,
8213 path->slots[level]);
8214 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
8215 if (ret < 0)
8216 goto skip;
8217
8218 wc->stage = UPDATE_BACKREF;
8219 wc->shared_level = level - 1;
8220 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008221 } else {
8222 if (level == 1 &&
8223 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8224 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008225 }
8226
Chris Masonb9fab912012-05-06 07:23:47 -04008227 if (!btrfs_buffer_uptodate(next, generation, 0)) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008228 btrfs_tree_unlock(next);
8229 free_extent_buffer(next);
8230 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008231 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008232 }
8233
8234 if (!next) {
8235 if (reada && level == 1)
8236 reada_walk_down(trans, root, wc, path);
David Sterbace86cd52014-06-15 01:07:32 +02008237 next = read_tree_block(root, bytenr, generation);
Liu Bo64c043d2015-05-25 17:30:15 +08008238 if (IS_ERR(next)) {
8239 return PTR_ERR(next);
8240 } else if (!extent_buffer_uptodate(next)) {
Josef Bacik416bc652013-04-23 14:17:42 -04008241 free_extent_buffer(next);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00008242 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04008243 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008244 btrfs_tree_lock(next);
8245 btrfs_set_lock_blocking(next);
8246 }
8247
8248 level--;
8249 BUG_ON(level != btrfs_header_level(next));
8250 path->nodes[level] = next;
8251 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008252 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008253 wc->level = level;
8254 if (wc->level == 1)
8255 wc->reada_slot = 0;
8256 return 0;
8257skip:
8258 wc->refs[level - 1] = 0;
8259 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008260 if (wc->stage == DROP_REFERENCE) {
8261 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
8262 parent = path->nodes[level]->start;
8263 } else {
8264 BUG_ON(root->root_key.objectid !=
8265 btrfs_header_owner(path->nodes[level]));
8266 parent = 0;
8267 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008268
Mark Fasheh11526512014-07-17 12:39:01 -07008269 if (need_account) {
8270 ret = account_shared_subtree(trans, root, next,
8271 generation, level - 1);
8272 if (ret) {
David Sterba94647322015-10-08 11:01:36 +02008273 btrfs_err_rl(root->fs_info,
8274 "Error "
Mark Fasheh11526512014-07-17 12:39:01 -07008275 "%d accounting shared subtree. Quota "
David Sterba94647322015-10-08 11:01:36 +02008276 "is out of sync, rescan required.",
8277 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07008278 }
8279 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008280 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008281 root->root_key.objectid, level - 1, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008282 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008283 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008284 btrfs_tree_unlock(next);
8285 free_extent_buffer(next);
Yan, Zheng94fcca92009-10-09 09:25:16 -04008286 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008287 return 1;
8288}
8289
8290/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008291 * helper to process tree block while walking up the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04008292 *
8293 * when wc->stage == DROP_REFERENCE, this function drops
8294 * reference count on the block.
8295 *
8296 * when wc->stage == UPDATE_BACKREF, this function changes
8297 * wc->stage back to DROP_REFERENCE if we changed wc->stage
8298 * to UPDATE_BACKREF previously while processing the block.
8299 *
8300 * NOTE: return value 1 means we should stop walking up.
8301 */
8302static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
8303 struct btrfs_root *root,
8304 struct btrfs_path *path,
8305 struct walk_control *wc)
8306{
Yan, Zhengf0486c62010-05-16 10:46:25 -04008307 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008308 int level = wc->level;
8309 struct extent_buffer *eb = path->nodes[level];
8310 u64 parent = 0;
8311
8312 if (wc->stage == UPDATE_BACKREF) {
8313 BUG_ON(wc->shared_level < level);
8314 if (level < wc->shared_level)
8315 goto out;
8316
Yan Zheng2c47e6052009-06-27 21:07:35 -04008317 ret = find_next_key(path, level + 1, &wc->update_progress);
8318 if (ret > 0)
8319 wc->update_ref = 0;
8320
8321 wc->stage = DROP_REFERENCE;
8322 wc->shared_level = -1;
8323 path->slots[level] = 0;
8324
8325 /*
8326 * check reference count again if the block isn't locked.
8327 * we should start walking down the tree again if reference
8328 * count is one.
8329 */
8330 if (!path->locks[level]) {
8331 BUG_ON(level == 0);
8332 btrfs_tree_lock(eb);
8333 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04008334 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008335
8336 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05008337 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008338 &wc->refs[level],
8339 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008340 if (ret < 0) {
8341 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00008342 path->locks[level] = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008343 return ret;
8344 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008345 BUG_ON(wc->refs[level] == 0);
8346 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04008347 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00008348 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008349 return 1;
8350 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008351 }
8352 }
8353
8354 /* wc->stage == DROP_REFERENCE */
8355 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
8356
8357 if (wc->refs[level] == 1) {
8358 if (level == 0) {
8359 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
Josef Bacike339a6b2014-07-02 10:54:25 -07008360 ret = btrfs_dec_ref(trans, root, eb, 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008361 else
Josef Bacike339a6b2014-07-02 10:54:25 -07008362 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008363 BUG_ON(ret); /* -ENOMEM */
Mark Fasheh11526512014-07-17 12:39:01 -07008364 ret = account_leaf_items(trans, root, eb);
8365 if (ret) {
David Sterba94647322015-10-08 11:01:36 +02008366 btrfs_err_rl(root->fs_info,
8367 "error "
Mark Fasheh11526512014-07-17 12:39:01 -07008368 "%d accounting leaf items. Quota "
David Sterba94647322015-10-08 11:01:36 +02008369 "is out of sync, rescan required.",
8370 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07008371 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008372 }
8373 /* make block locked assertion in clean_tree_block happy */
8374 if (!path->locks[level] &&
8375 btrfs_header_generation(eb) == trans->transid) {
8376 btrfs_tree_lock(eb);
8377 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04008378 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008379 }
Daniel Dressler01d58472014-11-21 17:15:07 +09008380 clean_tree_block(trans, root->fs_info, eb);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008381 }
8382
8383 if (eb == root->node) {
8384 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
8385 parent = eb->start;
8386 else
8387 BUG_ON(root->root_key.objectid !=
8388 btrfs_header_owner(eb));
8389 } else {
8390 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
8391 parent = path->nodes[level + 1]->start;
8392 else
8393 BUG_ON(root->root_key.objectid !=
8394 btrfs_header_owner(path->nodes[level + 1]));
8395 }
8396
Jan Schmidt5581a512012-05-16 17:04:52 +02008397 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008398out:
8399 wc->refs[level] = 0;
8400 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008401 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008402}
8403
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008404static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
8405 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008406 struct btrfs_path *path,
8407 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04008408{
Yan Zheng2c47e6052009-06-27 21:07:35 -04008409 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008410 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008411 int ret;
8412
Yan Zheng2c47e6052009-06-27 21:07:35 -04008413 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04008414 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008415 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04008416 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008417
Yan Zheng2c47e6052009-06-27 21:07:35 -04008418 if (level == 0)
8419 break;
8420
Yan, Zheng7a7965f2010-02-01 02:41:17 +00008421 if (path->slots[level] >=
8422 btrfs_header_nritems(path->nodes[level]))
8423 break;
8424
Yan, Zheng94fcca92009-10-09 09:25:16 -04008425 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008426 if (ret > 0) {
8427 path->slots[level]++;
8428 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00008429 } else if (ret < 0)
8430 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008431 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008432 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04008433 return 0;
8434}
8435
Chris Masond3977122009-01-05 21:25:51 -05008436static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05008437 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04008438 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008439 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05008440{
Yan Zheng2c47e6052009-06-27 21:07:35 -04008441 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05008442 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04008443
Yan Zheng2c47e6052009-06-27 21:07:35 -04008444 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
8445 while (level < max_level && path->nodes[level]) {
8446 wc->level = level;
8447 if (path->slots[level] + 1 <
8448 btrfs_header_nritems(path->nodes[level])) {
8449 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05008450 return 0;
8451 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008452 ret = walk_up_proc(trans, root, path, wc);
8453 if (ret > 0)
8454 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05008455
Yan Zheng2c47e6052009-06-27 21:07:35 -04008456 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04008457 btrfs_tree_unlock_rw(path->nodes[level],
8458 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008459 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008460 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008461 free_extent_buffer(path->nodes[level]);
8462 path->nodes[level] = NULL;
8463 level++;
Chris Mason20524f02007-03-10 06:35:47 -05008464 }
8465 }
8466 return 1;
8467}
8468
Chris Mason9aca1d52007-03-13 11:09:37 -04008469/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04008470 * drop a subvolume tree.
8471 *
8472 * this function traverses the tree freeing any blocks that only
8473 * referenced by the tree.
8474 *
8475 * when a shared tree block is found. this function decreases its
8476 * reference count by one. if update_ref is true, this function
8477 * also make sure backrefs for the shared block and all lower level
8478 * blocks are properly updated.
David Sterba9d1a2a32013-03-12 15:13:28 +00008479 *
8480 * If called with for_reloc == 0, may exit early with -EAGAIN
Chris Mason9aca1d52007-03-13 11:09:37 -04008481 */
Jeff Mahoney2c536792011-10-03 23:22:41 -04008482int btrfs_drop_snapshot(struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008483 struct btrfs_block_rsv *block_rsv, int update_ref,
8484 int for_reloc)
Chris Mason20524f02007-03-10 06:35:47 -05008485{
Chris Mason5caf2a02007-04-02 11:20:42 -04008486 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008487 struct btrfs_trans_handle *trans;
8488 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04008489 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008490 struct walk_control *wc;
8491 struct btrfs_key key;
8492 int err = 0;
8493 int ret;
8494 int level;
Josef Bacikd29a9f62013-07-17 19:30:20 -04008495 bool root_dropped = false;
Chris Mason20524f02007-03-10 06:35:47 -05008496
Mark Fasheh11526512014-07-17 12:39:01 -07008497 btrfs_debug(root->fs_info, "Drop subvolume %llu", root->objectid);
8498
Chris Mason5caf2a02007-04-02 11:20:42 -04008499 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008500 if (!path) {
8501 err = -ENOMEM;
8502 goto out;
8503 }
Chris Mason20524f02007-03-10 06:35:47 -05008504
Yan Zheng2c47e6052009-06-27 21:07:35 -04008505 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07008506 if (!wc) {
8507 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008508 err = -ENOMEM;
8509 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07008510 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008511
Yan, Zhenga22285a2010-05-16 10:48:46 -04008512 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008513 if (IS_ERR(trans)) {
8514 err = PTR_ERR(trans);
8515 goto out_free;
8516 }
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00008517
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008518 if (block_rsv)
8519 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008520
Chris Mason9f3a7422007-08-07 15:52:19 -04008521 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008522 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008523 path->nodes[level] = btrfs_lock_root_node(root);
8524 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04008525 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008526 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008527 memset(&wc->update_progress, 0,
8528 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04008529 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04008530 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008531 memcpy(&wc->update_progress, &key,
8532 sizeof(wc->update_progress));
8533
Chris Mason6702ed42007-08-07 16:15:09 -04008534 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008535 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04008536 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008537 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
8538 path->lowest_level = 0;
8539 if (ret < 0) {
8540 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008541 goto out_end_trans;
Chris Mason9f3a7422007-08-07 15:52:19 -04008542 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008543 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008544
Chris Mason7d9eb122008-07-08 14:19:17 -04008545 /*
8546 * unlock our path, this is safe because only this
8547 * function is allowed to delete this snapshot
8548 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008549 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04008550
Yan Zheng2c47e6052009-06-27 21:07:35 -04008551 level = btrfs_header_level(root->node);
8552 while (1) {
8553 btrfs_tree_lock(path->nodes[level]);
8554 btrfs_set_lock_blocking(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04008555 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008556
8557 ret = btrfs_lookup_extent_info(trans, root,
8558 path->nodes[level]->start,
Josef Bacik3173a182013-03-07 14:22:04 -05008559 level, 1, &wc->refs[level],
Yan Zheng2c47e6052009-06-27 21:07:35 -04008560 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008561 if (ret < 0) {
8562 err = ret;
8563 goto out_end_trans;
8564 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008565 BUG_ON(wc->refs[level] == 0);
8566
8567 if (level == root_item->drop_level)
8568 break;
8569
8570 btrfs_tree_unlock(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04008571 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008572 WARN_ON(wc->refs[level] != 1);
8573 level--;
8574 }
8575 }
8576
8577 wc->level = level;
8578 wc->shared_level = -1;
8579 wc->stage = DROP_REFERENCE;
8580 wc->update_ref = update_ref;
8581 wc->keep_locks = 0;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008582 wc->for_reloc = for_reloc;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008583 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008584
8585 while (1) {
David Sterba9d1a2a32013-03-12 15:13:28 +00008586
Yan Zheng2c47e6052009-06-27 21:07:35 -04008587 ret = walk_down_tree(trans, root, path, wc);
8588 if (ret < 0) {
8589 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04008590 break;
8591 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008592
8593 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
8594 if (ret < 0) {
8595 err = ret;
8596 break;
8597 }
8598
8599 if (ret > 0) {
8600 BUG_ON(wc->stage != DROP_REFERENCE);
8601 break;
8602 }
8603
8604 if (wc->stage == DROP_REFERENCE) {
8605 level = wc->level;
8606 btrfs_node_key(path->nodes[level],
8607 &root_item->drop_progress,
8608 path->slots[level]);
8609 root_item->drop_level = level;
8610 }
8611
8612 BUG_ON(wc->level == 0);
Josef Bacik3c8f2422013-07-15 11:57:06 -04008613 if (btrfs_should_end_transaction(trans, tree_root) ||
8614 (!for_reloc && btrfs_need_cleaner_sleep(root))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008615 ret = btrfs_update_root(trans, tree_root,
8616 &root->root_key,
8617 root_item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008618 if (ret) {
8619 btrfs_abort_transaction(trans, tree_root, ret);
8620 err = ret;
8621 goto out_end_trans;
8622 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008623
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008624 btrfs_end_transaction_throttle(trans, tree_root);
Josef Bacik3c8f2422013-07-15 11:57:06 -04008625 if (!for_reloc && btrfs_need_cleaner_sleep(root)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05008626 pr_debug("BTRFS: drop snapshot early exit\n");
Josef Bacik3c8f2422013-07-15 11:57:06 -04008627 err = -EAGAIN;
8628 goto out_free;
8629 }
8630
Yan, Zhenga22285a2010-05-16 10:48:46 -04008631 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008632 if (IS_ERR(trans)) {
8633 err = PTR_ERR(trans);
8634 goto out_free;
8635 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008636 if (block_rsv)
8637 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04008638 }
Chris Mason20524f02007-03-10 06:35:47 -05008639 }
David Sterbab3b4aa72011-04-21 01:20:15 +02008640 btrfs_release_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008641 if (err)
8642 goto out_end_trans;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008643
8644 ret = btrfs_del_root(trans, tree_root, &root->root_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008645 if (ret) {
8646 btrfs_abort_transaction(trans, tree_root, ret);
8647 goto out_end_trans;
8648 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008649
Yan, Zheng76dda932009-09-21 16:00:26 -04008650 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Miao Xiecb517ea2013-05-15 07:48:19 +00008651 ret = btrfs_find_root(tree_root, &root->root_key, path,
8652 NULL, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008653 if (ret < 0) {
8654 btrfs_abort_transaction(trans, tree_root, ret);
8655 err = ret;
8656 goto out_end_trans;
8657 } else if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05008658 /* if we fail to delete the orphan item this time
8659 * around, it'll get picked up the next time.
8660 *
8661 * The most common failure here is just -ENOENT.
8662 */
8663 btrfs_del_orphan_item(trans, tree_root,
8664 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04008665 }
8666 }
8667
Miao Xie27cdeb72014-04-02 19:51:05 +08008668 if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) {
Josef Bacik2b9dbef2015-09-15 10:07:04 -04008669 btrfs_add_dropped_root(trans, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04008670 } else {
8671 free_extent_buffer(root->node);
8672 free_extent_buffer(root->commit_root);
Miao Xieb0feb9d2013-05-15 07:48:20 +00008673 btrfs_put_fs_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04008674 }
Josef Bacikd29a9f62013-07-17 19:30:20 -04008675 root_dropped = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008676out_end_trans:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008677 btrfs_end_transaction_throttle(trans, tree_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008678out_free:
Yan Zheng2c47e6052009-06-27 21:07:35 -04008679 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04008680 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008681out:
Josef Bacikd29a9f62013-07-17 19:30:20 -04008682 /*
8683 * So if we need to stop dropping the snapshot for whatever reason we
8684 * need to make sure to add it back to the dead root list so that we
8685 * keep trying to do the work later. This also cleans up roots if we
8686 * don't have it in the radix (like when we recover after a power fail
8687 * or unmount) so we don't leak memory.
8688 */
Josef Bacikb37b39c2013-07-23 16:57:15 -04008689 if (!for_reloc && root_dropped == false)
Josef Bacikd29a9f62013-07-17 19:30:20 -04008690 btrfs_add_dead_root(root);
Wang Shilong90515e72014-01-07 17:26:58 +08008691 if (err && err != -EAGAIN)
Anand Jaina4553fe2015-09-25 14:43:01 +08008692 btrfs_std_error(root->fs_info, err, NULL);
Jeff Mahoney2c536792011-10-03 23:22:41 -04008693 return err;
Chris Mason20524f02007-03-10 06:35:47 -05008694}
Chris Mason9078a3e2007-04-26 16:46:15 -04008695
Yan Zheng2c47e6052009-06-27 21:07:35 -04008696/*
8697 * drop subtree rooted at tree block 'node'.
8698 *
8699 * NOTE: this function will unlock and release tree block 'node'
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008700 * only used by relocation code
Yan Zheng2c47e6052009-06-27 21:07:35 -04008701 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04008702int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
8703 struct btrfs_root *root,
8704 struct extent_buffer *node,
8705 struct extent_buffer *parent)
8706{
8707 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008708 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008709 int level;
8710 int parent_level;
8711 int ret = 0;
8712 int wret;
8713
Yan Zheng2c47e6052009-06-27 21:07:35 -04008714 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
8715
Yan Zhengf82d02d2008-10-29 14:49:05 -04008716 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00008717 if (!path)
8718 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008719
Yan Zheng2c47e6052009-06-27 21:07:35 -04008720 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00008721 if (!wc) {
8722 btrfs_free_path(path);
8723 return -ENOMEM;
8724 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008725
Chris Masonb9447ef2009-03-09 11:45:38 -04008726 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008727 parent_level = btrfs_header_level(parent);
8728 extent_buffer_get(parent);
8729 path->nodes[parent_level] = parent;
8730 path->slots[parent_level] = btrfs_header_nritems(parent);
8731
Chris Masonb9447ef2009-03-09 11:45:38 -04008732 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008733 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008734 path->nodes[level] = node;
8735 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008736 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008737
8738 wc->refs[parent_level] = 1;
8739 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
8740 wc->level = level;
8741 wc->shared_level = -1;
8742 wc->stage = DROP_REFERENCE;
8743 wc->update_ref = 0;
8744 wc->keep_locks = 1;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008745 wc->for_reloc = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008746 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008747
8748 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008749 wret = walk_down_tree(trans, root, path, wc);
8750 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04008751 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008752 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008753 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04008754
Yan Zheng2c47e6052009-06-27 21:07:35 -04008755 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008756 if (wret < 0)
8757 ret = wret;
8758 if (wret != 0)
8759 break;
8760 }
8761
Yan Zheng2c47e6052009-06-27 21:07:35 -04008762 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008763 btrfs_free_path(path);
8764 return ret;
8765}
8766
Chris Masonec44a352008-04-28 15:29:52 -04008767static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
8768{
8769 u64 num_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03008770 u64 stripped;
Chris Masonec44a352008-04-28 15:29:52 -04008771
Ilya Dryomovfc67c452012-03-27 17:09:17 +03008772 /*
8773 * if restripe for this chunk_type is on pick target profile and
8774 * return, otherwise do the usual balance
8775 */
8776 stripped = get_restripe_target(root->fs_info, flags);
8777 if (stripped)
8778 return extended_to_chunk(stripped);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02008779
Miao Xie95669972014-07-24 11:37:14 +08008780 num_devices = root->fs_info->fs_devices->rw_devices;
Chris Masoncd02dca2010-12-13 14:56:23 -05008781
Ilya Dryomovfc67c452012-03-27 17:09:17 +03008782 stripped = BTRFS_BLOCK_GROUP_RAID0 |
David Woodhouse53b381b2013-01-29 18:40:14 -05008783 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
Ilya Dryomovfc67c452012-03-27 17:09:17 +03008784 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
8785
Chris Masonec44a352008-04-28 15:29:52 -04008786 if (num_devices == 1) {
8787 stripped |= BTRFS_BLOCK_GROUP_DUP;
8788 stripped = flags & ~stripped;
8789
8790 /* turn raid0 into single device chunks */
8791 if (flags & BTRFS_BLOCK_GROUP_RAID0)
8792 return stripped;
8793
8794 /* turn mirroring into duplication */
8795 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
8796 BTRFS_BLOCK_GROUP_RAID10))
8797 return stripped | BTRFS_BLOCK_GROUP_DUP;
Chris Masonec44a352008-04-28 15:29:52 -04008798 } else {
8799 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04008800 if (flags & stripped)
8801 return flags;
8802
8803 stripped |= BTRFS_BLOCK_GROUP_DUP;
8804 stripped = flags & ~stripped;
8805
8806 /* switch duplicated blocks with raid1 */
8807 if (flags & BTRFS_BLOCK_GROUP_DUP)
8808 return stripped | BTRFS_BLOCK_GROUP_RAID1;
8809
Ilya Dryomove3176ca2012-03-27 17:09:16 +03008810 /* this is drive concat, leave it alone */
Chris Masonec44a352008-04-28 15:29:52 -04008811 }
Ilya Dryomove3176ca2012-03-27 17:09:16 +03008812
Chris Masonec44a352008-04-28 15:29:52 -04008813 return flags;
8814}
8815
Zhaolei868f4012015-08-05 16:43:27 +08008816static int inc_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04008817{
Yan, Zhengf0486c62010-05-16 10:46:25 -04008818 struct btrfs_space_info *sinfo = cache->space_info;
8819 u64 num_bytes;
Miao Xie199c36e2011-07-15 10:34:36 +00008820 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008821 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04008822
Miao Xie199c36e2011-07-15 10:34:36 +00008823 /*
8824 * We need some metadata space and system metadata space for
8825 * allocating chunks in some corner cases until we force to set
8826 * it to be readonly.
8827 */
8828 if ((sinfo->flags &
8829 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
8830 !force)
8831 min_allocable_bytes = 1 * 1024 * 1024;
8832 else
8833 min_allocable_bytes = 0;
8834
Yan, Zhengf0486c62010-05-16 10:46:25 -04008835 spin_lock(&sinfo->lock);
8836 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00008837
8838 if (cache->ro) {
Zhaolei868f4012015-08-05 16:43:27 +08008839 cache->ro++;
WuBo61cfea92011-07-26 03:30:11 +00008840 ret = 0;
8841 goto out;
8842 }
8843
Yan, Zhengf0486c62010-05-16 10:46:25 -04008844 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8845 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04008846
Yan, Zhengf0486c62010-05-16 10:46:25 -04008847 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
Josef Bacik37be25b2011-08-05 10:25:38 -04008848 sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes +
8849 min_allocable_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04008850 sinfo->bytes_readonly += num_bytes;
Zhaolei868f4012015-08-05 16:43:27 +08008851 cache->ro++;
Josef Bacik633c0aa2014-10-31 09:49:34 -04008852 list_add_tail(&cache->ro_list, &sinfo->ro_bgs);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008853 ret = 0;
8854 }
WuBo61cfea92011-07-26 03:30:11 +00008855out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04008856 spin_unlock(&cache->lock);
8857 spin_unlock(&sinfo->lock);
8858 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04008859}
8860
Zhaolei868f4012015-08-05 16:43:27 +08008861int btrfs_inc_block_group_ro(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04008862 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008863
8864{
Yan, Zhengf0486c62010-05-16 10:46:25 -04008865 struct btrfs_trans_handle *trans;
8866 u64 alloc_flags;
8867 int ret;
8868
Chris Mason1bbc6212015-04-06 12:46:08 -07008869again:
Josef Bacik7a7eaa42011-04-13 12:54:33 -04008870 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008871 if (IS_ERR(trans))
8872 return PTR_ERR(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008873
Chris Mason1bbc6212015-04-06 12:46:08 -07008874 /*
8875 * we're not allowed to set block groups readonly after the dirty
8876 * block groups cache has started writing. If it already started,
8877 * back off and let this transaction commit
8878 */
8879 mutex_lock(&root->fs_info->ro_block_group_mutex);
8880 if (trans->transaction->dirty_bg_run) {
8881 u64 transid = trans->transid;
8882
8883 mutex_unlock(&root->fs_info->ro_block_group_mutex);
8884 btrfs_end_transaction(trans, root);
8885
8886 ret = btrfs_wait_for_commit(root, transid);
8887 if (ret)
8888 return ret;
8889 goto again;
8890 }
8891
Chris Mason153c35b2015-05-19 18:54:41 -07008892 /*
8893 * if we are changing raid levels, try to allocate a corresponding
8894 * block group with the new raid level.
8895 */
8896 alloc_flags = update_block_group_flags(root, cache->flags);
8897 if (alloc_flags != cache->flags) {
8898 ret = do_chunk_alloc(trans, root, alloc_flags,
8899 CHUNK_ALLOC_FORCE);
8900 /*
8901 * ENOSPC is allowed here, we may have enough space
8902 * already allocated at the new raid level to
8903 * carry on
8904 */
8905 if (ret == -ENOSPC)
8906 ret = 0;
8907 if (ret < 0)
8908 goto out;
8909 }
Chris Mason1bbc6212015-04-06 12:46:08 -07008910
Zhaolei868f4012015-08-05 16:43:27 +08008911 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008912 if (!ret)
8913 goto out;
8914 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
Josef Bacik698d0082012-09-12 14:08:47 -04008915 ret = do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04008916 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008917 if (ret < 0)
8918 goto out;
Zhaolei868f4012015-08-05 16:43:27 +08008919 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008920out:
Shaohua Li2f081082015-01-09 10:40:15 -08008921 if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
8922 alloc_flags = update_block_group_flags(root, cache->flags);
Filipe Mananaa9629592015-05-18 19:11:40 +01008923 lock_chunks(root->fs_info->chunk_root);
Filipe Manana4617ea32015-06-09 17:48:21 +01008924 check_system_chunk(trans, root, alloc_flags);
Filipe Mananaa9629592015-05-18 19:11:40 +01008925 unlock_chunks(root->fs_info->chunk_root);
Shaohua Li2f081082015-01-09 10:40:15 -08008926 }
Chris Mason1bbc6212015-04-06 12:46:08 -07008927 mutex_unlock(&root->fs_info->ro_block_group_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08008928
Yan, Zhengf0486c62010-05-16 10:46:25 -04008929 btrfs_end_transaction(trans, root);
8930 return ret;
8931}
8932
Chris Masonc87f08c2011-02-16 13:57:04 -05008933int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
8934 struct btrfs_root *root, u64 type)
8935{
8936 u64 alloc_flags = get_alloc_profile(root, type);
Josef Bacik698d0082012-09-12 14:08:47 -04008937 return do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04008938 CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05008939}
8940
Miao Xie6d07bce2011-01-05 10:07:31 +00008941/*
8942 * helper to account the unused space of all the readonly block group in the
Josef Bacik633c0aa2014-10-31 09:49:34 -04008943 * space_info. takes mirrors into account.
Miao Xie6d07bce2011-01-05 10:07:31 +00008944 */
Josef Bacik633c0aa2014-10-31 09:49:34 -04008945u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
Miao Xie6d07bce2011-01-05 10:07:31 +00008946{
8947 struct btrfs_block_group_cache *block_group;
8948 u64 free_bytes = 0;
8949 int factor;
8950
Josef Bacik633c0aa2014-10-31 09:49:34 -04008951 /* It's df, we don't care if it's racey */
8952 if (list_empty(&sinfo->ro_bgs))
8953 return 0;
8954
8955 spin_lock(&sinfo->lock);
8956 list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00008957 spin_lock(&block_group->lock);
8958
8959 if (!block_group->ro) {
8960 spin_unlock(&block_group->lock);
8961 continue;
8962 }
8963
8964 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
8965 BTRFS_BLOCK_GROUP_RAID10 |
8966 BTRFS_BLOCK_GROUP_DUP))
8967 factor = 2;
8968 else
8969 factor = 1;
8970
8971 free_bytes += (block_group->key.offset -
8972 btrfs_block_group_used(&block_group->item)) *
8973 factor;
8974
8975 spin_unlock(&block_group->lock);
8976 }
Miao Xie6d07bce2011-01-05 10:07:31 +00008977 spin_unlock(&sinfo->lock);
8978
8979 return free_bytes;
8980}
8981
Zhaolei868f4012015-08-05 16:43:27 +08008982void btrfs_dec_block_group_ro(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04008983 struct btrfs_block_group_cache *cache)
8984{
8985 struct btrfs_space_info *sinfo = cache->space_info;
8986 u64 num_bytes;
8987
8988 BUG_ON(!cache->ro);
8989
8990 spin_lock(&sinfo->lock);
8991 spin_lock(&cache->lock);
Zhaolei868f4012015-08-05 16:43:27 +08008992 if (!--cache->ro) {
8993 num_bytes = cache->key.offset - cache->reserved -
8994 cache->pinned - cache->bytes_super -
8995 btrfs_block_group_used(&cache->item);
8996 sinfo->bytes_readonly -= num_bytes;
8997 list_del_init(&cache->ro_list);
8998 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008999 spin_unlock(&cache->lock);
9000 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009001}
9002
Josef Bacikba1bf482009-09-11 16:11:19 -04009003/*
9004 * checks to see if its even possible to relocate this block group.
9005 *
9006 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
9007 * ok to go ahead and try.
9008 */
9009int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04009010{
Zheng Yan1a40e232008-09-26 10:09:34 -04009011 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04009012 struct btrfs_space_info *space_info;
9013 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
9014 struct btrfs_device *device;
Josef Bacik6df9a952013-06-27 13:22:46 -04009015 struct btrfs_trans_handle *trans;
liubocdcb7252011-08-03 10:15:25 +00009016 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04009017 u64 dev_min = 1;
9018 u64 dev_nr = 0;
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009019 u64 target;
liubocdcb7252011-08-03 10:15:25 +00009020 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04009021 int full = 0;
9022 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05009023
Josef Bacikba1bf482009-09-11 16:11:19 -04009024 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04009025
Josef Bacikba1bf482009-09-11 16:11:19 -04009026 /* odd, couldn't find the block group, leave it alone */
9027 if (!block_group)
9028 return -1;
Chris Masonedbd8d42007-12-21 16:27:24 -05009029
liubocdcb7252011-08-03 10:15:25 +00009030 min_free = btrfs_block_group_used(&block_group->item);
9031
Josef Bacikba1bf482009-09-11 16:11:19 -04009032 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00009033 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04009034 goto out;
Chris Mason323da792008-05-09 11:46:48 -04009035
Josef Bacikba1bf482009-09-11 16:11:19 -04009036 space_info = block_group->space_info;
9037 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04009038
Josef Bacikba1bf482009-09-11 16:11:19 -04009039 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04009040
Josef Bacikba1bf482009-09-11 16:11:19 -04009041 /*
9042 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04009043 * relocate it unless we're able to allocate a new chunk below.
9044 *
9045 * Otherwise, we need to make sure we have room in the space to handle
9046 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04009047 */
Chris Mason7ce618d2009-09-22 14:48:44 -04009048 if ((space_info->total_bytes != block_group->key.offset) &&
liubocdcb7252011-08-03 10:15:25 +00009049 (space_info->bytes_used + space_info->bytes_reserved +
9050 space_info->bytes_pinned + space_info->bytes_readonly +
9051 min_free < space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04009052 spin_unlock(&space_info->lock);
9053 goto out;
9054 }
9055 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009056
Josef Bacikba1bf482009-09-11 16:11:19 -04009057 /*
9058 * ok we don't have enough space, but maybe we have free space on our
9059 * devices to allocate new chunks for relocation, so loop through our
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009060 * alloc devices and guess if we have enough space. if this block
9061 * group is going to be restriped, run checks against the target
9062 * profile instead of the current one.
Josef Bacikba1bf482009-09-11 16:11:19 -04009063 */
9064 ret = -1;
Chris Mason4313b392008-01-03 09:08:48 -05009065
liubocdcb7252011-08-03 10:15:25 +00009066 /*
9067 * index:
9068 * 0: raid10
9069 * 1: raid1
9070 * 2: dup
9071 * 3: raid0
9072 * 4: single
9073 */
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009074 target = get_restripe_target(root->fs_info, block_group->flags);
9075 if (target) {
Liu Bo31e50222012-11-21 14:18:10 +00009076 index = __get_raid_index(extended_to_chunk(target));
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009077 } else {
9078 /*
9079 * this is just a balance, so if we were marked as full
9080 * we know there is no space for a new chunk
9081 */
9082 if (full)
9083 goto out;
9084
9085 index = get_block_group_index(block_group);
9086 }
9087
Miao Xiee6ec7162013-01-17 05:38:51 +00009088 if (index == BTRFS_RAID_RAID10) {
liubocdcb7252011-08-03 10:15:25 +00009089 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04009090 /* Divide by 2 */
9091 min_free >>= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009092 } else if (index == BTRFS_RAID_RAID1) {
liubocdcb7252011-08-03 10:15:25 +00009093 dev_min = 2;
Miao Xiee6ec7162013-01-17 05:38:51 +00009094 } else if (index == BTRFS_RAID_DUP) {
Josef Bacik6719db62011-08-20 08:29:51 -04009095 /* Multiply by 2 */
9096 min_free <<= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009097 } else if (index == BTRFS_RAID_RAID0) {
liubocdcb7252011-08-03 10:15:25 +00009098 dev_min = fs_devices->rw_devices;
David Sterba47c57132015-02-20 18:43:47 +01009099 min_free = div64_u64(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00009100 }
9101
Josef Bacik6df9a952013-06-27 13:22:46 -04009102 /* We need to do this so that we can look at pending chunks */
9103 trans = btrfs_join_transaction(root);
9104 if (IS_ERR(trans)) {
9105 ret = PTR_ERR(trans);
9106 goto out;
9107 }
9108
Josef Bacikba1bf482009-09-11 16:11:19 -04009109 mutex_lock(&root->fs_info->chunk_mutex);
9110 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00009111 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04009112
Josef Bacikba1bf482009-09-11 16:11:19 -04009113 /*
9114 * check to make sure we can actually find a chunk with enough
9115 * space to fit our block group in.
9116 */
Stefan Behrens63a212a2012-11-05 18:29:28 +01009117 if (device->total_bytes > device->bytes_used + min_free &&
9118 !device->is_tgtdev_for_dev_replace) {
Josef Bacik6df9a952013-06-27 13:22:46 -04009119 ret = find_free_dev_extent(trans, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00009120 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04009121 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00009122 dev_nr++;
9123
9124 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05009125 break;
liubocdcb7252011-08-03 10:15:25 +00009126
Josef Bacikba1bf482009-09-11 16:11:19 -04009127 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05009128 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009129 }
Josef Bacikba1bf482009-09-11 16:11:19 -04009130 mutex_unlock(&root->fs_info->chunk_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04009131 btrfs_end_transaction(trans, root);
Chris Masonedbd8d42007-12-21 16:27:24 -05009132out:
Josef Bacikba1bf482009-09-11 16:11:19 -04009133 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05009134 return ret;
9135}
9136
Christoph Hellwigb2950862008-12-02 09:54:17 -05009137static int find_first_block_group(struct btrfs_root *root,
9138 struct btrfs_path *path, struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04009139{
Chris Mason925baed2008-06-25 16:01:30 -04009140 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04009141 struct btrfs_key found_key;
9142 struct extent_buffer *leaf;
9143 int slot;
9144
9145 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
9146 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009147 goto out;
9148
Chris Masond3977122009-01-05 21:25:51 -05009149 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04009150 slot = path->slots[0];
9151 leaf = path->nodes[0];
9152 if (slot >= btrfs_header_nritems(leaf)) {
9153 ret = btrfs_next_leaf(root, path);
9154 if (ret == 0)
9155 continue;
9156 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009157 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04009158 break;
9159 }
9160 btrfs_item_key_to_cpu(leaf, &found_key, slot);
9161
9162 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04009163 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
9164 ret = 0;
9165 goto out;
9166 }
Chris Mason0b86a832008-03-24 15:01:56 -04009167 path->slots[0]++;
9168 }
Chris Mason925baed2008-06-25 16:01:30 -04009169out:
Chris Mason0b86a832008-03-24 15:01:56 -04009170 return ret;
9171}
9172
Josef Bacik0af3d002010-06-21 14:48:16 -04009173void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
9174{
9175 struct btrfs_block_group_cache *block_group;
9176 u64 last = 0;
9177
9178 while (1) {
9179 struct inode *inode;
9180
9181 block_group = btrfs_lookup_first_block_group(info, last);
9182 while (block_group) {
9183 spin_lock(&block_group->lock);
9184 if (block_group->iref)
9185 break;
9186 spin_unlock(&block_group->lock);
9187 block_group = next_block_group(info->tree_root,
9188 block_group);
9189 }
9190 if (!block_group) {
9191 if (last == 0)
9192 break;
9193 last = 0;
9194 continue;
9195 }
9196
9197 inode = block_group->inode;
9198 block_group->iref = 0;
9199 block_group->inode = NULL;
9200 spin_unlock(&block_group->lock);
9201 iput(inode);
9202 last = block_group->key.objectid + block_group->key.offset;
9203 btrfs_put_block_group(block_group);
9204 }
9205}
9206
Zheng Yan1a40e232008-09-26 10:09:34 -04009207int btrfs_free_block_groups(struct btrfs_fs_info *info)
9208{
9209 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04009210 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04009211 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04009212 struct rb_node *n;
9213
Josef Bacik9e351cc2014-03-13 15:42:13 -04009214 down_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04009215 while (!list_empty(&info->caching_block_groups)) {
9216 caching_ctl = list_entry(info->caching_block_groups.next,
9217 struct btrfs_caching_control, list);
9218 list_del(&caching_ctl->list);
9219 put_caching_control(caching_ctl);
9220 }
Josef Bacik9e351cc2014-03-13 15:42:13 -04009221 up_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04009222
Josef Bacik47ab2a62014-09-18 11:20:02 -04009223 spin_lock(&info->unused_bgs_lock);
9224 while (!list_empty(&info->unused_bgs)) {
9225 block_group = list_first_entry(&info->unused_bgs,
9226 struct btrfs_block_group_cache,
9227 bg_list);
9228 list_del_init(&block_group->bg_list);
9229 btrfs_put_block_group(block_group);
9230 }
9231 spin_unlock(&info->unused_bgs_lock);
9232
Zheng Yan1a40e232008-09-26 10:09:34 -04009233 spin_lock(&info->block_group_cache_lock);
9234 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
9235 block_group = rb_entry(n, struct btrfs_block_group_cache,
9236 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04009237 rb_erase(&block_group->cache_node,
9238 &info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +00009239 RB_CLEAR_NODE(&block_group->cache_node);
Yan Zhengd899e052008-10-30 14:25:28 -04009240 spin_unlock(&info->block_group_cache_lock);
9241
Josef Bacik80eb2342008-10-29 14:49:05 -04009242 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04009243 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04009244 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05009245
Josef Bacik817d52f2009-07-13 21:29:25 -04009246 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04009247 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04009248
Josef Bacik3c148742011-02-02 15:53:47 +00009249 /*
9250 * We haven't cached this block group, which means we could
9251 * possibly have excluded extents on this block group.
9252 */
Josef Bacik36cce922013-08-05 11:15:21 -04009253 if (block_group->cached == BTRFS_CACHE_NO ||
9254 block_group->cached == BTRFS_CACHE_ERROR)
Josef Bacik3c148742011-02-02 15:53:47 +00009255 free_excluded_extents(info->extent_root, block_group);
9256
Josef Bacik817d52f2009-07-13 21:29:25 -04009257 btrfs_remove_free_space_cache(block_group);
Josef Bacik11dfe352009-11-13 20:12:59 +00009258 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04009259
9260 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009261 }
9262 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -04009263
9264 /* now that all the block groups are freed, go through and
9265 * free all the space_info structs. This is only called during
9266 * the final stages of unmount, and so we know nobody is
9267 * using them. We call synchronize_rcu() once before we start,
9268 * just to be on the safe side.
9269 */
9270 synchronize_rcu();
9271
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04009272 release_global_block_rsv(info);
9273
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05309274 while (!list_empty(&info->space_info)) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009275 int i;
9276
Chris Mason4184ea72009-03-10 12:39:20 -04009277 space_info = list_entry(info->space_info.next,
9278 struct btrfs_space_info,
9279 list);
David Sterbab069e0c2013-02-08 21:28:17 +00009280 if (btrfs_test_opt(info->tree_root, ENOSPC_DEBUG)) {
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05309281 if (WARN_ON(space_info->bytes_pinned > 0 ||
David Sterbab069e0c2013-02-08 21:28:17 +00009282 space_info->bytes_reserved > 0 ||
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05309283 space_info->bytes_may_use > 0)) {
David Sterbab069e0c2013-02-08 21:28:17 +00009284 dump_space_info(space_info, 0, 0);
9285 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009286 }
Chris Mason4184ea72009-03-10 12:39:20 -04009287 list_del(&space_info->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009288 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
9289 struct kobject *kobj;
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009290 kobj = space_info->block_group_kobjs[i];
9291 space_info->block_group_kobjs[i] = NULL;
9292 if (kobj) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009293 kobject_del(kobj);
9294 kobject_put(kobj);
9295 }
9296 }
9297 kobject_del(&space_info->kobj);
9298 kobject_put(&space_info->kobj);
Chris Mason4184ea72009-03-10 12:39:20 -04009299 }
Zheng Yan1a40e232008-09-26 10:09:34 -04009300 return 0;
9301}
9302
Yan, Zhengb742bb82010-05-16 10:46:24 -04009303static void __link_block_group(struct btrfs_space_info *space_info,
9304 struct btrfs_block_group_cache *cache)
9305{
9306 int index = get_block_group_index(cache);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -04009307 bool first = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04009308
9309 down_write(&space_info->groups_sem);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -04009310 if (list_empty(&space_info->block_groups[index]))
9311 first = true;
9312 list_add_tail(&cache->list, &space_info->block_groups[index]);
9313 up_write(&space_info->groups_sem);
9314
9315 if (first) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009316 struct raid_kobject *rkobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009317 int ret;
9318
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009319 rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS);
9320 if (!rkobj)
9321 goto out_err;
9322 rkobj->raid_type = index;
9323 kobject_init(&rkobj->kobj, &btrfs_raid_ktype);
9324 ret = kobject_add(&rkobj->kobj, &space_info->kobj,
9325 "%s", get_raid_name(index));
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009326 if (ret) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009327 kobject_put(&rkobj->kobj);
9328 goto out_err;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009329 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009330 space_info->block_group_kobjs[index] = &rkobj->kobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009331 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009332
9333 return;
9334out_err:
9335 pr_warn("BTRFS: failed to add kobject for block cache. ignoring.\n");
Yan, Zhengb742bb82010-05-16 10:46:24 -04009336}
9337
Miao Xie920e4a52014-01-15 20:00:55 +08009338static struct btrfs_block_group_cache *
9339btrfs_create_block_group_cache(struct btrfs_root *root, u64 start, u64 size)
9340{
9341 struct btrfs_block_group_cache *cache;
9342
9343 cache = kzalloc(sizeof(*cache), GFP_NOFS);
9344 if (!cache)
9345 return NULL;
9346
9347 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
9348 GFP_NOFS);
9349 if (!cache->free_space_ctl) {
9350 kfree(cache);
9351 return NULL;
9352 }
9353
9354 cache->key.objectid = start;
9355 cache->key.offset = size;
9356 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
9357
9358 cache->sectorsize = root->sectorsize;
9359 cache->fs_info = root->fs_info;
9360 cache->full_stripe_len = btrfs_full_stripe_len(root,
9361 &root->fs_info->mapping_tree,
9362 start);
9363 atomic_set(&cache->count, 1);
9364 spin_lock_init(&cache->lock);
Miao Xiee570fd22014-06-19 10:42:50 +08009365 init_rwsem(&cache->data_rwsem);
Miao Xie920e4a52014-01-15 20:00:55 +08009366 INIT_LIST_HEAD(&cache->list);
9367 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009368 INIT_LIST_HEAD(&cache->bg_list);
Josef Bacik633c0aa2014-10-31 09:49:34 -04009369 INIT_LIST_HEAD(&cache->ro_list);
Josef Bacikce93ec52014-11-17 15:45:48 -05009370 INIT_LIST_HEAD(&cache->dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07009371 INIT_LIST_HEAD(&cache->io_list);
Miao Xie920e4a52014-01-15 20:00:55 +08009372 btrfs_init_free_space_ctl(cache);
Filipe Manana04216822014-11-27 21:14:15 +00009373 atomic_set(&cache->trimming, 0);
Miao Xie920e4a52014-01-15 20:00:55 +08009374
9375 return cache;
9376}
9377
Chris Mason9078a3e2007-04-26 16:46:15 -04009378int btrfs_read_block_groups(struct btrfs_root *root)
9379{
9380 struct btrfs_path *path;
9381 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04009382 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04009383 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04009384 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04009385 struct btrfs_key key;
9386 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04009387 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -04009388 int need_clear = 0;
9389 u64 cache_gen;
Chris Mason96b51792007-10-15 16:15:19 -04009390
Chris Masonbe744172007-05-06 10:15:01 -04009391 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04009392 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04009393 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02009394 key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Chris Mason9078a3e2007-04-26 16:46:15 -04009395 path = btrfs_alloc_path();
9396 if (!path)
9397 return -ENOMEM;
Josef Bacik026fd312011-05-13 10:32:11 -04009398 path->reada = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04009399
David Sterba6c417612011-04-13 15:41:04 +02009400 cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
Josef Bacik73bc1872011-10-03 14:07:49 -04009401 if (btrfs_test_opt(root, SPACE_CACHE) &&
David Sterba6c417612011-04-13 15:41:04 +02009402 btrfs_super_generation(root->fs_info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -04009403 need_clear = 1;
Josef Bacik88c2ba32010-09-21 14:21:34 -04009404 if (btrfs_test_opt(root, CLEAR_CACHE))
9405 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -04009406
Chris Masond3977122009-01-05 21:25:51 -05009407 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04009408 ret = find_first_block_group(root, path, &key);
Yan, Zhengb742bb82010-05-16 10:46:24 -04009409 if (ret > 0)
9410 break;
Chris Mason0b86a832008-03-24 15:01:56 -04009411 if (ret != 0)
9412 goto error;
Miao Xie920e4a52014-01-15 20:00:55 +08009413
Chris Mason5f39d392007-10-15 16:14:19 -04009414 leaf = path->nodes[0];
9415 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Miao Xie920e4a52014-01-15 20:00:55 +08009416
9417 cache = btrfs_create_block_group_cache(root, found_key.objectid,
9418 found_key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04009419 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04009420 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009421 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04009422 }
Josef Bacik96303082009-07-13 21:29:25 -04009423
Liu Bocf7c1ef2012-07-06 03:31:34 -06009424 if (need_clear) {
9425 /*
9426 * When we mount with old space cache, we need to
9427 * set BTRFS_DC_CLEAR and set dirty flag.
9428 *
9429 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
9430 * truncate the old free space cache inode and
9431 * setup a new one.
9432 * b) Setting 'dirty flag' makes sure that we flush
9433 * the new space cache info onto disk.
9434 */
Liu Bocf7c1ef2012-07-06 03:31:34 -06009435 if (btrfs_test_opt(root, SPACE_CACHE))
Josef Bacikce93ec52014-11-17 15:45:48 -05009436 cache->disk_cache_state = BTRFS_DC_CLEAR;
Liu Bocf7c1ef2012-07-06 03:31:34 -06009437 }
Josef Bacik0af3d002010-06-21 14:48:16 -04009438
Chris Mason5f39d392007-10-15 16:14:19 -04009439 read_extent_buffer(leaf, &cache->item,
9440 btrfs_item_ptr_offset(leaf, path->slots[0]),
9441 sizeof(cache->item));
Miao Xie920e4a52014-01-15 20:00:55 +08009442 cache->flags = btrfs_block_group_flags(&cache->item);
Chris Mason0b86a832008-03-24 15:01:56 -04009443
Chris Mason9078a3e2007-04-26 16:46:15 -04009444 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +02009445 btrfs_release_path(path);
Li Zefan34d52cb2011-03-29 13:46:06 +08009446
Josef Bacik817d52f2009-07-13 21:29:25 -04009447 /*
Josef Bacik3c148742011-02-02 15:53:47 +00009448 * We need to exclude the super stripes now so that the space
9449 * info has super bytes accounted for, otherwise we'll think
9450 * we have more space than we actually do.
9451 */
Josef Bacik835d9742013-03-19 12:13:25 -04009452 ret = exclude_super_stripes(root, cache);
9453 if (ret) {
9454 /*
9455 * We may have excluded something, so call this just in
9456 * case.
9457 */
9458 free_excluded_extents(root, cache);
Miao Xie920e4a52014-01-15 20:00:55 +08009459 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -04009460 goto error;
9461 }
Josef Bacik3c148742011-02-02 15:53:47 +00009462
9463 /*
Josef Bacik817d52f2009-07-13 21:29:25 -04009464 * check for two cases, either we are full, and therefore
9465 * don't need to bother with the caching work since we won't
9466 * find any space, or we are empty, and we can just add all
9467 * the space in and be done with it. This saves us _alot_ of
9468 * time, particularly in the full case.
9469 */
9470 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -04009471 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04009472 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik1b2da372009-09-11 16:11:20 -04009473 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04009474 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -04009475 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04009476 cache->cached = BTRFS_CACHE_FINISHED;
9477 add_new_free_space(cache, root->fs_info,
9478 found_key.objectid,
9479 found_key.objectid +
9480 found_key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -04009481 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04009482 }
Chris Mason96b51792007-10-15 16:15:19 -04009483
Josef Bacik8c579fe2013-04-02 12:40:42 -04009484 ret = btrfs_add_block_group_cache(root->fs_info, cache);
9485 if (ret) {
9486 btrfs_remove_free_space_cache(cache);
9487 btrfs_put_block_group(cache);
9488 goto error;
9489 }
9490
Chris Mason6324fbf2008-03-24 15:01:59 -04009491 ret = update_space_info(info, cache->flags, found_key.offset,
9492 btrfs_block_group_used(&cache->item),
9493 &space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -04009494 if (ret) {
9495 btrfs_remove_free_space_cache(cache);
9496 spin_lock(&info->block_group_cache_lock);
9497 rb_erase(&cache->cache_node,
9498 &info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +00009499 RB_CLEAR_NODE(&cache->cache_node);
Josef Bacik8c579fe2013-04-02 12:40:42 -04009500 spin_unlock(&info->block_group_cache_lock);
9501 btrfs_put_block_group(cache);
9502 goto error;
9503 }
9504
Chris Mason6324fbf2008-03-24 15:01:59 -04009505 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -04009506 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009507 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04009508 spin_unlock(&cache->space_info->lock);
9509
Yan, Zhengb742bb82010-05-16 10:46:24 -04009510 __link_block_group(space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04009511
Chris Mason75ccf472008-09-30 19:24:06 -04009512 set_avail_alloc_bits(root->fs_info, cache->flags);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009513 if (btrfs_chunk_readonly(root, cache->key.objectid)) {
Zhaolei868f4012015-08-05 16:43:27 +08009514 inc_block_group_ro(cache, 1);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009515 } else if (btrfs_block_group_used(&cache->item) == 0) {
9516 spin_lock(&info->unused_bgs_lock);
9517 /* Should always be true but just in case. */
9518 if (list_empty(&cache->bg_list)) {
9519 btrfs_get_block_group(cache);
9520 list_add_tail(&cache->bg_list,
9521 &info->unused_bgs);
9522 }
9523 spin_unlock(&info->unused_bgs_lock);
9524 }
Chris Mason9078a3e2007-04-26 16:46:15 -04009525 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04009526
9527 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
9528 if (!(get_alloc_profile(root, space_info->flags) &
9529 (BTRFS_BLOCK_GROUP_RAID10 |
9530 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05009531 BTRFS_BLOCK_GROUP_RAID5 |
9532 BTRFS_BLOCK_GROUP_RAID6 |
Yan, Zhengb742bb82010-05-16 10:46:24 -04009533 BTRFS_BLOCK_GROUP_DUP)))
9534 continue;
9535 /*
9536 * avoid allocating from un-mirrored block group if there are
9537 * mirrored block groups.
9538 */
chandan1095cc02013-07-16 12:28:56 +05309539 list_for_each_entry(cache,
9540 &space_info->block_groups[BTRFS_RAID_RAID0],
9541 list)
Zhaolei868f4012015-08-05 16:43:27 +08009542 inc_block_group_ro(cache, 1);
chandan1095cc02013-07-16 12:28:56 +05309543 list_for_each_entry(cache,
9544 &space_info->block_groups[BTRFS_RAID_SINGLE],
9545 list)
Zhaolei868f4012015-08-05 16:43:27 +08009546 inc_block_group_ro(cache, 1);
Yan, Zhengb742bb82010-05-16 10:46:24 -04009547 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009548
9549 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -04009550 ret = 0;
9551error:
Chris Mason9078a3e2007-04-26 16:46:15 -04009552 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04009553 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04009554}
Chris Mason6324fbf2008-03-24 15:01:59 -04009555
Josef Bacikea658ba2012-09-11 16:57:25 -04009556void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans,
9557 struct btrfs_root *root)
9558{
9559 struct btrfs_block_group_cache *block_group, *tmp;
9560 struct btrfs_root *extent_root = root->fs_info->extent_root;
9561 struct btrfs_block_group_item item;
9562 struct btrfs_key key;
9563 int ret = 0;
Filipe Mananad9a05402015-10-03 13:13:13 +01009564 bool can_flush_pending_bgs = trans->can_flush_pending_bgs;
Josef Bacikea658ba2012-09-11 16:57:25 -04009565
Filipe Mananad9a05402015-10-03 13:13:13 +01009566 trans->can_flush_pending_bgs = false;
Josef Bacik47ab2a62014-09-18 11:20:02 -04009567 list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) {
Josef Bacikea658ba2012-09-11 16:57:25 -04009568 if (ret)
Filipe Mananac92f6be2014-11-26 15:28:55 +00009569 goto next;
Josef Bacikea658ba2012-09-11 16:57:25 -04009570
9571 spin_lock(&block_group->lock);
9572 memcpy(&item, &block_group->item, sizeof(item));
9573 memcpy(&key, &block_group->key, sizeof(key));
9574 spin_unlock(&block_group->lock);
9575
9576 ret = btrfs_insert_item(trans, extent_root, &key, &item,
9577 sizeof(item));
9578 if (ret)
9579 btrfs_abort_transaction(trans, extent_root, ret);
Josef Bacik6df9a952013-06-27 13:22:46 -04009580 ret = btrfs_finish_chunk_alloc(trans, extent_root,
9581 key.objectid, key.offset);
9582 if (ret)
9583 btrfs_abort_transaction(trans, extent_root, ret);
Filipe Mananac92f6be2014-11-26 15:28:55 +00009584next:
9585 list_del_init(&block_group->bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -04009586 }
Filipe Mananad9a05402015-10-03 13:13:13 +01009587 trans->can_flush_pending_bgs = can_flush_pending_bgs;
Josef Bacikea658ba2012-09-11 16:57:25 -04009588}
9589
Chris Mason6324fbf2008-03-24 15:01:59 -04009590int btrfs_make_block_group(struct btrfs_trans_handle *trans,
9591 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04009592 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04009593 u64 size)
9594{
9595 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04009596 struct btrfs_root *extent_root;
9597 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -04009598
9599 extent_root = root->fs_info->extent_root;
Chris Mason6324fbf2008-03-24 15:01:59 -04009600
Miao Xie995946d2014-04-02 19:51:06 +08009601 btrfs_set_log_full_commit(root->fs_info, trans);
Chris Masone02119d2008-09-05 16:13:11 -04009602
Miao Xie920e4a52014-01-15 20:00:55 +08009603 cache = btrfs_create_block_group_cache(root, chunk_offset, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -04009604 if (!cache)
9605 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +08009606
Chris Mason6324fbf2008-03-24 15:01:59 -04009607 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04009608 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
Chris Mason6324fbf2008-03-24 15:01:59 -04009609 btrfs_set_block_group_flags(&cache->item, type);
9610
Miao Xie920e4a52014-01-15 20:00:55 +08009611 cache->flags = type;
Yan Zheng11833d62009-09-11 16:11:19 -04009612 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04009613 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik835d9742013-03-19 12:13:25 -04009614 ret = exclude_super_stripes(root, cache);
9615 if (ret) {
9616 /*
9617 * We may have excluded something, so call this just in
9618 * case.
9619 */
9620 free_excluded_extents(root, cache);
Miao Xie920e4a52014-01-15 20:00:55 +08009621 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -04009622 return ret;
9623 }
Josef Bacik96303082009-07-13 21:29:25 -04009624
Josef Bacik817d52f2009-07-13 21:29:25 -04009625 add_new_free_space(cache, root->fs_info, chunk_offset,
9626 chunk_offset + size);
9627
Yan Zheng11833d62009-09-11 16:11:19 -04009628 free_excluded_extents(root, cache);
9629
Filipe Manana2e6e5182015-05-12 00:28:11 +01009630 /*
9631 * Call to ensure the corresponding space_info object is created and
9632 * assigned to our block group, but don't update its counters just yet.
9633 * We want our bg to be added to the rbtree with its ->space_info set.
9634 */
9635 ret = update_space_info(root->fs_info, cache->flags, 0, 0,
9636 &cache->space_info);
9637 if (ret) {
9638 btrfs_remove_free_space_cache(cache);
9639 btrfs_put_block_group(cache);
9640 return ret;
9641 }
9642
Josef Bacik8c579fe2013-04-02 12:40:42 -04009643 ret = btrfs_add_block_group_cache(root->fs_info, cache);
9644 if (ret) {
9645 btrfs_remove_free_space_cache(cache);
9646 btrfs_put_block_group(cache);
9647 return ret;
9648 }
9649
Filipe Manana2e6e5182015-05-12 00:28:11 +01009650 /*
9651 * Now that our block group has its ->space_info set and is inserted in
9652 * the rbtree, update the space info's counters.
9653 */
Chris Mason6324fbf2008-03-24 15:01:59 -04009654 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
9655 &cache->space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -04009656 if (ret) {
9657 btrfs_remove_free_space_cache(cache);
9658 spin_lock(&root->fs_info->block_group_cache_lock);
9659 rb_erase(&cache->cache_node,
9660 &root->fs_info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +00009661 RB_CLEAR_NODE(&cache->cache_node);
Josef Bacik8c579fe2013-04-02 12:40:42 -04009662 spin_unlock(&root->fs_info->block_group_cache_lock);
9663 btrfs_put_block_group(cache);
9664 return ret;
9665 }
Li Zefanc7c144d2011-12-07 10:39:22 +08009666 update_global_block_rsv(root->fs_info);
Josef Bacik1b2da372009-09-11 16:11:20 -04009667
9668 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009669 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04009670 spin_unlock(&cache->space_info->lock);
9671
Yan, Zhengb742bb82010-05-16 10:46:24 -04009672 __link_block_group(cache->space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04009673
Josef Bacik47ab2a62014-09-18 11:20:02 -04009674 list_add_tail(&cache->bg_list, &trans->new_bgs);
Chris Mason6324fbf2008-03-24 15:01:59 -04009675
Chris Masond18a2c42008-04-04 15:40:00 -04009676 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason925baed2008-06-25 16:01:30 -04009677
Chris Mason6324fbf2008-03-24 15:01:59 -04009678 return 0;
9679}
Zheng Yan1a40e232008-09-26 10:09:34 -04009680
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009681static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
9682{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03009683 u64 extra_flags = chunk_to_extended(flags) &
9684 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009685
Miao Xiede98ced2013-01-29 10:13:12 +00009686 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009687 if (flags & BTRFS_BLOCK_GROUP_DATA)
9688 fs_info->avail_data_alloc_bits &= ~extra_flags;
9689 if (flags & BTRFS_BLOCK_GROUP_METADATA)
9690 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
9691 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
9692 fs_info->avail_system_alloc_bits &= ~extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00009693 write_sequnlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009694}
9695
Zheng Yan1a40e232008-09-26 10:09:34 -04009696int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
Filipe Manana04216822014-11-27 21:14:15 +00009697 struct btrfs_root *root, u64 group_start,
9698 struct extent_map *em)
Zheng Yan1a40e232008-09-26 10:09:34 -04009699{
9700 struct btrfs_path *path;
9701 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -04009702 struct btrfs_free_cluster *cluster;
Josef Bacik0af3d002010-06-21 14:48:16 -04009703 struct btrfs_root *tree_root = root->fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -04009704 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -04009705 struct inode *inode;
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009706 struct kobject *kobj = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -04009707 int ret;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009708 int index;
Josef Bacik89a55892010-10-14 14:52:27 -04009709 int factor;
Filipe Manana4f69cb92014-11-26 15:28:51 +00009710 struct btrfs_caching_control *caching_ctl = NULL;
Filipe Manana04216822014-11-27 21:14:15 +00009711 bool remove_em;
Zheng Yan1a40e232008-09-26 10:09:34 -04009712
Zheng Yan1a40e232008-09-26 10:09:34 -04009713 root = root->fs_info->extent_root;
9714
9715 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
9716 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -05009717 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -04009718
liubo9f7c43c2011-03-07 02:13:33 +00009719 /*
9720 * Free the reserved super bytes from this block group before
9721 * remove it.
9722 */
9723 free_excluded_extents(root, block_group);
9724
Zheng Yan1a40e232008-09-26 10:09:34 -04009725 memcpy(&key, &block_group->key, sizeof(key));
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009726 index = get_block_group_index(block_group);
Josef Bacik89a55892010-10-14 14:52:27 -04009727 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
9728 BTRFS_BLOCK_GROUP_RAID1 |
9729 BTRFS_BLOCK_GROUP_RAID10))
9730 factor = 2;
9731 else
9732 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04009733
Chris Mason44fb5512009-06-04 15:34:51 -04009734 /* make sure this block group isn't part of an allocation cluster */
9735 cluster = &root->fs_info->data_alloc_cluster;
9736 spin_lock(&cluster->refill_lock);
9737 btrfs_return_cluster_to_free_space(block_group, cluster);
9738 spin_unlock(&cluster->refill_lock);
9739
9740 /*
9741 * make sure this block group isn't part of a metadata
9742 * allocation cluster
9743 */
9744 cluster = &root->fs_info->meta_alloc_cluster;
9745 spin_lock(&cluster->refill_lock);
9746 btrfs_return_cluster_to_free_space(block_group, cluster);
9747 spin_unlock(&cluster->refill_lock);
9748
Zheng Yan1a40e232008-09-26 10:09:34 -04009749 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07009750 if (!path) {
9751 ret = -ENOMEM;
9752 goto out;
9753 }
Zheng Yan1a40e232008-09-26 10:09:34 -04009754
Chris Mason1bbc6212015-04-06 12:46:08 -07009755 /*
9756 * get the inode first so any iput calls done for the io_list
9757 * aren't the final iput (no unlinks allowed now)
9758 */
Ilya Dryomov10b2f342011-10-02 13:56:53 +03009759 inode = lookup_free_space_inode(tree_root, block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -07009760
9761 mutex_lock(&trans->transaction->cache_write_mutex);
9762 /*
9763 * make sure our free spache cache IO is done before remove the
9764 * free space inode
9765 */
9766 spin_lock(&trans->transaction->dirty_bgs_lock);
9767 if (!list_empty(&block_group->io_list)) {
9768 list_del_init(&block_group->io_list);
9769
9770 WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode);
9771
9772 spin_unlock(&trans->transaction->dirty_bgs_lock);
9773 btrfs_wait_cache_io(root, trans, block_group,
9774 &block_group->io_ctl, path,
9775 block_group->key.objectid);
9776 btrfs_put_block_group(block_group);
9777 spin_lock(&trans->transaction->dirty_bgs_lock);
9778 }
9779
9780 if (!list_empty(&block_group->dirty_list)) {
9781 list_del_init(&block_group->dirty_list);
9782 btrfs_put_block_group(block_group);
9783 }
9784 spin_unlock(&trans->transaction->dirty_bgs_lock);
9785 mutex_unlock(&trans->transaction->cache_write_mutex);
9786
Josef Bacik0af3d002010-06-21 14:48:16 -04009787 if (!IS_ERR(inode)) {
Tsutomu Itohb5324022011-07-19 07:27:20 +00009788 ret = btrfs_orphan_add(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009789 if (ret) {
9790 btrfs_add_delayed_iput(inode);
9791 goto out;
9792 }
Josef Bacik0af3d002010-06-21 14:48:16 -04009793 clear_nlink(inode);
9794 /* One for the block groups ref */
9795 spin_lock(&block_group->lock);
9796 if (block_group->iref) {
9797 block_group->iref = 0;
9798 block_group->inode = NULL;
9799 spin_unlock(&block_group->lock);
9800 iput(inode);
9801 } else {
9802 spin_unlock(&block_group->lock);
9803 }
9804 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -04009805 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04009806 }
9807
9808 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
9809 key.offset = block_group->key.objectid;
9810 key.type = 0;
9811
9812 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
9813 if (ret < 0)
9814 goto out;
9815 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +02009816 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04009817 if (ret == 0) {
9818 ret = btrfs_del_item(trans, tree_root, path);
9819 if (ret)
9820 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02009821 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04009822 }
9823
Yan Zheng3dfdb932009-01-21 10:49:16 -05009824 spin_lock(&root->fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009825 rb_erase(&block_group->cache_node,
9826 &root->fs_info->block_group_cache_tree);
Filipe Manana292cbd52014-11-26 15:28:50 +00009827 RB_CLEAR_NODE(&block_group->cache_node);
Liu Boa1897fd2012-12-27 09:01:23 +00009828
9829 if (root->fs_info->first_logical_byte == block_group->key.objectid)
9830 root->fs_info->first_logical_byte = (u64)-1;
Yan Zheng3dfdb932009-01-21 10:49:16 -05009831 spin_unlock(&root->fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04009832
Josef Bacik80eb2342008-10-29 14:49:05 -04009833 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04009834 /*
9835 * we must use list_del_init so people can check to see if they
9836 * are still on the list after taking the semaphore
9837 */
9838 list_del_init(&block_group->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009839 if (list_empty(&block_group->space_info->block_groups[index])) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009840 kobj = block_group->space_info->block_group_kobjs[index];
9841 block_group->space_info->block_group_kobjs[index] = NULL;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009842 clear_avail_alloc_bits(root->fs_info, block_group->flags);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009843 }
Josef Bacik80eb2342008-10-29 14:49:05 -04009844 up_write(&block_group->space_info->groups_sem);
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009845 if (kobj) {
9846 kobject_del(kobj);
9847 kobject_put(kobj);
9848 }
Zheng Yan1a40e232008-09-26 10:09:34 -04009849
Filipe Manana4f69cb92014-11-26 15:28:51 +00009850 if (block_group->has_caching_ctl)
9851 caching_ctl = get_caching_control(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04009852 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04009853 wait_block_group_cache_done(block_group);
Filipe Manana4f69cb92014-11-26 15:28:51 +00009854 if (block_group->has_caching_ctl) {
9855 down_write(&root->fs_info->commit_root_sem);
9856 if (!caching_ctl) {
9857 struct btrfs_caching_control *ctl;
9858
9859 list_for_each_entry(ctl,
9860 &root->fs_info->caching_block_groups, list)
9861 if (ctl->block_group == block_group) {
9862 caching_ctl = ctl;
9863 atomic_inc(&caching_ctl->count);
9864 break;
9865 }
9866 }
9867 if (caching_ctl)
9868 list_del_init(&caching_ctl->list);
9869 up_write(&root->fs_info->commit_root_sem);
9870 if (caching_ctl) {
9871 /* Once for the caching bgs list and once for us. */
9872 put_caching_control(caching_ctl);
9873 put_caching_control(caching_ctl);
9874 }
9875 }
Josef Bacik817d52f2009-07-13 21:29:25 -04009876
Josef Bacikce93ec52014-11-17 15:45:48 -05009877 spin_lock(&trans->transaction->dirty_bgs_lock);
9878 if (!list_empty(&block_group->dirty_list)) {
Chris Mason1bbc6212015-04-06 12:46:08 -07009879 WARN_ON(1);
9880 }
9881 if (!list_empty(&block_group->io_list)) {
9882 WARN_ON(1);
Josef Bacikce93ec52014-11-17 15:45:48 -05009883 }
9884 spin_unlock(&trans->transaction->dirty_bgs_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04009885 btrfs_remove_free_space_cache(block_group);
9886
Yan Zhengc146afa2008-11-12 14:34:12 -05009887 spin_lock(&block_group->space_info->lock);
Filipe Manana75c68e92015-01-16 13:24:40 +00009888 list_del_init(&block_group->ro_list);
Zhao Lei18d018a2015-02-24 20:07:44 +08009889
9890 if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
9891 WARN_ON(block_group->space_info->total_bytes
9892 < block_group->key.offset);
9893 WARN_ON(block_group->space_info->bytes_readonly
9894 < block_group->key.offset);
9895 WARN_ON(block_group->space_info->disk_total
9896 < block_group->key.offset * factor);
9897 }
Yan Zhengc146afa2008-11-12 14:34:12 -05009898 block_group->space_info->total_bytes -= block_group->key.offset;
9899 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -04009900 block_group->space_info->disk_total -= block_group->key.offset * factor;
Zhao Lei18d018a2015-02-24 20:07:44 +08009901
Yan Zhengc146afa2008-11-12 14:34:12 -05009902 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -04009903
Josef Bacik0af3d002010-06-21 14:48:16 -04009904 memcpy(&key, &block_group->key, sizeof(key));
9905
Filipe Manana04216822014-11-27 21:14:15 +00009906 lock_chunks(root);
Filipe Manana495e64f2014-12-02 18:07:30 +00009907 if (!list_empty(&em->list)) {
9908 /* We're in the transaction->pending_chunks list. */
9909 free_extent_map(em);
9910 }
Filipe Manana04216822014-11-27 21:14:15 +00009911 spin_lock(&block_group->lock);
9912 block_group->removed = 1;
9913 /*
9914 * At this point trimming can't start on this block group, because we
9915 * removed the block group from the tree fs_info->block_group_cache_tree
9916 * so no one can't find it anymore and even if someone already got this
9917 * block group before we removed it from the rbtree, they have already
9918 * incremented block_group->trimming - if they didn't, they won't find
9919 * any free space entries because we already removed them all when we
9920 * called btrfs_remove_free_space_cache().
9921 *
9922 * And we must not remove the extent map from the fs_info->mapping_tree
9923 * to prevent the same logical address range and physical device space
9924 * ranges from being reused for a new block group. This is because our
9925 * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is
9926 * completely transactionless, so while it is trimming a range the
9927 * currently running transaction might finish and a new one start,
9928 * allowing for new block groups to be created that can reuse the same
9929 * physical device locations unless we take this special care.
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04009930 *
9931 * There may also be an implicit trim operation if the file system
9932 * is mounted with -odiscard. The same protections must remain
9933 * in place until the extents have been discarded completely when
9934 * the transaction commit has completed.
Filipe Manana04216822014-11-27 21:14:15 +00009935 */
9936 remove_em = (atomic_read(&block_group->trimming) == 0);
9937 /*
9938 * Make sure a trimmer task always sees the em in the pinned_chunks list
9939 * if it sees block_group->removed == 1 (needs to lock block_group->lock
9940 * before checking block_group->removed).
9941 */
9942 if (!remove_em) {
9943 /*
9944 * Our em might be in trans->transaction->pending_chunks which
9945 * is protected by fs_info->chunk_mutex ([lock|unlock]_chunks),
9946 * and so is the fs_info->pinned_chunks list.
9947 *
9948 * So at this point we must be holding the chunk_mutex to avoid
9949 * any races with chunk allocation (more specifically at
9950 * volumes.c:contains_pending_extent()), to ensure it always
9951 * sees the em, either in the pending_chunks list or in the
9952 * pinned_chunks list.
9953 */
9954 list_move_tail(&em->list, &root->fs_info->pinned_chunks);
9955 }
9956 spin_unlock(&block_group->lock);
Filipe Manana04216822014-11-27 21:14:15 +00009957
9958 if (remove_em) {
9959 struct extent_map_tree *em_tree;
9960
9961 em_tree = &root->fs_info->mapping_tree.map_tree;
9962 write_lock(&em_tree->lock);
Filipe Manana8dbcd102014-12-02 18:07:49 +00009963 /*
9964 * The em might be in the pending_chunks list, so make sure the
9965 * chunk mutex is locked, since remove_extent_mapping() will
9966 * delete us from that list.
9967 */
Filipe Manana04216822014-11-27 21:14:15 +00009968 remove_extent_mapping(em_tree, em);
9969 write_unlock(&em_tree->lock);
9970 /* once for the tree */
9971 free_extent_map(em);
9972 }
9973
Filipe Manana8dbcd102014-12-02 18:07:49 +00009974 unlock_chunks(root);
9975
Chris Masonfa9c0d792009-04-03 09:47:43 -04009976 btrfs_put_block_group(block_group);
9977 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -04009978
9979 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
9980 if (ret > 0)
9981 ret = -EIO;
9982 if (ret < 0)
9983 goto out;
9984
9985 ret = btrfs_del_item(trans, root, path);
9986out:
9987 btrfs_free_path(path);
9988 return ret;
9989}
liuboacce9522011-01-06 19:30:25 +08009990
Josef Bacik47ab2a62014-09-18 11:20:02 -04009991/*
9992 * Process the unused_bgs list and remove any that don't have any allocated
9993 * space inside of them.
9994 */
9995void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info)
9996{
9997 struct btrfs_block_group_cache *block_group;
9998 struct btrfs_space_info *space_info;
9999 struct btrfs_root *root = fs_info->extent_root;
10000 struct btrfs_trans_handle *trans;
10001 int ret = 0;
10002
10003 if (!fs_info->open)
10004 return;
10005
10006 spin_lock(&fs_info->unused_bgs_lock);
10007 while (!list_empty(&fs_info->unused_bgs)) {
10008 u64 start, end;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010009 int trimming;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010010
10011 block_group = list_first_entry(&fs_info->unused_bgs,
10012 struct btrfs_block_group_cache,
10013 bg_list);
10014 space_info = block_group->space_info;
10015 list_del_init(&block_group->bg_list);
10016 if (ret || btrfs_mixed_space_info(space_info)) {
10017 btrfs_put_block_group(block_group);
10018 continue;
10019 }
10020 spin_unlock(&fs_info->unused_bgs_lock);
10021
Filipe Manana67c5e7d2015-06-11 00:58:53 +010010022 mutex_lock(&root->fs_info->delete_unused_bgs_mutex);
10023
Josef Bacik47ab2a62014-09-18 11:20:02 -040010024 /* Don't want to race with allocators so take the groups_sem */
10025 down_write(&space_info->groups_sem);
10026 spin_lock(&block_group->lock);
10027 if (block_group->reserved ||
10028 btrfs_block_group_used(&block_group->item) ||
10029 block_group->ro) {
10030 /*
10031 * We want to bail if we made new allocations or have
10032 * outstanding allocations in this block group. We do
10033 * the ro check in case balance is currently acting on
10034 * this block group.
10035 */
10036 spin_unlock(&block_group->lock);
10037 up_write(&space_info->groups_sem);
10038 goto next;
10039 }
10040 spin_unlock(&block_group->lock);
10041
10042 /* We don't want to force the issue, only flip if it's ok. */
Zhaolei868f4012015-08-05 16:43:27 +080010043 ret = inc_block_group_ro(block_group, 0);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010044 up_write(&space_info->groups_sem);
10045 if (ret < 0) {
10046 ret = 0;
10047 goto next;
10048 }
10049
10050 /*
10051 * Want to do this before we do anything else so we can recover
10052 * properly if we fail to join the transaction.
10053 */
Forrest Liu3d84be72015-02-11 14:24:12 +080010054 /* 1 for btrfs_orphan_reserve_metadata() */
10055 trans = btrfs_start_transaction(root, 1);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010056 if (IS_ERR(trans)) {
Zhaolei868f4012015-08-05 16:43:27 +080010057 btrfs_dec_block_group_ro(root, block_group);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010058 ret = PTR_ERR(trans);
10059 goto next;
10060 }
10061
10062 /*
10063 * We could have pending pinned extents for this block group,
10064 * just delete them, we don't care about them anymore.
10065 */
10066 start = block_group->key.objectid;
10067 end = start + block_group->key.offset - 1;
Filipe Mananad4b450c2015-01-29 19:18:25 +000010068 /*
10069 * Hold the unused_bg_unpin_mutex lock to avoid racing with
10070 * btrfs_finish_extent_commit(). If we are at transaction N,
10071 * another task might be running finish_extent_commit() for the
10072 * previous transaction N - 1, and have seen a range belonging
10073 * to the block group in freed_extents[] before we were able to
10074 * clear the whole block group range from freed_extents[]. This
10075 * means that task can lookup for the block group after we
10076 * unpinned it from freed_extents[] and removed it, leading to
10077 * a BUG_ON() at btrfs_unpin_extent_range().
10078 */
10079 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana758eb512014-11-03 14:08:39 +000010080 ret = clear_extent_bits(&fs_info->freed_extents[0], start, end,
Josef Bacik47ab2a62014-09-18 11:20:02 -040010081 EXTENT_DIRTY, GFP_NOFS);
Filipe Manana758eb512014-11-03 14:08:39 +000010082 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000010083 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Zhaolei868f4012015-08-05 16:43:27 +080010084 btrfs_dec_block_group_ro(root, block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000010085 goto end_trans;
10086 }
10087 ret = clear_extent_bits(&fs_info->freed_extents[1], start, end,
Josef Bacik47ab2a62014-09-18 11:20:02 -040010088 EXTENT_DIRTY, GFP_NOFS);
Filipe Manana758eb512014-11-03 14:08:39 +000010089 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000010090 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Zhaolei868f4012015-08-05 16:43:27 +080010091 btrfs_dec_block_group_ro(root, block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000010092 goto end_trans;
10093 }
Filipe Mananad4b450c2015-01-29 19:18:25 +000010094 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010095
10096 /* Reset pinned so btrfs_put_block_group doesn't complain */
Zhao Leic30666d2015-02-25 14:17:20 +080010097 spin_lock(&space_info->lock);
10098 spin_lock(&block_group->lock);
10099
10100 space_info->bytes_pinned -= block_group->pinned;
10101 space_info->bytes_readonly += block_group->pinned;
10102 percpu_counter_add(&space_info->total_bytes_pinned,
10103 -block_group->pinned);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010104 block_group->pinned = 0;
10105
Zhao Leic30666d2015-02-25 14:17:20 +080010106 spin_unlock(&block_group->lock);
10107 spin_unlock(&space_info->lock);
10108
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010109 /* DISCARD can flip during remount */
10110 trimming = btrfs_test_opt(root, DISCARD);
10111
10112 /* Implicit trim during transaction commit. */
10113 if (trimming)
10114 btrfs_get_block_group_trimming(block_group);
10115
Josef Bacik47ab2a62014-09-18 11:20:02 -040010116 /*
10117 * Btrfs_remove_chunk will abort the transaction if things go
10118 * horribly wrong.
10119 */
10120 ret = btrfs_remove_chunk(trans, root,
10121 block_group->key.objectid);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010122
10123 if (ret) {
10124 if (trimming)
10125 btrfs_put_block_group_trimming(block_group);
10126 goto end_trans;
10127 }
10128
10129 /*
10130 * If we're not mounted with -odiscard, we can just forget
10131 * about this block group. Otherwise we'll need to wait
10132 * until transaction commit to do the actual discard.
10133 */
10134 if (trimming) {
10135 WARN_ON(!list_empty(&block_group->bg_list));
10136 spin_lock(&trans->transaction->deleted_bgs_lock);
10137 list_move(&block_group->bg_list,
10138 &trans->transaction->deleted_bgs);
10139 spin_unlock(&trans->transaction->deleted_bgs_lock);
10140 btrfs_get_block_group(block_group);
10141 }
Filipe Manana758eb512014-11-03 14:08:39 +000010142end_trans:
Josef Bacik47ab2a62014-09-18 11:20:02 -040010143 btrfs_end_transaction(trans, root);
10144next:
Filipe Manana67c5e7d2015-06-11 00:58:53 +010010145 mutex_unlock(&root->fs_info->delete_unused_bgs_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010146 btrfs_put_block_group(block_group);
10147 spin_lock(&fs_info->unused_bgs_lock);
10148 }
10149 spin_unlock(&fs_info->unused_bgs_lock);
10150}
10151
liuboc59021f2011-03-07 02:13:14 +000010152int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
10153{
10154 struct btrfs_space_info *space_info;
liubo1aba86d2011-04-08 08:44:37 +000010155 struct btrfs_super_block *disk_super;
10156 u64 features;
10157 u64 flags;
10158 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +000010159 int ret;
10160
David Sterba6c417612011-04-13 15:41:04 +020010161 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +000010162 if (!btrfs_super_root(disk_super))
10163 return 1;
liuboc59021f2011-03-07 02:13:14 +000010164
liubo1aba86d2011-04-08 08:44:37 +000010165 features = btrfs_super_incompat_flags(disk_super);
10166 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
10167 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +000010168
liubo1aba86d2011-04-08 08:44:37 +000010169 flags = BTRFS_BLOCK_GROUP_SYSTEM;
10170 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
liuboc59021f2011-03-07 02:13:14 +000010171 if (ret)
liubo1aba86d2011-04-08 08:44:37 +000010172 goto out;
liuboc59021f2011-03-07 02:13:14 +000010173
liubo1aba86d2011-04-08 08:44:37 +000010174 if (mixed) {
10175 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
10176 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
10177 } else {
10178 flags = BTRFS_BLOCK_GROUP_METADATA;
10179 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
10180 if (ret)
10181 goto out;
10182
10183 flags = BTRFS_BLOCK_GROUP_DATA;
10184 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
10185 }
10186out:
liuboc59021f2011-03-07 02:13:14 +000010187 return ret;
10188}
10189
liuboacce9522011-01-06 19:30:25 +080010190int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
10191{
Filipe Manana678886b2014-12-07 21:31:47 +000010192 return unpin_extent_range(root, start, end, false);
liuboacce9522011-01-06 19:30:25 +080010193}
10194
Jeff Mahoney499f3772015-06-15 09:41:17 -040010195/*
10196 * It used to be that old block groups would be left around forever.
10197 * Iterating over them would be enough to trim unused space. Since we
10198 * now automatically remove them, we also need to iterate over unallocated
10199 * space.
10200 *
10201 * We don't want a transaction for this since the discard may take a
10202 * substantial amount of time. We don't require that a transaction be
10203 * running, but we do need to take a running transaction into account
10204 * to ensure that we're not discarding chunks that were released in
10205 * the current transaction.
10206 *
10207 * Holding the chunks lock will prevent other threads from allocating
10208 * or releasing chunks, but it won't prevent a running transaction
10209 * from committing and releasing the memory that the pending chunks
10210 * list head uses. For that, we need to take a reference to the
10211 * transaction.
10212 */
10213static int btrfs_trim_free_extents(struct btrfs_device *device,
10214 u64 minlen, u64 *trimmed)
10215{
10216 u64 start = 0, len = 0;
10217 int ret;
10218
10219 *trimmed = 0;
10220
10221 /* Not writeable = nothing to do. */
10222 if (!device->writeable)
10223 return 0;
10224
10225 /* No free space = nothing to do. */
10226 if (device->total_bytes <= device->bytes_used)
10227 return 0;
10228
10229 ret = 0;
10230
10231 while (1) {
10232 struct btrfs_fs_info *fs_info = device->dev_root->fs_info;
10233 struct btrfs_transaction *trans;
10234 u64 bytes;
10235
10236 ret = mutex_lock_interruptible(&fs_info->chunk_mutex);
10237 if (ret)
10238 return ret;
10239
10240 down_read(&fs_info->commit_root_sem);
10241
10242 spin_lock(&fs_info->trans_lock);
10243 trans = fs_info->running_transaction;
10244 if (trans)
10245 atomic_inc(&trans->use_count);
10246 spin_unlock(&fs_info->trans_lock);
10247
10248 ret = find_free_dev_extent_start(trans, device, minlen, start,
10249 &start, &len);
10250 if (trans)
10251 btrfs_put_transaction(trans);
10252
10253 if (ret) {
10254 up_read(&fs_info->commit_root_sem);
10255 mutex_unlock(&fs_info->chunk_mutex);
10256 if (ret == -ENOSPC)
10257 ret = 0;
10258 break;
10259 }
10260
10261 ret = btrfs_issue_discard(device->bdev, start, len, &bytes);
10262 up_read(&fs_info->commit_root_sem);
10263 mutex_unlock(&fs_info->chunk_mutex);
10264
10265 if (ret)
10266 break;
10267
10268 start += len;
10269 *trimmed += bytes;
10270
10271 if (fatal_signal_pending(current)) {
10272 ret = -ERESTARTSYS;
10273 break;
10274 }
10275
10276 cond_resched();
10277 }
10278
10279 return ret;
10280}
10281
Li Dongyangf7039b12011-03-24 10:24:28 +000010282int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range)
10283{
10284 struct btrfs_fs_info *fs_info = root->fs_info;
10285 struct btrfs_block_group_cache *cache = NULL;
Jeff Mahoney499f3772015-06-15 09:41:17 -040010286 struct btrfs_device *device;
10287 struct list_head *devices;
Li Dongyangf7039b12011-03-24 10:24:28 +000010288 u64 group_trimmed;
10289 u64 start;
10290 u64 end;
10291 u64 trimmed = 0;
Liu Bo2cac13e2012-02-09 18:17:41 +080010292 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +000010293 int ret = 0;
10294
Liu Bo2cac13e2012-02-09 18:17:41 +080010295 /*
10296 * try to trim all FS space, our block group may start from non-zero.
10297 */
10298 if (range->len == total_bytes)
10299 cache = btrfs_lookup_first_block_group(fs_info, range->start);
10300 else
10301 cache = btrfs_lookup_block_group(fs_info, range->start);
Li Dongyangf7039b12011-03-24 10:24:28 +000010302
10303 while (cache) {
10304 if (cache->key.objectid >= (range->start + range->len)) {
10305 btrfs_put_block_group(cache);
10306 break;
10307 }
10308
10309 start = max(range->start, cache->key.objectid);
10310 end = min(range->start + range->len,
10311 cache->key.objectid + cache->key.offset);
10312
10313 if (end - start >= range->minlen) {
10314 if (!block_group_cache_done(cache)) {
Liu Bof6373bf2012-12-27 09:01:18 +000010315 ret = cache_block_group(cache, 0);
Josef Bacik1be41b72013-06-12 13:56:06 -040010316 if (ret) {
10317 btrfs_put_block_group(cache);
10318 break;
10319 }
10320 ret = wait_block_group_cache_done(cache);
10321 if (ret) {
10322 btrfs_put_block_group(cache);
10323 break;
10324 }
Li Dongyangf7039b12011-03-24 10:24:28 +000010325 }
10326 ret = btrfs_trim_block_group(cache,
10327 &group_trimmed,
10328 start,
10329 end,
10330 range->minlen);
10331
10332 trimmed += group_trimmed;
10333 if (ret) {
10334 btrfs_put_block_group(cache);
10335 break;
10336 }
10337 }
10338
10339 cache = next_block_group(fs_info->tree_root, cache);
10340 }
10341
Jeff Mahoney499f3772015-06-15 09:41:17 -040010342 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
10343 devices = &root->fs_info->fs_devices->alloc_list;
10344 list_for_each_entry(device, devices, dev_alloc_list) {
10345 ret = btrfs_trim_free_extents(device, range->minlen,
10346 &group_trimmed);
10347 if (ret)
10348 break;
10349
10350 trimmed += group_trimmed;
10351 }
10352 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
10353
Li Dongyangf7039b12011-03-24 10:24:28 +000010354 range->len = trimmed;
10355 return ret;
10356}
Miao Xie8257b2d2014-03-06 13:38:19 +080010357
10358/*
Filipe Manana9ea24bb2014-10-29 11:57:59 +000010359 * btrfs_{start,end}_write_no_snapshoting() are similar to
10360 * mnt_{want,drop}_write(), they are used to prevent some tasks from writing
10361 * data into the page cache through nocow before the subvolume is snapshoted,
10362 * but flush the data into disk after the snapshot creation, or to prevent
10363 * operations while snapshoting is ongoing and that cause the snapshot to be
10364 * inconsistent (writes followed by expanding truncates for example).
Miao Xie8257b2d2014-03-06 13:38:19 +080010365 */
Filipe Manana9ea24bb2014-10-29 11:57:59 +000010366void btrfs_end_write_no_snapshoting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080010367{
10368 percpu_counter_dec(&root->subv_writers->counter);
10369 /*
David Sterbaa83342a2015-02-16 19:36:47 +010010370 * Make sure counter is updated before we wake up waiters.
Miao Xie8257b2d2014-03-06 13:38:19 +080010371 */
10372 smp_mb();
10373 if (waitqueue_active(&root->subv_writers->wait))
10374 wake_up(&root->subv_writers->wait);
10375}
10376
Filipe Manana9ea24bb2014-10-29 11:57:59 +000010377int btrfs_start_write_no_snapshoting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080010378{
David Sterbaee39b432014-09-30 01:33:33 +020010379 if (atomic_read(&root->will_be_snapshoted))
Miao Xie8257b2d2014-03-06 13:38:19 +080010380 return 0;
10381
10382 percpu_counter_inc(&root->subv_writers->counter);
10383 /*
10384 * Make sure counter is updated before we check for snapshot creation.
10385 */
10386 smp_mb();
David Sterbaee39b432014-09-30 01:33:33 +020010387 if (atomic_read(&root->will_be_snapshoted)) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +000010388 btrfs_end_write_no_snapshoting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +080010389 return 0;
10390 }
10391 return 1;
10392}