blob: 1ea56d8bfd3e23bb5152d02d745f5998e5666d4c [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,
Filipe Mananab06c4bf2015-10-23 07:52:54 +010098 int level, struct btrfs_key *ins);
Josef Bacik6a632092009-02-20 11:00:09 -050099static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Josef Bacik698d0082012-09-12 14:08:47 -0400100 struct btrfs_root *extent_root, u64 flags,
101 int force);
Yan Zheng11833d62009-09-11 16:11:19 -0400102static int find_next_key(struct btrfs_path *path, int level,
103 struct btrfs_key *key);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400104static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
105 int dump_block_groups);
Josef Bacikfb25e912011-07-26 17:00:46 -0400106static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
Miao Xiee570fd22014-06-19 10:42:50 +0800107 u64 num_bytes, int reserve,
108 int delalloc);
Josef Bacik5d803662013-02-07 16:06:02 -0500109static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
110 u64 num_bytes);
Eric Sandeen48a3b632013-04-25 20:41:01 +0000111int btrfs_pin_extent(struct btrfs_root *root,
112 u64 bytenr, u64 num_bytes, int reserved);
Josef Bacik6a632092009-02-20 11:00:09 -0500113
Josef Bacik817d52f2009-07-13 21:29:25 -0400114static noinline int
115block_group_cache_done(struct btrfs_block_group_cache *cache)
116{
117 smp_mb();
Josef Bacik36cce922013-08-05 11:15:21 -0400118 return cache->cached == BTRFS_CACHE_FINISHED ||
119 cache->cached == BTRFS_CACHE_ERROR;
Josef Bacik817d52f2009-07-13 21:29:25 -0400120}
121
Josef Bacik0f9dd462008-09-23 13:14:11 -0400122static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
123{
124 return (cache->flags & bits) == bits;
125}
126
Filipe Manana758f2df2015-11-19 11:45:48 +0000127void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
Josef Bacik11dfe352009-11-13 20:12:59 +0000128{
129 atomic_inc(&cache->count);
130}
131
132void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
133{
Yan, Zhengf0486c62010-05-16 10:46:25 -0400134 if (atomic_dec_and_test(&cache->count)) {
135 WARN_ON(cache->pinned > 0);
136 WARN_ON(cache->reserved > 0);
Li Zefan34d52cb2011-03-29 13:46:06 +0800137 kfree(cache->free_space_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000138 kfree(cache);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400139 }
Josef Bacik11dfe352009-11-13 20:12:59 +0000140}
141
Josef Bacik0f9dd462008-09-23 13:14:11 -0400142/*
143 * this adds the block group to the fs_info rb tree for the block group
144 * cache
145 */
Christoph Hellwigb2950862008-12-02 09:54:17 -0500146static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400147 struct btrfs_block_group_cache *block_group)
148{
149 struct rb_node **p;
150 struct rb_node *parent = NULL;
151 struct btrfs_block_group_cache *cache;
152
153 spin_lock(&info->block_group_cache_lock);
154 p = &info->block_group_cache_tree.rb_node;
155
156 while (*p) {
157 parent = *p;
158 cache = rb_entry(parent, struct btrfs_block_group_cache,
159 cache_node);
160 if (block_group->key.objectid < cache->key.objectid) {
161 p = &(*p)->rb_left;
162 } else if (block_group->key.objectid > cache->key.objectid) {
163 p = &(*p)->rb_right;
164 } else {
165 spin_unlock(&info->block_group_cache_lock);
166 return -EEXIST;
167 }
168 }
169
170 rb_link_node(&block_group->cache_node, parent, p);
171 rb_insert_color(&block_group->cache_node,
172 &info->block_group_cache_tree);
Liu Boa1897fd2012-12-27 09:01:23 +0000173
174 if (info->first_logical_byte > block_group->key.objectid)
175 info->first_logical_byte = block_group->key.objectid;
176
Josef Bacik0f9dd462008-09-23 13:14:11 -0400177 spin_unlock(&info->block_group_cache_lock);
178
179 return 0;
180}
181
182/*
183 * This will return the block group at or after bytenr if contains is 0, else
184 * it will return the block group that contains the bytenr
185 */
186static struct btrfs_block_group_cache *
187block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
188 int contains)
189{
190 struct btrfs_block_group_cache *cache, *ret = NULL;
191 struct rb_node *n;
192 u64 end, start;
193
194 spin_lock(&info->block_group_cache_lock);
195 n = info->block_group_cache_tree.rb_node;
196
197 while (n) {
198 cache = rb_entry(n, struct btrfs_block_group_cache,
199 cache_node);
200 end = cache->key.objectid + cache->key.offset - 1;
201 start = cache->key.objectid;
202
203 if (bytenr < start) {
204 if (!contains && (!ret || start < ret->key.objectid))
205 ret = cache;
206 n = n->rb_left;
207 } else if (bytenr > start) {
208 if (contains && bytenr <= end) {
209 ret = cache;
210 break;
211 }
212 n = n->rb_right;
213 } else {
214 ret = cache;
215 break;
216 }
217 }
Liu Boa1897fd2012-12-27 09:01:23 +0000218 if (ret) {
Josef Bacik11dfe352009-11-13 20:12:59 +0000219 btrfs_get_block_group(ret);
Liu Boa1897fd2012-12-27 09:01:23 +0000220 if (bytenr == 0 && info->first_logical_byte > ret->key.objectid)
221 info->first_logical_byte = ret->key.objectid;
222 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400223 spin_unlock(&info->block_group_cache_lock);
224
225 return ret;
226}
227
Yan Zheng11833d62009-09-11 16:11:19 -0400228static int add_excluded_extent(struct btrfs_root *root,
229 u64 start, u64 num_bytes)
Josef Bacik817d52f2009-07-13 21:29:25 -0400230{
Yan Zheng11833d62009-09-11 16:11:19 -0400231 u64 end = start + num_bytes - 1;
232 set_extent_bits(&root->fs_info->freed_extents[0],
233 start, end, EXTENT_UPTODATE, GFP_NOFS);
234 set_extent_bits(&root->fs_info->freed_extents[1],
235 start, end, EXTENT_UPTODATE, GFP_NOFS);
236 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400237}
238
Yan Zheng11833d62009-09-11 16:11:19 -0400239static void free_excluded_extents(struct btrfs_root *root,
240 struct btrfs_block_group_cache *cache)
Josef Bacik817d52f2009-07-13 21:29:25 -0400241{
Yan Zheng11833d62009-09-11 16:11:19 -0400242 u64 start, end;
243
244 start = cache->key.objectid;
245 end = start + cache->key.offset - 1;
246
247 clear_extent_bits(&root->fs_info->freed_extents[0],
248 start, end, EXTENT_UPTODATE, GFP_NOFS);
249 clear_extent_bits(&root->fs_info->freed_extents[1],
250 start, end, EXTENT_UPTODATE, GFP_NOFS);
251}
252
253static int exclude_super_stripes(struct btrfs_root *root,
254 struct btrfs_block_group_cache *cache)
255{
Josef Bacik817d52f2009-07-13 21:29:25 -0400256 u64 bytenr;
257 u64 *logical;
258 int stripe_len;
259 int i, nr, ret;
260
Yan, Zheng06b23312009-11-26 09:31:11 +0000261 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
262 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
263 cache->bytes_super += stripe_len;
264 ret = add_excluded_extent(root, cache->key.objectid,
265 stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400266 if (ret)
267 return ret;
Yan, Zheng06b23312009-11-26 09:31:11 +0000268 }
269
Josef Bacik817d52f2009-07-13 21:29:25 -0400270 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
271 bytenr = btrfs_sb_offset(i);
272 ret = btrfs_rmap_block(&root->fs_info->mapping_tree,
273 cache->key.objectid, bytenr,
274 0, &logical, &nr, &stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400275 if (ret)
276 return ret;
Yan Zheng11833d62009-09-11 16:11:19 -0400277
Josef Bacik817d52f2009-07-13 21:29:25 -0400278 while (nr--) {
Josef Bacik51bf5f02013-04-23 12:55:21 -0400279 u64 start, len;
280
281 if (logical[nr] > cache->key.objectid +
282 cache->key.offset)
283 continue;
284
285 if (logical[nr] + stripe_len <= cache->key.objectid)
286 continue;
287
288 start = logical[nr];
289 if (start < cache->key.objectid) {
290 start = cache->key.objectid;
291 len = (logical[nr] + stripe_len) - start;
292 } else {
293 len = min_t(u64, stripe_len,
294 cache->key.objectid +
295 cache->key.offset - start);
296 }
297
298 cache->bytes_super += len;
299 ret = add_excluded_extent(root, start, len);
Josef Bacik835d9742013-03-19 12:13:25 -0400300 if (ret) {
301 kfree(logical);
302 return ret;
303 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400304 }
Yan Zheng11833d62009-09-11 16:11:19 -0400305
Josef Bacik817d52f2009-07-13 21:29:25 -0400306 kfree(logical);
307 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400308 return 0;
309}
310
Yan Zheng11833d62009-09-11 16:11:19 -0400311static struct btrfs_caching_control *
312get_caching_control(struct btrfs_block_group_cache *cache)
313{
314 struct btrfs_caching_control *ctl;
315
316 spin_lock(&cache->lock);
Josef Bacikdde5abe2010-09-16 16:17:03 -0400317 if (!cache->caching_ctl) {
318 spin_unlock(&cache->lock);
319 return NULL;
320 }
321
Yan Zheng11833d62009-09-11 16:11:19 -0400322 ctl = cache->caching_ctl;
323 atomic_inc(&ctl->count);
324 spin_unlock(&cache->lock);
325 return ctl;
326}
327
328static void put_caching_control(struct btrfs_caching_control *ctl)
329{
330 if (atomic_dec_and_test(&ctl->count))
331 kfree(ctl);
332}
333
Josef Bacikd0bd4562015-09-23 14:54:14 -0400334#ifdef CONFIG_BTRFS_DEBUG
335static void fragment_free_space(struct btrfs_root *root,
336 struct btrfs_block_group_cache *block_group)
337{
338 u64 start = block_group->key.objectid;
339 u64 len = block_group->key.offset;
340 u64 chunk = block_group->flags & BTRFS_BLOCK_GROUP_METADATA ?
341 root->nodesize : root->sectorsize;
342 u64 step = chunk << 1;
343
344 while (len > chunk) {
345 btrfs_remove_free_space(block_group, start, chunk);
346 start += step;
347 if (len < step)
348 len = 0;
349 else
350 len -= step;
351 }
352}
353#endif
354
Josef Bacik0f9dd462008-09-23 13:14:11 -0400355/*
356 * this is only called by cache_block_group, since we could have freed extents
357 * we need to check the pinned_extents for any extents that can't be used yet
358 * since their free space will be released as soon as the transaction commits.
359 */
Josef Bacik817d52f2009-07-13 21:29:25 -0400360static u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400361 struct btrfs_fs_info *info, u64 start, u64 end)
362{
Josef Bacik817d52f2009-07-13 21:29:25 -0400363 u64 extent_start, extent_end, size, total_added = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400364 int ret;
365
366 while (start < end) {
Yan Zheng11833d62009-09-11 16:11:19 -0400367 ret = find_first_extent_bit(info->pinned_extents, start,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400368 &extent_start, &extent_end,
Josef Bacike6138872012-09-27 17:07:30 -0400369 EXTENT_DIRTY | EXTENT_UPTODATE,
370 NULL);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400371 if (ret)
372 break;
373
Yan, Zheng06b23312009-11-26 09:31:11 +0000374 if (extent_start <= start) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400375 start = extent_end + 1;
376 } else if (extent_start > start && extent_start < end) {
377 size = extent_start - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400378 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500379 ret = btrfs_add_free_space(block_group, start,
380 size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100381 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400382 start = extent_end + 1;
383 } else {
384 break;
385 }
386 }
387
388 if (start < end) {
389 size = end - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400390 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500391 ret = btrfs_add_free_space(block_group, start, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100392 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400393 }
394
Josef Bacik817d52f2009-07-13 21:29:25 -0400395 return total_added;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400396}
397
Qu Wenruod458b052014-02-28 10:46:19 +0800398static noinline void caching_thread(struct btrfs_work *work)
Chris Masone37c9e62007-05-09 20:13:14 -0400399{
Josef Bacikbab39bf2011-06-30 14:42:28 -0400400 struct btrfs_block_group_cache *block_group;
401 struct btrfs_fs_info *fs_info;
402 struct btrfs_caching_control *caching_ctl;
403 struct btrfs_root *extent_root;
Chris Masone37c9e62007-05-09 20:13:14 -0400404 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400405 struct extent_buffer *leaf;
Yan Zheng11833d62009-09-11 16:11:19 -0400406 struct btrfs_key key;
Josef Bacik817d52f2009-07-13 21:29:25 -0400407 u64 total_found = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400408 u64 last = 0;
409 u32 nritems;
Josef Bacik36cce922013-08-05 11:15:21 -0400410 int ret = -ENOMEM;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400411 bool wakeup = true;
Chris Masonf510cfe2007-10-15 16:14:48 -0400412
Josef Bacikbab39bf2011-06-30 14:42:28 -0400413 caching_ctl = container_of(work, struct btrfs_caching_control, work);
414 block_group = caching_ctl->block_group;
415 fs_info = block_group->fs_info;
416 extent_root = fs_info->extent_root;
417
Chris Masone37c9e62007-05-09 20:13:14 -0400418 path = btrfs_alloc_path();
419 if (!path)
Josef Bacikbab39bf2011-06-30 14:42:28 -0400420 goto out;
Yan7d7d6062007-09-14 16:15:28 -0400421
Josef Bacik817d52f2009-07-13 21:29:25 -0400422 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
Yan Zheng11833d62009-09-11 16:11:19 -0400423
Josef Bacikd0bd4562015-09-23 14:54:14 -0400424#ifdef CONFIG_BTRFS_DEBUG
425 /*
426 * If we're fragmenting we don't want to make anybody think we can
427 * allocate from this block group until we've had a chance to fragment
428 * the free space.
429 */
430 if (btrfs_should_fragment_free_space(extent_root, block_group))
431 wakeup = false;
432#endif
Chris Mason5cd57b22008-06-25 16:01:30 -0400433 /*
Josef Bacik817d52f2009-07-13 21:29:25 -0400434 * We don't want to deadlock with somebody trying to allocate a new
435 * extent for the extent root while also trying to search the extent
436 * root to add free space. So we skip locking and search the commit
437 * root, since its read-only
Chris Mason5cd57b22008-06-25 16:01:30 -0400438 */
439 path->skip_locking = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400440 path->search_commit_root = 1;
Josef Bacik026fd312011-05-13 10:32:11 -0400441 path->reada = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400442
Yan Zhenge4404d62008-12-12 10:03:26 -0500443 key.objectid = last;
Chris Masone37c9e62007-05-09 20:13:14 -0400444 key.offset = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400445 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason013f1b12009-07-31 14:57:55 -0400446again:
Yan Zheng11833d62009-09-11 16:11:19 -0400447 mutex_lock(&caching_ctl->mutex);
Chris Mason013f1b12009-07-31 14:57:55 -0400448 /* need to make sure the commit_root doesn't disappear */
Josef Bacik9e351cc2014-03-13 15:42:13 -0400449 down_read(&fs_info->commit_root_sem);
Chris Mason013f1b12009-07-31 14:57:55 -0400450
Liu Bo52ee28d2013-07-11 17:51:15 +0800451next:
Yan Zheng11833d62009-09-11 16:11:19 -0400452 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
Chris Masone37c9e62007-05-09 20:13:14 -0400453 if (ret < 0)
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400454 goto err;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500455
Yan Zheng11833d62009-09-11 16:11:19 -0400456 leaf = path->nodes[0];
457 nritems = btrfs_header_nritems(leaf);
458
Chris Masond3977122009-01-05 21:25:51 -0500459 while (1) {
David Sterba7841cb22011-05-31 18:07:27 +0200460 if (btrfs_fs_closing(fs_info) > 1) {
Yan Zhengf25784b2009-07-28 08:41:57 -0400461 last = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400462 break;
Yan Zhengf25784b2009-07-28 08:41:57 -0400463 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400464
Yan Zheng11833d62009-09-11 16:11:19 -0400465 if (path->slots[0] < nritems) {
466 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
467 } else {
468 ret = find_next_key(path, 0, &key);
469 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -0400470 break;
Josef Bacik817d52f2009-07-13 21:29:25 -0400471
Josef Bacikc9ea7b22013-09-19 10:02:11 -0400472 if (need_resched() ||
Josef Bacik9e351cc2014-03-13 15:42:13 -0400473 rwsem_is_contended(&fs_info->commit_root_sem)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -0400474 if (wakeup)
475 caching_ctl->progress = last;
Chris Masonff5714c2011-05-28 07:00:39 -0400476 btrfs_release_path(path);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400477 up_read(&fs_info->commit_root_sem);
Josef Bacik589d8ad2011-05-11 17:30:53 -0400478 mutex_unlock(&caching_ctl->mutex);
Yan Zheng11833d62009-09-11 16:11:19 -0400479 cond_resched();
Josef Bacik589d8ad2011-05-11 17:30:53 -0400480 goto again;
481 }
Josef Bacik0a3896d2013-04-19 14:37:26 -0400482
483 ret = btrfs_next_leaf(extent_root, path);
484 if (ret < 0)
485 goto err;
486 if (ret)
487 break;
Josef Bacik589d8ad2011-05-11 17:30:53 -0400488 leaf = path->nodes[0];
489 nritems = btrfs_header_nritems(leaf);
490 continue;
Yan Zheng11833d62009-09-11 16:11:19 -0400491 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400492
Liu Bo52ee28d2013-07-11 17:51:15 +0800493 if (key.objectid < last) {
494 key.objectid = last;
495 key.offset = 0;
496 key.type = BTRFS_EXTENT_ITEM_KEY;
497
Josef Bacikd0bd4562015-09-23 14:54:14 -0400498 if (wakeup)
499 caching_ctl->progress = last;
Liu Bo52ee28d2013-07-11 17:51:15 +0800500 btrfs_release_path(path);
501 goto next;
502 }
503
Yan Zheng11833d62009-09-11 16:11:19 -0400504 if (key.objectid < block_group->key.objectid) {
505 path->slots[0]++;
Josef Bacik817d52f2009-07-13 21:29:25 -0400506 continue;
Chris Masone37c9e62007-05-09 20:13:14 -0400507 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400508
Chris Masone37c9e62007-05-09 20:13:14 -0400509 if (key.objectid >= block_group->key.objectid +
Josef Bacik0f9dd462008-09-23 13:14:11 -0400510 block_group->key.offset)
Yan7d7d6062007-09-14 16:15:28 -0400511 break;
Yan7d7d6062007-09-14 16:15:28 -0400512
Josef Bacik3173a182013-03-07 14:22:04 -0500513 if (key.type == BTRFS_EXTENT_ITEM_KEY ||
514 key.type == BTRFS_METADATA_ITEM_KEY) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400515 total_found += add_new_free_space(block_group,
516 fs_info, last,
517 key.objectid);
Josef Bacik3173a182013-03-07 14:22:04 -0500518 if (key.type == BTRFS_METADATA_ITEM_KEY)
519 last = key.objectid +
David Sterba707e8a02014-06-04 19:22:26 +0200520 fs_info->tree_root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500521 else
522 last = key.objectid + key.offset;
Josef Bacik817d52f2009-07-13 21:29:25 -0400523
Byongho Leeee221842015-12-15 01:42:10 +0900524 if (total_found > SZ_2M) {
Yan Zheng11833d62009-09-11 16:11:19 -0400525 total_found = 0;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400526 if (wakeup)
527 wake_up(&caching_ctl->wait);
Yan Zheng11833d62009-09-11 16:11:19 -0400528 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400529 }
Chris Masone37c9e62007-05-09 20:13:14 -0400530 path->slots[0]++;
531 }
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400532 ret = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400533
534 total_found += add_new_free_space(block_group, fs_info, last,
535 block_group->key.objectid +
536 block_group->key.offset);
Josef Bacik817d52f2009-07-13 21:29:25 -0400537 spin_lock(&block_group->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400538 block_group->caching_ctl = NULL;
Josef Bacik817d52f2009-07-13 21:29:25 -0400539 block_group->cached = BTRFS_CACHE_FINISHED;
540 spin_unlock(&block_group->lock);
541
Josef Bacikd0bd4562015-09-23 14:54:14 -0400542#ifdef CONFIG_BTRFS_DEBUG
543 if (btrfs_should_fragment_free_space(extent_root, block_group)) {
544 u64 bytes_used;
545
546 spin_lock(&block_group->space_info->lock);
547 spin_lock(&block_group->lock);
548 bytes_used = block_group->key.offset -
549 btrfs_block_group_used(&block_group->item);
550 block_group->space_info->bytes_used += bytes_used >> 1;
551 spin_unlock(&block_group->lock);
552 spin_unlock(&block_group->space_info->lock);
553 fragment_free_space(extent_root, block_group);
554 }
555#endif
556
557 caching_ctl->progress = (u64)-1;
Chris Mason54aa1f42007-06-22 14:16:25 -0400558err:
Chris Masone37c9e62007-05-09 20:13:14 -0400559 btrfs_free_path(path);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400560 up_read(&fs_info->commit_root_sem);
Josef Bacik817d52f2009-07-13 21:29:25 -0400561
Yan Zheng11833d62009-09-11 16:11:19 -0400562 free_excluded_extents(extent_root, block_group);
563
564 mutex_unlock(&caching_ctl->mutex);
Josef Bacikbab39bf2011-06-30 14:42:28 -0400565out:
Josef Bacik36cce922013-08-05 11:15:21 -0400566 if (ret) {
567 spin_lock(&block_group->lock);
568 block_group->caching_ctl = NULL;
569 block_group->cached = BTRFS_CACHE_ERROR;
570 spin_unlock(&block_group->lock);
571 }
Yan Zheng11833d62009-09-11 16:11:19 -0400572 wake_up(&caching_ctl->wait);
573
574 put_caching_control(caching_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000575 btrfs_put_block_group(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -0400576}
577
Josef Bacik9d66e232010-08-25 16:54:15 -0400578static int cache_block_group(struct btrfs_block_group_cache *cache,
Josef Bacik9d66e232010-08-25 16:54:15 -0400579 int load_cache_only)
Josef Bacik817d52f2009-07-13 21:29:25 -0400580{
Josef Bacik291c7d22011-11-14 13:52:14 -0500581 DEFINE_WAIT(wait);
Yan Zheng11833d62009-09-11 16:11:19 -0400582 struct btrfs_fs_info *fs_info = cache->fs_info;
583 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400584 int ret = 0;
585
Josef Bacik291c7d22011-11-14 13:52:14 -0500586 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100587 if (!caching_ctl)
588 return -ENOMEM;
Josef Bacik291c7d22011-11-14 13:52:14 -0500589
590 INIT_LIST_HEAD(&caching_ctl->list);
591 mutex_init(&caching_ctl->mutex);
592 init_waitqueue_head(&caching_ctl->wait);
593 caching_ctl->block_group = cache;
594 caching_ctl->progress = cache->key.objectid;
595 atomic_set(&caching_ctl->count, 1);
Liu Bo9e0af232014-08-15 23:36:53 +0800596 btrfs_init_work(&caching_ctl->work, btrfs_cache_helper,
597 caching_thread, NULL, NULL);
Josef Bacik291c7d22011-11-14 13:52:14 -0500598
599 spin_lock(&cache->lock);
600 /*
601 * This should be a rare occasion, but this could happen I think in the
602 * case where one thread starts to load the space cache info, and then
603 * some other thread starts a transaction commit which tries to do an
604 * allocation while the other thread is still loading the space cache
605 * info. The previous loop should have kept us from choosing this block
606 * group, but if we've moved to the state where we will wait on caching
607 * block groups we need to first check if we're doing a fast load here,
608 * so we can wait for it to finish, otherwise we could end up allocating
609 * from a block group who's cache gets evicted for one reason or
610 * another.
611 */
612 while (cache->cached == BTRFS_CACHE_FAST) {
613 struct btrfs_caching_control *ctl;
614
615 ctl = cache->caching_ctl;
616 atomic_inc(&ctl->count);
617 prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE);
618 spin_unlock(&cache->lock);
619
620 schedule();
621
622 finish_wait(&ctl->wait, &wait);
623 put_caching_control(ctl);
624 spin_lock(&cache->lock);
625 }
626
627 if (cache->cached != BTRFS_CACHE_NO) {
628 spin_unlock(&cache->lock);
629 kfree(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400630 return 0;
Josef Bacik291c7d22011-11-14 13:52:14 -0500631 }
632 WARN_ON(cache->caching_ctl);
633 cache->caching_ctl = caching_ctl;
634 cache->cached = BTRFS_CACHE_FAST;
635 spin_unlock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400636
Josef Bacikd53ba472012-04-12 16:03:57 -0400637 if (fs_info->mount_opt & BTRFS_MOUNT_SPACE_CACHE) {
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500638 mutex_lock(&caching_ctl->mutex);
Josef Bacik9d66e232010-08-25 16:54:15 -0400639 ret = load_free_space_cache(fs_info, cache);
640
641 spin_lock(&cache->lock);
642 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500643 cache->caching_ctl = NULL;
Josef Bacik9d66e232010-08-25 16:54:15 -0400644 cache->cached = BTRFS_CACHE_FINISHED;
645 cache->last_byte_to_unpin = (u64)-1;
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500646 caching_ctl->progress = (u64)-1;
Josef Bacik9d66e232010-08-25 16:54:15 -0400647 } else {
Josef Bacik291c7d22011-11-14 13:52:14 -0500648 if (load_cache_only) {
649 cache->caching_ctl = NULL;
650 cache->cached = BTRFS_CACHE_NO;
651 } else {
652 cache->cached = BTRFS_CACHE_STARTED;
Filipe Manana4f69cb92014-11-26 15:28:51 +0000653 cache->has_caching_ctl = 1;
Josef Bacik291c7d22011-11-14 13:52:14 -0500654 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400655 }
656 spin_unlock(&cache->lock);
Josef Bacikd0bd4562015-09-23 14:54:14 -0400657#ifdef CONFIG_BTRFS_DEBUG
658 if (ret == 1 &&
659 btrfs_should_fragment_free_space(fs_info->extent_root,
660 cache)) {
661 u64 bytes_used;
662
663 spin_lock(&cache->space_info->lock);
664 spin_lock(&cache->lock);
665 bytes_used = cache->key.offset -
666 btrfs_block_group_used(&cache->item);
667 cache->space_info->bytes_used += bytes_used >> 1;
668 spin_unlock(&cache->lock);
669 spin_unlock(&cache->space_info->lock);
670 fragment_free_space(fs_info->extent_root, cache);
671 }
672#endif
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500673 mutex_unlock(&caching_ctl->mutex);
674
Josef Bacik291c7d22011-11-14 13:52:14 -0500675 wake_up(&caching_ctl->wait);
Josef Bacik3c148742011-02-02 15:53:47 +0000676 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500677 put_caching_control(caching_ctl);
Josef Bacik3c148742011-02-02 15:53:47 +0000678 free_excluded_extents(fs_info->extent_root, cache);
Josef Bacik9d66e232010-08-25 16:54:15 -0400679 return 0;
Josef Bacik3c148742011-02-02 15:53:47 +0000680 }
Josef Bacik291c7d22011-11-14 13:52:14 -0500681 } else {
682 /*
683 * We are not going to do the fast caching, set cached to the
684 * appropriate value and wakeup any waiters.
685 */
686 spin_lock(&cache->lock);
687 if (load_cache_only) {
688 cache->caching_ctl = NULL;
689 cache->cached = BTRFS_CACHE_NO;
690 } else {
691 cache->cached = BTRFS_CACHE_STARTED;
Filipe Manana4f69cb92014-11-26 15:28:51 +0000692 cache->has_caching_ctl = 1;
Josef Bacik291c7d22011-11-14 13:52:14 -0500693 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400694 spin_unlock(&cache->lock);
Josef Bacik291c7d22011-11-14 13:52:14 -0500695 wake_up(&caching_ctl->wait);
696 }
697
698 if (load_cache_only) {
699 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400700 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400701 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400702
Josef Bacik9e351cc2014-03-13 15:42:13 -0400703 down_write(&fs_info->commit_root_sem);
Josef Bacik291c7d22011-11-14 13:52:14 -0500704 atomic_inc(&caching_ctl->count);
Yan Zheng11833d62009-09-11 16:11:19 -0400705 list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400706 up_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -0400707
Josef Bacik11dfe352009-11-13 20:12:59 +0000708 btrfs_get_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -0400709
Qu Wenruoe66f0bb2014-02-28 10:46:12 +0800710 btrfs_queue_work(fs_info->caching_workers, &caching_ctl->work);
Josef Bacik817d52f2009-07-13 21:29:25 -0400711
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400712 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -0400713}
714
Josef Bacik0f9dd462008-09-23 13:14:11 -0400715/*
716 * return the block group that starts at or after bytenr
717 */
Chris Masond3977122009-01-05 21:25:51 -0500718static struct btrfs_block_group_cache *
719btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
Chris Mason0ef3e662008-05-24 14:04:53 -0400720{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400721 struct btrfs_block_group_cache *cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400722
Josef Bacik0f9dd462008-09-23 13:14:11 -0400723 cache = block_group_cache_tree_search(info, bytenr, 0);
Chris Mason0ef3e662008-05-24 14:04:53 -0400724
Josef Bacik0f9dd462008-09-23 13:14:11 -0400725 return cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400726}
727
Josef Bacik0f9dd462008-09-23 13:14:11 -0400728/*
Sankar P9f556842009-05-14 13:52:22 -0400729 * return the block group that contains the given bytenr
Josef Bacik0f9dd462008-09-23 13:14:11 -0400730 */
Chris Masond3977122009-01-05 21:25:51 -0500731struct btrfs_block_group_cache *btrfs_lookup_block_group(
732 struct btrfs_fs_info *info,
733 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400734{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400735 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -0400736
Josef Bacik0f9dd462008-09-23 13:14:11 -0400737 cache = block_group_cache_tree_search(info, bytenr, 1);
Chris Mason96b51792007-10-15 16:15:19 -0400738
Josef Bacik0f9dd462008-09-23 13:14:11 -0400739 return cache;
Chris Masonbe744172007-05-06 10:15:01 -0400740}
Chris Mason0b86a832008-03-24 15:01:56 -0400741
Josef Bacik0f9dd462008-09-23 13:14:11 -0400742static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
743 u64 flags)
Chris Mason6324fbf2008-03-24 15:01:59 -0400744{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400745 struct list_head *head = &info->space_info;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400746 struct btrfs_space_info *found;
Chris Mason4184ea72009-03-10 12:39:20 -0400747
Ilya Dryomov52ba6922012-01-16 22:04:47 +0200748 flags &= BTRFS_BLOCK_GROUP_TYPE_MASK;
Yan, Zhengb742bb82010-05-16 10:46:24 -0400749
Chris Mason4184ea72009-03-10 12:39:20 -0400750 rcu_read_lock();
751 list_for_each_entry_rcu(found, head, list) {
Josef Bacik67377732010-09-16 16:19:09 -0400752 if (found->flags & flags) {
Chris Mason4184ea72009-03-10 12:39:20 -0400753 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400754 return found;
Chris Mason4184ea72009-03-10 12:39:20 -0400755 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400756 }
Chris Mason4184ea72009-03-10 12:39:20 -0400757 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400758 return NULL;
Chris Mason6324fbf2008-03-24 15:01:59 -0400759}
760
Chris Mason4184ea72009-03-10 12:39:20 -0400761/*
762 * after adding space to the filesystem, we need to clear the full flags
763 * on all the space infos.
764 */
765void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
766{
767 struct list_head *head = &info->space_info;
768 struct btrfs_space_info *found;
769
770 rcu_read_lock();
771 list_for_each_entry_rcu(found, head, list)
772 found->full = 0;
773 rcu_read_unlock();
774}
775
Filipe Manana1a4ed8f2014-10-27 10:44:24 +0000776/* simple helper to search for an existing data extent at a given offset */
777int btrfs_lookup_data_extent(struct btrfs_root *root, u64 start, u64 len)
Chris Masone02119d2008-09-05 16:13:11 -0400778{
779 int ret;
780 struct btrfs_key key;
Zheng Yan31840ae2008-09-23 13:14:14 -0400781 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -0400782
Zheng Yan31840ae2008-09-23 13:14:14 -0400783 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700784 if (!path)
785 return -ENOMEM;
786
Chris Masone02119d2008-09-05 16:13:11 -0400787 key.objectid = start;
788 key.offset = len;
Josef Bacik3173a182013-03-07 14:22:04 -0500789 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -0400790 ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path,
791 0, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400792 btrfs_free_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -0500793 return ret;
794}
795
Chris Masond8d5f3e2007-12-11 12:42:00 -0500796/*
Josef Bacik3173a182013-03-07 14:22:04 -0500797 * helper function to lookup reference count and flags of a tree block.
Yan, Zhenga22285a2010-05-16 10:48:46 -0400798 *
799 * the head node for delayed ref is used to store the sum of all the
800 * reference count modifications queued up in the rbtree. the head
801 * node may also store the extent flags to set. This way you can check
802 * to see what the reference count and extent flags would be if all of
803 * the delayed refs are not processed.
804 */
805int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
806 struct btrfs_root *root, u64 bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -0500807 u64 offset, int metadata, u64 *refs, u64 *flags)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400808{
809 struct btrfs_delayed_ref_head *head;
810 struct btrfs_delayed_ref_root *delayed_refs;
811 struct btrfs_path *path;
812 struct btrfs_extent_item *ei;
813 struct extent_buffer *leaf;
814 struct btrfs_key key;
815 u32 item_size;
816 u64 num_refs;
817 u64 extent_flags;
818 int ret;
819
Josef Bacik3173a182013-03-07 14:22:04 -0500820 /*
821 * If we don't have skinny metadata, don't bother doing anything
822 * different
823 */
824 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) {
David Sterba707e8a02014-06-04 19:22:26 +0200825 offset = root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500826 metadata = 0;
827 }
828
Yan, Zhenga22285a2010-05-16 10:48:46 -0400829 path = btrfs_alloc_path();
830 if (!path)
831 return -ENOMEM;
832
Yan, Zhenga22285a2010-05-16 10:48:46 -0400833 if (!trans) {
834 path->skip_locking = 1;
835 path->search_commit_root = 1;
836 }
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000837
838search_again:
839 key.objectid = bytenr;
840 key.offset = offset;
841 if (metadata)
842 key.type = BTRFS_METADATA_ITEM_KEY;
843 else
844 key.type = BTRFS_EXTENT_ITEM_KEY;
845
Yan, Zhenga22285a2010-05-16 10:48:46 -0400846 ret = btrfs_search_slot(trans, root->fs_info->extent_root,
847 &key, path, 0, 0);
848 if (ret < 0)
849 goto out_free;
850
Josef Bacik3173a182013-03-07 14:22:04 -0500851 if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) {
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100852 if (path->slots[0]) {
853 path->slots[0]--;
854 btrfs_item_key_to_cpu(path->nodes[0], &key,
855 path->slots[0]);
856 if (key.objectid == bytenr &&
857 key.type == BTRFS_EXTENT_ITEM_KEY &&
David Sterba707e8a02014-06-04 19:22:26 +0200858 key.offset == root->nodesize)
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100859 ret = 0;
860 }
Josef Bacik3173a182013-03-07 14:22:04 -0500861 }
862
Yan, Zhenga22285a2010-05-16 10:48:46 -0400863 if (ret == 0) {
864 leaf = path->nodes[0];
865 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
866 if (item_size >= sizeof(*ei)) {
867 ei = btrfs_item_ptr(leaf, path->slots[0],
868 struct btrfs_extent_item);
869 num_refs = btrfs_extent_refs(leaf, ei);
870 extent_flags = btrfs_extent_flags(leaf, ei);
871 } else {
872#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
873 struct btrfs_extent_item_v0 *ei0;
874 BUG_ON(item_size != sizeof(*ei0));
875 ei0 = btrfs_item_ptr(leaf, path->slots[0],
876 struct btrfs_extent_item_v0);
877 num_refs = btrfs_extent_refs_v0(leaf, ei0);
878 /* FIXME: this isn't correct for data */
879 extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
880#else
881 BUG();
882#endif
883 }
884 BUG_ON(num_refs == 0);
885 } else {
886 num_refs = 0;
887 extent_flags = 0;
888 ret = 0;
889 }
890
891 if (!trans)
892 goto out;
893
894 delayed_refs = &trans->transaction->delayed_refs;
895 spin_lock(&delayed_refs->lock);
896 head = btrfs_find_delayed_ref_head(trans, bytenr);
897 if (head) {
898 if (!mutex_trylock(&head->mutex)) {
899 atomic_inc(&head->node.refs);
900 spin_unlock(&delayed_refs->lock);
901
David Sterbab3b4aa72011-04-21 01:20:15 +0200902 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400903
David Sterba8cc33e52011-05-02 15:29:25 +0200904 /*
905 * Mutex was contended, block until it's released and try
906 * again
907 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400908 mutex_lock(&head->mutex);
909 mutex_unlock(&head->mutex);
910 btrfs_put_delayed_ref(&head->node);
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000911 goto search_again;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400912 }
Josef Bacikd7df2c72014-01-23 09:21:38 -0500913 spin_lock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400914 if (head->extent_op && head->extent_op->update_flags)
915 extent_flags |= head->extent_op->flags_to_set;
916 else
917 BUG_ON(num_refs == 0);
918
919 num_refs += head->node.ref_mod;
Josef Bacikd7df2c72014-01-23 09:21:38 -0500920 spin_unlock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400921 mutex_unlock(&head->mutex);
922 }
923 spin_unlock(&delayed_refs->lock);
924out:
925 WARN_ON(num_refs == 0);
926 if (refs)
927 *refs = num_refs;
928 if (flags)
929 *flags = extent_flags;
930out_free:
931 btrfs_free_path(path);
932 return ret;
933}
934
935/*
Chris Masond8d5f3e2007-12-11 12:42:00 -0500936 * Back reference rules. Back refs have three main goals:
937 *
938 * 1) differentiate between all holders of references to an extent so that
939 * when a reference is dropped we can make sure it was a valid reference
940 * before freeing the extent.
941 *
942 * 2) Provide enough information to quickly find the holders of an extent
943 * if we notice a given block is corrupted or bad.
944 *
945 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
946 * maintenance. This is actually the same as #2, but with a slightly
947 * different use case.
948 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400949 * There are two kinds of back refs. The implicit back refs is optimized
950 * for pointers in non-shared tree blocks. For a given pointer in a block,
951 * back refs of this kind provide information about the block's owner tree
952 * and the pointer's key. These information allow us to find the block by
953 * b-tree searching. The full back refs is for pointers in tree blocks not
954 * referenced by their owner trees. The location of tree block is recorded
955 * in the back refs. Actually the full back refs is generic, and can be
956 * used in all cases the implicit back refs is used. The major shortcoming
957 * of the full back refs is its overhead. Every time a tree block gets
958 * COWed, we have to update back refs entry for all pointers in it.
959 *
960 * For a newly allocated tree block, we use implicit back refs for
961 * pointers in it. This means most tree related operations only involve
962 * implicit back refs. For a tree block created in old transaction, the
963 * only way to drop a reference to it is COW it. So we can detect the
964 * event that tree block loses its owner tree's reference and do the
965 * back refs conversion.
966 *
967 * When a tree block is COW'd through a tree, there are four cases:
968 *
969 * The reference count of the block is one and the tree is the block's
970 * owner tree. Nothing to do in this case.
971 *
972 * The reference count of the block is one and the tree is not the
973 * block's owner tree. In this case, full back refs is used for pointers
974 * in the block. Remove these full back refs, add implicit back refs for
975 * every pointers in the new block.
976 *
977 * The reference count of the block is greater than one and the tree is
978 * the block's owner tree. In this case, implicit back refs is used for
979 * pointers in the block. Add full back refs for every pointers in the
980 * block, increase lower level extents' reference counts. The original
981 * implicit back refs are entailed to the new block.
982 *
983 * The reference count of the block is greater than one and the tree is
984 * not the block's owner tree. Add implicit back refs for every pointer in
985 * the new block, increase lower level extents' reference count.
986 *
987 * Back Reference Key composing:
988 *
989 * The key objectid corresponds to the first byte in the extent,
990 * The key type is used to differentiate between types of back refs.
991 * There are different meanings of the key offset for different types
992 * of back refs.
993 *
Chris Masond8d5f3e2007-12-11 12:42:00 -0500994 * File extents can be referenced by:
995 *
996 * - multiple snapshots, subvolumes, or different generations in one subvol
Zheng Yan31840ae2008-09-23 13:14:14 -0400997 * - different files inside a single subvolume
Chris Masond8d5f3e2007-12-11 12:42:00 -0500998 * - different offsets inside a file (bookend extents in file.c)
999 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001000 * The extent ref structure for the implicit back refs has fields for:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001001 *
1002 * - Objectid of the subvolume root
Chris Masond8d5f3e2007-12-11 12:42:00 -05001003 * - objectid of the file holding the reference
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001004 * - original offset in the file
1005 * - how many bookend extents
Zheng Yan31840ae2008-09-23 13:14:14 -04001006 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001007 * The key offset for the implicit back refs is hash of the first
1008 * three fields.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001009 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001010 * The extent ref structure for the full back refs has field for:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001011 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001012 * - number of pointers in the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -05001013 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001014 * The key offset for the implicit back refs is the first byte of
1015 * the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -05001016 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001017 * When a file extent is allocated, The implicit back refs is used.
1018 * the fields are filled in:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001019 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001020 * (root_key.objectid, inode objectid, offset in file, 1)
1021 *
1022 * When a file extent is removed file truncation, we find the
1023 * corresponding implicit back refs and check the following fields:
1024 *
1025 * (btrfs_header_owner(leaf), inode objectid, offset in file)
Chris Masond8d5f3e2007-12-11 12:42:00 -05001026 *
1027 * Btree extents can be referenced by:
1028 *
1029 * - Different subvolumes
Chris Masond8d5f3e2007-12-11 12:42:00 -05001030 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001031 * Both the implicit back refs and the full back refs for tree blocks
1032 * only consist of key. The key offset for the implicit back refs is
1033 * objectid of block's owner tree. The key offset for the full back refs
1034 * is the first byte of parent block.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001035 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001036 * When implicit back refs is used, information about the lowest key and
1037 * level of the tree block are required. These information are stored in
1038 * tree block info structure.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001039 */
Zheng Yan31840ae2008-09-23 13:14:14 -04001040
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001041#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1042static int convert_extent_item_v0(struct btrfs_trans_handle *trans,
1043 struct btrfs_root *root,
1044 struct btrfs_path *path,
1045 u64 owner, u32 extra_size)
Chris Mason74493f72007-12-11 09:25:06 -05001046{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001047 struct btrfs_extent_item *item;
1048 struct btrfs_extent_item_v0 *ei0;
1049 struct btrfs_extent_ref_v0 *ref0;
1050 struct btrfs_tree_block_info *bi;
Zheng Yan31840ae2008-09-23 13:14:14 -04001051 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001052 struct btrfs_key key;
1053 struct btrfs_key found_key;
1054 u32 new_size = sizeof(*item);
1055 u64 refs;
Chris Mason74493f72007-12-11 09:25:06 -05001056 int ret;
1057
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001058 leaf = path->nodes[0];
1059 BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0));
Chris Mason74493f72007-12-11 09:25:06 -05001060
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001061 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1062 ei0 = btrfs_item_ptr(leaf, path->slots[0],
1063 struct btrfs_extent_item_v0);
1064 refs = btrfs_extent_refs_v0(leaf, ei0);
1065
1066 if (owner == (u64)-1) {
1067 while (1) {
1068 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1069 ret = btrfs_next_leaf(root, path);
1070 if (ret < 0)
1071 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001072 BUG_ON(ret > 0); /* Corruption */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001073 leaf = path->nodes[0];
1074 }
1075 btrfs_item_key_to_cpu(leaf, &found_key,
1076 path->slots[0]);
1077 BUG_ON(key.objectid != found_key.objectid);
1078 if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) {
1079 path->slots[0]++;
1080 continue;
1081 }
1082 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1083 struct btrfs_extent_ref_v0);
1084 owner = btrfs_ref_objectid_v0(leaf, ref0);
1085 break;
1086 }
1087 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001088 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001089
1090 if (owner < BTRFS_FIRST_FREE_OBJECTID)
1091 new_size += sizeof(*bi);
1092
1093 new_size -= sizeof(*ei0);
1094 ret = btrfs_search_slot(trans, root, &key, path,
1095 new_size + extra_size, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04001096 if (ret < 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001097 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001098 BUG_ON(ret); /* Corruption */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001099
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00001100 btrfs_extend_item(root, path, new_size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001101
1102 leaf = path->nodes[0];
1103 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1104 btrfs_set_extent_refs(leaf, item, refs);
1105 /* FIXME: get real generation */
1106 btrfs_set_extent_generation(leaf, item, 0);
1107 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1108 btrfs_set_extent_flags(leaf, item,
1109 BTRFS_EXTENT_FLAG_TREE_BLOCK |
1110 BTRFS_BLOCK_FLAG_FULL_BACKREF);
1111 bi = (struct btrfs_tree_block_info *)(item + 1);
1112 /* FIXME: get first key of the block */
1113 memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi));
1114 btrfs_set_tree_block_level(leaf, bi, (int)owner);
1115 } else {
1116 btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA);
1117 }
1118 btrfs_mark_buffer_dirty(leaf);
1119 return 0;
1120}
1121#endif
1122
1123static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
1124{
1125 u32 high_crc = ~(u32)0;
1126 u32 low_crc = ~(u32)0;
1127 __le64 lenum;
1128
1129 lenum = cpu_to_le64(root_objectid);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001130 high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001131 lenum = cpu_to_le64(owner);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001132 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001133 lenum = cpu_to_le64(offset);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001134 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001135
1136 return ((u64)high_crc << 31) ^ (u64)low_crc;
1137}
1138
1139static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
1140 struct btrfs_extent_data_ref *ref)
1141{
1142 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
1143 btrfs_extent_data_ref_objectid(leaf, ref),
1144 btrfs_extent_data_ref_offset(leaf, ref));
1145}
1146
1147static int match_extent_data_ref(struct extent_buffer *leaf,
1148 struct btrfs_extent_data_ref *ref,
1149 u64 root_objectid, u64 owner, u64 offset)
1150{
1151 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
1152 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
1153 btrfs_extent_data_ref_offset(leaf, ref) != offset)
1154 return 0;
1155 return 1;
1156}
1157
1158static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
1159 struct btrfs_root *root,
1160 struct btrfs_path *path,
1161 u64 bytenr, u64 parent,
1162 u64 root_objectid,
1163 u64 owner, u64 offset)
1164{
1165 struct btrfs_key key;
1166 struct btrfs_extent_data_ref *ref;
1167 struct extent_buffer *leaf;
1168 u32 nritems;
1169 int ret;
1170 int recow;
1171 int err = -ENOENT;
1172
1173 key.objectid = bytenr;
1174 if (parent) {
1175 key.type = BTRFS_SHARED_DATA_REF_KEY;
1176 key.offset = parent;
1177 } else {
1178 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1179 key.offset = hash_extent_data_ref(root_objectid,
1180 owner, offset);
1181 }
1182again:
1183 recow = 0;
1184 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1185 if (ret < 0) {
1186 err = ret;
1187 goto fail;
1188 }
1189
1190 if (parent) {
1191 if (!ret)
1192 return 0;
1193#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1194 key.type = BTRFS_EXTENT_REF_V0_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02001195 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001196 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1197 if (ret < 0) {
1198 err = ret;
1199 goto fail;
1200 }
1201 if (!ret)
1202 return 0;
1203#endif
1204 goto fail;
Zheng Yan31840ae2008-09-23 13:14:14 -04001205 }
1206
1207 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001208 nritems = btrfs_header_nritems(leaf);
1209 while (1) {
1210 if (path->slots[0] >= nritems) {
1211 ret = btrfs_next_leaf(root, path);
1212 if (ret < 0)
1213 err = ret;
1214 if (ret)
1215 goto fail;
1216
1217 leaf = path->nodes[0];
1218 nritems = btrfs_header_nritems(leaf);
1219 recow = 1;
1220 }
1221
1222 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1223 if (key.objectid != bytenr ||
1224 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1225 goto fail;
1226
1227 ref = btrfs_item_ptr(leaf, path->slots[0],
1228 struct btrfs_extent_data_ref);
1229
1230 if (match_extent_data_ref(leaf, ref, root_objectid,
1231 owner, offset)) {
1232 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001233 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001234 goto again;
1235 }
1236 err = 0;
1237 break;
1238 }
1239 path->slots[0]++;
Zheng Yan31840ae2008-09-23 13:14:14 -04001240 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001241fail:
1242 return err;
Zheng Yan31840ae2008-09-23 13:14:14 -04001243}
1244
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001245static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
1246 struct btrfs_root *root,
1247 struct btrfs_path *path,
1248 u64 bytenr, u64 parent,
1249 u64 root_objectid, u64 owner,
1250 u64 offset, int refs_to_add)
Zheng Yan31840ae2008-09-23 13:14:14 -04001251{
1252 struct btrfs_key key;
1253 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001254 u32 size;
Zheng Yan31840ae2008-09-23 13:14:14 -04001255 u32 num_refs;
1256 int ret;
1257
1258 key.objectid = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001259 if (parent) {
1260 key.type = BTRFS_SHARED_DATA_REF_KEY;
1261 key.offset = parent;
1262 size = sizeof(struct btrfs_shared_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001263 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001264 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1265 key.offset = hash_extent_data_ref(root_objectid,
1266 owner, offset);
1267 size = sizeof(struct btrfs_extent_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001268 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001269
1270 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1271 if (ret && ret != -EEXIST)
1272 goto fail;
1273
1274 leaf = path->nodes[0];
1275 if (parent) {
1276 struct btrfs_shared_data_ref *ref;
1277 ref = btrfs_item_ptr(leaf, path->slots[0],
1278 struct btrfs_shared_data_ref);
1279 if (ret == 0) {
1280 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1281 } else {
1282 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1283 num_refs += refs_to_add;
1284 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
1285 }
1286 } else {
1287 struct btrfs_extent_data_ref *ref;
1288 while (ret == -EEXIST) {
1289 ref = btrfs_item_ptr(leaf, path->slots[0],
1290 struct btrfs_extent_data_ref);
1291 if (match_extent_data_ref(leaf, ref, root_objectid,
1292 owner, offset))
1293 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02001294 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001295 key.offset++;
1296 ret = btrfs_insert_empty_item(trans, root, path, &key,
1297 size);
1298 if (ret && ret != -EEXIST)
1299 goto fail;
1300
1301 leaf = path->nodes[0];
1302 }
1303 ref = btrfs_item_ptr(leaf, path->slots[0],
1304 struct btrfs_extent_data_ref);
1305 if (ret == 0) {
1306 btrfs_set_extent_data_ref_root(leaf, ref,
1307 root_objectid);
1308 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1309 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1310 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1311 } else {
1312 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1313 num_refs += refs_to_add;
1314 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
1315 }
1316 }
1317 btrfs_mark_buffer_dirty(leaf);
1318 ret = 0;
1319fail:
David Sterbab3b4aa72011-04-21 01:20:15 +02001320 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05001321 return ret;
Chris Mason74493f72007-12-11 09:25:06 -05001322}
1323
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001324static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
1325 struct btrfs_root *root,
1326 struct btrfs_path *path,
Josef Bacikfcebe452014-05-13 17:30:47 -07001327 int refs_to_drop, int *last_ref)
Zheng Yan31840ae2008-09-23 13:14:14 -04001328{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001329 struct btrfs_key key;
1330 struct btrfs_extent_data_ref *ref1 = NULL;
1331 struct btrfs_shared_data_ref *ref2 = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -04001332 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001333 u32 num_refs = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04001334 int ret = 0;
1335
1336 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001337 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1338
1339 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 BUG();
1356 }
1357
Chris Mason56bec292009-03-13 10:10:06 -04001358 BUG_ON(num_refs < refs_to_drop);
1359 num_refs -= refs_to_drop;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001360
Zheng Yan31840ae2008-09-23 13:14:14 -04001361 if (num_refs == 0) {
1362 ret = btrfs_del_item(trans, root, path);
Josef Bacikfcebe452014-05-13 17:30:47 -07001363 *last_ref = 1;
Zheng Yan31840ae2008-09-23 13:14:14 -04001364 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001365 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1366 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1367 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1368 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
1369#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1370 else {
1371 struct btrfs_extent_ref_v0 *ref0;
1372 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1373 struct btrfs_extent_ref_v0);
1374 btrfs_set_ref_count_v0(leaf, ref0, num_refs);
1375 }
1376#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04001377 btrfs_mark_buffer_dirty(leaf);
1378 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001379 return ret;
1380}
1381
Zhaolei9ed0dea2015-08-06 22:16:24 +08001382static noinline u32 extent_data_ref_count(struct btrfs_path *path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001383 struct btrfs_extent_inline_ref *iref)
1384{
1385 struct btrfs_key key;
1386 struct extent_buffer *leaf;
1387 struct btrfs_extent_data_ref *ref1;
1388 struct btrfs_shared_data_ref *ref2;
1389 u32 num_refs = 0;
1390
1391 leaf = path->nodes[0];
1392 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1393 if (iref) {
1394 if (btrfs_extent_inline_ref_type(leaf, iref) ==
1395 BTRFS_EXTENT_DATA_REF_KEY) {
1396 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1397 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1398 } else {
1399 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1400 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1401 }
1402 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1403 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1404 struct btrfs_extent_data_ref);
1405 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1406 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1407 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1408 struct btrfs_shared_data_ref);
1409 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1410#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1411 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1412 struct btrfs_extent_ref_v0 *ref0;
1413 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1414 struct btrfs_extent_ref_v0);
1415 num_refs = btrfs_ref_count_v0(leaf, ref0);
1416#endif
1417 } else {
1418 WARN_ON(1);
1419 }
1420 return num_refs;
1421}
1422
1423static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
1424 struct btrfs_root *root,
1425 struct btrfs_path *path,
1426 u64 bytenr, u64 parent,
1427 u64 root_objectid)
1428{
1429 struct btrfs_key key;
1430 int ret;
1431
1432 key.objectid = bytenr;
1433 if (parent) {
1434 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1435 key.offset = parent;
1436 } else {
1437 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1438 key.offset = root_objectid;
1439 }
1440
1441 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1442 if (ret > 0)
1443 ret = -ENOENT;
1444#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1445 if (ret == -ENOENT && parent) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001446 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001447 key.type = BTRFS_EXTENT_REF_V0_KEY;
1448 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1449 if (ret > 0)
1450 ret = -ENOENT;
1451 }
1452#endif
1453 return ret;
1454}
1455
1456static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
1457 struct btrfs_root *root,
1458 struct btrfs_path *path,
1459 u64 bytenr, u64 parent,
1460 u64 root_objectid)
1461{
1462 struct btrfs_key key;
1463 int ret;
1464
1465 key.objectid = bytenr;
1466 if (parent) {
1467 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1468 key.offset = parent;
1469 } else {
1470 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1471 key.offset = root_objectid;
1472 }
1473
1474 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
David Sterbab3b4aa72011-04-21 01:20:15 +02001475 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04001476 return ret;
1477}
1478
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001479static inline int extent_ref_type(u64 parent, u64 owner)
1480{
1481 int type;
1482 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1483 if (parent > 0)
1484 type = BTRFS_SHARED_BLOCK_REF_KEY;
1485 else
1486 type = BTRFS_TREE_BLOCK_REF_KEY;
1487 } else {
1488 if (parent > 0)
1489 type = BTRFS_SHARED_DATA_REF_KEY;
1490 else
1491 type = BTRFS_EXTENT_DATA_REF_KEY;
1492 }
1493 return type;
1494}
1495
Yan Zheng2c47e6052009-06-27 21:07:35 -04001496static int find_next_key(struct btrfs_path *path, int level,
1497 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001498
1499{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001500 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001501 if (!path->nodes[level])
1502 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001503 if (path->slots[level] + 1 >=
1504 btrfs_header_nritems(path->nodes[level]))
1505 continue;
1506 if (level == 0)
1507 btrfs_item_key_to_cpu(path->nodes[level], key,
1508 path->slots[level] + 1);
1509 else
1510 btrfs_node_key_to_cpu(path->nodes[level], key,
1511 path->slots[level] + 1);
1512 return 0;
1513 }
1514 return 1;
1515}
1516
1517/*
1518 * look for inline back ref. if back ref is found, *ref_ret is set
1519 * to the address of inline back ref, and 0 is returned.
1520 *
1521 * if back ref isn't found, *ref_ret is set to the address where it
1522 * should be inserted, and -ENOENT is returned.
1523 *
1524 * if insert is true and there are too many inline back refs, the path
1525 * points to the extent item, and -EAGAIN is returned.
1526 *
1527 * NOTE: inline back refs are ordered in the same way that back ref
1528 * items in the tree are ordered.
1529 */
1530static noinline_for_stack
1531int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
1532 struct btrfs_root *root,
1533 struct btrfs_path *path,
1534 struct btrfs_extent_inline_ref **ref_ret,
1535 u64 bytenr, u64 num_bytes,
1536 u64 parent, u64 root_objectid,
1537 u64 owner, u64 offset, int insert)
1538{
1539 struct btrfs_key key;
1540 struct extent_buffer *leaf;
1541 struct btrfs_extent_item *ei;
1542 struct btrfs_extent_inline_ref *iref;
1543 u64 flags;
1544 u64 item_size;
1545 unsigned long ptr;
1546 unsigned long end;
1547 int extra_size;
1548 int type;
1549 int want;
1550 int ret;
1551 int err = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05001552 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
1553 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001554
1555 key.objectid = bytenr;
1556 key.type = BTRFS_EXTENT_ITEM_KEY;
1557 key.offset = num_bytes;
1558
1559 want = extent_ref_type(parent, owner);
1560 if (insert) {
1561 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001562 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001563 } else
1564 extra_size = -1;
Josef Bacik3173a182013-03-07 14:22:04 -05001565
1566 /*
1567 * Owner is our parent level, so we can just add one to get the level
1568 * for the block we are interested in.
1569 */
1570 if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) {
1571 key.type = BTRFS_METADATA_ITEM_KEY;
1572 key.offset = owner;
1573 }
1574
1575again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001576 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1577 if (ret < 0) {
1578 err = ret;
1579 goto out;
1580 }
Josef Bacik3173a182013-03-07 14:22:04 -05001581
1582 /*
1583 * We may be a newly converted file system which still has the old fat
1584 * extent entries for metadata, so try and see if we have one of those.
1585 */
1586 if (ret > 0 && skinny_metadata) {
1587 skinny_metadata = false;
1588 if (path->slots[0]) {
1589 path->slots[0]--;
1590 btrfs_item_key_to_cpu(path->nodes[0], &key,
1591 path->slots[0]);
1592 if (key.objectid == bytenr &&
1593 key.type == BTRFS_EXTENT_ITEM_KEY &&
1594 key.offset == num_bytes)
1595 ret = 0;
1596 }
1597 if (ret) {
Filipe Manana9ce49a02014-04-24 15:15:28 +01001598 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05001599 key.type = BTRFS_EXTENT_ITEM_KEY;
1600 key.offset = num_bytes;
1601 btrfs_release_path(path);
1602 goto again;
1603 }
1604 }
1605
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001606 if (ret && !insert) {
1607 err = -ENOENT;
1608 goto out;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301609 } else if (WARN_ON(ret)) {
Josef Bacik492104c2013-03-08 15:41:02 -05001610 err = -EIO;
Josef Bacik492104c2013-03-08 15:41:02 -05001611 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001612 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001613
1614 leaf = path->nodes[0];
1615 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1616#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1617 if (item_size < sizeof(*ei)) {
1618 if (!insert) {
1619 err = -ENOENT;
1620 goto out;
1621 }
1622 ret = convert_extent_item_v0(trans, root, path, owner,
1623 extra_size);
1624 if (ret < 0) {
1625 err = ret;
1626 goto out;
1627 }
1628 leaf = path->nodes[0];
1629 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1630 }
1631#endif
1632 BUG_ON(item_size < sizeof(*ei));
1633
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001634 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1635 flags = btrfs_extent_flags(leaf, ei);
1636
1637 ptr = (unsigned long)(ei + 1);
1638 end = (unsigned long)ei + item_size;
1639
Josef Bacik3173a182013-03-07 14:22:04 -05001640 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001641 ptr += sizeof(struct btrfs_tree_block_info);
1642 BUG_ON(ptr > end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001643 }
1644
1645 err = -ENOENT;
1646 while (1) {
1647 if (ptr >= end) {
1648 WARN_ON(ptr > end);
1649 break;
1650 }
1651 iref = (struct btrfs_extent_inline_ref *)ptr;
1652 type = btrfs_extent_inline_ref_type(leaf, iref);
1653 if (want < type)
1654 break;
1655 if (want > type) {
1656 ptr += btrfs_extent_inline_ref_size(type);
1657 continue;
1658 }
1659
1660 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1661 struct btrfs_extent_data_ref *dref;
1662 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1663 if (match_extent_data_ref(leaf, dref, root_objectid,
1664 owner, offset)) {
1665 err = 0;
1666 break;
1667 }
1668 if (hash_extent_data_ref_item(leaf, dref) <
1669 hash_extent_data_ref(root_objectid, owner, offset))
1670 break;
1671 } else {
1672 u64 ref_offset;
1673 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1674 if (parent > 0) {
1675 if (parent == ref_offset) {
1676 err = 0;
1677 break;
1678 }
1679 if (ref_offset < parent)
1680 break;
1681 } else {
1682 if (root_objectid == ref_offset) {
1683 err = 0;
1684 break;
1685 }
1686 if (ref_offset < root_objectid)
1687 break;
1688 }
1689 }
1690 ptr += btrfs_extent_inline_ref_size(type);
1691 }
1692 if (err == -ENOENT && insert) {
1693 if (item_size + extra_size >=
1694 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1695 err = -EAGAIN;
1696 goto out;
1697 }
1698 /*
1699 * To add new inline back ref, we have to make sure
1700 * there is no corresponding back ref item.
1701 * For simplicity, we just do not add new inline back
1702 * ref if there is any kind of item for this block
1703 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001704 if (find_next_key(path, 0, &key) == 0 &&
1705 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001706 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001707 err = -EAGAIN;
1708 goto out;
1709 }
1710 }
1711 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1712out:
Yan Zheng85d41982009-06-11 08:51:10 -04001713 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001714 path->keep_locks = 0;
1715 btrfs_unlock_up_safe(path, 1);
1716 }
1717 return err;
1718}
1719
1720/*
1721 * helper to add new inline back ref
1722 */
1723static noinline_for_stack
Tsutomu Itohfd279fa2013-04-16 05:19:11 +00001724void setup_inline_extent_backref(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001725 struct btrfs_path *path,
1726 struct btrfs_extent_inline_ref *iref,
1727 u64 parent, u64 root_objectid,
1728 u64 owner, u64 offset, int refs_to_add,
1729 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001730{
1731 struct extent_buffer *leaf;
1732 struct btrfs_extent_item *ei;
1733 unsigned long ptr;
1734 unsigned long end;
1735 unsigned long item_offset;
1736 u64 refs;
1737 int size;
1738 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001739
1740 leaf = path->nodes[0];
1741 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1742 item_offset = (unsigned long)iref - (unsigned long)ei;
1743
1744 type = extent_ref_type(parent, owner);
1745 size = btrfs_extent_inline_ref_size(type);
1746
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00001747 btrfs_extend_item(root, path, size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001748
1749 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1750 refs = btrfs_extent_refs(leaf, ei);
1751 refs += refs_to_add;
1752 btrfs_set_extent_refs(leaf, ei, refs);
1753 if (extent_op)
1754 __run_delayed_extent_op(extent_op, leaf, ei);
1755
1756 ptr = (unsigned long)ei + item_offset;
1757 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1758 if (ptr < end - size)
1759 memmove_extent_buffer(leaf, ptr + size, ptr,
1760 end - size - ptr);
1761
1762 iref = (struct btrfs_extent_inline_ref *)ptr;
1763 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1764 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1765 struct btrfs_extent_data_ref *dref;
1766 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1767 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1768 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1769 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1770 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1771 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1772 struct btrfs_shared_data_ref *sref;
1773 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1774 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1775 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1776 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1777 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1778 } else {
1779 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1780 }
1781 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001782}
1783
1784static int lookup_extent_backref(struct btrfs_trans_handle *trans,
1785 struct btrfs_root *root,
1786 struct btrfs_path *path,
1787 struct btrfs_extent_inline_ref **ref_ret,
1788 u64 bytenr, u64 num_bytes, u64 parent,
1789 u64 root_objectid, u64 owner, u64 offset)
1790{
1791 int ret;
1792
1793 ret = lookup_inline_extent_backref(trans, root, path, ref_ret,
1794 bytenr, num_bytes, parent,
1795 root_objectid, owner, offset, 0);
1796 if (ret != -ENOENT)
1797 return ret;
1798
David Sterbab3b4aa72011-04-21 01:20:15 +02001799 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001800 *ref_ret = NULL;
1801
1802 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1803 ret = lookup_tree_block_ref(trans, root, path, bytenr, parent,
1804 root_objectid);
1805 } else {
1806 ret = lookup_extent_data_ref(trans, root, path, bytenr, parent,
1807 root_objectid, owner, offset);
1808 }
1809 return ret;
1810}
1811
1812/*
1813 * helper to update/remove inline back ref
1814 */
1815static noinline_for_stack
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001816void update_inline_extent_backref(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001817 struct btrfs_path *path,
1818 struct btrfs_extent_inline_ref *iref,
1819 int refs_to_mod,
Josef Bacikfcebe452014-05-13 17:30:47 -07001820 struct btrfs_delayed_extent_op *extent_op,
1821 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001822{
1823 struct extent_buffer *leaf;
1824 struct btrfs_extent_item *ei;
1825 struct btrfs_extent_data_ref *dref = NULL;
1826 struct btrfs_shared_data_ref *sref = NULL;
1827 unsigned long ptr;
1828 unsigned long end;
1829 u32 item_size;
1830 int size;
1831 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001832 u64 refs;
1833
1834 leaf = path->nodes[0];
1835 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1836 refs = btrfs_extent_refs(leaf, ei);
1837 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1838 refs += refs_to_mod;
1839 btrfs_set_extent_refs(leaf, ei, refs);
1840 if (extent_op)
1841 __run_delayed_extent_op(extent_op, leaf, ei);
1842
1843 type = btrfs_extent_inline_ref_type(leaf, iref);
1844
1845 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1846 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1847 refs = btrfs_extent_data_ref_count(leaf, dref);
1848 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1849 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1850 refs = btrfs_shared_data_ref_count(leaf, sref);
1851 } else {
1852 refs = 1;
1853 BUG_ON(refs_to_mod != -1);
1854 }
1855
1856 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1857 refs += refs_to_mod;
1858
1859 if (refs > 0) {
1860 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1861 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1862 else
1863 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1864 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001865 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001866 size = btrfs_extent_inline_ref_size(type);
1867 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1868 ptr = (unsigned long)iref;
1869 end = (unsigned long)ei + item_size;
1870 if (ptr + size < end)
1871 memmove_extent_buffer(leaf, ptr, ptr + size,
1872 end - ptr - size);
1873 item_size -= size;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001874 btrfs_truncate_item(root, path, item_size, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001875 }
1876 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001877}
1878
1879static noinline_for_stack
1880int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
1881 struct btrfs_root *root,
1882 struct btrfs_path *path,
1883 u64 bytenr, u64 num_bytes, u64 parent,
1884 u64 root_objectid, u64 owner,
1885 u64 offset, int refs_to_add,
1886 struct btrfs_delayed_extent_op *extent_op)
1887{
1888 struct btrfs_extent_inline_ref *iref;
1889 int ret;
1890
1891 ret = lookup_inline_extent_backref(trans, root, path, &iref,
1892 bytenr, num_bytes, parent,
1893 root_objectid, owner, offset, 1);
1894 if (ret == 0) {
1895 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001896 update_inline_extent_backref(root, path, iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001897 refs_to_add, extent_op, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001898 } else if (ret == -ENOENT) {
Tsutomu Itohfd279fa2013-04-16 05:19:11 +00001899 setup_inline_extent_backref(root, path, iref, parent,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001900 root_objectid, owner, offset,
1901 refs_to_add, extent_op);
1902 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001903 }
1904 return ret;
1905}
1906
1907static int insert_extent_backref(struct btrfs_trans_handle *trans,
1908 struct btrfs_root *root,
1909 struct btrfs_path *path,
1910 u64 bytenr, u64 parent, u64 root_objectid,
1911 u64 owner, u64 offset, int refs_to_add)
1912{
1913 int ret;
1914 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1915 BUG_ON(refs_to_add != 1);
1916 ret = insert_tree_block_ref(trans, root, path, bytenr,
1917 parent, root_objectid);
1918 } else {
1919 ret = insert_extent_data_ref(trans, root, path, bytenr,
1920 parent, root_objectid,
1921 owner, offset, refs_to_add);
1922 }
1923 return ret;
1924}
1925
1926static int remove_extent_backref(struct btrfs_trans_handle *trans,
1927 struct btrfs_root *root,
1928 struct btrfs_path *path,
1929 struct btrfs_extent_inline_ref *iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001930 int refs_to_drop, int is_data, int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001931{
Jeff Mahoney143bede2012-03-01 14:56:26 +01001932 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001933
1934 BUG_ON(!is_data && refs_to_drop != 1);
1935 if (iref) {
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001936 update_inline_extent_backref(root, path, iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001937 -refs_to_drop, NULL, last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001938 } else if (is_data) {
Josef Bacikfcebe452014-05-13 17:30:47 -07001939 ret = remove_extent_data_ref(trans, root, path, refs_to_drop,
1940 last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001941 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001942 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001943 ret = btrfs_del_item(trans, root, path);
1944 }
1945 return ret;
1946}
1947
Jeff Mahoney86557862015-06-15 09:41:16 -04001948#define in_range(b, first, len) ((b) >= (first) && (b) < (first) + (len))
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001949static int btrfs_issue_discard(struct block_device *bdev, u64 start, u64 len,
1950 u64 *discarded_bytes)
Chris Mason15916de2008-11-19 21:17:22 -05001951{
Jeff Mahoney86557862015-06-15 09:41:16 -04001952 int j, ret = 0;
1953 u64 bytes_left, end;
Jeff Mahoney4d89d372015-06-15 09:41:15 -04001954 u64 aligned_start = ALIGN(start, 1 << 9);
1955
1956 if (WARN_ON(start != aligned_start)) {
1957 len -= aligned_start - start;
1958 len = round_down(len, 1 << 9);
1959 start = aligned_start;
1960 }
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001961
1962 *discarded_bytes = 0;
Jeff Mahoney86557862015-06-15 09:41:16 -04001963
1964 if (!len)
1965 return 0;
1966
1967 end = start + len;
1968 bytes_left = len;
1969
1970 /* Skip any superblocks on this device. */
1971 for (j = 0; j < BTRFS_SUPER_MIRROR_MAX; j++) {
1972 u64 sb_start = btrfs_sb_offset(j);
1973 u64 sb_end = sb_start + BTRFS_SUPER_INFO_SIZE;
1974 u64 size = sb_start - start;
1975
1976 if (!in_range(sb_start, start, bytes_left) &&
1977 !in_range(sb_end, start, bytes_left) &&
1978 !in_range(start, sb_start, BTRFS_SUPER_INFO_SIZE))
1979 continue;
1980
1981 /*
1982 * Superblock spans beginning of range. Adjust start and
1983 * try again.
1984 */
1985 if (sb_start <= start) {
1986 start += sb_end - start;
1987 if (start > end) {
1988 bytes_left = 0;
1989 break;
1990 }
1991 bytes_left = end - start;
1992 continue;
1993 }
1994
1995 if (size) {
1996 ret = blkdev_issue_discard(bdev, start >> 9, size >> 9,
1997 GFP_NOFS, 0);
1998 if (!ret)
1999 *discarded_bytes += size;
2000 else if (ret != -EOPNOTSUPP)
2001 return ret;
2002 }
2003
2004 start = sb_end;
2005 if (start > end) {
2006 bytes_left = 0;
2007 break;
2008 }
2009 bytes_left = end - start;
2010 }
2011
2012 if (bytes_left) {
2013 ret = blkdev_issue_discard(bdev, start >> 9, bytes_left >> 9,
Jeff Mahoney4d89d372015-06-15 09:41:15 -04002014 GFP_NOFS, 0);
2015 if (!ret)
Jeff Mahoney86557862015-06-15 09:41:16 -04002016 *discarded_bytes += bytes_left;
Jeff Mahoney4d89d372015-06-15 09:41:15 -04002017 }
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002018 return ret;
Chris Mason15916de2008-11-19 21:17:22 -05002019}
Chris Mason15916de2008-11-19 21:17:22 -05002020
Filipe Manana1edb647b2014-12-08 14:01:12 +00002021int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr,
2022 u64 num_bytes, u64 *actual_bytes)
Liu Hui1f3c79a2009-01-05 15:57:51 -05002023{
Liu Hui1f3c79a2009-01-05 15:57:51 -05002024 int ret;
Li Dongyang5378e602011-03-24 10:24:27 +00002025 u64 discarded_bytes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02002026 struct btrfs_bio *bbio = NULL;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002027
Christoph Hellwige244a0a2009-10-14 09:24:59 -04002028
Liu Hui1f3c79a2009-01-05 15:57:51 -05002029 /* Tell the block device(s) that the sectors can be discarded */
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002030 ret = btrfs_map_block(root->fs_info, REQ_DISCARD,
Jan Schmidta1d3c472011-08-04 17:15:33 +02002031 bytenr, &num_bytes, &bbio, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002032 /* Error condition is -ENOMEM */
Liu Hui1f3c79a2009-01-05 15:57:51 -05002033 if (!ret) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02002034 struct btrfs_bio_stripe *stripe = bbio->stripes;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002035 int i;
2036
Liu Hui1f3c79a2009-01-05 15:57:51 -05002037
Jan Schmidta1d3c472011-08-04 17:15:33 +02002038 for (i = 0; i < bbio->num_stripes; i++, stripe++) {
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002039 u64 bytes;
Josef Bacikd5e20032011-08-04 14:52:27 +00002040 if (!stripe->dev->can_discard)
2041 continue;
2042
Li Dongyang5378e602011-03-24 10:24:27 +00002043 ret = btrfs_issue_discard(stripe->dev->bdev,
2044 stripe->physical,
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002045 stripe->length,
2046 &bytes);
Li Dongyang5378e602011-03-24 10:24:27 +00002047 if (!ret)
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002048 discarded_bytes += bytes;
Li Dongyang5378e602011-03-24 10:24:27 +00002049 else if (ret != -EOPNOTSUPP)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002050 break; /* Logic errors or -ENOMEM, or -EIO but I don't know how that could happen JDM */
Josef Bacikd5e20032011-08-04 14:52:27 +00002051
2052 /*
2053 * Just in case we get back EOPNOTSUPP for some reason,
2054 * just ignore the return value so we don't screw up
2055 * people calling discard_extent.
2056 */
2057 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002058 }
Zhao Lei6e9606d2015-01-20 15:11:34 +08002059 btrfs_put_bbio(bbio);
Liu Hui1f3c79a2009-01-05 15:57:51 -05002060 }
Li Dongyang5378e602011-03-24 10:24:27 +00002061
2062 if (actual_bytes)
2063 *actual_bytes = discarded_bytes;
2064
Liu Hui1f3c79a2009-01-05 15:57:51 -05002065
David Woodhouse53b381b2013-01-29 18:40:14 -05002066 if (ret == -EOPNOTSUPP)
2067 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002068 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002069}
2070
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002071/* Can return -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002072int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
2073 struct btrfs_root *root,
2074 u64 bytenr, u64 num_bytes, u64 parent,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002075 u64 root_objectid, u64 owner, u64 offset)
Zheng Yan31840ae2008-09-23 13:14:14 -04002076{
2077 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002078 struct btrfs_fs_info *fs_info = root->fs_info;
2079
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002080 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
2081 root_objectid == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04002082
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002083 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002084 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
2085 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002086 parent, root_objectid, (int)owner,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002087 BTRFS_ADD_DELAYED_REF, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002088 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002089 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08002090 num_bytes, parent, root_objectid,
2091 owner, offset, 0,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002092 BTRFS_ADD_DELAYED_REF, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002093 }
Zheng Yan31840ae2008-09-23 13:14:14 -04002094 return ret;
2095}
2096
Chris Mason925baed2008-06-25 16:01:30 -04002097static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002098 struct btrfs_root *root,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002099 struct btrfs_delayed_ref_node *node,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002100 u64 parent, u64 root_objectid,
2101 u64 owner, u64 offset, int refs_to_add,
2102 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04002103{
Josef Bacikfcebe452014-05-13 17:30:47 -07002104 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5caf2a02007-04-02 11:20:42 -04002105 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002106 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04002107 struct btrfs_extent_item *item;
Josef Bacikfcebe452014-05-13 17:30:47 -07002108 struct btrfs_key key;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002109 u64 bytenr = node->bytenr;
2110 u64 num_bytes = node->num_bytes;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002111 u64 refs;
2112 int ret;
Chris Mason037e6392007-03-07 11:50:24 -05002113
Chris Mason5caf2a02007-04-02 11:20:42 -04002114 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002115 if (!path)
2116 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04002117
Chris Mason3c12ac72008-04-21 12:01:38 -04002118 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04002119 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002120 /* this will setup the path even if it fails to insert the back ref */
Josef Bacikfcebe452014-05-13 17:30:47 -07002121 ret = insert_inline_extent_backref(trans, fs_info->extent_root, path,
2122 bytenr, num_bytes, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002123 root_objectid, owner, offset,
2124 refs_to_add, extent_op);
Qu Wenruo0ed47922015-04-16 16:55:08 +08002125 if ((ret < 0 && ret != -EAGAIN) || !ret)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002126 goto out;
Josef Bacikfcebe452014-05-13 17:30:47 -07002127
2128 /*
2129 * Ok we had -EAGAIN which means we didn't have space to insert and
2130 * inline extent ref, so just update the reference count and add a
2131 * normal backref.
2132 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002133 leaf = path->nodes[0];
Josef Bacikfcebe452014-05-13 17:30:47 -07002134 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002135 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2136 refs = btrfs_extent_refs(leaf, item);
2137 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
2138 if (extent_op)
2139 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04002140
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002141 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002142 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05002143
Chris Mason3c12ac72008-04-21 12:01:38 -04002144 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04002145 path->leave_spinning = 1;
Chris Mason56bec292009-03-13 10:10:06 -04002146 /* now insert the actual backref */
Zheng Yan31840ae2008-09-23 13:14:14 -04002147 ret = insert_extent_backref(trans, root->fs_info->extent_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002148 path, bytenr, parent, root_objectid,
2149 owner, offset, refs_to_add);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002150 if (ret)
2151 btrfs_abort_transaction(trans, root, ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002152out:
Chris Mason74493f72007-12-11 09:25:06 -05002153 btrfs_free_path(path);
Liu Bo30d133f2013-10-11 16:30:23 +08002154 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002155}
2156
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002157static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
2158 struct btrfs_root *root,
2159 struct btrfs_delayed_ref_node *node,
2160 struct btrfs_delayed_extent_op *extent_op,
2161 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04002162{
Chris Mason56bec292009-03-13 10:10:06 -04002163 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002164 struct btrfs_delayed_data_ref *ref;
2165 struct btrfs_key ins;
2166 u64 parent = 0;
2167 u64 ref_root = 0;
2168 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002169
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002170 ins.objectid = node->bytenr;
2171 ins.offset = node->num_bytes;
2172 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04002173
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002174 ref = btrfs_delayed_node_to_data_ref(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002175 trace_run_delayed_data_ref(node, ref, node->action);
2176
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002177 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
2178 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002179 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002180
2181 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002182 if (extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002183 flags |= extent_op->flags_to_set;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002184 ret = alloc_reserved_file_extent(trans, root,
2185 parent, ref_root, flags,
2186 ref->objectid, ref->offset,
2187 &ins, node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002188 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002189 ret = __btrfs_inc_extent_ref(trans, root, node, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002190 ref_root, ref->objectid,
2191 ref->offset, node->ref_mod,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002192 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002193 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002194 ret = __btrfs_free_extent(trans, root, node, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002195 ref_root, ref->objectid,
2196 ref->offset, node->ref_mod,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002197 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002198 } else {
2199 BUG();
2200 }
Chris Mason56bec292009-03-13 10:10:06 -04002201 return ret;
2202}
2203
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002204static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
2205 struct extent_buffer *leaf,
2206 struct btrfs_extent_item *ei)
2207{
2208 u64 flags = btrfs_extent_flags(leaf, ei);
2209 if (extent_op->update_flags) {
2210 flags |= extent_op->flags_to_set;
2211 btrfs_set_extent_flags(leaf, ei, flags);
2212 }
2213
2214 if (extent_op->update_key) {
2215 struct btrfs_tree_block_info *bi;
2216 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
2217 bi = (struct btrfs_tree_block_info *)(ei + 1);
2218 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
2219 }
2220}
2221
2222static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
2223 struct btrfs_root *root,
2224 struct btrfs_delayed_ref_node *node,
2225 struct btrfs_delayed_extent_op *extent_op)
2226{
2227 struct btrfs_key key;
2228 struct btrfs_path *path;
2229 struct btrfs_extent_item *ei;
2230 struct extent_buffer *leaf;
2231 u32 item_size;
2232 int ret;
2233 int err = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002234 int metadata = !extent_op->is_data;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002235
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002236 if (trans->aborted)
2237 return 0;
2238
Josef Bacik3173a182013-03-07 14:22:04 -05002239 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2240 metadata = 0;
2241
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002242 path = btrfs_alloc_path();
2243 if (!path)
2244 return -ENOMEM;
2245
2246 key.objectid = node->bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002247
Josef Bacik3173a182013-03-07 14:22:04 -05002248 if (metadata) {
Josef Bacik3173a182013-03-07 14:22:04 -05002249 key.type = BTRFS_METADATA_ITEM_KEY;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002250 key.offset = extent_op->level;
Josef Bacik3173a182013-03-07 14:22:04 -05002251 } else {
2252 key.type = BTRFS_EXTENT_ITEM_KEY;
2253 key.offset = node->num_bytes;
2254 }
2255
2256again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002257 path->reada = 1;
2258 path->leave_spinning = 1;
2259 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key,
2260 path, 0, 1);
2261 if (ret < 0) {
2262 err = ret;
2263 goto out;
2264 }
2265 if (ret > 0) {
Josef Bacik3173a182013-03-07 14:22:04 -05002266 if (metadata) {
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002267 if (path->slots[0] > 0) {
2268 path->slots[0]--;
2269 btrfs_item_key_to_cpu(path->nodes[0], &key,
2270 path->slots[0]);
2271 if (key.objectid == node->bytenr &&
2272 key.type == BTRFS_EXTENT_ITEM_KEY &&
2273 key.offset == node->num_bytes)
2274 ret = 0;
2275 }
2276 if (ret > 0) {
2277 btrfs_release_path(path);
2278 metadata = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002279
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002280 key.objectid = node->bytenr;
2281 key.offset = node->num_bytes;
2282 key.type = BTRFS_EXTENT_ITEM_KEY;
2283 goto again;
2284 }
2285 } else {
2286 err = -EIO;
2287 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05002288 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002289 }
2290
2291 leaf = path->nodes[0];
2292 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2293#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2294 if (item_size < sizeof(*ei)) {
2295 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
2296 path, (u64)-1, 0);
2297 if (ret < 0) {
2298 err = ret;
2299 goto out;
2300 }
2301 leaf = path->nodes[0];
2302 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2303 }
2304#endif
2305 BUG_ON(item_size < sizeof(*ei));
2306 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2307 __run_delayed_extent_op(extent_op, leaf, ei);
2308
2309 btrfs_mark_buffer_dirty(leaf);
2310out:
2311 btrfs_free_path(path);
2312 return err;
2313}
2314
2315static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
2316 struct btrfs_root *root,
2317 struct btrfs_delayed_ref_node *node,
2318 struct btrfs_delayed_extent_op *extent_op,
2319 int insert_reserved)
2320{
2321 int ret = 0;
2322 struct btrfs_delayed_tree_ref *ref;
2323 struct btrfs_key ins;
2324 u64 parent = 0;
2325 u64 ref_root = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002326 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
2327 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002328
2329 ref = btrfs_delayed_node_to_tree_ref(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002330 trace_run_delayed_tree_ref(node, ref, node->action);
2331
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002332 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2333 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002334 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002335
Josef Bacik3173a182013-03-07 14:22:04 -05002336 ins.objectid = node->bytenr;
2337 if (skinny_metadata) {
2338 ins.offset = ref->level;
2339 ins.type = BTRFS_METADATA_ITEM_KEY;
2340 } else {
2341 ins.offset = node->num_bytes;
2342 ins.type = BTRFS_EXTENT_ITEM_KEY;
2343 }
2344
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002345 BUG_ON(node->ref_mod != 1);
2346 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002347 BUG_ON(!extent_op || !extent_op->update_flags);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002348 ret = alloc_reserved_tree_block(trans, root,
2349 parent, ref_root,
2350 extent_op->flags_to_set,
2351 &extent_op->key,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002352 ref->level, &ins);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002353 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002354 ret = __btrfs_inc_extent_ref(trans, root, node,
2355 parent, ref_root,
2356 ref->level, 0, 1,
Josef Bacikfcebe452014-05-13 17:30:47 -07002357 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002358 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002359 ret = __btrfs_free_extent(trans, root, node,
2360 parent, ref_root,
2361 ref->level, 0, 1, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002362 } else {
2363 BUG();
2364 }
2365 return ret;
2366}
2367
Chris Mason56bec292009-03-13 10:10:06 -04002368/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002369static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
2370 struct btrfs_root *root,
2371 struct btrfs_delayed_ref_node *node,
2372 struct btrfs_delayed_extent_op *extent_op,
2373 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002374{
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002375 int ret = 0;
2376
Josef Bacik857cc2f2013-10-07 15:21:08 -04002377 if (trans->aborted) {
2378 if (insert_reserved)
2379 btrfs_pin_extent(root, node->bytenr,
2380 node->num_bytes, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002381 return 0;
Josef Bacik857cc2f2013-10-07 15:21:08 -04002382 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002383
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002384 if (btrfs_delayed_ref_is_head(node)) {
Chris Mason56bec292009-03-13 10:10:06 -04002385 struct btrfs_delayed_ref_head *head;
2386 /*
2387 * we've hit the end of the chain and we were supposed
2388 * to insert this extent into the tree. But, it got
2389 * deleted before we ever needed to insert it, so all
2390 * we have to do is clean up the accounting
2391 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002392 BUG_ON(extent_op);
2393 head = btrfs_delayed_node_to_head(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002394 trace_run_delayed_ref_head(node, head, node->action);
2395
Chris Mason56bec292009-03-13 10:10:06 -04002396 if (insert_reserved) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04002397 btrfs_pin_extent(root, node->bytenr,
2398 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002399 if (head->is_data) {
2400 ret = btrfs_del_csums(trans, root,
2401 node->bytenr,
2402 node->num_bytes);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002403 }
Chris Mason56bec292009-03-13 10:10:06 -04002404 }
Qu Wenruo297d7502015-09-08 17:08:37 +08002405
2406 /* Also free its reserved qgroup space */
2407 btrfs_qgroup_free_delayed_ref(root->fs_info,
2408 head->qgroup_ref_root,
2409 head->qgroup_reserved);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002410 return ret;
Chris Mason56bec292009-03-13 10:10:06 -04002411 }
Josef Bacikeb099672009-02-12 09:27:38 -05002412
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002413 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2414 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2415 ret = run_delayed_tree_ref(trans, root, node, extent_op,
2416 insert_reserved);
2417 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2418 node->type == BTRFS_SHARED_DATA_REF_KEY)
2419 ret = run_delayed_data_ref(trans, root, node, extent_op,
2420 insert_reserved);
2421 else
2422 BUG();
2423 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002424}
2425
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002426static inline struct btrfs_delayed_ref_node *
Chris Mason56bec292009-03-13 10:10:06 -04002427select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002428{
Filipe Mananacffc3372015-07-09 13:13:44 +01002429 struct btrfs_delayed_ref_node *ref;
2430
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002431 if (list_empty(&head->ref_list))
2432 return NULL;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002433
Filipe Mananacffc3372015-07-09 13:13:44 +01002434 /*
2435 * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first.
2436 * This is to prevent a ref count from going down to zero, which deletes
2437 * the extent item from the extent tree, when there still are references
2438 * to add, which would fail because they would not find the extent item.
2439 */
2440 list_for_each_entry(ref, &head->ref_list, list) {
2441 if (ref->action == BTRFS_ADD_DELAYED_REF)
2442 return ref;
2443 }
2444
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002445 return list_entry(head->ref_list.next, struct btrfs_delayed_ref_node,
2446 list);
Chris Mason56bec292009-03-13 10:10:06 -04002447}
2448
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002449/*
2450 * Returns 0 on success or if called with an already aborted transaction.
2451 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2452 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002453static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2454 struct btrfs_root *root,
2455 unsigned long nr)
Chris Mason56bec292009-03-13 10:10:06 -04002456{
Chris Mason56bec292009-03-13 10:10:06 -04002457 struct btrfs_delayed_ref_root *delayed_refs;
2458 struct btrfs_delayed_ref_node *ref;
2459 struct btrfs_delayed_ref_head *locked_ref = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002460 struct btrfs_delayed_extent_op *extent_op;
Jan Schmidt097b8a72012-06-21 11:08:04 +02002461 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002462 ktime_t start = ktime_get();
Chris Mason56bec292009-03-13 10:10:06 -04002463 int ret;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002464 unsigned long count = 0;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002465 unsigned long actual_count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002466 int must_insert_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002467
2468 delayed_refs = &trans->transaction->delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002469 while (1) {
2470 if (!locked_ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002471 if (count >= nr)
Chris Mason56bec292009-03-13 10:10:06 -04002472 break;
Chris Mason56bec292009-03-13 10:10:06 -04002473
Josef Bacikd7df2c72014-01-23 09:21:38 -05002474 spin_lock(&delayed_refs->lock);
2475 locked_ref = btrfs_select_ref_head(trans);
2476 if (!locked_ref) {
2477 spin_unlock(&delayed_refs->lock);
2478 break;
2479 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002480
2481 /* grab the lock that says we are going to process
2482 * all the refs for this head */
2483 ret = btrfs_delayed_ref_lock(trans, locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002484 spin_unlock(&delayed_refs->lock);
Chris Masonc3e69d52009-03-13 10:17:05 -04002485 /*
2486 * we may have dropped the spin lock to get the head
2487 * mutex lock, and that might have given someone else
2488 * time to free the head. If that's true, it has been
2489 * removed from our list and we can move on.
2490 */
2491 if (ret == -EAGAIN) {
2492 locked_ref = NULL;
2493 count++;
2494 continue;
Chris Mason56bec292009-03-13 10:10:06 -04002495 }
2496 }
2497
Filipe Manana2c3cf7d2015-10-22 09:47:34 +01002498 /*
2499 * We need to try and merge add/drops of the same ref since we
2500 * can run into issues with relocate dropping the implicit ref
2501 * and then it being added back again before the drop can
2502 * finish. If we merged anything we need to re-loop so we can
2503 * get a good ref.
2504 * Or we can get node references of the same type that weren't
2505 * merged when created due to bumps in the tree mod seq, and
2506 * we need to merge them to prevent adding an inline extent
2507 * backref before dropping it (triggering a BUG_ON at
2508 * insert_inline_extent_backref()).
2509 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002510 spin_lock(&locked_ref->lock);
Filipe Manana2c3cf7d2015-10-22 09:47:34 +01002511 btrfs_merge_delayed_refs(trans, fs_info, delayed_refs,
2512 locked_ref);
Josef Bacikae1e2062012-08-07 16:00:32 -04002513
2514 /*
Arne Jansend1270cd2011-09-13 15:16:43 +02002515 * locked_ref is the head node, so we have to go one
2516 * node back for any delayed ref updates
2517 */
2518 ref = select_delayed_ref(locked_ref);
2519
2520 if (ref && ref->seq &&
Jan Schmidt097b8a72012-06-21 11:08:04 +02002521 btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002522 spin_unlock(&locked_ref->lock);
Miao Xie093486c2012-12-19 08:10:10 +00002523 btrfs_delayed_ref_unlock(locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002524 spin_lock(&delayed_refs->lock);
2525 locked_ref->processing = 0;
Arne Jansend1270cd2011-09-13 15:16:43 +02002526 delayed_refs->num_heads_ready++;
2527 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002528 locked_ref = NULL;
Arne Jansend1270cd2011-09-13 15:16:43 +02002529 cond_resched();
Josef Bacik27a377d2014-02-07 13:57:59 -05002530 count++;
Arne Jansend1270cd2011-09-13 15:16:43 +02002531 continue;
2532 }
2533
2534 /*
Chris Mason56bec292009-03-13 10:10:06 -04002535 * record the must insert reserved flag before we
2536 * drop the spin lock.
2537 */
2538 must_insert_reserved = locked_ref->must_insert_reserved;
2539 locked_ref->must_insert_reserved = 0;
2540
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002541 extent_op = locked_ref->extent_op;
2542 locked_ref->extent_op = NULL;
2543
Chris Mason56bec292009-03-13 10:10:06 -04002544 if (!ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002545
2546
Chris Mason56bec292009-03-13 10:10:06 -04002547 /* All delayed refs have been processed, Go ahead
2548 * and send the head node to run_one_delayed_ref,
2549 * so that any accounting fixes can happen
2550 */
2551 ref = &locked_ref->node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002552
2553 if (extent_op && must_insert_reserved) {
Miao Xie78a61842012-11-21 02:21:28 +00002554 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002555 extent_op = NULL;
2556 }
2557
2558 if (extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002559 spin_unlock(&locked_ref->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002560 ret = run_delayed_extent_op(trans, root,
2561 ref, extent_op);
Miao Xie78a61842012-11-21 02:21:28 +00002562 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002563
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002564 if (ret) {
Josef Bacik857cc2f2013-10-07 15:21:08 -04002565 /*
2566 * Need to reset must_insert_reserved if
2567 * there was an error so the abort stuff
2568 * can cleanup the reserved space
2569 * properly.
2570 */
2571 if (must_insert_reserved)
2572 locked_ref->must_insert_reserved = 1;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002573 locked_ref->processing = 0;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002574 btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret);
Miao Xie093486c2012-12-19 08:10:10 +00002575 btrfs_delayed_ref_unlock(locked_ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002576 return ret;
2577 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002578 continue;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002579 }
Chris Mason56bec292009-03-13 10:10:06 -04002580
Josef Bacikd7df2c72014-01-23 09:21:38 -05002581 /*
2582 * Need to drop our head ref lock and re-aqcuire the
2583 * delayed ref lock and then re-check to make sure
2584 * nobody got added.
2585 */
2586 spin_unlock(&locked_ref->lock);
2587 spin_lock(&delayed_refs->lock);
2588 spin_lock(&locked_ref->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002589 if (!list_empty(&locked_ref->ref_list) ||
Josef Bacik573a0752014-03-27 19:41:34 -04002590 locked_ref->extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002591 spin_unlock(&locked_ref->lock);
2592 spin_unlock(&delayed_refs->lock);
2593 continue;
2594 }
2595 ref->in_tree = 0;
2596 delayed_refs->num_heads--;
Liu Boc46effa2013-10-14 12:59:45 +08002597 rb_erase(&locked_ref->href_node,
2598 &delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002599 spin_unlock(&delayed_refs->lock);
2600 } else {
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002601 actual_count++;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002602 ref->in_tree = 0;
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002603 list_del(&ref->list);
Liu Boc46effa2013-10-14 12:59:45 +08002604 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002605 atomic_dec(&delayed_refs->num_entries);
2606
Miao Xie093486c2012-12-19 08:10:10 +00002607 if (!btrfs_delayed_ref_is_head(ref)) {
Arne Jansen22cd2e72012-08-09 00:16:53 -06002608 /*
2609 * when we play the delayed ref, also correct the
2610 * ref_mod on head
2611 */
2612 switch (ref->action) {
2613 case BTRFS_ADD_DELAYED_REF:
2614 case BTRFS_ADD_DELAYED_EXTENT:
2615 locked_ref->node.ref_mod -= ref->ref_mod;
2616 break;
2617 case BTRFS_DROP_DELAYED_REF:
2618 locked_ref->node.ref_mod += ref->ref_mod;
2619 break;
2620 default:
2621 WARN_ON(1);
2622 }
2623 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002624 spin_unlock(&locked_ref->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002625
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002626 ret = run_one_delayed_ref(trans, root, ref, extent_op,
Chris Mason56bec292009-03-13 10:10:06 -04002627 must_insert_reserved);
Chris Mason56bec292009-03-13 10:10:06 -04002628
Miao Xie78a61842012-11-21 02:21:28 +00002629 btrfs_free_delayed_extent_op(extent_op);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002630 if (ret) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002631 locked_ref->processing = 0;
Miao Xie093486c2012-12-19 08:10:10 +00002632 btrfs_delayed_ref_unlock(locked_ref);
2633 btrfs_put_delayed_ref(ref);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002634 btrfs_debug(fs_info, "run_one_delayed_ref returned %d", ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002635 return ret;
2636 }
2637
Miao Xie093486c2012-12-19 08:10:10 +00002638 /*
2639 * If this node is a head, that means all the refs in this head
2640 * have been dealt with, and we will pick the next head to deal
2641 * with, so we must unlock the head and drop it from the cluster
2642 * list before we release it.
2643 */
2644 if (btrfs_delayed_ref_is_head(ref)) {
Josef Bacik12621332015-02-03 07:50:16 -08002645 if (locked_ref->is_data &&
2646 locked_ref->total_ref_mod < 0) {
2647 spin_lock(&delayed_refs->lock);
2648 delayed_refs->pending_csums -= ref->num_bytes;
2649 spin_unlock(&delayed_refs->lock);
2650 }
Miao Xie093486c2012-12-19 08:10:10 +00002651 btrfs_delayed_ref_unlock(locked_ref);
2652 locked_ref = NULL;
2653 }
2654 btrfs_put_delayed_ref(ref);
2655 count++;
Chris Mason1887be62009-03-13 10:11:24 -04002656 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002657 }
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002658
2659 /*
2660 * We don't want to include ref heads since we can have empty ref heads
2661 * and those will drastically skew our runtime down since we just do
2662 * accounting, no actual extent tree updates.
2663 */
2664 if (actual_count > 0) {
2665 u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start));
2666 u64 avg;
2667
2668 /*
2669 * We weigh the current average higher than our current runtime
2670 * to avoid large swings in the average.
2671 */
2672 spin_lock(&delayed_refs->lock);
2673 avg = fs_info->avg_delayed_ref_runtime * 3 + runtime;
David Sterbaf8c269d2015-01-16 17:21:12 +01002674 fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002675 spin_unlock(&delayed_refs->lock);
2676 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002677 return 0;
Chris Masonc3e69d52009-03-13 10:17:05 -04002678}
2679
Arne Jansen709c0482011-09-12 12:22:57 +02002680#ifdef SCRAMBLE_DELAYED_REFS
2681/*
2682 * Normally delayed refs get processed in ascending bytenr order. This
2683 * correlates in most cases to the order added. To expose dependencies on this
2684 * order, we start to process the tree in the middle instead of the beginning
2685 */
2686static u64 find_middle(struct rb_root *root)
2687{
2688 struct rb_node *n = root->rb_node;
2689 struct btrfs_delayed_ref_node *entry;
2690 int alt = 1;
2691 u64 middle;
2692 u64 first = 0, last = 0;
2693
2694 n = rb_first(root);
2695 if (n) {
2696 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2697 first = entry->bytenr;
2698 }
2699 n = rb_last(root);
2700 if (n) {
2701 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2702 last = entry->bytenr;
2703 }
2704 n = root->rb_node;
2705
2706 while (n) {
2707 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2708 WARN_ON(!entry->in_tree);
2709
2710 middle = entry->bytenr;
2711
2712 if (alt)
2713 n = n->rb_left;
2714 else
2715 n = n->rb_right;
2716
2717 alt = 1 - alt;
2718 }
2719 return middle;
2720}
2721#endif
2722
Josef Bacik1be41b72013-06-12 13:56:06 -04002723static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads)
2724{
2725 u64 num_bytes;
2726
2727 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2728 sizeof(struct btrfs_extent_inline_ref));
2729 if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2730 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2731
2732 /*
2733 * We don't ever fill up leaves all the way so multiply by 2 just to be
2734 * closer to what we're really going to want to ouse.
2735 */
David Sterbaf8c269d2015-01-16 17:21:12 +01002736 return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root));
Josef Bacik1be41b72013-06-12 13:56:06 -04002737}
2738
Josef Bacik12621332015-02-03 07:50:16 -08002739/*
2740 * Takes the number of bytes to be csumm'ed and figures out how many leaves it
2741 * would require to store the csums for that many bytes.
2742 */
Chris Mason28f75a02015-02-04 06:59:29 -08002743u64 btrfs_csum_bytes_to_leaves(struct btrfs_root *root, u64 csum_bytes)
Josef Bacik12621332015-02-03 07:50:16 -08002744{
2745 u64 csum_size;
2746 u64 num_csums_per_leaf;
2747 u64 num_csums;
2748
2749 csum_size = BTRFS_LEAF_DATA_SIZE(root) - sizeof(struct btrfs_item);
2750 num_csums_per_leaf = div64_u64(csum_size,
2751 (u64)btrfs_super_csum_size(root->fs_info->super_copy));
2752 num_csums = div64_u64(csum_bytes, root->sectorsize);
2753 num_csums += num_csums_per_leaf - 1;
2754 num_csums = div64_u64(num_csums, num_csums_per_leaf);
2755 return num_csums;
2756}
2757
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002758int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans,
Josef Bacik1be41b72013-06-12 13:56:06 -04002759 struct btrfs_root *root)
2760{
2761 struct btrfs_block_rsv *global_rsv;
2762 u64 num_heads = trans->transaction->delayed_refs.num_heads_ready;
Josef Bacik12621332015-02-03 07:50:16 -08002763 u64 csum_bytes = trans->transaction->delayed_refs.pending_csums;
Josef Bacikcb723e42015-02-18 08:06:57 -08002764 u64 num_dirty_bgs = trans->transaction->num_dirty_bgs;
2765 u64 num_bytes, num_dirty_bgs_bytes;
Josef Bacik1be41b72013-06-12 13:56:06 -04002766 int ret = 0;
2767
2768 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
2769 num_heads = heads_to_leaves(root, num_heads);
2770 if (num_heads > 1)
David Sterba707e8a02014-06-04 19:22:26 +02002771 num_bytes += (num_heads - 1) * root->nodesize;
Josef Bacik1be41b72013-06-12 13:56:06 -04002772 num_bytes <<= 1;
Chris Mason28f75a02015-02-04 06:59:29 -08002773 num_bytes += btrfs_csum_bytes_to_leaves(root, csum_bytes) * root->nodesize;
Josef Bacikcb723e42015-02-18 08:06:57 -08002774 num_dirty_bgs_bytes = btrfs_calc_trans_metadata_size(root,
2775 num_dirty_bgs);
Josef Bacik1be41b72013-06-12 13:56:06 -04002776 global_rsv = &root->fs_info->global_block_rsv;
2777
2778 /*
2779 * If we can't allocate any more chunks lets make sure we have _lots_ of
2780 * wiggle room since running delayed refs can create more delayed refs.
2781 */
Josef Bacikcb723e42015-02-18 08:06:57 -08002782 if (global_rsv->space_info->full) {
2783 num_dirty_bgs_bytes <<= 1;
Josef Bacik1be41b72013-06-12 13:56:06 -04002784 num_bytes <<= 1;
Josef Bacikcb723e42015-02-18 08:06:57 -08002785 }
Josef Bacik1be41b72013-06-12 13:56:06 -04002786
2787 spin_lock(&global_rsv->lock);
Josef Bacikcb723e42015-02-18 08:06:57 -08002788 if (global_rsv->reserved <= num_bytes + num_dirty_bgs_bytes)
Josef Bacik1be41b72013-06-12 13:56:06 -04002789 ret = 1;
2790 spin_unlock(&global_rsv->lock);
2791 return ret;
2792}
2793
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002794int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans,
2795 struct btrfs_root *root)
2796{
2797 struct btrfs_fs_info *fs_info = root->fs_info;
2798 u64 num_entries =
2799 atomic_read(&trans->transaction->delayed_refs.num_entries);
2800 u64 avg_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002801 u64 val;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002802
2803 smp_mb();
2804 avg_runtime = fs_info->avg_delayed_ref_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002805 val = num_entries * avg_runtime;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002806 if (num_entries * avg_runtime >= NSEC_PER_SEC)
2807 return 1;
Chris Masona79b7d42014-05-22 16:18:52 -07002808 if (val >= NSEC_PER_SEC / 2)
2809 return 2;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002810
2811 return btrfs_check_space_for_delayed_refs(trans, root);
2812}
2813
Chris Masona79b7d42014-05-22 16:18:52 -07002814struct async_delayed_refs {
2815 struct btrfs_root *root;
2816 int count;
2817 int error;
2818 int sync;
2819 struct completion wait;
2820 struct btrfs_work work;
2821};
2822
2823static void delayed_ref_async_start(struct btrfs_work *work)
2824{
2825 struct async_delayed_refs *async;
2826 struct btrfs_trans_handle *trans;
2827 int ret;
2828
2829 async = container_of(work, struct async_delayed_refs, work);
2830
2831 trans = btrfs_join_transaction(async->root);
2832 if (IS_ERR(trans)) {
2833 async->error = PTR_ERR(trans);
2834 goto done;
2835 }
2836
2837 /*
2838 * trans->sync means that when we call end_transaciton, we won't
2839 * wait on delayed refs
2840 */
2841 trans->sync = true;
2842 ret = btrfs_run_delayed_refs(trans, async->root, async->count);
2843 if (ret)
2844 async->error = ret;
2845
2846 ret = btrfs_end_transaction(trans, async->root);
2847 if (ret && !async->error)
2848 async->error = ret;
2849done:
2850 if (async->sync)
2851 complete(&async->wait);
2852 else
2853 kfree(async);
2854}
2855
2856int btrfs_async_run_delayed_refs(struct btrfs_root *root,
2857 unsigned long count, int wait)
2858{
2859 struct async_delayed_refs *async;
2860 int ret;
2861
2862 async = kmalloc(sizeof(*async), GFP_NOFS);
2863 if (!async)
2864 return -ENOMEM;
2865
2866 async->root = root->fs_info->tree_root;
2867 async->count = count;
2868 async->error = 0;
2869 if (wait)
2870 async->sync = 1;
2871 else
2872 async->sync = 0;
2873 init_completion(&async->wait);
2874
Liu Bo9e0af232014-08-15 23:36:53 +08002875 btrfs_init_work(&async->work, btrfs_extent_refs_helper,
2876 delayed_ref_async_start, NULL, NULL);
Chris Masona79b7d42014-05-22 16:18:52 -07002877
2878 btrfs_queue_work(root->fs_info->extent_workers, &async->work);
2879
2880 if (wait) {
2881 wait_for_completion(&async->wait);
2882 ret = async->error;
2883 kfree(async);
2884 return ret;
2885 }
2886 return 0;
2887}
2888
Chris Masonc3e69d52009-03-13 10:17:05 -04002889/*
2890 * this starts processing the delayed reference count updates and
2891 * extent insertions we have queued up so far. count can be
2892 * 0, which means to process everything in the tree at the start
2893 * of the run (but not newly added entries), or it can be some target
2894 * number you'd like to process.
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002895 *
2896 * Returns 0 on success or if called with an aborted transaction
2897 * Returns <0 on error and aborts the transaction
Chris Masonc3e69d52009-03-13 10:17:05 -04002898 */
2899int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2900 struct btrfs_root *root, unsigned long count)
2901{
2902 struct rb_node *node;
2903 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boc46effa2013-10-14 12:59:45 +08002904 struct btrfs_delayed_ref_head *head;
Chris Masonc3e69d52009-03-13 10:17:05 -04002905 int ret;
2906 int run_all = count == (unsigned long)-1;
Filipe Mananad9a05402015-10-03 13:13:13 +01002907 bool can_flush_pending_bgs = trans->can_flush_pending_bgs;
Chris Masonc3e69d52009-03-13 10:17:05 -04002908
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002909 /* We'll clean this up in btrfs_cleanup_transaction */
2910 if (trans->aborted)
2911 return 0;
2912
Chris Masonc3e69d52009-03-13 10:17:05 -04002913 if (root == root->fs_info->extent_root)
2914 root = root->fs_info->tree_root;
2915
2916 delayed_refs = &trans->transaction->delayed_refs;
Liu Bo26455d32014-12-17 16:14:09 +08002917 if (count == 0)
Josef Bacikd7df2c72014-01-23 09:21:38 -05002918 count = atomic_read(&delayed_refs->num_entries) * 2;
Chris Masonbb721702013-01-29 18:44:12 -05002919
Chris Masonc3e69d52009-03-13 10:17:05 -04002920again:
Arne Jansen709c0482011-09-12 12:22:57 +02002921#ifdef SCRAMBLE_DELAYED_REFS
2922 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
2923#endif
Filipe Mananad9a05402015-10-03 13:13:13 +01002924 trans->can_flush_pending_bgs = false;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002925 ret = __btrfs_run_delayed_refs(trans, root, count);
2926 if (ret < 0) {
2927 btrfs_abort_transaction(trans, root, ret);
2928 return ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04002929 }
2930
Chris Mason56bec292009-03-13 10:10:06 -04002931 if (run_all) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002932 if (!list_empty(&trans->new_bgs))
Josef Bacikea658ba2012-09-11 16:57:25 -04002933 btrfs_create_pending_block_groups(trans, root);
Josef Bacikea658ba2012-09-11 16:57:25 -04002934
Josef Bacikd7df2c72014-01-23 09:21:38 -05002935 spin_lock(&delayed_refs->lock);
Liu Boc46effa2013-10-14 12:59:45 +08002936 node = rb_first(&delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002937 if (!node) {
2938 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002939 goto out;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002940 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002941 count = (unsigned long)-1;
Chris Mason56bec292009-03-13 10:10:06 -04002942
2943 while (node) {
Liu Boc46effa2013-10-14 12:59:45 +08002944 head = rb_entry(node, struct btrfs_delayed_ref_head,
2945 href_node);
2946 if (btrfs_delayed_ref_is_head(&head->node)) {
2947 struct btrfs_delayed_ref_node *ref;
Chris Mason56bec292009-03-13 10:10:06 -04002948
Liu Boc46effa2013-10-14 12:59:45 +08002949 ref = &head->node;
Chris Mason56bec292009-03-13 10:10:06 -04002950 atomic_inc(&ref->refs);
2951
2952 spin_unlock(&delayed_refs->lock);
David Sterba8cc33e52011-05-02 15:29:25 +02002953 /*
2954 * Mutex was contended, block until it's
2955 * released and try again
2956 */
Chris Mason56bec292009-03-13 10:10:06 -04002957 mutex_lock(&head->mutex);
2958 mutex_unlock(&head->mutex);
2959
2960 btrfs_put_delayed_ref(ref);
Chris Mason1887be62009-03-13 10:11:24 -04002961 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002962 goto again;
Liu Boc46effa2013-10-14 12:59:45 +08002963 } else {
2964 WARN_ON(1);
Chris Mason56bec292009-03-13 10:10:06 -04002965 }
2966 node = rb_next(node);
2967 }
2968 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002969 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002970 goto again;
2971 }
Chris Mason54aa1f42007-06-22 14:16:25 -04002972out:
Jan Schmidtedf39272012-06-28 18:04:55 +02002973 assert_qgroups_uptodate(trans);
Filipe Mananad9a05402015-10-03 13:13:13 +01002974 trans->can_flush_pending_bgs = can_flush_pending_bgs;
Chris Masona28ec192007-03-06 20:08:01 -05002975 return 0;
2976}
2977
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002978int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
2979 struct btrfs_root *root,
2980 u64 bytenr, u64 num_bytes, u64 flags,
Josef Bacikb1c79e02013-05-09 13:49:30 -04002981 int level, int is_data)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002982{
2983 struct btrfs_delayed_extent_op *extent_op;
2984 int ret;
2985
Miao Xie78a61842012-11-21 02:21:28 +00002986 extent_op = btrfs_alloc_delayed_extent_op();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002987 if (!extent_op)
2988 return -ENOMEM;
2989
2990 extent_op->flags_to_set = flags;
2991 extent_op->update_flags = 1;
2992 extent_op->update_key = 0;
2993 extent_op->is_data = is_data ? 1 : 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002994 extent_op->level = level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002995
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002996 ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr,
2997 num_bytes, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002998 if (ret)
Miao Xie78a61842012-11-21 02:21:28 +00002999 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003000 return ret;
3001}
3002
3003static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
3004 struct btrfs_root *root,
3005 struct btrfs_path *path,
3006 u64 objectid, u64 offset, u64 bytenr)
3007{
3008 struct btrfs_delayed_ref_head *head;
3009 struct btrfs_delayed_ref_node *ref;
3010 struct btrfs_delayed_data_ref *data_ref;
3011 struct btrfs_delayed_ref_root *delayed_refs;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003012 int ret = 0;
3013
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003014 delayed_refs = &trans->transaction->delayed_refs;
3015 spin_lock(&delayed_refs->lock);
3016 head = btrfs_find_delayed_ref_head(trans, bytenr);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003017 if (!head) {
3018 spin_unlock(&delayed_refs->lock);
3019 return 0;
3020 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003021
3022 if (!mutex_trylock(&head->mutex)) {
3023 atomic_inc(&head->node.refs);
3024 spin_unlock(&delayed_refs->lock);
3025
David Sterbab3b4aa72011-04-21 01:20:15 +02003026 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003027
David Sterba8cc33e52011-05-02 15:29:25 +02003028 /*
3029 * Mutex was contended, block until it's released and let
3030 * caller try again
3031 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003032 mutex_lock(&head->mutex);
3033 mutex_unlock(&head->mutex);
3034 btrfs_put_delayed_ref(&head->node);
3035 return -EAGAIN;
3036 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003037 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003038
3039 spin_lock(&head->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08003040 list_for_each_entry(ref, &head->ref_list, list) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05003041 /* If it's a shared ref we know a cross reference exists */
3042 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) {
3043 ret = 1;
3044 break;
3045 }
3046
3047 data_ref = btrfs_delayed_node_to_data_ref(ref);
3048
3049 /*
3050 * If our ref doesn't match the one we're currently looking at
3051 * then we have a cross reference.
3052 */
3053 if (data_ref->root != root->root_key.objectid ||
3054 data_ref->objectid != objectid ||
3055 data_ref->offset != offset) {
3056 ret = 1;
3057 break;
3058 }
3059 }
3060 spin_unlock(&head->lock);
3061 mutex_unlock(&head->mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003062 return ret;
3063}
3064
3065static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
3066 struct btrfs_root *root,
3067 struct btrfs_path *path,
3068 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05003069{
3070 struct btrfs_root *extent_root = root->fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04003071 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003072 struct btrfs_extent_data_ref *ref;
3073 struct btrfs_extent_inline_ref *iref;
3074 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05003075 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003076 u32 item_size;
Yan Zhengf321e492008-07-30 09:26:11 -04003077 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05003078
Chris Masonbe20aa92007-12-17 20:14:01 -05003079 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04003080 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04003081 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05003082
Chris Masonbe20aa92007-12-17 20:14:01 -05003083 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
3084 if (ret < 0)
3085 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003086 BUG_ON(ret == 0); /* Corruption */
Yan Zheng80ff3852008-10-30 14:20:02 -04003087
3088 ret = -ENOENT;
3089 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04003090 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003091
Zheng Yan31840ae2008-09-23 13:14:14 -04003092 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04003093 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003094 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05003095
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003096 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05003097 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003098
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003099 ret = 1;
3100 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
3101#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
3102 if (item_size < sizeof(*ei)) {
3103 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
3104 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003105 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003106#endif
3107 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
3108
3109 if (item_size != sizeof(*ei) +
3110 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
3111 goto out;
3112
3113 if (btrfs_extent_generation(leaf, ei) <=
3114 btrfs_root_last_snapshot(&root->root_item))
3115 goto out;
3116
3117 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
3118 if (btrfs_extent_inline_ref_type(leaf, iref) !=
3119 BTRFS_EXTENT_DATA_REF_KEY)
3120 goto out;
3121
3122 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
3123 if (btrfs_extent_refs(leaf, ei) !=
3124 btrfs_extent_data_ref_count(leaf, ref) ||
3125 btrfs_extent_data_ref_root(leaf, ref) !=
3126 root->root_key.objectid ||
3127 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
3128 btrfs_extent_data_ref_offset(leaf, ref) != offset)
3129 goto out;
3130
Yan Zhengf321e492008-07-30 09:26:11 -04003131 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05003132out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003133 return ret;
3134}
3135
3136int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
3137 struct btrfs_root *root,
3138 u64 objectid, u64 offset, u64 bytenr)
3139{
3140 struct btrfs_path *path;
3141 int ret;
3142 int ret2;
3143
3144 path = btrfs_alloc_path();
3145 if (!path)
3146 return -ENOENT;
3147
3148 do {
3149 ret = check_committed_ref(trans, root, path, objectid,
3150 offset, bytenr);
3151 if (ret && ret != -ENOENT)
3152 goto out;
3153
3154 ret2 = check_delayed_ref(trans, root, path, objectid,
3155 offset, bytenr);
3156 } while (ret2 == -EAGAIN);
3157
3158 if (ret2 && ret2 != -ENOENT) {
3159 ret = ret2;
3160 goto out;
3161 }
3162
3163 if (ret != -ENOENT || ret2 != -ENOENT)
3164 ret = 0;
3165out:
Yan Zhengf321e492008-07-30 09:26:11 -04003166 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003167 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3168 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04003169 return ret;
3170}
3171
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003172static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05003173 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003174 struct extent_buffer *buf,
Josef Bacike339a6b2014-07-02 10:54:25 -07003175 int full_backref, int inc)
Zheng Yan31840ae2008-09-23 13:14:14 -04003176{
3177 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003178 u64 num_bytes;
3179 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003180 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04003181 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04003182 struct btrfs_key key;
3183 struct btrfs_file_extent_item *fi;
3184 int i;
3185 int level;
3186 int ret = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04003187 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003188 u64, u64, u64, u64, u64, u64);
Zheng Yan31840ae2008-09-23 13:14:14 -04003189
David Sterbafccb84c2014-09-29 23:53:21 +02003190
3191 if (btrfs_test_is_dummy_root(root))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04003192 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02003193
Zheng Yan31840ae2008-09-23 13:14:14 -04003194 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04003195 nritems = btrfs_header_nritems(buf);
3196 level = btrfs_header_level(buf);
3197
Miao Xie27cdeb72014-04-02 19:51:05 +08003198 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003199 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05003200
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003201 if (inc)
3202 process_func = btrfs_inc_extent_ref;
3203 else
3204 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003205
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003206 if (full_backref)
3207 parent = buf->start;
3208 else
3209 parent = 0;
3210
Zheng Yan31840ae2008-09-23 13:14:14 -04003211 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04003212 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003213 btrfs_item_key_to_cpu(buf, &key, i);
David Sterba962a2982014-06-04 18:41:45 +02003214 if (key.type != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04003215 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003216 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04003217 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003218 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04003219 BTRFS_FILE_EXTENT_INLINE)
3220 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003221 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3222 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04003223 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003224
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003225 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3226 key.offset -= btrfs_file_extent_offset(buf, fi);
3227 ret = process_func(trans, root, bytenr, num_bytes,
3228 parent, ref_root, key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003229 key.offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003230 if (ret)
3231 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05003232 } else {
3233 bytenr = btrfs_node_blockptr(buf, i);
David Sterba707e8a02014-06-04 19:22:26 +02003234 num_bytes = root->nodesize;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003235 ret = process_func(trans, root, bytenr, num_bytes,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003236 parent, ref_root, level - 1, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003237 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04003238 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04003239 }
3240 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003241 return 0;
3242fail:
Chris Mason54aa1f42007-06-22 14:16:25 -04003243 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05003244}
3245
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003246int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003247 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04003248{
Josef Bacike339a6b2014-07-02 10:54:25 -07003249 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003250}
Zheng Yan31840ae2008-09-23 13:14:14 -04003251
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003252int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003253 struct extent_buffer *buf, int full_backref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003254{
Josef Bacike339a6b2014-07-02 10:54:25 -07003255 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003256}
3257
Chris Mason9078a3e2007-04-26 16:46:15 -04003258static int write_one_cache_group(struct btrfs_trans_handle *trans,
3259 struct btrfs_root *root,
3260 struct btrfs_path *path,
3261 struct btrfs_block_group_cache *cache)
3262{
3263 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003264 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003265 unsigned long bi;
3266 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04003267
Chris Mason9078a3e2007-04-26 16:46:15 -04003268 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003269 if (ret) {
3270 if (ret > 0)
3271 ret = -ENOENT;
Chris Mason54aa1f42007-06-22 14:16:25 -04003272 goto fail;
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003273 }
Chris Mason5f39d392007-10-15 16:14:19 -04003274
3275 leaf = path->nodes[0];
3276 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3277 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3278 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -04003279fail:
Filipe Manana24b89d02015-04-25 18:31:05 +01003280 btrfs_release_path(path);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003281 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003282
3283}
3284
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003285static struct btrfs_block_group_cache *
3286next_block_group(struct btrfs_root *root,
3287 struct btrfs_block_group_cache *cache)
3288{
3289 struct rb_node *node;
Filipe Manana292cbd52014-11-26 15:28:50 +00003290
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003291 spin_lock(&root->fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003292
3293 /* If our block group was removed, we need a full search. */
3294 if (RB_EMPTY_NODE(&cache->cache_node)) {
3295 const u64 next_bytenr = cache->key.objectid + cache->key.offset;
3296
3297 spin_unlock(&root->fs_info->block_group_cache_lock);
3298 btrfs_put_block_group(cache);
3299 cache = btrfs_lookup_first_block_group(root->fs_info,
3300 next_bytenr);
3301 return cache;
3302 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003303 node = rb_next(&cache->cache_node);
3304 btrfs_put_block_group(cache);
3305 if (node) {
3306 cache = rb_entry(node, struct btrfs_block_group_cache,
3307 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00003308 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003309 } else
3310 cache = NULL;
3311 spin_unlock(&root->fs_info->block_group_cache_lock);
3312 return cache;
3313}
3314
Josef Bacik0af3d002010-06-21 14:48:16 -04003315static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3316 struct btrfs_trans_handle *trans,
3317 struct btrfs_path *path)
3318{
3319 struct btrfs_root *root = block_group->fs_info->tree_root;
3320 struct inode *inode = NULL;
3321 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05003322 int dcs = BTRFS_DC_ERROR;
David Sterbaf8c269d2015-01-16 17:21:12 +01003323 u64 num_pages = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003324 int retries = 0;
3325 int ret = 0;
3326
3327 /*
3328 * If this block group is smaller than 100 megs don't bother caching the
3329 * block group.
3330 */
Byongho Leeee221842015-12-15 01:42:10 +09003331 if (block_group->key.offset < (100 * SZ_1M)) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003332 spin_lock(&block_group->lock);
3333 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3334 spin_unlock(&block_group->lock);
3335 return 0;
3336 }
3337
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003338 if (trans->aborted)
3339 return 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003340again:
3341 inode = lookup_free_space_inode(root, block_group, path);
3342 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3343 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02003344 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003345 goto out;
3346 }
3347
3348 if (IS_ERR(inode)) {
3349 BUG_ON(retries);
3350 retries++;
3351
3352 if (block_group->ro)
3353 goto out_free;
3354
3355 ret = create_free_space_inode(root, trans, block_group, path);
3356 if (ret)
3357 goto out_free;
3358 goto again;
3359 }
3360
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003361 /* We've already setup this transaction, go ahead and exit */
3362 if (block_group->cache_generation == trans->transid &&
3363 i_size_read(inode)) {
3364 dcs = BTRFS_DC_SETUP;
3365 goto out_put;
3366 }
3367
Josef Bacik0af3d002010-06-21 14:48:16 -04003368 /*
3369 * We want to set the generation to 0, that way if anything goes wrong
3370 * from here on out we know not to trust this cache when we load up next
3371 * time.
3372 */
3373 BTRFS_I(inode)->generation = 0;
3374 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003375 if (ret) {
3376 /*
3377 * So theoretically we could recover from this, simply set the
3378 * super cache generation to 0 so we know to invalidate the
3379 * cache, but then we'd have to keep track of the block groups
3380 * that fail this way so we know we _have_ to reset this cache
3381 * before the next commit or risk reading stale cache. So to
3382 * limit our exposure to horrible edge cases lets just abort the
3383 * transaction, this only happens in really bad situations
3384 * anyway.
3385 */
3386 btrfs_abort_transaction(trans, root, ret);
3387 goto out_put;
3388 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003389 WARN_ON(ret);
3390
3391 if (i_size_read(inode) > 0) {
Miao Xie7b61cd92013-05-13 13:55:09 +00003392 ret = btrfs_check_trunc_cache_free_space(root,
3393 &root->fs_info->global_block_rsv);
3394 if (ret)
3395 goto out_put;
3396
Chris Mason1bbc6212015-04-06 12:46:08 -07003397 ret = btrfs_truncate_free_space_cache(root, trans, NULL, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003398 if (ret)
3399 goto out_put;
3400 }
3401
3402 spin_lock(&block_group->lock);
Liu Bocf7c1ef2012-07-06 03:31:34 -06003403 if (block_group->cached != BTRFS_CACHE_FINISHED ||
Chris Masone4c88f02015-04-18 05:22:48 -07003404 !btrfs_test_opt(root, SPACE_CACHE)) {
Liu Bocf7c1ef2012-07-06 03:31:34 -06003405 /*
3406 * don't bother trying to write stuff out _if_
3407 * a) we're not cached,
3408 * b) we're with nospace_cache mount option.
3409 */
Josef Bacik2b209822010-12-03 13:17:53 -05003410 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04003411 spin_unlock(&block_group->lock);
3412 goto out_put;
3413 }
3414 spin_unlock(&block_group->lock);
3415
Josef Bacik6fc823b2012-08-06 13:46:38 -06003416 /*
Josef Bacik2968b1f2015-10-01 12:55:18 -04003417 * We hit an ENOSPC when setting up the cache in this transaction, just
3418 * skip doing the setup, we've already cleared the cache so we're safe.
3419 */
3420 if (test_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags)) {
3421 ret = -ENOSPC;
3422 goto out_put;
3423 }
3424
3425 /*
Josef Bacik6fc823b2012-08-06 13:46:38 -06003426 * Try to preallocate enough space based on how big the block group is.
3427 * Keep in mind this has to include any pinned space which could end up
3428 * taking up quite a bit since it's not folded into the other space
3429 * cache.
3430 */
Byongho Leeee221842015-12-15 01:42:10 +09003431 num_pages = div_u64(block_group->key.offset, SZ_256M);
Josef Bacik0af3d002010-06-21 14:48:16 -04003432 if (!num_pages)
3433 num_pages = 1;
3434
Josef Bacik0af3d002010-06-21 14:48:16 -04003435 num_pages *= 16;
3436 num_pages *= PAGE_CACHE_SIZE;
3437
Qu Wenruo7cf5b972015-09-08 17:25:55 +08003438 ret = btrfs_check_data_free_space(inode, 0, num_pages);
Josef Bacik0af3d002010-06-21 14:48:16 -04003439 if (ret)
3440 goto out_put;
3441
3442 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3443 num_pages, num_pages,
3444 &alloc_hint);
Josef Bacik2968b1f2015-10-01 12:55:18 -04003445 /*
3446 * Our cache requires contiguous chunks so that we don't modify a bunch
3447 * of metadata or split extents when writing the cache out, which means
3448 * we can enospc if we are heavily fragmented in addition to just normal
3449 * out of space conditions. So if we hit this just skip setting up any
3450 * other block groups for this transaction, maybe we'll unpin enough
3451 * space the next time around.
3452 */
Josef Bacik2b209822010-12-03 13:17:53 -05003453 if (!ret)
3454 dcs = BTRFS_DC_SETUP;
Josef Bacik2968b1f2015-10-01 12:55:18 -04003455 else if (ret == -ENOSPC)
3456 set_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags);
Qu Wenruo7cf5b972015-09-08 17:25:55 +08003457 btrfs_free_reserved_data_space(inode, 0, num_pages);
Josef Bacikc09544e2011-08-30 10:19:10 -04003458
Josef Bacik0af3d002010-06-21 14:48:16 -04003459out_put:
3460 iput(inode);
3461out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02003462 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003463out:
3464 spin_lock(&block_group->lock);
Josef Bacike65cbb92011-12-13 16:04:54 -05003465 if (!ret && dcs == BTRFS_DC_SETUP)
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003466 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05003467 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04003468 spin_unlock(&block_group->lock);
3469
3470 return ret;
3471}
3472
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003473int btrfs_setup_space_cache(struct btrfs_trans_handle *trans,
3474 struct btrfs_root *root)
3475{
3476 struct btrfs_block_group_cache *cache, *tmp;
3477 struct btrfs_transaction *cur_trans = trans->transaction;
3478 struct btrfs_path *path;
3479
3480 if (list_empty(&cur_trans->dirty_bgs) ||
3481 !btrfs_test_opt(root, SPACE_CACHE))
3482 return 0;
3483
3484 path = btrfs_alloc_path();
3485 if (!path)
3486 return -ENOMEM;
3487
3488 /* Could add new block groups, use _safe just in case */
3489 list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs,
3490 dirty_list) {
3491 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3492 cache_save_setup(cache, trans, path);
3493 }
3494
3495 btrfs_free_path(path);
3496 return 0;
3497}
3498
Chris Mason1bbc6212015-04-06 12:46:08 -07003499/*
3500 * transaction commit does final block group cache writeback during a
3501 * critical section where nothing is allowed to change the FS. This is
3502 * required in order for the cache to actually match the block group,
3503 * but can introduce a lot of latency into the commit.
3504 *
3505 * So, btrfs_start_dirty_block_groups is here to kick off block group
3506 * cache IO. There's a chance we'll have to redo some of it if the
3507 * block group changes again during the commit, but it greatly reduces
3508 * the commit latency by getting rid of the easy block groups while
3509 * we're still allowing others to join the commit.
3510 */
3511int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans,
3512 struct btrfs_root *root)
3513{
3514 struct btrfs_block_group_cache *cache;
3515 struct btrfs_transaction *cur_trans = trans->transaction;
3516 int ret = 0;
3517 int should_put;
3518 struct btrfs_path *path = NULL;
3519 LIST_HEAD(dirty);
3520 struct list_head *io = &cur_trans->io_bgs;
3521 int num_started = 0;
3522 int loops = 0;
3523
3524 spin_lock(&cur_trans->dirty_bgs_lock);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003525 if (list_empty(&cur_trans->dirty_bgs)) {
3526 spin_unlock(&cur_trans->dirty_bgs_lock);
3527 return 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003528 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003529 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Chris Mason1bbc6212015-04-06 12:46:08 -07003530 spin_unlock(&cur_trans->dirty_bgs_lock);
3531
3532again:
Chris Mason1bbc6212015-04-06 12:46:08 -07003533 /*
3534 * make sure all the block groups on our dirty list actually
3535 * exist
3536 */
3537 btrfs_create_pending_block_groups(trans, root);
3538
3539 if (!path) {
3540 path = btrfs_alloc_path();
3541 if (!path)
3542 return -ENOMEM;
3543 }
3544
Filipe Mananab58d1a92015-04-25 18:29:16 +01003545 /*
3546 * cache_write_mutex is here only to save us from balance or automatic
3547 * removal of empty block groups deleting this block group while we are
3548 * writing out the cache
3549 */
3550 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003551 while (!list_empty(&dirty)) {
3552 cache = list_first_entry(&dirty,
3553 struct btrfs_block_group_cache,
3554 dirty_list);
Chris Mason1bbc6212015-04-06 12:46:08 -07003555 /*
3556 * this can happen if something re-dirties a block
3557 * group that is already under IO. Just wait for it to
3558 * finish and then do it all again
3559 */
3560 if (!list_empty(&cache->io_list)) {
3561 list_del_init(&cache->io_list);
3562 btrfs_wait_cache_io(root, trans, cache,
3563 &cache->io_ctl, path,
3564 cache->key.objectid);
3565 btrfs_put_block_group(cache);
3566 }
3567
3568
3569 /*
3570 * btrfs_wait_cache_io uses the cache->dirty_list to decide
3571 * if it should update the cache_state. Don't delete
3572 * until after we wait.
3573 *
3574 * Since we're not running in the commit critical section
3575 * we need the dirty_bgs_lock to protect from update_block_group
3576 */
3577 spin_lock(&cur_trans->dirty_bgs_lock);
3578 list_del_init(&cache->dirty_list);
3579 spin_unlock(&cur_trans->dirty_bgs_lock);
3580
3581 should_put = 1;
3582
3583 cache_save_setup(cache, trans, path);
3584
3585 if (cache->disk_cache_state == BTRFS_DC_SETUP) {
3586 cache->io_ctl.inode = NULL;
3587 ret = btrfs_write_out_cache(root, trans, cache, path);
3588 if (ret == 0 && cache->io_ctl.inode) {
3589 num_started++;
3590 should_put = 0;
3591
3592 /*
3593 * the cache_write_mutex is protecting
3594 * the io_list
3595 */
3596 list_add_tail(&cache->io_list, io);
3597 } else {
3598 /*
3599 * if we failed to write the cache, the
3600 * generation will be bad and life goes on
3601 */
3602 ret = 0;
3603 }
3604 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003605 if (!ret) {
Chris Mason1bbc6212015-04-06 12:46:08 -07003606 ret = write_one_cache_group(trans, root, path, cache);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003607 /*
3608 * Our block group might still be attached to the list
3609 * of new block groups in the transaction handle of some
3610 * other task (struct btrfs_trans_handle->new_bgs). This
3611 * means its block group item isn't yet in the extent
3612 * tree. If this happens ignore the error, as we will
3613 * try again later in the critical section of the
3614 * transaction commit.
3615 */
3616 if (ret == -ENOENT) {
3617 ret = 0;
3618 spin_lock(&cur_trans->dirty_bgs_lock);
3619 if (list_empty(&cache->dirty_list)) {
3620 list_add_tail(&cache->dirty_list,
3621 &cur_trans->dirty_bgs);
3622 btrfs_get_block_group(cache);
3623 }
3624 spin_unlock(&cur_trans->dirty_bgs_lock);
3625 } else if (ret) {
3626 btrfs_abort_transaction(trans, root, ret);
3627 }
3628 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003629
3630 /* if its not on the io list, we need to put the block group */
3631 if (should_put)
3632 btrfs_put_block_group(cache);
3633
3634 if (ret)
3635 break;
Filipe Mananab58d1a92015-04-25 18:29:16 +01003636
3637 /*
3638 * Avoid blocking other tasks for too long. It might even save
3639 * us from writing caches for block groups that are going to be
3640 * removed.
3641 */
3642 mutex_unlock(&trans->transaction->cache_write_mutex);
3643 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003644 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003645 mutex_unlock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003646
3647 /*
3648 * go through delayed refs for all the stuff we've just kicked off
3649 * and then loop back (just once)
3650 */
3651 ret = btrfs_run_delayed_refs(trans, root, 0);
3652 if (!ret && loops == 0) {
3653 loops++;
3654 spin_lock(&cur_trans->dirty_bgs_lock);
3655 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003656 /*
3657 * dirty_bgs_lock protects us from concurrent block group
3658 * deletes too (not just cache_write_mutex).
3659 */
3660 if (!list_empty(&dirty)) {
3661 spin_unlock(&cur_trans->dirty_bgs_lock);
3662 goto again;
3663 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003664 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Mason1bbc6212015-04-06 12:46:08 -07003665 }
3666
3667 btrfs_free_path(path);
3668 return ret;
3669}
3670
Chris Mason96b51792007-10-15 16:15:19 -04003671int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
3672 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04003673{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003674 struct btrfs_block_group_cache *cache;
Josef Bacikce93ec52014-11-17 15:45:48 -05003675 struct btrfs_transaction *cur_trans = trans->transaction;
3676 int ret = 0;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003677 int should_put;
Chris Mason9078a3e2007-04-26 16:46:15 -04003678 struct btrfs_path *path;
Chris Mason1bbc6212015-04-06 12:46:08 -07003679 struct list_head *io = &cur_trans->io_bgs;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003680 int num_started = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003681
3682 path = btrfs_alloc_path();
3683 if (!path)
3684 return -ENOMEM;
3685
Josef Bacikce93ec52014-11-17 15:45:48 -05003686 /*
3687 * We don't need the lock here since we are protected by the transaction
3688 * commit. We want to do the cache_save_setup first and then run the
3689 * delayed refs to make sure we have the best chance at doing this all
3690 * in one shot.
3691 */
3692 while (!list_empty(&cur_trans->dirty_bgs)) {
3693 cache = list_first_entry(&cur_trans->dirty_bgs,
3694 struct btrfs_block_group_cache,
3695 dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003696
3697 /*
3698 * this can happen if cache_save_setup re-dirties a block
3699 * group that is already under IO. Just wait for it to
3700 * finish and then do it all again
3701 */
3702 if (!list_empty(&cache->io_list)) {
3703 list_del_init(&cache->io_list);
3704 btrfs_wait_cache_io(root, trans, cache,
3705 &cache->io_ctl, path,
3706 cache->key.objectid);
3707 btrfs_put_block_group(cache);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003708 }
3709
Chris Mason1bbc6212015-04-06 12:46:08 -07003710 /*
3711 * don't remove from the dirty list until after we've waited
3712 * on any pending IO
3713 */
Josef Bacikce93ec52014-11-17 15:45:48 -05003714 list_del_init(&cache->dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003715 should_put = 1;
3716
Chris Mason1bbc6212015-04-06 12:46:08 -07003717 cache_save_setup(cache, trans, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003718
Josef Bacikce93ec52014-11-17 15:45:48 -05003719 if (!ret)
Chris Masonc9dc4c62015-04-04 17:14:42 -07003720 ret = btrfs_run_delayed_refs(trans, root, (unsigned long) -1);
3721
3722 if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) {
3723 cache->io_ctl.inode = NULL;
3724 ret = btrfs_write_out_cache(root, trans, cache, path);
3725 if (ret == 0 && cache->io_ctl.inode) {
3726 num_started++;
3727 should_put = 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003728 list_add_tail(&cache->io_list, io);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003729 } else {
3730 /*
3731 * if we failed to write the cache, the
3732 * generation will be bad and life goes on
3733 */
3734 ret = 0;
3735 }
3736 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003737 if (!ret) {
Josef Bacikce93ec52014-11-17 15:45:48 -05003738 ret = write_one_cache_group(trans, root, path, cache);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003739 if (ret)
3740 btrfs_abort_transaction(trans, root, ret);
3741 }
Chris Masonc9dc4c62015-04-04 17:14:42 -07003742
3743 /* if its not on the io list, we need to put the block group */
3744 if (should_put)
3745 btrfs_put_block_group(cache);
3746 }
3747
Chris Mason1bbc6212015-04-06 12:46:08 -07003748 while (!list_empty(io)) {
3749 cache = list_first_entry(io, struct btrfs_block_group_cache,
Chris Masonc9dc4c62015-04-04 17:14:42 -07003750 io_list);
3751 list_del_init(&cache->io_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003752 btrfs_wait_cache_io(root, trans, cache,
3753 &cache->io_ctl, path, cache->key.objectid);
Josef Bacik0af3d002010-06-21 14:48:16 -04003754 btrfs_put_block_group(cache);
3755 }
3756
Chris Mason9078a3e2007-04-26 16:46:15 -04003757 btrfs_free_path(path);
Josef Bacikce93ec52014-11-17 15:45:48 -05003758 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003759}
3760
Yan Zhengd2fb3432008-12-11 16:30:39 -05003761int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
3762{
3763 struct btrfs_block_group_cache *block_group;
3764 int readonly = 0;
3765
3766 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
3767 if (!block_group || block_group->ro)
3768 readonly = 1;
3769 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04003770 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003771 return readonly;
3772}
3773
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003774static const char *alloc_name(u64 flags)
3775{
3776 switch (flags) {
3777 case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA:
3778 return "mixed";
3779 case BTRFS_BLOCK_GROUP_METADATA:
3780 return "metadata";
3781 case BTRFS_BLOCK_GROUP_DATA:
3782 return "data";
3783 case BTRFS_BLOCK_GROUP_SYSTEM:
3784 return "system";
3785 default:
3786 WARN_ON(1);
3787 return "invalid-combination";
3788 };
3789}
3790
Chris Mason593060d2008-03-25 16:50:33 -04003791static int update_space_info(struct btrfs_fs_info *info, u64 flags,
3792 u64 total_bytes, u64 bytes_used,
3793 struct btrfs_space_info **space_info)
3794{
3795 struct btrfs_space_info *found;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003796 int i;
3797 int factor;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003798 int ret;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003799
3800 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
3801 BTRFS_BLOCK_GROUP_RAID10))
3802 factor = 2;
3803 else
3804 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04003805
3806 found = __find_space_info(info, flags);
3807 if (found) {
Josef Bacik25179202008-10-29 14:49:05 -04003808 spin_lock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003809 found->total_bytes += total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003810 found->disk_total += total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003811 found->bytes_used += bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003812 found->disk_used += bytes_used * factor;
Filipe Manana2e6e5182015-05-12 00:28:11 +01003813 if (total_bytes > 0)
3814 found->full = 0;
Josef Bacik25179202008-10-29 14:49:05 -04003815 spin_unlock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003816 *space_info = found;
3817 return 0;
3818 }
Yan Zhengc146afa2008-11-12 14:34:12 -05003819 found = kzalloc(sizeof(*found), GFP_NOFS);
Chris Mason593060d2008-03-25 16:50:33 -04003820 if (!found)
3821 return -ENOMEM;
3822
Tejun Heo908c7f12014-09-08 09:51:29 +09003823 ret = percpu_counter_init(&found->total_bytes_pinned, 0, GFP_KERNEL);
Josef Bacikb150a4f2013-06-19 15:00:04 -04003824 if (ret) {
3825 kfree(found);
3826 return ret;
3827 }
3828
Jeff Mahoneyc1895442014-05-27 12:59:57 -04003829 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
Yan, Zhengb742bb82010-05-16 10:46:24 -04003830 INIT_LIST_HEAD(&found->block_groups[i]);
Josef Bacik80eb2342008-10-29 14:49:05 -04003831 init_rwsem(&found->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003832 spin_lock_init(&found->lock);
Ilya Dryomov52ba6922012-01-16 22:04:47 +02003833 found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
Chris Mason593060d2008-03-25 16:50:33 -04003834 found->total_bytes = total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003835 found->disk_total = total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003836 found->bytes_used = bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003837 found->disk_used = bytes_used * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003838 found->bytes_pinned = 0;
Zheng Yane8569812008-09-26 10:05:48 -04003839 found->bytes_reserved = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003840 found->bytes_readonly = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003841 found->bytes_may_use = 0;
Filipe Manana6af3e3a2015-09-07 10:41:12 +01003842 found->full = 0;
Josef Bacik4f4db212015-09-29 11:40:47 -04003843 found->max_extent_size = 0;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003844 found->force_alloc = CHUNK_ALLOC_NO_FORCE;
Josef Bacik6d741192011-04-11 20:20:11 -04003845 found->chunk_alloc = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003846 found->flush = 0;
3847 init_waitqueue_head(&found->wait);
Josef Bacik633c0aa2014-10-31 09:49:34 -04003848 INIT_LIST_HEAD(&found->ro_bgs);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003849
3850 ret = kobject_init_and_add(&found->kobj, &space_info_ktype,
3851 info->space_info_kobj, "%s",
3852 alloc_name(found->flags));
3853 if (ret) {
3854 kfree(found);
3855 return ret;
3856 }
3857
Chris Mason593060d2008-03-25 16:50:33 -04003858 *space_info = found;
Chris Mason4184ea72009-03-10 12:39:20 -04003859 list_add_rcu(&found->list, &info->space_info);
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003860 if (flags & BTRFS_BLOCK_GROUP_DATA)
3861 info->data_sinfo = found;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003862
3863 return ret;
Chris Mason593060d2008-03-25 16:50:33 -04003864}
3865
Chris Mason8790d502008-04-03 16:29:03 -04003866static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3867{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003868 u64 extra_flags = chunk_to_extended(flags) &
3869 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003870
Miao Xiede98ced2013-01-29 10:13:12 +00003871 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003872 if (flags & BTRFS_BLOCK_GROUP_DATA)
3873 fs_info->avail_data_alloc_bits |= extra_flags;
3874 if (flags & BTRFS_BLOCK_GROUP_METADATA)
3875 fs_info->avail_metadata_alloc_bits |= extra_flags;
3876 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3877 fs_info->avail_system_alloc_bits |= extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003878 write_sequnlock(&fs_info->profiles_lock);
Chris Mason8790d502008-04-03 16:29:03 -04003879}
Chris Mason593060d2008-03-25 16:50:33 -04003880
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003881/*
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003882 * returns target flags in extended format or 0 if restripe for this
3883 * chunk_type is not in progress
Ilya Dryomovc6664b42012-04-12 16:03:56 -04003884 *
3885 * should be called with either volume_mutex or balance_lock held
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003886 */
3887static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
3888{
3889 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3890 u64 target = 0;
3891
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003892 if (!bctl)
3893 return 0;
3894
3895 if (flags & BTRFS_BLOCK_GROUP_DATA &&
3896 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3897 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
3898 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
3899 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3900 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
3901 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
3902 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3903 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
3904 }
3905
3906 return target;
3907}
3908
3909/*
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003910 * @flags: available profiles in extended format (see ctree.h)
3911 *
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003912 * Returns reduced profile in chunk format. If profile changing is in
3913 * progress (either running or paused) picks the target profile (if it's
3914 * already available), otherwise falls back to plain reducing.
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003915 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003916static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04003917{
Miao Xie95669972014-07-24 11:37:14 +08003918 u64 num_devices = root->fs_info->fs_devices->rw_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003919 u64 target;
Zhao Lei9c170b22015-09-15 21:08:08 +08003920 u64 raid_type;
3921 u64 allowed = 0;
Chris Masona061fc82008-05-07 11:43:44 -04003922
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003923 /*
3924 * see if restripe for this chunk_type is in progress, if so
3925 * try to reduce to the target profile
3926 */
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003927 spin_lock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003928 target = get_restripe_target(root->fs_info, flags);
3929 if (target) {
3930 /* pick target profile only if it's already available */
3931 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003932 spin_unlock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003933 return extended_to_chunk(target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003934 }
3935 }
3936 spin_unlock(&root->fs_info->balance_lock);
3937
David Woodhouse53b381b2013-01-29 18:40:14 -05003938 /* First, mask out the RAID levels which aren't possible */
Zhao Lei9c170b22015-09-15 21:08:08 +08003939 for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) {
3940 if (num_devices >= btrfs_raid_array[raid_type].devs_min)
3941 allowed |= btrfs_raid_group[raid_type];
3942 }
3943 allowed &= flags;
Chris Masona061fc82008-05-07 11:43:44 -04003944
Zhao Lei9c170b22015-09-15 21:08:08 +08003945 if (allowed & BTRFS_BLOCK_GROUP_RAID6)
3946 allowed = BTRFS_BLOCK_GROUP_RAID6;
3947 else if (allowed & BTRFS_BLOCK_GROUP_RAID5)
3948 allowed = BTRFS_BLOCK_GROUP_RAID5;
3949 else if (allowed & BTRFS_BLOCK_GROUP_RAID10)
3950 allowed = BTRFS_BLOCK_GROUP_RAID10;
3951 else if (allowed & BTRFS_BLOCK_GROUP_RAID1)
3952 allowed = BTRFS_BLOCK_GROUP_RAID1;
3953 else if (allowed & BTRFS_BLOCK_GROUP_RAID0)
3954 allowed = BTRFS_BLOCK_GROUP_RAID0;
Chris Masonec44a352008-04-28 15:29:52 -04003955
Zhao Lei9c170b22015-09-15 21:08:08 +08003956 flags &= ~BTRFS_BLOCK_GROUP_PROFILE_MASK;
Chris Masonec44a352008-04-28 15:29:52 -04003957
Zhao Lei9c170b22015-09-15 21:08:08 +08003958 return extended_to_chunk(flags | allowed);
Chris Masonec44a352008-04-28 15:29:52 -04003959}
3960
Filipe Mananaf8213bd2014-04-24 15:15:29 +01003961static u64 get_alloc_profile(struct btrfs_root *root, u64 orig_flags)
Josef Bacik6a632092009-02-20 11:00:09 -05003962{
Miao Xiede98ced2013-01-29 10:13:12 +00003963 unsigned seq;
Filipe Mananaf8213bd2014-04-24 15:15:29 +01003964 u64 flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003965
3966 do {
Filipe Mananaf8213bd2014-04-24 15:15:29 +01003967 flags = orig_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003968 seq = read_seqbegin(&root->fs_info->profiles_lock);
3969
3970 if (flags & BTRFS_BLOCK_GROUP_DATA)
3971 flags |= root->fs_info->avail_data_alloc_bits;
3972 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3973 flags |= root->fs_info->avail_system_alloc_bits;
3974 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
3975 flags |= root->fs_info->avail_metadata_alloc_bits;
3976 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02003977
Yan, Zhengb742bb82010-05-16 10:46:24 -04003978 return btrfs_reduce_alloc_profile(root, flags);
3979}
Josef Bacik6a632092009-02-20 11:00:09 -05003980
Miao Xie6d07bce2011-01-05 10:07:31 +00003981u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
Yan, Zhengb742bb82010-05-16 10:46:24 -04003982{
3983 u64 flags;
David Woodhouse53b381b2013-01-29 18:40:14 -05003984 u64 ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003985
Yan, Zhengb742bb82010-05-16 10:46:24 -04003986 if (data)
3987 flags = BTRFS_BLOCK_GROUP_DATA;
3988 else if (root == root->fs_info->chunk_root)
3989 flags = BTRFS_BLOCK_GROUP_SYSTEM;
3990 else
3991 flags = BTRFS_BLOCK_GROUP_METADATA;
3992
David Woodhouse53b381b2013-01-29 18:40:14 -05003993 ret = get_alloc_profile(root, flags);
3994 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003995}
3996
Qu Wenruo4ceff072015-09-08 17:22:42 +08003997int btrfs_alloc_data_chunk_ondemand(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003998{
3999 struct btrfs_space_info *data_sinfo;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004000 struct btrfs_root *root = BTRFS_I(inode)->root;
Li Zefanb4d7c3c2012-07-09 20:21:07 -06004001 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacikab6e24102010-03-19 14:38:13 +00004002 u64 used;
Zhao Lei94b947b2015-02-14 13:23:45 +08004003 int ret = 0;
Zhao Leic99f1b02015-03-02 19:32:20 +08004004 int need_commit = 2;
4005 int have_pinned_space;
Josef Bacik6a632092009-02-20 11:00:09 -05004006
4007 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00004008 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05004009
Miao Xie9dced182013-10-25 17:33:36 +08004010 if (btrfs_is_free_space_inode(inode)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004011 need_commit = 0;
Miao Xie9dced182013-10-25 17:33:36 +08004012 ASSERT(current->journal_info);
Josef Bacik0af3d002010-06-21 14:48:16 -04004013 }
4014
Li Zefanb4d7c3c2012-07-09 20:21:07 -06004015 data_sinfo = fs_info->data_sinfo;
Chris Mason33b4d472009-09-22 14:45:50 -04004016 if (!data_sinfo)
4017 goto alloc;
4018
Josef Bacik6a632092009-02-20 11:00:09 -05004019again:
4020 /* make sure we have enough space to handle the data first */
4021 spin_lock(&data_sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004022 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
4023 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
4024 data_sinfo->bytes_may_use;
Josef Bacikab6e24102010-03-19 14:38:13 +00004025
4026 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004027 struct btrfs_trans_handle *trans;
4028
Josef Bacik6a632092009-02-20 11:00:09 -05004029 /*
4030 * if we don't have enough free bytes in this space then we need
4031 * to alloc a new chunk.
4032 */
Zhao Leib9fd47c2015-02-09 14:40:20 +08004033 if (!data_sinfo->full) {
Josef Bacik6a632092009-02-20 11:00:09 -05004034 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05004035
Chris Mason0e4f8f82011-04-15 16:05:44 -04004036 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05004037 spin_unlock(&data_sinfo->lock);
Chris Mason33b4d472009-09-22 14:45:50 -04004038alloc:
Josef Bacik6a632092009-02-20 11:00:09 -05004039 alloc_target = btrfs_get_alloc_profile(root, 1);
Miao Xie9dced182013-10-25 17:33:36 +08004040 /*
4041 * It is ugly that we don't call nolock join
4042 * transaction for the free space inode case here.
4043 * But it is safe because we only do the data space
4044 * reservation for the free space cache in the
4045 * transaction context, the common join transaction
4046 * just increase the counter of the current transaction
4047 * handler, doesn't try to acquire the trans_lock of
4048 * the fs.
4049 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004050 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004051 if (IS_ERR(trans))
4052 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05004053
4054 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0e4f8f82011-04-15 16:05:44 -04004055 alloc_target,
4056 CHUNK_ALLOC_NO_FORCE);
Josef Bacik6a632092009-02-20 11:00:09 -05004057 btrfs_end_transaction(trans, root);
Miao Xied52a5b52011-01-05 10:07:18 +00004058 if (ret < 0) {
4059 if (ret != -ENOSPC)
4060 return ret;
Zhao Leic99f1b02015-03-02 19:32:20 +08004061 else {
4062 have_pinned_space = 1;
Miao Xied52a5b52011-01-05 10:07:18 +00004063 goto commit_trans;
Zhao Leic99f1b02015-03-02 19:32:20 +08004064 }
Miao Xied52a5b52011-01-05 10:07:18 +00004065 }
Chris Mason33b4d472009-09-22 14:45:50 -04004066
Li Zefanb4d7c3c2012-07-09 20:21:07 -06004067 if (!data_sinfo)
4068 data_sinfo = fs_info->data_sinfo;
4069
Josef Bacik6a632092009-02-20 11:00:09 -05004070 goto again;
4071 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004072
4073 /*
Josef Bacikb150a4f2013-06-19 15:00:04 -04004074 * If we don't have enough pinned space to deal with this
Zhao Lei94b947b2015-02-14 13:23:45 +08004075 * allocation, and no removed chunk in current transaction,
4076 * don't bother committing the transaction.
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004077 */
Zhao Leic99f1b02015-03-02 19:32:20 +08004078 have_pinned_space = percpu_counter_compare(
4079 &data_sinfo->total_bytes_pinned,
4080 used + bytes - data_sinfo->total_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05004081 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004082
4083 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00004084commit_trans:
Zhao Leic99f1b02015-03-02 19:32:20 +08004085 if (need_commit &&
Josef Bacika4abeea2011-04-11 17:25:13 -04004086 !atomic_read(&root->fs_info->open_ioctl_trans)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004087 need_commit--;
Josef Bacikb150a4f2013-06-19 15:00:04 -04004088
Zhao Lei9a4e7272015-04-09 12:34:43 +08004089 if (need_commit > 0)
4090 btrfs_wait_ordered_roots(fs_info, -1);
4091
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004092 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004093 if (IS_ERR(trans))
4094 return PTR_ERR(trans);
Zhao Leic99f1b02015-03-02 19:32:20 +08004095 if (have_pinned_space >= 0 ||
Josef Bacik3204d332015-09-24 10:46:10 -04004096 test_bit(BTRFS_TRANS_HAVE_FREE_BGS,
4097 &trans->transaction->flags) ||
Zhao Leic99f1b02015-03-02 19:32:20 +08004098 need_commit > 0) {
Zhao Lei94b947b2015-02-14 13:23:45 +08004099 ret = btrfs_commit_transaction(trans, root);
4100 if (ret)
4101 return ret;
Zhao Leid7c15172015-02-26 10:49:20 +08004102 /*
4103 * make sure that all running delayed iput are
4104 * done
4105 */
4106 down_write(&root->fs_info->delayed_iput_sem);
4107 up_write(&root->fs_info->delayed_iput_sem);
Zhao Lei94b947b2015-02-14 13:23:45 +08004108 goto again;
4109 } else {
4110 btrfs_end_transaction(trans, root);
4111 }
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004112 }
4113
Jeff Mahoneycab45e22013-10-16 16:27:01 -04004114 trace_btrfs_space_reservation(root->fs_info,
4115 "space_info:enospc",
4116 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004117 return -ENOSPC;
4118 }
4119 data_sinfo->bytes_may_use += bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004120 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004121 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004122 spin_unlock(&data_sinfo->lock);
4123
Dongsheng Yang237c0e92014-12-29 06:23:05 -05004124 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004125}
4126
4127/*
Qu Wenruo4ceff072015-09-08 17:22:42 +08004128 * New check_data_free_space() with ability for precious data reservation
4129 * Will replace old btrfs_check_data_free_space(), but for patch split,
4130 * add a new function first and then replace it.
4131 */
Qu Wenruo7cf5b972015-09-08 17:25:55 +08004132int btrfs_check_data_free_space(struct inode *inode, u64 start, u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004133{
4134 struct btrfs_root *root = BTRFS_I(inode)->root;
4135 int ret;
4136
4137 /* align the range */
4138 len = round_up(start + len, root->sectorsize) -
4139 round_down(start, root->sectorsize);
4140 start = round_down(start, root->sectorsize);
4141
4142 ret = btrfs_alloc_data_chunk_ondemand(inode, len);
4143 if (ret < 0)
4144 return ret;
4145
Qu Wenruo94ed9382015-09-08 17:25:56 +08004146 /*
4147 * Use new btrfs_qgroup_reserve_data to reserve precious data space
4148 *
4149 * TODO: Find a good method to avoid reserve data space for NOCOW
4150 * range, but don't impact performance on quota disable case.
4151 */
Qu Wenruo4ceff072015-09-08 17:22:42 +08004152 ret = btrfs_qgroup_reserve_data(inode, start, len);
4153 return ret;
4154}
4155
4156/*
Qu Wenruo4ceff072015-09-08 17:22:42 +08004157 * Called if we need to clear a data reservation for this inode
4158 * Normally in a error case.
4159 *
Qu Wenruo51773be2015-10-08 18:19:37 +08004160 * This one will *NOT* use accurate qgroup reserved space API, just for case
4161 * which we can't sleep and is sure it won't affect qgroup reserved space.
4162 * Like clear_bit_hook().
Qu Wenruo4ceff072015-09-08 17:22:42 +08004163 */
Qu Wenruo51773be2015-10-08 18:19:37 +08004164void btrfs_free_reserved_data_space_noquota(struct inode *inode, u64 start,
4165 u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004166{
4167 struct btrfs_root *root = BTRFS_I(inode)->root;
4168 struct btrfs_space_info *data_sinfo;
4169
4170 /* Make sure the range is aligned to sectorsize */
4171 len = round_up(start + len, root->sectorsize) -
4172 round_down(start, root->sectorsize);
4173 start = round_down(start, root->sectorsize);
4174
Qu Wenruo4ceff072015-09-08 17:22:42 +08004175 data_sinfo = root->fs_info->data_sinfo;
4176 spin_lock(&data_sinfo->lock);
4177 if (WARN_ON(data_sinfo->bytes_may_use < len))
4178 data_sinfo->bytes_may_use = 0;
4179 else
4180 data_sinfo->bytes_may_use -= len;
4181 trace_btrfs_space_reservation(root->fs_info, "space_info",
4182 data_sinfo->flags, len, 0);
4183 spin_unlock(&data_sinfo->lock);
4184}
4185
Qu Wenruo51773be2015-10-08 18:19:37 +08004186/*
4187 * Called if we need to clear a data reservation for this inode
4188 * Normally in a error case.
4189 *
4190 * This one will handle the per-indoe data rsv map for accurate reserved
4191 * space framework.
4192 */
4193void btrfs_free_reserved_data_space(struct inode *inode, u64 start, u64 len)
4194{
4195 btrfs_free_reserved_data_space_noquota(inode, start, len);
4196 btrfs_qgroup_free_data(inode, start, len);
4197}
4198
Josef Bacik97e728d2009-04-21 17:40:57 -04004199static void force_metadata_allocation(struct btrfs_fs_info *info)
4200{
4201 struct list_head *head = &info->space_info;
4202 struct btrfs_space_info *found;
4203
4204 rcu_read_lock();
4205 list_for_each_entry_rcu(found, head, list) {
4206 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004207 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04004208 }
4209 rcu_read_unlock();
4210}
4211
Miao Xie3c76cd82013-04-25 10:12:38 +00004212static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
4213{
4214 return (global->size << 1);
4215}
4216
Chris Masone5bc2452010-10-26 13:37:56 -04004217static int should_alloc_chunk(struct btrfs_root *root,
Josef Bacik698d0082012-09-12 14:08:47 -04004218 struct btrfs_space_info *sinfo, int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04004219{
Josef Bacikfb25e912011-07-26 17:00:46 -04004220 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zheng424499d2010-05-16 10:46:25 -04004221 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
Chris Mason0e4f8f82011-04-15 16:05:44 -04004222 u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved;
Chris Masone5bc2452010-10-26 13:37:56 -04004223 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04004224
Chris Mason0e4f8f82011-04-15 16:05:44 -04004225 if (force == CHUNK_ALLOC_FORCE)
4226 return 1;
4227
4228 /*
Josef Bacikfb25e912011-07-26 17:00:46 -04004229 * We need to take into account the global rsv because for all intents
4230 * and purposes it's used space. Don't worry about locking the
4231 * global_rsv, it doesn't change except when the transaction commits.
4232 */
Josef Bacik54338b52012-08-14 16:20:52 -04004233 if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA)
Miao Xie3c76cd82013-04-25 10:12:38 +00004234 num_allocated += calc_global_rsv_need_space(global_rsv);
Josef Bacikfb25e912011-07-26 17:00:46 -04004235
4236 /*
Chris Mason0e4f8f82011-04-15 16:05:44 -04004237 * in limited mode, we want to have some free space up to
4238 * about 1% of the FS size.
4239 */
4240 if (force == CHUNK_ALLOC_LIMITED) {
David Sterba6c417612011-04-13 15:41:04 +02004241 thresh = btrfs_super_total_bytes(root->fs_info->super_copy);
Byongho Leeee221842015-12-15 01:42:10 +09004242 thresh = max_t(u64, SZ_64M, div_factor_fine(thresh, 1));
Chris Mason0e4f8f82011-04-15 16:05:44 -04004243
4244 if (num_bytes - num_allocated < thresh)
4245 return 1;
4246 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004247
Byongho Leeee221842015-12-15 01:42:10 +09004248 if (num_allocated + SZ_2M < div_factor(num_bytes, 8))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04004249 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04004250 return 1;
4251}
4252
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004253static u64 get_profile_num_devs(struct btrfs_root *root, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004254{
4255 u64 num_dev;
4256
David Woodhouse53b381b2013-01-29 18:40:14 -05004257 if (type & (BTRFS_BLOCK_GROUP_RAID10 |
4258 BTRFS_BLOCK_GROUP_RAID0 |
4259 BTRFS_BLOCK_GROUP_RAID5 |
4260 BTRFS_BLOCK_GROUP_RAID6))
Liu Bo15d1ff82012-03-29 09:57:44 -04004261 num_dev = root->fs_info->fs_devices->rw_devices;
4262 else if (type & BTRFS_BLOCK_GROUP_RAID1)
4263 num_dev = 2;
4264 else
4265 num_dev = 1; /* DUP or single */
4266
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004267 return num_dev;
Liu Bo15d1ff82012-03-29 09:57:44 -04004268}
4269
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004270/*
4271 * If @is_allocation is true, reserve space in the system space info necessary
4272 * for allocating a chunk, otherwise if it's false, reserve space necessary for
4273 * removing a chunk.
4274 */
4275void check_system_chunk(struct btrfs_trans_handle *trans,
4276 struct btrfs_root *root,
Filipe Manana4617ea32015-06-09 17:48:21 +01004277 u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004278{
4279 struct btrfs_space_info *info;
4280 u64 left;
4281 u64 thresh;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004282 int ret = 0;
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004283 u64 num_devs;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004284
4285 /*
4286 * Needed because we can end up allocating a system chunk and for an
4287 * atomic and race free space reservation in the chunk block reserve.
4288 */
4289 ASSERT(mutex_is_locked(&root->fs_info->chunk_mutex));
Liu Bo15d1ff82012-03-29 09:57:44 -04004290
4291 info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4292 spin_lock(&info->lock);
4293 left = info->total_bytes - info->bytes_used - info->bytes_pinned -
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004294 info->bytes_reserved - info->bytes_readonly -
4295 info->bytes_may_use;
Liu Bo15d1ff82012-03-29 09:57:44 -04004296 spin_unlock(&info->lock);
4297
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004298 num_devs = get_profile_num_devs(root, type);
4299
4300 /* num_devs device items to update and 1 chunk item to add or remove */
Filipe Manana4617ea32015-06-09 17:48:21 +01004301 thresh = btrfs_calc_trunc_metadata_size(root, num_devs) +
4302 btrfs_calc_trans_metadata_size(root, 1);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004303
Liu Bo15d1ff82012-03-29 09:57:44 -04004304 if (left < thresh && btrfs_test_opt(root, ENOSPC_DEBUG)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00004305 btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu",
4306 left, thresh, type);
Liu Bo15d1ff82012-03-29 09:57:44 -04004307 dump_space_info(info, 0, 0);
4308 }
4309
4310 if (left < thresh) {
4311 u64 flags;
4312
4313 flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0);
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004314 /*
4315 * Ignore failure to create system chunk. We might end up not
4316 * needing it, as we might not need to COW all nodes/leafs from
4317 * the paths we visit in the chunk tree (they were already COWed
4318 * or created in the current transaction for example).
4319 */
4320 ret = btrfs_alloc_chunk(trans, root, flags);
4321 }
4322
4323 if (!ret) {
4324 ret = btrfs_block_rsv_add(root->fs_info->chunk_root,
4325 &root->fs_info->chunk_block_rsv,
4326 thresh, BTRFS_RESERVE_NO_FLUSH);
4327 if (!ret)
4328 trans->chunk_bytes_reserved += thresh;
Liu Bo15d1ff82012-03-29 09:57:44 -04004329 }
4330}
4331
Chris Mason6324fbf2008-03-24 15:01:59 -04004332static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Josef Bacik698d0082012-09-12 14:08:47 -04004333 struct btrfs_root *extent_root, u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04004334{
4335 struct btrfs_space_info *space_info;
Josef Bacik97e728d2009-04-21 17:40:57 -04004336 struct btrfs_fs_info *fs_info = extent_root->fs_info;
Josef Bacik6d741192011-04-11 20:20:11 -04004337 int wait_for_alloc = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05004338 int ret = 0;
4339
Josef Bacikc6b305a2012-12-18 09:16:16 -05004340 /* Don't re-enter if we're already allocating a chunk */
4341 if (trans->allocating_chunk)
4342 return -ENOSPC;
4343
Chris Mason6324fbf2008-03-24 15:01:59 -04004344 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04004345 if (!space_info) {
4346 ret = update_space_info(extent_root->fs_info, flags,
4347 0, 0, &space_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004348 BUG_ON(ret); /* -ENOMEM */
Chris Mason593060d2008-03-25 16:50:33 -04004349 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004350 BUG_ON(!space_info); /* Logic error */
Chris Mason6324fbf2008-03-24 15:01:59 -04004351
Josef Bacik6d741192011-04-11 20:20:11 -04004352again:
Josef Bacik25179202008-10-29 14:49:05 -04004353 spin_lock(&space_info->lock);
Miao Xie9e622d62012-01-26 15:01:12 -05004354 if (force < space_info->force_alloc)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004355 force = space_info->force_alloc;
Josef Bacik25179202008-10-29 14:49:05 -04004356 if (space_info->full) {
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01004357 if (should_alloc_chunk(extent_root, space_info, force))
4358 ret = -ENOSPC;
4359 else
4360 ret = 0;
Josef Bacik25179202008-10-29 14:49:05 -04004361 spin_unlock(&space_info->lock);
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01004362 return ret;
Josef Bacik25179202008-10-29 14:49:05 -04004363 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004364
Josef Bacik698d0082012-09-12 14:08:47 -04004365 if (!should_alloc_chunk(extent_root, space_info, force)) {
Josef Bacik25179202008-10-29 14:49:05 -04004366 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04004367 return 0;
4368 } else if (space_info->chunk_alloc) {
4369 wait_for_alloc = 1;
4370 } else {
4371 space_info->chunk_alloc = 1;
Josef Bacik25179202008-10-29 14:49:05 -04004372 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004373
Josef Bacik25179202008-10-29 14:49:05 -04004374 spin_unlock(&space_info->lock);
4375
Josef Bacik6d741192011-04-11 20:20:11 -04004376 mutex_lock(&fs_info->chunk_mutex);
4377
4378 /*
4379 * The chunk_mutex is held throughout the entirety of a chunk
4380 * allocation, so once we've acquired the chunk_mutex we know that the
4381 * other guy is done and we need to recheck and see if we should
4382 * allocate.
4383 */
4384 if (wait_for_alloc) {
4385 mutex_unlock(&fs_info->chunk_mutex);
4386 wait_for_alloc = 0;
4387 goto again;
4388 }
4389
Josef Bacikc6b305a2012-12-18 09:16:16 -05004390 trans->allocating_chunk = true;
4391
Josef Bacik97e728d2009-04-21 17:40:57 -04004392 /*
Josef Bacik67377732010-09-16 16:19:09 -04004393 * If we have mixed data/metadata chunks we want to make sure we keep
4394 * allocating mixed chunks instead of individual chunks.
4395 */
4396 if (btrfs_mixed_space_info(space_info))
4397 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
4398
4399 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04004400 * if we're doing a data chunk, go ahead and make sure that
4401 * we keep a reasonable number of metadata chunks allocated in the
4402 * FS as well.
4403 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04004404 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04004405 fs_info->data_chunk_allocations++;
4406 if (!(fs_info->data_chunk_allocations %
4407 fs_info->metadata_ratio))
4408 force_metadata_allocation(fs_info);
4409 }
4410
Liu Bo15d1ff82012-03-29 09:57:44 -04004411 /*
4412 * Check if we have enough space in SYSTEM chunk because we may need
4413 * to update devices.
4414 */
Filipe Manana4617ea32015-06-09 17:48:21 +01004415 check_system_chunk(trans, extent_root, flags);
Liu Bo15d1ff82012-03-29 09:57:44 -04004416
Yan Zheng2b820322008-11-17 21:11:30 -05004417 ret = btrfs_alloc_chunk(trans, extent_root, flags);
Josef Bacikc6b305a2012-12-18 09:16:16 -05004418 trans->allocating_chunk = false;
Mark Fasheh92b8e8972011-07-12 10:57:59 -07004419
Josef Bacik9ed74f22009-09-11 16:12:44 -04004420 spin_lock(&space_info->lock);
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004421 if (ret < 0 && ret != -ENOSPC)
4422 goto out;
Chris Masond3977122009-01-05 21:25:51 -05004423 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04004424 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04004425 else
4426 ret = 1;
Josef Bacik6d741192011-04-11 20:20:11 -04004427
Chris Mason0e4f8f82011-04-15 16:05:44 -04004428 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004429out:
Josef Bacik6d741192011-04-11 20:20:11 -04004430 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004431 spin_unlock(&space_info->lock);
Dan Carpentera25c75d2012-04-18 09:59:29 +03004432 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana00d80e32015-07-20 14:56:20 +01004433 /*
4434 * When we allocate a new chunk we reserve space in the chunk block
4435 * reserve to make sure we can COW nodes/leafs in the chunk tree or
4436 * add new nodes/leafs to it if we end up needing to do it when
4437 * inserting the chunk item and updating device items as part of the
4438 * second phase of chunk allocation, performed by
4439 * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a
4440 * large number of new block groups to create in our transaction
4441 * handle's new_bgs list to avoid exhausting the chunk block reserve
4442 * in extreme cases - like having a single transaction create many new
4443 * block groups when starting to write out the free space caches of all
4444 * the block groups that were made dirty during the lifetime of the
4445 * transaction.
4446 */
Filipe Mananad9a05402015-10-03 13:13:13 +01004447 if (trans->can_flush_pending_bgs &&
Byongho Leeee221842015-12-15 01:42:10 +09004448 trans->chunk_bytes_reserved >= (u64)SZ_2M) {
Filipe Manana00d80e32015-07-20 14:56:20 +01004449 btrfs_create_pending_block_groups(trans, trans->root);
4450 btrfs_trans_release_chunk_metadata(trans);
4451 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04004452 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04004453}
4454
Josef Bacika80c8dc2012-09-06 16:59:33 -04004455static int can_overcommit(struct btrfs_root *root,
4456 struct btrfs_space_info *space_info, u64 bytes,
Miao Xie08e007d2012-10-16 11:33:38 +00004457 enum btrfs_reserve_flush_enum flush)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004458{
Josef Bacik96f1bb52013-01-30 17:02:51 -05004459 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004460 u64 profile = btrfs_get_alloc_profile(root, 0);
Miao Xie3c76cd82013-04-25 10:12:38 +00004461 u64 space_size;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004462 u64 avail;
4463 u64 used;
4464
4465 used = space_info->bytes_used + space_info->bytes_reserved +
Josef Bacik96f1bb52013-01-30 17:02:51 -05004466 space_info->bytes_pinned + space_info->bytes_readonly;
4467
Josef Bacik96f1bb52013-01-30 17:02:51 -05004468 /*
4469 * We only want to allow over committing if we have lots of actual space
4470 * free, but if we don't have enough space to handle the global reserve
4471 * space then we could end up having a real enospc problem when trying
4472 * to allocate a chunk or some other such important allocation.
4473 */
Miao Xie3c76cd82013-04-25 10:12:38 +00004474 spin_lock(&global_rsv->lock);
4475 space_size = calc_global_rsv_need_space(global_rsv);
4476 spin_unlock(&global_rsv->lock);
4477 if (used + space_size >= space_info->total_bytes)
Josef Bacik96f1bb52013-01-30 17:02:51 -05004478 return 0;
4479
4480 used += space_info->bytes_may_use;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004481
4482 spin_lock(&root->fs_info->free_chunk_lock);
4483 avail = root->fs_info->free_chunk_space;
4484 spin_unlock(&root->fs_info->free_chunk_lock);
4485
4486 /*
4487 * If we have dup, raid1 or raid10 then only half of the free
David Woodhouse53b381b2013-01-29 18:40:14 -05004488 * space is actually useable. For raid56, the space info used
4489 * doesn't include the parity drive, so we don't have to
4490 * change the math
Josef Bacika80c8dc2012-09-06 16:59:33 -04004491 */
4492 if (profile & (BTRFS_BLOCK_GROUP_DUP |
4493 BTRFS_BLOCK_GROUP_RAID1 |
4494 BTRFS_BLOCK_GROUP_RAID10))
4495 avail >>= 1;
4496
4497 /*
Miao Xie561c2942012-10-16 11:32:18 +00004498 * If we aren't flushing all things, let us overcommit up to
4499 * 1/2th of the space. If we can flush, don't let us overcommit
4500 * too much, let it overcommit up to 1/8 of the space.
Josef Bacika80c8dc2012-09-06 16:59:33 -04004501 */
Miao Xie08e007d2012-10-16 11:33:38 +00004502 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacik14575ae2013-09-17 10:48:00 -04004503 avail >>= 3;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004504 else
Josef Bacik14575ae2013-09-17 10:48:00 -04004505 avail >>= 1;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004506
Josef Bacik14575ae2013-09-17 10:48:00 -04004507 if (used + bytes < space_info->total_bytes + avail)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004508 return 1;
4509 return 0;
4510}
4511
Eric Sandeen48a3b632013-04-25 20:41:01 +00004512static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root,
Miao Xie6c255e62014-03-06 13:55:01 +08004513 unsigned long nr_pages, int nr_items)
Miao Xieda633a42012-12-20 11:19:09 +00004514{
4515 struct super_block *sb = root->fs_info->sb;
Miao Xieda633a42012-12-20 11:19:09 +00004516
Josef Bacik925a6ef2013-06-20 12:31:27 -04004517 if (down_read_trylock(&sb->s_umount)) {
4518 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
4519 up_read(&sb->s_umount);
4520 } else {
Miao Xieda633a42012-12-20 11:19:09 +00004521 /*
4522 * We needn't worry the filesystem going from r/w to r/o though
4523 * we don't acquire ->s_umount mutex, because the filesystem
4524 * should guarantee the delalloc inodes list be empty after
4525 * the filesystem is readonly(all dirty pages are written to
4526 * the disk).
4527 */
Miao Xie6c255e62014-03-06 13:55:01 +08004528 btrfs_start_delalloc_roots(root->fs_info, 0, nr_items);
Josef Bacik98ad69c2013-04-04 11:55:49 -04004529 if (!current->journal_info)
Miao Xie6c255e62014-03-06 13:55:01 +08004530 btrfs_wait_ordered_roots(root->fs_info, nr_items);
Miao Xieda633a42012-12-20 11:19:09 +00004531 }
4532}
4533
Miao Xie18cd8ea2013-11-04 23:13:22 +08004534static inline int calc_reclaim_items_nr(struct btrfs_root *root, u64 to_reclaim)
4535{
4536 u64 bytes;
4537 int nr;
4538
4539 bytes = btrfs_calc_trans_metadata_size(root, 1);
4540 nr = (int)div64_u64(to_reclaim, bytes);
4541 if (!nr)
4542 nr = 1;
4543 return nr;
4544}
4545
Byongho Leeee221842015-12-15 01:42:10 +09004546#define EXTENT_SIZE_PER_ITEM SZ_256K
Miao Xiec61a16a2013-11-04 23:13:23 +08004547
Yan, Zheng5da9d012010-05-16 10:46:25 -04004548/*
4549 * shrink metadata reservation for delalloc
4550 */
Josef Bacikf4c738c2012-07-02 17:10:51 -04004551static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig,
4552 bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04004553{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004554 struct btrfs_block_rsv *block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004555 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04004556 struct btrfs_trans_handle *trans;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004557 u64 delalloc_bytes;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004558 u64 max_reclaim;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004559 long time_left;
Miao Xied3ee29e2013-11-04 23:13:20 +08004560 unsigned long nr_pages;
4561 int loops;
Miao Xieb0244192013-11-04 23:13:25 +08004562 int items;
Miao Xie08e007d2012-10-16 11:33:38 +00004563 enum btrfs_reserve_flush_enum flush;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004564
Miao Xiec61a16a2013-11-04 23:13:23 +08004565 /* Calc the number of the pages we need flush for space reservation */
Miao Xieb0244192013-11-04 23:13:25 +08004566 items = calc_reclaim_items_nr(root, to_reclaim);
4567 to_reclaim = items * EXTENT_SIZE_PER_ITEM;
Miao Xiec61a16a2013-11-04 23:13:23 +08004568
Josef Bacik663350a2011-11-03 22:54:25 -04004569 trans = (struct btrfs_trans_handle *)current->journal_info;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004570 block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004571 space_info = block_rsv->space_info;
Chris Masonbf9022e2010-10-26 13:40:45 -04004572
Miao Xie963d6782013-01-29 10:10:51 +00004573 delalloc_bytes = percpu_counter_sum_positive(
4574 &root->fs_info->delalloc_bytes);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004575 if (delalloc_bytes == 0) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004576 if (trans)
Josef Bacikf4c738c2012-07-02 17:10:51 -04004577 return;
Miao Xie38c135a2013-11-04 23:13:21 +08004578 if (wait_ordered)
Miao Xieb0244192013-11-04 23:13:25 +08004579 btrfs_wait_ordered_roots(root->fs_info, items);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004580 return;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004581 }
4582
Miao Xied3ee29e2013-11-04 23:13:20 +08004583 loops = 0;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004584 while (delalloc_bytes && loops < 3) {
4585 max_reclaim = min(delalloc_bytes, to_reclaim);
4586 nr_pages = max_reclaim >> PAGE_CACHE_SHIFT;
Miao Xie6c255e62014-03-06 13:55:01 +08004587 btrfs_writeback_inodes_sb_nr(root, nr_pages, items);
Josef Bacikdea31f52012-09-06 16:47:00 -04004588 /*
4589 * We need to wait for the async pages to actually start before
4590 * we do anything.
4591 */
Miao Xie9f3a0742013-11-04 23:13:24 +08004592 max_reclaim = atomic_read(&root->fs_info->async_delalloc_pages);
4593 if (!max_reclaim)
4594 goto skip_async;
Josef Bacikdea31f52012-09-06 16:47:00 -04004595
Miao Xie9f3a0742013-11-04 23:13:24 +08004596 if (max_reclaim <= nr_pages)
4597 max_reclaim = 0;
4598 else
4599 max_reclaim -= nr_pages;
4600
4601 wait_event(root->fs_info->async_submit_wait,
4602 atomic_read(&root->fs_info->async_delalloc_pages) <=
4603 (int)max_reclaim);
4604skip_async:
Miao Xie08e007d2012-10-16 11:33:38 +00004605 if (!trans)
4606 flush = BTRFS_RESERVE_FLUSH_ALL;
4607 else
4608 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacik0019f102010-10-15 15:18:40 -04004609 spin_lock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00004610 if (can_overcommit(root, space_info, orig, flush)) {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004611 spin_unlock(&space_info->lock);
4612 break;
4613 }
Josef Bacik0019f102010-10-15 15:18:40 -04004614 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004615
Chris Mason36e39c42011-03-12 07:08:42 -05004616 loops++;
Josef Bacikf104d042011-10-14 13:56:58 -04004617 if (wait_ordered && !trans) {
Miao Xieb0244192013-11-04 23:13:25 +08004618 btrfs_wait_ordered_roots(root->fs_info, items);
Josef Bacikf104d042011-10-14 13:56:58 -04004619 } else {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004620 time_left = schedule_timeout_killable(1);
Josef Bacikf104d042011-10-14 13:56:58 -04004621 if (time_left)
4622 break;
4623 }
Miao Xie963d6782013-01-29 10:10:51 +00004624 delalloc_bytes = percpu_counter_sum_positive(
4625 &root->fs_info->delalloc_bytes);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004626 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04004627}
4628
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004629/**
Josef Bacik663350a2011-11-03 22:54:25 -04004630 * maybe_commit_transaction - possibly commit the transaction if its ok to
4631 * @root - the root we're allocating for
4632 * @bytes - the number of bytes we want to reserve
4633 * @force - force the commit
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004634 *
Josef Bacik663350a2011-11-03 22:54:25 -04004635 * This will check to make sure that committing the transaction will actually
4636 * get us somewhere and then commit the transaction if it does. Otherwise it
4637 * will return -ENOSPC.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004638 */
Josef Bacik663350a2011-11-03 22:54:25 -04004639static int may_commit_transaction(struct btrfs_root *root,
4640 struct btrfs_space_info *space_info,
4641 u64 bytes, int force)
4642{
4643 struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv;
4644 struct btrfs_trans_handle *trans;
4645
4646 trans = (struct btrfs_trans_handle *)current->journal_info;
4647 if (trans)
4648 return -EAGAIN;
4649
4650 if (force)
4651 goto commit;
4652
4653 /* See if there is enough pinned space to make this reservation */
Josef Bacikb150a4f2013-06-19 15:00:04 -04004654 if (percpu_counter_compare(&space_info->total_bytes_pinned,
Miao Xie0424c542014-03-06 13:54:59 +08004655 bytes) >= 0)
Josef Bacik663350a2011-11-03 22:54:25 -04004656 goto commit;
Josef Bacik663350a2011-11-03 22:54:25 -04004657
4658 /*
4659 * See if there is some space in the delayed insertion reservation for
4660 * this reservation.
4661 */
4662 if (space_info != delayed_rsv->space_info)
4663 return -ENOSPC;
4664
4665 spin_lock(&delayed_rsv->lock);
Josef Bacikb150a4f2013-06-19 15:00:04 -04004666 if (percpu_counter_compare(&space_info->total_bytes_pinned,
4667 bytes - delayed_rsv->size) >= 0) {
Josef Bacik663350a2011-11-03 22:54:25 -04004668 spin_unlock(&delayed_rsv->lock);
4669 return -ENOSPC;
4670 }
4671 spin_unlock(&delayed_rsv->lock);
4672
4673commit:
4674 trans = btrfs_join_transaction(root);
4675 if (IS_ERR(trans))
4676 return -ENOSPC;
4677
4678 return btrfs_commit_transaction(trans, root);
4679}
4680
Josef Bacik96c3f432012-06-21 14:05:49 -04004681enum flush_state {
Josef Bacik67b0fd62012-09-24 13:42:00 -04004682 FLUSH_DELAYED_ITEMS_NR = 1,
4683 FLUSH_DELAYED_ITEMS = 2,
4684 FLUSH_DELALLOC = 3,
4685 FLUSH_DELALLOC_WAIT = 4,
Josef Bacikea658ba2012-09-11 16:57:25 -04004686 ALLOC_CHUNK = 5,
4687 COMMIT_TRANS = 6,
Josef Bacik96c3f432012-06-21 14:05:49 -04004688};
4689
4690static int flush_space(struct btrfs_root *root,
4691 struct btrfs_space_info *space_info, u64 num_bytes,
4692 u64 orig_bytes, int state)
4693{
4694 struct btrfs_trans_handle *trans;
4695 int nr;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004696 int ret = 0;
Josef Bacik96c3f432012-06-21 14:05:49 -04004697
4698 switch (state) {
Josef Bacik96c3f432012-06-21 14:05:49 -04004699 case FLUSH_DELAYED_ITEMS_NR:
4700 case FLUSH_DELAYED_ITEMS:
Miao Xie18cd8ea2013-11-04 23:13:22 +08004701 if (state == FLUSH_DELAYED_ITEMS_NR)
4702 nr = calc_reclaim_items_nr(root, num_bytes) * 2;
4703 else
Josef Bacik96c3f432012-06-21 14:05:49 -04004704 nr = -1;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004705
Josef Bacik96c3f432012-06-21 14:05:49 -04004706 trans = btrfs_join_transaction(root);
4707 if (IS_ERR(trans)) {
4708 ret = PTR_ERR(trans);
4709 break;
4710 }
4711 ret = btrfs_run_delayed_items_nr(trans, root, nr);
4712 btrfs_end_transaction(trans, root);
4713 break;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004714 case FLUSH_DELALLOC:
4715 case FLUSH_DELALLOC_WAIT:
Miao Xie24af7dd2014-03-06 13:55:00 +08004716 shrink_delalloc(root, num_bytes * 2, orig_bytes,
Josef Bacik67b0fd62012-09-24 13:42:00 -04004717 state == FLUSH_DELALLOC_WAIT);
4718 break;
Josef Bacikea658ba2012-09-11 16:57:25 -04004719 case ALLOC_CHUNK:
4720 trans = btrfs_join_transaction(root);
4721 if (IS_ERR(trans)) {
4722 ret = PTR_ERR(trans);
4723 break;
4724 }
4725 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Josef Bacikea658ba2012-09-11 16:57:25 -04004726 btrfs_get_alloc_profile(root, 0),
4727 CHUNK_ALLOC_NO_FORCE);
4728 btrfs_end_transaction(trans, root);
4729 if (ret == -ENOSPC)
4730 ret = 0;
4731 break;
Josef Bacik96c3f432012-06-21 14:05:49 -04004732 case COMMIT_TRANS:
4733 ret = may_commit_transaction(root, space_info, orig_bytes, 0);
4734 break;
4735 default:
4736 ret = -ENOSPC;
4737 break;
4738 }
4739
4740 return ret;
4741}
Miao Xie21c7e752014-05-13 17:29:04 -07004742
4743static inline u64
4744btrfs_calc_reclaim_metadata_size(struct btrfs_root *root,
4745 struct btrfs_space_info *space_info)
4746{
4747 u64 used;
4748 u64 expected;
4749 u64 to_reclaim;
4750
Byongho Leeee221842015-12-15 01:42:10 +09004751 to_reclaim = min_t(u64, num_online_cpus() * SZ_1M, SZ_16M);
Miao Xie21c7e752014-05-13 17:29:04 -07004752 spin_lock(&space_info->lock);
4753 if (can_overcommit(root, space_info, to_reclaim,
4754 BTRFS_RESERVE_FLUSH_ALL)) {
4755 to_reclaim = 0;
4756 goto out;
4757 }
4758
4759 used = space_info->bytes_used + space_info->bytes_reserved +
4760 space_info->bytes_pinned + space_info->bytes_readonly +
4761 space_info->bytes_may_use;
Byongho Leeee221842015-12-15 01:42:10 +09004762 if (can_overcommit(root, space_info, SZ_1M, BTRFS_RESERVE_FLUSH_ALL))
Miao Xie21c7e752014-05-13 17:29:04 -07004763 expected = div_factor_fine(space_info->total_bytes, 95);
4764 else
4765 expected = div_factor_fine(space_info->total_bytes, 90);
4766
4767 if (used > expected)
4768 to_reclaim = used - expected;
4769 else
4770 to_reclaim = 0;
4771 to_reclaim = min(to_reclaim, space_info->bytes_may_use +
4772 space_info->bytes_reserved);
4773out:
4774 spin_unlock(&space_info->lock);
4775
4776 return to_reclaim;
4777}
4778
4779static inline int need_do_async_reclaim(struct btrfs_space_info *space_info,
4780 struct btrfs_fs_info *fs_info, u64 used)
4781{
Josef Bacik365c5312015-02-18 13:58:15 -08004782 u64 thresh = div_factor_fine(space_info->total_bytes, 98);
4783
4784 /* If we're just plain full then async reclaim just slows us down. */
4785 if (space_info->bytes_used >= thresh)
4786 return 0;
4787
4788 return (used >= thresh && !btrfs_fs_closing(fs_info) &&
Miao Xie21c7e752014-05-13 17:29:04 -07004789 !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state));
4790}
4791
4792static int btrfs_need_do_async_reclaim(struct btrfs_space_info *space_info,
Liu Bo25ce4592014-09-10 12:58:50 +08004793 struct btrfs_fs_info *fs_info,
4794 int flush_state)
Miao Xie21c7e752014-05-13 17:29:04 -07004795{
4796 u64 used;
4797
4798 spin_lock(&space_info->lock);
Liu Bo25ce4592014-09-10 12:58:50 +08004799 /*
4800 * We run out of space and have not got any free space via flush_space,
4801 * so don't bother doing async reclaim.
4802 */
4803 if (flush_state > COMMIT_TRANS && space_info->full) {
4804 spin_unlock(&space_info->lock);
4805 return 0;
4806 }
4807
Miao Xie21c7e752014-05-13 17:29:04 -07004808 used = space_info->bytes_used + space_info->bytes_reserved +
4809 space_info->bytes_pinned + space_info->bytes_readonly +
4810 space_info->bytes_may_use;
4811 if (need_do_async_reclaim(space_info, fs_info, used)) {
4812 spin_unlock(&space_info->lock);
4813 return 1;
4814 }
4815 spin_unlock(&space_info->lock);
4816
4817 return 0;
4818}
4819
4820static void btrfs_async_reclaim_metadata_space(struct work_struct *work)
4821{
4822 struct btrfs_fs_info *fs_info;
4823 struct btrfs_space_info *space_info;
4824 u64 to_reclaim;
4825 int flush_state;
4826
4827 fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work);
4828 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4829
4830 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root,
4831 space_info);
4832 if (!to_reclaim)
4833 return;
4834
4835 flush_state = FLUSH_DELAYED_ITEMS_NR;
4836 do {
4837 flush_space(fs_info->fs_root, space_info, to_reclaim,
4838 to_reclaim, flush_state);
4839 flush_state++;
Liu Bo25ce4592014-09-10 12:58:50 +08004840 if (!btrfs_need_do_async_reclaim(space_info, fs_info,
4841 flush_state))
Miao Xie21c7e752014-05-13 17:29:04 -07004842 return;
Josef Bacik365c5312015-02-18 13:58:15 -08004843 } while (flush_state < COMMIT_TRANS);
Miao Xie21c7e752014-05-13 17:29:04 -07004844}
4845
4846void btrfs_init_async_reclaim_work(struct work_struct *work)
4847{
4848 INIT_WORK(work, btrfs_async_reclaim_metadata_space);
4849}
4850
Josef Bacik663350a2011-11-03 22:54:25 -04004851/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004852 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
4853 * @root - the root we're allocating for
4854 * @block_rsv - the block_rsv we're allocating for
4855 * @orig_bytes - the number of bytes we want
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04004856 * @flush - whether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004857 *
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004858 * This will reserve orgi_bytes number of bytes from the space info associated
4859 * with the block_rsv. If there is not enough space it will make an attempt to
4860 * flush out space to make room. It will do this by flushing delalloc if
4861 * possible or committing the transaction. If flush is 0 then no attempts to
4862 * regain reservations will be made and this will fail if there is not enough
4863 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004864 */
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004865static int reserve_metadata_bytes(struct btrfs_root *root,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004866 struct btrfs_block_rsv *block_rsv,
Miao Xie08e007d2012-10-16 11:33:38 +00004867 u64 orig_bytes,
4868 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004869{
4870 struct btrfs_space_info *space_info = block_rsv->space_info;
Josef Bacik2bf64752011-09-26 17:12:22 -04004871 u64 used;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004872 u64 num_bytes = orig_bytes;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004873 int flush_state = FLUSH_DELAYED_ITEMS_NR;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004874 int ret = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004875 bool flushing = false;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004876
4877again:
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004878 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004879 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004880 /*
Miao Xie08e007d2012-10-16 11:33:38 +00004881 * We only want to wait if somebody other than us is flushing and we
4882 * are actually allowed to flush all things.
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004883 */
Miao Xie08e007d2012-10-16 11:33:38 +00004884 while (flush == BTRFS_RESERVE_FLUSH_ALL && !flushing &&
4885 space_info->flush) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004886 spin_unlock(&space_info->lock);
4887 /*
4888 * If we have a trans handle we can't wait because the flusher
4889 * may have to commit the transaction, which would mean we would
4890 * deadlock since we are waiting for the flusher to finish, but
4891 * hold the current transaction open.
4892 */
Josef Bacik663350a2011-11-03 22:54:25 -04004893 if (current->journal_info)
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004894 return -EAGAIN;
Arne Jansenb9688bb2012-04-18 10:27:16 +02004895 ret = wait_event_killable(space_info->wait, !space_info->flush);
4896 /* Must have been killed, return */
4897 if (ret)
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004898 return -EINTR;
4899
4900 spin_lock(&space_info->lock);
4901 }
4902
4903 ret = -ENOSPC;
Josef Bacik2bf64752011-09-26 17:12:22 -04004904 used = space_info->bytes_used + space_info->bytes_reserved +
4905 space_info->bytes_pinned + space_info->bytes_readonly +
4906 space_info->bytes_may_use;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004907
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004908 /*
4909 * The idea here is that we've not already over-reserved the block group
4910 * then we can go ahead and save our reservation first and then start
4911 * flushing if we need to. Otherwise if we've already overcommitted
4912 * lets start flushing stuff first and then come back and try to make
4913 * our reservation.
4914 */
Josef Bacik2bf64752011-09-26 17:12:22 -04004915 if (used <= space_info->total_bytes) {
4916 if (used + orig_bytes <= space_info->total_bytes) {
Josef Bacikfb25e912011-07-26 17:00:46 -04004917 space_info->bytes_may_use += orig_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004918 trace_btrfs_space_reservation(root->fs_info,
Liu Bo2bcc0322012-03-29 09:57:44 -04004919 "space_info", space_info->flags, orig_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004920 ret = 0;
4921 } else {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004922 /*
4923 * Ok set num_bytes to orig_bytes since we aren't
4924 * overocmmitted, this way we only try and reclaim what
4925 * we need.
4926 */
4927 num_bytes = orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004928 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004929 } else {
4930 /*
4931 * Ok we're over committed, set num_bytes to the overcommitted
4932 * amount plus the amount of bytes that we need for this
4933 * reservation.
4934 */
Josef Bacik2bf64752011-09-26 17:12:22 -04004935 num_bytes = used - space_info->total_bytes +
Josef Bacik96c3f432012-06-21 14:05:49 -04004936 (orig_bytes * 2);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004937 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004938
Josef Bacik44734ed2012-09-28 16:04:19 -04004939 if (ret && can_overcommit(root, space_info, orig_bytes, flush)) {
4940 space_info->bytes_may_use += orig_bytes;
4941 trace_btrfs_space_reservation(root->fs_info, "space_info",
4942 space_info->flags, orig_bytes,
4943 1);
4944 ret = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04004945 }
4946
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004947 /*
4948 * Couldn't make our reservation, save our place so while we're trying
4949 * to reclaim space we can actually use it instead of somebody else
4950 * stealing it from us.
Miao Xie08e007d2012-10-16 11:33:38 +00004951 *
4952 * We make the other tasks wait for the flush only when we can flush
4953 * all things.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004954 */
Josef Bacik72bcd992012-12-18 15:16:34 -05004955 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004956 flushing = true;
4957 space_info->flush = 1;
Miao Xie21c7e752014-05-13 17:29:04 -07004958 } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
4959 used += orig_bytes;
Josef Bacikf6acfd52014-09-18 11:27:17 -04004960 /*
4961 * We will do the space reservation dance during log replay,
4962 * which means we won't have fs_info->fs_root set, so don't do
4963 * the async reclaim as we will panic.
4964 */
4965 if (!root->fs_info->log_root_recovering &&
4966 need_do_async_reclaim(space_info, root->fs_info, used) &&
Miao Xie21c7e752014-05-13 17:29:04 -07004967 !work_busy(&root->fs_info->async_reclaim_work))
4968 queue_work(system_unbound_wq,
4969 &root->fs_info->async_reclaim_work);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004970 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004971 spin_unlock(&space_info->lock);
4972
Miao Xie08e007d2012-10-16 11:33:38 +00004973 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004974 goto out;
4975
Josef Bacik96c3f432012-06-21 14:05:49 -04004976 ret = flush_space(root, space_info, num_bytes, orig_bytes,
4977 flush_state);
4978 flush_state++;
Miao Xie08e007d2012-10-16 11:33:38 +00004979
4980 /*
4981 * If we are FLUSH_LIMIT, we can not flush delalloc, or the deadlock
4982 * would happen. So skip delalloc flush.
4983 */
4984 if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4985 (flush_state == FLUSH_DELALLOC ||
4986 flush_state == FLUSH_DELALLOC_WAIT))
4987 flush_state = ALLOC_CHUNK;
4988
Josef Bacik96c3f432012-06-21 14:05:49 -04004989 if (!ret)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004990 goto again;
Miao Xie08e007d2012-10-16 11:33:38 +00004991 else if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4992 flush_state < COMMIT_TRANS)
4993 goto again;
4994 else if (flush == BTRFS_RESERVE_FLUSH_ALL &&
4995 flush_state <= COMMIT_TRANS)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004996 goto again;
4997
4998out:
Josef Bacik5d803662013-02-07 16:06:02 -05004999 if (ret == -ENOSPC &&
5000 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
5001 struct btrfs_block_rsv *global_rsv =
5002 &root->fs_info->global_block_rsv;
5003
5004 if (block_rsv != global_rsv &&
5005 !block_rsv_use_bytes(global_rsv, orig_bytes))
5006 ret = 0;
5007 }
Jeff Mahoneycab45e22013-10-16 16:27:01 -04005008 if (ret == -ENOSPC)
5009 trace_btrfs_space_reservation(root->fs_info,
5010 "space_info:enospc",
5011 space_info->flags, orig_bytes, 1);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04005012 if (flushing) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005013 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04005014 space_info->flush = 0;
5015 wake_up_all(&space_info->wait);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005016 spin_unlock(&space_info->lock);
5017 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005018 return ret;
5019}
5020
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005021static struct btrfs_block_rsv *get_block_rsv(
5022 const struct btrfs_trans_handle *trans,
5023 const struct btrfs_root *root)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005024{
Josef Bacik4c13d752011-08-30 11:31:29 -04005025 struct btrfs_block_rsv *block_rsv = NULL;
5026
Alexandru Moisee9cf4392015-09-09 00:18:50 +00005027 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
5028 (root == root->fs_info->csum_root && trans->adding_csums) ||
5029 (root == root->fs_info->uuid_root))
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02005030 block_rsv = trans->block_rsv;
5031
Josef Bacik4c13d752011-08-30 11:31:29 -04005032 if (!block_rsv)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005033 block_rsv = root->block_rsv;
5034
5035 if (!block_rsv)
5036 block_rsv = &root->fs_info->empty_block_rsv;
5037
5038 return block_rsv;
5039}
5040
5041static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
5042 u64 num_bytes)
5043{
5044 int ret = -ENOSPC;
5045 spin_lock(&block_rsv->lock);
5046 if (block_rsv->reserved >= num_bytes) {
5047 block_rsv->reserved -= num_bytes;
5048 if (block_rsv->reserved < block_rsv->size)
5049 block_rsv->full = 0;
5050 ret = 0;
5051 }
5052 spin_unlock(&block_rsv->lock);
5053 return ret;
5054}
5055
5056static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
5057 u64 num_bytes, int update_size)
5058{
5059 spin_lock(&block_rsv->lock);
5060 block_rsv->reserved += num_bytes;
5061 if (update_size)
5062 block_rsv->size += num_bytes;
5063 else if (block_rsv->reserved >= block_rsv->size)
5064 block_rsv->full = 1;
5065 spin_unlock(&block_rsv->lock);
5066}
5067
Josef Bacikd52be812013-05-29 14:54:47 -04005068int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
5069 struct btrfs_block_rsv *dest, u64 num_bytes,
5070 int min_factor)
5071{
5072 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5073 u64 min_bytes;
5074
5075 if (global_rsv->space_info != dest->space_info)
5076 return -ENOSPC;
5077
5078 spin_lock(&global_rsv->lock);
5079 min_bytes = div_factor(global_rsv->size, min_factor);
5080 if (global_rsv->reserved < min_bytes + num_bytes) {
5081 spin_unlock(&global_rsv->lock);
5082 return -ENOSPC;
5083 }
5084 global_rsv->reserved -= num_bytes;
5085 if (global_rsv->reserved < global_rsv->size)
5086 global_rsv->full = 0;
5087 spin_unlock(&global_rsv->lock);
5088
5089 block_rsv_add_bytes(dest, num_bytes, 1);
5090 return 0;
5091}
5092
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005093static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
5094 struct btrfs_block_rsv *block_rsv,
David Sterba62a45b62011-04-20 15:52:26 +02005095 struct btrfs_block_rsv *dest, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005096{
5097 struct btrfs_space_info *space_info = block_rsv->space_info;
5098
5099 spin_lock(&block_rsv->lock);
5100 if (num_bytes == (u64)-1)
5101 num_bytes = block_rsv->size;
5102 block_rsv->size -= num_bytes;
5103 if (block_rsv->reserved >= block_rsv->size) {
5104 num_bytes = block_rsv->reserved - block_rsv->size;
5105 block_rsv->reserved = block_rsv->size;
5106 block_rsv->full = 1;
5107 } else {
5108 num_bytes = 0;
5109 }
5110 spin_unlock(&block_rsv->lock);
5111
5112 if (num_bytes > 0) {
5113 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00005114 spin_lock(&dest->lock);
5115 if (!dest->full) {
5116 u64 bytes_to_add;
5117
5118 bytes_to_add = dest->size - dest->reserved;
5119 bytes_to_add = min(num_bytes, bytes_to_add);
5120 dest->reserved += bytes_to_add;
5121 if (dest->reserved >= dest->size)
5122 dest->full = 1;
5123 num_bytes -= bytes_to_add;
5124 }
5125 spin_unlock(&dest->lock);
5126 }
5127 if (num_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005128 spin_lock(&space_info->lock);
Josef Bacikfb25e912011-07-26 17:00:46 -04005129 space_info->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005130 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04005131 space_info->flags, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005132 spin_unlock(&space_info->lock);
5133 }
5134 }
5135}
5136
5137static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src,
5138 struct btrfs_block_rsv *dst, u64 num_bytes)
5139{
5140 int ret;
5141
5142 ret = block_rsv_use_bytes(src, num_bytes);
5143 if (ret)
5144 return ret;
5145
5146 block_rsv_add_bytes(dst, num_bytes, 1);
5147 return 0;
5148}
5149
Miao Xie66d8f3d2012-09-06 04:02:28 -06005150void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005151{
5152 memset(rsv, 0, sizeof(*rsv));
5153 spin_lock_init(&rsv->lock);
Miao Xie66d8f3d2012-09-06 04:02:28 -06005154 rsv->type = type;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005155}
5156
Miao Xie66d8f3d2012-09-06 04:02:28 -06005157struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root,
5158 unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005159{
5160 struct btrfs_block_rsv *block_rsv;
5161 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005162
5163 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
5164 if (!block_rsv)
5165 return NULL;
5166
Miao Xie66d8f3d2012-09-06 04:02:28 -06005167 btrfs_init_block_rsv(block_rsv, type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005168 block_rsv->space_info = __find_space_info(fs_info,
5169 BTRFS_BLOCK_GROUP_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005170 return block_rsv;
5171}
5172
5173void btrfs_free_block_rsv(struct btrfs_root *root,
5174 struct btrfs_block_rsv *rsv)
5175{
Josef Bacik2aaa6652012-08-29 14:27:18 -04005176 if (!rsv)
5177 return;
Josef Bacikdabdb642011-08-08 12:50:18 -04005178 btrfs_block_rsv_release(root, rsv, (u64)-1);
5179 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005180}
5181
Chris Masoncdfb0802015-04-06 18:17:00 -07005182void __btrfs_free_block_rsv(struct btrfs_block_rsv *rsv)
5183{
5184 kfree(rsv);
5185}
5186
Miao Xie08e007d2012-10-16 11:33:38 +00005187int btrfs_block_rsv_add(struct btrfs_root *root,
5188 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
5189 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005190{
5191 int ret;
5192
5193 if (num_bytes == 0)
5194 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005195
Miao Xie61b520a2011-11-10 20:45:05 -05005196 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005197 if (!ret) {
5198 block_rsv_add_bytes(block_rsv, num_bytes, 1);
5199 return 0;
5200 }
5201
Yan, Zhengf0486c62010-05-16 10:46:25 -04005202 return ret;
5203}
5204
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005205int btrfs_block_rsv_check(struct btrfs_root *root,
Josef Bacik36ba0222011-10-18 12:15:48 -04005206 struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005207{
5208 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005209 int ret = -ENOSPC;
5210
5211 if (!block_rsv)
5212 return 0;
5213
5214 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04005215 num_bytes = div_factor(block_rsv->size, min_factor);
5216 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005217 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005218 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005219
Josef Bacik36ba0222011-10-18 12:15:48 -04005220 return ret;
5221}
5222
Miao Xie08e007d2012-10-16 11:33:38 +00005223int btrfs_block_rsv_refill(struct btrfs_root *root,
5224 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
5225 enum btrfs_reserve_flush_enum flush)
Josef Bacik36ba0222011-10-18 12:15:48 -04005226{
5227 u64 num_bytes = 0;
5228 int ret = -ENOSPC;
5229
5230 if (!block_rsv)
5231 return 0;
5232
5233 spin_lock(&block_rsv->lock);
5234 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04005235 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005236 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04005237 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04005238 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005239 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04005240
Yan, Zhengf0486c62010-05-16 10:46:25 -04005241 if (!ret)
5242 return 0;
5243
Miao Xieaa38a712011-11-18 17:43:00 +08005244 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Josef Bacikdabdb642011-08-08 12:50:18 -04005245 if (!ret) {
5246 block_rsv_add_bytes(block_rsv, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005247 return 0;
5248 }
5249
Josef Bacik13553e52011-08-08 13:33:21 -04005250 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005251}
5252
5253int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv,
5254 struct btrfs_block_rsv *dst_rsv,
5255 u64 num_bytes)
5256{
5257 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
5258}
5259
5260void btrfs_block_rsv_release(struct btrfs_root *root,
5261 struct btrfs_block_rsv *block_rsv,
5262 u64 num_bytes)
5263{
5264 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Liu Bo17504582013-12-29 21:44:50 +08005265 if (global_rsv == block_rsv ||
Yan, Zhengf0486c62010-05-16 10:46:25 -04005266 block_rsv->space_info != global_rsv->space_info)
5267 global_rsv = NULL;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005268 block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv,
5269 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005270}
5271
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005272/*
5273 * helper to calculate size of global block reservation.
5274 * the desired value is sum of space used by extent tree,
5275 * checksum tree and root tree
5276 */
5277static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info)
5278{
5279 struct btrfs_space_info *sinfo;
5280 u64 num_bytes;
5281 u64 meta_used;
5282 u64 data_used;
David Sterba6c417612011-04-13 15:41:04 +02005283 int csum_size = btrfs_super_csum_size(fs_info->super_copy);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005284
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005285 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA);
5286 spin_lock(&sinfo->lock);
5287 data_used = sinfo->bytes_used;
5288 spin_unlock(&sinfo->lock);
5289
5290 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
5291 spin_lock(&sinfo->lock);
Josef Bacik6d487552010-10-15 15:13:32 -04005292 if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA)
5293 data_used = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005294 meta_used = sinfo->bytes_used;
5295 spin_unlock(&sinfo->lock);
5296
5297 num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) *
5298 csum_size * 2;
David Sterbaf8c269d2015-01-16 17:21:12 +01005299 num_bytes += div_u64(data_used + meta_used, 50);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005300
5301 if (num_bytes * 3 > meta_used)
David Sterbaf8c269d2015-01-16 17:21:12 +01005302 num_bytes = div_u64(meta_used, 3);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005303
David Sterba707e8a02014-06-04 19:22:26 +02005304 return ALIGN(num_bytes, fs_info->extent_root->nodesize << 10);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005305}
5306
5307static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
5308{
5309 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
5310 struct btrfs_space_info *sinfo = block_rsv->space_info;
5311 u64 num_bytes;
5312
5313 num_bytes = calc_global_metadata_size(fs_info);
5314
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005315 spin_lock(&sinfo->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005316 spin_lock(&block_rsv->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005317
Byongho Leeee221842015-12-15 01:42:10 +09005318 block_rsv->size = min_t(u64, num_bytes, SZ_512M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005319
5320 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
Josef Bacik6d487552010-10-15 15:13:32 -04005321 sinfo->bytes_reserved + sinfo->bytes_readonly +
5322 sinfo->bytes_may_use;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005323
5324 if (sinfo->total_bytes > num_bytes) {
5325 num_bytes = sinfo->total_bytes - num_bytes;
5326 block_rsv->reserved += num_bytes;
Josef Bacikfb25e912011-07-26 17:00:46 -04005327 sinfo->bytes_may_use += num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005328 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04005329 sinfo->flags, num_bytes, 1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005330 }
5331
5332 if (block_rsv->reserved >= block_rsv->size) {
5333 num_bytes = block_rsv->reserved - block_rsv->size;
Josef Bacikfb25e912011-07-26 17:00:46 -04005334 sinfo->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005335 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04005336 sinfo->flags, num_bytes, 0);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005337 block_rsv->reserved = block_rsv->size;
5338 block_rsv->full = 1;
5339 }
David Sterba182608c2011-05-05 13:13:16 +02005340
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005341 spin_unlock(&block_rsv->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005342 spin_unlock(&sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005343}
5344
Yan, Zhengf0486c62010-05-16 10:46:25 -04005345static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
5346{
5347 struct btrfs_space_info *space_info;
5348
5349 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
5350 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005351
5352 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005353 fs_info->global_block_rsv.space_info = space_info;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005354 fs_info->delalloc_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005355 fs_info->trans_block_rsv.space_info = space_info;
5356 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04005357 fs_info->delayed_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005358
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005359 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
5360 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
5361 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
5362 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Stefan Behrens3a6cad92013-05-16 14:48:19 +00005363 if (fs_info->quota_root)
5364 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005365 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005366
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005367 update_global_block_rsv(fs_info);
5368}
5369
5370static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
5371{
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005372 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
5373 (u64)-1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005374 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
5375 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
5376 WARN_ON(fs_info->trans_block_rsv.size > 0);
5377 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
5378 WARN_ON(fs_info->chunk_block_rsv.size > 0);
5379 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04005380 WARN_ON(fs_info->delayed_block_rsv.size > 0);
5381 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04005382}
5383
Yan, Zhenga22285a2010-05-16 10:48:46 -04005384void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
5385 struct btrfs_root *root)
5386{
Josef Bacik0e721102012-06-26 16:13:18 -04005387 if (!trans->block_rsv)
5388 return;
5389
Yan, Zhenga22285a2010-05-16 10:48:46 -04005390 if (!trans->bytes_reserved)
5391 return;
5392
Chris Masone77266e2012-02-24 10:39:05 -05005393 trace_btrfs_space_reservation(root->fs_info, "transaction",
Liu Bo2bcc0322012-03-29 09:57:44 -04005394 trans->transid, trans->bytes_reserved, 0);
Josef Bacikb24e03d2011-10-14 14:40:17 -04005395 btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005396 trans->bytes_reserved = 0;
5397}
5398
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005399/*
5400 * To be called after all the new block groups attached to the transaction
5401 * handle have been created (btrfs_create_pending_block_groups()).
5402 */
5403void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
5404{
5405 struct btrfs_fs_info *fs_info = trans->root->fs_info;
5406
5407 if (!trans->chunk_bytes_reserved)
5408 return;
5409
5410 WARN_ON_ONCE(!list_empty(&trans->new_bgs));
5411
5412 block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL,
5413 trans->chunk_bytes_reserved);
5414 trans->chunk_bytes_reserved = 0;
5415}
5416
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005417/* Can only return 0 or -ENOSPC */
Yan, Zhengd68fc572010-05-16 10:49:58 -04005418int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
5419 struct inode *inode)
5420{
5421 struct btrfs_root *root = BTRFS_I(inode)->root;
5422 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
5423 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
5424
5425 /*
Josef Bacikfcb80c22011-05-03 10:40:22 -04005426 * We need to hold space in order to delete our orphan item once we've
5427 * added it, so this takes the reservation so we can release it later
5428 * when we are truly done with the orphan item.
Yan, Zhengd68fc572010-05-16 10:49:58 -04005429 */
Chris Masonff5714c2011-05-28 07:00:39 -04005430 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005431 trace_btrfs_space_reservation(root->fs_info, "orphan",
5432 btrfs_ino(inode), num_bytes, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04005433 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
5434}
5435
5436void btrfs_orphan_release_metadata(struct inode *inode)
5437{
5438 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonff5714c2011-05-28 07:00:39 -04005439 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005440 trace_btrfs_space_reservation(root->fs_info, "orphan",
5441 btrfs_ino(inode), num_bytes, 0);
Yan, Zhengd68fc572010-05-16 10:49:58 -04005442 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
5443}
5444
Miao Xied5c12072013-02-28 10:04:33 +00005445/*
5446 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
5447 * root: the root of the parent directory
5448 * rsv: block reservation
5449 * items: the number of items that we need do reservation
5450 * qgroup_reserved: used to return the reserved size in qgroup
5451 *
5452 * This function is used to reserve the space for snapshot/subvolume
5453 * creation and deletion. Those operations are different with the
5454 * common file/directory operations, they change two fs/file trees
5455 * and root tree, the number of items that the qgroup reserves is
5456 * different with the free space reservation. So we can not use
5457 * the space reseravtion mechanism in start_transaction().
5458 */
5459int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
5460 struct btrfs_block_rsv *rsv,
5461 int items,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005462 u64 *qgroup_reserved,
5463 bool use_global_rsv)
Yan, Zhenga22285a2010-05-16 10:48:46 -04005464{
Miao Xied5c12072013-02-28 10:04:33 +00005465 u64 num_bytes;
5466 int ret;
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005467 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Miao Xied5c12072013-02-28 10:04:33 +00005468
5469 if (root->fs_info->quota_enabled) {
5470 /* One for parent inode, two for dir entries */
David Sterba707e8a02014-06-04 19:22:26 +02005471 num_bytes = 3 * root->nodesize;
Qu Wenruo71741092015-09-08 17:22:41 +08005472 ret = btrfs_qgroup_reserve_meta(root, num_bytes);
Miao Xied5c12072013-02-28 10:04:33 +00005473 if (ret)
5474 return ret;
5475 } else {
5476 num_bytes = 0;
5477 }
5478
5479 *qgroup_reserved = num_bytes;
5480
5481 num_bytes = btrfs_calc_trans_metadata_size(root, items);
5482 rsv->space_info = __find_space_info(root->fs_info,
5483 BTRFS_BLOCK_GROUP_METADATA);
5484 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
5485 BTRFS_RESERVE_FLUSH_ALL);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005486
5487 if (ret == -ENOSPC && use_global_rsv)
5488 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes);
5489
Qu Wenruo71741092015-09-08 17:22:41 +08005490 if (ret && *qgroup_reserved)
5491 btrfs_qgroup_free_meta(root, *qgroup_reserved);
Miao Xied5c12072013-02-28 10:04:33 +00005492
5493 return ret;
5494}
5495
5496void btrfs_subvolume_release_metadata(struct btrfs_root *root,
5497 struct btrfs_block_rsv *rsv,
5498 u64 qgroup_reserved)
5499{
5500 btrfs_block_rsv_release(root, rsv, (u64)-1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005501}
5502
Josef Bacik7709cde2011-08-04 10:25:02 -04005503/**
5504 * drop_outstanding_extent - drop an outstanding extent
5505 * @inode: the inode we're dropping the extent for
Josef Bacikdcab6a32015-02-11 15:08:59 -05005506 * @num_bytes: the number of bytes we're relaseing.
Josef Bacik7709cde2011-08-04 10:25:02 -04005507 *
5508 * This is called when we are freeing up an outstanding extent, either called
5509 * after an error or after an extent is written. This will return the number of
5510 * reserved extents that need to be freed. This must be called with
5511 * BTRFS_I(inode)->lock held.
5512 */
Josef Bacikdcab6a32015-02-11 15:08:59 -05005513static unsigned drop_outstanding_extent(struct inode *inode, u64 num_bytes)
Josef Bacik9e0baf62011-07-15 15:16:44 +00005514{
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005515 unsigned drop_inode_space = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005516 unsigned dropped_extents = 0;
Josef Bacikdcab6a32015-02-11 15:08:59 -05005517 unsigned num_extents = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005518
Josef Bacikdcab6a32015-02-11 15:08:59 -05005519 num_extents = (unsigned)div64_u64(num_bytes +
5520 BTRFS_MAX_EXTENT_SIZE - 1,
5521 BTRFS_MAX_EXTENT_SIZE);
5522 ASSERT(num_extents);
5523 ASSERT(BTRFS_I(inode)->outstanding_extents >= num_extents);
5524 BTRFS_I(inode)->outstanding_extents -= num_extents;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005525
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005526 if (BTRFS_I(inode)->outstanding_extents == 0 &&
Josef Bacik72ac3c02012-05-23 14:13:11 -04005527 test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5528 &BTRFS_I(inode)->runtime_flags))
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005529 drop_inode_space = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005530
Josef Bacik9e0baf62011-07-15 15:16:44 +00005531 /*
5532 * If we have more or the same amount of outsanding extents than we have
5533 * reserved then we need to leave the reserved extents count alone.
5534 */
5535 if (BTRFS_I(inode)->outstanding_extents >=
5536 BTRFS_I(inode)->reserved_extents)
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005537 return drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005538
5539 dropped_extents = BTRFS_I(inode)->reserved_extents -
5540 BTRFS_I(inode)->outstanding_extents;
5541 BTRFS_I(inode)->reserved_extents -= dropped_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005542 return dropped_extents + drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005543}
5544
Josef Bacik7709cde2011-08-04 10:25:02 -04005545/**
5546 * calc_csum_metadata_size - return the amount of metada space that must be
5547 * reserved/free'd for the given bytes.
5548 * @inode: the inode we're manipulating
5549 * @num_bytes: the number of bytes in question
5550 * @reserve: 1 if we are reserving space, 0 if we are freeing space
5551 *
5552 * This adjusts the number of csum_bytes in the inode and then returns the
5553 * correct amount of metadata that must either be reserved or freed. We
5554 * calculate how many checksums we can fit into one leaf and then divide the
5555 * number of bytes that will need to be checksumed by this value to figure out
5556 * how many checksums will be required. If we are adding bytes then the number
5557 * may go up and we will return the number of additional bytes that must be
5558 * reserved. If it is going down we will return the number of bytes that must
5559 * be freed.
5560 *
5561 * This must be called with BTRFS_I(inode)->lock held.
5562 */
5563static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes,
5564 int reserve)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005565{
Josef Bacik7709cde2011-08-04 10:25:02 -04005566 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik12621332015-02-03 07:50:16 -08005567 u64 old_csums, num_csums;
Josef Bacik7709cde2011-08-04 10:25:02 -04005568
5569 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM &&
5570 BTRFS_I(inode)->csum_bytes == 0)
5571 return 0;
5572
Chris Mason28f75a02015-02-04 06:59:29 -08005573 old_csums = btrfs_csum_bytes_to_leaves(root, BTRFS_I(inode)->csum_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04005574 if (reserve)
5575 BTRFS_I(inode)->csum_bytes += num_bytes;
5576 else
5577 BTRFS_I(inode)->csum_bytes -= num_bytes;
Chris Mason28f75a02015-02-04 06:59:29 -08005578 num_csums = btrfs_csum_bytes_to_leaves(root, BTRFS_I(inode)->csum_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04005579
5580 /* No change, no need to reserve more */
5581 if (old_csums == num_csums)
5582 return 0;
5583
5584 if (reserve)
5585 return btrfs_calc_trans_metadata_size(root,
5586 num_csums - old_csums);
5587
5588 return btrfs_calc_trans_metadata_size(root, old_csums - num_csums);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005589}
5590
5591int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
5592{
5593 struct btrfs_root *root = BTRFS_I(inode)->root;
5594 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005595 u64 to_reserve = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05005596 u64 csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005597 unsigned nr_extents = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05005598 int extra_reserve = 0;
Miao Xie08e007d2012-10-16 11:33:38 +00005599 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
Jan Schmidteb6b88d2013-01-27 23:26:00 -07005600 int ret = 0;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005601 bool delalloc_lock = true;
Wang Shilong88e081bf2013-03-01 11:36:01 +00005602 u64 to_free = 0;
5603 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005604
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005605 /* If we are a free space inode we need to not flush since we will be in
5606 * the middle of a transaction commit. We also don't need the delalloc
5607 * mutex since we won't race with anybody. We need this mostly to make
5608 * lockdep shut its filthy mouth.
5609 */
5610 if (btrfs_is_free_space_inode(inode)) {
Miao Xie08e007d2012-10-16 11:33:38 +00005611 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005612 delalloc_lock = false;
5613 }
Josef Bacikc09544e2011-08-30 10:19:10 -04005614
Miao Xie08e007d2012-10-16 11:33:38 +00005615 if (flush != BTRFS_RESERVE_NO_FLUSH &&
5616 btrfs_transaction_in_commit(root->fs_info))
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005617 schedule_timeout(1);
5618
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005619 if (delalloc_lock)
5620 mutex_lock(&BTRFS_I(inode)->delalloc_mutex);
5621
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005622 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005623
Josef Bacik9e0baf62011-07-15 15:16:44 +00005624 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik6a41dd02015-03-13 15:12:23 -04005625 nr_extents = (unsigned)div64_u64(num_bytes +
5626 BTRFS_MAX_EXTENT_SIZE - 1,
5627 BTRFS_MAX_EXTENT_SIZE);
5628 BTRFS_I(inode)->outstanding_extents += nr_extents;
5629 nr_extents = 0;
Josef Bacik57a45ced2011-01-25 16:30:38 -05005630
Josef Bacik9e0baf62011-07-15 15:16:44 +00005631 if (BTRFS_I(inode)->outstanding_extents >
Josef Bacik660d3f62011-12-09 11:18:51 -05005632 BTRFS_I(inode)->reserved_extents)
Josef Bacik9e0baf62011-07-15 15:16:44 +00005633 nr_extents = BTRFS_I(inode)->outstanding_extents -
5634 BTRFS_I(inode)->reserved_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005635
5636 /*
5637 * Add an item to reserve for updating the inode when we complete the
5638 * delalloc io.
5639 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04005640 if (!test_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5641 &BTRFS_I(inode)->runtime_flags)) {
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005642 nr_extents++;
Josef Bacik660d3f62011-12-09 11:18:51 -05005643 extra_reserve = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005644 }
5645
5646 to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04005647 to_reserve += calc_csum_metadata_size(inode, num_bytes, 1);
Josef Bacik660d3f62011-12-09 11:18:51 -05005648 csum_bytes = BTRFS_I(inode)->csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005649 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05005650
Wang Shilong88e081bf2013-03-01 11:36:01 +00005651 if (root->fs_info->quota_enabled) {
Qu Wenruo71741092015-09-08 17:22:41 +08005652 ret = btrfs_qgroup_reserve_meta(root,
5653 nr_extents * root->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005654 if (ret)
5655 goto out_fail;
Wang Shilonga9870c02013-03-01 11:33:01 +00005656 }
Arne Jansenc5567232011-09-14 15:44:05 +02005657
Wang Shilong88e081bf2013-03-01 11:36:01 +00005658 ret = reserve_metadata_bytes(root, block_rsv, to_reserve, flush);
5659 if (unlikely(ret)) {
Qu Wenruo71741092015-09-08 17:22:41 +08005660 btrfs_qgroup_free_meta(root, nr_extents * root->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005661 goto out_fail;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005662 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005663
Josef Bacik660d3f62011-12-09 11:18:51 -05005664 spin_lock(&BTRFS_I(inode)->lock);
5665 if (extra_reserve) {
Josef Bacik72ac3c02012-05-23 14:13:11 -04005666 set_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5667 &BTRFS_I(inode)->runtime_flags);
Josef Bacik660d3f62011-12-09 11:18:51 -05005668 nr_extents--;
5669 }
5670 BTRFS_I(inode)->reserved_extents += nr_extents;
5671 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005672
5673 if (delalloc_lock)
5674 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
Josef Bacik660d3f62011-12-09 11:18:51 -05005675
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005676 if (to_reserve)
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05305677 trace_btrfs_space_reservation(root->fs_info, "delalloc",
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005678 btrfs_ino(inode), to_reserve, 1);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005679 block_rsv_add_bytes(block_rsv, to_reserve, 1);
5680
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005681 return 0;
Wang Shilong88e081bf2013-03-01 11:36:01 +00005682
5683out_fail:
5684 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacikdcab6a32015-02-11 15:08:59 -05005685 dropped = drop_outstanding_extent(inode, num_bytes);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005686 /*
5687 * If the inodes csum_bytes is the same as the original
5688 * csum_bytes then we know we haven't raced with any free()ers
5689 * so we can just reduce our inodes csum bytes and carry on.
Wang Shilong88e081bf2013-03-01 11:36:01 +00005690 */
Josef Bacikf4881bc2013-03-25 16:03:35 -04005691 if (BTRFS_I(inode)->csum_bytes == csum_bytes) {
Wang Shilong88e081bf2013-03-01 11:36:01 +00005692 calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacikf4881bc2013-03-25 16:03:35 -04005693 } else {
5694 u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes;
5695 u64 bytes;
5696
5697 /*
5698 * This is tricky, but first we need to figure out how much we
5699 * free'd from any free-ers that occured during this
5700 * reservation, so we reset ->csum_bytes to the csum_bytes
5701 * before we dropped our lock, and then call the free for the
5702 * number of bytes that were freed while we were trying our
5703 * reservation.
5704 */
5705 bytes = csum_bytes - BTRFS_I(inode)->csum_bytes;
5706 BTRFS_I(inode)->csum_bytes = csum_bytes;
5707 to_free = calc_csum_metadata_size(inode, bytes, 0);
5708
5709
5710 /*
5711 * Now we need to see how much we would have freed had we not
5712 * been making this reservation and our ->csum_bytes were not
5713 * artificially inflated.
5714 */
5715 BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes;
5716 bytes = csum_bytes - orig_csum_bytes;
5717 bytes = calc_csum_metadata_size(inode, bytes, 0);
5718
5719 /*
5720 * Now reset ->csum_bytes to what it should be. If bytes is
5721 * more than to_free then we would have free'd more space had we
5722 * not had an artificially high ->csum_bytes, so we need to free
5723 * the remainder. If bytes is the same or less then we don't
5724 * need to do anything, the other free-ers did the correct
5725 * thing.
5726 */
5727 BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes;
5728 if (bytes > to_free)
5729 to_free = bytes - to_free;
5730 else
5731 to_free = 0;
5732 }
Wang Shilong88e081bf2013-03-01 11:36:01 +00005733 spin_unlock(&BTRFS_I(inode)->lock);
Dongsheng Yange2d1f922015-02-06 10:26:52 -05005734 if (dropped)
Wang Shilong88e081bf2013-03-01 11:36:01 +00005735 to_free += btrfs_calc_trans_metadata_size(root, dropped);
5736
5737 if (to_free) {
5738 btrfs_block_rsv_release(root, block_rsv, to_free);
5739 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5740 btrfs_ino(inode), to_free, 0);
5741 }
5742 if (delalloc_lock)
5743 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
5744 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005745}
5746
Josef Bacik7709cde2011-08-04 10:25:02 -04005747/**
5748 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
5749 * @inode: the inode to release the reservation for
5750 * @num_bytes: the number of bytes we're releasing
5751 *
5752 * This will release the metadata reservation for an inode. This can be called
5753 * once we complete IO for a given set of bytes to release their metadata
5754 * reservations.
5755 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005756void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
5757{
5758 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005759 u64 to_free = 0;
5760 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005761
5762 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik7709cde2011-08-04 10:25:02 -04005763 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacikdcab6a32015-02-11 15:08:59 -05005764 dropped = drop_outstanding_extent(inode, num_bytes);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005765
Miao Xie09348562013-02-07 10:12:07 +00005766 if (num_bytes)
5767 to_free = calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacik7709cde2011-08-04 10:25:02 -04005768 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00005769 if (dropped > 0)
5770 to_free += btrfs_calc_trans_metadata_size(root, dropped);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005771
Josef Bacik6a3891c2015-03-16 17:38:52 -04005772 if (btrfs_test_is_dummy_root(root))
5773 return;
5774
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005775 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5776 btrfs_ino(inode), to_free, 0);
Arne Jansenc5567232011-09-14 15:44:05 +02005777
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005778 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
5779 to_free);
5780}
5781
Josef Bacik7709cde2011-08-04 10:25:02 -04005782/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08005783 * btrfs_delalloc_reserve_space - reserve data and metadata space for
Qu Wenruo1ada3a62015-09-08 17:25:53 +08005784 * delalloc
5785 * @inode: inode we're writing to
5786 * @start: start range we are writing to
5787 * @len: how long the range we are writing to
5788 *
5789 * TODO: This function will finally replace old btrfs_delalloc_reserve_space()
5790 *
5791 * This will do the following things
5792 *
5793 * o reserve space in data space info for num bytes
5794 * and reserve precious corresponding qgroup space
5795 * (Done in check_data_free_space)
5796 *
5797 * o reserve space for metadata space, based on the number of outstanding
5798 * extents and how much csums will be needed
5799 * also reserve metadata space in a per root over-reserve method.
5800 * o add to the inodes->delalloc_bytes
5801 * o add it to the fs_info's delalloc inodes list.
5802 * (Above 3 all done in delalloc_reserve_metadata)
5803 *
5804 * Return 0 for success
5805 * Return <0 for error(-ENOSPC or -EQUOT)
5806 */
Qu Wenruo7cf5b972015-09-08 17:25:55 +08005807int btrfs_delalloc_reserve_space(struct inode *inode, u64 start, u64 len)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08005808{
5809 int ret;
5810
Qu Wenruo7cf5b972015-09-08 17:25:55 +08005811 ret = btrfs_check_data_free_space(inode, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08005812 if (ret < 0)
5813 return ret;
5814 ret = btrfs_delalloc_reserve_metadata(inode, len);
5815 if (ret < 0)
Qu Wenruo7cf5b972015-09-08 17:25:55 +08005816 btrfs_free_reserved_data_space(inode, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08005817 return ret;
5818}
5819
5820/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08005821 * btrfs_delalloc_release_space - release data and metadata space for delalloc
Qu Wenruo1ada3a62015-09-08 17:25:53 +08005822 * @inode: inode we're releasing space for
5823 * @start: start position of the space already reserved
5824 * @len: the len of the space already reserved
5825 *
5826 * This must be matched with a call to btrfs_delalloc_reserve_space. This is
5827 * called in the case that we don't need the metadata AND data reservations
5828 * anymore. So if there is an error or we insert an inline extent.
5829 *
5830 * This function will release the metadata space that was not used and will
5831 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
5832 * list if there are no delalloc bytes left.
5833 * Also it will handle the qgroup reserved space.
5834 */
Qu Wenruo7cf5b972015-09-08 17:25:55 +08005835void btrfs_delalloc_release_space(struct inode *inode, u64 start, u64 len)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08005836{
5837 btrfs_delalloc_release_metadata(inode, len);
Qu Wenruo7cf5b972015-09-08 17:25:55 +08005838 btrfs_free_reserved_data_space(inode, start, len);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005839}
5840
Josef Bacikce93ec52014-11-17 15:45:48 -05005841static int update_block_group(struct btrfs_trans_handle *trans,
5842 struct btrfs_root *root, u64 bytenr,
5843 u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04005844{
Josef Bacik0af3d002010-06-21 14:48:16 -04005845 struct btrfs_block_group_cache *cache = NULL;
Chris Mason9078a3e2007-04-26 16:46:15 -04005846 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04005847 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005848 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04005849 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04005850 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04005851
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005852 /* block accounting for super block */
Miao Xieeb73c1b2013-05-15 07:48:22 +00005853 spin_lock(&info->delalloc_root_lock);
David Sterba6c417612011-04-13 15:41:04 +02005854 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005855 if (alloc)
5856 old_val += num_bytes;
5857 else
5858 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02005859 btrfs_set_super_bytes_used(info->super_copy, old_val);
Miao Xieeb73c1b2013-05-15 07:48:22 +00005860 spin_unlock(&info->delalloc_root_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005861
Chris Masond3977122009-01-05 21:25:51 -05005862 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04005863 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05005864 if (!cache)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005865 return -ENOENT;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005866 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
5867 BTRFS_BLOCK_GROUP_RAID1 |
5868 BTRFS_BLOCK_GROUP_RAID10))
5869 factor = 2;
5870 else
5871 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04005872 /*
5873 * If this block group has free space cache written out, we
5874 * need to make sure to load it if we are removing space. This
5875 * is because we need the unpinning stage to actually add the
5876 * space back to the block group, otherwise we will leak space.
5877 */
5878 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Liu Bof6373bf2012-12-27 09:01:18 +00005879 cache_block_group(cache, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04005880
Chris Masondb945352007-10-15 16:15:53 -04005881 byte_in_group = bytenr - cache->key.objectid;
5882 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04005883
Josef Bacik25179202008-10-29 14:49:05 -04005884 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04005885 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04005886
Josef Bacik73bc1872011-10-03 14:07:49 -04005887 if (btrfs_test_opt(root, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04005888 cache->disk_cache_state < BTRFS_DC_CLEAR)
5889 cache->disk_cache_state = BTRFS_DC_CLEAR;
5890
Chris Mason9078a3e2007-04-26 16:46:15 -04005891 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04005892 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04005893 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04005894 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04005895 btrfs_set_block_group_used(&cache->item, old_val);
5896 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04005897 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005898 cache->space_info->bytes_used += num_bytes;
5899 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04005900 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005901 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04005902 } else {
Chris Masondb945352007-10-15 16:15:53 -04005903 old_val -= num_bytes;
Filipe Mananaae0ab002014-11-26 15:28:52 +00005904 btrfs_set_block_group_used(&cache->item, old_val);
5905 cache->pinned += num_bytes;
5906 cache->space_info->bytes_pinned += num_bytes;
5907 cache->space_info->bytes_used -= num_bytes;
5908 cache->space_info->disk_used -= num_bytes * factor;
5909 spin_unlock(&cache->lock);
5910 spin_unlock(&cache->space_info->lock);
Josef Bacik47ab2a62014-09-18 11:20:02 -04005911
Filipe Mananaae0ab002014-11-26 15:28:52 +00005912 set_extent_dirty(info->pinned_extents,
5913 bytenr, bytenr + num_bytes - 1,
5914 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04005915 }
Chris Mason1bbc6212015-04-06 12:46:08 -07005916
5917 spin_lock(&trans->transaction->dirty_bgs_lock);
5918 if (list_empty(&cache->dirty_list)) {
5919 list_add_tail(&cache->dirty_list,
5920 &trans->transaction->dirty_bgs);
5921 trans->transaction->num_dirty_bgs++;
5922 btrfs_get_block_group(cache);
5923 }
5924 spin_unlock(&trans->transaction->dirty_bgs_lock);
5925
Filipe Manana036a9342015-11-23 15:25:16 +00005926 /*
5927 * No longer have used bytes in this block group, queue it for
5928 * deletion. We do this after adding the block group to the
5929 * dirty list to avoid races between cleaner kthread and space
5930 * cache writeout.
5931 */
5932 if (!alloc && old_val == 0) {
5933 spin_lock(&info->unused_bgs_lock);
5934 if (list_empty(&cache->bg_list)) {
5935 btrfs_get_block_group(cache);
5936 list_add_tail(&cache->bg_list,
5937 &info->unused_bgs);
5938 }
5939 spin_unlock(&info->unused_bgs_lock);
5940 }
5941
Chris Masonfa9c0d792009-04-03 09:47:43 -04005942 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04005943 total -= num_bytes;
5944 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005945 }
5946 return 0;
5947}
Chris Mason6324fbf2008-03-24 15:01:59 -04005948
Chris Masona061fc82008-05-07 11:43:44 -04005949static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
5950{
Josef Bacik0f9dd462008-09-23 13:14:11 -04005951 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05005952 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005953
Liu Boa1897fd2012-12-27 09:01:23 +00005954 spin_lock(&root->fs_info->block_group_cache_lock);
5955 bytenr = root->fs_info->first_logical_byte;
5956 spin_unlock(&root->fs_info->block_group_cache_lock);
5957
5958 if (bytenr < (u64)-1)
5959 return bytenr;
5960
Josef Bacik0f9dd462008-09-23 13:14:11 -04005961 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
5962 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04005963 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005964
Yan Zhengd2fb3432008-12-11 16:30:39 -05005965 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005966 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05005967
5968 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04005969}
5970
Yan, Zhengf0486c62010-05-16 10:46:25 -04005971static int pin_down_extent(struct btrfs_root *root,
5972 struct btrfs_block_group_cache *cache,
5973 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05005974{
Yan Zheng11833d62009-09-11 16:11:19 -04005975 spin_lock(&cache->space_info->lock);
5976 spin_lock(&cache->lock);
5977 cache->pinned += num_bytes;
5978 cache->space_info->bytes_pinned += num_bytes;
5979 if (reserved) {
5980 cache->reserved -= num_bytes;
5981 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05005982 }
Yan Zheng11833d62009-09-11 16:11:19 -04005983 spin_unlock(&cache->lock);
5984 spin_unlock(&cache->space_info->lock);
5985
Yan, Zhengf0486c62010-05-16 10:46:25 -04005986 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
5987 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Dongsheng Yange2d1f922015-02-06 10:26:52 -05005988 if (reserved)
Josef Bacik0be5dc62013-10-07 15:18:52 -04005989 trace_btrfs_reserved_extent_free(root, bytenr, num_bytes);
Yan324ae4d2007-11-16 14:57:08 -05005990 return 0;
5991}
Chris Mason9078a3e2007-04-26 16:46:15 -04005992
Yan, Zhengf0486c62010-05-16 10:46:25 -04005993/*
5994 * this function must be called within transaction
5995 */
5996int btrfs_pin_extent(struct btrfs_root *root,
5997 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04005998{
Yan, Zhengf0486c62010-05-16 10:46:25 -04005999 struct btrfs_block_group_cache *cache;
6000
6001 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006002 BUG_ON(!cache); /* Logic error */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006003
6004 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
6005
6006 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04006007 return 0;
6008}
Zheng Yane8569812008-09-26 10:05:48 -04006009
Yan, Zhengf0486c62010-05-16 10:46:25 -04006010/*
Chris Masone688b7252011-10-31 20:52:39 -04006011 * this function must be called within transaction
Yan, Zhengf0486c62010-05-16 10:46:25 -04006012 */
Liu Bodcfac412012-12-27 09:01:20 +00006013int btrfs_pin_extent_for_log_replay(struct btrfs_root *root,
Chris Masone688b7252011-10-31 20:52:39 -04006014 u64 bytenr, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006015{
Chris Masone688b7252011-10-31 20:52:39 -04006016 struct btrfs_block_group_cache *cache;
Josef Bacikb50c6e22013-04-25 15:55:30 -04006017 int ret;
Chris Masone688b7252011-10-31 20:52:39 -04006018
6019 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006020 if (!cache)
6021 return -EINVAL;
Chris Masone688b7252011-10-31 20:52:39 -04006022
6023 /*
6024 * pull in the free space cache (if any) so that our pin
6025 * removes the free space from the cache. We have load_only set
6026 * to one because the slow code to read in the free extents does check
6027 * the pinned extents.
6028 */
Liu Bof6373bf2012-12-27 09:01:18 +00006029 cache_block_group(cache, 1);
Chris Masone688b7252011-10-31 20:52:39 -04006030
6031 pin_down_extent(root, cache, bytenr, num_bytes, 0);
6032
6033 /* remove us from the free space cache (if we're there at all) */
Josef Bacikb50c6e22013-04-25 15:55:30 -04006034 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
Chris Masone688b7252011-10-31 20:52:39 -04006035 btrfs_put_block_group(cache);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006036 return ret;
Chris Masone688b7252011-10-31 20:52:39 -04006037}
6038
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006039static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes)
6040{
6041 int ret;
6042 struct btrfs_block_group_cache *block_group;
6043 struct btrfs_caching_control *caching_ctl;
6044
6045 block_group = btrfs_lookup_block_group(root->fs_info, start);
6046 if (!block_group)
6047 return -EINVAL;
6048
6049 cache_block_group(block_group, 0);
6050 caching_ctl = get_caching_control(block_group);
6051
6052 if (!caching_ctl) {
6053 /* Logic error */
6054 BUG_ON(!block_group_cache_done(block_group));
6055 ret = btrfs_remove_free_space(block_group, start, num_bytes);
6056 } else {
6057 mutex_lock(&caching_ctl->mutex);
6058
6059 if (start >= caching_ctl->progress) {
6060 ret = add_excluded_extent(root, start, num_bytes);
6061 } else if (start + num_bytes <= caching_ctl->progress) {
6062 ret = btrfs_remove_free_space(block_group,
6063 start, num_bytes);
6064 } else {
6065 num_bytes = caching_ctl->progress - start;
6066 ret = btrfs_remove_free_space(block_group,
6067 start, num_bytes);
6068 if (ret)
6069 goto out_lock;
6070
6071 num_bytes = (start + num_bytes) -
6072 caching_ctl->progress;
6073 start = caching_ctl->progress;
6074 ret = add_excluded_extent(root, start, num_bytes);
6075 }
6076out_lock:
6077 mutex_unlock(&caching_ctl->mutex);
6078 put_caching_control(caching_ctl);
6079 }
6080 btrfs_put_block_group(block_group);
6081 return ret;
6082}
6083
6084int btrfs_exclude_logged_extents(struct btrfs_root *log,
6085 struct extent_buffer *eb)
6086{
6087 struct btrfs_file_extent_item *item;
6088 struct btrfs_key key;
6089 int found_type;
6090 int i;
6091
6092 if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS))
6093 return 0;
6094
6095 for (i = 0; i < btrfs_header_nritems(eb); i++) {
6096 btrfs_item_key_to_cpu(eb, &key, i);
6097 if (key.type != BTRFS_EXTENT_DATA_KEY)
6098 continue;
6099 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
6100 found_type = btrfs_file_extent_type(eb, item);
6101 if (found_type == BTRFS_FILE_EXTENT_INLINE)
6102 continue;
6103 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
6104 continue;
6105 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
6106 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
6107 __exclude_logged_extent(log, key.objectid, key.offset);
6108 }
6109
6110 return 0;
6111}
6112
Josef Bacikfb25e912011-07-26 17:00:46 -04006113/**
6114 * btrfs_update_reserved_bytes - update the block_group and space info counters
6115 * @cache: The cache we are manipulating
6116 * @num_bytes: The number of bytes in question
6117 * @reserve: One of the reservation enums
Miao Xiee570fd22014-06-19 10:42:50 +08006118 * @delalloc: The blocks are allocated for the delalloc write
Josef Bacikfb25e912011-07-26 17:00:46 -04006119 *
6120 * This is called by the allocator when it reserves space, or by somebody who is
6121 * freeing space that was never actually used on disk. For example if you
6122 * reserve some space for a new leaf in transaction A and before transaction A
6123 * commits you free that leaf, you call this with reserve set to 0 in order to
6124 * clear the reservation.
6125 *
6126 * Metadata reservations should be called with RESERVE_ALLOC so we do the proper
6127 * ENOSPC accounting. For data we handle the reservation through clearing the
6128 * delalloc bits in the io_tree. We have to do this since we could end up
6129 * allocating less disk space for the amount of data we have reserved in the
6130 * case of compression.
6131 *
6132 * If this is a reservation and the block group has become read only we cannot
6133 * make the reservation and return -EAGAIN, otherwise this function always
6134 * succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04006135 */
Josef Bacikfb25e912011-07-26 17:00:46 -04006136static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
Miao Xiee570fd22014-06-19 10:42:50 +08006137 u64 num_bytes, int reserve, int delalloc)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006138{
Josef Bacikfb25e912011-07-26 17:00:46 -04006139 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006140 int ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006141
Josef Bacikfb25e912011-07-26 17:00:46 -04006142 spin_lock(&space_info->lock);
6143 spin_lock(&cache->lock);
6144 if (reserve != RESERVE_FREE) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04006145 if (cache->ro) {
6146 ret = -EAGAIN;
6147 } else {
Josef Bacikfb25e912011-07-26 17:00:46 -04006148 cache->reserved += num_bytes;
6149 space_info->bytes_reserved += num_bytes;
6150 if (reserve == RESERVE_ALLOC) {
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006151 trace_btrfs_space_reservation(cache->fs_info,
Liu Bo2bcc0322012-03-29 09:57:44 -04006152 "space_info", space_info->flags,
6153 num_bytes, 0);
Josef Bacikfb25e912011-07-26 17:00:46 -04006154 space_info->bytes_may_use -= num_bytes;
6155 }
Miao Xiee570fd22014-06-19 10:42:50 +08006156
6157 if (delalloc)
6158 cache->delalloc_bytes += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006159 }
Josef Bacikfb25e912011-07-26 17:00:46 -04006160 } else {
6161 if (cache->ro)
6162 space_info->bytes_readonly += num_bytes;
6163 cache->reserved -= num_bytes;
6164 space_info->bytes_reserved -= num_bytes;
Miao Xiee570fd22014-06-19 10:42:50 +08006165
6166 if (delalloc)
6167 cache->delalloc_bytes -= num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006168 }
Josef Bacikfb25e912011-07-26 17:00:46 -04006169 spin_unlock(&cache->lock);
6170 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006171 return ret;
6172}
6173
Jeff Mahoney143bede2012-03-01 14:56:26 +01006174void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04006175 struct btrfs_root *root)
6176{
6177 struct btrfs_fs_info *fs_info = root->fs_info;
6178 struct btrfs_caching_control *next;
6179 struct btrfs_caching_control *caching_ctl;
6180 struct btrfs_block_group_cache *cache;
6181
Josef Bacik9e351cc2014-03-13 15:42:13 -04006182 down_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04006183
6184 list_for_each_entry_safe(caching_ctl, next,
6185 &fs_info->caching_block_groups, list) {
6186 cache = caching_ctl->block_group;
6187 if (block_group_cache_done(cache)) {
6188 cache->last_byte_to_unpin = (u64)-1;
6189 list_del_init(&caching_ctl->list);
6190 put_caching_control(caching_ctl);
6191 } else {
6192 cache->last_byte_to_unpin = caching_ctl->progress;
6193 }
6194 }
6195
6196 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6197 fs_info->pinned_extents = &fs_info->freed_extents[1];
6198 else
6199 fs_info->pinned_extents = &fs_info->freed_extents[0];
6200
Josef Bacik9e351cc2014-03-13 15:42:13 -04006201 up_write(&fs_info->commit_root_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006202
6203 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04006204}
6205
Josef Bacikc759c4e2015-10-02 15:25:10 -04006206/*
6207 * Returns the free cluster for the given space info and sets empty_cluster to
6208 * what it should be based on the mount options.
6209 */
6210static struct btrfs_free_cluster *
6211fetch_cluster_info(struct btrfs_root *root, struct btrfs_space_info *space_info,
6212 u64 *empty_cluster)
6213{
6214 struct btrfs_free_cluster *ret = NULL;
6215 bool ssd = btrfs_test_opt(root, SSD);
6216
6217 *empty_cluster = 0;
6218 if (btrfs_mixed_space_info(space_info))
6219 return ret;
6220
6221 if (ssd)
Byongho Leeee221842015-12-15 01:42:10 +09006222 *empty_cluster = SZ_2M;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006223 if (space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
6224 ret = &root->fs_info->meta_alloc_cluster;
6225 if (!ssd)
Byongho Leeee221842015-12-15 01:42:10 +09006226 *empty_cluster = SZ_64K;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006227 } else if ((space_info->flags & BTRFS_BLOCK_GROUP_DATA) && ssd) {
6228 ret = &root->fs_info->data_alloc_cluster;
6229 }
6230
6231 return ret;
6232}
6233
Filipe Manana678886b2014-12-07 21:31:47 +00006234static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end,
6235 const bool return_free_space)
Yan Zheng11833d62009-09-11 16:11:19 -04006236{
6237 struct btrfs_fs_info *fs_info = root->fs_info;
6238 struct btrfs_block_group_cache *cache = NULL;
Josef Bacik7b398f82012-10-22 15:52:28 -04006239 struct btrfs_space_info *space_info;
6240 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006241 struct btrfs_free_cluster *cluster = NULL;
Yan Zheng11833d62009-09-11 16:11:19 -04006242 u64 len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006243 u64 total_unpinned = 0;
6244 u64 empty_cluster = 0;
Josef Bacik7b398f82012-10-22 15:52:28 -04006245 bool readonly;
Yan Zheng11833d62009-09-11 16:11:19 -04006246
6247 while (start <= end) {
Josef Bacik7b398f82012-10-22 15:52:28 -04006248 readonly = false;
Yan Zheng11833d62009-09-11 16:11:19 -04006249 if (!cache ||
6250 start >= cache->key.objectid + cache->key.offset) {
6251 if (cache)
6252 btrfs_put_block_group(cache);
Josef Bacikc759c4e2015-10-02 15:25:10 -04006253 total_unpinned = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006254 cache = btrfs_lookup_block_group(fs_info, start);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006255 BUG_ON(!cache); /* Logic error */
Josef Bacikc759c4e2015-10-02 15:25:10 -04006256
6257 cluster = fetch_cluster_info(root,
6258 cache->space_info,
6259 &empty_cluster);
6260 empty_cluster <<= 1;
Yan Zheng11833d62009-09-11 16:11:19 -04006261 }
6262
6263 len = cache->key.objectid + cache->key.offset - start;
6264 len = min(len, end + 1 - start);
6265
6266 if (start < cache->last_byte_to_unpin) {
6267 len = min(len, cache->last_byte_to_unpin - start);
Filipe Manana678886b2014-12-07 21:31:47 +00006268 if (return_free_space)
6269 btrfs_add_free_space(cache, start, len);
Yan Zheng11833d62009-09-11 16:11:19 -04006270 }
Josef Bacik25179202008-10-29 14:49:05 -04006271
Yan, Zhengf0486c62010-05-16 10:46:25 -04006272 start += len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006273 total_unpinned += len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006274 space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006275
Josef Bacikc759c4e2015-10-02 15:25:10 -04006276 /*
6277 * If this space cluster has been marked as fragmented and we've
6278 * unpinned enough in this block group to potentially allow a
6279 * cluster to be created inside of it go ahead and clear the
6280 * fragmented check.
6281 */
6282 if (cluster && cluster->fragmented &&
6283 total_unpinned > empty_cluster) {
6284 spin_lock(&cluster->lock);
6285 cluster->fragmented = 0;
6286 spin_unlock(&cluster->lock);
6287 }
6288
Josef Bacik7b398f82012-10-22 15:52:28 -04006289 spin_lock(&space_info->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006290 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006291 cache->pinned -= len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006292 space_info->bytes_pinned -= len;
Josef Bacik4f4db212015-09-29 11:40:47 -04006293 space_info->max_extent_size = 0;
Liu Bod288db52014-07-02 16:58:01 +08006294 percpu_counter_add(&space_info->total_bytes_pinned, -len);
Josef Bacik7b398f82012-10-22 15:52:28 -04006295 if (cache->ro) {
6296 space_info->bytes_readonly += len;
6297 readonly = true;
6298 }
Josef Bacik25179202008-10-29 14:49:05 -04006299 spin_unlock(&cache->lock);
Josef Bacik7b398f82012-10-22 15:52:28 -04006300 if (!readonly && global_rsv->space_info == space_info) {
6301 spin_lock(&global_rsv->lock);
6302 if (!global_rsv->full) {
6303 len = min(len, global_rsv->size -
6304 global_rsv->reserved);
6305 global_rsv->reserved += len;
6306 space_info->bytes_may_use += len;
6307 if (global_rsv->reserved >= global_rsv->size)
6308 global_rsv->full = 1;
6309 }
6310 spin_unlock(&global_rsv->lock);
6311 }
6312 spin_unlock(&space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006313 }
6314
6315 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006316 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04006317 return 0;
6318}
6319
6320int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04006321 struct btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -05006322{
Yan Zheng11833d62009-09-11 16:11:19 -04006323 struct btrfs_fs_info *fs_info = root->fs_info;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006324 struct btrfs_block_group_cache *block_group, *tmp;
6325 struct list_head *deleted_bgs;
Yan Zheng11833d62009-09-11 16:11:19 -04006326 struct extent_io_tree *unpin;
Chris Mason1a5bc162007-10-15 16:15:26 -04006327 u64 start;
6328 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05006329 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05006330
Yan Zheng11833d62009-09-11 16:11:19 -04006331 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6332 unpin = &fs_info->freed_extents[1];
6333 else
6334 unpin = &fs_info->freed_extents[0];
6335
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006336 while (!trans->aborted) {
Filipe Mananad4b450c2015-01-29 19:18:25 +00006337 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Chris Mason1a5bc162007-10-15 16:15:26 -04006338 ret = find_first_extent_bit(unpin, 0, &start, &end,
Josef Bacike6138872012-09-27 17:07:30 -04006339 EXTENT_DIRTY, NULL);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006340 if (ret) {
6341 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05006342 break;
Filipe Mananad4b450c2015-01-29 19:18:25 +00006343 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05006344
Li Dongyang5378e602011-03-24 10:24:27 +00006345 if (btrfs_test_opt(root, DISCARD))
6346 ret = btrfs_discard_extent(root, start,
6347 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05006348
Chris Mason1a5bc162007-10-15 16:15:26 -04006349 clear_extent_dirty(unpin, start, end, GFP_NOFS);
Filipe Manana678886b2014-12-07 21:31:47 +00006350 unpin_extent_range(root, start, end, true);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006351 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masonb9473432009-03-13 11:00:37 -04006352 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05006353 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006354
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006355 /*
6356 * Transaction is finished. We don't need the lock anymore. We
6357 * do need to clean up the block groups in case of a transaction
6358 * abort.
6359 */
6360 deleted_bgs = &trans->transaction->deleted_bgs;
6361 list_for_each_entry_safe(block_group, tmp, deleted_bgs, bg_list) {
6362 u64 trimmed = 0;
6363
6364 ret = -EROFS;
6365 if (!trans->aborted)
6366 ret = btrfs_discard_extent(root,
6367 block_group->key.objectid,
6368 block_group->key.offset,
6369 &trimmed);
6370
6371 list_del_init(&block_group->bg_list);
6372 btrfs_put_block_group_trimming(block_group);
6373 btrfs_put_block_group(block_group);
6374
6375 if (ret) {
6376 const char *errstr = btrfs_decode_error(ret);
6377 btrfs_warn(fs_info,
6378 "Discard failed while removing blockgroup: errno=%d %s\n",
6379 ret, errstr);
6380 }
6381 }
6382
Chris Masone20d96d2007-03-22 12:13:20 -04006383 return 0;
6384}
6385
Josef Bacikb150a4f2013-06-19 15:00:04 -04006386static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes,
6387 u64 owner, u64 root_objectid)
6388{
6389 struct btrfs_space_info *space_info;
6390 u64 flags;
6391
6392 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
6393 if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID)
6394 flags = BTRFS_BLOCK_GROUP_SYSTEM;
6395 else
6396 flags = BTRFS_BLOCK_GROUP_METADATA;
6397 } else {
6398 flags = BTRFS_BLOCK_GROUP_DATA;
6399 }
6400
6401 space_info = __find_space_info(fs_info, flags);
6402 BUG_ON(!space_info); /* Logic bug */
6403 percpu_counter_add(&space_info->total_bytes_pinned, num_bytes);
6404}
6405
6406
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006407static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
6408 struct btrfs_root *root,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006409 struct btrfs_delayed_ref_node *node, u64 parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006410 u64 root_objectid, u64 owner_objectid,
6411 u64 owner_offset, int refs_to_drop,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006412 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05006413{
Chris Masone2fa7222007-03-12 16:22:34 -04006414 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006415 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04006416 struct btrfs_fs_info *info = root->fs_info;
6417 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04006418 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006419 struct btrfs_extent_item *ei;
6420 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05006421 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006422 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05006423 int extent_slot = 0;
6424 int found_extent = 0;
6425 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006426 u32 item_size;
6427 u64 refs;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006428 u64 bytenr = node->bytenr;
6429 u64 num_bytes = node->num_bytes;
Josef Bacikfcebe452014-05-13 17:30:47 -07006430 int last_ref = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05006431 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
6432 SKINNY_METADATA);
Chris Mason037e6392007-03-07 11:50:24 -05006433
Chris Mason5caf2a02007-04-02 11:20:42 -04006434 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04006435 if (!path)
6436 return -ENOMEM;
6437
Chris Mason3c12ac72008-04-21 12:01:38 -04006438 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04006439 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006440
6441 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
6442 BUG_ON(!is_data && refs_to_drop != 1);
6443
Josef Bacik3173a182013-03-07 14:22:04 -05006444 if (is_data)
6445 skinny_metadata = 0;
6446
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006447 ret = lookup_extent_backref(trans, extent_root, path, &iref,
6448 bytenr, num_bytes, parent,
6449 root_objectid, owner_objectid,
6450 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05006451 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05006452 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006453 while (extent_slot >= 0) {
6454 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05006455 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006456 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05006457 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006458 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
6459 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05006460 found_extent = 1;
6461 break;
6462 }
Josef Bacik3173a182013-03-07 14:22:04 -05006463 if (key.type == BTRFS_METADATA_ITEM_KEY &&
6464 key.offset == owner_objectid) {
6465 found_extent = 1;
6466 break;
6467 }
Chris Mason952fcca2008-02-18 16:33:44 -05006468 if (path->slots[0] - extent_slot > 5)
6469 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006470 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05006471 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006472#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6473 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
6474 if (found_extent && item_size < sizeof(*ei))
6475 found_extent = 0;
6476#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04006477 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006478 BUG_ON(iref);
Chris Mason56bec292009-03-13 10:10:06 -04006479 ret = remove_extent_backref(trans, extent_root, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006480 NULL, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07006481 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06006482 if (ret) {
6483 btrfs_abort_transaction(trans, extent_root, ret);
6484 goto out;
6485 }
David Sterbab3b4aa72011-04-21 01:20:15 +02006486 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04006487 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006488
6489 key.objectid = bytenr;
6490 key.type = BTRFS_EXTENT_ITEM_KEY;
6491 key.offset = num_bytes;
6492
Josef Bacik3173a182013-03-07 14:22:04 -05006493 if (!is_data && skinny_metadata) {
6494 key.type = BTRFS_METADATA_ITEM_KEY;
6495 key.offset = owner_objectid;
6496 }
6497
Zheng Yan31840ae2008-09-23 13:14:14 -04006498 ret = btrfs_search_slot(trans, extent_root,
6499 &key, path, -1, 1);
Josef Bacik3173a182013-03-07 14:22:04 -05006500 if (ret > 0 && skinny_metadata && path->slots[0]) {
6501 /*
6502 * Couldn't find our skinny metadata item,
6503 * see if we have ye olde extent item.
6504 */
6505 path->slots[0]--;
6506 btrfs_item_key_to_cpu(path->nodes[0], &key,
6507 path->slots[0]);
6508 if (key.objectid == bytenr &&
6509 key.type == BTRFS_EXTENT_ITEM_KEY &&
6510 key.offset == num_bytes)
6511 ret = 0;
6512 }
6513
6514 if (ret > 0 && skinny_metadata) {
6515 skinny_metadata = false;
Filipe Manana9ce49a02014-04-24 15:15:28 +01006516 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05006517 key.type = BTRFS_EXTENT_ITEM_KEY;
6518 key.offset = num_bytes;
6519 btrfs_release_path(path);
6520 ret = btrfs_search_slot(trans, extent_root,
6521 &key, path, -1, 1);
6522 }
6523
Josef Bacikf3465ca2008-11-12 14:19:50 -05006524 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006525 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006526 ret, bytenr);
Josef Bacikb783e622011-07-13 15:03:50 +00006527 if (ret > 0)
6528 btrfs_print_leaf(extent_root,
6529 path->nodes[0]);
Josef Bacikf3465ca2008-11-12 14:19:50 -05006530 }
David Sterba005d6422012-09-18 07:52:32 -06006531 if (ret < 0) {
6532 btrfs_abort_transaction(trans, extent_root, ret);
6533 goto out;
6534 }
Zheng Yan31840ae2008-09-23 13:14:14 -04006535 extent_slot = path->slots[0];
6536 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306537 } else if (WARN_ON(ret == -ENOENT)) {
Chris Mason7bb86312007-12-11 09:25:06 -05006538 btrfs_print_leaf(extent_root, path->nodes[0]);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006539 btrfs_err(info,
6540 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006541 bytenr, parent, root_objectid, owner_objectid,
6542 owner_offset);
Josef Bacikc4a050b2014-03-14 16:36:53 -04006543 btrfs_abort_transaction(trans, extent_root, ret);
6544 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006545 } else {
David Sterba005d6422012-09-18 07:52:32 -06006546 btrfs_abort_transaction(trans, extent_root, ret);
6547 goto out;
Chris Mason7bb86312007-12-11 09:25:06 -05006548 }
Chris Mason5f39d392007-10-15 16:14:19 -04006549
6550 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006551 item_size = btrfs_item_size_nr(leaf, extent_slot);
6552#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6553 if (item_size < sizeof(*ei)) {
6554 BUG_ON(found_extent || extent_slot != path->slots[0]);
6555 ret = convert_extent_item_v0(trans, extent_root, path,
6556 owner_objectid, 0);
David Sterba005d6422012-09-18 07:52:32 -06006557 if (ret < 0) {
6558 btrfs_abort_transaction(trans, extent_root, ret);
6559 goto out;
6560 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006561
David Sterbab3b4aa72011-04-21 01:20:15 +02006562 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006563 path->leave_spinning = 1;
6564
6565 key.objectid = bytenr;
6566 key.type = BTRFS_EXTENT_ITEM_KEY;
6567 key.offset = num_bytes;
6568
6569 ret = btrfs_search_slot(trans, extent_root, &key, path,
6570 -1, 1);
6571 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006572 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006573 ret, bytenr);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006574 btrfs_print_leaf(extent_root, path->nodes[0]);
6575 }
David Sterba005d6422012-09-18 07:52:32 -06006576 if (ret < 0) {
6577 btrfs_abort_transaction(trans, extent_root, ret);
6578 goto out;
6579 }
6580
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006581 extent_slot = path->slots[0];
6582 leaf = path->nodes[0];
6583 item_size = btrfs_item_size_nr(leaf, extent_slot);
6584 }
6585#endif
6586 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05006587 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04006588 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05006589 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
6590 key.type == BTRFS_EXTENT_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006591 struct btrfs_tree_block_info *bi;
6592 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
6593 bi = (struct btrfs_tree_block_info *)(ei + 1);
6594 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05006595 }
6596
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006597 refs = btrfs_extent_refs(leaf, ei);
Josef Bacik32b02532013-04-24 16:38:50 -04006598 if (refs < refs_to_drop) {
6599 btrfs_err(info, "trying to drop %d refs but we only have %Lu "
David Sterba351fd352014-05-15 16:48:20 +02006600 "for bytenr %Lu", refs_to_drop, refs, bytenr);
Josef Bacik32b02532013-04-24 16:38:50 -04006601 ret = -EINVAL;
6602 btrfs_abort_transaction(trans, extent_root, ret);
6603 goto out;
6604 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006605 refs -= refs_to_drop;
6606
6607 if (refs > 0) {
6608 if (extent_op)
6609 __run_delayed_extent_op(extent_op, leaf, ei);
6610 /*
6611 * In the case of inline back ref, reference count will
6612 * be updated by remove_extent_backref
6613 */
6614 if (iref) {
6615 BUG_ON(!found_extent);
6616 } else {
6617 btrfs_set_extent_refs(leaf, ei, refs);
6618 btrfs_mark_buffer_dirty(leaf);
6619 }
6620 if (found_extent) {
6621 ret = remove_extent_backref(trans, extent_root, path,
6622 iref, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07006623 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06006624 if (ret) {
6625 btrfs_abort_transaction(trans, extent_root, ret);
6626 goto out;
6627 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006628 }
Josef Bacikb150a4f2013-06-19 15:00:04 -04006629 add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid,
6630 root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006631 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006632 if (found_extent) {
6633 BUG_ON(is_data && refs_to_drop !=
Zhaolei9ed0dea2015-08-06 22:16:24 +08006634 extent_data_ref_count(path, iref));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006635 if (iref) {
6636 BUG_ON(path->slots[0] != extent_slot);
6637 } else {
6638 BUG_ON(path->slots[0] != extent_slot + 1);
6639 path->slots[0] = extent_slot;
6640 num_to_del = 2;
6641 }
Chris Mason78fae272007-03-25 11:35:08 -04006642 }
Chris Masonb9473432009-03-13 11:00:37 -04006643
Josef Bacikfcebe452014-05-13 17:30:47 -07006644 last_ref = 1;
Chris Mason952fcca2008-02-18 16:33:44 -05006645 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
6646 num_to_del);
David Sterba005d6422012-09-18 07:52:32 -06006647 if (ret) {
6648 btrfs_abort_transaction(trans, extent_root, ret);
6649 goto out;
6650 }
David Sterbab3b4aa72011-04-21 01:20:15 +02006651 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01006652
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006653 if (is_data) {
Chris Mason459931e2008-12-10 09:10:46 -05006654 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
David Sterba005d6422012-09-18 07:52:32 -06006655 if (ret) {
6656 btrfs_abort_transaction(trans, extent_root, ret);
6657 goto out;
6658 }
Chris Mason459931e2008-12-10 09:10:46 -05006659 }
6660
Josef Bacikce93ec52014-11-17 15:45:48 -05006661 ret = update_block_group(trans, root, bytenr, num_bytes, 0);
David Sterba005d6422012-09-18 07:52:32 -06006662 if (ret) {
6663 btrfs_abort_transaction(trans, extent_root, ret);
6664 goto out;
6665 }
Chris Masona28ec192007-03-06 20:08:01 -05006666 }
Josef Bacikfcebe452014-05-13 17:30:47 -07006667 btrfs_release_path(path);
6668
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006669out:
Chris Mason5caf2a02007-04-02 11:20:42 -04006670 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05006671 return ret;
6672}
6673
6674/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04006675 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04006676 * delayed ref for that extent as well. This searches the delayed ref tree for
6677 * a given extent, and if there are no other delayed refs to be processed, it
6678 * removes it from the tree.
6679 */
6680static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
6681 struct btrfs_root *root, u64 bytenr)
6682{
6683 struct btrfs_delayed_ref_head *head;
6684 struct btrfs_delayed_ref_root *delayed_refs;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006685 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04006686
6687 delayed_refs = &trans->transaction->delayed_refs;
6688 spin_lock(&delayed_refs->lock);
6689 head = btrfs_find_delayed_ref_head(trans, bytenr);
6690 if (!head)
Chris Masoncf93da72014-01-29 07:02:40 -08006691 goto out_delayed_unlock;
Chris Mason1887be62009-03-13 10:11:24 -04006692
Josef Bacikd7df2c72014-01-23 09:21:38 -05006693 spin_lock(&head->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08006694 if (!list_empty(&head->ref_list))
Chris Mason1887be62009-03-13 10:11:24 -04006695 goto out;
6696
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006697 if (head->extent_op) {
6698 if (!head->must_insert_reserved)
6699 goto out;
Miao Xie78a61842012-11-21 02:21:28 +00006700 btrfs_free_delayed_extent_op(head->extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006701 head->extent_op = NULL;
6702 }
6703
Chris Mason1887be62009-03-13 10:11:24 -04006704 /*
6705 * waiting for the lock here would deadlock. If someone else has it
6706 * locked they are already in the process of dropping it anyway
6707 */
6708 if (!mutex_trylock(&head->mutex))
6709 goto out;
6710
6711 /*
6712 * at this point we have a head with no other entries. Go
6713 * ahead and process it.
6714 */
6715 head->node.in_tree = 0;
Liu Boc46effa2013-10-14 12:59:45 +08006716 rb_erase(&head->href_node, &delayed_refs->href_root);
Chris Masonc3e69d52009-03-13 10:17:05 -04006717
Josef Bacikd7df2c72014-01-23 09:21:38 -05006718 atomic_dec(&delayed_refs->num_entries);
Chris Mason1887be62009-03-13 10:11:24 -04006719
6720 /*
6721 * we don't take a ref on the node because we're removing it from the
6722 * tree, so we just steal the ref the tree was holding.
6723 */
Chris Masonc3e69d52009-03-13 10:17:05 -04006724 delayed_refs->num_heads--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05006725 if (head->processing == 0)
Chris Masonc3e69d52009-03-13 10:17:05 -04006726 delayed_refs->num_heads_ready--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05006727 head->processing = 0;
6728 spin_unlock(&head->lock);
Chris Mason1887be62009-03-13 10:11:24 -04006729 spin_unlock(&delayed_refs->lock);
6730
Yan, Zhengf0486c62010-05-16 10:46:25 -04006731 BUG_ON(head->extent_op);
6732 if (head->must_insert_reserved)
6733 ret = 1;
6734
6735 mutex_unlock(&head->mutex);
Chris Mason1887be62009-03-13 10:11:24 -04006736 btrfs_put_delayed_ref(&head->node);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006737 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04006738out:
Josef Bacikd7df2c72014-01-23 09:21:38 -05006739 spin_unlock(&head->lock);
Chris Masoncf93da72014-01-29 07:02:40 -08006740
6741out_delayed_unlock:
Chris Mason1887be62009-03-13 10:11:24 -04006742 spin_unlock(&delayed_refs->lock);
6743 return 0;
6744}
6745
Yan, Zhengf0486c62010-05-16 10:46:25 -04006746void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
6747 struct btrfs_root *root,
6748 struct extent_buffer *buf,
Jan Schmidt5581a512012-05-16 17:04:52 +02006749 u64 parent, int last_ref)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006750{
Josef Bacikb150a4f2013-06-19 15:00:04 -04006751 int pin = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006752 int ret;
6753
6754 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006755 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
6756 buf->start, buf->len,
6757 parent, root->root_key.objectid,
6758 btrfs_header_level(buf),
Filipe Mananab06c4bf2015-10-23 07:52:54 +01006759 BTRFS_DROP_DELAYED_REF, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006760 BUG_ON(ret); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006761 }
6762
6763 if (!last_ref)
6764 return;
6765
Yan, Zhengf0486c62010-05-16 10:46:25 -04006766 if (btrfs_header_generation(buf) == trans->transid) {
Filipe Manana62198722015-01-06 20:18:45 +00006767 struct btrfs_block_group_cache *cache;
6768
Yan, Zhengf0486c62010-05-16 10:46:25 -04006769 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
6770 ret = check_ref_cleanup(trans, root, buf->start);
6771 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04006772 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006773 }
6774
Filipe Manana62198722015-01-06 20:18:45 +00006775 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
6776
Yan, Zhengf0486c62010-05-16 10:46:25 -04006777 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
6778 pin_down_extent(root, cache, buf->start, buf->len, 1);
Filipe Manana62198722015-01-06 20:18:45 +00006779 btrfs_put_block_group(cache);
Josef Bacik37be25b2011-08-05 10:25:38 -04006780 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006781 }
6782
6783 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
6784
6785 btrfs_add_free_space(cache, buf->start, buf->len);
Miao Xiee570fd22014-06-19 10:42:50 +08006786 btrfs_update_reserved_bytes(cache, buf->len, RESERVE_FREE, 0);
Filipe Manana62198722015-01-06 20:18:45 +00006787 btrfs_put_block_group(cache);
Josef Bacik0be5dc62013-10-07 15:18:52 -04006788 trace_btrfs_reserved_extent_free(root, buf->start, buf->len);
Josef Bacikb150a4f2013-06-19 15:00:04 -04006789 pin = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006790 }
6791out:
Josef Bacikb150a4f2013-06-19 15:00:04 -04006792 if (pin)
6793 add_pinned_bytes(root->fs_info, buf->len,
6794 btrfs_header_level(buf),
6795 root->root_key.objectid);
6796
Josef Bacika826d6d2011-03-16 13:42:43 -04006797 /*
6798 * Deleting the buffer, clear the corrupt flag since it doesn't matter
6799 * anymore.
6800 */
6801 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006802}
6803
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006804/* Can return -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006805int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root,
6806 u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01006807 u64 owner, u64 offset)
Chris Mason925baed2008-06-25 16:01:30 -04006808{
6809 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006810 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason925baed2008-06-25 16:01:30 -04006811
David Sterbafccb84c2014-09-29 23:53:21 +02006812 if (btrfs_test_is_dummy_root(root))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04006813 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02006814
Josef Bacikb150a4f2013-06-19 15:00:04 -04006815 add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid);
6816
Chris Mason56bec292009-03-13 10:10:06 -04006817 /*
6818 * tree log blocks never actually go into the extent allocation
6819 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04006820 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006821 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
6822 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04006823 /* unlocks the pinned mutex */
Yan Zheng11833d62009-09-11 16:11:19 -04006824 btrfs_pin_extent(root, bytenr, num_bytes, 1);
Chris Mason56bec292009-03-13 10:10:06 -04006825 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006826 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006827 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
6828 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006829 parent, root_objectid, (int)owner,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01006830 BTRFS_DROP_DELAYED_REF, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006831 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006832 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
6833 num_bytes,
6834 parent, root_objectid, owner,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08006835 offset, 0,
6836 BTRFS_DROP_DELAYED_REF, NULL);
Chris Mason56bec292009-03-13 10:10:06 -04006837 }
Chris Mason925baed2008-06-25 16:01:30 -04006838 return ret;
6839}
6840
Chris Masonfec577f2007-02-26 10:40:21 -05006841/*
Josef Bacik817d52f2009-07-13 21:29:25 -04006842 * when we wait for progress in the block group caching, its because
6843 * our allocation attempt failed at least once. So, we must sleep
6844 * and let some progress happen before we try again.
6845 *
6846 * This function will sleep at least once waiting for new free space to
6847 * show up, and then it will check the block group free space numbers
6848 * for our min num_bytes. Another option is to have it go ahead
6849 * and look in the rbtree for a free extent of a given size, but this
6850 * is a good start.
Josef Bacik36cce922013-08-05 11:15:21 -04006851 *
6852 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
6853 * any of the information in this block group.
Josef Bacik817d52f2009-07-13 21:29:25 -04006854 */
Josef Bacik36cce922013-08-05 11:15:21 -04006855static noinline void
Josef Bacik817d52f2009-07-13 21:29:25 -04006856wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
6857 u64 num_bytes)
6858{
Yan Zheng11833d62009-09-11 16:11:19 -04006859 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04006860
Yan Zheng11833d62009-09-11 16:11:19 -04006861 caching_ctl = get_caching_control(cache);
6862 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04006863 return;
Josef Bacik817d52f2009-07-13 21:29:25 -04006864
Yan Zheng11833d62009-09-11 16:11:19 -04006865 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08006866 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04006867
6868 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -04006869}
6870
6871static noinline int
6872wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
6873{
6874 struct btrfs_caching_control *caching_ctl;
Josef Bacik36cce922013-08-05 11:15:21 -04006875 int ret = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006876
6877 caching_ctl = get_caching_control(cache);
6878 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04006879 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006880
6881 wait_event(caching_ctl->wait, block_group_cache_done(cache));
Josef Bacik36cce922013-08-05 11:15:21 -04006882 if (cache->cached == BTRFS_CACHE_ERROR)
6883 ret = -EIO;
Yan Zheng11833d62009-09-11 16:11:19 -04006884 put_caching_control(caching_ctl);
Josef Bacik36cce922013-08-05 11:15:21 -04006885 return ret;
Josef Bacik817d52f2009-07-13 21:29:25 -04006886}
6887
Liu Bo31e50222012-11-21 14:18:10 +00006888int __get_raid_index(u64 flags)
Yan, Zhengb742bb82010-05-16 10:46:24 -04006889{
Ilya Dryomov7738a532012-03-27 17:09:17 +03006890 if (flags & BTRFS_BLOCK_GROUP_RAID10)
Miao Xiee6ec7162013-01-17 05:38:51 +00006891 return BTRFS_RAID_RAID10;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006892 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
Miao Xiee6ec7162013-01-17 05:38:51 +00006893 return BTRFS_RAID_RAID1;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006894 else if (flags & BTRFS_BLOCK_GROUP_DUP)
Miao Xiee6ec7162013-01-17 05:38:51 +00006895 return BTRFS_RAID_DUP;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006896 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
Miao Xiee6ec7162013-01-17 05:38:51 +00006897 return BTRFS_RAID_RAID0;
David Woodhouse53b381b2013-01-29 18:40:14 -05006898 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
Chris Masone942f882013-02-20 14:06:05 -05006899 return BTRFS_RAID_RAID5;
David Woodhouse53b381b2013-01-29 18:40:14 -05006900 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
Chris Masone942f882013-02-20 14:06:05 -05006901 return BTRFS_RAID_RAID6;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006902
Chris Masone942f882013-02-20 14:06:05 -05006903 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
Yan, Zhengb742bb82010-05-16 10:46:24 -04006904}
6905
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04006906int get_block_group_index(struct btrfs_block_group_cache *cache)
Ilya Dryomov7738a532012-03-27 17:09:17 +03006907{
Liu Bo31e50222012-11-21 14:18:10 +00006908 return __get_raid_index(cache->flags);
Ilya Dryomov7738a532012-03-27 17:09:17 +03006909}
6910
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04006911static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = {
6912 [BTRFS_RAID_RAID10] = "raid10",
6913 [BTRFS_RAID_RAID1] = "raid1",
6914 [BTRFS_RAID_DUP] = "dup",
6915 [BTRFS_RAID_RAID0] = "raid0",
6916 [BTRFS_RAID_SINGLE] = "single",
6917 [BTRFS_RAID_RAID5] = "raid5",
6918 [BTRFS_RAID_RAID6] = "raid6",
6919};
6920
Jeff Mahoney1b8e5df2013-11-20 16:50:23 -05006921static const char *get_raid_name(enum btrfs_raid_types type)
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04006922{
6923 if (type >= BTRFS_NR_RAID_TYPES)
6924 return NULL;
6925
6926 return btrfs_raid_type_names[type];
6927}
6928
Josef Bacik817d52f2009-07-13 21:29:25 -04006929enum btrfs_loop_type {
Josef Bacik285ff5a2012-01-13 15:27:45 -05006930 LOOP_CACHING_NOWAIT = 0,
6931 LOOP_CACHING_WAIT = 1,
6932 LOOP_ALLOC_CHUNK = 2,
6933 LOOP_NO_EMPTY_SIZE = 3,
Josef Bacik817d52f2009-07-13 21:29:25 -04006934};
6935
Miao Xiee570fd22014-06-19 10:42:50 +08006936static inline void
6937btrfs_lock_block_group(struct btrfs_block_group_cache *cache,
6938 int delalloc)
6939{
6940 if (delalloc)
6941 down_read(&cache->data_rwsem);
6942}
6943
6944static inline void
6945btrfs_grab_block_group(struct btrfs_block_group_cache *cache,
6946 int delalloc)
6947{
6948 btrfs_get_block_group(cache);
6949 if (delalloc)
6950 down_read(&cache->data_rwsem);
6951}
6952
6953static struct btrfs_block_group_cache *
6954btrfs_lock_cluster(struct btrfs_block_group_cache *block_group,
6955 struct btrfs_free_cluster *cluster,
6956 int delalloc)
6957{
6958 struct btrfs_block_group_cache *used_bg;
6959 bool locked = false;
6960again:
6961 spin_lock(&cluster->refill_lock);
6962 if (locked) {
6963 if (used_bg == cluster->block_group)
6964 return used_bg;
6965
6966 up_read(&used_bg->data_rwsem);
6967 btrfs_put_block_group(used_bg);
6968 }
6969
6970 used_bg = cluster->block_group;
6971 if (!used_bg)
6972 return NULL;
6973
6974 if (used_bg == block_group)
6975 return used_bg;
6976
6977 btrfs_get_block_group(used_bg);
6978
6979 if (!delalloc)
6980 return used_bg;
6981
6982 if (down_read_trylock(&used_bg->data_rwsem))
6983 return used_bg;
6984
6985 spin_unlock(&cluster->refill_lock);
6986 down_read(&used_bg->data_rwsem);
6987 locked = true;
6988 goto again;
6989}
6990
6991static inline void
6992btrfs_release_block_group(struct btrfs_block_group_cache *cache,
6993 int delalloc)
6994{
6995 if (delalloc)
6996 up_read(&cache->data_rwsem);
6997 btrfs_put_block_group(cache);
6998}
6999
Josef Bacik817d52f2009-07-13 21:29:25 -04007000/*
Chris Masonfec577f2007-02-26 10:40:21 -05007001 * walks the btree of allocated extents and find a hole of a given size.
7002 * The key ins is changed to record the hole:
Miao Xiea4820392013-09-09 13:19:42 +08007003 * ins->objectid == start position
Chris Mason62e27492007-03-15 12:56:47 -04007004 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Miao Xiea4820392013-09-09 13:19:42 +08007005 * ins->offset == the size of the hole.
Chris Masonfec577f2007-02-26 10:40:21 -05007006 * Any available blocks before search_start are skipped.
Miao Xiea4820392013-09-09 13:19:42 +08007007 *
7008 * If there is no suitable free space, we will record the max size of
7009 * the free space extent currently.
Chris Masonfec577f2007-02-26 10:40:21 -05007010 */
Josef Bacik00361582013-08-14 14:02:47 -04007011static noinline int find_free_extent(struct btrfs_root *orig_root,
Chris Mason98ed5172008-01-03 10:01:48 -05007012 u64 num_bytes, u64 empty_size,
Chris Mason98ed5172008-01-03 10:01:48 -05007013 u64 hint_byte, struct btrfs_key *ins,
Miao Xiee570fd22014-06-19 10:42:50 +08007014 u64 flags, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05007015{
Josef Bacik80eb2342008-10-29 14:49:05 -04007016 int ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05007017 struct btrfs_root *root = orig_root->fs_info->extent_root;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007018 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04007019 struct btrfs_block_group_cache *block_group = NULL;
Josef Bacik81c9ad22012-01-18 10:56:06 -05007020 u64 search_start = 0;
Miao Xiea4820392013-09-09 13:19:42 +08007021 u64 max_extent_size = 0;
Josef Bacikc759c4e2015-10-02 15:25:10 -04007022 u64 empty_cluster = 0;
Josef Bacik80eb2342008-10-29 14:49:05 -04007023 struct btrfs_space_info *space_info;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007024 int loop = 0;
David Sterbab6919a52013-04-29 13:39:40 +00007025 int index = __get_raid_index(flags);
7026 int alloc_type = (flags & BTRFS_BLOCK_GROUP_DATA) ?
Josef Bacikfb25e912011-07-26 17:00:46 -04007027 RESERVE_ALLOC_NO_ACCOUNT : RESERVE_ALLOC;
Josef Bacik0a243252009-09-11 16:11:20 -04007028 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007029 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04007030 bool use_cluster = true;
Miao Xie60d2adb2011-09-09 17:34:35 +08007031 bool have_caching_bg = false;
chandan13a0db52015-11-02 13:59:46 +05307032 bool orig_have_caching_bg = false;
Josef Bacika5e681d2015-10-01 14:54:10 -04007033 bool full_search = false;
Chris Masonfec577f2007-02-26 10:40:21 -05007034
Chris Masondb945352007-10-15 16:15:53 -04007035 WARN_ON(num_bytes < root->sectorsize);
David Sterba962a2982014-06-04 18:41:45 +02007036 ins->type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacik80eb2342008-10-29 14:49:05 -04007037 ins->objectid = 0;
7038 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04007039
David Sterbab6919a52013-04-29 13:39:40 +00007040 trace_find_free_extent(orig_root, num_bytes, empty_size, flags);
Josef Bacik3f7de032011-11-10 08:29:20 -05007041
David Sterbab6919a52013-04-29 13:39:40 +00007042 space_info = __find_space_info(root->fs_info, flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007043 if (!space_info) {
David Sterbab6919a52013-04-29 13:39:40 +00007044 btrfs_err(root->fs_info, "No space info for %llu", flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007045 return -ENOSPC;
7046 }
Josef Bacik2552d172009-04-03 10:14:19 -04007047
Josef Bacik67377732010-09-16 16:19:09 -04007048 /*
Josef Bacik4f4db212015-09-29 11:40:47 -04007049 * If our free space is heavily fragmented we may not be able to make
7050 * big contiguous allocations, so instead of doing the expensive search
7051 * for free space, simply return ENOSPC with our max_extent_size so we
7052 * can go ahead and search for a more manageable chunk.
7053 *
7054 * If our max_extent_size is large enough for our allocation simply
7055 * disable clustering since we will likely not be able to find enough
7056 * space to create a cluster and induce latency trying.
Josef Bacik67377732010-09-16 16:19:09 -04007057 */
Josef Bacik4f4db212015-09-29 11:40:47 -04007058 if (unlikely(space_info->max_extent_size)) {
7059 spin_lock(&space_info->lock);
7060 if (space_info->max_extent_size &&
7061 num_bytes > space_info->max_extent_size) {
7062 ins->offset = space_info->max_extent_size;
7063 spin_unlock(&space_info->lock);
7064 return -ENOSPC;
7065 } else if (space_info->max_extent_size) {
7066 use_cluster = false;
7067 }
7068 spin_unlock(&space_info->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007069 }
7070
Josef Bacikc759c4e2015-10-02 15:25:10 -04007071 last_ptr = fetch_cluster_info(orig_root, space_info, &empty_cluster);
Chris Mason239b14b2008-03-24 15:02:07 -04007072 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007073 spin_lock(&last_ptr->lock);
7074 if (last_ptr->block_group)
7075 hint_byte = last_ptr->window_start;
Josef Bacikc759c4e2015-10-02 15:25:10 -04007076 if (last_ptr->fragmented) {
7077 /*
7078 * We still set window_start so we can keep track of the
7079 * last place we found an allocation to try and save
7080 * some time.
7081 */
7082 hint_byte = last_ptr->window_start;
7083 use_cluster = false;
7084 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007085 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007086 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007087
Chris Masona061fc82008-05-07 11:43:44 -04007088 search_start = max(search_start, first_logical_byte(root, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04007089 search_start = max(search_start, hint_byte);
Josef Bacik2552d172009-04-03 10:14:19 -04007090 if (search_start == hint_byte) {
Josef Bacik2552d172009-04-03 10:14:19 -04007091 block_group = btrfs_lookup_block_group(root->fs_info,
7092 search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04007093 /*
7094 * we don't want to use the block group if it doesn't match our
7095 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05007096 *
7097 * However if we are re-searching with an ideal block group
7098 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04007099 */
David Sterbab6919a52013-04-29 13:39:40 +00007100 if (block_group && block_group_bits(block_group, flags) &&
Josef Bacik285ff5a2012-01-13 15:27:45 -05007101 block_group->cached != BTRFS_CACHE_NO) {
Josef Bacik2552d172009-04-03 10:14:19 -04007102 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04007103 if (list_empty(&block_group->list) ||
7104 block_group->ro) {
7105 /*
7106 * someone is removing this block group,
7107 * we can't jump into the have_block_group
7108 * target because our list pointers are not
7109 * valid
7110 */
7111 btrfs_put_block_group(block_group);
7112 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05007113 } else {
Yan, Zhengb742bb82010-05-16 10:46:24 -04007114 index = get_block_group_index(block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08007115 btrfs_lock_block_group(block_group, delalloc);
Chris Mason44fb5512009-06-04 15:34:51 -04007116 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05007117 }
Josef Bacik2552d172009-04-03 10:14:19 -04007118 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007119 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04007120 }
Chris Mason42e70e72008-11-07 18:17:11 -05007121 }
Josef Bacik2552d172009-04-03 10:14:19 -04007122search:
Miao Xie60d2adb2011-09-09 17:34:35 +08007123 have_caching_bg = false;
Josef Bacika5e681d2015-10-01 14:54:10 -04007124 if (index == 0 || index == __get_raid_index(flags))
7125 full_search = true;
Josef Bacik80eb2342008-10-29 14:49:05 -04007126 down_read(&space_info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04007127 list_for_each_entry(block_group, &space_info->block_groups[index],
7128 list) {
Josef Bacik6226cb0a2009-04-03 10:14:18 -04007129 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04007130 int cached;
Chris Mason8a1413a2008-11-10 16:13:54 -05007131
Miao Xiee570fd22014-06-19 10:42:50 +08007132 btrfs_grab_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007133 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05007134
Chris Mason83a50de2010-12-13 15:06:46 -05007135 /*
7136 * this can happen if we end up cycling through all the
7137 * raid types, but we want to make sure we only allocate
7138 * for the proper type.
7139 */
David Sterbab6919a52013-04-29 13:39:40 +00007140 if (!block_group_bits(block_group, flags)) {
Chris Mason83a50de2010-12-13 15:06:46 -05007141 u64 extra = BTRFS_BLOCK_GROUP_DUP |
7142 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05007143 BTRFS_BLOCK_GROUP_RAID5 |
7144 BTRFS_BLOCK_GROUP_RAID6 |
Chris Mason83a50de2010-12-13 15:06:46 -05007145 BTRFS_BLOCK_GROUP_RAID10;
7146
7147 /*
7148 * if they asked for extra copies and this block group
7149 * doesn't provide them, bail. This does allow us to
7150 * fill raid0 from raid1.
7151 */
David Sterbab6919a52013-04-29 13:39:40 +00007152 if ((flags & extra) && !(block_group->flags & extra))
Chris Mason83a50de2010-12-13 15:06:46 -05007153 goto loop;
7154 }
7155
Josef Bacik2552d172009-04-03 10:14:19 -04007156have_block_group:
Josef Bacik291c7d22011-11-14 13:52:14 -05007157 cached = block_group_cache_done(block_group);
7158 if (unlikely(!cached)) {
Josef Bacika5e681d2015-10-01 14:54:10 -04007159 have_caching_bg = true;
Liu Bof6373bf2012-12-27 09:01:18 +00007160 ret = cache_block_group(block_group, 0);
Chris Mason1d4284b2012-03-28 20:31:37 -04007161 BUG_ON(ret < 0);
7162 ret = 0;
Josef Bacikea6a4782008-11-20 12:16:16 -05007163 }
7164
Josef Bacik36cce922013-08-05 11:15:21 -04007165 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
7166 goto loop;
Josef Bacikea6a4782008-11-20 12:16:16 -05007167 if (unlikely(block_group->ro))
Josef Bacik2552d172009-04-03 10:14:19 -04007168 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007169
Josef Bacik0a243252009-09-11 16:11:20 -04007170 /*
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007171 * Ok we want to try and use the cluster allocator, so
7172 * lets look there
Josef Bacik0a243252009-09-11 16:11:20 -04007173 */
Josef Bacikc759c4e2015-10-02 15:25:10 -04007174 if (last_ptr && use_cluster) {
Miao Xie215a63d2014-01-15 20:00:56 +08007175 struct btrfs_block_group_cache *used_block_group;
Chris Mason8de972b2013-01-04 15:39:43 -05007176 unsigned long aligned_cluster;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007177 /*
7178 * the refill lock keeps out other
7179 * people trying to start a new cluster
7180 */
Miao Xiee570fd22014-06-19 10:42:50 +08007181 used_block_group = btrfs_lock_cluster(block_group,
7182 last_ptr,
7183 delalloc);
7184 if (!used_block_group)
Chris Mason44fb5512009-06-04 15:34:51 -04007185 goto refill_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -04007186
Miao Xiee570fd22014-06-19 10:42:50 +08007187 if (used_block_group != block_group &&
7188 (used_block_group->ro ||
7189 !block_group_bits(used_block_group, flags)))
7190 goto release_cluster;
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05007191
7192 offset = btrfs_alloc_from_cluster(used_block_group,
Miao Xiea4820392013-09-09 13:19:42 +08007193 last_ptr,
7194 num_bytes,
7195 used_block_group->key.objectid,
7196 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007197 if (offset) {
7198 /* we have a block, we're done */
7199 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05007200 trace_btrfs_reserve_extent_cluster(root,
Miao Xie89d43462014-01-15 20:00:57 +08007201 used_block_group,
7202 search_start, num_bytes);
Miao Xie215a63d2014-01-15 20:00:56 +08007203 if (used_block_group != block_group) {
Miao Xiee570fd22014-06-19 10:42:50 +08007204 btrfs_release_block_group(block_group,
7205 delalloc);
Miao Xie215a63d2014-01-15 20:00:56 +08007206 block_group = used_block_group;
7207 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007208 goto checks;
7209 }
7210
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05007211 WARN_ON(last_ptr->block_group != used_block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08007212release_cluster:
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007213 /* If we are on LOOP_NO_EMPTY_SIZE, we can't
7214 * set up a new clusters, so lets just skip it
7215 * and let the allocator find whatever block
7216 * it can find. If we reach this point, we
7217 * will have tried the cluster allocator
7218 * plenty of times and not have found
7219 * anything, so we are likely way too
7220 * fragmented for the clustering stuff to find
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007221 * anything.
7222 *
7223 * However, if the cluster is taken from the
7224 * current block group, release the cluster
7225 * first, so that we stand a better chance of
7226 * succeeding in the unclustered
7227 * allocation. */
7228 if (loop >= LOOP_NO_EMPTY_SIZE &&
Miao Xiee570fd22014-06-19 10:42:50 +08007229 used_block_group != block_group) {
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007230 spin_unlock(&last_ptr->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08007231 btrfs_release_block_group(used_block_group,
7232 delalloc);
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007233 goto unclustered_alloc;
7234 }
7235
Chris Masonfa9c0d792009-04-03 09:47:43 -04007236 /*
7237 * this cluster didn't work out, free it and
7238 * start over
7239 */
7240 btrfs_return_cluster_to_free_space(NULL, last_ptr);
7241
Miao Xiee570fd22014-06-19 10:42:50 +08007242 if (used_block_group != block_group)
7243 btrfs_release_block_group(used_block_group,
7244 delalloc);
7245refill_cluster:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007246 if (loop >= LOOP_NO_EMPTY_SIZE) {
7247 spin_unlock(&last_ptr->refill_lock);
7248 goto unclustered_alloc;
7249 }
7250
Chris Mason8de972b2013-01-04 15:39:43 -05007251 aligned_cluster = max_t(unsigned long,
7252 empty_cluster + empty_size,
7253 block_group->full_stripe_len);
7254
Chris Masonfa9c0d792009-04-03 09:47:43 -04007255 /* allocate a cluster in this block group */
Josef Bacik00361582013-08-14 14:02:47 -04007256 ret = btrfs_find_space_cluster(root, block_group,
7257 last_ptr, search_start,
7258 num_bytes,
7259 aligned_cluster);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007260 if (ret == 0) {
7261 /*
7262 * now pull our allocation out of this
7263 * cluster
7264 */
7265 offset = btrfs_alloc_from_cluster(block_group,
Miao Xiea4820392013-09-09 13:19:42 +08007266 last_ptr,
7267 num_bytes,
7268 search_start,
7269 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007270 if (offset) {
7271 /* we found one, proceed */
7272 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05007273 trace_btrfs_reserve_extent_cluster(root,
7274 block_group, search_start,
7275 num_bytes);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007276 goto checks;
7277 }
Josef Bacik0a243252009-09-11 16:11:20 -04007278 } else if (!cached && loop > LOOP_CACHING_NOWAIT
7279 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04007280 spin_unlock(&last_ptr->refill_lock);
7281
Josef Bacik0a243252009-09-11 16:11:20 -04007282 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04007283 wait_block_group_cache_progress(block_group,
7284 num_bytes + empty_cluster + empty_size);
7285 goto have_block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007286 }
Josef Bacik817d52f2009-07-13 21:29:25 -04007287
Chris Masonfa9c0d792009-04-03 09:47:43 -04007288 /*
7289 * at this point we either didn't find a cluster
7290 * or we weren't able to allocate a block from our
7291 * cluster. Free the cluster we've been trying
7292 * to use, and go to the next block group
7293 */
Josef Bacik0a243252009-09-11 16:11:20 -04007294 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007295 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04007296 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007297 }
7298
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007299unclustered_alloc:
Josef Bacikc759c4e2015-10-02 15:25:10 -04007300 /*
7301 * We are doing an unclustered alloc, set the fragmented flag so
7302 * we don't bother trying to setup a cluster again until we get
7303 * more space.
7304 */
7305 if (unlikely(last_ptr)) {
7306 spin_lock(&last_ptr->lock);
7307 last_ptr->fragmented = 1;
7308 spin_unlock(&last_ptr->lock);
7309 }
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007310 spin_lock(&block_group->free_space_ctl->tree_lock);
7311 if (cached &&
7312 block_group->free_space_ctl->free_space <
7313 num_bytes + empty_cluster + empty_size) {
Miao Xiea4820392013-09-09 13:19:42 +08007314 if (block_group->free_space_ctl->free_space >
7315 max_extent_size)
7316 max_extent_size =
7317 block_group->free_space_ctl->free_space;
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007318 spin_unlock(&block_group->free_space_ctl->tree_lock);
7319 goto loop;
7320 }
7321 spin_unlock(&block_group->free_space_ctl->tree_lock);
7322
Josef Bacik6226cb0a2009-04-03 10:14:18 -04007323 offset = btrfs_find_space_for_alloc(block_group, search_start,
Miao Xiea4820392013-09-09 13:19:42 +08007324 num_bytes, empty_size,
7325 &max_extent_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007326 /*
7327 * If we didn't find a chunk, and we haven't failed on this
7328 * block group before, and this block group is in the middle of
7329 * caching and we are ok with waiting, then go ahead and wait
7330 * for progress to be made, and set failed_alloc to true.
7331 *
7332 * If failed_alloc is true then we've already waited on this
7333 * block group once and should move on to the next block group.
7334 */
7335 if (!offset && !failed_alloc && !cached &&
7336 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04007337 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007338 num_bytes + empty_size);
7339 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04007340 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007341 } else if (!offset) {
7342 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04007343 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007344checks:
David Sterba4e54b172014-06-05 01:39:19 +02007345 search_start = ALIGN(offset, root->stripesize);
Chris Masone37c9e62007-05-09 20:13:14 -04007346
Josef Bacik2552d172009-04-03 10:14:19 -04007347 /* move on to the next group */
7348 if (search_start + num_bytes >
Miao Xie215a63d2014-01-15 20:00:56 +08007349 block_group->key.objectid + block_group->key.offset) {
7350 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04007351 goto loop;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04007352 }
Josef Bacik80eb2342008-10-29 14:49:05 -04007353
Josef Bacik6226cb0a2009-04-03 10:14:18 -04007354 if (offset < search_start)
Miao Xie215a63d2014-01-15 20:00:56 +08007355 btrfs_add_free_space(block_group, offset,
Josef Bacik6226cb0a2009-04-03 10:14:18 -04007356 search_start - offset);
7357 BUG_ON(offset > search_start);
7358
Miao Xie215a63d2014-01-15 20:00:56 +08007359 ret = btrfs_update_reserved_bytes(block_group, num_bytes,
Miao Xiee570fd22014-06-19 10:42:50 +08007360 alloc_type, delalloc);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007361 if (ret == -EAGAIN) {
Miao Xie215a63d2014-01-15 20:00:56 +08007362 btrfs_add_free_space(block_group, offset, num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007363 goto loop;
7364 }
Yan Zheng11833d62009-09-11 16:11:19 -04007365
Josef Bacik2552d172009-04-03 10:14:19 -04007366 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007367 ins->objectid = search_start;
7368 ins->offset = num_bytes;
7369
Josef Bacik3f7de032011-11-10 08:29:20 -05007370 trace_btrfs_reserve_extent(orig_root, block_group,
7371 search_start, num_bytes);
Miao Xiee570fd22014-06-19 10:42:50 +08007372 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007373 break;
7374loop:
Josef Bacik0a243252009-09-11 16:11:20 -04007375 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007376 failed_alloc = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04007377 BUG_ON(index != get_block_group_index(block_group));
Miao Xiee570fd22014-06-19 10:42:50 +08007378 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007379 }
7380 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05007381
chandan13a0db52015-11-02 13:59:46 +05307382 if ((loop == LOOP_CACHING_NOWAIT) && have_caching_bg
7383 && !orig_have_caching_bg)
7384 orig_have_caching_bg = true;
7385
Miao Xie60d2adb2011-09-09 17:34:35 +08007386 if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg)
7387 goto search;
7388
Yan, Zhengb742bb82010-05-16 10:46:24 -04007389 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
7390 goto search;
7391
Josef Bacik285ff5a2012-01-13 15:27:45 -05007392 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05007393 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
7394 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04007395 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
7396 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
7397 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
7398 * again
Chris Masonfa9c0d792009-04-03 09:47:43 -04007399 */
Josef Bacik723bda22011-05-27 16:11:38 -04007400 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) {
Yan, Zhengb742bb82010-05-16 10:46:24 -04007401 index = 0;
Josef Bacika5e681d2015-10-01 14:54:10 -04007402 if (loop == LOOP_CACHING_NOWAIT) {
7403 /*
7404 * We want to skip the LOOP_CACHING_WAIT step if we
7405 * don't have any unached bgs and we've alrelady done a
7406 * full search through.
7407 */
chandan13a0db52015-11-02 13:59:46 +05307408 if (orig_have_caching_bg || !full_search)
Josef Bacika5e681d2015-10-01 14:54:10 -04007409 loop = LOOP_CACHING_WAIT;
7410 else
7411 loop = LOOP_ALLOC_CHUNK;
7412 } else {
7413 loop++;
7414 }
7415
Josef Bacik817d52f2009-07-13 21:29:25 -04007416 if (loop == LOOP_ALLOC_CHUNK) {
Josef Bacik00361582013-08-14 14:02:47 -04007417 struct btrfs_trans_handle *trans;
Wang Shilongf017f152014-03-13 13:19:47 +08007418 int exist = 0;
Josef Bacik00361582013-08-14 14:02:47 -04007419
Wang Shilongf017f152014-03-13 13:19:47 +08007420 trans = current->journal_info;
7421 if (trans)
7422 exist = 1;
7423 else
7424 trans = btrfs_join_transaction(root);
7425
Josef Bacik00361582013-08-14 14:02:47 -04007426 if (IS_ERR(trans)) {
7427 ret = PTR_ERR(trans);
7428 goto out;
7429 }
7430
David Sterbab6919a52013-04-29 13:39:40 +00007431 ret = do_chunk_alloc(trans, root, flags,
Josef Bacikea658ba2012-09-11 16:57:25 -04007432 CHUNK_ALLOC_FORCE);
Josef Bacika5e681d2015-10-01 14:54:10 -04007433
7434 /*
7435 * If we can't allocate a new chunk we've already looped
7436 * through at least once, move on to the NO_EMPTY_SIZE
7437 * case.
7438 */
7439 if (ret == -ENOSPC)
7440 loop = LOOP_NO_EMPTY_SIZE;
7441
Josef Bacikea658ba2012-09-11 16:57:25 -04007442 /*
7443 * Do not bail out on ENOSPC since we
7444 * can do more things.
7445 */
Josef Bacik00361582013-08-14 14:02:47 -04007446 if (ret < 0 && ret != -ENOSPC)
Josef Bacikea658ba2012-09-11 16:57:25 -04007447 btrfs_abort_transaction(trans,
7448 root, ret);
Josef Bacik00361582013-08-14 14:02:47 -04007449 else
7450 ret = 0;
Wang Shilongf017f152014-03-13 13:19:47 +08007451 if (!exist)
7452 btrfs_end_transaction(trans, root);
Josef Bacik00361582013-08-14 14:02:47 -04007453 if (ret)
Josef Bacikea658ba2012-09-11 16:57:25 -04007454 goto out;
Josef Bacik723bda22011-05-27 16:11:38 -04007455 }
7456
7457 if (loop == LOOP_NO_EMPTY_SIZE) {
Josef Bacika5e681d2015-10-01 14:54:10 -04007458 /*
7459 * Don't loop again if we already have no empty_size and
7460 * no empty_cluster.
7461 */
7462 if (empty_size == 0 &&
7463 empty_cluster == 0) {
7464 ret = -ENOSPC;
7465 goto out;
7466 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007467 empty_size = 0;
7468 empty_cluster = 0;
7469 }
Chris Mason42e70e72008-11-07 18:17:11 -05007470
Josef Bacik723bda22011-05-27 16:11:38 -04007471 goto search;
Josef Bacik2552d172009-04-03 10:14:19 -04007472 } else if (!ins->objectid) {
7473 ret = -ENOSPC;
Josef Bacikd82a6f12011-05-11 15:26:06 -04007474 } else if (ins->objectid) {
Josef Bacikc759c4e2015-10-02 15:25:10 -04007475 if (!use_cluster && last_ptr) {
7476 spin_lock(&last_ptr->lock);
7477 last_ptr->window_start = ins->objectid;
7478 spin_unlock(&last_ptr->lock);
7479 }
Josef Bacik2552d172009-04-03 10:14:19 -04007480 ret = 0;
7481 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007482out:
Josef Bacik4f4db212015-09-29 11:40:47 -04007483 if (ret == -ENOSPC) {
7484 spin_lock(&space_info->lock);
7485 space_info->max_extent_size = max_extent_size;
7486 spin_unlock(&space_info->lock);
Miao Xiea4820392013-09-09 13:19:42 +08007487 ins->offset = max_extent_size;
Josef Bacik4f4db212015-09-29 11:40:47 -04007488 }
Chris Mason0f70abe2007-02-28 16:46:22 -05007489 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05007490}
Chris Masonec44a352008-04-28 15:29:52 -04007491
Josef Bacik9ed74f22009-09-11 16:12:44 -04007492static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
7493 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04007494{
7495 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb82010-05-16 10:46:24 -04007496 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007497
Josef Bacik9ed74f22009-09-11 16:12:44 -04007498 spin_lock(&info->lock);
Frank Holtonefe120a2013-12-20 11:37:06 -05007499 printk(KERN_INFO "BTRFS: space_info %llu has %llu free, is %sfull\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007500 info->flags,
7501 info->total_bytes - info->bytes_used - info->bytes_pinned -
7502 info->bytes_reserved - info->bytes_readonly,
Chris Masond3977122009-01-05 21:25:51 -05007503 (info->full) ? "" : "not ");
Frank Holtonefe120a2013-12-20 11:37:06 -05007504 printk(KERN_INFO "BTRFS: space_info total=%llu, used=%llu, pinned=%llu, "
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04007505 "reserved=%llu, may_use=%llu, readonly=%llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007506 info->total_bytes, info->bytes_used, info->bytes_pinned,
7507 info->bytes_reserved, info->bytes_may_use,
7508 info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007509 spin_unlock(&info->lock);
7510
7511 if (!dump_block_groups)
7512 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007513
Josef Bacik80eb2342008-10-29 14:49:05 -04007514 down_read(&info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04007515again:
7516 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04007517 spin_lock(&cache->lock);
Frank Holtonefe120a2013-12-20 11:37:06 -05007518 printk(KERN_INFO "BTRFS: "
7519 "block group %llu has %llu bytes, "
7520 "%llu used %llu pinned %llu reserved %s\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007521 cache->key.objectid, cache->key.offset,
7522 btrfs_block_group_used(&cache->item), cache->pinned,
7523 cache->reserved, cache->ro ? "[readonly]" : "");
Josef Bacik0f9dd462008-09-23 13:14:11 -04007524 btrfs_dump_free_space(cache, bytes);
7525 spin_unlock(&cache->lock);
7526 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04007527 if (++index < BTRFS_NR_RAID_TYPES)
7528 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04007529 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04007530}
Zheng Yane8569812008-09-26 10:05:48 -04007531
Josef Bacik00361582013-08-14 14:02:47 -04007532int btrfs_reserve_extent(struct btrfs_root *root,
Yan Zheng11833d62009-09-11 16:11:19 -04007533 u64 num_bytes, u64 min_alloc_size,
7534 u64 empty_size, u64 hint_byte,
Miao Xiee570fd22014-06-19 10:42:50 +08007535 struct btrfs_key *ins, int is_data, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05007536{
Josef Bacik36af4e02015-09-25 16:13:11 -04007537 bool final_tried = num_bytes == min_alloc_size;
David Sterbab6919a52013-04-29 13:39:40 +00007538 u64 flags;
Chris Masonfec577f2007-02-26 10:40:21 -05007539 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04007540
David Sterbab6919a52013-04-29 13:39:40 +00007541 flags = btrfs_get_alloc_profile(root, is_data);
Chris Mason98d20f62008-04-14 09:46:10 -04007542again:
Chris Masondb945352007-10-15 16:15:53 -04007543 WARN_ON(num_bytes < root->sectorsize);
Josef Bacik00361582013-08-14 14:02:47 -04007544 ret = find_free_extent(root, num_bytes, empty_size, hint_byte, ins,
Miao Xiee570fd22014-06-19 10:42:50 +08007545 flags, delalloc);
Chris Mason3b951512008-04-17 11:29:12 -04007546
Miao Xie9e622d62012-01-26 15:01:12 -05007547 if (ret == -ENOSPC) {
Miao Xiea4820392013-09-09 13:19:42 +08007548 if (!final_tried && ins->offset) {
7549 num_bytes = min(num_bytes >> 1, ins->offset);
Zach Brown24542bf2012-11-16 00:04:43 +00007550 num_bytes = round_down(num_bytes, root->sectorsize);
Miao Xie9e622d62012-01-26 15:01:12 -05007551 num_bytes = max(num_bytes, min_alloc_size);
Miao Xie9e622d62012-01-26 15:01:12 -05007552 if (num_bytes == min_alloc_size)
7553 final_tried = true;
7554 goto again;
7555 } else if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
7556 struct btrfs_space_info *sinfo;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007557
David Sterbab6919a52013-04-29 13:39:40 +00007558 sinfo = __find_space_info(root->fs_info, flags);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007559 btrfs_err(root->fs_info, "allocation failed flags %llu, wanted %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007560 flags, num_bytes);
Jeff Mahoney53804282012-03-01 14:56:28 +01007561 if (sinfo)
7562 dump_space_info(sinfo, num_bytes, 1);
Miao Xie9e622d62012-01-26 15:01:12 -05007563 }
Chris Mason925baed2008-06-25 16:01:30 -04007564 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04007565
7566 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007567}
7568
Chris Masone688b7252011-10-31 20:52:39 -04007569static int __btrfs_free_reserved_extent(struct btrfs_root *root,
Miao Xiee570fd22014-06-19 10:42:50 +08007570 u64 start, u64 len,
7571 int pin, int delalloc)
Chris Mason65b51a02008-08-01 15:11:20 -04007572{
Josef Bacik0f9dd462008-09-23 13:14:11 -04007573 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05007574 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007575
Josef Bacik0f9dd462008-09-23 13:14:11 -04007576 cache = btrfs_lookup_block_group(root->fs_info, start);
7577 if (!cache) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007578 btrfs_err(root->fs_info, "Unable to find block group for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007579 start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04007580 return -ENOSPC;
7581 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05007582
Chris Masone688b7252011-10-31 20:52:39 -04007583 if (pin)
7584 pin_down_extent(root, cache, start, len, 1);
7585 else {
Filipe Mananadcc82f42015-03-23 14:07:40 +00007586 if (btrfs_test_opt(root, DISCARD))
7587 ret = btrfs_discard_extent(root, start, len, NULL);
Chris Masone688b7252011-10-31 20:52:39 -04007588 btrfs_add_free_space(cache, start, len);
Miao Xiee570fd22014-06-19 10:42:50 +08007589 btrfs_update_reserved_bytes(cache, len, RESERVE_FREE, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04007590 }
Dongsheng Yang31193212014-12-12 16:44:35 +08007591
Chris Masonfa9c0d792009-04-03 09:47:43 -04007592 btrfs_put_block_group(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04007593
liubo1abe9b82011-03-24 11:18:59 +00007594 trace_btrfs_reserved_extent_free(root, start, len);
7595
Chris Masone6dcd2d2008-07-17 12:53:50 -04007596 return ret;
7597}
7598
Chris Masone688b7252011-10-31 20:52:39 -04007599int btrfs_free_reserved_extent(struct btrfs_root *root,
Miao Xiee570fd22014-06-19 10:42:50 +08007600 u64 start, u64 len, int delalloc)
Chris Masone688b7252011-10-31 20:52:39 -04007601{
Miao Xiee570fd22014-06-19 10:42:50 +08007602 return __btrfs_free_reserved_extent(root, start, len, 0, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04007603}
7604
7605int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root,
7606 u64 start, u64 len)
7607{
Miao Xiee570fd22014-06-19 10:42:50 +08007608 return __btrfs_free_reserved_extent(root, start, len, 1, 0);
Chris Masone688b7252011-10-31 20:52:39 -04007609}
7610
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007611static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
7612 struct btrfs_root *root,
7613 u64 parent, u64 root_objectid,
7614 u64 flags, u64 owner, u64 offset,
7615 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04007616{
7617 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007618 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007619 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007620 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007621 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007622 struct extent_buffer *leaf;
7623 int type;
7624 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04007625
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007626 if (parent > 0)
7627 type = BTRFS_SHARED_DATA_REF_KEY;
7628 else
7629 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04007630
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007631 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05007632
7633 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00007634 if (!path)
7635 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05007636
Chris Masonb9473432009-03-13 11:00:37 -04007637 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007638 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
7639 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007640 if (ret) {
7641 btrfs_free_path(path);
7642 return ret;
7643 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04007644
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007645 leaf = path->nodes[0];
7646 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05007647 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007648 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
7649 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
7650 btrfs_set_extent_flags(leaf, extent_item,
7651 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05007652
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007653 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
7654 btrfs_set_extent_inline_ref_type(leaf, iref, type);
7655 if (parent > 0) {
7656 struct btrfs_shared_data_ref *ref;
7657 ref = (struct btrfs_shared_data_ref *)(iref + 1);
7658 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
7659 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
7660 } else {
7661 struct btrfs_extent_data_ref *ref;
7662 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
7663 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
7664 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
7665 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
7666 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
7667 }
Chris Mason47e4bb92008-02-01 14:51:59 -05007668
7669 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05007670 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04007671
Josef Bacikce93ec52014-11-17 15:45:48 -05007672 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007673 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007674 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007675 ins->objectid, ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05007676 BUG();
7677 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04007678 trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007679 return ret;
7680}
7681
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007682static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
7683 struct btrfs_root *root,
7684 u64 parent, u64 root_objectid,
7685 u64 flags, struct btrfs_disk_key *key,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01007686 int level, struct btrfs_key *ins)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007687{
7688 int ret;
7689 struct btrfs_fs_info *fs_info = root->fs_info;
7690 struct btrfs_extent_item *extent_item;
7691 struct btrfs_tree_block_info *block_info;
7692 struct btrfs_extent_inline_ref *iref;
7693 struct btrfs_path *path;
7694 struct extent_buffer *leaf;
Josef Bacik3173a182013-03-07 14:22:04 -05007695 u32 size = sizeof(*extent_item) + sizeof(*iref);
Josef Bacikfcebe452014-05-13 17:30:47 -07007696 u64 num_bytes = ins->offset;
Josef Bacik3173a182013-03-07 14:22:04 -05007697 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
7698 SKINNY_METADATA);
7699
7700 if (!skinny_metadata)
7701 size += sizeof(*block_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007702
7703 path = btrfs_alloc_path();
Josef Bacik857cc2f2013-10-07 15:21:08 -04007704 if (!path) {
7705 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
David Sterba707e8a02014-06-04 19:22:26 +02007706 root->nodesize);
Mark Fashehd8926bb2011-07-13 10:38:47 -07007707 return -ENOMEM;
Josef Bacik857cc2f2013-10-07 15:21:08 -04007708 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007709
7710 path->leave_spinning = 1;
7711 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
7712 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007713 if (ret) {
Chris Masondd825252015-04-01 08:36:05 -07007714 btrfs_free_path(path);
Josef Bacik857cc2f2013-10-07 15:21:08 -04007715 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
David Sterba707e8a02014-06-04 19:22:26 +02007716 root->nodesize);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007717 return ret;
7718 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007719
7720 leaf = path->nodes[0];
7721 extent_item = btrfs_item_ptr(leaf, path->slots[0],
7722 struct btrfs_extent_item);
7723 btrfs_set_extent_refs(leaf, extent_item, 1);
7724 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
7725 btrfs_set_extent_flags(leaf, extent_item,
7726 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007727
Josef Bacik3173a182013-03-07 14:22:04 -05007728 if (skinny_metadata) {
7729 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
David Sterba707e8a02014-06-04 19:22:26 +02007730 num_bytes = root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05007731 } else {
7732 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
7733 btrfs_set_tree_block_key(leaf, block_info, key);
7734 btrfs_set_tree_block_level(leaf, block_info, level);
7735 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
7736 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007737
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007738 if (parent > 0) {
7739 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
7740 btrfs_set_extent_inline_ref_type(leaf, iref,
7741 BTRFS_SHARED_BLOCK_REF_KEY);
7742 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
7743 } else {
7744 btrfs_set_extent_inline_ref_type(leaf, iref,
7745 BTRFS_TREE_BLOCK_REF_KEY);
7746 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
7747 }
7748
7749 btrfs_mark_buffer_dirty(leaf);
7750 btrfs_free_path(path);
7751
Josef Bacikce93ec52014-11-17 15:45:48 -05007752 ret = update_block_group(trans, root, ins->objectid, root->nodesize,
7753 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007754 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007755 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007756 ins->objectid, ins->offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007757 BUG();
7758 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04007759
David Sterba707e8a02014-06-04 19:22:26 +02007760 trace_btrfs_reserved_extent_alloc(root, ins->objectid, root->nodesize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007761 return ret;
7762}
7763
7764int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
7765 struct btrfs_root *root,
7766 u64 root_objectid, u64 owner,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08007767 u64 offset, u64 ram_bytes,
7768 struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04007769{
7770 int ret;
Chris Mason1c2308f2008-09-23 13:14:13 -04007771
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007772 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04007773
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007774 ret = btrfs_add_delayed_data_ref(root->fs_info, trans, ins->objectid,
7775 ins->offset, 0,
7776 root_objectid, owner, offset,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08007777 ram_bytes, BTRFS_ADD_DELAYED_EXTENT,
7778 NULL);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007779 return ret;
7780}
Chris Masone02119d2008-09-05 16:13:11 -04007781
7782/*
7783 * this is used by the tree logging recovery code. It records that
7784 * an extent has been allocated and makes sure to clear the free
7785 * space cache bits as well
7786 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007787int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
7788 struct btrfs_root *root,
7789 u64 root_objectid, u64 owner, u64 offset,
7790 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04007791{
7792 int ret;
7793 struct btrfs_block_group_cache *block_group;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04007794
7795 /*
7796 * Mixed block groups will exclude before processing the log so we only
7797 * need to do the exlude dance if this fs isn't mixed.
7798 */
7799 if (!btrfs_fs_incompat(root->fs_info, MIXED_GROUPS)) {
7800 ret = __exclude_logged_extent(root, ins->objectid, ins->offset);
7801 if (ret)
7802 return ret;
7803 }
Chris Masone02119d2008-09-05 16:13:11 -04007804
Chris Masone02119d2008-09-05 16:13:11 -04007805 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04007806 if (!block_group)
7807 return -EINVAL;
Yan Zheng11833d62009-09-11 16:11:19 -04007808
Josef Bacikfb25e912011-07-26 17:00:46 -04007809 ret = btrfs_update_reserved_bytes(block_group, ins->offset,
Miao Xiee570fd22014-06-19 10:42:50 +08007810 RESERVE_ALLOC_NO_ACCOUNT, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007811 BUG_ON(ret); /* logic error */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007812 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
7813 0, owner, offset, ins, 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04007814 btrfs_put_block_group(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04007815 return ret;
7816}
7817
Eric Sandeen48a3b632013-04-25 20:41:01 +00007818static struct extent_buffer *
7819btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
David Sterbafe864572014-06-15 02:28:42 +02007820 u64 bytenr, int level)
Chris Mason65b51a02008-08-01 15:11:20 -04007821{
7822 struct extent_buffer *buf;
7823
David Sterbaa83fffb2014-06-15 02:39:54 +02007824 buf = btrfs_find_create_tree_block(root, bytenr);
Chris Mason65b51a02008-08-01 15:11:20 -04007825 if (!buf)
7826 return ERR_PTR(-ENOMEM);
7827 btrfs_set_header_generation(buf, trans->transid);
Chris Mason85d4e462011-07-26 16:11:19 -04007828 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04007829 btrfs_tree_lock(buf);
Daniel Dressler01d58472014-11-21 17:15:07 +09007830 clean_tree_block(trans, root->fs_info, buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05007831 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
Chris Masonb4ce94d2009-02-04 09:25:08 -05007832
7833 btrfs_set_lock_blocking(buf);
Chris Mason65b51a02008-08-01 15:11:20 -04007834 btrfs_set_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05007835
Chris Masond0c803c2008-09-11 16:17:57 -04007836 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Filipe Manana656f30d2014-09-26 12:25:56 +01007837 buf->log_index = root->log_transid % 2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00007838 /*
7839 * we allow two log transactions at a time, use different
7840 * EXENT bit to differentiate dirty pages.
7841 */
Filipe Manana656f30d2014-09-26 12:25:56 +01007842 if (buf->log_index == 0)
Yan, Zheng8cef4e12009-11-12 09:33:26 +00007843 set_extent_dirty(&root->dirty_log_pages, buf->start,
7844 buf->start + buf->len - 1, GFP_NOFS);
7845 else
7846 set_extent_new(&root->dirty_log_pages, buf->start,
7847 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond0c803c2008-09-11 16:17:57 -04007848 } else {
Filipe Manana656f30d2014-09-26 12:25:56 +01007849 buf->log_index = -1;
Chris Masond0c803c2008-09-11 16:17:57 -04007850 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
7851 buf->start + buf->len - 1, GFP_NOFS);
7852 }
Chris Mason65b51a02008-08-01 15:11:20 -04007853 trans->blocks_used++;
Chris Masonb4ce94d2009-02-04 09:25:08 -05007854 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04007855 return buf;
7856}
7857
Yan, Zhengf0486c62010-05-16 10:46:25 -04007858static struct btrfs_block_rsv *
7859use_block_rsv(struct btrfs_trans_handle *trans,
7860 struct btrfs_root *root, u32 blocksize)
7861{
7862 struct btrfs_block_rsv *block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00007863 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007864 int ret;
Miao Xied88033d2013-05-13 13:55:12 +00007865 bool global_updated = false;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007866
7867 block_rsv = get_block_rsv(trans, root);
7868
Miao Xieb586b322013-05-13 13:55:10 +00007869 if (unlikely(block_rsv->size == 0))
7870 goto try_reserve;
Miao Xied88033d2013-05-13 13:55:12 +00007871again:
Yan, Zhengf0486c62010-05-16 10:46:25 -04007872 ret = block_rsv_use_bytes(block_rsv, blocksize);
7873 if (!ret)
7874 return block_rsv;
7875
Miao Xieb586b322013-05-13 13:55:10 +00007876 if (block_rsv->failfast)
7877 return ERR_PTR(ret);
7878
Miao Xied88033d2013-05-13 13:55:12 +00007879 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
7880 global_updated = true;
7881 update_global_block_rsv(root->fs_info);
7882 goto again;
7883 }
7884
Miao Xieb586b322013-05-13 13:55:10 +00007885 if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
7886 static DEFINE_RATELIMIT_STATE(_rs,
7887 DEFAULT_RATELIMIT_INTERVAL * 10,
7888 /*DEFAULT_RATELIMIT_BURST*/ 1);
7889 if (__ratelimit(&_rs))
7890 WARN(1, KERN_DEBUG
Frank Holtonefe120a2013-12-20 11:37:06 -05007891 "BTRFS: block rsv returned %d\n", ret);
Miao Xieb586b322013-05-13 13:55:10 +00007892 }
7893try_reserve:
7894 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
7895 BTRFS_RESERVE_NO_FLUSH);
7896 if (!ret)
7897 return block_rsv;
7898 /*
7899 * If we couldn't reserve metadata bytes try and use some from
Miao Xie5881cfc2013-05-13 13:55:11 +00007900 * the global reserve if its space type is the same as the global
7901 * reservation.
Miao Xieb586b322013-05-13 13:55:10 +00007902 */
Miao Xie5881cfc2013-05-13 13:55:11 +00007903 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
7904 block_rsv->space_info == global_rsv->space_info) {
Miao Xieb586b322013-05-13 13:55:10 +00007905 ret = block_rsv_use_bytes(global_rsv, blocksize);
7906 if (!ret)
7907 return global_rsv;
7908 }
7909 return ERR_PTR(ret);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007910}
7911
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05007912static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
7913 struct btrfs_block_rsv *block_rsv, u32 blocksize)
Yan, Zhengf0486c62010-05-16 10:46:25 -04007914{
7915 block_rsv_add_bytes(block_rsv, blocksize, 0);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05007916 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007917}
7918
Chris Masonfec577f2007-02-26 10:40:21 -05007919/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04007920 * finds a free extent and does all the dirty work required for allocation
Omar Sandoval67b78592015-02-24 02:47:04 -08007921 * returns the tree buffer or an ERR_PTR on error.
Chris Masonfec577f2007-02-26 10:40:21 -05007922 */
David Sterba4d75f8a2014-06-15 01:54:12 +02007923struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans,
7924 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007925 u64 parent, u64 root_objectid,
7926 struct btrfs_disk_key *key, int level,
Jan Schmidt5581a512012-05-16 17:04:52 +02007927 u64 hint, u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05007928{
Chris Masone2fa7222007-03-12 16:22:34 -04007929 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007930 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04007931 struct extent_buffer *buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08007932 struct btrfs_delayed_extent_op *extent_op;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007933 u64 flags = 0;
7934 int ret;
David Sterba4d75f8a2014-06-15 01:54:12 +02007935 u32 blocksize = root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05007936 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
7937 SKINNY_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007938
David Sterbafccb84c2014-09-29 23:53:21 +02007939 if (btrfs_test_is_dummy_root(root)) {
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04007940 buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr,
David Sterbafe864572014-06-15 02:28:42 +02007941 level);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04007942 if (!IS_ERR(buf))
7943 root->alloc_bytenr += blocksize;
7944 return buf;
7945 }
David Sterbafccb84c2014-09-29 23:53:21 +02007946
Yan, Zhengf0486c62010-05-16 10:46:25 -04007947 block_rsv = use_block_rsv(trans, root, blocksize);
7948 if (IS_ERR(block_rsv))
7949 return ERR_CAST(block_rsv);
7950
Josef Bacik00361582013-08-14 14:02:47 -04007951 ret = btrfs_reserve_extent(root, blocksize, blocksize,
Miao Xiee570fd22014-06-19 10:42:50 +08007952 empty_size, hint, &ins, 0, 0);
Omar Sandoval67b78592015-02-24 02:47:04 -08007953 if (ret)
7954 goto out_unuse;
Chris Mason55c69072008-01-09 15:55:33 -05007955
David Sterbafe864572014-06-15 02:28:42 +02007956 buf = btrfs_init_new_buffer(trans, root, ins.objectid, level);
Omar Sandoval67b78592015-02-24 02:47:04 -08007957 if (IS_ERR(buf)) {
7958 ret = PTR_ERR(buf);
7959 goto out_free_reserved;
7960 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04007961
7962 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
7963 if (parent == 0)
7964 parent = ins.objectid;
7965 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
7966 } else
7967 BUG_ON(parent > 0);
7968
7969 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
Miao Xie78a61842012-11-21 02:21:28 +00007970 extent_op = btrfs_alloc_delayed_extent_op();
Omar Sandoval67b78592015-02-24 02:47:04 -08007971 if (!extent_op) {
7972 ret = -ENOMEM;
7973 goto out_free_buf;
7974 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04007975 if (key)
7976 memcpy(&extent_op->key, key, sizeof(extent_op->key));
7977 else
7978 memset(&extent_op->key, 0, sizeof(extent_op->key));
7979 extent_op->flags_to_set = flags;
Josef Bacik3173a182013-03-07 14:22:04 -05007980 if (skinny_metadata)
7981 extent_op->update_key = 0;
7982 else
7983 extent_op->update_key = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007984 extent_op->update_flags = 1;
7985 extent_op->is_data = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04007986 extent_op->level = level;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007987
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007988 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
Omar Sandoval67b78592015-02-24 02:47:04 -08007989 ins.objectid, ins.offset,
7990 parent, root_objectid, level,
7991 BTRFS_ADD_DELAYED_EXTENT,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01007992 extent_op);
Omar Sandoval67b78592015-02-24 02:47:04 -08007993 if (ret)
7994 goto out_free_delayed;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007995 }
Chris Masonfec577f2007-02-26 10:40:21 -05007996 return buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08007997
7998out_free_delayed:
7999 btrfs_free_delayed_extent_op(extent_op);
8000out_free_buf:
8001 free_extent_buffer(buf);
8002out_free_reserved:
8003 btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 0);
8004out_unuse:
8005 unuse_block_rsv(root->fs_info, block_rsv, blocksize);
8006 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05008007}
Chris Masona28ec192007-03-06 20:08:01 -05008008
Yan Zheng2c47e6052009-06-27 21:07:35 -04008009struct walk_control {
8010 u64 refs[BTRFS_MAX_LEVEL];
8011 u64 flags[BTRFS_MAX_LEVEL];
8012 struct btrfs_key update_progress;
8013 int stage;
8014 int level;
8015 int shared_level;
8016 int update_ref;
8017 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008018 int reada_slot;
8019 int reada_count;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008020 int for_reloc;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008021};
8022
8023#define DROP_REFERENCE 1
8024#define UPDATE_BACKREF 2
8025
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008026static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
8027 struct btrfs_root *root,
8028 struct walk_control *wc,
8029 struct btrfs_path *path)
8030{
8031 u64 bytenr;
8032 u64 generation;
8033 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008034 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008035 u32 nritems;
8036 u32 blocksize;
8037 struct btrfs_key key;
8038 struct extent_buffer *eb;
8039 int ret;
8040 int slot;
8041 int nread = 0;
8042
8043 if (path->slots[wc->level] < wc->reada_slot) {
8044 wc->reada_count = wc->reada_count * 2 / 3;
8045 wc->reada_count = max(wc->reada_count, 2);
8046 } else {
8047 wc->reada_count = wc->reada_count * 3 / 2;
8048 wc->reada_count = min_t(int, wc->reada_count,
8049 BTRFS_NODEPTRS_PER_BLOCK(root));
8050 }
8051
8052 eb = path->nodes[wc->level];
8053 nritems = btrfs_header_nritems(eb);
David Sterba707e8a02014-06-04 19:22:26 +02008054 blocksize = root->nodesize;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008055
8056 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
8057 if (nread >= wc->reada_count)
8058 break;
8059
8060 cond_resched();
8061 bytenr = btrfs_node_blockptr(eb, slot);
8062 generation = btrfs_node_ptr_generation(eb, slot);
8063
8064 if (slot == path->slots[wc->level])
8065 goto reada;
8066
8067 if (wc->stage == UPDATE_BACKREF &&
8068 generation <= root->root_key.offset)
8069 continue;
8070
Yan, Zheng94fcca92009-10-09 09:25:16 -04008071 /* We don't lock the tree block, it's OK to be racy here */
Josef Bacik3173a182013-03-07 14:22:04 -05008072 ret = btrfs_lookup_extent_info(trans, root, bytenr,
8073 wc->level - 1, 1, &refs,
8074 &flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008075 /* We don't care about errors in readahead. */
8076 if (ret < 0)
8077 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008078 BUG_ON(refs == 0);
8079
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008080 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008081 if (refs == 1)
8082 goto reada;
8083
Yan, Zheng94fcca92009-10-09 09:25:16 -04008084 if (wc->level == 1 &&
8085 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8086 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008087 if (!wc->update_ref ||
8088 generation <= root->root_key.offset)
8089 continue;
8090 btrfs_node_key_to_cpu(eb, &key, slot);
8091 ret = btrfs_comp_cpu_keys(&key,
8092 &wc->update_progress);
8093 if (ret < 0)
8094 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008095 } else {
8096 if (wc->level == 1 &&
8097 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8098 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008099 }
8100reada:
David Sterbad3e46fe2014-06-15 02:04:19 +02008101 readahead_tree_block(root, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008102 nread++;
8103 }
8104 wc->reada_slot = slot;
8105}
8106
Qu Wenruo0ed47922015-04-16 16:55:08 +08008107/*
Mark Fasheh82bd1012015-11-05 14:38:00 -08008108 * These may not be seen by the usual inc/dec ref code so we have to
8109 * add them here.
Qu Wenruo0ed47922015-04-16 16:55:08 +08008110 */
Mark Fasheh82bd1012015-11-05 14:38:00 -08008111static int record_one_subtree_extent(struct btrfs_trans_handle *trans,
8112 struct btrfs_root *root, u64 bytenr,
8113 u64 num_bytes)
8114{
8115 struct btrfs_qgroup_extent_record *qrecord;
8116 struct btrfs_delayed_ref_root *delayed_refs;
8117
8118 qrecord = kmalloc(sizeof(*qrecord), GFP_NOFS);
8119 if (!qrecord)
8120 return -ENOMEM;
8121
8122 qrecord->bytenr = bytenr;
8123 qrecord->num_bytes = num_bytes;
8124 qrecord->old_roots = NULL;
8125
8126 delayed_refs = &trans->transaction->delayed_refs;
8127 spin_lock(&delayed_refs->lock);
8128 if (btrfs_qgroup_insert_dirty_extent(delayed_refs, qrecord))
8129 kfree(qrecord);
8130 spin_unlock(&delayed_refs->lock);
8131
8132 return 0;
8133}
8134
Mark Fasheh11526512014-07-17 12:39:01 -07008135static int account_leaf_items(struct btrfs_trans_handle *trans,
8136 struct btrfs_root *root,
8137 struct extent_buffer *eb)
8138{
8139 int nr = btrfs_header_nritems(eb);
Mark Fasheh82bd1012015-11-05 14:38:00 -08008140 int i, extent_type, ret;
Mark Fasheh11526512014-07-17 12:39:01 -07008141 struct btrfs_key key;
8142 struct btrfs_file_extent_item *fi;
8143 u64 bytenr, num_bytes;
8144
Mark Fasheh82bd1012015-11-05 14:38:00 -08008145 /* We can be called directly from walk_up_proc() */
8146 if (!root->fs_info->quota_enabled)
8147 return 0;
8148
Mark Fasheh11526512014-07-17 12:39:01 -07008149 for (i = 0; i < nr; i++) {
8150 btrfs_item_key_to_cpu(eb, &key, i);
8151
8152 if (key.type != BTRFS_EXTENT_DATA_KEY)
8153 continue;
8154
8155 fi = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
8156 /* filter out non qgroup-accountable extents */
8157 extent_type = btrfs_file_extent_type(eb, fi);
8158
8159 if (extent_type == BTRFS_FILE_EXTENT_INLINE)
8160 continue;
8161
8162 bytenr = btrfs_file_extent_disk_bytenr(eb, fi);
8163 if (!bytenr)
8164 continue;
8165
8166 num_bytes = btrfs_file_extent_disk_num_bytes(eb, fi);
Mark Fasheh82bd1012015-11-05 14:38:00 -08008167
8168 ret = record_one_subtree_extent(trans, root, bytenr, num_bytes);
8169 if (ret)
8170 return ret;
Mark Fasheh11526512014-07-17 12:39:01 -07008171 }
8172 return 0;
8173}
8174
8175/*
8176 * Walk up the tree from the bottom, freeing leaves and any interior
8177 * nodes which have had all slots visited. If a node (leaf or
8178 * interior) is freed, the node above it will have it's slot
8179 * incremented. The root node will never be freed.
8180 *
8181 * At the end of this function, we should have a path which has all
8182 * slots incremented to the next position for a search. If we need to
8183 * read a new node it will be NULL and the node above it will have the
8184 * correct slot selected for a later read.
8185 *
8186 * If we increment the root nodes slot counter past the number of
8187 * elements, 1 is returned to signal completion of the search.
8188 */
8189static int adjust_slots_upwards(struct btrfs_root *root,
8190 struct btrfs_path *path, int root_level)
8191{
8192 int level = 0;
8193 int nr, slot;
8194 struct extent_buffer *eb;
8195
8196 if (root_level == 0)
8197 return 1;
8198
8199 while (level <= root_level) {
8200 eb = path->nodes[level];
8201 nr = btrfs_header_nritems(eb);
8202 path->slots[level]++;
8203 slot = path->slots[level];
8204 if (slot >= nr || level == 0) {
8205 /*
8206 * Don't free the root - we will detect this
8207 * condition after our loop and return a
8208 * positive value for caller to stop walking the tree.
8209 */
8210 if (level != root_level) {
8211 btrfs_tree_unlock_rw(eb, path->locks[level]);
8212 path->locks[level] = 0;
8213
8214 free_extent_buffer(eb);
8215 path->nodes[level] = NULL;
8216 path->slots[level] = 0;
8217 }
8218 } else {
8219 /*
8220 * We have a valid slot to walk back down
8221 * from. Stop here so caller can process these
8222 * new nodes.
8223 */
8224 break;
8225 }
8226
8227 level++;
8228 }
8229
8230 eb = path->nodes[root_level];
8231 if (path->slots[root_level] >= btrfs_header_nritems(eb))
8232 return 1;
8233
8234 return 0;
8235}
8236
8237/*
8238 * root_eb is the subtree root and is locked before this function is called.
8239 */
8240static int account_shared_subtree(struct btrfs_trans_handle *trans,
8241 struct btrfs_root *root,
8242 struct extent_buffer *root_eb,
8243 u64 root_gen,
8244 int root_level)
8245{
8246 int ret = 0;
8247 int level;
8248 struct extent_buffer *eb = root_eb;
8249 struct btrfs_path *path = NULL;
8250
8251 BUG_ON(root_level < 0 || root_level > BTRFS_MAX_LEVEL);
8252 BUG_ON(root_eb == NULL);
8253
8254 if (!root->fs_info->quota_enabled)
8255 return 0;
8256
8257 if (!extent_buffer_uptodate(root_eb)) {
8258 ret = btrfs_read_buffer(root_eb, root_gen);
8259 if (ret)
8260 goto out;
8261 }
8262
8263 if (root_level == 0) {
8264 ret = account_leaf_items(trans, root, root_eb);
8265 goto out;
8266 }
8267
8268 path = btrfs_alloc_path();
8269 if (!path)
8270 return -ENOMEM;
8271
8272 /*
8273 * Walk down the tree. Missing extent blocks are filled in as
8274 * we go. Metadata is accounted every time we read a new
8275 * extent block.
8276 *
8277 * When we reach a leaf, we account for file extent items in it,
8278 * walk back up the tree (adjusting slot pointers as we go)
8279 * and restart the search process.
8280 */
8281 extent_buffer_get(root_eb); /* For path */
8282 path->nodes[root_level] = root_eb;
8283 path->slots[root_level] = 0;
8284 path->locks[root_level] = 0; /* so release_path doesn't try to unlock */
8285walk_down:
8286 level = root_level;
8287 while (level >= 0) {
8288 if (path->nodes[level] == NULL) {
Mark Fasheh11526512014-07-17 12:39:01 -07008289 int parent_slot;
8290 u64 child_gen;
8291 u64 child_bytenr;
8292
8293 /* We need to get child blockptr/gen from
8294 * parent before we can read it. */
8295 eb = path->nodes[level + 1];
8296 parent_slot = path->slots[level + 1];
8297 child_bytenr = btrfs_node_blockptr(eb, parent_slot);
8298 child_gen = btrfs_node_ptr_generation(eb, parent_slot);
8299
David Sterbace86cd52014-06-15 01:07:32 +02008300 eb = read_tree_block(root, child_bytenr, child_gen);
Liu Bo64c043d2015-05-25 17:30:15 +08008301 if (IS_ERR(eb)) {
8302 ret = PTR_ERR(eb);
8303 goto out;
8304 } else if (!extent_buffer_uptodate(eb)) {
Liu Bo8635eda2015-05-25 17:30:14 +08008305 free_extent_buffer(eb);
Liu Bo64c043d2015-05-25 17:30:15 +08008306 ret = -EIO;
Mark Fasheh11526512014-07-17 12:39:01 -07008307 goto out;
8308 }
8309
8310 path->nodes[level] = eb;
8311 path->slots[level] = 0;
8312
8313 btrfs_tree_read_lock(eb);
8314 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
8315 path->locks[level] = BTRFS_READ_LOCK_BLOCKING;
Mark Fasheh82bd1012015-11-05 14:38:00 -08008316
8317 ret = record_one_subtree_extent(trans, root, child_bytenr,
8318 root->nodesize);
8319 if (ret)
8320 goto out;
Mark Fasheh11526512014-07-17 12:39:01 -07008321 }
8322
8323 if (level == 0) {
8324 ret = account_leaf_items(trans, root, path->nodes[level]);
8325 if (ret)
8326 goto out;
8327
8328 /* Nonzero return here means we completed our search */
8329 ret = adjust_slots_upwards(root, path, root_level);
8330 if (ret)
8331 break;
8332
8333 /* Restart search with new slots */
8334 goto walk_down;
8335 }
8336
8337 level--;
8338 }
8339
8340 ret = 0;
8341out:
8342 btrfs_free_path(path);
8343
8344 return ret;
8345}
8346
Chris Mason9aca1d52007-03-13 11:09:37 -04008347/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008348 * helper to process tree block while walking down the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04008349 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04008350 * when wc->stage == UPDATE_BACKREF, this function updates
8351 * back refs for pointers in the block.
8352 *
8353 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04008354 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008355static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
8356 struct btrfs_root *root,
8357 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008358 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04008359{
8360 int level = wc->level;
8361 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04008362 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
8363 int ret;
8364
8365 if (wc->stage == UPDATE_BACKREF &&
8366 btrfs_header_owner(eb) != root->root_key.objectid)
8367 return 1;
8368
8369 /*
8370 * when reference count of tree block is 1, it won't increase
8371 * again. once full backref flag is set, we never clear it.
8372 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04008373 if (lookup_info &&
8374 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
8375 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008376 BUG_ON(!path->locks[level]);
8377 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05008378 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008379 &wc->refs[level],
8380 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008381 BUG_ON(ret == -ENOMEM);
8382 if (ret)
8383 return ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008384 BUG_ON(wc->refs[level] == 0);
8385 }
8386
Yan Zheng2c47e6052009-06-27 21:07:35 -04008387 if (wc->stage == DROP_REFERENCE) {
8388 if (wc->refs[level] > 1)
8389 return 1;
8390
8391 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04008392 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008393 path->locks[level] = 0;
8394 }
8395 return 0;
8396 }
8397
8398 /* wc->stage == UPDATE_BACKREF */
8399 if (!(wc->flags[level] & flag)) {
8400 BUG_ON(!path->locks[level]);
Josef Bacike339a6b2014-07-02 10:54:25 -07008401 ret = btrfs_inc_ref(trans, root, eb, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008402 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07008403 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008404 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008405 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
Josef Bacikb1c79e02013-05-09 13:49:30 -04008406 eb->len, flag,
8407 btrfs_header_level(eb), 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008408 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008409 wc->flags[level] |= flag;
8410 }
8411
8412 /*
8413 * the block is shared by multiple trees, so it's not good to
8414 * keep the tree lock
8415 */
8416 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04008417 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008418 path->locks[level] = 0;
8419 }
8420 return 0;
8421}
8422
8423/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008424 * helper to process tree block pointer.
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008425 *
8426 * when wc->stage == DROP_REFERENCE, this function checks
8427 * reference count of the block pointed to. if the block
8428 * is shared and we need update back refs for the subtree
8429 * rooted at the block, this function changes wc->stage to
8430 * UPDATE_BACKREF. if the block is shared and there is no
8431 * need to update back, this function drops the reference
8432 * to the block.
8433 *
8434 * NOTE: return value 1 means we should stop walking down.
8435 */
8436static noinline int do_walk_down(struct btrfs_trans_handle *trans,
8437 struct btrfs_root *root,
8438 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008439 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008440{
8441 u64 bytenr;
8442 u64 generation;
8443 u64 parent;
8444 u32 blocksize;
8445 struct btrfs_key key;
8446 struct extent_buffer *next;
8447 int level = wc->level;
8448 int reada = 0;
8449 int ret = 0;
Mark Fasheh11526512014-07-17 12:39:01 -07008450 bool need_account = false;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008451
8452 generation = btrfs_node_ptr_generation(path->nodes[level],
8453 path->slots[level]);
8454 /*
8455 * if the lower level block was created before the snapshot
8456 * was created, we know there is no need to update back refs
8457 * for the subtree
8458 */
8459 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04008460 generation <= root->root_key.offset) {
8461 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008462 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008463 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008464
8465 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
David Sterba707e8a02014-06-04 19:22:26 +02008466 blocksize = root->nodesize;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008467
Daniel Dressler01d58472014-11-21 17:15:07 +09008468 next = btrfs_find_tree_block(root->fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008469 if (!next) {
David Sterbaa83fffb2014-06-15 02:39:54 +02008470 next = btrfs_find_create_tree_block(root, bytenr);
Miao Xie90d2c51d2010-03-25 12:37:12 +00008471 if (!next)
8472 return -ENOMEM;
Josef Bacikb2aaaa32013-07-05 17:05:38 -04008473 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
8474 level - 1);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008475 reada = 1;
8476 }
8477 btrfs_tree_lock(next);
8478 btrfs_set_lock_blocking(next);
8479
Josef Bacik3173a182013-03-07 14:22:04 -05008480 ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008481 &wc->refs[level - 1],
8482 &wc->flags[level - 1]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008483 if (ret < 0) {
8484 btrfs_tree_unlock(next);
8485 return ret;
8486 }
8487
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008488 if (unlikely(wc->refs[level - 1] == 0)) {
8489 btrfs_err(root->fs_info, "Missing references.");
8490 BUG();
8491 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008492 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008493
Yan, Zheng94fcca92009-10-09 09:25:16 -04008494 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008495 if (wc->refs[level - 1] > 1) {
Mark Fasheh11526512014-07-17 12:39:01 -07008496 need_account = true;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008497 if (level == 1 &&
8498 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8499 goto skip;
8500
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008501 if (!wc->update_ref ||
8502 generation <= root->root_key.offset)
8503 goto skip;
8504
8505 btrfs_node_key_to_cpu(path->nodes[level], &key,
8506 path->slots[level]);
8507 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
8508 if (ret < 0)
8509 goto skip;
8510
8511 wc->stage = UPDATE_BACKREF;
8512 wc->shared_level = level - 1;
8513 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008514 } else {
8515 if (level == 1 &&
8516 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8517 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008518 }
8519
Chris Masonb9fab912012-05-06 07:23:47 -04008520 if (!btrfs_buffer_uptodate(next, generation, 0)) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008521 btrfs_tree_unlock(next);
8522 free_extent_buffer(next);
8523 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008524 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008525 }
8526
8527 if (!next) {
8528 if (reada && level == 1)
8529 reada_walk_down(trans, root, wc, path);
David Sterbace86cd52014-06-15 01:07:32 +02008530 next = read_tree_block(root, bytenr, generation);
Liu Bo64c043d2015-05-25 17:30:15 +08008531 if (IS_ERR(next)) {
8532 return PTR_ERR(next);
8533 } else if (!extent_buffer_uptodate(next)) {
Josef Bacik416bc652013-04-23 14:17:42 -04008534 free_extent_buffer(next);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00008535 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04008536 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008537 btrfs_tree_lock(next);
8538 btrfs_set_lock_blocking(next);
8539 }
8540
8541 level--;
8542 BUG_ON(level != btrfs_header_level(next));
8543 path->nodes[level] = next;
8544 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008545 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008546 wc->level = level;
8547 if (wc->level == 1)
8548 wc->reada_slot = 0;
8549 return 0;
8550skip:
8551 wc->refs[level - 1] = 0;
8552 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008553 if (wc->stage == DROP_REFERENCE) {
8554 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
8555 parent = path->nodes[level]->start;
8556 } else {
8557 BUG_ON(root->root_key.objectid !=
8558 btrfs_header_owner(path->nodes[level]));
8559 parent = 0;
8560 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008561
Mark Fasheh11526512014-07-17 12:39:01 -07008562 if (need_account) {
8563 ret = account_shared_subtree(trans, root, next,
8564 generation, level - 1);
8565 if (ret) {
David Sterba94647322015-10-08 11:01:36 +02008566 btrfs_err_rl(root->fs_info,
8567 "Error "
Mark Fasheh11526512014-07-17 12:39:01 -07008568 "%d accounting shared subtree. Quota "
David Sterba94647322015-10-08 11:01:36 +02008569 "is out of sync, rescan required.",
8570 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07008571 }
8572 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008573 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01008574 root->root_key.objectid, level - 1, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008575 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008576 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008577 btrfs_tree_unlock(next);
8578 free_extent_buffer(next);
Yan, Zheng94fcca92009-10-09 09:25:16 -04008579 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008580 return 1;
8581}
8582
8583/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008584 * helper to process tree block while walking up the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04008585 *
8586 * when wc->stage == DROP_REFERENCE, this function drops
8587 * reference count on the block.
8588 *
8589 * when wc->stage == UPDATE_BACKREF, this function changes
8590 * wc->stage back to DROP_REFERENCE if we changed wc->stage
8591 * to UPDATE_BACKREF previously while processing the block.
8592 *
8593 * NOTE: return value 1 means we should stop walking up.
8594 */
8595static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
8596 struct btrfs_root *root,
8597 struct btrfs_path *path,
8598 struct walk_control *wc)
8599{
Yan, Zhengf0486c62010-05-16 10:46:25 -04008600 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008601 int level = wc->level;
8602 struct extent_buffer *eb = path->nodes[level];
8603 u64 parent = 0;
8604
8605 if (wc->stage == UPDATE_BACKREF) {
8606 BUG_ON(wc->shared_level < level);
8607 if (level < wc->shared_level)
8608 goto out;
8609
Yan Zheng2c47e6052009-06-27 21:07:35 -04008610 ret = find_next_key(path, level + 1, &wc->update_progress);
8611 if (ret > 0)
8612 wc->update_ref = 0;
8613
8614 wc->stage = DROP_REFERENCE;
8615 wc->shared_level = -1;
8616 path->slots[level] = 0;
8617
8618 /*
8619 * check reference count again if the block isn't locked.
8620 * we should start walking down the tree again if reference
8621 * count is one.
8622 */
8623 if (!path->locks[level]) {
8624 BUG_ON(level == 0);
8625 btrfs_tree_lock(eb);
8626 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04008627 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008628
8629 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05008630 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008631 &wc->refs[level],
8632 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008633 if (ret < 0) {
8634 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00008635 path->locks[level] = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008636 return ret;
8637 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008638 BUG_ON(wc->refs[level] == 0);
8639 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04008640 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00008641 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008642 return 1;
8643 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008644 }
8645 }
8646
8647 /* wc->stage == DROP_REFERENCE */
8648 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
8649
8650 if (wc->refs[level] == 1) {
8651 if (level == 0) {
8652 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
Josef Bacike339a6b2014-07-02 10:54:25 -07008653 ret = btrfs_dec_ref(trans, root, eb, 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008654 else
Josef Bacike339a6b2014-07-02 10:54:25 -07008655 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008656 BUG_ON(ret); /* -ENOMEM */
Mark Fasheh11526512014-07-17 12:39:01 -07008657 ret = account_leaf_items(trans, root, eb);
8658 if (ret) {
David Sterba94647322015-10-08 11:01:36 +02008659 btrfs_err_rl(root->fs_info,
8660 "error "
Mark Fasheh11526512014-07-17 12:39:01 -07008661 "%d accounting leaf items. Quota "
David Sterba94647322015-10-08 11:01:36 +02008662 "is out of sync, rescan required.",
8663 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07008664 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008665 }
8666 /* make block locked assertion in clean_tree_block happy */
8667 if (!path->locks[level] &&
8668 btrfs_header_generation(eb) == trans->transid) {
8669 btrfs_tree_lock(eb);
8670 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04008671 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008672 }
Daniel Dressler01d58472014-11-21 17:15:07 +09008673 clean_tree_block(trans, root->fs_info, eb);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008674 }
8675
8676 if (eb == root->node) {
8677 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
8678 parent = eb->start;
8679 else
8680 BUG_ON(root->root_key.objectid !=
8681 btrfs_header_owner(eb));
8682 } else {
8683 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
8684 parent = path->nodes[level + 1]->start;
8685 else
8686 BUG_ON(root->root_key.objectid !=
8687 btrfs_header_owner(path->nodes[level + 1]));
8688 }
8689
Jan Schmidt5581a512012-05-16 17:04:52 +02008690 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008691out:
8692 wc->refs[level] = 0;
8693 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008694 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008695}
8696
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008697static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
8698 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008699 struct btrfs_path *path,
8700 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04008701{
Yan Zheng2c47e6052009-06-27 21:07:35 -04008702 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008703 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008704 int ret;
8705
Yan Zheng2c47e6052009-06-27 21:07:35 -04008706 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04008707 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008708 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04008709 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008710
Yan Zheng2c47e6052009-06-27 21:07:35 -04008711 if (level == 0)
8712 break;
8713
Yan, Zheng7a7965f2010-02-01 02:41:17 +00008714 if (path->slots[level] >=
8715 btrfs_header_nritems(path->nodes[level]))
8716 break;
8717
Yan, Zheng94fcca92009-10-09 09:25:16 -04008718 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008719 if (ret > 0) {
8720 path->slots[level]++;
8721 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00008722 } else if (ret < 0)
8723 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008724 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008725 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04008726 return 0;
8727}
8728
Chris Masond3977122009-01-05 21:25:51 -05008729static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05008730 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04008731 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008732 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05008733{
Yan Zheng2c47e6052009-06-27 21:07:35 -04008734 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05008735 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04008736
Yan Zheng2c47e6052009-06-27 21:07:35 -04008737 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
8738 while (level < max_level && path->nodes[level]) {
8739 wc->level = level;
8740 if (path->slots[level] + 1 <
8741 btrfs_header_nritems(path->nodes[level])) {
8742 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05008743 return 0;
8744 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008745 ret = walk_up_proc(trans, root, path, wc);
8746 if (ret > 0)
8747 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05008748
Yan Zheng2c47e6052009-06-27 21:07:35 -04008749 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04008750 btrfs_tree_unlock_rw(path->nodes[level],
8751 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008752 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008753 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008754 free_extent_buffer(path->nodes[level]);
8755 path->nodes[level] = NULL;
8756 level++;
Chris Mason20524f02007-03-10 06:35:47 -05008757 }
8758 }
8759 return 1;
8760}
8761
Chris Mason9aca1d52007-03-13 11:09:37 -04008762/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04008763 * drop a subvolume tree.
8764 *
8765 * this function traverses the tree freeing any blocks that only
8766 * referenced by the tree.
8767 *
8768 * when a shared tree block is found. this function decreases its
8769 * reference count by one. if update_ref is true, this function
8770 * also make sure backrefs for the shared block and all lower level
8771 * blocks are properly updated.
David Sterba9d1a2a32013-03-12 15:13:28 +00008772 *
8773 * If called with for_reloc == 0, may exit early with -EAGAIN
Chris Mason9aca1d52007-03-13 11:09:37 -04008774 */
Jeff Mahoney2c536792011-10-03 23:22:41 -04008775int btrfs_drop_snapshot(struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008776 struct btrfs_block_rsv *block_rsv, int update_ref,
8777 int for_reloc)
Chris Mason20524f02007-03-10 06:35:47 -05008778{
Chris Mason5caf2a02007-04-02 11:20:42 -04008779 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008780 struct btrfs_trans_handle *trans;
8781 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04008782 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008783 struct walk_control *wc;
8784 struct btrfs_key key;
8785 int err = 0;
8786 int ret;
8787 int level;
Josef Bacikd29a9f62013-07-17 19:30:20 -04008788 bool root_dropped = false;
Chris Mason20524f02007-03-10 06:35:47 -05008789
Mark Fasheh11526512014-07-17 12:39:01 -07008790 btrfs_debug(root->fs_info, "Drop subvolume %llu", root->objectid);
8791
Chris Mason5caf2a02007-04-02 11:20:42 -04008792 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008793 if (!path) {
8794 err = -ENOMEM;
8795 goto out;
8796 }
Chris Mason20524f02007-03-10 06:35:47 -05008797
Yan Zheng2c47e6052009-06-27 21:07:35 -04008798 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07008799 if (!wc) {
8800 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008801 err = -ENOMEM;
8802 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07008803 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008804
Yan, Zhenga22285a2010-05-16 10:48:46 -04008805 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008806 if (IS_ERR(trans)) {
8807 err = PTR_ERR(trans);
8808 goto out_free;
8809 }
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00008810
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008811 if (block_rsv)
8812 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008813
Chris Mason9f3a7422007-08-07 15:52:19 -04008814 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008815 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008816 path->nodes[level] = btrfs_lock_root_node(root);
8817 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04008818 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008819 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008820 memset(&wc->update_progress, 0,
8821 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04008822 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04008823 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008824 memcpy(&wc->update_progress, &key,
8825 sizeof(wc->update_progress));
8826
Chris Mason6702ed42007-08-07 16:15:09 -04008827 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008828 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04008829 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008830 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
8831 path->lowest_level = 0;
8832 if (ret < 0) {
8833 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008834 goto out_end_trans;
Chris Mason9f3a7422007-08-07 15:52:19 -04008835 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008836 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008837
Chris Mason7d9eb122008-07-08 14:19:17 -04008838 /*
8839 * unlock our path, this is safe because only this
8840 * function is allowed to delete this snapshot
8841 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008842 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04008843
Yan Zheng2c47e6052009-06-27 21:07:35 -04008844 level = btrfs_header_level(root->node);
8845 while (1) {
8846 btrfs_tree_lock(path->nodes[level]);
8847 btrfs_set_lock_blocking(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04008848 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008849
8850 ret = btrfs_lookup_extent_info(trans, root,
8851 path->nodes[level]->start,
Josef Bacik3173a182013-03-07 14:22:04 -05008852 level, 1, &wc->refs[level],
Yan Zheng2c47e6052009-06-27 21:07:35 -04008853 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008854 if (ret < 0) {
8855 err = ret;
8856 goto out_end_trans;
8857 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008858 BUG_ON(wc->refs[level] == 0);
8859
8860 if (level == root_item->drop_level)
8861 break;
8862
8863 btrfs_tree_unlock(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04008864 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008865 WARN_ON(wc->refs[level] != 1);
8866 level--;
8867 }
8868 }
8869
8870 wc->level = level;
8871 wc->shared_level = -1;
8872 wc->stage = DROP_REFERENCE;
8873 wc->update_ref = update_ref;
8874 wc->keep_locks = 0;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008875 wc->for_reloc = for_reloc;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008876 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008877
8878 while (1) {
David Sterba9d1a2a32013-03-12 15:13:28 +00008879
Yan Zheng2c47e6052009-06-27 21:07:35 -04008880 ret = walk_down_tree(trans, root, path, wc);
8881 if (ret < 0) {
8882 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04008883 break;
8884 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008885
8886 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
8887 if (ret < 0) {
8888 err = ret;
8889 break;
8890 }
8891
8892 if (ret > 0) {
8893 BUG_ON(wc->stage != DROP_REFERENCE);
8894 break;
8895 }
8896
8897 if (wc->stage == DROP_REFERENCE) {
8898 level = wc->level;
8899 btrfs_node_key(path->nodes[level],
8900 &root_item->drop_progress,
8901 path->slots[level]);
8902 root_item->drop_level = level;
8903 }
8904
8905 BUG_ON(wc->level == 0);
Josef Bacik3c8f2422013-07-15 11:57:06 -04008906 if (btrfs_should_end_transaction(trans, tree_root) ||
8907 (!for_reloc && btrfs_need_cleaner_sleep(root))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008908 ret = btrfs_update_root(trans, tree_root,
8909 &root->root_key,
8910 root_item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008911 if (ret) {
8912 btrfs_abort_transaction(trans, tree_root, ret);
8913 err = ret;
8914 goto out_end_trans;
8915 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008916
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008917 btrfs_end_transaction_throttle(trans, tree_root);
Josef Bacik3c8f2422013-07-15 11:57:06 -04008918 if (!for_reloc && btrfs_need_cleaner_sleep(root)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05008919 pr_debug("BTRFS: drop snapshot early exit\n");
Josef Bacik3c8f2422013-07-15 11:57:06 -04008920 err = -EAGAIN;
8921 goto out_free;
8922 }
8923
Yan, Zhenga22285a2010-05-16 10:48:46 -04008924 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008925 if (IS_ERR(trans)) {
8926 err = PTR_ERR(trans);
8927 goto out_free;
8928 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008929 if (block_rsv)
8930 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04008931 }
Chris Mason20524f02007-03-10 06:35:47 -05008932 }
David Sterbab3b4aa72011-04-21 01:20:15 +02008933 btrfs_release_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008934 if (err)
8935 goto out_end_trans;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008936
8937 ret = btrfs_del_root(trans, tree_root, &root->root_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008938 if (ret) {
8939 btrfs_abort_transaction(trans, tree_root, ret);
8940 goto out_end_trans;
8941 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008942
Yan, Zheng76dda932009-09-21 16:00:26 -04008943 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Miao Xiecb517ea2013-05-15 07:48:19 +00008944 ret = btrfs_find_root(tree_root, &root->root_key, path,
8945 NULL, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008946 if (ret < 0) {
8947 btrfs_abort_transaction(trans, tree_root, ret);
8948 err = ret;
8949 goto out_end_trans;
8950 } else if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05008951 /* if we fail to delete the orphan item this time
8952 * around, it'll get picked up the next time.
8953 *
8954 * The most common failure here is just -ENOENT.
8955 */
8956 btrfs_del_orphan_item(trans, tree_root,
8957 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04008958 }
8959 }
8960
Miao Xie27cdeb72014-04-02 19:51:05 +08008961 if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) {
Josef Bacik2b9dbef2015-09-15 10:07:04 -04008962 btrfs_add_dropped_root(trans, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04008963 } else {
8964 free_extent_buffer(root->node);
8965 free_extent_buffer(root->commit_root);
Miao Xieb0feb9d2013-05-15 07:48:20 +00008966 btrfs_put_fs_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04008967 }
Josef Bacikd29a9f62013-07-17 19:30:20 -04008968 root_dropped = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008969out_end_trans:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008970 btrfs_end_transaction_throttle(trans, tree_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008971out_free:
Yan Zheng2c47e6052009-06-27 21:07:35 -04008972 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04008973 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008974out:
Josef Bacikd29a9f62013-07-17 19:30:20 -04008975 /*
8976 * So if we need to stop dropping the snapshot for whatever reason we
8977 * need to make sure to add it back to the dead root list so that we
8978 * keep trying to do the work later. This also cleans up roots if we
8979 * don't have it in the radix (like when we recover after a power fail
8980 * or unmount) so we don't leak memory.
8981 */
Josef Bacikb37b39c2013-07-23 16:57:15 -04008982 if (!for_reloc && root_dropped == false)
Josef Bacikd29a9f62013-07-17 19:30:20 -04008983 btrfs_add_dead_root(root);
Wang Shilong90515e72014-01-07 17:26:58 +08008984 if (err && err != -EAGAIN)
Anand Jaina4553fe2015-09-25 14:43:01 +08008985 btrfs_std_error(root->fs_info, err, NULL);
Jeff Mahoney2c536792011-10-03 23:22:41 -04008986 return err;
Chris Mason20524f02007-03-10 06:35:47 -05008987}
Chris Mason9078a3e2007-04-26 16:46:15 -04008988
Yan Zheng2c47e6052009-06-27 21:07:35 -04008989/*
8990 * drop subtree rooted at tree block 'node'.
8991 *
8992 * NOTE: this function will unlock and release tree block 'node'
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008993 * only used by relocation code
Yan Zheng2c47e6052009-06-27 21:07:35 -04008994 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04008995int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
8996 struct btrfs_root *root,
8997 struct extent_buffer *node,
8998 struct extent_buffer *parent)
8999{
9000 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009001 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009002 int level;
9003 int parent_level;
9004 int ret = 0;
9005 int wret;
9006
Yan Zheng2c47e6052009-06-27 21:07:35 -04009007 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
9008
Yan Zhengf82d02d2008-10-29 14:49:05 -04009009 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009010 if (!path)
9011 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009012
Yan Zheng2c47e6052009-06-27 21:07:35 -04009013 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009014 if (!wc) {
9015 btrfs_free_path(path);
9016 return -ENOMEM;
9017 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009018
Chris Masonb9447ef2009-03-09 11:45:38 -04009019 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009020 parent_level = btrfs_header_level(parent);
9021 extent_buffer_get(parent);
9022 path->nodes[parent_level] = parent;
9023 path->slots[parent_level] = btrfs_header_nritems(parent);
9024
Chris Masonb9447ef2009-03-09 11:45:38 -04009025 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009026 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009027 path->nodes[level] = node;
9028 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009029 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009030
9031 wc->refs[parent_level] = 1;
9032 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
9033 wc->level = level;
9034 wc->shared_level = -1;
9035 wc->stage = DROP_REFERENCE;
9036 wc->update_ref = 0;
9037 wc->keep_locks = 1;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009038 wc->for_reloc = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009039 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009040
9041 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009042 wret = walk_down_tree(trans, root, path, wc);
9043 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04009044 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009045 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009046 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04009047
Yan Zheng2c47e6052009-06-27 21:07:35 -04009048 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009049 if (wret < 0)
9050 ret = wret;
9051 if (wret != 0)
9052 break;
9053 }
9054
Yan Zheng2c47e6052009-06-27 21:07:35 -04009055 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009056 btrfs_free_path(path);
9057 return ret;
9058}
9059
Chris Masonec44a352008-04-28 15:29:52 -04009060static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
9061{
9062 u64 num_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009063 u64 stripped;
Chris Masonec44a352008-04-28 15:29:52 -04009064
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009065 /*
9066 * if restripe for this chunk_type is on pick target profile and
9067 * return, otherwise do the usual balance
9068 */
9069 stripped = get_restripe_target(root->fs_info, flags);
9070 if (stripped)
9071 return extended_to_chunk(stripped);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02009072
Miao Xie95669972014-07-24 11:37:14 +08009073 num_devices = root->fs_info->fs_devices->rw_devices;
Chris Masoncd02dca2010-12-13 14:56:23 -05009074
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009075 stripped = BTRFS_BLOCK_GROUP_RAID0 |
David Woodhouse53b381b2013-01-29 18:40:14 -05009076 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009077 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
9078
Chris Masonec44a352008-04-28 15:29:52 -04009079 if (num_devices == 1) {
9080 stripped |= BTRFS_BLOCK_GROUP_DUP;
9081 stripped = flags & ~stripped;
9082
9083 /* turn raid0 into single device chunks */
9084 if (flags & BTRFS_BLOCK_GROUP_RAID0)
9085 return stripped;
9086
9087 /* turn mirroring into duplication */
9088 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
9089 BTRFS_BLOCK_GROUP_RAID10))
9090 return stripped | BTRFS_BLOCK_GROUP_DUP;
Chris Masonec44a352008-04-28 15:29:52 -04009091 } else {
9092 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04009093 if (flags & stripped)
9094 return flags;
9095
9096 stripped |= BTRFS_BLOCK_GROUP_DUP;
9097 stripped = flags & ~stripped;
9098
9099 /* switch duplicated blocks with raid1 */
9100 if (flags & BTRFS_BLOCK_GROUP_DUP)
9101 return stripped | BTRFS_BLOCK_GROUP_RAID1;
9102
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009103 /* this is drive concat, leave it alone */
Chris Masonec44a352008-04-28 15:29:52 -04009104 }
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009105
Chris Masonec44a352008-04-28 15:29:52 -04009106 return flags;
9107}
9108
Zhaolei868f4012015-08-05 16:43:27 +08009109static int inc_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04009110{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009111 struct btrfs_space_info *sinfo = cache->space_info;
9112 u64 num_bytes;
Miao Xie199c36e2011-07-15 10:34:36 +00009113 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009114 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04009115
Miao Xie199c36e2011-07-15 10:34:36 +00009116 /*
9117 * We need some metadata space and system metadata space for
9118 * allocating chunks in some corner cases until we force to set
9119 * it to be readonly.
9120 */
9121 if ((sinfo->flags &
9122 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
9123 !force)
Byongho Leeee221842015-12-15 01:42:10 +09009124 min_allocable_bytes = SZ_1M;
Miao Xie199c36e2011-07-15 10:34:36 +00009125 else
9126 min_allocable_bytes = 0;
9127
Yan, Zhengf0486c62010-05-16 10:46:25 -04009128 spin_lock(&sinfo->lock);
9129 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00009130
9131 if (cache->ro) {
Zhaolei868f4012015-08-05 16:43:27 +08009132 cache->ro++;
WuBo61cfea92011-07-26 03:30:11 +00009133 ret = 0;
9134 goto out;
9135 }
9136
Yan, Zhengf0486c62010-05-16 10:46:25 -04009137 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
9138 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04009139
Yan, Zhengf0486c62010-05-16 10:46:25 -04009140 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
Josef Bacik37be25b2011-08-05 10:25:38 -04009141 sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes +
9142 min_allocable_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04009143 sinfo->bytes_readonly += num_bytes;
Zhaolei868f4012015-08-05 16:43:27 +08009144 cache->ro++;
Josef Bacik633c0aa2014-10-31 09:49:34 -04009145 list_add_tail(&cache->ro_list, &sinfo->ro_bgs);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009146 ret = 0;
9147 }
WuBo61cfea92011-07-26 03:30:11 +00009148out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04009149 spin_unlock(&cache->lock);
9150 spin_unlock(&sinfo->lock);
9151 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04009152}
9153
Zhaolei868f4012015-08-05 16:43:27 +08009154int btrfs_inc_block_group_ro(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04009155 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009156
9157{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009158 struct btrfs_trans_handle *trans;
9159 u64 alloc_flags;
9160 int ret;
9161
Chris Mason1bbc6212015-04-06 12:46:08 -07009162again:
Josef Bacik7a7eaa42011-04-13 12:54:33 -04009163 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009164 if (IS_ERR(trans))
9165 return PTR_ERR(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009166
Chris Mason1bbc6212015-04-06 12:46:08 -07009167 /*
9168 * we're not allowed to set block groups readonly after the dirty
9169 * block groups cache has started writing. If it already started,
9170 * back off and let this transaction commit
9171 */
9172 mutex_lock(&root->fs_info->ro_block_group_mutex);
Josef Bacik3204d332015-09-24 10:46:10 -04009173 if (test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &trans->transaction->flags)) {
Chris Mason1bbc6212015-04-06 12:46:08 -07009174 u64 transid = trans->transid;
9175
9176 mutex_unlock(&root->fs_info->ro_block_group_mutex);
9177 btrfs_end_transaction(trans, root);
9178
9179 ret = btrfs_wait_for_commit(root, transid);
9180 if (ret)
9181 return ret;
9182 goto again;
9183 }
9184
Chris Mason153c35b2015-05-19 18:54:41 -07009185 /*
9186 * if we are changing raid levels, try to allocate a corresponding
9187 * block group with the new raid level.
9188 */
9189 alloc_flags = update_block_group_flags(root, cache->flags);
9190 if (alloc_flags != cache->flags) {
9191 ret = do_chunk_alloc(trans, root, alloc_flags,
9192 CHUNK_ALLOC_FORCE);
9193 /*
9194 * ENOSPC is allowed here, we may have enough space
9195 * already allocated at the new raid level to
9196 * carry on
9197 */
9198 if (ret == -ENOSPC)
9199 ret = 0;
9200 if (ret < 0)
9201 goto out;
9202 }
Chris Mason1bbc6212015-04-06 12:46:08 -07009203
Zhaolei868f4012015-08-05 16:43:27 +08009204 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009205 if (!ret)
9206 goto out;
9207 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
Josef Bacik698d0082012-09-12 14:08:47 -04009208 ret = do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04009209 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009210 if (ret < 0)
9211 goto out;
Zhaolei868f4012015-08-05 16:43:27 +08009212 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009213out:
Shaohua Li2f081082015-01-09 10:40:15 -08009214 if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
9215 alloc_flags = update_block_group_flags(root, cache->flags);
Filipe Mananaa9629592015-05-18 19:11:40 +01009216 lock_chunks(root->fs_info->chunk_root);
Filipe Manana4617ea32015-06-09 17:48:21 +01009217 check_system_chunk(trans, root, alloc_flags);
Filipe Mananaa9629592015-05-18 19:11:40 +01009218 unlock_chunks(root->fs_info->chunk_root);
Shaohua Li2f081082015-01-09 10:40:15 -08009219 }
Chris Mason1bbc6212015-04-06 12:46:08 -07009220 mutex_unlock(&root->fs_info->ro_block_group_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08009221
Yan, Zhengf0486c62010-05-16 10:46:25 -04009222 btrfs_end_transaction(trans, root);
9223 return ret;
9224}
9225
Chris Masonc87f08c2011-02-16 13:57:04 -05009226int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
9227 struct btrfs_root *root, u64 type)
9228{
9229 u64 alloc_flags = get_alloc_profile(root, type);
Josef Bacik698d0082012-09-12 14:08:47 -04009230 return do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04009231 CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05009232}
9233
Miao Xie6d07bce2011-01-05 10:07:31 +00009234/*
9235 * helper to account the unused space of all the readonly block group in the
Josef Bacik633c0aa2014-10-31 09:49:34 -04009236 * space_info. takes mirrors into account.
Miao Xie6d07bce2011-01-05 10:07:31 +00009237 */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009238u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
Miao Xie6d07bce2011-01-05 10:07:31 +00009239{
9240 struct btrfs_block_group_cache *block_group;
9241 u64 free_bytes = 0;
9242 int factor;
9243
Josef Bacik633c0aa2014-10-31 09:49:34 -04009244 /* It's df, we don't care if it's racey */
9245 if (list_empty(&sinfo->ro_bgs))
9246 return 0;
9247
9248 spin_lock(&sinfo->lock);
9249 list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00009250 spin_lock(&block_group->lock);
9251
9252 if (!block_group->ro) {
9253 spin_unlock(&block_group->lock);
9254 continue;
9255 }
9256
9257 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
9258 BTRFS_BLOCK_GROUP_RAID10 |
9259 BTRFS_BLOCK_GROUP_DUP))
9260 factor = 2;
9261 else
9262 factor = 1;
9263
9264 free_bytes += (block_group->key.offset -
9265 btrfs_block_group_used(&block_group->item)) *
9266 factor;
9267
9268 spin_unlock(&block_group->lock);
9269 }
Miao Xie6d07bce2011-01-05 10:07:31 +00009270 spin_unlock(&sinfo->lock);
9271
9272 return free_bytes;
9273}
9274
Zhaolei868f4012015-08-05 16:43:27 +08009275void btrfs_dec_block_group_ro(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04009276 struct btrfs_block_group_cache *cache)
9277{
9278 struct btrfs_space_info *sinfo = cache->space_info;
9279 u64 num_bytes;
9280
9281 BUG_ON(!cache->ro);
9282
9283 spin_lock(&sinfo->lock);
9284 spin_lock(&cache->lock);
Zhaolei868f4012015-08-05 16:43:27 +08009285 if (!--cache->ro) {
9286 num_bytes = cache->key.offset - cache->reserved -
9287 cache->pinned - cache->bytes_super -
9288 btrfs_block_group_used(&cache->item);
9289 sinfo->bytes_readonly -= num_bytes;
9290 list_del_init(&cache->ro_list);
9291 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009292 spin_unlock(&cache->lock);
9293 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009294}
9295
Josef Bacikba1bf482009-09-11 16:11:19 -04009296/*
9297 * checks to see if its even possible to relocate this block group.
9298 *
9299 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
9300 * ok to go ahead and try.
9301 */
9302int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04009303{
Zheng Yan1a40e232008-09-26 10:09:34 -04009304 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04009305 struct btrfs_space_info *space_info;
9306 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
9307 struct btrfs_device *device;
Josef Bacik6df9a952013-06-27 13:22:46 -04009308 struct btrfs_trans_handle *trans;
liubocdcb7252011-08-03 10:15:25 +00009309 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04009310 u64 dev_min = 1;
9311 u64 dev_nr = 0;
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009312 u64 target;
liubocdcb7252011-08-03 10:15:25 +00009313 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04009314 int full = 0;
9315 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05009316
Josef Bacikba1bf482009-09-11 16:11:19 -04009317 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04009318
Josef Bacikba1bf482009-09-11 16:11:19 -04009319 /* odd, couldn't find the block group, leave it alone */
9320 if (!block_group)
9321 return -1;
Chris Masonedbd8d42007-12-21 16:27:24 -05009322
liubocdcb7252011-08-03 10:15:25 +00009323 min_free = btrfs_block_group_used(&block_group->item);
9324
Josef Bacikba1bf482009-09-11 16:11:19 -04009325 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00009326 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04009327 goto out;
Chris Mason323da792008-05-09 11:46:48 -04009328
Josef Bacikba1bf482009-09-11 16:11:19 -04009329 space_info = block_group->space_info;
9330 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04009331
Josef Bacikba1bf482009-09-11 16:11:19 -04009332 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04009333
Josef Bacikba1bf482009-09-11 16:11:19 -04009334 /*
9335 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04009336 * relocate it unless we're able to allocate a new chunk below.
9337 *
9338 * Otherwise, we need to make sure we have room in the space to handle
9339 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04009340 */
Chris Mason7ce618d2009-09-22 14:48:44 -04009341 if ((space_info->total_bytes != block_group->key.offset) &&
liubocdcb7252011-08-03 10:15:25 +00009342 (space_info->bytes_used + space_info->bytes_reserved +
9343 space_info->bytes_pinned + space_info->bytes_readonly +
9344 min_free < space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04009345 spin_unlock(&space_info->lock);
9346 goto out;
9347 }
9348 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009349
Josef Bacikba1bf482009-09-11 16:11:19 -04009350 /*
9351 * ok we don't have enough space, but maybe we have free space on our
9352 * devices to allocate new chunks for relocation, so loop through our
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009353 * alloc devices and guess if we have enough space. if this block
9354 * group is going to be restriped, run checks against the target
9355 * profile instead of the current one.
Josef Bacikba1bf482009-09-11 16:11:19 -04009356 */
9357 ret = -1;
Chris Mason4313b392008-01-03 09:08:48 -05009358
liubocdcb7252011-08-03 10:15:25 +00009359 /*
9360 * index:
9361 * 0: raid10
9362 * 1: raid1
9363 * 2: dup
9364 * 3: raid0
9365 * 4: single
9366 */
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009367 target = get_restripe_target(root->fs_info, block_group->flags);
9368 if (target) {
Liu Bo31e50222012-11-21 14:18:10 +00009369 index = __get_raid_index(extended_to_chunk(target));
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009370 } else {
9371 /*
9372 * this is just a balance, so if we were marked as full
9373 * we know there is no space for a new chunk
9374 */
9375 if (full)
9376 goto out;
9377
9378 index = get_block_group_index(block_group);
9379 }
9380
Miao Xiee6ec7162013-01-17 05:38:51 +00009381 if (index == BTRFS_RAID_RAID10) {
liubocdcb7252011-08-03 10:15:25 +00009382 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04009383 /* Divide by 2 */
9384 min_free >>= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009385 } else if (index == BTRFS_RAID_RAID1) {
liubocdcb7252011-08-03 10:15:25 +00009386 dev_min = 2;
Miao Xiee6ec7162013-01-17 05:38:51 +00009387 } else if (index == BTRFS_RAID_DUP) {
Josef Bacik6719db62011-08-20 08:29:51 -04009388 /* Multiply by 2 */
9389 min_free <<= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009390 } else if (index == BTRFS_RAID_RAID0) {
liubocdcb7252011-08-03 10:15:25 +00009391 dev_min = fs_devices->rw_devices;
David Sterba47c57132015-02-20 18:43:47 +01009392 min_free = div64_u64(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00009393 }
9394
Josef Bacik6df9a952013-06-27 13:22:46 -04009395 /* We need to do this so that we can look at pending chunks */
9396 trans = btrfs_join_transaction(root);
9397 if (IS_ERR(trans)) {
9398 ret = PTR_ERR(trans);
9399 goto out;
9400 }
9401
Josef Bacikba1bf482009-09-11 16:11:19 -04009402 mutex_lock(&root->fs_info->chunk_mutex);
9403 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00009404 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04009405
Josef Bacikba1bf482009-09-11 16:11:19 -04009406 /*
9407 * check to make sure we can actually find a chunk with enough
9408 * space to fit our block group in.
9409 */
Stefan Behrens63a212a2012-11-05 18:29:28 +01009410 if (device->total_bytes > device->bytes_used + min_free &&
9411 !device->is_tgtdev_for_dev_replace) {
Josef Bacik6df9a952013-06-27 13:22:46 -04009412 ret = find_free_dev_extent(trans, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00009413 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04009414 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00009415 dev_nr++;
9416
9417 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05009418 break;
liubocdcb7252011-08-03 10:15:25 +00009419
Josef Bacikba1bf482009-09-11 16:11:19 -04009420 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05009421 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009422 }
Josef Bacikba1bf482009-09-11 16:11:19 -04009423 mutex_unlock(&root->fs_info->chunk_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04009424 btrfs_end_transaction(trans, root);
Chris Masonedbd8d42007-12-21 16:27:24 -05009425out:
Josef Bacikba1bf482009-09-11 16:11:19 -04009426 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05009427 return ret;
9428}
9429
Christoph Hellwigb2950862008-12-02 09:54:17 -05009430static int find_first_block_group(struct btrfs_root *root,
9431 struct btrfs_path *path, struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04009432{
Chris Mason925baed2008-06-25 16:01:30 -04009433 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04009434 struct btrfs_key found_key;
9435 struct extent_buffer *leaf;
9436 int slot;
9437
9438 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
9439 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009440 goto out;
9441
Chris Masond3977122009-01-05 21:25:51 -05009442 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04009443 slot = path->slots[0];
9444 leaf = path->nodes[0];
9445 if (slot >= btrfs_header_nritems(leaf)) {
9446 ret = btrfs_next_leaf(root, path);
9447 if (ret == 0)
9448 continue;
9449 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009450 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04009451 break;
9452 }
9453 btrfs_item_key_to_cpu(leaf, &found_key, slot);
9454
9455 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04009456 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
9457 ret = 0;
9458 goto out;
9459 }
Chris Mason0b86a832008-03-24 15:01:56 -04009460 path->slots[0]++;
9461 }
Chris Mason925baed2008-06-25 16:01:30 -04009462out:
Chris Mason0b86a832008-03-24 15:01:56 -04009463 return ret;
9464}
9465
Josef Bacik0af3d002010-06-21 14:48:16 -04009466void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
9467{
9468 struct btrfs_block_group_cache *block_group;
9469 u64 last = 0;
9470
9471 while (1) {
9472 struct inode *inode;
9473
9474 block_group = btrfs_lookup_first_block_group(info, last);
9475 while (block_group) {
9476 spin_lock(&block_group->lock);
9477 if (block_group->iref)
9478 break;
9479 spin_unlock(&block_group->lock);
9480 block_group = next_block_group(info->tree_root,
9481 block_group);
9482 }
9483 if (!block_group) {
9484 if (last == 0)
9485 break;
9486 last = 0;
9487 continue;
9488 }
9489
9490 inode = block_group->inode;
9491 block_group->iref = 0;
9492 block_group->inode = NULL;
9493 spin_unlock(&block_group->lock);
9494 iput(inode);
9495 last = block_group->key.objectid + block_group->key.offset;
9496 btrfs_put_block_group(block_group);
9497 }
9498}
9499
Zheng Yan1a40e232008-09-26 10:09:34 -04009500int btrfs_free_block_groups(struct btrfs_fs_info *info)
9501{
9502 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04009503 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04009504 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04009505 struct rb_node *n;
9506
Josef Bacik9e351cc2014-03-13 15:42:13 -04009507 down_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04009508 while (!list_empty(&info->caching_block_groups)) {
9509 caching_ctl = list_entry(info->caching_block_groups.next,
9510 struct btrfs_caching_control, list);
9511 list_del(&caching_ctl->list);
9512 put_caching_control(caching_ctl);
9513 }
Josef Bacik9e351cc2014-03-13 15:42:13 -04009514 up_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04009515
Josef Bacik47ab2a62014-09-18 11:20:02 -04009516 spin_lock(&info->unused_bgs_lock);
9517 while (!list_empty(&info->unused_bgs)) {
9518 block_group = list_first_entry(&info->unused_bgs,
9519 struct btrfs_block_group_cache,
9520 bg_list);
9521 list_del_init(&block_group->bg_list);
9522 btrfs_put_block_group(block_group);
9523 }
9524 spin_unlock(&info->unused_bgs_lock);
9525
Zheng Yan1a40e232008-09-26 10:09:34 -04009526 spin_lock(&info->block_group_cache_lock);
9527 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
9528 block_group = rb_entry(n, struct btrfs_block_group_cache,
9529 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04009530 rb_erase(&block_group->cache_node,
9531 &info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +00009532 RB_CLEAR_NODE(&block_group->cache_node);
Yan Zhengd899e052008-10-30 14:25:28 -04009533 spin_unlock(&info->block_group_cache_lock);
9534
Josef Bacik80eb2342008-10-29 14:49:05 -04009535 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04009536 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04009537 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05009538
Josef Bacik817d52f2009-07-13 21:29:25 -04009539 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04009540 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04009541
Josef Bacik3c148742011-02-02 15:53:47 +00009542 /*
9543 * We haven't cached this block group, which means we could
9544 * possibly have excluded extents on this block group.
9545 */
Josef Bacik36cce922013-08-05 11:15:21 -04009546 if (block_group->cached == BTRFS_CACHE_NO ||
9547 block_group->cached == BTRFS_CACHE_ERROR)
Josef Bacik3c148742011-02-02 15:53:47 +00009548 free_excluded_extents(info->extent_root, block_group);
9549
Josef Bacik817d52f2009-07-13 21:29:25 -04009550 btrfs_remove_free_space_cache(block_group);
Josef Bacik11dfe352009-11-13 20:12:59 +00009551 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04009552
9553 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009554 }
9555 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -04009556
9557 /* now that all the block groups are freed, go through and
9558 * free all the space_info structs. This is only called during
9559 * the final stages of unmount, and so we know nobody is
9560 * using them. We call synchronize_rcu() once before we start,
9561 * just to be on the safe side.
9562 */
9563 synchronize_rcu();
9564
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04009565 release_global_block_rsv(info);
9566
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05309567 while (!list_empty(&info->space_info)) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009568 int i;
9569
Chris Mason4184ea72009-03-10 12:39:20 -04009570 space_info = list_entry(info->space_info.next,
9571 struct btrfs_space_info,
9572 list);
David Sterbab069e0c2013-02-08 21:28:17 +00009573 if (btrfs_test_opt(info->tree_root, ENOSPC_DEBUG)) {
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05309574 if (WARN_ON(space_info->bytes_pinned > 0 ||
David Sterbab069e0c2013-02-08 21:28:17 +00009575 space_info->bytes_reserved > 0 ||
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05309576 space_info->bytes_may_use > 0)) {
David Sterbab069e0c2013-02-08 21:28:17 +00009577 dump_space_info(space_info, 0, 0);
9578 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009579 }
Chris Mason4184ea72009-03-10 12:39:20 -04009580 list_del(&space_info->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009581 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
9582 struct kobject *kobj;
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009583 kobj = space_info->block_group_kobjs[i];
9584 space_info->block_group_kobjs[i] = NULL;
9585 if (kobj) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009586 kobject_del(kobj);
9587 kobject_put(kobj);
9588 }
9589 }
9590 kobject_del(&space_info->kobj);
9591 kobject_put(&space_info->kobj);
Chris Mason4184ea72009-03-10 12:39:20 -04009592 }
Zheng Yan1a40e232008-09-26 10:09:34 -04009593 return 0;
9594}
9595
Yan, Zhengb742bb82010-05-16 10:46:24 -04009596static void __link_block_group(struct btrfs_space_info *space_info,
9597 struct btrfs_block_group_cache *cache)
9598{
9599 int index = get_block_group_index(cache);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -04009600 bool first = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04009601
9602 down_write(&space_info->groups_sem);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -04009603 if (list_empty(&space_info->block_groups[index]))
9604 first = true;
9605 list_add_tail(&cache->list, &space_info->block_groups[index]);
9606 up_write(&space_info->groups_sem);
9607
9608 if (first) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009609 struct raid_kobject *rkobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009610 int ret;
9611
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009612 rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS);
9613 if (!rkobj)
9614 goto out_err;
9615 rkobj->raid_type = index;
9616 kobject_init(&rkobj->kobj, &btrfs_raid_ktype);
9617 ret = kobject_add(&rkobj->kobj, &space_info->kobj,
9618 "%s", get_raid_name(index));
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009619 if (ret) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009620 kobject_put(&rkobj->kobj);
9621 goto out_err;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009622 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009623 space_info->block_group_kobjs[index] = &rkobj->kobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009624 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009625
9626 return;
9627out_err:
9628 pr_warn("BTRFS: failed to add kobject for block cache. ignoring.\n");
Yan, Zhengb742bb82010-05-16 10:46:24 -04009629}
9630
Miao Xie920e4a52014-01-15 20:00:55 +08009631static struct btrfs_block_group_cache *
9632btrfs_create_block_group_cache(struct btrfs_root *root, u64 start, u64 size)
9633{
9634 struct btrfs_block_group_cache *cache;
9635
9636 cache = kzalloc(sizeof(*cache), GFP_NOFS);
9637 if (!cache)
9638 return NULL;
9639
9640 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
9641 GFP_NOFS);
9642 if (!cache->free_space_ctl) {
9643 kfree(cache);
9644 return NULL;
9645 }
9646
9647 cache->key.objectid = start;
9648 cache->key.offset = size;
9649 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
9650
9651 cache->sectorsize = root->sectorsize;
9652 cache->fs_info = root->fs_info;
9653 cache->full_stripe_len = btrfs_full_stripe_len(root,
9654 &root->fs_info->mapping_tree,
9655 start);
9656 atomic_set(&cache->count, 1);
9657 spin_lock_init(&cache->lock);
Miao Xiee570fd22014-06-19 10:42:50 +08009658 init_rwsem(&cache->data_rwsem);
Miao Xie920e4a52014-01-15 20:00:55 +08009659 INIT_LIST_HEAD(&cache->list);
9660 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009661 INIT_LIST_HEAD(&cache->bg_list);
Josef Bacik633c0aa2014-10-31 09:49:34 -04009662 INIT_LIST_HEAD(&cache->ro_list);
Josef Bacikce93ec52014-11-17 15:45:48 -05009663 INIT_LIST_HEAD(&cache->dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07009664 INIT_LIST_HEAD(&cache->io_list);
Miao Xie920e4a52014-01-15 20:00:55 +08009665 btrfs_init_free_space_ctl(cache);
Filipe Manana04216822014-11-27 21:14:15 +00009666 atomic_set(&cache->trimming, 0);
Miao Xie920e4a52014-01-15 20:00:55 +08009667
9668 return cache;
9669}
9670
Chris Mason9078a3e2007-04-26 16:46:15 -04009671int btrfs_read_block_groups(struct btrfs_root *root)
9672{
9673 struct btrfs_path *path;
9674 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04009675 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04009676 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04009677 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04009678 struct btrfs_key key;
9679 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04009680 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -04009681 int need_clear = 0;
9682 u64 cache_gen;
Chris Mason96b51792007-10-15 16:15:19 -04009683
Chris Masonbe744172007-05-06 10:15:01 -04009684 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04009685 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04009686 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02009687 key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Chris Mason9078a3e2007-04-26 16:46:15 -04009688 path = btrfs_alloc_path();
9689 if (!path)
9690 return -ENOMEM;
Josef Bacik026fd312011-05-13 10:32:11 -04009691 path->reada = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04009692
David Sterba6c417612011-04-13 15:41:04 +02009693 cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
Josef Bacik73bc1872011-10-03 14:07:49 -04009694 if (btrfs_test_opt(root, SPACE_CACHE) &&
David Sterba6c417612011-04-13 15:41:04 +02009695 btrfs_super_generation(root->fs_info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -04009696 need_clear = 1;
Josef Bacik88c2ba32010-09-21 14:21:34 -04009697 if (btrfs_test_opt(root, CLEAR_CACHE))
9698 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -04009699
Chris Masond3977122009-01-05 21:25:51 -05009700 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04009701 ret = find_first_block_group(root, path, &key);
Yan, Zhengb742bb82010-05-16 10:46:24 -04009702 if (ret > 0)
9703 break;
Chris Mason0b86a832008-03-24 15:01:56 -04009704 if (ret != 0)
9705 goto error;
Miao Xie920e4a52014-01-15 20:00:55 +08009706
Chris Mason5f39d392007-10-15 16:14:19 -04009707 leaf = path->nodes[0];
9708 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Miao Xie920e4a52014-01-15 20:00:55 +08009709
9710 cache = btrfs_create_block_group_cache(root, found_key.objectid,
9711 found_key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04009712 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04009713 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009714 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04009715 }
Josef Bacik96303082009-07-13 21:29:25 -04009716
Liu Bocf7c1ef2012-07-06 03:31:34 -06009717 if (need_clear) {
9718 /*
9719 * When we mount with old space cache, we need to
9720 * set BTRFS_DC_CLEAR and set dirty flag.
9721 *
9722 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
9723 * truncate the old free space cache inode and
9724 * setup a new one.
9725 * b) Setting 'dirty flag' makes sure that we flush
9726 * the new space cache info onto disk.
9727 */
Liu Bocf7c1ef2012-07-06 03:31:34 -06009728 if (btrfs_test_opt(root, SPACE_CACHE))
Josef Bacikce93ec52014-11-17 15:45:48 -05009729 cache->disk_cache_state = BTRFS_DC_CLEAR;
Liu Bocf7c1ef2012-07-06 03:31:34 -06009730 }
Josef Bacik0af3d002010-06-21 14:48:16 -04009731
Chris Mason5f39d392007-10-15 16:14:19 -04009732 read_extent_buffer(leaf, &cache->item,
9733 btrfs_item_ptr_offset(leaf, path->slots[0]),
9734 sizeof(cache->item));
Miao Xie920e4a52014-01-15 20:00:55 +08009735 cache->flags = btrfs_block_group_flags(&cache->item);
Chris Mason0b86a832008-03-24 15:01:56 -04009736
Chris Mason9078a3e2007-04-26 16:46:15 -04009737 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +02009738 btrfs_release_path(path);
Li Zefan34d52cb2011-03-29 13:46:06 +08009739
Josef Bacik817d52f2009-07-13 21:29:25 -04009740 /*
Josef Bacik3c148742011-02-02 15:53:47 +00009741 * We need to exclude the super stripes now so that the space
9742 * info has super bytes accounted for, otherwise we'll think
9743 * we have more space than we actually do.
9744 */
Josef Bacik835d9742013-03-19 12:13:25 -04009745 ret = exclude_super_stripes(root, cache);
9746 if (ret) {
9747 /*
9748 * We may have excluded something, so call this just in
9749 * case.
9750 */
9751 free_excluded_extents(root, cache);
Miao Xie920e4a52014-01-15 20:00:55 +08009752 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -04009753 goto error;
9754 }
Josef Bacik3c148742011-02-02 15:53:47 +00009755
9756 /*
Josef Bacik817d52f2009-07-13 21:29:25 -04009757 * check for two cases, either we are full, and therefore
9758 * don't need to bother with the caching work since we won't
9759 * find any space, or we are empty, and we can just add all
9760 * the space in and be done with it. This saves us _alot_ of
9761 * time, particularly in the full case.
9762 */
9763 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -04009764 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04009765 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik1b2da372009-09-11 16:11:20 -04009766 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04009767 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -04009768 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04009769 cache->cached = BTRFS_CACHE_FINISHED;
9770 add_new_free_space(cache, root->fs_info,
9771 found_key.objectid,
9772 found_key.objectid +
9773 found_key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -04009774 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04009775 }
Chris Mason96b51792007-10-15 16:15:19 -04009776
Josef Bacik8c579fe2013-04-02 12:40:42 -04009777 ret = btrfs_add_block_group_cache(root->fs_info, cache);
9778 if (ret) {
9779 btrfs_remove_free_space_cache(cache);
9780 btrfs_put_block_group(cache);
9781 goto error;
9782 }
9783
Chris Mason6324fbf2008-03-24 15:01:59 -04009784 ret = update_space_info(info, cache->flags, found_key.offset,
9785 btrfs_block_group_used(&cache->item),
9786 &space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -04009787 if (ret) {
9788 btrfs_remove_free_space_cache(cache);
9789 spin_lock(&info->block_group_cache_lock);
9790 rb_erase(&cache->cache_node,
9791 &info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +00009792 RB_CLEAR_NODE(&cache->cache_node);
Josef Bacik8c579fe2013-04-02 12:40:42 -04009793 spin_unlock(&info->block_group_cache_lock);
9794 btrfs_put_block_group(cache);
9795 goto error;
9796 }
9797
Chris Mason6324fbf2008-03-24 15:01:59 -04009798 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -04009799 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009800 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04009801 spin_unlock(&cache->space_info->lock);
9802
Yan, Zhengb742bb82010-05-16 10:46:24 -04009803 __link_block_group(space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04009804
Chris Mason75ccf472008-09-30 19:24:06 -04009805 set_avail_alloc_bits(root->fs_info, cache->flags);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009806 if (btrfs_chunk_readonly(root, cache->key.objectid)) {
Zhaolei868f4012015-08-05 16:43:27 +08009807 inc_block_group_ro(cache, 1);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009808 } else if (btrfs_block_group_used(&cache->item) == 0) {
9809 spin_lock(&info->unused_bgs_lock);
9810 /* Should always be true but just in case. */
9811 if (list_empty(&cache->bg_list)) {
9812 btrfs_get_block_group(cache);
9813 list_add_tail(&cache->bg_list,
9814 &info->unused_bgs);
9815 }
9816 spin_unlock(&info->unused_bgs_lock);
9817 }
Chris Mason9078a3e2007-04-26 16:46:15 -04009818 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04009819
9820 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
9821 if (!(get_alloc_profile(root, space_info->flags) &
9822 (BTRFS_BLOCK_GROUP_RAID10 |
9823 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05009824 BTRFS_BLOCK_GROUP_RAID5 |
9825 BTRFS_BLOCK_GROUP_RAID6 |
Yan, Zhengb742bb82010-05-16 10:46:24 -04009826 BTRFS_BLOCK_GROUP_DUP)))
9827 continue;
9828 /*
9829 * avoid allocating from un-mirrored block group if there are
9830 * mirrored block groups.
9831 */
chandan1095cc02013-07-16 12:28:56 +05309832 list_for_each_entry(cache,
9833 &space_info->block_groups[BTRFS_RAID_RAID0],
9834 list)
Zhaolei868f4012015-08-05 16:43:27 +08009835 inc_block_group_ro(cache, 1);
chandan1095cc02013-07-16 12:28:56 +05309836 list_for_each_entry(cache,
9837 &space_info->block_groups[BTRFS_RAID_SINGLE],
9838 list)
Zhaolei868f4012015-08-05 16:43:27 +08009839 inc_block_group_ro(cache, 1);
Yan, Zhengb742bb82010-05-16 10:46:24 -04009840 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009841
9842 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -04009843 ret = 0;
9844error:
Chris Mason9078a3e2007-04-26 16:46:15 -04009845 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04009846 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04009847}
Chris Mason6324fbf2008-03-24 15:01:59 -04009848
Josef Bacikea658ba2012-09-11 16:57:25 -04009849void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans,
9850 struct btrfs_root *root)
9851{
9852 struct btrfs_block_group_cache *block_group, *tmp;
9853 struct btrfs_root *extent_root = root->fs_info->extent_root;
9854 struct btrfs_block_group_item item;
9855 struct btrfs_key key;
9856 int ret = 0;
Filipe Mananad9a05402015-10-03 13:13:13 +01009857 bool can_flush_pending_bgs = trans->can_flush_pending_bgs;
Josef Bacikea658ba2012-09-11 16:57:25 -04009858
Filipe Mananad9a05402015-10-03 13:13:13 +01009859 trans->can_flush_pending_bgs = false;
Josef Bacik47ab2a62014-09-18 11:20:02 -04009860 list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) {
Josef Bacikea658ba2012-09-11 16:57:25 -04009861 if (ret)
Filipe Mananac92f6be2014-11-26 15:28:55 +00009862 goto next;
Josef Bacikea658ba2012-09-11 16:57:25 -04009863
9864 spin_lock(&block_group->lock);
9865 memcpy(&item, &block_group->item, sizeof(item));
9866 memcpy(&key, &block_group->key, sizeof(key));
9867 spin_unlock(&block_group->lock);
9868
9869 ret = btrfs_insert_item(trans, extent_root, &key, &item,
9870 sizeof(item));
9871 if (ret)
9872 btrfs_abort_transaction(trans, extent_root, ret);
Josef Bacik6df9a952013-06-27 13:22:46 -04009873 ret = btrfs_finish_chunk_alloc(trans, extent_root,
9874 key.objectid, key.offset);
9875 if (ret)
9876 btrfs_abort_transaction(trans, extent_root, ret);
Filipe Mananac92f6be2014-11-26 15:28:55 +00009877next:
9878 list_del_init(&block_group->bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -04009879 }
Filipe Mananad9a05402015-10-03 13:13:13 +01009880 trans->can_flush_pending_bgs = can_flush_pending_bgs;
Josef Bacikea658ba2012-09-11 16:57:25 -04009881}
9882
Chris Mason6324fbf2008-03-24 15:01:59 -04009883int btrfs_make_block_group(struct btrfs_trans_handle *trans,
9884 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04009885 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04009886 u64 size)
9887{
9888 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04009889 struct btrfs_root *extent_root;
9890 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -04009891
9892 extent_root = root->fs_info->extent_root;
Chris Mason6324fbf2008-03-24 15:01:59 -04009893
Miao Xie995946d2014-04-02 19:51:06 +08009894 btrfs_set_log_full_commit(root->fs_info, trans);
Chris Masone02119d2008-09-05 16:13:11 -04009895
Miao Xie920e4a52014-01-15 20:00:55 +08009896 cache = btrfs_create_block_group_cache(root, chunk_offset, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -04009897 if (!cache)
9898 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +08009899
Chris Mason6324fbf2008-03-24 15:01:59 -04009900 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04009901 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
Chris Mason6324fbf2008-03-24 15:01:59 -04009902 btrfs_set_block_group_flags(&cache->item, type);
9903
Miao Xie920e4a52014-01-15 20:00:55 +08009904 cache->flags = type;
Yan Zheng11833d62009-09-11 16:11:19 -04009905 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04009906 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik835d9742013-03-19 12:13:25 -04009907 ret = exclude_super_stripes(root, cache);
9908 if (ret) {
9909 /*
9910 * We may have excluded something, so call this just in
9911 * case.
9912 */
9913 free_excluded_extents(root, cache);
Miao Xie920e4a52014-01-15 20:00:55 +08009914 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -04009915 return ret;
9916 }
Josef Bacik96303082009-07-13 21:29:25 -04009917
Josef Bacik817d52f2009-07-13 21:29:25 -04009918 add_new_free_space(cache, root->fs_info, chunk_offset,
9919 chunk_offset + size);
9920
Yan Zheng11833d62009-09-11 16:11:19 -04009921 free_excluded_extents(root, cache);
9922
Josef Bacikd0bd4562015-09-23 14:54:14 -04009923#ifdef CONFIG_BTRFS_DEBUG
9924 if (btrfs_should_fragment_free_space(root, cache)) {
9925 u64 new_bytes_used = size - bytes_used;
9926
9927 bytes_used += new_bytes_used >> 1;
9928 fragment_free_space(root, cache);
9929 }
9930#endif
Filipe Manana2e6e5182015-05-12 00:28:11 +01009931 /*
9932 * Call to ensure the corresponding space_info object is created and
9933 * assigned to our block group, but don't update its counters just yet.
9934 * We want our bg to be added to the rbtree with its ->space_info set.
9935 */
9936 ret = update_space_info(root->fs_info, cache->flags, 0, 0,
9937 &cache->space_info);
9938 if (ret) {
9939 btrfs_remove_free_space_cache(cache);
9940 btrfs_put_block_group(cache);
9941 return ret;
9942 }
9943
Josef Bacik8c579fe2013-04-02 12:40:42 -04009944 ret = btrfs_add_block_group_cache(root->fs_info, cache);
9945 if (ret) {
9946 btrfs_remove_free_space_cache(cache);
9947 btrfs_put_block_group(cache);
9948 return ret;
9949 }
9950
Filipe Manana2e6e5182015-05-12 00:28:11 +01009951 /*
9952 * Now that our block group has its ->space_info set and is inserted in
9953 * the rbtree, update the space info's counters.
9954 */
Chris Mason6324fbf2008-03-24 15:01:59 -04009955 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
9956 &cache->space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -04009957 if (ret) {
9958 btrfs_remove_free_space_cache(cache);
9959 spin_lock(&root->fs_info->block_group_cache_lock);
9960 rb_erase(&cache->cache_node,
9961 &root->fs_info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +00009962 RB_CLEAR_NODE(&cache->cache_node);
Josef Bacik8c579fe2013-04-02 12:40:42 -04009963 spin_unlock(&root->fs_info->block_group_cache_lock);
9964 btrfs_put_block_group(cache);
9965 return ret;
9966 }
Li Zefanc7c144d2011-12-07 10:39:22 +08009967 update_global_block_rsv(root->fs_info);
Josef Bacik1b2da372009-09-11 16:11:20 -04009968
9969 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009970 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04009971 spin_unlock(&cache->space_info->lock);
9972
Yan, Zhengb742bb82010-05-16 10:46:24 -04009973 __link_block_group(cache->space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04009974
Josef Bacik47ab2a62014-09-18 11:20:02 -04009975 list_add_tail(&cache->bg_list, &trans->new_bgs);
Chris Mason6324fbf2008-03-24 15:01:59 -04009976
Chris Masond18a2c42008-04-04 15:40:00 -04009977 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason925baed2008-06-25 16:01:30 -04009978
Chris Mason6324fbf2008-03-24 15:01:59 -04009979 return 0;
9980}
Zheng Yan1a40e232008-09-26 10:09:34 -04009981
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009982static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
9983{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03009984 u64 extra_flags = chunk_to_extended(flags) &
9985 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009986
Miao Xiede98ced2013-01-29 10:13:12 +00009987 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009988 if (flags & BTRFS_BLOCK_GROUP_DATA)
9989 fs_info->avail_data_alloc_bits &= ~extra_flags;
9990 if (flags & BTRFS_BLOCK_GROUP_METADATA)
9991 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
9992 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
9993 fs_info->avail_system_alloc_bits &= ~extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00009994 write_sequnlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009995}
9996
Zheng Yan1a40e232008-09-26 10:09:34 -04009997int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
Filipe Manana04216822014-11-27 21:14:15 +00009998 struct btrfs_root *root, u64 group_start,
9999 struct extent_map *em)
Zheng Yan1a40e232008-09-26 10:09:34 -040010000{
10001 struct btrfs_path *path;
10002 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -040010003 struct btrfs_free_cluster *cluster;
Josef Bacik0af3d002010-06-21 14:48:16 -040010004 struct btrfs_root *tree_root = root->fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -040010005 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -040010006 struct inode *inode;
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010007 struct kobject *kobj = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -040010008 int ret;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010009 int index;
Josef Bacik89a55892010-10-14 14:52:27 -040010010 int factor;
Filipe Manana4f69cb92014-11-26 15:28:51 +000010011 struct btrfs_caching_control *caching_ctl = NULL;
Filipe Manana04216822014-11-27 21:14:15 +000010012 bool remove_em;
Zheng Yan1a40e232008-09-26 10:09:34 -040010013
Zheng Yan1a40e232008-09-26 10:09:34 -040010014 root = root->fs_info->extent_root;
10015
10016 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
10017 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -050010018 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -040010019
liubo9f7c43c2011-03-07 02:13:33 +000010020 /*
10021 * Free the reserved super bytes from this block group before
10022 * remove it.
10023 */
10024 free_excluded_extents(root, block_group);
10025
Zheng Yan1a40e232008-09-26 10:09:34 -040010026 memcpy(&key, &block_group->key, sizeof(key));
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010027 index = get_block_group_index(block_group);
Josef Bacik89a55892010-10-14 14:52:27 -040010028 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
10029 BTRFS_BLOCK_GROUP_RAID1 |
10030 BTRFS_BLOCK_GROUP_RAID10))
10031 factor = 2;
10032 else
10033 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -040010034
Chris Mason44fb5512009-06-04 15:34:51 -040010035 /* make sure this block group isn't part of an allocation cluster */
10036 cluster = &root->fs_info->data_alloc_cluster;
10037 spin_lock(&cluster->refill_lock);
10038 btrfs_return_cluster_to_free_space(block_group, cluster);
10039 spin_unlock(&cluster->refill_lock);
10040
10041 /*
10042 * make sure this block group isn't part of a metadata
10043 * allocation cluster
10044 */
10045 cluster = &root->fs_info->meta_alloc_cluster;
10046 spin_lock(&cluster->refill_lock);
10047 btrfs_return_cluster_to_free_space(block_group, cluster);
10048 spin_unlock(&cluster->refill_lock);
10049
Zheng Yan1a40e232008-09-26 10:09:34 -040010050 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -070010051 if (!path) {
10052 ret = -ENOMEM;
10053 goto out;
10054 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010055
Chris Mason1bbc6212015-04-06 12:46:08 -070010056 /*
10057 * get the inode first so any iput calls done for the io_list
10058 * aren't the final iput (no unlinks allowed now)
10059 */
Ilya Dryomov10b2f342011-10-02 13:56:53 +030010060 inode = lookup_free_space_inode(tree_root, block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -070010061
10062 mutex_lock(&trans->transaction->cache_write_mutex);
10063 /*
10064 * make sure our free spache cache IO is done before remove the
10065 * free space inode
10066 */
10067 spin_lock(&trans->transaction->dirty_bgs_lock);
10068 if (!list_empty(&block_group->io_list)) {
10069 list_del_init(&block_group->io_list);
10070
10071 WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode);
10072
10073 spin_unlock(&trans->transaction->dirty_bgs_lock);
10074 btrfs_wait_cache_io(root, trans, block_group,
10075 &block_group->io_ctl, path,
10076 block_group->key.objectid);
10077 btrfs_put_block_group(block_group);
10078 spin_lock(&trans->transaction->dirty_bgs_lock);
10079 }
10080
10081 if (!list_empty(&block_group->dirty_list)) {
10082 list_del_init(&block_group->dirty_list);
10083 btrfs_put_block_group(block_group);
10084 }
10085 spin_unlock(&trans->transaction->dirty_bgs_lock);
10086 mutex_unlock(&trans->transaction->cache_write_mutex);
10087
Josef Bacik0af3d002010-06-21 14:48:16 -040010088 if (!IS_ERR(inode)) {
Tsutomu Itohb5324022011-07-19 07:27:20 +000010089 ret = btrfs_orphan_add(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010090 if (ret) {
10091 btrfs_add_delayed_iput(inode);
10092 goto out;
10093 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010094 clear_nlink(inode);
10095 /* One for the block groups ref */
10096 spin_lock(&block_group->lock);
10097 if (block_group->iref) {
10098 block_group->iref = 0;
10099 block_group->inode = NULL;
10100 spin_unlock(&block_group->lock);
10101 iput(inode);
10102 } else {
10103 spin_unlock(&block_group->lock);
10104 }
10105 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -040010106 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -040010107 }
10108
10109 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
10110 key.offset = block_group->key.objectid;
10111 key.type = 0;
10112
10113 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
10114 if (ret < 0)
10115 goto out;
10116 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +020010117 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010118 if (ret == 0) {
10119 ret = btrfs_del_item(trans, tree_root, path);
10120 if (ret)
10121 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +020010122 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010123 }
10124
Yan Zheng3dfdb932009-01-21 10:49:16 -050010125 spin_lock(&root->fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -040010126 rb_erase(&block_group->cache_node,
10127 &root->fs_info->block_group_cache_tree);
Filipe Manana292cbd52014-11-26 15:28:50 +000010128 RB_CLEAR_NODE(&block_group->cache_node);
Liu Boa1897fd2012-12-27 09:01:23 +000010129
10130 if (root->fs_info->first_logical_byte == block_group->key.objectid)
10131 root->fs_info->first_logical_byte = (u64)-1;
Yan Zheng3dfdb932009-01-21 10:49:16 -050010132 spin_unlock(&root->fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -040010133
Josef Bacik80eb2342008-10-29 14:49:05 -040010134 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -040010135 /*
10136 * we must use list_del_init so people can check to see if they
10137 * are still on the list after taking the semaphore
10138 */
10139 list_del_init(&block_group->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010140 if (list_empty(&block_group->space_info->block_groups[index])) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010141 kobj = block_group->space_info->block_group_kobjs[index];
10142 block_group->space_info->block_group_kobjs[index] = NULL;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010143 clear_avail_alloc_bits(root->fs_info, block_group->flags);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010144 }
Josef Bacik80eb2342008-10-29 14:49:05 -040010145 up_write(&block_group->space_info->groups_sem);
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010146 if (kobj) {
10147 kobject_del(kobj);
10148 kobject_put(kobj);
10149 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010150
Filipe Manana4f69cb92014-11-26 15:28:51 +000010151 if (block_group->has_caching_ctl)
10152 caching_ctl = get_caching_control(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -040010153 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -040010154 wait_block_group_cache_done(block_group);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010155 if (block_group->has_caching_ctl) {
10156 down_write(&root->fs_info->commit_root_sem);
10157 if (!caching_ctl) {
10158 struct btrfs_caching_control *ctl;
10159
10160 list_for_each_entry(ctl,
10161 &root->fs_info->caching_block_groups, list)
10162 if (ctl->block_group == block_group) {
10163 caching_ctl = ctl;
10164 atomic_inc(&caching_ctl->count);
10165 break;
10166 }
10167 }
10168 if (caching_ctl)
10169 list_del_init(&caching_ctl->list);
10170 up_write(&root->fs_info->commit_root_sem);
10171 if (caching_ctl) {
10172 /* Once for the caching bgs list and once for us. */
10173 put_caching_control(caching_ctl);
10174 put_caching_control(caching_ctl);
10175 }
10176 }
Josef Bacik817d52f2009-07-13 21:29:25 -040010177
Josef Bacikce93ec52014-11-17 15:45:48 -050010178 spin_lock(&trans->transaction->dirty_bgs_lock);
10179 if (!list_empty(&block_group->dirty_list)) {
Chris Mason1bbc6212015-04-06 12:46:08 -070010180 WARN_ON(1);
10181 }
10182 if (!list_empty(&block_group->io_list)) {
10183 WARN_ON(1);
Josef Bacikce93ec52014-11-17 15:45:48 -050010184 }
10185 spin_unlock(&trans->transaction->dirty_bgs_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -040010186 btrfs_remove_free_space_cache(block_group);
10187
Yan Zhengc146afa2008-11-12 14:34:12 -050010188 spin_lock(&block_group->space_info->lock);
Filipe Manana75c68e92015-01-16 13:24:40 +000010189 list_del_init(&block_group->ro_list);
Zhao Lei18d018a2015-02-24 20:07:44 +080010190
10191 if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
10192 WARN_ON(block_group->space_info->total_bytes
10193 < block_group->key.offset);
10194 WARN_ON(block_group->space_info->bytes_readonly
10195 < block_group->key.offset);
10196 WARN_ON(block_group->space_info->disk_total
10197 < block_group->key.offset * factor);
10198 }
Yan Zhengc146afa2008-11-12 14:34:12 -050010199 block_group->space_info->total_bytes -= block_group->key.offset;
10200 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -040010201 block_group->space_info->disk_total -= block_group->key.offset * factor;
Zhao Lei18d018a2015-02-24 20:07:44 +080010202
Yan Zhengc146afa2008-11-12 14:34:12 -050010203 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -040010204
Josef Bacik0af3d002010-06-21 14:48:16 -040010205 memcpy(&key, &block_group->key, sizeof(key));
10206
Filipe Manana04216822014-11-27 21:14:15 +000010207 lock_chunks(root);
Filipe Manana495e64f2014-12-02 18:07:30 +000010208 if (!list_empty(&em->list)) {
10209 /* We're in the transaction->pending_chunks list. */
10210 free_extent_map(em);
10211 }
Filipe Manana04216822014-11-27 21:14:15 +000010212 spin_lock(&block_group->lock);
10213 block_group->removed = 1;
10214 /*
10215 * At this point trimming can't start on this block group, because we
10216 * removed the block group from the tree fs_info->block_group_cache_tree
10217 * so no one can't find it anymore and even if someone already got this
10218 * block group before we removed it from the rbtree, they have already
10219 * incremented block_group->trimming - if they didn't, they won't find
10220 * any free space entries because we already removed them all when we
10221 * called btrfs_remove_free_space_cache().
10222 *
10223 * And we must not remove the extent map from the fs_info->mapping_tree
10224 * to prevent the same logical address range and physical device space
10225 * ranges from being reused for a new block group. This is because our
10226 * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is
10227 * completely transactionless, so while it is trimming a range the
10228 * currently running transaction might finish and a new one start,
10229 * allowing for new block groups to be created that can reuse the same
10230 * physical device locations unless we take this special care.
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010231 *
10232 * There may also be an implicit trim operation if the file system
10233 * is mounted with -odiscard. The same protections must remain
10234 * in place until the extents have been discarded completely when
10235 * the transaction commit has completed.
Filipe Manana04216822014-11-27 21:14:15 +000010236 */
10237 remove_em = (atomic_read(&block_group->trimming) == 0);
10238 /*
10239 * Make sure a trimmer task always sees the em in the pinned_chunks list
10240 * if it sees block_group->removed == 1 (needs to lock block_group->lock
10241 * before checking block_group->removed).
10242 */
10243 if (!remove_em) {
10244 /*
10245 * Our em might be in trans->transaction->pending_chunks which
10246 * is protected by fs_info->chunk_mutex ([lock|unlock]_chunks),
10247 * and so is the fs_info->pinned_chunks list.
10248 *
10249 * So at this point we must be holding the chunk_mutex to avoid
10250 * any races with chunk allocation (more specifically at
10251 * volumes.c:contains_pending_extent()), to ensure it always
10252 * sees the em, either in the pending_chunks list or in the
10253 * pinned_chunks list.
10254 */
10255 list_move_tail(&em->list, &root->fs_info->pinned_chunks);
10256 }
10257 spin_unlock(&block_group->lock);
Filipe Manana04216822014-11-27 21:14:15 +000010258
10259 if (remove_em) {
10260 struct extent_map_tree *em_tree;
10261
10262 em_tree = &root->fs_info->mapping_tree.map_tree;
10263 write_lock(&em_tree->lock);
Filipe Manana8dbcd102014-12-02 18:07:49 +000010264 /*
10265 * The em might be in the pending_chunks list, so make sure the
10266 * chunk mutex is locked, since remove_extent_mapping() will
10267 * delete us from that list.
10268 */
Filipe Manana04216822014-11-27 21:14:15 +000010269 remove_extent_mapping(em_tree, em);
10270 write_unlock(&em_tree->lock);
10271 /* once for the tree */
10272 free_extent_map(em);
10273 }
10274
Filipe Manana8dbcd102014-12-02 18:07:49 +000010275 unlock_chunks(root);
10276
Chris Masonfa9c0d792009-04-03 09:47:43 -040010277 btrfs_put_block_group(block_group);
10278 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -040010279
10280 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
10281 if (ret > 0)
10282 ret = -EIO;
10283 if (ret < 0)
10284 goto out;
10285
10286 ret = btrfs_del_item(trans, root, path);
10287out:
10288 btrfs_free_path(path);
10289 return ret;
10290}
liuboacce9522011-01-06 19:30:25 +080010291
Filipe Manana8eab77f2015-11-13 23:57:16 +000010292struct btrfs_trans_handle *
Filipe Manana7fd01182015-11-13 23:57:17 +000010293btrfs_start_trans_remove_block_group(struct btrfs_fs_info *fs_info,
10294 const u64 chunk_offset)
Filipe Manana8eab77f2015-11-13 23:57:16 +000010295{
Filipe Manana7fd01182015-11-13 23:57:17 +000010296 struct extent_map_tree *em_tree = &fs_info->mapping_tree.map_tree;
10297 struct extent_map *em;
10298 struct map_lookup *map;
10299 unsigned int num_items;
10300
10301 read_lock(&em_tree->lock);
10302 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
10303 read_unlock(&em_tree->lock);
10304 ASSERT(em && em->start == chunk_offset);
10305
Filipe Manana8eab77f2015-11-13 23:57:16 +000010306 /*
Filipe Manana7fd01182015-11-13 23:57:17 +000010307 * We need to reserve 3 + N units from the metadata space info in order
10308 * to remove a block group (done at btrfs_remove_chunk() and at
10309 * btrfs_remove_block_group()), which are used for:
10310 *
Filipe Manana8eab77f2015-11-13 23:57:16 +000010311 * 1 unit for adding the free space inode's orphan (located in the tree
10312 * of tree roots).
Filipe Manana7fd01182015-11-13 23:57:17 +000010313 * 1 unit for deleting the block group item (located in the extent
10314 * tree).
10315 * 1 unit for deleting the free space item (located in tree of tree
10316 * roots).
10317 * N units for deleting N device extent items corresponding to each
10318 * stripe (located in the device tree).
10319 *
10320 * In order to remove a block group we also need to reserve units in the
10321 * system space info in order to update the chunk tree (update one or
10322 * more device items and remove one chunk item), but this is done at
10323 * btrfs_remove_chunk() through a call to check_system_chunk().
Filipe Manana8eab77f2015-11-13 23:57:16 +000010324 */
Filipe Manana7fd01182015-11-13 23:57:17 +000010325 map = (struct map_lookup *)em->bdev;
10326 num_items = 3 + map->num_stripes;
10327 free_extent_map(em);
10328
Filipe Manana8eab77f2015-11-13 23:57:16 +000010329 return btrfs_start_transaction_fallback_global_rsv(fs_info->extent_root,
Filipe Manana7fd01182015-11-13 23:57:17 +000010330 num_items, 1);
Filipe Manana8eab77f2015-11-13 23:57:16 +000010331}
10332
Josef Bacik47ab2a62014-09-18 11:20:02 -040010333/*
10334 * Process the unused_bgs list and remove any that don't have any allocated
10335 * space inside of them.
10336 */
10337void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info)
10338{
10339 struct btrfs_block_group_cache *block_group;
10340 struct btrfs_space_info *space_info;
10341 struct btrfs_root *root = fs_info->extent_root;
10342 struct btrfs_trans_handle *trans;
10343 int ret = 0;
10344
10345 if (!fs_info->open)
10346 return;
10347
10348 spin_lock(&fs_info->unused_bgs_lock);
10349 while (!list_empty(&fs_info->unused_bgs)) {
10350 u64 start, end;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010351 int trimming;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010352
10353 block_group = list_first_entry(&fs_info->unused_bgs,
10354 struct btrfs_block_group_cache,
10355 bg_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010356 list_del_init(&block_group->bg_list);
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010357
10358 space_info = block_group->space_info;
10359
Josef Bacik47ab2a62014-09-18 11:20:02 -040010360 if (ret || btrfs_mixed_space_info(space_info)) {
10361 btrfs_put_block_group(block_group);
10362 continue;
10363 }
10364 spin_unlock(&fs_info->unused_bgs_lock);
10365
Zhao Leid5f2e332015-10-08 18:46:44 +080010366 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Filipe Manana67c5e7d2015-06-11 00:58:53 +010010367
Josef Bacik47ab2a62014-09-18 11:20:02 -040010368 /* Don't want to race with allocators so take the groups_sem */
10369 down_write(&space_info->groups_sem);
10370 spin_lock(&block_group->lock);
10371 if (block_group->reserved ||
10372 btrfs_block_group_used(&block_group->item) ||
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010373 block_group->ro ||
10374 list_is_singular(&block_group->list)) {
Josef Bacik47ab2a62014-09-18 11:20:02 -040010375 /*
10376 * We want to bail if we made new allocations or have
10377 * outstanding allocations in this block group. We do
10378 * the ro check in case balance is currently acting on
10379 * this block group.
10380 */
10381 spin_unlock(&block_group->lock);
10382 up_write(&space_info->groups_sem);
10383 goto next;
10384 }
10385 spin_unlock(&block_group->lock);
10386
10387 /* We don't want to force the issue, only flip if it's ok. */
Zhaolei868f4012015-08-05 16:43:27 +080010388 ret = inc_block_group_ro(block_group, 0);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010389 up_write(&space_info->groups_sem);
10390 if (ret < 0) {
10391 ret = 0;
10392 goto next;
10393 }
10394
10395 /*
10396 * Want to do this before we do anything else so we can recover
10397 * properly if we fail to join the transaction.
10398 */
Filipe Manana7fd01182015-11-13 23:57:17 +000010399 trans = btrfs_start_trans_remove_block_group(fs_info,
10400 block_group->key.objectid);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010401 if (IS_ERR(trans)) {
Zhaolei868f4012015-08-05 16:43:27 +080010402 btrfs_dec_block_group_ro(root, block_group);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010403 ret = PTR_ERR(trans);
10404 goto next;
10405 }
10406
10407 /*
10408 * We could have pending pinned extents for this block group,
10409 * just delete them, we don't care about them anymore.
10410 */
10411 start = block_group->key.objectid;
10412 end = start + block_group->key.offset - 1;
Filipe Mananad4b450c2015-01-29 19:18:25 +000010413 /*
10414 * Hold the unused_bg_unpin_mutex lock to avoid racing with
10415 * btrfs_finish_extent_commit(). If we are at transaction N,
10416 * another task might be running finish_extent_commit() for the
10417 * previous transaction N - 1, and have seen a range belonging
10418 * to the block group in freed_extents[] before we were able to
10419 * clear the whole block group range from freed_extents[]. This
10420 * means that task can lookup for the block group after we
10421 * unpinned it from freed_extents[] and removed it, leading to
10422 * a BUG_ON() at btrfs_unpin_extent_range().
10423 */
10424 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana758eb512014-11-03 14:08:39 +000010425 ret = clear_extent_bits(&fs_info->freed_extents[0], start, end,
Josef Bacik47ab2a62014-09-18 11:20:02 -040010426 EXTENT_DIRTY, GFP_NOFS);
Filipe Manana758eb512014-11-03 14:08:39 +000010427 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000010428 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Zhaolei868f4012015-08-05 16:43:27 +080010429 btrfs_dec_block_group_ro(root, block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000010430 goto end_trans;
10431 }
10432 ret = clear_extent_bits(&fs_info->freed_extents[1], start, end,
Josef Bacik47ab2a62014-09-18 11:20:02 -040010433 EXTENT_DIRTY, GFP_NOFS);
Filipe Manana758eb512014-11-03 14:08:39 +000010434 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000010435 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Zhaolei868f4012015-08-05 16:43:27 +080010436 btrfs_dec_block_group_ro(root, block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000010437 goto end_trans;
10438 }
Filipe Mananad4b450c2015-01-29 19:18:25 +000010439 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010440
10441 /* Reset pinned so btrfs_put_block_group doesn't complain */
Zhao Leic30666d2015-02-25 14:17:20 +080010442 spin_lock(&space_info->lock);
10443 spin_lock(&block_group->lock);
10444
10445 space_info->bytes_pinned -= block_group->pinned;
10446 space_info->bytes_readonly += block_group->pinned;
10447 percpu_counter_add(&space_info->total_bytes_pinned,
10448 -block_group->pinned);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010449 block_group->pinned = 0;
10450
Zhao Leic30666d2015-02-25 14:17:20 +080010451 spin_unlock(&block_group->lock);
10452 spin_unlock(&space_info->lock);
10453
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010454 /* DISCARD can flip during remount */
10455 trimming = btrfs_test_opt(root, DISCARD);
10456
10457 /* Implicit trim during transaction commit. */
10458 if (trimming)
10459 btrfs_get_block_group_trimming(block_group);
10460
Josef Bacik47ab2a62014-09-18 11:20:02 -040010461 /*
10462 * Btrfs_remove_chunk will abort the transaction if things go
10463 * horribly wrong.
10464 */
10465 ret = btrfs_remove_chunk(trans, root,
10466 block_group->key.objectid);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010467
10468 if (ret) {
10469 if (trimming)
10470 btrfs_put_block_group_trimming(block_group);
10471 goto end_trans;
10472 }
10473
10474 /*
10475 * If we're not mounted with -odiscard, we can just forget
10476 * about this block group. Otherwise we'll need to wait
10477 * until transaction commit to do the actual discard.
10478 */
10479 if (trimming) {
Filipe Manana348a0012015-11-27 12:16:16 +000010480 spin_lock(&fs_info->unused_bgs_lock);
10481 /*
10482 * A concurrent scrub might have added us to the list
10483 * fs_info->unused_bgs, so use a list_move operation
10484 * to add the block group to the deleted_bgs list.
10485 */
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010486 list_move(&block_group->bg_list,
10487 &trans->transaction->deleted_bgs);
Filipe Manana348a0012015-11-27 12:16:16 +000010488 spin_unlock(&fs_info->unused_bgs_lock);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010489 btrfs_get_block_group(block_group);
10490 }
Filipe Manana758eb512014-11-03 14:08:39 +000010491end_trans:
Josef Bacik47ab2a62014-09-18 11:20:02 -040010492 btrfs_end_transaction(trans, root);
10493next:
Zhao Leid5f2e332015-10-08 18:46:44 +080010494 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010495 btrfs_put_block_group(block_group);
10496 spin_lock(&fs_info->unused_bgs_lock);
10497 }
10498 spin_unlock(&fs_info->unused_bgs_lock);
10499}
10500
liuboc59021f2011-03-07 02:13:14 +000010501int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
10502{
10503 struct btrfs_space_info *space_info;
liubo1aba86d2011-04-08 08:44:37 +000010504 struct btrfs_super_block *disk_super;
10505 u64 features;
10506 u64 flags;
10507 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +000010508 int ret;
10509
David Sterba6c417612011-04-13 15:41:04 +020010510 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +000010511 if (!btrfs_super_root(disk_super))
10512 return 1;
liuboc59021f2011-03-07 02:13:14 +000010513
liubo1aba86d2011-04-08 08:44:37 +000010514 features = btrfs_super_incompat_flags(disk_super);
10515 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
10516 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +000010517
liubo1aba86d2011-04-08 08:44:37 +000010518 flags = BTRFS_BLOCK_GROUP_SYSTEM;
10519 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
liuboc59021f2011-03-07 02:13:14 +000010520 if (ret)
liubo1aba86d2011-04-08 08:44:37 +000010521 goto out;
liuboc59021f2011-03-07 02:13:14 +000010522
liubo1aba86d2011-04-08 08:44:37 +000010523 if (mixed) {
10524 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
10525 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
10526 } else {
10527 flags = BTRFS_BLOCK_GROUP_METADATA;
10528 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
10529 if (ret)
10530 goto out;
10531
10532 flags = BTRFS_BLOCK_GROUP_DATA;
10533 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
10534 }
10535out:
liuboc59021f2011-03-07 02:13:14 +000010536 return ret;
10537}
10538
liuboacce9522011-01-06 19:30:25 +080010539int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
10540{
Filipe Manana678886b2014-12-07 21:31:47 +000010541 return unpin_extent_range(root, start, end, false);
liuboacce9522011-01-06 19:30:25 +080010542}
10543
Jeff Mahoney499f3772015-06-15 09:41:17 -040010544/*
10545 * It used to be that old block groups would be left around forever.
10546 * Iterating over them would be enough to trim unused space. Since we
10547 * now automatically remove them, we also need to iterate over unallocated
10548 * space.
10549 *
10550 * We don't want a transaction for this since the discard may take a
10551 * substantial amount of time. We don't require that a transaction be
10552 * running, but we do need to take a running transaction into account
10553 * to ensure that we're not discarding chunks that were released in
10554 * the current transaction.
10555 *
10556 * Holding the chunks lock will prevent other threads from allocating
10557 * or releasing chunks, but it won't prevent a running transaction
10558 * from committing and releasing the memory that the pending chunks
10559 * list head uses. For that, we need to take a reference to the
10560 * transaction.
10561 */
10562static int btrfs_trim_free_extents(struct btrfs_device *device,
10563 u64 minlen, u64 *trimmed)
10564{
10565 u64 start = 0, len = 0;
10566 int ret;
10567
10568 *trimmed = 0;
10569
10570 /* Not writeable = nothing to do. */
10571 if (!device->writeable)
10572 return 0;
10573
10574 /* No free space = nothing to do. */
10575 if (device->total_bytes <= device->bytes_used)
10576 return 0;
10577
10578 ret = 0;
10579
10580 while (1) {
10581 struct btrfs_fs_info *fs_info = device->dev_root->fs_info;
10582 struct btrfs_transaction *trans;
10583 u64 bytes;
10584
10585 ret = mutex_lock_interruptible(&fs_info->chunk_mutex);
10586 if (ret)
10587 return ret;
10588
10589 down_read(&fs_info->commit_root_sem);
10590
10591 spin_lock(&fs_info->trans_lock);
10592 trans = fs_info->running_transaction;
10593 if (trans)
10594 atomic_inc(&trans->use_count);
10595 spin_unlock(&fs_info->trans_lock);
10596
10597 ret = find_free_dev_extent_start(trans, device, minlen, start,
10598 &start, &len);
10599 if (trans)
10600 btrfs_put_transaction(trans);
10601
10602 if (ret) {
10603 up_read(&fs_info->commit_root_sem);
10604 mutex_unlock(&fs_info->chunk_mutex);
10605 if (ret == -ENOSPC)
10606 ret = 0;
10607 break;
10608 }
10609
10610 ret = btrfs_issue_discard(device->bdev, start, len, &bytes);
10611 up_read(&fs_info->commit_root_sem);
10612 mutex_unlock(&fs_info->chunk_mutex);
10613
10614 if (ret)
10615 break;
10616
10617 start += len;
10618 *trimmed += bytes;
10619
10620 if (fatal_signal_pending(current)) {
10621 ret = -ERESTARTSYS;
10622 break;
10623 }
10624
10625 cond_resched();
10626 }
10627
10628 return ret;
10629}
10630
Li Dongyangf7039b12011-03-24 10:24:28 +000010631int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range)
10632{
10633 struct btrfs_fs_info *fs_info = root->fs_info;
10634 struct btrfs_block_group_cache *cache = NULL;
Jeff Mahoney499f3772015-06-15 09:41:17 -040010635 struct btrfs_device *device;
10636 struct list_head *devices;
Li Dongyangf7039b12011-03-24 10:24:28 +000010637 u64 group_trimmed;
10638 u64 start;
10639 u64 end;
10640 u64 trimmed = 0;
Liu Bo2cac13e2012-02-09 18:17:41 +080010641 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +000010642 int ret = 0;
10643
Liu Bo2cac13e2012-02-09 18:17:41 +080010644 /*
10645 * try to trim all FS space, our block group may start from non-zero.
10646 */
10647 if (range->len == total_bytes)
10648 cache = btrfs_lookup_first_block_group(fs_info, range->start);
10649 else
10650 cache = btrfs_lookup_block_group(fs_info, range->start);
Li Dongyangf7039b12011-03-24 10:24:28 +000010651
10652 while (cache) {
10653 if (cache->key.objectid >= (range->start + range->len)) {
10654 btrfs_put_block_group(cache);
10655 break;
10656 }
10657
10658 start = max(range->start, cache->key.objectid);
10659 end = min(range->start + range->len,
10660 cache->key.objectid + cache->key.offset);
10661
10662 if (end - start >= range->minlen) {
10663 if (!block_group_cache_done(cache)) {
Liu Bof6373bf2012-12-27 09:01:18 +000010664 ret = cache_block_group(cache, 0);
Josef Bacik1be41b72013-06-12 13:56:06 -040010665 if (ret) {
10666 btrfs_put_block_group(cache);
10667 break;
10668 }
10669 ret = wait_block_group_cache_done(cache);
10670 if (ret) {
10671 btrfs_put_block_group(cache);
10672 break;
10673 }
Li Dongyangf7039b12011-03-24 10:24:28 +000010674 }
10675 ret = btrfs_trim_block_group(cache,
10676 &group_trimmed,
10677 start,
10678 end,
10679 range->minlen);
10680
10681 trimmed += group_trimmed;
10682 if (ret) {
10683 btrfs_put_block_group(cache);
10684 break;
10685 }
10686 }
10687
10688 cache = next_block_group(fs_info->tree_root, cache);
10689 }
10690
Jeff Mahoney499f3772015-06-15 09:41:17 -040010691 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
10692 devices = &root->fs_info->fs_devices->alloc_list;
10693 list_for_each_entry(device, devices, dev_alloc_list) {
10694 ret = btrfs_trim_free_extents(device, range->minlen,
10695 &group_trimmed);
10696 if (ret)
10697 break;
10698
10699 trimmed += group_trimmed;
10700 }
10701 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
10702
Li Dongyangf7039b12011-03-24 10:24:28 +000010703 range->len = trimmed;
10704 return ret;
10705}
Miao Xie8257b2d2014-03-06 13:38:19 +080010706
10707/*
Filipe Manana9ea24bb2014-10-29 11:57:59 +000010708 * btrfs_{start,end}_write_no_snapshoting() are similar to
10709 * mnt_{want,drop}_write(), they are used to prevent some tasks from writing
10710 * data into the page cache through nocow before the subvolume is snapshoted,
10711 * but flush the data into disk after the snapshot creation, or to prevent
10712 * operations while snapshoting is ongoing and that cause the snapshot to be
10713 * inconsistent (writes followed by expanding truncates for example).
Miao Xie8257b2d2014-03-06 13:38:19 +080010714 */
Filipe Manana9ea24bb2014-10-29 11:57:59 +000010715void btrfs_end_write_no_snapshoting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080010716{
10717 percpu_counter_dec(&root->subv_writers->counter);
10718 /*
David Sterbaa83342a2015-02-16 19:36:47 +010010719 * Make sure counter is updated before we wake up waiters.
Miao Xie8257b2d2014-03-06 13:38:19 +080010720 */
10721 smp_mb();
10722 if (waitqueue_active(&root->subv_writers->wait))
10723 wake_up(&root->subv_writers->wait);
10724}
10725
Filipe Manana9ea24bb2014-10-29 11:57:59 +000010726int btrfs_start_write_no_snapshoting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080010727{
David Sterbaee39b432014-09-30 01:33:33 +020010728 if (atomic_read(&root->will_be_snapshoted))
Miao Xie8257b2d2014-03-06 13:38:19 +080010729 return 0;
10730
10731 percpu_counter_inc(&root->subv_writers->counter);
10732 /*
10733 * Make sure counter is updated before we check for snapshot creation.
10734 */
10735 smp_mb();
David Sterbaee39b432014-09-30 01:33:33 +020010736 if (atomic_read(&root->will_be_snapshoted)) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +000010737 btrfs_end_write_no_snapshoting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +080010738 return 0;
10739 }
10740 return 1;
10741}