blob: a0ca2b5914d06c79b1697547ef42df9c07592e04 [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"
Omar Sandoval1e144fb2015-09-29 20:50:37 -070036#include "free-space-tree.h"
Miao Xie3fed40c2012-09-13 04:51:36 -060037#include "math.h"
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040038#include "sysfs.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070039#include "qgroup.h"
Chris Masonfec577f2007-02-26 10:40:21 -050040
Arne Jansen709c0482011-09-12 12:22:57 +020041#undef SCRAMBLE_DELAYED_REFS
42
Miao Xie9e622d62012-01-26 15:01:12 -050043/*
44 * control flags for do_chunk_alloc's force field
Chris Mason0e4f8f82011-04-15 16:05:44 -040045 * CHUNK_ALLOC_NO_FORCE means to only allocate a chunk
46 * if we really need one.
47 *
Chris Mason0e4f8f82011-04-15 16:05:44 -040048 * CHUNK_ALLOC_LIMITED means to only try and allocate one
49 * if we have very few chunks already allocated. This is
50 * used as part of the clustering code to help make sure
51 * we have a good pool of storage to cluster in, without
52 * filling the FS with empty chunks
53 *
Miao Xie9e622d62012-01-26 15:01:12 -050054 * CHUNK_ALLOC_FORCE means it must try to allocate one
55 *
Chris Mason0e4f8f82011-04-15 16:05:44 -040056 */
57enum {
58 CHUNK_ALLOC_NO_FORCE = 0,
Miao Xie9e622d62012-01-26 15:01:12 -050059 CHUNK_ALLOC_LIMITED = 1,
60 CHUNK_ALLOC_FORCE = 2,
Chris Mason0e4f8f82011-04-15 16:05:44 -040061};
62
Josef Bacikfb25e912011-07-26 17:00:46 -040063/*
64 * Control how reservations are dealt with.
65 *
66 * RESERVE_FREE - freeing a reservation.
67 * RESERVE_ALLOC - allocating space and we need to update bytes_may_use for
68 * ENOSPC accounting
69 * RESERVE_ALLOC_NO_ACCOUNT - allocating space and we should not update
70 * bytes_may_use as the ENOSPC accounting is done elsewhere
71 */
72enum {
73 RESERVE_FREE = 0,
74 RESERVE_ALLOC = 1,
75 RESERVE_ALLOC_NO_ACCOUNT = 2,
76};
77
Josef Bacikce93ec52014-11-17 15:45:48 -050078static int update_block_group(struct btrfs_trans_handle *trans,
79 struct btrfs_root *root, u64 bytenr,
80 u64 num_bytes, int alloc);
Yan Zheng5d4f98a2009-06-10 10:45:14 -040081static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
82 struct btrfs_root *root,
Qu Wenruoc682f9b2015-03-17 16:59:47 +080083 struct btrfs_delayed_ref_node *node, u64 parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -040084 u64 root_objectid, u64 owner_objectid,
85 u64 owner_offset, int refs_to_drop,
Qu Wenruoc682f9b2015-03-17 16:59:47 +080086 struct btrfs_delayed_extent_op *extra_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -040087static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
88 struct extent_buffer *leaf,
89 struct btrfs_extent_item *ei);
90static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
91 struct btrfs_root *root,
92 u64 parent, u64 root_objectid,
93 u64 flags, u64 owner, u64 offset,
94 struct btrfs_key *ins, int ref_mod);
95static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
96 struct btrfs_root *root,
97 u64 parent, u64 root_objectid,
98 u64 flags, struct btrfs_disk_key *key,
Filipe Mananab06c4bf2015-10-23 07:52:54 +010099 int level, struct btrfs_key *ins);
Josef Bacik6a632092009-02-20 11:00:09 -0500100static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Josef Bacik698d0082012-09-12 14:08:47 -0400101 struct btrfs_root *extent_root, u64 flags,
102 int force);
Yan Zheng11833d62009-09-11 16:11:19 -0400103static int find_next_key(struct btrfs_path *path, int level,
104 struct btrfs_key *key);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400105static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
106 int dump_block_groups);
Josef Bacikfb25e912011-07-26 17:00:46 -0400107static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
Miao Xiee570fd22014-06-19 10:42:50 +0800108 u64 num_bytes, int reserve,
109 int delalloc);
Josef Bacik5d803662013-02-07 16:06:02 -0500110static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
111 u64 num_bytes);
Eric Sandeen48a3b632013-04-25 20:41:01 +0000112int btrfs_pin_extent(struct btrfs_root *root,
113 u64 bytenr, u64 num_bytes, int reserved);
Josef Bacik957780e2016-05-17 13:30:55 -0400114static int __reserve_metadata_bytes(struct btrfs_root *root,
115 struct btrfs_space_info *space_info,
116 u64 orig_bytes,
117 enum btrfs_reserve_flush_enum flush);
118static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
119 struct btrfs_space_info *space_info,
120 u64 num_bytes);
121static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info,
122 struct btrfs_space_info *space_info,
123 u64 num_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -0500124
Josef Bacik817d52f2009-07-13 21:29:25 -0400125static noinline int
126block_group_cache_done(struct btrfs_block_group_cache *cache)
127{
128 smp_mb();
Josef Bacik36cce922013-08-05 11:15:21 -0400129 return cache->cached == BTRFS_CACHE_FINISHED ||
130 cache->cached == BTRFS_CACHE_ERROR;
Josef Bacik817d52f2009-07-13 21:29:25 -0400131}
132
Josef Bacik0f9dd462008-09-23 13:14:11 -0400133static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
134{
135 return (cache->flags & bits) == bits;
136}
137
Filipe Manana758f2df2015-11-19 11:45:48 +0000138void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
Josef Bacik11dfe352009-11-13 20:12:59 +0000139{
140 atomic_inc(&cache->count);
141}
142
143void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
144{
Yan, Zhengf0486c62010-05-16 10:46:25 -0400145 if (atomic_dec_and_test(&cache->count)) {
146 WARN_ON(cache->pinned > 0);
147 WARN_ON(cache->reserved > 0);
Li Zefan34d52cb2011-03-29 13:46:06 +0800148 kfree(cache->free_space_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000149 kfree(cache);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400150 }
Josef Bacik11dfe352009-11-13 20:12:59 +0000151}
152
Josef Bacik0f9dd462008-09-23 13:14:11 -0400153/*
154 * this adds the block group to the fs_info rb tree for the block group
155 * cache
156 */
Christoph Hellwigb2950862008-12-02 09:54:17 -0500157static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400158 struct btrfs_block_group_cache *block_group)
159{
160 struct rb_node **p;
161 struct rb_node *parent = NULL;
162 struct btrfs_block_group_cache *cache;
163
164 spin_lock(&info->block_group_cache_lock);
165 p = &info->block_group_cache_tree.rb_node;
166
167 while (*p) {
168 parent = *p;
169 cache = rb_entry(parent, struct btrfs_block_group_cache,
170 cache_node);
171 if (block_group->key.objectid < cache->key.objectid) {
172 p = &(*p)->rb_left;
173 } else if (block_group->key.objectid > cache->key.objectid) {
174 p = &(*p)->rb_right;
175 } else {
176 spin_unlock(&info->block_group_cache_lock);
177 return -EEXIST;
178 }
179 }
180
181 rb_link_node(&block_group->cache_node, parent, p);
182 rb_insert_color(&block_group->cache_node,
183 &info->block_group_cache_tree);
Liu Boa1897fd2012-12-27 09:01:23 +0000184
185 if (info->first_logical_byte > block_group->key.objectid)
186 info->first_logical_byte = block_group->key.objectid;
187
Josef Bacik0f9dd462008-09-23 13:14:11 -0400188 spin_unlock(&info->block_group_cache_lock);
189
190 return 0;
191}
192
193/*
194 * This will return the block group at or after bytenr if contains is 0, else
195 * it will return the block group that contains the bytenr
196 */
197static struct btrfs_block_group_cache *
198block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
199 int contains)
200{
201 struct btrfs_block_group_cache *cache, *ret = NULL;
202 struct rb_node *n;
203 u64 end, start;
204
205 spin_lock(&info->block_group_cache_lock);
206 n = info->block_group_cache_tree.rb_node;
207
208 while (n) {
209 cache = rb_entry(n, struct btrfs_block_group_cache,
210 cache_node);
211 end = cache->key.objectid + cache->key.offset - 1;
212 start = cache->key.objectid;
213
214 if (bytenr < start) {
215 if (!contains && (!ret || start < ret->key.objectid))
216 ret = cache;
217 n = n->rb_left;
218 } else if (bytenr > start) {
219 if (contains && bytenr <= end) {
220 ret = cache;
221 break;
222 }
223 n = n->rb_right;
224 } else {
225 ret = cache;
226 break;
227 }
228 }
Liu Boa1897fd2012-12-27 09:01:23 +0000229 if (ret) {
Josef Bacik11dfe352009-11-13 20:12:59 +0000230 btrfs_get_block_group(ret);
Liu Boa1897fd2012-12-27 09:01:23 +0000231 if (bytenr == 0 && info->first_logical_byte > ret->key.objectid)
232 info->first_logical_byte = ret->key.objectid;
233 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400234 spin_unlock(&info->block_group_cache_lock);
235
236 return ret;
237}
238
Yan Zheng11833d62009-09-11 16:11:19 -0400239static int add_excluded_extent(struct btrfs_root *root,
240 u64 start, u64 num_bytes)
Josef Bacik817d52f2009-07-13 21:29:25 -0400241{
Yan Zheng11833d62009-09-11 16:11:19 -0400242 u64 end = start + num_bytes - 1;
243 set_extent_bits(&root->fs_info->freed_extents[0],
David Sterbaceeb0ae2016-04-26 23:54:39 +0200244 start, end, EXTENT_UPTODATE);
Yan Zheng11833d62009-09-11 16:11:19 -0400245 set_extent_bits(&root->fs_info->freed_extents[1],
David Sterbaceeb0ae2016-04-26 23:54:39 +0200246 start, end, EXTENT_UPTODATE);
Yan Zheng11833d62009-09-11 16:11:19 -0400247 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400248}
249
Yan Zheng11833d62009-09-11 16:11:19 -0400250static void free_excluded_extents(struct btrfs_root *root,
251 struct btrfs_block_group_cache *cache)
Josef Bacik817d52f2009-07-13 21:29:25 -0400252{
Yan Zheng11833d62009-09-11 16:11:19 -0400253 u64 start, end;
254
255 start = cache->key.objectid;
256 end = start + cache->key.offset - 1;
257
258 clear_extent_bits(&root->fs_info->freed_extents[0],
David Sterba91166212016-04-26 23:54:39 +0200259 start, end, EXTENT_UPTODATE);
Yan Zheng11833d62009-09-11 16:11:19 -0400260 clear_extent_bits(&root->fs_info->freed_extents[1],
David Sterba91166212016-04-26 23:54:39 +0200261 start, end, EXTENT_UPTODATE);
Yan Zheng11833d62009-09-11 16:11:19 -0400262}
263
264static int exclude_super_stripes(struct btrfs_root *root,
265 struct btrfs_block_group_cache *cache)
266{
Josef Bacik817d52f2009-07-13 21:29:25 -0400267 u64 bytenr;
268 u64 *logical;
269 int stripe_len;
270 int i, nr, ret;
271
Yan, Zheng06b23312009-11-26 09:31:11 +0000272 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
273 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
274 cache->bytes_super += stripe_len;
275 ret = add_excluded_extent(root, cache->key.objectid,
276 stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400277 if (ret)
278 return ret;
Yan, Zheng06b23312009-11-26 09:31:11 +0000279 }
280
Josef Bacik817d52f2009-07-13 21:29:25 -0400281 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
282 bytenr = btrfs_sb_offset(i);
283 ret = btrfs_rmap_block(&root->fs_info->mapping_tree,
284 cache->key.objectid, bytenr,
285 0, &logical, &nr, &stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400286 if (ret)
287 return ret;
Yan Zheng11833d62009-09-11 16:11:19 -0400288
Josef Bacik817d52f2009-07-13 21:29:25 -0400289 while (nr--) {
Josef Bacik51bf5f02013-04-23 12:55:21 -0400290 u64 start, len;
291
292 if (logical[nr] > cache->key.objectid +
293 cache->key.offset)
294 continue;
295
296 if (logical[nr] + stripe_len <= cache->key.objectid)
297 continue;
298
299 start = logical[nr];
300 if (start < cache->key.objectid) {
301 start = cache->key.objectid;
302 len = (logical[nr] + stripe_len) - start;
303 } else {
304 len = min_t(u64, stripe_len,
305 cache->key.objectid +
306 cache->key.offset - start);
307 }
308
309 cache->bytes_super += len;
310 ret = add_excluded_extent(root, start, len);
Josef Bacik835d9742013-03-19 12:13:25 -0400311 if (ret) {
312 kfree(logical);
313 return ret;
314 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400315 }
Yan Zheng11833d62009-09-11 16:11:19 -0400316
Josef Bacik817d52f2009-07-13 21:29:25 -0400317 kfree(logical);
318 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400319 return 0;
320}
321
Yan Zheng11833d62009-09-11 16:11:19 -0400322static struct btrfs_caching_control *
323get_caching_control(struct btrfs_block_group_cache *cache)
324{
325 struct btrfs_caching_control *ctl;
326
327 spin_lock(&cache->lock);
Josef Bacikdde5abe2010-09-16 16:17:03 -0400328 if (!cache->caching_ctl) {
329 spin_unlock(&cache->lock);
330 return NULL;
331 }
332
Yan Zheng11833d62009-09-11 16:11:19 -0400333 ctl = cache->caching_ctl;
334 atomic_inc(&ctl->count);
335 spin_unlock(&cache->lock);
336 return ctl;
337}
338
339static void put_caching_control(struct btrfs_caching_control *ctl)
340{
341 if (atomic_dec_and_test(&ctl->count))
342 kfree(ctl);
343}
344
Josef Bacikd0bd4562015-09-23 14:54:14 -0400345#ifdef CONFIG_BTRFS_DEBUG
346static void fragment_free_space(struct btrfs_root *root,
347 struct btrfs_block_group_cache *block_group)
348{
349 u64 start = block_group->key.objectid;
350 u64 len = block_group->key.offset;
351 u64 chunk = block_group->flags & BTRFS_BLOCK_GROUP_METADATA ?
352 root->nodesize : root->sectorsize;
353 u64 step = chunk << 1;
354
355 while (len > chunk) {
356 btrfs_remove_free_space(block_group, start, chunk);
357 start += step;
358 if (len < step)
359 len = 0;
360 else
361 len -= step;
362 }
363}
364#endif
365
Josef Bacik0f9dd462008-09-23 13:14:11 -0400366/*
367 * this is only called by cache_block_group, since we could have freed extents
368 * we need to check the pinned_extents for any extents that can't be used yet
369 * since their free space will be released as soon as the transaction commits.
370 */
Omar Sandovala5ed9182015-09-29 20:50:35 -0700371u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
372 struct btrfs_fs_info *info, u64 start, u64 end)
Josef Bacik0f9dd462008-09-23 13:14:11 -0400373{
Josef Bacik817d52f2009-07-13 21:29:25 -0400374 u64 extent_start, extent_end, size, total_added = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400375 int ret;
376
377 while (start < end) {
Yan Zheng11833d62009-09-11 16:11:19 -0400378 ret = find_first_extent_bit(info->pinned_extents, start,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400379 &extent_start, &extent_end,
Josef Bacike6138872012-09-27 17:07:30 -0400380 EXTENT_DIRTY | EXTENT_UPTODATE,
381 NULL);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400382 if (ret)
383 break;
384
Yan, Zheng06b23312009-11-26 09:31:11 +0000385 if (extent_start <= start) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400386 start = extent_end + 1;
387 } else if (extent_start > start && extent_start < end) {
388 size = extent_start - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400389 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500390 ret = btrfs_add_free_space(block_group, start,
391 size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100392 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400393 start = extent_end + 1;
394 } else {
395 break;
396 }
397 }
398
399 if (start < end) {
400 size = end - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400401 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500402 ret = btrfs_add_free_space(block_group, start, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100403 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400404 }
405
Josef Bacik817d52f2009-07-13 21:29:25 -0400406 return total_added;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400407}
408
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700409static int load_extent_tree_free(struct btrfs_caching_control *caching_ctl)
Chris Masone37c9e62007-05-09 20:13:14 -0400410{
Josef Bacikbab39bf2011-06-30 14:42:28 -0400411 struct btrfs_block_group_cache *block_group;
412 struct btrfs_fs_info *fs_info;
Josef Bacikbab39bf2011-06-30 14:42:28 -0400413 struct btrfs_root *extent_root;
Chris Masone37c9e62007-05-09 20:13:14 -0400414 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400415 struct extent_buffer *leaf;
Yan Zheng11833d62009-09-11 16:11:19 -0400416 struct btrfs_key key;
Josef Bacik817d52f2009-07-13 21:29:25 -0400417 u64 total_found = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400418 u64 last = 0;
419 u32 nritems;
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700420 int ret;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400421 bool wakeup = true;
Chris Masonf510cfe2007-10-15 16:14:48 -0400422
Josef Bacikbab39bf2011-06-30 14:42:28 -0400423 block_group = caching_ctl->block_group;
424 fs_info = block_group->fs_info;
425 extent_root = fs_info->extent_root;
426
Chris Masone37c9e62007-05-09 20:13:14 -0400427 path = btrfs_alloc_path();
428 if (!path)
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700429 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -0400430
Josef Bacik817d52f2009-07-13 21:29:25 -0400431 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
Yan Zheng11833d62009-09-11 16:11:19 -0400432
Josef Bacikd0bd4562015-09-23 14:54:14 -0400433#ifdef CONFIG_BTRFS_DEBUG
434 /*
435 * If we're fragmenting we don't want to make anybody think we can
436 * allocate from this block group until we've had a chance to fragment
437 * the free space.
438 */
439 if (btrfs_should_fragment_free_space(extent_root, block_group))
440 wakeup = false;
441#endif
Chris Mason5cd57b22008-06-25 16:01:30 -0400442 /*
Josef Bacik817d52f2009-07-13 21:29:25 -0400443 * We don't want to deadlock with somebody trying to allocate a new
444 * extent for the extent root while also trying to search the extent
445 * root to add free space. So we skip locking and search the commit
446 * root, since its read-only
Chris Mason5cd57b22008-06-25 16:01:30 -0400447 */
448 path->skip_locking = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400449 path->search_commit_root = 1;
David Sterbae4058b52015-11-27 16:31:35 +0100450 path->reada = READA_FORWARD;
Josef Bacik817d52f2009-07-13 21:29:25 -0400451
Yan Zhenge4404d62008-12-12 10:03:26 -0500452 key.objectid = last;
Chris Masone37c9e62007-05-09 20:13:14 -0400453 key.offset = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400454 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason013f1b12009-07-31 14:57:55 -0400455
Liu Bo52ee28d2013-07-11 17:51:15 +0800456next:
Yan Zheng11833d62009-09-11 16:11:19 -0400457 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
Chris Masone37c9e62007-05-09 20:13:14 -0400458 if (ret < 0)
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700459 goto out;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500460
Yan Zheng11833d62009-09-11 16:11:19 -0400461 leaf = path->nodes[0];
462 nritems = btrfs_header_nritems(leaf);
463
Chris Masond3977122009-01-05 21:25:51 -0500464 while (1) {
David Sterba7841cb22011-05-31 18:07:27 +0200465 if (btrfs_fs_closing(fs_info) > 1) {
Yan Zhengf25784b2009-07-28 08:41:57 -0400466 last = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400467 break;
Yan Zhengf25784b2009-07-28 08:41:57 -0400468 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400469
Yan Zheng11833d62009-09-11 16:11:19 -0400470 if (path->slots[0] < nritems) {
471 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
472 } else {
473 ret = find_next_key(path, 0, &key);
474 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -0400475 break;
Josef Bacik817d52f2009-07-13 21:29:25 -0400476
Josef Bacikc9ea7b22013-09-19 10:02:11 -0400477 if (need_resched() ||
Josef Bacik9e351cc2014-03-13 15:42:13 -0400478 rwsem_is_contended(&fs_info->commit_root_sem)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -0400479 if (wakeup)
480 caching_ctl->progress = last;
Chris Masonff5714c2011-05-28 07:00:39 -0400481 btrfs_release_path(path);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400482 up_read(&fs_info->commit_root_sem);
Josef Bacik589d8ad2011-05-11 17:30:53 -0400483 mutex_unlock(&caching_ctl->mutex);
Yan Zheng11833d62009-09-11 16:11:19 -0400484 cond_resched();
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700485 mutex_lock(&caching_ctl->mutex);
486 down_read(&fs_info->commit_root_sem);
487 goto next;
Josef Bacik589d8ad2011-05-11 17:30:53 -0400488 }
Josef Bacik0a3896d2013-04-19 14:37:26 -0400489
490 ret = btrfs_next_leaf(extent_root, path);
491 if (ret < 0)
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700492 goto out;
Josef Bacik0a3896d2013-04-19 14:37:26 -0400493 if (ret)
494 break;
Josef Bacik589d8ad2011-05-11 17:30:53 -0400495 leaf = path->nodes[0];
496 nritems = btrfs_header_nritems(leaf);
497 continue;
Yan Zheng11833d62009-09-11 16:11:19 -0400498 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400499
Liu Bo52ee28d2013-07-11 17:51:15 +0800500 if (key.objectid < last) {
501 key.objectid = last;
502 key.offset = 0;
503 key.type = BTRFS_EXTENT_ITEM_KEY;
504
Josef Bacikd0bd4562015-09-23 14:54:14 -0400505 if (wakeup)
506 caching_ctl->progress = last;
Liu Bo52ee28d2013-07-11 17:51:15 +0800507 btrfs_release_path(path);
508 goto next;
509 }
510
Yan Zheng11833d62009-09-11 16:11:19 -0400511 if (key.objectid < block_group->key.objectid) {
512 path->slots[0]++;
Josef Bacik817d52f2009-07-13 21:29:25 -0400513 continue;
Chris Masone37c9e62007-05-09 20:13:14 -0400514 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400515
Chris Masone37c9e62007-05-09 20:13:14 -0400516 if (key.objectid >= block_group->key.objectid +
Josef Bacik0f9dd462008-09-23 13:14:11 -0400517 block_group->key.offset)
Yan7d7d6062007-09-14 16:15:28 -0400518 break;
Yan7d7d6062007-09-14 16:15:28 -0400519
Josef Bacik3173a182013-03-07 14:22:04 -0500520 if (key.type == BTRFS_EXTENT_ITEM_KEY ||
521 key.type == BTRFS_METADATA_ITEM_KEY) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400522 total_found += add_new_free_space(block_group,
523 fs_info, last,
524 key.objectid);
Josef Bacik3173a182013-03-07 14:22:04 -0500525 if (key.type == BTRFS_METADATA_ITEM_KEY)
526 last = key.objectid +
David Sterba707e8a02014-06-04 19:22:26 +0200527 fs_info->tree_root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500528 else
529 last = key.objectid + key.offset;
Josef Bacik817d52f2009-07-13 21:29:25 -0400530
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700531 if (total_found > CACHING_CTL_WAKE_UP) {
Yan Zheng11833d62009-09-11 16:11:19 -0400532 total_found = 0;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400533 if (wakeup)
534 wake_up(&caching_ctl->wait);
Yan Zheng11833d62009-09-11 16:11:19 -0400535 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400536 }
Chris Masone37c9e62007-05-09 20:13:14 -0400537 path->slots[0]++;
538 }
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400539 ret = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400540
541 total_found += add_new_free_space(block_group, fs_info, last,
542 block_group->key.objectid +
543 block_group->key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -0400544 caching_ctl->progress = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400545
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700546out:
547 btrfs_free_path(path);
548 return ret;
549}
550
551static noinline void caching_thread(struct btrfs_work *work)
552{
553 struct btrfs_block_group_cache *block_group;
554 struct btrfs_fs_info *fs_info;
555 struct btrfs_caching_control *caching_ctl;
Chris Masonb4570aa2015-12-30 07:37:26 -0800556 struct btrfs_root *extent_root;
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700557 int ret;
558
559 caching_ctl = container_of(work, struct btrfs_caching_control, work);
560 block_group = caching_ctl->block_group;
561 fs_info = block_group->fs_info;
Chris Masonb4570aa2015-12-30 07:37:26 -0800562 extent_root = fs_info->extent_root;
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700563
564 mutex_lock(&caching_ctl->mutex);
565 down_read(&fs_info->commit_root_sem);
566
Omar Sandoval1e144fb2015-09-29 20:50:37 -0700567 if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE))
568 ret = load_free_space_tree(caching_ctl);
569 else
570 ret = load_extent_tree_free(caching_ctl);
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700571
Josef Bacik817d52f2009-07-13 21:29:25 -0400572 spin_lock(&block_group->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400573 block_group->caching_ctl = NULL;
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700574 block_group->cached = ret ? BTRFS_CACHE_ERROR : BTRFS_CACHE_FINISHED;
Josef Bacik817d52f2009-07-13 21:29:25 -0400575 spin_unlock(&block_group->lock);
576
Josef Bacikd0bd4562015-09-23 14:54:14 -0400577#ifdef CONFIG_BTRFS_DEBUG
578 if (btrfs_should_fragment_free_space(extent_root, block_group)) {
579 u64 bytes_used;
580
581 spin_lock(&block_group->space_info->lock);
582 spin_lock(&block_group->lock);
583 bytes_used = block_group->key.offset -
584 btrfs_block_group_used(&block_group->item);
585 block_group->space_info->bytes_used += bytes_used >> 1;
586 spin_unlock(&block_group->lock);
587 spin_unlock(&block_group->space_info->lock);
588 fragment_free_space(extent_root, block_group);
589 }
590#endif
591
592 caching_ctl->progress = (u64)-1;
Chris Masonf7d3d2f2015-12-18 11:11:10 -0800593
Josef Bacik9e351cc2014-03-13 15:42:13 -0400594 up_read(&fs_info->commit_root_sem);
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700595 free_excluded_extents(fs_info->extent_root, block_group);
Yan Zheng11833d62009-09-11 16:11:19 -0400596 mutex_unlock(&caching_ctl->mutex);
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700597
Yan Zheng11833d62009-09-11 16:11:19 -0400598 wake_up(&caching_ctl->wait);
599
600 put_caching_control(caching_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000601 btrfs_put_block_group(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -0400602}
603
Josef Bacik9d66e232010-08-25 16:54:15 -0400604static int cache_block_group(struct btrfs_block_group_cache *cache,
Josef Bacik9d66e232010-08-25 16:54:15 -0400605 int load_cache_only)
Josef Bacik817d52f2009-07-13 21:29:25 -0400606{
Josef Bacik291c7d22011-11-14 13:52:14 -0500607 DEFINE_WAIT(wait);
Yan Zheng11833d62009-09-11 16:11:19 -0400608 struct btrfs_fs_info *fs_info = cache->fs_info;
609 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400610 int ret = 0;
611
Josef Bacik291c7d22011-11-14 13:52:14 -0500612 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100613 if (!caching_ctl)
614 return -ENOMEM;
Josef Bacik291c7d22011-11-14 13:52:14 -0500615
616 INIT_LIST_HEAD(&caching_ctl->list);
617 mutex_init(&caching_ctl->mutex);
618 init_waitqueue_head(&caching_ctl->wait);
619 caching_ctl->block_group = cache;
620 caching_ctl->progress = cache->key.objectid;
621 atomic_set(&caching_ctl->count, 1);
Liu Bo9e0af232014-08-15 23:36:53 +0800622 btrfs_init_work(&caching_ctl->work, btrfs_cache_helper,
623 caching_thread, NULL, NULL);
Josef Bacik291c7d22011-11-14 13:52:14 -0500624
625 spin_lock(&cache->lock);
626 /*
627 * This should be a rare occasion, but this could happen I think in the
628 * case where one thread starts to load the space cache info, and then
629 * some other thread starts a transaction commit which tries to do an
630 * allocation while the other thread is still loading the space cache
631 * info. The previous loop should have kept us from choosing this block
632 * group, but if we've moved to the state where we will wait on caching
633 * block groups we need to first check if we're doing a fast load here,
634 * so we can wait for it to finish, otherwise we could end up allocating
635 * from a block group who's cache gets evicted for one reason or
636 * another.
637 */
638 while (cache->cached == BTRFS_CACHE_FAST) {
639 struct btrfs_caching_control *ctl;
640
641 ctl = cache->caching_ctl;
642 atomic_inc(&ctl->count);
643 prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE);
644 spin_unlock(&cache->lock);
645
646 schedule();
647
648 finish_wait(&ctl->wait, &wait);
649 put_caching_control(ctl);
650 spin_lock(&cache->lock);
651 }
652
653 if (cache->cached != BTRFS_CACHE_NO) {
654 spin_unlock(&cache->lock);
655 kfree(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400656 return 0;
Josef Bacik291c7d22011-11-14 13:52:14 -0500657 }
658 WARN_ON(cache->caching_ctl);
659 cache->caching_ctl = caching_ctl;
660 cache->cached = BTRFS_CACHE_FAST;
661 spin_unlock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400662
Josef Bacikd53ba472012-04-12 16:03:57 -0400663 if (fs_info->mount_opt & BTRFS_MOUNT_SPACE_CACHE) {
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500664 mutex_lock(&caching_ctl->mutex);
Josef Bacik9d66e232010-08-25 16:54:15 -0400665 ret = load_free_space_cache(fs_info, cache);
666
667 spin_lock(&cache->lock);
668 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500669 cache->caching_ctl = NULL;
Josef Bacik9d66e232010-08-25 16:54:15 -0400670 cache->cached = BTRFS_CACHE_FINISHED;
671 cache->last_byte_to_unpin = (u64)-1;
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500672 caching_ctl->progress = (u64)-1;
Josef Bacik9d66e232010-08-25 16:54:15 -0400673 } else {
Josef Bacik291c7d22011-11-14 13:52:14 -0500674 if (load_cache_only) {
675 cache->caching_ctl = NULL;
676 cache->cached = BTRFS_CACHE_NO;
677 } else {
678 cache->cached = BTRFS_CACHE_STARTED;
Filipe Manana4f69cb92014-11-26 15:28:51 +0000679 cache->has_caching_ctl = 1;
Josef Bacik291c7d22011-11-14 13:52:14 -0500680 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400681 }
682 spin_unlock(&cache->lock);
Josef Bacikd0bd4562015-09-23 14:54:14 -0400683#ifdef CONFIG_BTRFS_DEBUG
684 if (ret == 1 &&
685 btrfs_should_fragment_free_space(fs_info->extent_root,
686 cache)) {
687 u64 bytes_used;
688
689 spin_lock(&cache->space_info->lock);
690 spin_lock(&cache->lock);
691 bytes_used = cache->key.offset -
692 btrfs_block_group_used(&cache->item);
693 cache->space_info->bytes_used += bytes_used >> 1;
694 spin_unlock(&cache->lock);
695 spin_unlock(&cache->space_info->lock);
696 fragment_free_space(fs_info->extent_root, cache);
697 }
698#endif
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500699 mutex_unlock(&caching_ctl->mutex);
700
Josef Bacik291c7d22011-11-14 13:52:14 -0500701 wake_up(&caching_ctl->wait);
Josef Bacik3c148742011-02-02 15:53:47 +0000702 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500703 put_caching_control(caching_ctl);
Josef Bacik3c148742011-02-02 15:53:47 +0000704 free_excluded_extents(fs_info->extent_root, cache);
Josef Bacik9d66e232010-08-25 16:54:15 -0400705 return 0;
Josef Bacik3c148742011-02-02 15:53:47 +0000706 }
Josef Bacik291c7d22011-11-14 13:52:14 -0500707 } else {
708 /*
Omar Sandoval1e144fb2015-09-29 20:50:37 -0700709 * We're either using the free space tree or no caching at all.
710 * Set cached to the appropriate value and wakeup any waiters.
Josef Bacik291c7d22011-11-14 13:52:14 -0500711 */
712 spin_lock(&cache->lock);
713 if (load_cache_only) {
714 cache->caching_ctl = NULL;
715 cache->cached = BTRFS_CACHE_NO;
716 } else {
717 cache->cached = BTRFS_CACHE_STARTED;
Filipe Manana4f69cb92014-11-26 15:28:51 +0000718 cache->has_caching_ctl = 1;
Josef Bacik291c7d22011-11-14 13:52:14 -0500719 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400720 spin_unlock(&cache->lock);
Josef Bacik291c7d22011-11-14 13:52:14 -0500721 wake_up(&caching_ctl->wait);
722 }
723
724 if (load_cache_only) {
725 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400726 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400727 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400728
Josef Bacik9e351cc2014-03-13 15:42:13 -0400729 down_write(&fs_info->commit_root_sem);
Josef Bacik291c7d22011-11-14 13:52:14 -0500730 atomic_inc(&caching_ctl->count);
Yan Zheng11833d62009-09-11 16:11:19 -0400731 list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400732 up_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -0400733
Josef Bacik11dfe352009-11-13 20:12:59 +0000734 btrfs_get_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -0400735
Qu Wenruoe66f0bb2014-02-28 10:46:12 +0800736 btrfs_queue_work(fs_info->caching_workers, &caching_ctl->work);
Josef Bacik817d52f2009-07-13 21:29:25 -0400737
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400738 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -0400739}
740
Josef Bacik0f9dd462008-09-23 13:14:11 -0400741/*
742 * return the block group that starts at or after bytenr
743 */
Chris Masond3977122009-01-05 21:25:51 -0500744static struct btrfs_block_group_cache *
745btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
Chris Mason0ef3e662008-05-24 14:04:53 -0400746{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400747 struct btrfs_block_group_cache *cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400748
Josef Bacik0f9dd462008-09-23 13:14:11 -0400749 cache = block_group_cache_tree_search(info, bytenr, 0);
Chris Mason0ef3e662008-05-24 14:04:53 -0400750
Josef Bacik0f9dd462008-09-23 13:14:11 -0400751 return cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400752}
753
Josef Bacik0f9dd462008-09-23 13:14:11 -0400754/*
Sankar P9f556842009-05-14 13:52:22 -0400755 * return the block group that contains the given bytenr
Josef Bacik0f9dd462008-09-23 13:14:11 -0400756 */
Chris Masond3977122009-01-05 21:25:51 -0500757struct btrfs_block_group_cache *btrfs_lookup_block_group(
758 struct btrfs_fs_info *info,
759 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400760{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400761 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -0400762
Josef Bacik0f9dd462008-09-23 13:14:11 -0400763 cache = block_group_cache_tree_search(info, bytenr, 1);
Chris Mason96b51792007-10-15 16:15:19 -0400764
Josef Bacik0f9dd462008-09-23 13:14:11 -0400765 return cache;
Chris Masonbe744172007-05-06 10:15:01 -0400766}
Chris Mason0b86a832008-03-24 15:01:56 -0400767
Josef Bacik0f9dd462008-09-23 13:14:11 -0400768static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
769 u64 flags)
Chris Mason6324fbf2008-03-24 15:01:59 -0400770{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400771 struct list_head *head = &info->space_info;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400772 struct btrfs_space_info *found;
Chris Mason4184ea72009-03-10 12:39:20 -0400773
Ilya Dryomov52ba6922012-01-16 22:04:47 +0200774 flags &= BTRFS_BLOCK_GROUP_TYPE_MASK;
Yan, Zhengb742bb82010-05-16 10:46:24 -0400775
Chris Mason4184ea72009-03-10 12:39:20 -0400776 rcu_read_lock();
777 list_for_each_entry_rcu(found, head, list) {
Josef Bacik67377732010-09-16 16:19:09 -0400778 if (found->flags & flags) {
Chris Mason4184ea72009-03-10 12:39:20 -0400779 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400780 return found;
Chris Mason4184ea72009-03-10 12:39:20 -0400781 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400782 }
Chris Mason4184ea72009-03-10 12:39:20 -0400783 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400784 return NULL;
Chris Mason6324fbf2008-03-24 15:01:59 -0400785}
786
Chris Mason4184ea72009-03-10 12:39:20 -0400787/*
788 * after adding space to the filesystem, we need to clear the full flags
789 * on all the space infos.
790 */
791void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
792{
793 struct list_head *head = &info->space_info;
794 struct btrfs_space_info *found;
795
796 rcu_read_lock();
797 list_for_each_entry_rcu(found, head, list)
798 found->full = 0;
799 rcu_read_unlock();
800}
801
Filipe Manana1a4ed8f2014-10-27 10:44:24 +0000802/* simple helper to search for an existing data extent at a given offset */
803int btrfs_lookup_data_extent(struct btrfs_root *root, u64 start, u64 len)
Chris Masone02119d2008-09-05 16:13:11 -0400804{
805 int ret;
806 struct btrfs_key key;
Zheng Yan31840ae2008-09-23 13:14:14 -0400807 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -0400808
Zheng Yan31840ae2008-09-23 13:14:14 -0400809 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700810 if (!path)
811 return -ENOMEM;
812
Chris Masone02119d2008-09-05 16:13:11 -0400813 key.objectid = start;
814 key.offset = len;
Josef Bacik3173a182013-03-07 14:22:04 -0500815 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -0400816 ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path,
817 0, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400818 btrfs_free_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -0500819 return ret;
820}
821
Chris Masond8d5f3e2007-12-11 12:42:00 -0500822/*
Josef Bacik3173a182013-03-07 14:22:04 -0500823 * helper function to lookup reference count and flags of a tree block.
Yan, Zhenga22285a2010-05-16 10:48:46 -0400824 *
825 * the head node for delayed ref is used to store the sum of all the
826 * reference count modifications queued up in the rbtree. the head
827 * node may also store the extent flags to set. This way you can check
828 * to see what the reference count and extent flags would be if all of
829 * the delayed refs are not processed.
830 */
831int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
832 struct btrfs_root *root, u64 bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -0500833 u64 offset, int metadata, u64 *refs, u64 *flags)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400834{
835 struct btrfs_delayed_ref_head *head;
836 struct btrfs_delayed_ref_root *delayed_refs;
837 struct btrfs_path *path;
838 struct btrfs_extent_item *ei;
839 struct extent_buffer *leaf;
840 struct btrfs_key key;
841 u32 item_size;
842 u64 num_refs;
843 u64 extent_flags;
844 int ret;
845
Josef Bacik3173a182013-03-07 14:22:04 -0500846 /*
847 * If we don't have skinny metadata, don't bother doing anything
848 * different
849 */
850 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) {
David Sterba707e8a02014-06-04 19:22:26 +0200851 offset = root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500852 metadata = 0;
853 }
854
Yan, Zhenga22285a2010-05-16 10:48:46 -0400855 path = btrfs_alloc_path();
856 if (!path)
857 return -ENOMEM;
858
Yan, Zhenga22285a2010-05-16 10:48:46 -0400859 if (!trans) {
860 path->skip_locking = 1;
861 path->search_commit_root = 1;
862 }
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000863
864search_again:
865 key.objectid = bytenr;
866 key.offset = offset;
867 if (metadata)
868 key.type = BTRFS_METADATA_ITEM_KEY;
869 else
870 key.type = BTRFS_EXTENT_ITEM_KEY;
871
Yan, Zhenga22285a2010-05-16 10:48:46 -0400872 ret = btrfs_search_slot(trans, root->fs_info->extent_root,
873 &key, path, 0, 0);
874 if (ret < 0)
875 goto out_free;
876
Josef Bacik3173a182013-03-07 14:22:04 -0500877 if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) {
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100878 if (path->slots[0]) {
879 path->slots[0]--;
880 btrfs_item_key_to_cpu(path->nodes[0], &key,
881 path->slots[0]);
882 if (key.objectid == bytenr &&
883 key.type == BTRFS_EXTENT_ITEM_KEY &&
David Sterba707e8a02014-06-04 19:22:26 +0200884 key.offset == root->nodesize)
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100885 ret = 0;
886 }
Josef Bacik3173a182013-03-07 14:22:04 -0500887 }
888
Yan, Zhenga22285a2010-05-16 10:48:46 -0400889 if (ret == 0) {
890 leaf = path->nodes[0];
891 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
892 if (item_size >= sizeof(*ei)) {
893 ei = btrfs_item_ptr(leaf, path->slots[0],
894 struct btrfs_extent_item);
895 num_refs = btrfs_extent_refs(leaf, ei);
896 extent_flags = btrfs_extent_flags(leaf, ei);
897 } else {
898#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
899 struct btrfs_extent_item_v0 *ei0;
900 BUG_ON(item_size != sizeof(*ei0));
901 ei0 = btrfs_item_ptr(leaf, path->slots[0],
902 struct btrfs_extent_item_v0);
903 num_refs = btrfs_extent_refs_v0(leaf, ei0);
904 /* FIXME: this isn't correct for data */
905 extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
906#else
907 BUG();
908#endif
909 }
910 BUG_ON(num_refs == 0);
911 } else {
912 num_refs = 0;
913 extent_flags = 0;
914 ret = 0;
915 }
916
917 if (!trans)
918 goto out;
919
920 delayed_refs = &trans->transaction->delayed_refs;
921 spin_lock(&delayed_refs->lock);
922 head = btrfs_find_delayed_ref_head(trans, bytenr);
923 if (head) {
924 if (!mutex_trylock(&head->mutex)) {
925 atomic_inc(&head->node.refs);
926 spin_unlock(&delayed_refs->lock);
927
David Sterbab3b4aa72011-04-21 01:20:15 +0200928 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400929
David Sterba8cc33e52011-05-02 15:29:25 +0200930 /*
931 * Mutex was contended, block until it's released and try
932 * again
933 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400934 mutex_lock(&head->mutex);
935 mutex_unlock(&head->mutex);
936 btrfs_put_delayed_ref(&head->node);
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000937 goto search_again;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400938 }
Josef Bacikd7df2c72014-01-23 09:21:38 -0500939 spin_lock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400940 if (head->extent_op && head->extent_op->update_flags)
941 extent_flags |= head->extent_op->flags_to_set;
942 else
943 BUG_ON(num_refs == 0);
944
945 num_refs += head->node.ref_mod;
Josef Bacikd7df2c72014-01-23 09:21:38 -0500946 spin_unlock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400947 mutex_unlock(&head->mutex);
948 }
949 spin_unlock(&delayed_refs->lock);
950out:
951 WARN_ON(num_refs == 0);
952 if (refs)
953 *refs = num_refs;
954 if (flags)
955 *flags = extent_flags;
956out_free:
957 btrfs_free_path(path);
958 return ret;
959}
960
961/*
Chris Masond8d5f3e2007-12-11 12:42:00 -0500962 * Back reference rules. Back refs have three main goals:
963 *
964 * 1) differentiate between all holders of references to an extent so that
965 * when a reference is dropped we can make sure it was a valid reference
966 * before freeing the extent.
967 *
968 * 2) Provide enough information to quickly find the holders of an extent
969 * if we notice a given block is corrupted or bad.
970 *
971 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
972 * maintenance. This is actually the same as #2, but with a slightly
973 * different use case.
974 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400975 * There are two kinds of back refs. The implicit back refs is optimized
976 * for pointers in non-shared tree blocks. For a given pointer in a block,
977 * back refs of this kind provide information about the block's owner tree
978 * and the pointer's key. These information allow us to find the block by
979 * b-tree searching. The full back refs is for pointers in tree blocks not
980 * referenced by their owner trees. The location of tree block is recorded
981 * in the back refs. Actually the full back refs is generic, and can be
982 * used in all cases the implicit back refs is used. The major shortcoming
983 * of the full back refs is its overhead. Every time a tree block gets
984 * COWed, we have to update back refs entry for all pointers in it.
985 *
986 * For a newly allocated tree block, we use implicit back refs for
987 * pointers in it. This means most tree related operations only involve
988 * implicit back refs. For a tree block created in old transaction, the
989 * only way to drop a reference to it is COW it. So we can detect the
990 * event that tree block loses its owner tree's reference and do the
991 * back refs conversion.
992 *
Nicholas D Steeves01327612016-05-19 21:18:45 -0400993 * When a tree block is COWed through a tree, there are four cases:
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400994 *
995 * The reference count of the block is one and the tree is the block's
996 * owner tree. Nothing to do in this case.
997 *
998 * The reference count of the block is one and the tree is not the
999 * block's owner tree. In this case, full back refs is used for pointers
1000 * in the block. Remove these full back refs, add implicit back refs for
1001 * every pointers in the new block.
1002 *
1003 * The reference count of the block is greater than one and the tree is
1004 * the block's owner tree. In this case, implicit back refs is used for
1005 * pointers in the block. Add full back refs for every pointers in the
1006 * block, increase lower level extents' reference counts. The original
1007 * implicit back refs are entailed to the new block.
1008 *
1009 * The reference count of the block is greater than one and the tree is
1010 * not the block's owner tree. Add implicit back refs for every pointer in
1011 * the new block, increase lower level extents' reference count.
1012 *
1013 * Back Reference Key composing:
1014 *
1015 * The key objectid corresponds to the first byte in the extent,
1016 * The key type is used to differentiate between types of back refs.
1017 * There are different meanings of the key offset for different types
1018 * of back refs.
1019 *
Chris Masond8d5f3e2007-12-11 12:42:00 -05001020 * File extents can be referenced by:
1021 *
1022 * - multiple snapshots, subvolumes, or different generations in one subvol
Zheng Yan31840ae2008-09-23 13:14:14 -04001023 * - different files inside a single subvolume
Chris Masond8d5f3e2007-12-11 12:42:00 -05001024 * - different offsets inside a file (bookend extents in file.c)
1025 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001026 * The extent ref structure for the implicit back refs has fields for:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001027 *
1028 * - Objectid of the subvolume root
Chris Masond8d5f3e2007-12-11 12:42:00 -05001029 * - objectid of the file holding the reference
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001030 * - original offset in the file
1031 * - how many bookend extents
Zheng Yan31840ae2008-09-23 13:14:14 -04001032 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001033 * The key offset for the implicit back refs is hash of the first
1034 * three fields.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001035 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001036 * The extent ref structure for the full back refs has field for:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001037 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001038 * - number of pointers in the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -05001039 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001040 * The key offset for the implicit back refs is the first byte of
1041 * the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -05001042 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001043 * When a file extent is allocated, The implicit back refs is used.
1044 * the fields are filled in:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001045 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001046 * (root_key.objectid, inode objectid, offset in file, 1)
1047 *
1048 * When a file extent is removed file truncation, we find the
1049 * corresponding implicit back refs and check the following fields:
1050 *
1051 * (btrfs_header_owner(leaf), inode objectid, offset in file)
Chris Masond8d5f3e2007-12-11 12:42:00 -05001052 *
1053 * Btree extents can be referenced by:
1054 *
1055 * - Different subvolumes
Chris Masond8d5f3e2007-12-11 12:42:00 -05001056 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001057 * Both the implicit back refs and the full back refs for tree blocks
1058 * only consist of key. The key offset for the implicit back refs is
1059 * objectid of block's owner tree. The key offset for the full back refs
1060 * is the first byte of parent block.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001061 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001062 * When implicit back refs is used, information about the lowest key and
1063 * level of the tree block are required. These information are stored in
1064 * tree block info structure.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001065 */
Zheng Yan31840ae2008-09-23 13:14:14 -04001066
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001067#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1068static int convert_extent_item_v0(struct btrfs_trans_handle *trans,
1069 struct btrfs_root *root,
1070 struct btrfs_path *path,
1071 u64 owner, u32 extra_size)
Chris Mason74493f72007-12-11 09:25:06 -05001072{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001073 struct btrfs_extent_item *item;
1074 struct btrfs_extent_item_v0 *ei0;
1075 struct btrfs_extent_ref_v0 *ref0;
1076 struct btrfs_tree_block_info *bi;
Zheng Yan31840ae2008-09-23 13:14:14 -04001077 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001078 struct btrfs_key key;
1079 struct btrfs_key found_key;
1080 u32 new_size = sizeof(*item);
1081 u64 refs;
Chris Mason74493f72007-12-11 09:25:06 -05001082 int ret;
1083
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001084 leaf = path->nodes[0];
1085 BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0));
Chris Mason74493f72007-12-11 09:25:06 -05001086
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001087 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1088 ei0 = btrfs_item_ptr(leaf, path->slots[0],
1089 struct btrfs_extent_item_v0);
1090 refs = btrfs_extent_refs_v0(leaf, ei0);
1091
1092 if (owner == (u64)-1) {
1093 while (1) {
1094 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1095 ret = btrfs_next_leaf(root, path);
1096 if (ret < 0)
1097 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001098 BUG_ON(ret > 0); /* Corruption */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001099 leaf = path->nodes[0];
1100 }
1101 btrfs_item_key_to_cpu(leaf, &found_key,
1102 path->slots[0]);
1103 BUG_ON(key.objectid != found_key.objectid);
1104 if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) {
1105 path->slots[0]++;
1106 continue;
1107 }
1108 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1109 struct btrfs_extent_ref_v0);
1110 owner = btrfs_ref_objectid_v0(leaf, ref0);
1111 break;
1112 }
1113 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001114 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001115
1116 if (owner < BTRFS_FIRST_FREE_OBJECTID)
1117 new_size += sizeof(*bi);
1118
1119 new_size -= sizeof(*ei0);
1120 ret = btrfs_search_slot(trans, root, &key, path,
1121 new_size + extra_size, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04001122 if (ret < 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001123 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001124 BUG_ON(ret); /* Corruption */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001125
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00001126 btrfs_extend_item(root, path, new_size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001127
1128 leaf = path->nodes[0];
1129 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1130 btrfs_set_extent_refs(leaf, item, refs);
1131 /* FIXME: get real generation */
1132 btrfs_set_extent_generation(leaf, item, 0);
1133 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1134 btrfs_set_extent_flags(leaf, item,
1135 BTRFS_EXTENT_FLAG_TREE_BLOCK |
1136 BTRFS_BLOCK_FLAG_FULL_BACKREF);
1137 bi = (struct btrfs_tree_block_info *)(item + 1);
1138 /* FIXME: get first key of the block */
1139 memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi));
1140 btrfs_set_tree_block_level(leaf, bi, (int)owner);
1141 } else {
1142 btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA);
1143 }
1144 btrfs_mark_buffer_dirty(leaf);
1145 return 0;
1146}
1147#endif
1148
1149static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
1150{
1151 u32 high_crc = ~(u32)0;
1152 u32 low_crc = ~(u32)0;
1153 __le64 lenum;
1154
1155 lenum = cpu_to_le64(root_objectid);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001156 high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001157 lenum = cpu_to_le64(owner);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001158 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001159 lenum = cpu_to_le64(offset);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001160 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001161
1162 return ((u64)high_crc << 31) ^ (u64)low_crc;
1163}
1164
1165static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
1166 struct btrfs_extent_data_ref *ref)
1167{
1168 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
1169 btrfs_extent_data_ref_objectid(leaf, ref),
1170 btrfs_extent_data_ref_offset(leaf, ref));
1171}
1172
1173static int match_extent_data_ref(struct extent_buffer *leaf,
1174 struct btrfs_extent_data_ref *ref,
1175 u64 root_objectid, u64 owner, u64 offset)
1176{
1177 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
1178 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
1179 btrfs_extent_data_ref_offset(leaf, ref) != offset)
1180 return 0;
1181 return 1;
1182}
1183
1184static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
1185 struct btrfs_root *root,
1186 struct btrfs_path *path,
1187 u64 bytenr, u64 parent,
1188 u64 root_objectid,
1189 u64 owner, u64 offset)
1190{
1191 struct btrfs_key key;
1192 struct btrfs_extent_data_ref *ref;
1193 struct extent_buffer *leaf;
1194 u32 nritems;
1195 int ret;
1196 int recow;
1197 int err = -ENOENT;
1198
1199 key.objectid = bytenr;
1200 if (parent) {
1201 key.type = BTRFS_SHARED_DATA_REF_KEY;
1202 key.offset = parent;
1203 } else {
1204 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1205 key.offset = hash_extent_data_ref(root_objectid,
1206 owner, offset);
1207 }
1208again:
1209 recow = 0;
1210 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1211 if (ret < 0) {
1212 err = ret;
1213 goto fail;
1214 }
1215
1216 if (parent) {
1217 if (!ret)
1218 return 0;
1219#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1220 key.type = BTRFS_EXTENT_REF_V0_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02001221 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001222 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1223 if (ret < 0) {
1224 err = ret;
1225 goto fail;
1226 }
1227 if (!ret)
1228 return 0;
1229#endif
1230 goto fail;
Zheng Yan31840ae2008-09-23 13:14:14 -04001231 }
1232
1233 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001234 nritems = btrfs_header_nritems(leaf);
1235 while (1) {
1236 if (path->slots[0] >= nritems) {
1237 ret = btrfs_next_leaf(root, path);
1238 if (ret < 0)
1239 err = ret;
1240 if (ret)
1241 goto fail;
1242
1243 leaf = path->nodes[0];
1244 nritems = btrfs_header_nritems(leaf);
1245 recow = 1;
1246 }
1247
1248 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1249 if (key.objectid != bytenr ||
1250 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1251 goto fail;
1252
1253 ref = btrfs_item_ptr(leaf, path->slots[0],
1254 struct btrfs_extent_data_ref);
1255
1256 if (match_extent_data_ref(leaf, ref, root_objectid,
1257 owner, offset)) {
1258 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001259 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001260 goto again;
1261 }
1262 err = 0;
1263 break;
1264 }
1265 path->slots[0]++;
Zheng Yan31840ae2008-09-23 13:14:14 -04001266 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001267fail:
1268 return err;
Zheng Yan31840ae2008-09-23 13:14:14 -04001269}
1270
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001271static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
1272 struct btrfs_root *root,
1273 struct btrfs_path *path,
1274 u64 bytenr, u64 parent,
1275 u64 root_objectid, u64 owner,
1276 u64 offset, int refs_to_add)
Zheng Yan31840ae2008-09-23 13:14:14 -04001277{
1278 struct btrfs_key key;
1279 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001280 u32 size;
Zheng Yan31840ae2008-09-23 13:14:14 -04001281 u32 num_refs;
1282 int ret;
1283
1284 key.objectid = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001285 if (parent) {
1286 key.type = BTRFS_SHARED_DATA_REF_KEY;
1287 key.offset = parent;
1288 size = sizeof(struct btrfs_shared_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001289 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001290 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1291 key.offset = hash_extent_data_ref(root_objectid,
1292 owner, offset);
1293 size = sizeof(struct btrfs_extent_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001294 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001295
1296 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1297 if (ret && ret != -EEXIST)
1298 goto fail;
1299
1300 leaf = path->nodes[0];
1301 if (parent) {
1302 struct btrfs_shared_data_ref *ref;
1303 ref = btrfs_item_ptr(leaf, path->slots[0],
1304 struct btrfs_shared_data_ref);
1305 if (ret == 0) {
1306 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1307 } else {
1308 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1309 num_refs += refs_to_add;
1310 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
1311 }
1312 } else {
1313 struct btrfs_extent_data_ref *ref;
1314 while (ret == -EEXIST) {
1315 ref = btrfs_item_ptr(leaf, path->slots[0],
1316 struct btrfs_extent_data_ref);
1317 if (match_extent_data_ref(leaf, ref, root_objectid,
1318 owner, offset))
1319 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02001320 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001321 key.offset++;
1322 ret = btrfs_insert_empty_item(trans, root, path, &key,
1323 size);
1324 if (ret && ret != -EEXIST)
1325 goto fail;
1326
1327 leaf = path->nodes[0];
1328 }
1329 ref = btrfs_item_ptr(leaf, path->slots[0],
1330 struct btrfs_extent_data_ref);
1331 if (ret == 0) {
1332 btrfs_set_extent_data_ref_root(leaf, ref,
1333 root_objectid);
1334 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1335 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1336 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1337 } else {
1338 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1339 num_refs += refs_to_add;
1340 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
1341 }
1342 }
1343 btrfs_mark_buffer_dirty(leaf);
1344 ret = 0;
1345fail:
David Sterbab3b4aa72011-04-21 01:20:15 +02001346 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05001347 return ret;
Chris Mason74493f72007-12-11 09:25:06 -05001348}
1349
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001350static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
1351 struct btrfs_root *root,
1352 struct btrfs_path *path,
Josef Bacikfcebe452014-05-13 17:30:47 -07001353 int refs_to_drop, int *last_ref)
Zheng Yan31840ae2008-09-23 13:14:14 -04001354{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001355 struct btrfs_key key;
1356 struct btrfs_extent_data_ref *ref1 = NULL;
1357 struct btrfs_shared_data_ref *ref2 = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -04001358 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001359 u32 num_refs = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04001360 int ret = 0;
1361
1362 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001363 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1364
1365 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1366 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1367 struct btrfs_extent_data_ref);
1368 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1369 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1370 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1371 struct btrfs_shared_data_ref);
1372 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1373#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1374 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1375 struct btrfs_extent_ref_v0 *ref0;
1376 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1377 struct btrfs_extent_ref_v0);
1378 num_refs = btrfs_ref_count_v0(leaf, ref0);
1379#endif
1380 } else {
1381 BUG();
1382 }
1383
Chris Mason56bec292009-03-13 10:10:06 -04001384 BUG_ON(num_refs < refs_to_drop);
1385 num_refs -= refs_to_drop;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001386
Zheng Yan31840ae2008-09-23 13:14:14 -04001387 if (num_refs == 0) {
1388 ret = btrfs_del_item(trans, root, path);
Josef Bacikfcebe452014-05-13 17:30:47 -07001389 *last_ref = 1;
Zheng Yan31840ae2008-09-23 13:14:14 -04001390 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001391 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1392 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1393 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1394 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
1395#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1396 else {
1397 struct btrfs_extent_ref_v0 *ref0;
1398 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1399 struct btrfs_extent_ref_v0);
1400 btrfs_set_ref_count_v0(leaf, ref0, num_refs);
1401 }
1402#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04001403 btrfs_mark_buffer_dirty(leaf);
1404 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001405 return ret;
1406}
1407
Zhaolei9ed0dea2015-08-06 22:16:24 +08001408static noinline u32 extent_data_ref_count(struct btrfs_path *path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001409 struct btrfs_extent_inline_ref *iref)
1410{
1411 struct btrfs_key key;
1412 struct extent_buffer *leaf;
1413 struct btrfs_extent_data_ref *ref1;
1414 struct btrfs_shared_data_ref *ref2;
1415 u32 num_refs = 0;
1416
1417 leaf = path->nodes[0];
1418 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1419 if (iref) {
1420 if (btrfs_extent_inline_ref_type(leaf, iref) ==
1421 BTRFS_EXTENT_DATA_REF_KEY) {
1422 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1423 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1424 } else {
1425 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1426 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1427 }
1428 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1429 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1430 struct btrfs_extent_data_ref);
1431 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1432 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1433 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1434 struct btrfs_shared_data_ref);
1435 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1436#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1437 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1438 struct btrfs_extent_ref_v0 *ref0;
1439 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1440 struct btrfs_extent_ref_v0);
1441 num_refs = btrfs_ref_count_v0(leaf, ref0);
1442#endif
1443 } else {
1444 WARN_ON(1);
1445 }
1446 return num_refs;
1447}
1448
1449static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
1450 struct btrfs_root *root,
1451 struct btrfs_path *path,
1452 u64 bytenr, u64 parent,
1453 u64 root_objectid)
1454{
1455 struct btrfs_key key;
1456 int ret;
1457
1458 key.objectid = bytenr;
1459 if (parent) {
1460 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1461 key.offset = parent;
1462 } else {
1463 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1464 key.offset = root_objectid;
1465 }
1466
1467 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1468 if (ret > 0)
1469 ret = -ENOENT;
1470#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1471 if (ret == -ENOENT && parent) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001472 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001473 key.type = BTRFS_EXTENT_REF_V0_KEY;
1474 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1475 if (ret > 0)
1476 ret = -ENOENT;
1477 }
1478#endif
1479 return ret;
1480}
1481
1482static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
1483 struct btrfs_root *root,
1484 struct btrfs_path *path,
1485 u64 bytenr, u64 parent,
1486 u64 root_objectid)
1487{
1488 struct btrfs_key key;
1489 int ret;
1490
1491 key.objectid = bytenr;
1492 if (parent) {
1493 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1494 key.offset = parent;
1495 } else {
1496 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1497 key.offset = root_objectid;
1498 }
1499
1500 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
David Sterbab3b4aa72011-04-21 01:20:15 +02001501 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04001502 return ret;
1503}
1504
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001505static inline int extent_ref_type(u64 parent, u64 owner)
1506{
1507 int type;
1508 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1509 if (parent > 0)
1510 type = BTRFS_SHARED_BLOCK_REF_KEY;
1511 else
1512 type = BTRFS_TREE_BLOCK_REF_KEY;
1513 } else {
1514 if (parent > 0)
1515 type = BTRFS_SHARED_DATA_REF_KEY;
1516 else
1517 type = BTRFS_EXTENT_DATA_REF_KEY;
1518 }
1519 return type;
1520}
1521
Yan Zheng2c47e6052009-06-27 21:07:35 -04001522static int find_next_key(struct btrfs_path *path, int level,
1523 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001524
1525{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001526 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001527 if (!path->nodes[level])
1528 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001529 if (path->slots[level] + 1 >=
1530 btrfs_header_nritems(path->nodes[level]))
1531 continue;
1532 if (level == 0)
1533 btrfs_item_key_to_cpu(path->nodes[level], key,
1534 path->slots[level] + 1);
1535 else
1536 btrfs_node_key_to_cpu(path->nodes[level], key,
1537 path->slots[level] + 1);
1538 return 0;
1539 }
1540 return 1;
1541}
1542
1543/*
1544 * look for inline back ref. if back ref is found, *ref_ret is set
1545 * to the address of inline back ref, and 0 is returned.
1546 *
1547 * if back ref isn't found, *ref_ret is set to the address where it
1548 * should be inserted, and -ENOENT is returned.
1549 *
1550 * if insert is true and there are too many inline back refs, the path
1551 * points to the extent item, and -EAGAIN is returned.
1552 *
1553 * NOTE: inline back refs are ordered in the same way that back ref
1554 * items in the tree are ordered.
1555 */
1556static noinline_for_stack
1557int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
1558 struct btrfs_root *root,
1559 struct btrfs_path *path,
1560 struct btrfs_extent_inline_ref **ref_ret,
1561 u64 bytenr, u64 num_bytes,
1562 u64 parent, u64 root_objectid,
1563 u64 owner, u64 offset, int insert)
1564{
1565 struct btrfs_key key;
1566 struct extent_buffer *leaf;
1567 struct btrfs_extent_item *ei;
1568 struct btrfs_extent_inline_ref *iref;
1569 u64 flags;
1570 u64 item_size;
1571 unsigned long ptr;
1572 unsigned long end;
1573 int extra_size;
1574 int type;
1575 int want;
1576 int ret;
1577 int err = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05001578 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
1579 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001580
1581 key.objectid = bytenr;
1582 key.type = BTRFS_EXTENT_ITEM_KEY;
1583 key.offset = num_bytes;
1584
1585 want = extent_ref_type(parent, owner);
1586 if (insert) {
1587 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001588 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001589 } else
1590 extra_size = -1;
Josef Bacik3173a182013-03-07 14:22:04 -05001591
1592 /*
1593 * Owner is our parent level, so we can just add one to get the level
1594 * for the block we are interested in.
1595 */
1596 if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) {
1597 key.type = BTRFS_METADATA_ITEM_KEY;
1598 key.offset = owner;
1599 }
1600
1601again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001602 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1603 if (ret < 0) {
1604 err = ret;
1605 goto out;
1606 }
Josef Bacik3173a182013-03-07 14:22:04 -05001607
1608 /*
1609 * We may be a newly converted file system which still has the old fat
1610 * extent entries for metadata, so try and see if we have one of those.
1611 */
1612 if (ret > 0 && skinny_metadata) {
1613 skinny_metadata = false;
1614 if (path->slots[0]) {
1615 path->slots[0]--;
1616 btrfs_item_key_to_cpu(path->nodes[0], &key,
1617 path->slots[0]);
1618 if (key.objectid == bytenr &&
1619 key.type == BTRFS_EXTENT_ITEM_KEY &&
1620 key.offset == num_bytes)
1621 ret = 0;
1622 }
1623 if (ret) {
Filipe Manana9ce49a02014-04-24 15:15:28 +01001624 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05001625 key.type = BTRFS_EXTENT_ITEM_KEY;
1626 key.offset = num_bytes;
1627 btrfs_release_path(path);
1628 goto again;
1629 }
1630 }
1631
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001632 if (ret && !insert) {
1633 err = -ENOENT;
1634 goto out;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301635 } else if (WARN_ON(ret)) {
Josef Bacik492104c2013-03-08 15:41:02 -05001636 err = -EIO;
Josef Bacik492104c2013-03-08 15:41:02 -05001637 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001638 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001639
1640 leaf = path->nodes[0];
1641 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1642#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1643 if (item_size < sizeof(*ei)) {
1644 if (!insert) {
1645 err = -ENOENT;
1646 goto out;
1647 }
1648 ret = convert_extent_item_v0(trans, root, path, owner,
1649 extra_size);
1650 if (ret < 0) {
1651 err = ret;
1652 goto out;
1653 }
1654 leaf = path->nodes[0];
1655 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1656 }
1657#endif
1658 BUG_ON(item_size < sizeof(*ei));
1659
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001660 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1661 flags = btrfs_extent_flags(leaf, ei);
1662
1663 ptr = (unsigned long)(ei + 1);
1664 end = (unsigned long)ei + item_size;
1665
Josef Bacik3173a182013-03-07 14:22:04 -05001666 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001667 ptr += sizeof(struct btrfs_tree_block_info);
1668 BUG_ON(ptr > end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001669 }
1670
1671 err = -ENOENT;
1672 while (1) {
1673 if (ptr >= end) {
1674 WARN_ON(ptr > end);
1675 break;
1676 }
1677 iref = (struct btrfs_extent_inline_ref *)ptr;
1678 type = btrfs_extent_inline_ref_type(leaf, iref);
1679 if (want < type)
1680 break;
1681 if (want > type) {
1682 ptr += btrfs_extent_inline_ref_size(type);
1683 continue;
1684 }
1685
1686 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1687 struct btrfs_extent_data_ref *dref;
1688 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1689 if (match_extent_data_ref(leaf, dref, root_objectid,
1690 owner, offset)) {
1691 err = 0;
1692 break;
1693 }
1694 if (hash_extent_data_ref_item(leaf, dref) <
1695 hash_extent_data_ref(root_objectid, owner, offset))
1696 break;
1697 } else {
1698 u64 ref_offset;
1699 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1700 if (parent > 0) {
1701 if (parent == ref_offset) {
1702 err = 0;
1703 break;
1704 }
1705 if (ref_offset < parent)
1706 break;
1707 } else {
1708 if (root_objectid == ref_offset) {
1709 err = 0;
1710 break;
1711 }
1712 if (ref_offset < root_objectid)
1713 break;
1714 }
1715 }
1716 ptr += btrfs_extent_inline_ref_size(type);
1717 }
1718 if (err == -ENOENT && insert) {
1719 if (item_size + extra_size >=
1720 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1721 err = -EAGAIN;
1722 goto out;
1723 }
1724 /*
1725 * To add new inline back ref, we have to make sure
1726 * there is no corresponding back ref item.
1727 * For simplicity, we just do not add new inline back
1728 * ref if there is any kind of item for this block
1729 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001730 if (find_next_key(path, 0, &key) == 0 &&
1731 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001732 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001733 err = -EAGAIN;
1734 goto out;
1735 }
1736 }
1737 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1738out:
Yan Zheng85d41982009-06-11 08:51:10 -04001739 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001740 path->keep_locks = 0;
1741 btrfs_unlock_up_safe(path, 1);
1742 }
1743 return err;
1744}
1745
1746/*
1747 * helper to add new inline back ref
1748 */
1749static noinline_for_stack
Tsutomu Itohfd279fa2013-04-16 05:19:11 +00001750void setup_inline_extent_backref(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001751 struct btrfs_path *path,
1752 struct btrfs_extent_inline_ref *iref,
1753 u64 parent, u64 root_objectid,
1754 u64 owner, u64 offset, int refs_to_add,
1755 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001756{
1757 struct extent_buffer *leaf;
1758 struct btrfs_extent_item *ei;
1759 unsigned long ptr;
1760 unsigned long end;
1761 unsigned long item_offset;
1762 u64 refs;
1763 int size;
1764 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001765
1766 leaf = path->nodes[0];
1767 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1768 item_offset = (unsigned long)iref - (unsigned long)ei;
1769
1770 type = extent_ref_type(parent, owner);
1771 size = btrfs_extent_inline_ref_size(type);
1772
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00001773 btrfs_extend_item(root, path, size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001774
1775 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1776 refs = btrfs_extent_refs(leaf, ei);
1777 refs += refs_to_add;
1778 btrfs_set_extent_refs(leaf, ei, refs);
1779 if (extent_op)
1780 __run_delayed_extent_op(extent_op, leaf, ei);
1781
1782 ptr = (unsigned long)ei + item_offset;
1783 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1784 if (ptr < end - size)
1785 memmove_extent_buffer(leaf, ptr + size, ptr,
1786 end - size - ptr);
1787
1788 iref = (struct btrfs_extent_inline_ref *)ptr;
1789 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1790 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1791 struct btrfs_extent_data_ref *dref;
1792 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1793 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1794 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1795 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1796 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1797 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1798 struct btrfs_shared_data_ref *sref;
1799 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1800 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1801 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1802 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1803 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1804 } else {
1805 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1806 }
1807 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001808}
1809
1810static int lookup_extent_backref(struct btrfs_trans_handle *trans,
1811 struct btrfs_root *root,
1812 struct btrfs_path *path,
1813 struct btrfs_extent_inline_ref **ref_ret,
1814 u64 bytenr, u64 num_bytes, u64 parent,
1815 u64 root_objectid, u64 owner, u64 offset)
1816{
1817 int ret;
1818
1819 ret = lookup_inline_extent_backref(trans, root, path, ref_ret,
1820 bytenr, num_bytes, parent,
1821 root_objectid, owner, offset, 0);
1822 if (ret != -ENOENT)
1823 return ret;
1824
David Sterbab3b4aa72011-04-21 01:20:15 +02001825 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001826 *ref_ret = NULL;
1827
1828 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1829 ret = lookup_tree_block_ref(trans, root, path, bytenr, parent,
1830 root_objectid);
1831 } else {
1832 ret = lookup_extent_data_ref(trans, root, path, bytenr, parent,
1833 root_objectid, owner, offset);
1834 }
1835 return ret;
1836}
1837
1838/*
1839 * helper to update/remove inline back ref
1840 */
1841static noinline_for_stack
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001842void update_inline_extent_backref(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001843 struct btrfs_path *path,
1844 struct btrfs_extent_inline_ref *iref,
1845 int refs_to_mod,
Josef Bacikfcebe452014-05-13 17:30:47 -07001846 struct btrfs_delayed_extent_op *extent_op,
1847 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001848{
1849 struct extent_buffer *leaf;
1850 struct btrfs_extent_item *ei;
1851 struct btrfs_extent_data_ref *dref = NULL;
1852 struct btrfs_shared_data_ref *sref = NULL;
1853 unsigned long ptr;
1854 unsigned long end;
1855 u32 item_size;
1856 int size;
1857 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001858 u64 refs;
1859
1860 leaf = path->nodes[0];
1861 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1862 refs = btrfs_extent_refs(leaf, ei);
1863 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1864 refs += refs_to_mod;
1865 btrfs_set_extent_refs(leaf, ei, refs);
1866 if (extent_op)
1867 __run_delayed_extent_op(extent_op, leaf, ei);
1868
1869 type = btrfs_extent_inline_ref_type(leaf, iref);
1870
1871 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1872 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1873 refs = btrfs_extent_data_ref_count(leaf, dref);
1874 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1875 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1876 refs = btrfs_shared_data_ref_count(leaf, sref);
1877 } else {
1878 refs = 1;
1879 BUG_ON(refs_to_mod != -1);
1880 }
1881
1882 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1883 refs += refs_to_mod;
1884
1885 if (refs > 0) {
1886 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1887 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1888 else
1889 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1890 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001891 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001892 size = btrfs_extent_inline_ref_size(type);
1893 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1894 ptr = (unsigned long)iref;
1895 end = (unsigned long)ei + item_size;
1896 if (ptr + size < end)
1897 memmove_extent_buffer(leaf, ptr, ptr + size,
1898 end - ptr - size);
1899 item_size -= size;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001900 btrfs_truncate_item(root, path, item_size, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001901 }
1902 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001903}
1904
1905static noinline_for_stack
1906int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
1907 struct btrfs_root *root,
1908 struct btrfs_path *path,
1909 u64 bytenr, u64 num_bytes, u64 parent,
1910 u64 root_objectid, u64 owner,
1911 u64 offset, int refs_to_add,
1912 struct btrfs_delayed_extent_op *extent_op)
1913{
1914 struct btrfs_extent_inline_ref *iref;
1915 int ret;
1916
1917 ret = lookup_inline_extent_backref(trans, root, path, &iref,
1918 bytenr, num_bytes, parent,
1919 root_objectid, owner, offset, 1);
1920 if (ret == 0) {
1921 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001922 update_inline_extent_backref(root, path, iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001923 refs_to_add, extent_op, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001924 } else if (ret == -ENOENT) {
Tsutomu Itohfd279fa2013-04-16 05:19:11 +00001925 setup_inline_extent_backref(root, path, iref, parent,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001926 root_objectid, owner, offset,
1927 refs_to_add, extent_op);
1928 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001929 }
1930 return ret;
1931}
1932
1933static int insert_extent_backref(struct btrfs_trans_handle *trans,
1934 struct btrfs_root *root,
1935 struct btrfs_path *path,
1936 u64 bytenr, u64 parent, u64 root_objectid,
1937 u64 owner, u64 offset, int refs_to_add)
1938{
1939 int ret;
1940 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1941 BUG_ON(refs_to_add != 1);
1942 ret = insert_tree_block_ref(trans, root, path, bytenr,
1943 parent, root_objectid);
1944 } else {
1945 ret = insert_extent_data_ref(trans, root, path, bytenr,
1946 parent, root_objectid,
1947 owner, offset, refs_to_add);
1948 }
1949 return ret;
1950}
1951
1952static int remove_extent_backref(struct btrfs_trans_handle *trans,
1953 struct btrfs_root *root,
1954 struct btrfs_path *path,
1955 struct btrfs_extent_inline_ref *iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001956 int refs_to_drop, int is_data, int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001957{
Jeff Mahoney143bede2012-03-01 14:56:26 +01001958 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001959
1960 BUG_ON(!is_data && refs_to_drop != 1);
1961 if (iref) {
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001962 update_inline_extent_backref(root, path, iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001963 -refs_to_drop, NULL, last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001964 } else if (is_data) {
Josef Bacikfcebe452014-05-13 17:30:47 -07001965 ret = remove_extent_data_ref(trans, root, path, refs_to_drop,
1966 last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001967 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001968 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001969 ret = btrfs_del_item(trans, root, path);
1970 }
1971 return ret;
1972}
1973
Jeff Mahoney86557862015-06-15 09:41:16 -04001974#define in_range(b, first, len) ((b) >= (first) && (b) < (first) + (len))
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001975static int btrfs_issue_discard(struct block_device *bdev, u64 start, u64 len,
1976 u64 *discarded_bytes)
Chris Mason15916de2008-11-19 21:17:22 -05001977{
Jeff Mahoney86557862015-06-15 09:41:16 -04001978 int j, ret = 0;
1979 u64 bytes_left, end;
Jeff Mahoney4d89d372015-06-15 09:41:15 -04001980 u64 aligned_start = ALIGN(start, 1 << 9);
1981
1982 if (WARN_ON(start != aligned_start)) {
1983 len -= aligned_start - start;
1984 len = round_down(len, 1 << 9);
1985 start = aligned_start;
1986 }
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001987
1988 *discarded_bytes = 0;
Jeff Mahoney86557862015-06-15 09:41:16 -04001989
1990 if (!len)
1991 return 0;
1992
1993 end = start + len;
1994 bytes_left = len;
1995
1996 /* Skip any superblocks on this device. */
1997 for (j = 0; j < BTRFS_SUPER_MIRROR_MAX; j++) {
1998 u64 sb_start = btrfs_sb_offset(j);
1999 u64 sb_end = sb_start + BTRFS_SUPER_INFO_SIZE;
2000 u64 size = sb_start - start;
2001
2002 if (!in_range(sb_start, start, bytes_left) &&
2003 !in_range(sb_end, start, bytes_left) &&
2004 !in_range(start, sb_start, BTRFS_SUPER_INFO_SIZE))
2005 continue;
2006
2007 /*
2008 * Superblock spans beginning of range. Adjust start and
2009 * try again.
2010 */
2011 if (sb_start <= start) {
2012 start += sb_end - start;
2013 if (start > end) {
2014 bytes_left = 0;
2015 break;
2016 }
2017 bytes_left = end - start;
2018 continue;
2019 }
2020
2021 if (size) {
2022 ret = blkdev_issue_discard(bdev, start >> 9, size >> 9,
2023 GFP_NOFS, 0);
2024 if (!ret)
2025 *discarded_bytes += size;
2026 else if (ret != -EOPNOTSUPP)
2027 return ret;
2028 }
2029
2030 start = sb_end;
2031 if (start > end) {
2032 bytes_left = 0;
2033 break;
2034 }
2035 bytes_left = end - start;
2036 }
2037
2038 if (bytes_left) {
2039 ret = blkdev_issue_discard(bdev, start >> 9, bytes_left >> 9,
Jeff Mahoney4d89d372015-06-15 09:41:15 -04002040 GFP_NOFS, 0);
2041 if (!ret)
Jeff Mahoney86557862015-06-15 09:41:16 -04002042 *discarded_bytes += bytes_left;
Jeff Mahoney4d89d372015-06-15 09:41:15 -04002043 }
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002044 return ret;
Chris Mason15916de2008-11-19 21:17:22 -05002045}
Chris Mason15916de2008-11-19 21:17:22 -05002046
Filipe Manana1edb647b2014-12-08 14:01:12 +00002047int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr,
2048 u64 num_bytes, u64 *actual_bytes)
Liu Hui1f3c79a2009-01-05 15:57:51 -05002049{
Liu Hui1f3c79a2009-01-05 15:57:51 -05002050 int ret;
Li Dongyang5378e602011-03-24 10:24:27 +00002051 u64 discarded_bytes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02002052 struct btrfs_bio *bbio = NULL;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002053
Christoph Hellwige244a0a2009-10-14 09:24:59 -04002054
Filipe Manana29992412016-05-27 17:42:05 +01002055 /*
2056 * Avoid races with device replace and make sure our bbio has devices
2057 * associated to its stripes that don't go away while we are discarding.
2058 */
2059 btrfs_bio_counter_inc_blocked(root->fs_info);
Liu Hui1f3c79a2009-01-05 15:57:51 -05002060 /* Tell the block device(s) that the sectors can be discarded */
Stefan Behrens3ec706c2012-11-05 15:46:42 +01002061 ret = btrfs_map_block(root->fs_info, REQ_DISCARD,
Jan Schmidta1d3c472011-08-04 17:15:33 +02002062 bytenr, &num_bytes, &bbio, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002063 /* Error condition is -ENOMEM */
Liu Hui1f3c79a2009-01-05 15:57:51 -05002064 if (!ret) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02002065 struct btrfs_bio_stripe *stripe = bbio->stripes;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002066 int i;
2067
Liu Hui1f3c79a2009-01-05 15:57:51 -05002068
Jan Schmidta1d3c472011-08-04 17:15:33 +02002069 for (i = 0; i < bbio->num_stripes; i++, stripe++) {
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002070 u64 bytes;
Josef Bacikd5e20032011-08-04 14:52:27 +00002071 if (!stripe->dev->can_discard)
2072 continue;
2073
Li Dongyang5378e602011-03-24 10:24:27 +00002074 ret = btrfs_issue_discard(stripe->dev->bdev,
2075 stripe->physical,
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002076 stripe->length,
2077 &bytes);
Li Dongyang5378e602011-03-24 10:24:27 +00002078 if (!ret)
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002079 discarded_bytes += bytes;
Li Dongyang5378e602011-03-24 10:24:27 +00002080 else if (ret != -EOPNOTSUPP)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002081 break; /* Logic errors or -ENOMEM, or -EIO but I don't know how that could happen JDM */
Josef Bacikd5e20032011-08-04 14:52:27 +00002082
2083 /*
2084 * Just in case we get back EOPNOTSUPP for some reason,
2085 * just ignore the return value so we don't screw up
2086 * people calling discard_extent.
2087 */
2088 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002089 }
Zhao Lei6e9606d2015-01-20 15:11:34 +08002090 btrfs_put_bbio(bbio);
Liu Hui1f3c79a2009-01-05 15:57:51 -05002091 }
Filipe Manana29992412016-05-27 17:42:05 +01002092 btrfs_bio_counter_dec(root->fs_info);
Li Dongyang5378e602011-03-24 10:24:27 +00002093
2094 if (actual_bytes)
2095 *actual_bytes = discarded_bytes;
2096
Liu Hui1f3c79a2009-01-05 15:57:51 -05002097
David Woodhouse53b381b2013-01-29 18:40:14 -05002098 if (ret == -EOPNOTSUPP)
2099 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002100 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002101}
2102
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002103/* Can return -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002104int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
2105 struct btrfs_root *root,
2106 u64 bytenr, u64 num_bytes, u64 parent,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002107 u64 root_objectid, u64 owner, u64 offset)
Zheng Yan31840ae2008-09-23 13:14:14 -04002108{
2109 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002110 struct btrfs_fs_info *fs_info = root->fs_info;
2111
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002112 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
2113 root_objectid == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04002114
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002115 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002116 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
2117 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002118 parent, root_objectid, (int)owner,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002119 BTRFS_ADD_DELAYED_REF, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002120 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002121 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08002122 num_bytes, parent, root_objectid,
2123 owner, offset, 0,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002124 BTRFS_ADD_DELAYED_REF, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002125 }
Zheng Yan31840ae2008-09-23 13:14:14 -04002126 return ret;
2127}
2128
Chris Mason925baed2008-06-25 16:01:30 -04002129static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002130 struct btrfs_root *root,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002131 struct btrfs_delayed_ref_node *node,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002132 u64 parent, u64 root_objectid,
2133 u64 owner, u64 offset, int refs_to_add,
2134 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04002135{
Josef Bacikfcebe452014-05-13 17:30:47 -07002136 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5caf2a02007-04-02 11:20:42 -04002137 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002138 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04002139 struct btrfs_extent_item *item;
Josef Bacikfcebe452014-05-13 17:30:47 -07002140 struct btrfs_key key;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002141 u64 bytenr = node->bytenr;
2142 u64 num_bytes = node->num_bytes;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002143 u64 refs;
2144 int ret;
Chris Mason037e6392007-03-07 11:50:24 -05002145
Chris Mason5caf2a02007-04-02 11:20:42 -04002146 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002147 if (!path)
2148 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04002149
David Sterbae4058b52015-11-27 16:31:35 +01002150 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04002151 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002152 /* this will setup the path even if it fails to insert the back ref */
Josef Bacikfcebe452014-05-13 17:30:47 -07002153 ret = insert_inline_extent_backref(trans, fs_info->extent_root, path,
2154 bytenr, num_bytes, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002155 root_objectid, owner, offset,
2156 refs_to_add, extent_op);
Qu Wenruo0ed47922015-04-16 16:55:08 +08002157 if ((ret < 0 && ret != -EAGAIN) || !ret)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002158 goto out;
Josef Bacikfcebe452014-05-13 17:30:47 -07002159
2160 /*
2161 * Ok we had -EAGAIN which means we didn't have space to insert and
2162 * inline extent ref, so just update the reference count and add a
2163 * normal backref.
2164 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002165 leaf = path->nodes[0];
Josef Bacikfcebe452014-05-13 17:30:47 -07002166 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002167 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2168 refs = btrfs_extent_refs(leaf, item);
2169 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
2170 if (extent_op)
2171 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04002172
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002173 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002174 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05002175
David Sterbae4058b52015-11-27 16:31:35 +01002176 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04002177 path->leave_spinning = 1;
Chris Mason56bec292009-03-13 10:10:06 -04002178 /* now insert the actual backref */
Zheng Yan31840ae2008-09-23 13:14:14 -04002179 ret = insert_extent_backref(trans, root->fs_info->extent_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002180 path, bytenr, parent, root_objectid,
2181 owner, offset, refs_to_add);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002182 if (ret)
2183 btrfs_abort_transaction(trans, root, ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002184out:
Chris Mason74493f72007-12-11 09:25:06 -05002185 btrfs_free_path(path);
Liu Bo30d133f2013-10-11 16:30:23 +08002186 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002187}
2188
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002189static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
2190 struct btrfs_root *root,
2191 struct btrfs_delayed_ref_node *node,
2192 struct btrfs_delayed_extent_op *extent_op,
2193 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04002194{
Chris Mason56bec292009-03-13 10:10:06 -04002195 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002196 struct btrfs_delayed_data_ref *ref;
2197 struct btrfs_key ins;
2198 u64 parent = 0;
2199 u64 ref_root = 0;
2200 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002201
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002202 ins.objectid = node->bytenr;
2203 ins.offset = node->num_bytes;
2204 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04002205
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002206 ref = btrfs_delayed_node_to_data_ref(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002207 trace_run_delayed_data_ref(node, ref, node->action);
2208
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002209 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
2210 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002211 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002212
2213 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002214 if (extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002215 flags |= extent_op->flags_to_set;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002216 ret = alloc_reserved_file_extent(trans, root,
2217 parent, ref_root, flags,
2218 ref->objectid, ref->offset,
2219 &ins, node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002220 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002221 ret = __btrfs_inc_extent_ref(trans, root, node, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002222 ref_root, ref->objectid,
2223 ref->offset, node->ref_mod,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002224 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002225 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002226 ret = __btrfs_free_extent(trans, root, node, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002227 ref_root, ref->objectid,
2228 ref->offset, node->ref_mod,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002229 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002230 } else {
2231 BUG();
2232 }
Chris Mason56bec292009-03-13 10:10:06 -04002233 return ret;
2234}
2235
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002236static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
2237 struct extent_buffer *leaf,
2238 struct btrfs_extent_item *ei)
2239{
2240 u64 flags = btrfs_extent_flags(leaf, ei);
2241 if (extent_op->update_flags) {
2242 flags |= extent_op->flags_to_set;
2243 btrfs_set_extent_flags(leaf, ei, flags);
2244 }
2245
2246 if (extent_op->update_key) {
2247 struct btrfs_tree_block_info *bi;
2248 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
2249 bi = (struct btrfs_tree_block_info *)(ei + 1);
2250 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
2251 }
2252}
2253
2254static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
2255 struct btrfs_root *root,
2256 struct btrfs_delayed_ref_node *node,
2257 struct btrfs_delayed_extent_op *extent_op)
2258{
2259 struct btrfs_key key;
2260 struct btrfs_path *path;
2261 struct btrfs_extent_item *ei;
2262 struct extent_buffer *leaf;
2263 u32 item_size;
2264 int ret;
2265 int err = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002266 int metadata = !extent_op->is_data;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002267
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002268 if (trans->aborted)
2269 return 0;
2270
Josef Bacik3173a182013-03-07 14:22:04 -05002271 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2272 metadata = 0;
2273
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002274 path = btrfs_alloc_path();
2275 if (!path)
2276 return -ENOMEM;
2277
2278 key.objectid = node->bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002279
Josef Bacik3173a182013-03-07 14:22:04 -05002280 if (metadata) {
Josef Bacik3173a182013-03-07 14:22:04 -05002281 key.type = BTRFS_METADATA_ITEM_KEY;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002282 key.offset = extent_op->level;
Josef Bacik3173a182013-03-07 14:22:04 -05002283 } else {
2284 key.type = BTRFS_EXTENT_ITEM_KEY;
2285 key.offset = node->num_bytes;
2286 }
2287
2288again:
David Sterbae4058b52015-11-27 16:31:35 +01002289 path->reada = READA_FORWARD;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002290 path->leave_spinning = 1;
2291 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key,
2292 path, 0, 1);
2293 if (ret < 0) {
2294 err = ret;
2295 goto out;
2296 }
2297 if (ret > 0) {
Josef Bacik3173a182013-03-07 14:22:04 -05002298 if (metadata) {
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002299 if (path->slots[0] > 0) {
2300 path->slots[0]--;
2301 btrfs_item_key_to_cpu(path->nodes[0], &key,
2302 path->slots[0]);
2303 if (key.objectid == node->bytenr &&
2304 key.type == BTRFS_EXTENT_ITEM_KEY &&
2305 key.offset == node->num_bytes)
2306 ret = 0;
2307 }
2308 if (ret > 0) {
2309 btrfs_release_path(path);
2310 metadata = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002311
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002312 key.objectid = node->bytenr;
2313 key.offset = node->num_bytes;
2314 key.type = BTRFS_EXTENT_ITEM_KEY;
2315 goto again;
2316 }
2317 } else {
2318 err = -EIO;
2319 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05002320 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002321 }
2322
2323 leaf = path->nodes[0];
2324 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2325#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2326 if (item_size < sizeof(*ei)) {
2327 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
2328 path, (u64)-1, 0);
2329 if (ret < 0) {
2330 err = ret;
2331 goto out;
2332 }
2333 leaf = path->nodes[0];
2334 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2335 }
2336#endif
2337 BUG_ON(item_size < sizeof(*ei));
2338 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2339 __run_delayed_extent_op(extent_op, leaf, ei);
2340
2341 btrfs_mark_buffer_dirty(leaf);
2342out:
2343 btrfs_free_path(path);
2344 return err;
2345}
2346
2347static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
2348 struct btrfs_root *root,
2349 struct btrfs_delayed_ref_node *node,
2350 struct btrfs_delayed_extent_op *extent_op,
2351 int insert_reserved)
2352{
2353 int ret = 0;
2354 struct btrfs_delayed_tree_ref *ref;
2355 struct btrfs_key ins;
2356 u64 parent = 0;
2357 u64 ref_root = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002358 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
2359 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002360
2361 ref = btrfs_delayed_node_to_tree_ref(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002362 trace_run_delayed_tree_ref(node, ref, node->action);
2363
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002364 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2365 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002366 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002367
Josef Bacik3173a182013-03-07 14:22:04 -05002368 ins.objectid = node->bytenr;
2369 if (skinny_metadata) {
2370 ins.offset = ref->level;
2371 ins.type = BTRFS_METADATA_ITEM_KEY;
2372 } else {
2373 ins.offset = node->num_bytes;
2374 ins.type = BTRFS_EXTENT_ITEM_KEY;
2375 }
2376
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002377 BUG_ON(node->ref_mod != 1);
2378 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002379 BUG_ON(!extent_op || !extent_op->update_flags);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002380 ret = alloc_reserved_tree_block(trans, root,
2381 parent, ref_root,
2382 extent_op->flags_to_set,
2383 &extent_op->key,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002384 ref->level, &ins);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002385 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002386 ret = __btrfs_inc_extent_ref(trans, root, node,
2387 parent, ref_root,
2388 ref->level, 0, 1,
Josef Bacikfcebe452014-05-13 17:30:47 -07002389 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002390 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002391 ret = __btrfs_free_extent(trans, root, node,
2392 parent, ref_root,
2393 ref->level, 0, 1, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002394 } else {
2395 BUG();
2396 }
2397 return ret;
2398}
2399
Chris Mason56bec292009-03-13 10:10:06 -04002400/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002401static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
2402 struct btrfs_root *root,
2403 struct btrfs_delayed_ref_node *node,
2404 struct btrfs_delayed_extent_op *extent_op,
2405 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002406{
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002407 int ret = 0;
2408
Josef Bacik857cc2f2013-10-07 15:21:08 -04002409 if (trans->aborted) {
2410 if (insert_reserved)
2411 btrfs_pin_extent(root, node->bytenr,
2412 node->num_bytes, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002413 return 0;
Josef Bacik857cc2f2013-10-07 15:21:08 -04002414 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002415
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002416 if (btrfs_delayed_ref_is_head(node)) {
Chris Mason56bec292009-03-13 10:10:06 -04002417 struct btrfs_delayed_ref_head *head;
2418 /*
2419 * we've hit the end of the chain and we were supposed
2420 * to insert this extent into the tree. But, it got
2421 * deleted before we ever needed to insert it, so all
2422 * we have to do is clean up the accounting
2423 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002424 BUG_ON(extent_op);
2425 head = btrfs_delayed_node_to_head(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002426 trace_run_delayed_ref_head(node, head, node->action);
2427
Chris Mason56bec292009-03-13 10:10:06 -04002428 if (insert_reserved) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04002429 btrfs_pin_extent(root, node->bytenr,
2430 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002431 if (head->is_data) {
2432 ret = btrfs_del_csums(trans, root,
2433 node->bytenr,
2434 node->num_bytes);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002435 }
Chris Mason56bec292009-03-13 10:10:06 -04002436 }
Qu Wenruo297d7502015-09-08 17:08:37 +08002437
2438 /* Also free its reserved qgroup space */
2439 btrfs_qgroup_free_delayed_ref(root->fs_info,
2440 head->qgroup_ref_root,
2441 head->qgroup_reserved);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002442 return ret;
Chris Mason56bec292009-03-13 10:10:06 -04002443 }
Josef Bacikeb099672009-02-12 09:27:38 -05002444
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002445 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2446 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2447 ret = run_delayed_tree_ref(trans, root, node, extent_op,
2448 insert_reserved);
2449 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2450 node->type == BTRFS_SHARED_DATA_REF_KEY)
2451 ret = run_delayed_data_ref(trans, root, node, extent_op,
2452 insert_reserved);
2453 else
2454 BUG();
2455 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002456}
2457
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002458static inline struct btrfs_delayed_ref_node *
Chris Mason56bec292009-03-13 10:10:06 -04002459select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002460{
Filipe Mananacffc3372015-07-09 13:13:44 +01002461 struct btrfs_delayed_ref_node *ref;
2462
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002463 if (list_empty(&head->ref_list))
2464 return NULL;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002465
Filipe Mananacffc3372015-07-09 13:13:44 +01002466 /*
2467 * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first.
2468 * This is to prevent a ref count from going down to zero, which deletes
2469 * the extent item from the extent tree, when there still are references
2470 * to add, which would fail because they would not find the extent item.
2471 */
2472 list_for_each_entry(ref, &head->ref_list, list) {
2473 if (ref->action == BTRFS_ADD_DELAYED_REF)
2474 return ref;
2475 }
2476
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002477 return list_entry(head->ref_list.next, struct btrfs_delayed_ref_node,
2478 list);
Chris Mason56bec292009-03-13 10:10:06 -04002479}
2480
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002481/*
2482 * Returns 0 on success or if called with an already aborted transaction.
2483 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2484 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002485static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2486 struct btrfs_root *root,
2487 unsigned long nr)
Chris Mason56bec292009-03-13 10:10:06 -04002488{
Chris Mason56bec292009-03-13 10:10:06 -04002489 struct btrfs_delayed_ref_root *delayed_refs;
2490 struct btrfs_delayed_ref_node *ref;
2491 struct btrfs_delayed_ref_head *locked_ref = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002492 struct btrfs_delayed_extent_op *extent_op;
Jan Schmidt097b8a72012-06-21 11:08:04 +02002493 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002494 ktime_t start = ktime_get();
Chris Mason56bec292009-03-13 10:10:06 -04002495 int ret;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002496 unsigned long count = 0;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002497 unsigned long actual_count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002498 int must_insert_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002499
2500 delayed_refs = &trans->transaction->delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002501 while (1) {
2502 if (!locked_ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002503 if (count >= nr)
Chris Mason56bec292009-03-13 10:10:06 -04002504 break;
Chris Mason56bec292009-03-13 10:10:06 -04002505
Josef Bacikd7df2c72014-01-23 09:21:38 -05002506 spin_lock(&delayed_refs->lock);
2507 locked_ref = btrfs_select_ref_head(trans);
2508 if (!locked_ref) {
2509 spin_unlock(&delayed_refs->lock);
2510 break;
2511 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002512
2513 /* grab the lock that says we are going to process
2514 * all the refs for this head */
2515 ret = btrfs_delayed_ref_lock(trans, locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002516 spin_unlock(&delayed_refs->lock);
Chris Masonc3e69d52009-03-13 10:17:05 -04002517 /*
2518 * we may have dropped the spin lock to get the head
2519 * mutex lock, and that might have given someone else
2520 * time to free the head. If that's true, it has been
2521 * removed from our list and we can move on.
2522 */
2523 if (ret == -EAGAIN) {
2524 locked_ref = NULL;
2525 count++;
2526 continue;
Chris Mason56bec292009-03-13 10:10:06 -04002527 }
2528 }
2529
Filipe Manana2c3cf7d2015-10-22 09:47:34 +01002530 /*
2531 * We need to try and merge add/drops of the same ref since we
2532 * can run into issues with relocate dropping the implicit ref
2533 * and then it being added back again before the drop can
2534 * finish. If we merged anything we need to re-loop so we can
2535 * get a good ref.
2536 * Or we can get node references of the same type that weren't
2537 * merged when created due to bumps in the tree mod seq, and
2538 * we need to merge them to prevent adding an inline extent
2539 * backref before dropping it (triggering a BUG_ON at
2540 * insert_inline_extent_backref()).
2541 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002542 spin_lock(&locked_ref->lock);
Filipe Manana2c3cf7d2015-10-22 09:47:34 +01002543 btrfs_merge_delayed_refs(trans, fs_info, delayed_refs,
2544 locked_ref);
Josef Bacikae1e2062012-08-07 16:00:32 -04002545
2546 /*
Arne Jansend1270cd2011-09-13 15:16:43 +02002547 * locked_ref is the head node, so we have to go one
2548 * node back for any delayed ref updates
2549 */
2550 ref = select_delayed_ref(locked_ref);
2551
2552 if (ref && ref->seq &&
Jan Schmidt097b8a72012-06-21 11:08:04 +02002553 btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002554 spin_unlock(&locked_ref->lock);
Miao Xie093486c2012-12-19 08:10:10 +00002555 btrfs_delayed_ref_unlock(locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002556 spin_lock(&delayed_refs->lock);
2557 locked_ref->processing = 0;
Arne Jansend1270cd2011-09-13 15:16:43 +02002558 delayed_refs->num_heads_ready++;
2559 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002560 locked_ref = NULL;
Arne Jansend1270cd2011-09-13 15:16:43 +02002561 cond_resched();
Josef Bacik27a377d2014-02-07 13:57:59 -05002562 count++;
Arne Jansend1270cd2011-09-13 15:16:43 +02002563 continue;
2564 }
2565
2566 /*
Chris Mason56bec292009-03-13 10:10:06 -04002567 * record the must insert reserved flag before we
2568 * drop the spin lock.
2569 */
2570 must_insert_reserved = locked_ref->must_insert_reserved;
2571 locked_ref->must_insert_reserved = 0;
2572
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002573 extent_op = locked_ref->extent_op;
2574 locked_ref->extent_op = NULL;
2575
Chris Mason56bec292009-03-13 10:10:06 -04002576 if (!ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002577
2578
Chris Mason56bec292009-03-13 10:10:06 -04002579 /* All delayed refs have been processed, Go ahead
2580 * and send the head node to run_one_delayed_ref,
2581 * so that any accounting fixes can happen
2582 */
2583 ref = &locked_ref->node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002584
2585 if (extent_op && must_insert_reserved) {
Miao Xie78a61842012-11-21 02:21:28 +00002586 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002587 extent_op = NULL;
2588 }
2589
2590 if (extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002591 spin_unlock(&locked_ref->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002592 ret = run_delayed_extent_op(trans, root,
2593 ref, extent_op);
Miao Xie78a61842012-11-21 02:21:28 +00002594 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002595
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002596 if (ret) {
Josef Bacik857cc2f2013-10-07 15:21:08 -04002597 /*
2598 * Need to reset must_insert_reserved if
2599 * there was an error so the abort stuff
2600 * can cleanup the reserved space
2601 * properly.
2602 */
2603 if (must_insert_reserved)
2604 locked_ref->must_insert_reserved = 1;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002605 locked_ref->processing = 0;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002606 btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret);
Miao Xie093486c2012-12-19 08:10:10 +00002607 btrfs_delayed_ref_unlock(locked_ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002608 return ret;
2609 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002610 continue;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002611 }
Chris Mason56bec292009-03-13 10:10:06 -04002612
Josef Bacikd7df2c72014-01-23 09:21:38 -05002613 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002614 * Need to drop our head ref lock and re-acquire the
Josef Bacikd7df2c72014-01-23 09:21:38 -05002615 * delayed ref lock and then re-check to make sure
2616 * nobody got added.
2617 */
2618 spin_unlock(&locked_ref->lock);
2619 spin_lock(&delayed_refs->lock);
2620 spin_lock(&locked_ref->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002621 if (!list_empty(&locked_ref->ref_list) ||
Josef Bacik573a0752014-03-27 19:41:34 -04002622 locked_ref->extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002623 spin_unlock(&locked_ref->lock);
2624 spin_unlock(&delayed_refs->lock);
2625 continue;
2626 }
2627 ref->in_tree = 0;
2628 delayed_refs->num_heads--;
Liu Boc46effa2013-10-14 12:59:45 +08002629 rb_erase(&locked_ref->href_node,
2630 &delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002631 spin_unlock(&delayed_refs->lock);
2632 } else {
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002633 actual_count++;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002634 ref->in_tree = 0;
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002635 list_del(&ref->list);
Liu Boc46effa2013-10-14 12:59:45 +08002636 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002637 atomic_dec(&delayed_refs->num_entries);
2638
Miao Xie093486c2012-12-19 08:10:10 +00002639 if (!btrfs_delayed_ref_is_head(ref)) {
Arne Jansen22cd2e72012-08-09 00:16:53 -06002640 /*
2641 * when we play the delayed ref, also correct the
2642 * ref_mod on head
2643 */
2644 switch (ref->action) {
2645 case BTRFS_ADD_DELAYED_REF:
2646 case BTRFS_ADD_DELAYED_EXTENT:
2647 locked_ref->node.ref_mod -= ref->ref_mod;
2648 break;
2649 case BTRFS_DROP_DELAYED_REF:
2650 locked_ref->node.ref_mod += ref->ref_mod;
2651 break;
2652 default:
2653 WARN_ON(1);
2654 }
2655 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002656 spin_unlock(&locked_ref->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002657
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002658 ret = run_one_delayed_ref(trans, root, ref, extent_op,
Chris Mason56bec292009-03-13 10:10:06 -04002659 must_insert_reserved);
Chris Mason56bec292009-03-13 10:10:06 -04002660
Miao Xie78a61842012-11-21 02:21:28 +00002661 btrfs_free_delayed_extent_op(extent_op);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002662 if (ret) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002663 locked_ref->processing = 0;
Miao Xie093486c2012-12-19 08:10:10 +00002664 btrfs_delayed_ref_unlock(locked_ref);
2665 btrfs_put_delayed_ref(ref);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002666 btrfs_debug(fs_info, "run_one_delayed_ref returned %d", ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002667 return ret;
2668 }
2669
Miao Xie093486c2012-12-19 08:10:10 +00002670 /*
2671 * If this node is a head, that means all the refs in this head
2672 * have been dealt with, and we will pick the next head to deal
2673 * with, so we must unlock the head and drop it from the cluster
2674 * list before we release it.
2675 */
2676 if (btrfs_delayed_ref_is_head(ref)) {
Josef Bacik12621332015-02-03 07:50:16 -08002677 if (locked_ref->is_data &&
2678 locked_ref->total_ref_mod < 0) {
2679 spin_lock(&delayed_refs->lock);
2680 delayed_refs->pending_csums -= ref->num_bytes;
2681 spin_unlock(&delayed_refs->lock);
2682 }
Miao Xie093486c2012-12-19 08:10:10 +00002683 btrfs_delayed_ref_unlock(locked_ref);
2684 locked_ref = NULL;
2685 }
2686 btrfs_put_delayed_ref(ref);
2687 count++;
Chris Mason1887be62009-03-13 10:11:24 -04002688 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002689 }
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002690
2691 /*
2692 * We don't want to include ref heads since we can have empty ref heads
2693 * and those will drastically skew our runtime down since we just do
2694 * accounting, no actual extent tree updates.
2695 */
2696 if (actual_count > 0) {
2697 u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start));
2698 u64 avg;
2699
2700 /*
2701 * We weigh the current average higher than our current runtime
2702 * to avoid large swings in the average.
2703 */
2704 spin_lock(&delayed_refs->lock);
2705 avg = fs_info->avg_delayed_ref_runtime * 3 + runtime;
David Sterbaf8c269d2015-01-16 17:21:12 +01002706 fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002707 spin_unlock(&delayed_refs->lock);
2708 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002709 return 0;
Chris Masonc3e69d52009-03-13 10:17:05 -04002710}
2711
Arne Jansen709c0482011-09-12 12:22:57 +02002712#ifdef SCRAMBLE_DELAYED_REFS
2713/*
2714 * Normally delayed refs get processed in ascending bytenr order. This
2715 * correlates in most cases to the order added. To expose dependencies on this
2716 * order, we start to process the tree in the middle instead of the beginning
2717 */
2718static u64 find_middle(struct rb_root *root)
2719{
2720 struct rb_node *n = root->rb_node;
2721 struct btrfs_delayed_ref_node *entry;
2722 int alt = 1;
2723 u64 middle;
2724 u64 first = 0, last = 0;
2725
2726 n = rb_first(root);
2727 if (n) {
2728 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2729 first = entry->bytenr;
2730 }
2731 n = rb_last(root);
2732 if (n) {
2733 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2734 last = entry->bytenr;
2735 }
2736 n = root->rb_node;
2737
2738 while (n) {
2739 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2740 WARN_ON(!entry->in_tree);
2741
2742 middle = entry->bytenr;
2743
2744 if (alt)
2745 n = n->rb_left;
2746 else
2747 n = n->rb_right;
2748
2749 alt = 1 - alt;
2750 }
2751 return middle;
2752}
2753#endif
2754
Josef Bacik1be41b72013-06-12 13:56:06 -04002755static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads)
2756{
2757 u64 num_bytes;
2758
2759 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2760 sizeof(struct btrfs_extent_inline_ref));
2761 if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2762 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2763
2764 /*
2765 * We don't ever fill up leaves all the way so multiply by 2 just to be
Nicholas D Steeves01327612016-05-19 21:18:45 -04002766 * closer to what we're really going to want to use.
Josef Bacik1be41b72013-06-12 13:56:06 -04002767 */
David Sterbaf8c269d2015-01-16 17:21:12 +01002768 return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root));
Josef Bacik1be41b72013-06-12 13:56:06 -04002769}
2770
Josef Bacik12621332015-02-03 07:50:16 -08002771/*
2772 * Takes the number of bytes to be csumm'ed and figures out how many leaves it
2773 * would require to store the csums for that many bytes.
2774 */
Chris Mason28f75a02015-02-04 06:59:29 -08002775u64 btrfs_csum_bytes_to_leaves(struct btrfs_root *root, u64 csum_bytes)
Josef Bacik12621332015-02-03 07:50:16 -08002776{
2777 u64 csum_size;
2778 u64 num_csums_per_leaf;
2779 u64 num_csums;
2780
2781 csum_size = BTRFS_LEAF_DATA_SIZE(root) - sizeof(struct btrfs_item);
2782 num_csums_per_leaf = div64_u64(csum_size,
2783 (u64)btrfs_super_csum_size(root->fs_info->super_copy));
2784 num_csums = div64_u64(csum_bytes, root->sectorsize);
2785 num_csums += num_csums_per_leaf - 1;
2786 num_csums = div64_u64(num_csums, num_csums_per_leaf);
2787 return num_csums;
2788}
2789
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002790int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans,
Josef Bacik1be41b72013-06-12 13:56:06 -04002791 struct btrfs_root *root)
2792{
2793 struct btrfs_block_rsv *global_rsv;
2794 u64 num_heads = trans->transaction->delayed_refs.num_heads_ready;
Josef Bacik12621332015-02-03 07:50:16 -08002795 u64 csum_bytes = trans->transaction->delayed_refs.pending_csums;
Josef Bacikcb723e42015-02-18 08:06:57 -08002796 u64 num_dirty_bgs = trans->transaction->num_dirty_bgs;
2797 u64 num_bytes, num_dirty_bgs_bytes;
Josef Bacik1be41b72013-06-12 13:56:06 -04002798 int ret = 0;
2799
2800 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
2801 num_heads = heads_to_leaves(root, num_heads);
2802 if (num_heads > 1)
David Sterba707e8a02014-06-04 19:22:26 +02002803 num_bytes += (num_heads - 1) * root->nodesize;
Josef Bacik1be41b72013-06-12 13:56:06 -04002804 num_bytes <<= 1;
Chris Mason28f75a02015-02-04 06:59:29 -08002805 num_bytes += btrfs_csum_bytes_to_leaves(root, csum_bytes) * root->nodesize;
Josef Bacikcb723e42015-02-18 08:06:57 -08002806 num_dirty_bgs_bytes = btrfs_calc_trans_metadata_size(root,
2807 num_dirty_bgs);
Josef Bacik1be41b72013-06-12 13:56:06 -04002808 global_rsv = &root->fs_info->global_block_rsv;
2809
2810 /*
2811 * If we can't allocate any more chunks lets make sure we have _lots_ of
2812 * wiggle room since running delayed refs can create more delayed refs.
2813 */
Josef Bacikcb723e42015-02-18 08:06:57 -08002814 if (global_rsv->space_info->full) {
2815 num_dirty_bgs_bytes <<= 1;
Josef Bacik1be41b72013-06-12 13:56:06 -04002816 num_bytes <<= 1;
Josef Bacikcb723e42015-02-18 08:06:57 -08002817 }
Josef Bacik1be41b72013-06-12 13:56:06 -04002818
2819 spin_lock(&global_rsv->lock);
Josef Bacikcb723e42015-02-18 08:06:57 -08002820 if (global_rsv->reserved <= num_bytes + num_dirty_bgs_bytes)
Josef Bacik1be41b72013-06-12 13:56:06 -04002821 ret = 1;
2822 spin_unlock(&global_rsv->lock);
2823 return ret;
2824}
2825
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002826int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans,
2827 struct btrfs_root *root)
2828{
2829 struct btrfs_fs_info *fs_info = root->fs_info;
2830 u64 num_entries =
2831 atomic_read(&trans->transaction->delayed_refs.num_entries);
2832 u64 avg_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002833 u64 val;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002834
2835 smp_mb();
2836 avg_runtime = fs_info->avg_delayed_ref_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002837 val = num_entries * avg_runtime;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002838 if (num_entries * avg_runtime >= NSEC_PER_SEC)
2839 return 1;
Chris Masona79b7d42014-05-22 16:18:52 -07002840 if (val >= NSEC_PER_SEC / 2)
2841 return 2;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002842
2843 return btrfs_check_space_for_delayed_refs(trans, root);
2844}
2845
Chris Masona79b7d42014-05-22 16:18:52 -07002846struct async_delayed_refs {
2847 struct btrfs_root *root;
Josef Bacik31b96552016-04-11 17:37:40 -04002848 u64 transid;
Chris Masona79b7d42014-05-22 16:18:52 -07002849 int count;
2850 int error;
2851 int sync;
2852 struct completion wait;
2853 struct btrfs_work work;
2854};
2855
2856static void delayed_ref_async_start(struct btrfs_work *work)
2857{
2858 struct async_delayed_refs *async;
2859 struct btrfs_trans_handle *trans;
2860 int ret;
2861
2862 async = container_of(work, struct async_delayed_refs, work);
2863
Chris Mason0f873ec2016-04-27 09:59:38 -04002864 /* if the commit is already started, we don't need to wait here */
2865 if (btrfs_transaction_blocked(async->root->fs_info))
Josef Bacik31b96552016-04-11 17:37:40 -04002866 goto done;
Josef Bacik31b96552016-04-11 17:37:40 -04002867
Chris Mason0f873ec2016-04-27 09:59:38 -04002868 trans = btrfs_join_transaction(async->root);
2869 if (IS_ERR(trans)) {
2870 async->error = PTR_ERR(trans);
Chris Masona79b7d42014-05-22 16:18:52 -07002871 goto done;
2872 }
2873
2874 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002875 * trans->sync means that when we call end_transaction, we won't
Chris Masona79b7d42014-05-22 16:18:52 -07002876 * wait on delayed refs
2877 */
2878 trans->sync = true;
Chris Mason0f873ec2016-04-27 09:59:38 -04002879
2880 /* Don't bother flushing if we got into a different transaction */
2881 if (trans->transid > async->transid)
2882 goto end;
2883
Chris Masona79b7d42014-05-22 16:18:52 -07002884 ret = btrfs_run_delayed_refs(trans, async->root, async->count);
2885 if (ret)
2886 async->error = ret;
Chris Mason0f873ec2016-04-27 09:59:38 -04002887end:
Chris Masona79b7d42014-05-22 16:18:52 -07002888 ret = btrfs_end_transaction(trans, async->root);
2889 if (ret && !async->error)
2890 async->error = ret;
2891done:
2892 if (async->sync)
2893 complete(&async->wait);
2894 else
2895 kfree(async);
2896}
2897
2898int btrfs_async_run_delayed_refs(struct btrfs_root *root,
Josef Bacik31b96552016-04-11 17:37:40 -04002899 unsigned long count, u64 transid, int wait)
Chris Masona79b7d42014-05-22 16:18:52 -07002900{
2901 struct async_delayed_refs *async;
2902 int ret;
2903
2904 async = kmalloc(sizeof(*async), GFP_NOFS);
2905 if (!async)
2906 return -ENOMEM;
2907
2908 async->root = root->fs_info->tree_root;
2909 async->count = count;
2910 async->error = 0;
Josef Bacik31b96552016-04-11 17:37:40 -04002911 async->transid = transid;
Chris Masona79b7d42014-05-22 16:18:52 -07002912 if (wait)
2913 async->sync = 1;
2914 else
2915 async->sync = 0;
2916 init_completion(&async->wait);
2917
Liu Bo9e0af232014-08-15 23:36:53 +08002918 btrfs_init_work(&async->work, btrfs_extent_refs_helper,
2919 delayed_ref_async_start, NULL, NULL);
Chris Masona79b7d42014-05-22 16:18:52 -07002920
2921 btrfs_queue_work(root->fs_info->extent_workers, &async->work);
2922
2923 if (wait) {
2924 wait_for_completion(&async->wait);
2925 ret = async->error;
2926 kfree(async);
2927 return ret;
2928 }
2929 return 0;
2930}
2931
Chris Masonc3e69d52009-03-13 10:17:05 -04002932/*
2933 * this starts processing the delayed reference count updates and
2934 * extent insertions we have queued up so far. count can be
2935 * 0, which means to process everything in the tree at the start
2936 * of the run (but not newly added entries), or it can be some target
2937 * number you'd like to process.
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002938 *
2939 * Returns 0 on success or if called with an aborted transaction
2940 * Returns <0 on error and aborts the transaction
Chris Masonc3e69d52009-03-13 10:17:05 -04002941 */
2942int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2943 struct btrfs_root *root, unsigned long count)
2944{
2945 struct rb_node *node;
2946 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boc46effa2013-10-14 12:59:45 +08002947 struct btrfs_delayed_ref_head *head;
Chris Masonc3e69d52009-03-13 10:17:05 -04002948 int ret;
2949 int run_all = count == (unsigned long)-1;
Filipe Mananad9a05402015-10-03 13:13:13 +01002950 bool can_flush_pending_bgs = trans->can_flush_pending_bgs;
Chris Masonc3e69d52009-03-13 10:17:05 -04002951
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002952 /* We'll clean this up in btrfs_cleanup_transaction */
2953 if (trans->aborted)
2954 return 0;
2955
Chris Mason511711a2015-12-30 07:52:35 -08002956 if (root->fs_info->creating_free_space_tree)
2957 return 0;
2958
Chris Masonc3e69d52009-03-13 10:17:05 -04002959 if (root == root->fs_info->extent_root)
2960 root = root->fs_info->tree_root;
2961
2962 delayed_refs = &trans->transaction->delayed_refs;
Liu Bo26455d32014-12-17 16:14:09 +08002963 if (count == 0)
Josef Bacikd7df2c72014-01-23 09:21:38 -05002964 count = atomic_read(&delayed_refs->num_entries) * 2;
Chris Masonbb721702013-01-29 18:44:12 -05002965
Chris Masonc3e69d52009-03-13 10:17:05 -04002966again:
Arne Jansen709c0482011-09-12 12:22:57 +02002967#ifdef SCRAMBLE_DELAYED_REFS
2968 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
2969#endif
Filipe Mananad9a05402015-10-03 13:13:13 +01002970 trans->can_flush_pending_bgs = false;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002971 ret = __btrfs_run_delayed_refs(trans, root, count);
2972 if (ret < 0) {
2973 btrfs_abort_transaction(trans, root, ret);
2974 return ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04002975 }
2976
Chris Mason56bec292009-03-13 10:10:06 -04002977 if (run_all) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002978 if (!list_empty(&trans->new_bgs))
Josef Bacikea658ba2012-09-11 16:57:25 -04002979 btrfs_create_pending_block_groups(trans, root);
Josef Bacikea658ba2012-09-11 16:57:25 -04002980
Josef Bacikd7df2c72014-01-23 09:21:38 -05002981 spin_lock(&delayed_refs->lock);
Liu Boc46effa2013-10-14 12:59:45 +08002982 node = rb_first(&delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002983 if (!node) {
2984 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002985 goto out;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002986 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002987 count = (unsigned long)-1;
Chris Mason56bec292009-03-13 10:10:06 -04002988
2989 while (node) {
Liu Boc46effa2013-10-14 12:59:45 +08002990 head = rb_entry(node, struct btrfs_delayed_ref_head,
2991 href_node);
2992 if (btrfs_delayed_ref_is_head(&head->node)) {
2993 struct btrfs_delayed_ref_node *ref;
Chris Mason56bec292009-03-13 10:10:06 -04002994
Liu Boc46effa2013-10-14 12:59:45 +08002995 ref = &head->node;
Chris Mason56bec292009-03-13 10:10:06 -04002996 atomic_inc(&ref->refs);
2997
2998 spin_unlock(&delayed_refs->lock);
David Sterba8cc33e52011-05-02 15:29:25 +02002999 /*
3000 * Mutex was contended, block until it's
3001 * released and try again
3002 */
Chris Mason56bec292009-03-13 10:10:06 -04003003 mutex_lock(&head->mutex);
3004 mutex_unlock(&head->mutex);
3005
3006 btrfs_put_delayed_ref(ref);
Chris Mason1887be62009-03-13 10:11:24 -04003007 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04003008 goto again;
Liu Boc46effa2013-10-14 12:59:45 +08003009 } else {
3010 WARN_ON(1);
Chris Mason56bec292009-03-13 10:10:06 -04003011 }
3012 node = rb_next(node);
3013 }
3014 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003015 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04003016 goto again;
3017 }
Chris Mason54aa1f42007-06-22 14:16:25 -04003018out:
Jan Schmidtedf39272012-06-28 18:04:55 +02003019 assert_qgroups_uptodate(trans);
Filipe Mananad9a05402015-10-03 13:13:13 +01003020 trans->can_flush_pending_bgs = can_flush_pending_bgs;
Chris Masona28ec192007-03-06 20:08:01 -05003021 return 0;
3022}
3023
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003024int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
3025 struct btrfs_root *root,
3026 u64 bytenr, u64 num_bytes, u64 flags,
Josef Bacikb1c79e02013-05-09 13:49:30 -04003027 int level, int is_data)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003028{
3029 struct btrfs_delayed_extent_op *extent_op;
3030 int ret;
3031
Miao Xie78a61842012-11-21 02:21:28 +00003032 extent_op = btrfs_alloc_delayed_extent_op();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003033 if (!extent_op)
3034 return -ENOMEM;
3035
3036 extent_op->flags_to_set = flags;
David Sterba35b3ad52015-11-30 16:51:29 +01003037 extent_op->update_flags = true;
3038 extent_op->update_key = false;
3039 extent_op->is_data = is_data ? true : false;
Josef Bacikb1c79e02013-05-09 13:49:30 -04003040 extent_op->level = level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003041
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003042 ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr,
3043 num_bytes, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003044 if (ret)
Miao Xie78a61842012-11-21 02:21:28 +00003045 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003046 return ret;
3047}
3048
3049static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
3050 struct btrfs_root *root,
3051 struct btrfs_path *path,
3052 u64 objectid, u64 offset, u64 bytenr)
3053{
3054 struct btrfs_delayed_ref_head *head;
3055 struct btrfs_delayed_ref_node *ref;
3056 struct btrfs_delayed_data_ref *data_ref;
3057 struct btrfs_delayed_ref_root *delayed_refs;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003058 int ret = 0;
3059
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003060 delayed_refs = &trans->transaction->delayed_refs;
3061 spin_lock(&delayed_refs->lock);
3062 head = btrfs_find_delayed_ref_head(trans, bytenr);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003063 if (!head) {
3064 spin_unlock(&delayed_refs->lock);
3065 return 0;
3066 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003067
3068 if (!mutex_trylock(&head->mutex)) {
3069 atomic_inc(&head->node.refs);
3070 spin_unlock(&delayed_refs->lock);
3071
David Sterbab3b4aa72011-04-21 01:20:15 +02003072 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003073
David Sterba8cc33e52011-05-02 15:29:25 +02003074 /*
3075 * Mutex was contended, block until it's released and let
3076 * caller try again
3077 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003078 mutex_lock(&head->mutex);
3079 mutex_unlock(&head->mutex);
3080 btrfs_put_delayed_ref(&head->node);
3081 return -EAGAIN;
3082 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003083 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003084
3085 spin_lock(&head->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08003086 list_for_each_entry(ref, &head->ref_list, list) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05003087 /* If it's a shared ref we know a cross reference exists */
3088 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) {
3089 ret = 1;
3090 break;
3091 }
3092
3093 data_ref = btrfs_delayed_node_to_data_ref(ref);
3094
3095 /*
3096 * If our ref doesn't match the one we're currently looking at
3097 * then we have a cross reference.
3098 */
3099 if (data_ref->root != root->root_key.objectid ||
3100 data_ref->objectid != objectid ||
3101 data_ref->offset != offset) {
3102 ret = 1;
3103 break;
3104 }
3105 }
3106 spin_unlock(&head->lock);
3107 mutex_unlock(&head->mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003108 return ret;
3109}
3110
3111static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
3112 struct btrfs_root *root,
3113 struct btrfs_path *path,
3114 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05003115{
3116 struct btrfs_root *extent_root = root->fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04003117 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003118 struct btrfs_extent_data_ref *ref;
3119 struct btrfs_extent_inline_ref *iref;
3120 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05003121 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003122 u32 item_size;
Yan Zhengf321e492008-07-30 09:26:11 -04003123 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05003124
Chris Masonbe20aa92007-12-17 20:14:01 -05003125 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04003126 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04003127 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05003128
Chris Masonbe20aa92007-12-17 20:14:01 -05003129 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
3130 if (ret < 0)
3131 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003132 BUG_ON(ret == 0); /* Corruption */
Yan Zheng80ff3852008-10-30 14:20:02 -04003133
3134 ret = -ENOENT;
3135 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04003136 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003137
Zheng Yan31840ae2008-09-23 13:14:14 -04003138 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04003139 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003140 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05003141
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003142 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05003143 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003144
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003145 ret = 1;
3146 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
3147#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
3148 if (item_size < sizeof(*ei)) {
3149 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
3150 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003151 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003152#endif
3153 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
3154
3155 if (item_size != sizeof(*ei) +
3156 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
3157 goto out;
3158
3159 if (btrfs_extent_generation(leaf, ei) <=
3160 btrfs_root_last_snapshot(&root->root_item))
3161 goto out;
3162
3163 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
3164 if (btrfs_extent_inline_ref_type(leaf, iref) !=
3165 BTRFS_EXTENT_DATA_REF_KEY)
3166 goto out;
3167
3168 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
3169 if (btrfs_extent_refs(leaf, ei) !=
3170 btrfs_extent_data_ref_count(leaf, ref) ||
3171 btrfs_extent_data_ref_root(leaf, ref) !=
3172 root->root_key.objectid ||
3173 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
3174 btrfs_extent_data_ref_offset(leaf, ref) != offset)
3175 goto out;
3176
Yan Zhengf321e492008-07-30 09:26:11 -04003177 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05003178out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003179 return ret;
3180}
3181
3182int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
3183 struct btrfs_root *root,
3184 u64 objectid, u64 offset, u64 bytenr)
3185{
3186 struct btrfs_path *path;
3187 int ret;
3188 int ret2;
3189
3190 path = btrfs_alloc_path();
3191 if (!path)
3192 return -ENOENT;
3193
3194 do {
3195 ret = check_committed_ref(trans, root, path, objectid,
3196 offset, bytenr);
3197 if (ret && ret != -ENOENT)
3198 goto out;
3199
3200 ret2 = check_delayed_ref(trans, root, path, objectid,
3201 offset, bytenr);
3202 } while (ret2 == -EAGAIN);
3203
3204 if (ret2 && ret2 != -ENOENT) {
3205 ret = ret2;
3206 goto out;
3207 }
3208
3209 if (ret != -ENOENT || ret2 != -ENOENT)
3210 ret = 0;
3211out:
Yan Zhengf321e492008-07-30 09:26:11 -04003212 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003213 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3214 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04003215 return ret;
3216}
3217
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003218static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05003219 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003220 struct extent_buffer *buf,
Josef Bacike339a6b2014-07-02 10:54:25 -07003221 int full_backref, int inc)
Zheng Yan31840ae2008-09-23 13:14:14 -04003222{
3223 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003224 u64 num_bytes;
3225 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003226 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04003227 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04003228 struct btrfs_key key;
3229 struct btrfs_file_extent_item *fi;
3230 int i;
3231 int level;
3232 int ret = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04003233 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003234 u64, u64, u64, u64, u64, u64);
Zheng Yan31840ae2008-09-23 13:14:14 -04003235
David Sterbafccb84c2014-09-29 23:53:21 +02003236
3237 if (btrfs_test_is_dummy_root(root))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04003238 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02003239
Zheng Yan31840ae2008-09-23 13:14:14 -04003240 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04003241 nritems = btrfs_header_nritems(buf);
3242 level = btrfs_header_level(buf);
3243
Miao Xie27cdeb72014-04-02 19:51:05 +08003244 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003245 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05003246
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003247 if (inc)
3248 process_func = btrfs_inc_extent_ref;
3249 else
3250 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003251
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003252 if (full_backref)
3253 parent = buf->start;
3254 else
3255 parent = 0;
3256
Zheng Yan31840ae2008-09-23 13:14:14 -04003257 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04003258 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003259 btrfs_item_key_to_cpu(buf, &key, i);
David Sterba962a2982014-06-04 18:41:45 +02003260 if (key.type != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04003261 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003262 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04003263 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003264 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04003265 BTRFS_FILE_EXTENT_INLINE)
3266 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003267 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3268 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04003269 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003270
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003271 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3272 key.offset -= btrfs_file_extent_offset(buf, fi);
3273 ret = process_func(trans, root, bytenr, num_bytes,
3274 parent, ref_root, key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003275 key.offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003276 if (ret)
3277 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05003278 } else {
3279 bytenr = btrfs_node_blockptr(buf, i);
David Sterba707e8a02014-06-04 19:22:26 +02003280 num_bytes = root->nodesize;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003281 ret = process_func(trans, root, bytenr, num_bytes,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003282 parent, ref_root, level - 1, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003283 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04003284 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04003285 }
3286 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003287 return 0;
3288fail:
Chris Mason54aa1f42007-06-22 14:16:25 -04003289 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05003290}
3291
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003292int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003293 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04003294{
Josef Bacike339a6b2014-07-02 10:54:25 -07003295 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003296}
Zheng Yan31840ae2008-09-23 13:14:14 -04003297
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003298int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003299 struct extent_buffer *buf, int full_backref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003300{
Josef Bacike339a6b2014-07-02 10:54:25 -07003301 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003302}
3303
Chris Mason9078a3e2007-04-26 16:46:15 -04003304static int write_one_cache_group(struct btrfs_trans_handle *trans,
3305 struct btrfs_root *root,
3306 struct btrfs_path *path,
3307 struct btrfs_block_group_cache *cache)
3308{
3309 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003310 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003311 unsigned long bi;
3312 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04003313
Chris Mason9078a3e2007-04-26 16:46:15 -04003314 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003315 if (ret) {
3316 if (ret > 0)
3317 ret = -ENOENT;
Chris Mason54aa1f42007-06-22 14:16:25 -04003318 goto fail;
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003319 }
Chris Mason5f39d392007-10-15 16:14:19 -04003320
3321 leaf = path->nodes[0];
3322 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3323 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3324 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -04003325fail:
Filipe Manana24b89d02015-04-25 18:31:05 +01003326 btrfs_release_path(path);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003327 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003328
3329}
3330
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003331static struct btrfs_block_group_cache *
3332next_block_group(struct btrfs_root *root,
3333 struct btrfs_block_group_cache *cache)
3334{
3335 struct rb_node *node;
Filipe Manana292cbd52014-11-26 15:28:50 +00003336
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003337 spin_lock(&root->fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003338
3339 /* If our block group was removed, we need a full search. */
3340 if (RB_EMPTY_NODE(&cache->cache_node)) {
3341 const u64 next_bytenr = cache->key.objectid + cache->key.offset;
3342
3343 spin_unlock(&root->fs_info->block_group_cache_lock);
3344 btrfs_put_block_group(cache);
3345 cache = btrfs_lookup_first_block_group(root->fs_info,
3346 next_bytenr);
3347 return cache;
3348 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003349 node = rb_next(&cache->cache_node);
3350 btrfs_put_block_group(cache);
3351 if (node) {
3352 cache = rb_entry(node, struct btrfs_block_group_cache,
3353 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00003354 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003355 } else
3356 cache = NULL;
3357 spin_unlock(&root->fs_info->block_group_cache_lock);
3358 return cache;
3359}
3360
Josef Bacik0af3d002010-06-21 14:48:16 -04003361static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3362 struct btrfs_trans_handle *trans,
3363 struct btrfs_path *path)
3364{
3365 struct btrfs_root *root = block_group->fs_info->tree_root;
3366 struct inode *inode = NULL;
3367 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05003368 int dcs = BTRFS_DC_ERROR;
David Sterbaf8c269d2015-01-16 17:21:12 +01003369 u64 num_pages = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003370 int retries = 0;
3371 int ret = 0;
3372
3373 /*
3374 * If this block group is smaller than 100 megs don't bother caching the
3375 * block group.
3376 */
Byongho Leeee221842015-12-15 01:42:10 +09003377 if (block_group->key.offset < (100 * SZ_1M)) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003378 spin_lock(&block_group->lock);
3379 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3380 spin_unlock(&block_group->lock);
3381 return 0;
3382 }
3383
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003384 if (trans->aborted)
3385 return 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003386again:
3387 inode = lookup_free_space_inode(root, block_group, path);
3388 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3389 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02003390 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003391 goto out;
3392 }
3393
3394 if (IS_ERR(inode)) {
3395 BUG_ON(retries);
3396 retries++;
3397
3398 if (block_group->ro)
3399 goto out_free;
3400
3401 ret = create_free_space_inode(root, trans, block_group, path);
3402 if (ret)
3403 goto out_free;
3404 goto again;
3405 }
3406
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003407 /* We've already setup this transaction, go ahead and exit */
3408 if (block_group->cache_generation == trans->transid &&
3409 i_size_read(inode)) {
3410 dcs = BTRFS_DC_SETUP;
3411 goto out_put;
3412 }
3413
Josef Bacik0af3d002010-06-21 14:48:16 -04003414 /*
3415 * We want to set the generation to 0, that way if anything goes wrong
3416 * from here on out we know not to trust this cache when we load up next
3417 * time.
3418 */
3419 BTRFS_I(inode)->generation = 0;
3420 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003421 if (ret) {
3422 /*
3423 * So theoretically we could recover from this, simply set the
3424 * super cache generation to 0 so we know to invalidate the
3425 * cache, but then we'd have to keep track of the block groups
3426 * that fail this way so we know we _have_ to reset this cache
3427 * before the next commit or risk reading stale cache. So to
3428 * limit our exposure to horrible edge cases lets just abort the
3429 * transaction, this only happens in really bad situations
3430 * anyway.
3431 */
3432 btrfs_abort_transaction(trans, root, ret);
3433 goto out_put;
3434 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003435 WARN_ON(ret);
3436
3437 if (i_size_read(inode) > 0) {
Miao Xie7b61cd92013-05-13 13:55:09 +00003438 ret = btrfs_check_trunc_cache_free_space(root,
3439 &root->fs_info->global_block_rsv);
3440 if (ret)
3441 goto out_put;
3442
Chris Mason1bbc6212015-04-06 12:46:08 -07003443 ret = btrfs_truncate_free_space_cache(root, trans, NULL, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003444 if (ret)
3445 goto out_put;
3446 }
3447
3448 spin_lock(&block_group->lock);
Liu Bocf7c1ef2012-07-06 03:31:34 -06003449 if (block_group->cached != BTRFS_CACHE_FINISHED ||
Chris Masone4c88f02015-04-18 05:22:48 -07003450 !btrfs_test_opt(root, SPACE_CACHE)) {
Liu Bocf7c1ef2012-07-06 03:31:34 -06003451 /*
3452 * don't bother trying to write stuff out _if_
3453 * a) we're not cached,
3454 * b) we're with nospace_cache mount option.
3455 */
Josef Bacik2b209822010-12-03 13:17:53 -05003456 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04003457 spin_unlock(&block_group->lock);
3458 goto out_put;
3459 }
3460 spin_unlock(&block_group->lock);
3461
Josef Bacik6fc823b2012-08-06 13:46:38 -06003462 /*
Josef Bacik2968b1f2015-10-01 12:55:18 -04003463 * We hit an ENOSPC when setting up the cache in this transaction, just
3464 * skip doing the setup, we've already cleared the cache so we're safe.
3465 */
3466 if (test_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags)) {
3467 ret = -ENOSPC;
3468 goto out_put;
3469 }
3470
3471 /*
Josef Bacik6fc823b2012-08-06 13:46:38 -06003472 * Try to preallocate enough space based on how big the block group is.
3473 * Keep in mind this has to include any pinned space which could end up
3474 * taking up quite a bit since it's not folded into the other space
3475 * cache.
3476 */
Byongho Leeee221842015-12-15 01:42:10 +09003477 num_pages = div_u64(block_group->key.offset, SZ_256M);
Josef Bacik0af3d002010-06-21 14:48:16 -04003478 if (!num_pages)
3479 num_pages = 1;
3480
Josef Bacik0af3d002010-06-21 14:48:16 -04003481 num_pages *= 16;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003482 num_pages *= PAGE_SIZE;
Josef Bacik0af3d002010-06-21 14:48:16 -04003483
Qu Wenruo7cf5b972015-09-08 17:25:55 +08003484 ret = btrfs_check_data_free_space(inode, 0, num_pages);
Josef Bacik0af3d002010-06-21 14:48:16 -04003485 if (ret)
3486 goto out_put;
3487
3488 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3489 num_pages, num_pages,
3490 &alloc_hint);
Josef Bacik2968b1f2015-10-01 12:55:18 -04003491 /*
3492 * Our cache requires contiguous chunks so that we don't modify a bunch
3493 * of metadata or split extents when writing the cache out, which means
3494 * we can enospc if we are heavily fragmented in addition to just normal
3495 * out of space conditions. So if we hit this just skip setting up any
3496 * other block groups for this transaction, maybe we'll unpin enough
3497 * space the next time around.
3498 */
Josef Bacik2b209822010-12-03 13:17:53 -05003499 if (!ret)
3500 dcs = BTRFS_DC_SETUP;
Josef Bacik2968b1f2015-10-01 12:55:18 -04003501 else if (ret == -ENOSPC)
3502 set_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags);
Qu Wenruo7cf5b972015-09-08 17:25:55 +08003503 btrfs_free_reserved_data_space(inode, 0, num_pages);
Josef Bacikc09544e2011-08-30 10:19:10 -04003504
Josef Bacik0af3d002010-06-21 14:48:16 -04003505out_put:
3506 iput(inode);
3507out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02003508 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003509out:
3510 spin_lock(&block_group->lock);
Josef Bacike65cbb92011-12-13 16:04:54 -05003511 if (!ret && dcs == BTRFS_DC_SETUP)
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003512 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05003513 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04003514 spin_unlock(&block_group->lock);
3515
3516 return ret;
3517}
3518
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003519int btrfs_setup_space_cache(struct btrfs_trans_handle *trans,
3520 struct btrfs_root *root)
3521{
3522 struct btrfs_block_group_cache *cache, *tmp;
3523 struct btrfs_transaction *cur_trans = trans->transaction;
3524 struct btrfs_path *path;
3525
3526 if (list_empty(&cur_trans->dirty_bgs) ||
3527 !btrfs_test_opt(root, SPACE_CACHE))
3528 return 0;
3529
3530 path = btrfs_alloc_path();
3531 if (!path)
3532 return -ENOMEM;
3533
3534 /* Could add new block groups, use _safe just in case */
3535 list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs,
3536 dirty_list) {
3537 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3538 cache_save_setup(cache, trans, path);
3539 }
3540
3541 btrfs_free_path(path);
3542 return 0;
3543}
3544
Chris Mason1bbc6212015-04-06 12:46:08 -07003545/*
3546 * transaction commit does final block group cache writeback during a
3547 * critical section where nothing is allowed to change the FS. This is
3548 * required in order for the cache to actually match the block group,
3549 * but can introduce a lot of latency into the commit.
3550 *
3551 * So, btrfs_start_dirty_block_groups is here to kick off block group
3552 * cache IO. There's a chance we'll have to redo some of it if the
3553 * block group changes again during the commit, but it greatly reduces
3554 * the commit latency by getting rid of the easy block groups while
3555 * we're still allowing others to join the commit.
3556 */
3557int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans,
3558 struct btrfs_root *root)
3559{
3560 struct btrfs_block_group_cache *cache;
3561 struct btrfs_transaction *cur_trans = trans->transaction;
3562 int ret = 0;
3563 int should_put;
3564 struct btrfs_path *path = NULL;
3565 LIST_HEAD(dirty);
3566 struct list_head *io = &cur_trans->io_bgs;
3567 int num_started = 0;
3568 int loops = 0;
3569
3570 spin_lock(&cur_trans->dirty_bgs_lock);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003571 if (list_empty(&cur_trans->dirty_bgs)) {
3572 spin_unlock(&cur_trans->dirty_bgs_lock);
3573 return 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003574 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003575 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Chris Mason1bbc6212015-04-06 12:46:08 -07003576 spin_unlock(&cur_trans->dirty_bgs_lock);
3577
3578again:
Chris Mason1bbc6212015-04-06 12:46:08 -07003579 /*
3580 * make sure all the block groups on our dirty list actually
3581 * exist
3582 */
3583 btrfs_create_pending_block_groups(trans, root);
3584
3585 if (!path) {
3586 path = btrfs_alloc_path();
3587 if (!path)
3588 return -ENOMEM;
3589 }
3590
Filipe Mananab58d1a92015-04-25 18:29:16 +01003591 /*
3592 * cache_write_mutex is here only to save us from balance or automatic
3593 * removal of empty block groups deleting this block group while we are
3594 * writing out the cache
3595 */
3596 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003597 while (!list_empty(&dirty)) {
3598 cache = list_first_entry(&dirty,
3599 struct btrfs_block_group_cache,
3600 dirty_list);
Chris Mason1bbc6212015-04-06 12:46:08 -07003601 /*
3602 * this can happen if something re-dirties a block
3603 * group that is already under IO. Just wait for it to
3604 * finish and then do it all again
3605 */
3606 if (!list_empty(&cache->io_list)) {
3607 list_del_init(&cache->io_list);
3608 btrfs_wait_cache_io(root, trans, cache,
3609 &cache->io_ctl, path,
3610 cache->key.objectid);
3611 btrfs_put_block_group(cache);
3612 }
3613
3614
3615 /*
3616 * btrfs_wait_cache_io uses the cache->dirty_list to decide
3617 * if it should update the cache_state. Don't delete
3618 * until after we wait.
3619 *
3620 * Since we're not running in the commit critical section
3621 * we need the dirty_bgs_lock to protect from update_block_group
3622 */
3623 spin_lock(&cur_trans->dirty_bgs_lock);
3624 list_del_init(&cache->dirty_list);
3625 spin_unlock(&cur_trans->dirty_bgs_lock);
3626
3627 should_put = 1;
3628
3629 cache_save_setup(cache, trans, path);
3630
3631 if (cache->disk_cache_state == BTRFS_DC_SETUP) {
3632 cache->io_ctl.inode = NULL;
3633 ret = btrfs_write_out_cache(root, trans, cache, path);
3634 if (ret == 0 && cache->io_ctl.inode) {
3635 num_started++;
3636 should_put = 0;
3637
3638 /*
3639 * the cache_write_mutex is protecting
3640 * the io_list
3641 */
3642 list_add_tail(&cache->io_list, io);
3643 } else {
3644 /*
3645 * if we failed to write the cache, the
3646 * generation will be bad and life goes on
3647 */
3648 ret = 0;
3649 }
3650 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003651 if (!ret) {
Chris Mason1bbc6212015-04-06 12:46:08 -07003652 ret = write_one_cache_group(trans, root, path, cache);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003653 /*
3654 * Our block group might still be attached to the list
3655 * of new block groups in the transaction handle of some
3656 * other task (struct btrfs_trans_handle->new_bgs). This
3657 * means its block group item isn't yet in the extent
3658 * tree. If this happens ignore the error, as we will
3659 * try again later in the critical section of the
3660 * transaction commit.
3661 */
3662 if (ret == -ENOENT) {
3663 ret = 0;
3664 spin_lock(&cur_trans->dirty_bgs_lock);
3665 if (list_empty(&cache->dirty_list)) {
3666 list_add_tail(&cache->dirty_list,
3667 &cur_trans->dirty_bgs);
3668 btrfs_get_block_group(cache);
3669 }
3670 spin_unlock(&cur_trans->dirty_bgs_lock);
3671 } else if (ret) {
3672 btrfs_abort_transaction(trans, root, ret);
3673 }
3674 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003675
3676 /* if its not on the io list, we need to put the block group */
3677 if (should_put)
3678 btrfs_put_block_group(cache);
3679
3680 if (ret)
3681 break;
Filipe Mananab58d1a92015-04-25 18:29:16 +01003682
3683 /*
3684 * Avoid blocking other tasks for too long. It might even save
3685 * us from writing caches for block groups that are going to be
3686 * removed.
3687 */
3688 mutex_unlock(&trans->transaction->cache_write_mutex);
3689 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003690 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003691 mutex_unlock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003692
3693 /*
3694 * go through delayed refs for all the stuff we've just kicked off
3695 * and then loop back (just once)
3696 */
3697 ret = btrfs_run_delayed_refs(trans, root, 0);
3698 if (!ret && loops == 0) {
3699 loops++;
3700 spin_lock(&cur_trans->dirty_bgs_lock);
3701 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003702 /*
3703 * dirty_bgs_lock protects us from concurrent block group
3704 * deletes too (not just cache_write_mutex).
3705 */
3706 if (!list_empty(&dirty)) {
3707 spin_unlock(&cur_trans->dirty_bgs_lock);
3708 goto again;
3709 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003710 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Mason1bbc6212015-04-06 12:46:08 -07003711 }
3712
3713 btrfs_free_path(path);
3714 return ret;
3715}
3716
Chris Mason96b51792007-10-15 16:15:19 -04003717int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
3718 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04003719{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003720 struct btrfs_block_group_cache *cache;
Josef Bacikce93ec52014-11-17 15:45:48 -05003721 struct btrfs_transaction *cur_trans = trans->transaction;
3722 int ret = 0;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003723 int should_put;
Chris Mason9078a3e2007-04-26 16:46:15 -04003724 struct btrfs_path *path;
Chris Mason1bbc6212015-04-06 12:46:08 -07003725 struct list_head *io = &cur_trans->io_bgs;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003726 int num_started = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003727
3728 path = btrfs_alloc_path();
3729 if (!path)
3730 return -ENOMEM;
3731
Josef Bacikce93ec52014-11-17 15:45:48 -05003732 /*
Filipe Mananae44081e2015-12-18 03:02:48 +00003733 * Even though we are in the critical section of the transaction commit,
3734 * we can still have concurrent tasks adding elements to this
3735 * transaction's list of dirty block groups. These tasks correspond to
3736 * endio free space workers started when writeback finishes for a
3737 * space cache, which run inode.c:btrfs_finish_ordered_io(), and can
3738 * allocate new block groups as a result of COWing nodes of the root
3739 * tree when updating the free space inode. The writeback for the space
3740 * caches is triggered by an earlier call to
3741 * btrfs_start_dirty_block_groups() and iterations of the following
3742 * loop.
3743 * Also we want to do the cache_save_setup first and then run the
Josef Bacikce93ec52014-11-17 15:45:48 -05003744 * delayed refs to make sure we have the best chance at doing this all
3745 * in one shot.
3746 */
Filipe Mananae44081e2015-12-18 03:02:48 +00003747 spin_lock(&cur_trans->dirty_bgs_lock);
Josef Bacikce93ec52014-11-17 15:45:48 -05003748 while (!list_empty(&cur_trans->dirty_bgs)) {
3749 cache = list_first_entry(&cur_trans->dirty_bgs,
3750 struct btrfs_block_group_cache,
3751 dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003752
3753 /*
3754 * this can happen if cache_save_setup re-dirties a block
3755 * group that is already under IO. Just wait for it to
3756 * finish and then do it all again
3757 */
3758 if (!list_empty(&cache->io_list)) {
Filipe Mananae44081e2015-12-18 03:02:48 +00003759 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003760 list_del_init(&cache->io_list);
3761 btrfs_wait_cache_io(root, trans, cache,
3762 &cache->io_ctl, path,
3763 cache->key.objectid);
3764 btrfs_put_block_group(cache);
Filipe Mananae44081e2015-12-18 03:02:48 +00003765 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003766 }
3767
Chris Mason1bbc6212015-04-06 12:46:08 -07003768 /*
3769 * don't remove from the dirty list until after we've waited
3770 * on any pending IO
3771 */
Josef Bacikce93ec52014-11-17 15:45:48 -05003772 list_del_init(&cache->dirty_list);
Filipe Mananae44081e2015-12-18 03:02:48 +00003773 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003774 should_put = 1;
3775
Chris Mason1bbc6212015-04-06 12:46:08 -07003776 cache_save_setup(cache, trans, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003777
Josef Bacikce93ec52014-11-17 15:45:48 -05003778 if (!ret)
Chris Masonc9dc4c62015-04-04 17:14:42 -07003779 ret = btrfs_run_delayed_refs(trans, root, (unsigned long) -1);
3780
3781 if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) {
3782 cache->io_ctl.inode = NULL;
3783 ret = btrfs_write_out_cache(root, trans, cache, path);
3784 if (ret == 0 && cache->io_ctl.inode) {
3785 num_started++;
3786 should_put = 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003787 list_add_tail(&cache->io_list, io);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003788 } else {
3789 /*
3790 * if we failed to write the cache, the
3791 * generation will be bad and life goes on
3792 */
3793 ret = 0;
3794 }
3795 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003796 if (!ret) {
Josef Bacikce93ec52014-11-17 15:45:48 -05003797 ret = write_one_cache_group(trans, root, path, cache);
Filipe Manana2bc0bb52015-12-30 02:42:30 +00003798 /*
3799 * One of the free space endio workers might have
3800 * created a new block group while updating a free space
3801 * cache's inode (at inode.c:btrfs_finish_ordered_io())
3802 * and hasn't released its transaction handle yet, in
3803 * which case the new block group is still attached to
3804 * its transaction handle and its creation has not
3805 * finished yet (no block group item in the extent tree
3806 * yet, etc). If this is the case, wait for all free
3807 * space endio workers to finish and retry. This is a
3808 * a very rare case so no need for a more efficient and
3809 * complex approach.
3810 */
3811 if (ret == -ENOENT) {
3812 wait_event(cur_trans->writer_wait,
3813 atomic_read(&cur_trans->num_writers) == 1);
3814 ret = write_one_cache_group(trans, root, path,
3815 cache);
3816 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003817 if (ret)
3818 btrfs_abort_transaction(trans, root, ret);
3819 }
Chris Masonc9dc4c62015-04-04 17:14:42 -07003820
3821 /* if its not on the io list, we need to put the block group */
3822 if (should_put)
3823 btrfs_put_block_group(cache);
Filipe Mananae44081e2015-12-18 03:02:48 +00003824 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003825 }
Filipe Mananae44081e2015-12-18 03:02:48 +00003826 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003827
Chris Mason1bbc6212015-04-06 12:46:08 -07003828 while (!list_empty(io)) {
3829 cache = list_first_entry(io, struct btrfs_block_group_cache,
Chris Masonc9dc4c62015-04-04 17:14:42 -07003830 io_list);
3831 list_del_init(&cache->io_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003832 btrfs_wait_cache_io(root, trans, cache,
3833 &cache->io_ctl, path, cache->key.objectid);
Josef Bacik0af3d002010-06-21 14:48:16 -04003834 btrfs_put_block_group(cache);
3835 }
3836
Chris Mason9078a3e2007-04-26 16:46:15 -04003837 btrfs_free_path(path);
Josef Bacikce93ec52014-11-17 15:45:48 -05003838 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003839}
3840
Yan Zhengd2fb3432008-12-11 16:30:39 -05003841int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
3842{
3843 struct btrfs_block_group_cache *block_group;
3844 int readonly = 0;
3845
3846 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
3847 if (!block_group || block_group->ro)
3848 readonly = 1;
3849 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04003850 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003851 return readonly;
3852}
3853
Filipe Mananaf78c4362016-05-09 13:15:41 +01003854bool btrfs_inc_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3855{
3856 struct btrfs_block_group_cache *bg;
3857 bool ret = true;
3858
3859 bg = btrfs_lookup_block_group(fs_info, bytenr);
3860 if (!bg)
3861 return false;
3862
3863 spin_lock(&bg->lock);
3864 if (bg->ro)
3865 ret = false;
3866 else
3867 atomic_inc(&bg->nocow_writers);
3868 spin_unlock(&bg->lock);
3869
3870 /* no put on block group, done by btrfs_dec_nocow_writers */
3871 if (!ret)
3872 btrfs_put_block_group(bg);
3873
3874 return ret;
3875
3876}
3877
3878void btrfs_dec_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3879{
3880 struct btrfs_block_group_cache *bg;
3881
3882 bg = btrfs_lookup_block_group(fs_info, bytenr);
3883 ASSERT(bg);
3884 if (atomic_dec_and_test(&bg->nocow_writers))
3885 wake_up_atomic_t(&bg->nocow_writers);
3886 /*
3887 * Once for our lookup and once for the lookup done by a previous call
3888 * to btrfs_inc_nocow_writers()
3889 */
3890 btrfs_put_block_group(bg);
3891 btrfs_put_block_group(bg);
3892}
3893
3894static int btrfs_wait_nocow_writers_atomic_t(atomic_t *a)
3895{
3896 schedule();
3897 return 0;
3898}
3899
3900void btrfs_wait_nocow_writers(struct btrfs_block_group_cache *bg)
3901{
3902 wait_on_atomic_t(&bg->nocow_writers,
3903 btrfs_wait_nocow_writers_atomic_t,
3904 TASK_UNINTERRUPTIBLE);
3905}
3906
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003907static const char *alloc_name(u64 flags)
3908{
3909 switch (flags) {
3910 case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA:
3911 return "mixed";
3912 case BTRFS_BLOCK_GROUP_METADATA:
3913 return "metadata";
3914 case BTRFS_BLOCK_GROUP_DATA:
3915 return "data";
3916 case BTRFS_BLOCK_GROUP_SYSTEM:
3917 return "system";
3918 default:
3919 WARN_ON(1);
3920 return "invalid-combination";
3921 };
3922}
3923
Chris Mason593060d2008-03-25 16:50:33 -04003924static int update_space_info(struct btrfs_fs_info *info, u64 flags,
3925 u64 total_bytes, u64 bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -04003926 u64 bytes_readonly,
Chris Mason593060d2008-03-25 16:50:33 -04003927 struct btrfs_space_info **space_info)
3928{
3929 struct btrfs_space_info *found;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003930 int i;
3931 int factor;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003932 int ret;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003933
3934 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
3935 BTRFS_BLOCK_GROUP_RAID10))
3936 factor = 2;
3937 else
3938 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04003939
3940 found = __find_space_info(info, flags);
3941 if (found) {
Josef Bacik25179202008-10-29 14:49:05 -04003942 spin_lock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003943 found->total_bytes += total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003944 found->disk_total += total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003945 found->bytes_used += bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003946 found->disk_used += bytes_used * factor;
Josef Bacike40edf22016-03-25 13:25:47 -04003947 found->bytes_readonly += bytes_readonly;
Filipe Manana2e6e5182015-05-12 00:28:11 +01003948 if (total_bytes > 0)
3949 found->full = 0;
Josef Bacik957780e2016-05-17 13:30:55 -04003950 space_info_add_new_bytes(info, found, total_bytes -
3951 bytes_used - bytes_readonly);
Josef Bacik25179202008-10-29 14:49:05 -04003952 spin_unlock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003953 *space_info = found;
3954 return 0;
3955 }
Yan Zhengc146afa2008-11-12 14:34:12 -05003956 found = kzalloc(sizeof(*found), GFP_NOFS);
Chris Mason593060d2008-03-25 16:50:33 -04003957 if (!found)
3958 return -ENOMEM;
3959
Tejun Heo908c7f12014-09-08 09:51:29 +09003960 ret = percpu_counter_init(&found->total_bytes_pinned, 0, GFP_KERNEL);
Josef Bacikb150a4f2013-06-19 15:00:04 -04003961 if (ret) {
3962 kfree(found);
3963 return ret;
3964 }
3965
Jeff Mahoneyc1895442014-05-27 12:59:57 -04003966 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
Yan, Zhengb742bb82010-05-16 10:46:24 -04003967 INIT_LIST_HEAD(&found->block_groups[i]);
Josef Bacik80eb2342008-10-29 14:49:05 -04003968 init_rwsem(&found->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003969 spin_lock_init(&found->lock);
Ilya Dryomov52ba6922012-01-16 22:04:47 +02003970 found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
Chris Mason593060d2008-03-25 16:50:33 -04003971 found->total_bytes = total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003972 found->disk_total = total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003973 found->bytes_used = bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003974 found->disk_used = bytes_used * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003975 found->bytes_pinned = 0;
Zheng Yane8569812008-09-26 10:05:48 -04003976 found->bytes_reserved = 0;
Josef Bacike40edf22016-03-25 13:25:47 -04003977 found->bytes_readonly = bytes_readonly;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003978 found->bytes_may_use = 0;
Filipe Manana6af3e3a2015-09-07 10:41:12 +01003979 found->full = 0;
Josef Bacik4f4db212015-09-29 11:40:47 -04003980 found->max_extent_size = 0;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003981 found->force_alloc = CHUNK_ALLOC_NO_FORCE;
Josef Bacik6d741192011-04-11 20:20:11 -04003982 found->chunk_alloc = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003983 found->flush = 0;
3984 init_waitqueue_head(&found->wait);
Josef Bacik633c0aa2014-10-31 09:49:34 -04003985 INIT_LIST_HEAD(&found->ro_bgs);
Josef Bacik957780e2016-05-17 13:30:55 -04003986 INIT_LIST_HEAD(&found->tickets);
3987 INIT_LIST_HEAD(&found->priority_tickets);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003988
3989 ret = kobject_init_and_add(&found->kobj, &space_info_ktype,
3990 info->space_info_kobj, "%s",
3991 alloc_name(found->flags));
3992 if (ret) {
3993 kfree(found);
3994 return ret;
3995 }
3996
Chris Mason593060d2008-03-25 16:50:33 -04003997 *space_info = found;
Chris Mason4184ea72009-03-10 12:39:20 -04003998 list_add_rcu(&found->list, &info->space_info);
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003999 if (flags & BTRFS_BLOCK_GROUP_DATA)
4000 info->data_sinfo = found;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04004001
4002 return ret;
Chris Mason593060d2008-03-25 16:50:33 -04004003}
4004
Chris Mason8790d502008-04-03 16:29:03 -04004005static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
4006{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03004007 u64 extra_flags = chunk_to_extended(flags) &
4008 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004009
Miao Xiede98ced2013-01-29 10:13:12 +00004010 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004011 if (flags & BTRFS_BLOCK_GROUP_DATA)
4012 fs_info->avail_data_alloc_bits |= extra_flags;
4013 if (flags & BTRFS_BLOCK_GROUP_METADATA)
4014 fs_info->avail_metadata_alloc_bits |= extra_flags;
4015 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
4016 fs_info->avail_system_alloc_bits |= extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004017 write_sequnlock(&fs_info->profiles_lock);
Chris Mason8790d502008-04-03 16:29:03 -04004018}
Chris Mason593060d2008-03-25 16:50:33 -04004019
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004020/*
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004021 * returns target flags in extended format or 0 if restripe for this
4022 * chunk_type is not in progress
Ilya Dryomovc6664b42012-04-12 16:03:56 -04004023 *
4024 * should be called with either volume_mutex or balance_lock held
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004025 */
4026static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
4027{
4028 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4029 u64 target = 0;
4030
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004031 if (!bctl)
4032 return 0;
4033
4034 if (flags & BTRFS_BLOCK_GROUP_DATA &&
4035 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4036 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
4037 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
4038 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4039 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
4040 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
4041 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4042 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
4043 }
4044
4045 return target;
4046}
4047
4048/*
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004049 * @flags: available profiles in extended format (see ctree.h)
4050 *
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004051 * Returns reduced profile in chunk format. If profile changing is in
4052 * progress (either running or paused) picks the target profile (if it's
4053 * already available), otherwise falls back to plain reducing.
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004054 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00004055static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04004056{
Miao Xie95669972014-07-24 11:37:14 +08004057 u64 num_devices = root->fs_info->fs_devices->rw_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004058 u64 target;
Zhao Lei9c170b22015-09-15 21:08:08 +08004059 u64 raid_type;
4060 u64 allowed = 0;
Chris Masona061fc82008-05-07 11:43:44 -04004061
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004062 /*
4063 * see if restripe for this chunk_type is in progress, if so
4064 * try to reduce to the target profile
4065 */
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004066 spin_lock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004067 target = get_restripe_target(root->fs_info, flags);
4068 if (target) {
4069 /* pick target profile only if it's already available */
4070 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004071 spin_unlock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004072 return extended_to_chunk(target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004073 }
4074 }
4075 spin_unlock(&root->fs_info->balance_lock);
4076
David Woodhouse53b381b2013-01-29 18:40:14 -05004077 /* First, mask out the RAID levels which aren't possible */
Zhao Lei9c170b22015-09-15 21:08:08 +08004078 for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) {
4079 if (num_devices >= btrfs_raid_array[raid_type].devs_min)
4080 allowed |= btrfs_raid_group[raid_type];
4081 }
4082 allowed &= flags;
Chris Masona061fc82008-05-07 11:43:44 -04004083
Zhao Lei9c170b22015-09-15 21:08:08 +08004084 if (allowed & BTRFS_BLOCK_GROUP_RAID6)
4085 allowed = BTRFS_BLOCK_GROUP_RAID6;
4086 else if (allowed & BTRFS_BLOCK_GROUP_RAID5)
4087 allowed = BTRFS_BLOCK_GROUP_RAID5;
4088 else if (allowed & BTRFS_BLOCK_GROUP_RAID10)
4089 allowed = BTRFS_BLOCK_GROUP_RAID10;
4090 else if (allowed & BTRFS_BLOCK_GROUP_RAID1)
4091 allowed = BTRFS_BLOCK_GROUP_RAID1;
4092 else if (allowed & BTRFS_BLOCK_GROUP_RAID0)
4093 allowed = BTRFS_BLOCK_GROUP_RAID0;
Chris Masonec44a352008-04-28 15:29:52 -04004094
Zhao Lei9c170b22015-09-15 21:08:08 +08004095 flags &= ~BTRFS_BLOCK_GROUP_PROFILE_MASK;
Chris Masonec44a352008-04-28 15:29:52 -04004096
Zhao Lei9c170b22015-09-15 21:08:08 +08004097 return extended_to_chunk(flags | allowed);
Chris Masonec44a352008-04-28 15:29:52 -04004098}
4099
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004100static u64 get_alloc_profile(struct btrfs_root *root, u64 orig_flags)
Josef Bacik6a632092009-02-20 11:00:09 -05004101{
Miao Xiede98ced2013-01-29 10:13:12 +00004102 unsigned seq;
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004103 u64 flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004104
4105 do {
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004106 flags = orig_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004107 seq = read_seqbegin(&root->fs_info->profiles_lock);
4108
4109 if (flags & BTRFS_BLOCK_GROUP_DATA)
4110 flags |= root->fs_info->avail_data_alloc_bits;
4111 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
4112 flags |= root->fs_info->avail_system_alloc_bits;
4113 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
4114 flags |= root->fs_info->avail_metadata_alloc_bits;
4115 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02004116
Yan, Zhengb742bb82010-05-16 10:46:24 -04004117 return btrfs_reduce_alloc_profile(root, flags);
4118}
Josef Bacik6a632092009-02-20 11:00:09 -05004119
Miao Xie6d07bce2011-01-05 10:07:31 +00004120u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
Yan, Zhengb742bb82010-05-16 10:46:24 -04004121{
4122 u64 flags;
David Woodhouse53b381b2013-01-29 18:40:14 -05004123 u64 ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004124
Yan, Zhengb742bb82010-05-16 10:46:24 -04004125 if (data)
4126 flags = BTRFS_BLOCK_GROUP_DATA;
4127 else if (root == root->fs_info->chunk_root)
4128 flags = BTRFS_BLOCK_GROUP_SYSTEM;
4129 else
4130 flags = BTRFS_BLOCK_GROUP_METADATA;
4131
David Woodhouse53b381b2013-01-29 18:40:14 -05004132 ret = get_alloc_profile(root, flags);
4133 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004134}
4135
Qu Wenruo4ceff072015-09-08 17:22:42 +08004136int btrfs_alloc_data_chunk_ondemand(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05004137{
4138 struct btrfs_space_info *data_sinfo;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004139 struct btrfs_root *root = BTRFS_I(inode)->root;
Li Zefanb4d7c3c2012-07-09 20:21:07 -06004140 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacikab6e24102010-03-19 14:38:13 +00004141 u64 used;
Zhao Lei94b947b2015-02-14 13:23:45 +08004142 int ret = 0;
Zhao Leic99f1b02015-03-02 19:32:20 +08004143 int need_commit = 2;
4144 int have_pinned_space;
Josef Bacik6a632092009-02-20 11:00:09 -05004145
4146 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00004147 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05004148
Miao Xie9dced182013-10-25 17:33:36 +08004149 if (btrfs_is_free_space_inode(inode)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004150 need_commit = 0;
Miao Xie9dced182013-10-25 17:33:36 +08004151 ASSERT(current->journal_info);
Josef Bacik0af3d002010-06-21 14:48:16 -04004152 }
4153
Li Zefanb4d7c3c2012-07-09 20:21:07 -06004154 data_sinfo = fs_info->data_sinfo;
Chris Mason33b4d472009-09-22 14:45:50 -04004155 if (!data_sinfo)
4156 goto alloc;
4157
Josef Bacik6a632092009-02-20 11:00:09 -05004158again:
4159 /* make sure we have enough space to handle the data first */
4160 spin_lock(&data_sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004161 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
4162 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
4163 data_sinfo->bytes_may_use;
Josef Bacikab6e24102010-03-19 14:38:13 +00004164
4165 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004166 struct btrfs_trans_handle *trans;
4167
Josef Bacik6a632092009-02-20 11:00:09 -05004168 /*
4169 * if we don't have enough free bytes in this space then we need
4170 * to alloc a new chunk.
4171 */
Zhao Leib9fd47c2015-02-09 14:40:20 +08004172 if (!data_sinfo->full) {
Josef Bacik6a632092009-02-20 11:00:09 -05004173 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05004174
Chris Mason0e4f8f82011-04-15 16:05:44 -04004175 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05004176 spin_unlock(&data_sinfo->lock);
Chris Mason33b4d472009-09-22 14:45:50 -04004177alloc:
Josef Bacik6a632092009-02-20 11:00:09 -05004178 alloc_target = btrfs_get_alloc_profile(root, 1);
Miao Xie9dced182013-10-25 17:33:36 +08004179 /*
4180 * It is ugly that we don't call nolock join
4181 * transaction for the free space inode case here.
4182 * But it is safe because we only do the data space
4183 * reservation for the free space cache in the
4184 * transaction context, the common join transaction
4185 * just increase the counter of the current transaction
4186 * handler, doesn't try to acquire the trans_lock of
4187 * the fs.
4188 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004189 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004190 if (IS_ERR(trans))
4191 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05004192
4193 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0e4f8f82011-04-15 16:05:44 -04004194 alloc_target,
4195 CHUNK_ALLOC_NO_FORCE);
Josef Bacik6a632092009-02-20 11:00:09 -05004196 btrfs_end_transaction(trans, root);
Miao Xied52a5b52011-01-05 10:07:18 +00004197 if (ret < 0) {
4198 if (ret != -ENOSPC)
4199 return ret;
Zhao Leic99f1b02015-03-02 19:32:20 +08004200 else {
4201 have_pinned_space = 1;
Miao Xied52a5b52011-01-05 10:07:18 +00004202 goto commit_trans;
Zhao Leic99f1b02015-03-02 19:32:20 +08004203 }
Miao Xied52a5b52011-01-05 10:07:18 +00004204 }
Chris Mason33b4d472009-09-22 14:45:50 -04004205
Li Zefanb4d7c3c2012-07-09 20:21:07 -06004206 if (!data_sinfo)
4207 data_sinfo = fs_info->data_sinfo;
4208
Josef Bacik6a632092009-02-20 11:00:09 -05004209 goto again;
4210 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004211
4212 /*
Josef Bacikb150a4f2013-06-19 15:00:04 -04004213 * If we don't have enough pinned space to deal with this
Zhao Lei94b947b2015-02-14 13:23:45 +08004214 * allocation, and no removed chunk in current transaction,
4215 * don't bother committing the transaction.
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004216 */
Zhao Leic99f1b02015-03-02 19:32:20 +08004217 have_pinned_space = percpu_counter_compare(
4218 &data_sinfo->total_bytes_pinned,
4219 used + bytes - data_sinfo->total_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05004220 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004221
4222 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00004223commit_trans:
Zhao Leic99f1b02015-03-02 19:32:20 +08004224 if (need_commit &&
Josef Bacika4abeea2011-04-11 17:25:13 -04004225 !atomic_read(&root->fs_info->open_ioctl_trans)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004226 need_commit--;
Josef Bacikb150a4f2013-06-19 15:00:04 -04004227
Zhao Leie1746e82015-12-01 18:39:40 +08004228 if (need_commit > 0) {
4229 btrfs_start_delalloc_roots(fs_info, 0, -1);
Filipe Manana578def72016-04-26 15:36:38 +01004230 btrfs_wait_ordered_roots(fs_info, -1, 0, (u64)-1);
Zhao Leie1746e82015-12-01 18:39:40 +08004231 }
Zhao Lei9a4e7272015-04-09 12:34:43 +08004232
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004233 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004234 if (IS_ERR(trans))
4235 return PTR_ERR(trans);
Zhao Leic99f1b02015-03-02 19:32:20 +08004236 if (have_pinned_space >= 0 ||
Josef Bacik3204d332015-09-24 10:46:10 -04004237 test_bit(BTRFS_TRANS_HAVE_FREE_BGS,
4238 &trans->transaction->flags) ||
Zhao Leic99f1b02015-03-02 19:32:20 +08004239 need_commit > 0) {
Zhao Lei94b947b2015-02-14 13:23:45 +08004240 ret = btrfs_commit_transaction(trans, root);
4241 if (ret)
4242 return ret;
Zhao Leid7c15172015-02-26 10:49:20 +08004243 /*
Filipe Mananac2d6cb12016-01-15 11:05:12 +00004244 * The cleaner kthread might still be doing iput
4245 * operations. Wait for it to finish so that
4246 * more space is released.
Zhao Leid7c15172015-02-26 10:49:20 +08004247 */
Filipe Mananac2d6cb12016-01-15 11:05:12 +00004248 mutex_lock(&root->fs_info->cleaner_delayed_iput_mutex);
4249 mutex_unlock(&root->fs_info->cleaner_delayed_iput_mutex);
Zhao Lei94b947b2015-02-14 13:23:45 +08004250 goto again;
4251 } else {
4252 btrfs_end_transaction(trans, root);
4253 }
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004254 }
4255
Jeff Mahoneycab45e22013-10-16 16:27:01 -04004256 trace_btrfs_space_reservation(root->fs_info,
4257 "space_info:enospc",
4258 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004259 return -ENOSPC;
4260 }
4261 data_sinfo->bytes_may_use += bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004262 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004263 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004264 spin_unlock(&data_sinfo->lock);
4265
Dongsheng Yang237c0e92014-12-29 06:23:05 -05004266 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004267}
4268
4269/*
Qu Wenruo4ceff072015-09-08 17:22:42 +08004270 * New check_data_free_space() with ability for precious data reservation
4271 * Will replace old btrfs_check_data_free_space(), but for patch split,
4272 * add a new function first and then replace it.
4273 */
Qu Wenruo7cf5b972015-09-08 17:25:55 +08004274int btrfs_check_data_free_space(struct inode *inode, u64 start, u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004275{
4276 struct btrfs_root *root = BTRFS_I(inode)->root;
4277 int ret;
4278
4279 /* align the range */
4280 len = round_up(start + len, root->sectorsize) -
4281 round_down(start, root->sectorsize);
4282 start = round_down(start, root->sectorsize);
4283
4284 ret = btrfs_alloc_data_chunk_ondemand(inode, len);
4285 if (ret < 0)
4286 return ret;
4287
Qu Wenruo94ed9382015-09-08 17:25:56 +08004288 /*
4289 * Use new btrfs_qgroup_reserve_data to reserve precious data space
4290 *
4291 * TODO: Find a good method to avoid reserve data space for NOCOW
4292 * range, but don't impact performance on quota disable case.
4293 */
Qu Wenruo4ceff072015-09-08 17:22:42 +08004294 ret = btrfs_qgroup_reserve_data(inode, start, len);
4295 return ret;
4296}
4297
4298/*
Qu Wenruo4ceff072015-09-08 17:22:42 +08004299 * Called if we need to clear a data reservation for this inode
4300 * Normally in a error case.
4301 *
Qu Wenruo51773be2015-10-08 18:19:37 +08004302 * This one will *NOT* use accurate qgroup reserved space API, just for case
4303 * which we can't sleep and is sure it won't affect qgroup reserved space.
4304 * Like clear_bit_hook().
Qu Wenruo4ceff072015-09-08 17:22:42 +08004305 */
Qu Wenruo51773be2015-10-08 18:19:37 +08004306void btrfs_free_reserved_data_space_noquota(struct inode *inode, u64 start,
4307 u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004308{
4309 struct btrfs_root *root = BTRFS_I(inode)->root;
4310 struct btrfs_space_info *data_sinfo;
4311
4312 /* Make sure the range is aligned to sectorsize */
4313 len = round_up(start + len, root->sectorsize) -
4314 round_down(start, root->sectorsize);
4315 start = round_down(start, root->sectorsize);
4316
Qu Wenruo4ceff072015-09-08 17:22:42 +08004317 data_sinfo = root->fs_info->data_sinfo;
4318 spin_lock(&data_sinfo->lock);
4319 if (WARN_ON(data_sinfo->bytes_may_use < len))
4320 data_sinfo->bytes_may_use = 0;
4321 else
4322 data_sinfo->bytes_may_use -= len;
4323 trace_btrfs_space_reservation(root->fs_info, "space_info",
4324 data_sinfo->flags, len, 0);
4325 spin_unlock(&data_sinfo->lock);
4326}
4327
Qu Wenruo51773be2015-10-08 18:19:37 +08004328/*
4329 * Called if we need to clear a data reservation for this inode
4330 * Normally in a error case.
4331 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04004332 * This one will handle the per-inode data rsv map for accurate reserved
Qu Wenruo51773be2015-10-08 18:19:37 +08004333 * space framework.
4334 */
4335void btrfs_free_reserved_data_space(struct inode *inode, u64 start, u64 len)
4336{
4337 btrfs_free_reserved_data_space_noquota(inode, start, len);
4338 btrfs_qgroup_free_data(inode, start, len);
4339}
4340
Josef Bacik97e728d2009-04-21 17:40:57 -04004341static void force_metadata_allocation(struct btrfs_fs_info *info)
4342{
4343 struct list_head *head = &info->space_info;
4344 struct btrfs_space_info *found;
4345
4346 rcu_read_lock();
4347 list_for_each_entry_rcu(found, head, list) {
4348 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004349 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04004350 }
4351 rcu_read_unlock();
4352}
4353
Miao Xie3c76cd82013-04-25 10:12:38 +00004354static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
4355{
4356 return (global->size << 1);
4357}
4358
Chris Masone5bc2452010-10-26 13:37:56 -04004359static int should_alloc_chunk(struct btrfs_root *root,
Josef Bacik698d0082012-09-12 14:08:47 -04004360 struct btrfs_space_info *sinfo, int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04004361{
Josef Bacikfb25e912011-07-26 17:00:46 -04004362 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zheng424499d2010-05-16 10:46:25 -04004363 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
Chris Mason0e4f8f82011-04-15 16:05:44 -04004364 u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved;
Chris Masone5bc2452010-10-26 13:37:56 -04004365 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04004366
Chris Mason0e4f8f82011-04-15 16:05:44 -04004367 if (force == CHUNK_ALLOC_FORCE)
4368 return 1;
4369
4370 /*
Josef Bacikfb25e912011-07-26 17:00:46 -04004371 * We need to take into account the global rsv because for all intents
4372 * and purposes it's used space. Don't worry about locking the
4373 * global_rsv, it doesn't change except when the transaction commits.
4374 */
Josef Bacik54338b52012-08-14 16:20:52 -04004375 if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA)
Miao Xie3c76cd82013-04-25 10:12:38 +00004376 num_allocated += calc_global_rsv_need_space(global_rsv);
Josef Bacikfb25e912011-07-26 17:00:46 -04004377
4378 /*
Chris Mason0e4f8f82011-04-15 16:05:44 -04004379 * in limited mode, we want to have some free space up to
4380 * about 1% of the FS size.
4381 */
4382 if (force == CHUNK_ALLOC_LIMITED) {
David Sterba6c417612011-04-13 15:41:04 +02004383 thresh = btrfs_super_total_bytes(root->fs_info->super_copy);
Byongho Leeee221842015-12-15 01:42:10 +09004384 thresh = max_t(u64, SZ_64M, div_factor_fine(thresh, 1));
Chris Mason0e4f8f82011-04-15 16:05:44 -04004385
4386 if (num_bytes - num_allocated < thresh)
4387 return 1;
4388 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004389
Byongho Leeee221842015-12-15 01:42:10 +09004390 if (num_allocated + SZ_2M < div_factor(num_bytes, 8))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04004391 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04004392 return 1;
4393}
4394
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004395static u64 get_profile_num_devs(struct btrfs_root *root, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004396{
4397 u64 num_dev;
4398
David Woodhouse53b381b2013-01-29 18:40:14 -05004399 if (type & (BTRFS_BLOCK_GROUP_RAID10 |
4400 BTRFS_BLOCK_GROUP_RAID0 |
4401 BTRFS_BLOCK_GROUP_RAID5 |
4402 BTRFS_BLOCK_GROUP_RAID6))
Liu Bo15d1ff82012-03-29 09:57:44 -04004403 num_dev = root->fs_info->fs_devices->rw_devices;
4404 else if (type & BTRFS_BLOCK_GROUP_RAID1)
4405 num_dev = 2;
4406 else
4407 num_dev = 1; /* DUP or single */
4408
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004409 return num_dev;
Liu Bo15d1ff82012-03-29 09:57:44 -04004410}
4411
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004412/*
4413 * If @is_allocation is true, reserve space in the system space info necessary
4414 * for allocating a chunk, otherwise if it's false, reserve space necessary for
4415 * removing a chunk.
4416 */
4417void check_system_chunk(struct btrfs_trans_handle *trans,
4418 struct btrfs_root *root,
Filipe Manana4617ea32015-06-09 17:48:21 +01004419 u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004420{
4421 struct btrfs_space_info *info;
4422 u64 left;
4423 u64 thresh;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004424 int ret = 0;
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004425 u64 num_devs;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004426
4427 /*
4428 * Needed because we can end up allocating a system chunk and for an
4429 * atomic and race free space reservation in the chunk block reserve.
4430 */
4431 ASSERT(mutex_is_locked(&root->fs_info->chunk_mutex));
Liu Bo15d1ff82012-03-29 09:57:44 -04004432
4433 info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4434 spin_lock(&info->lock);
4435 left = info->total_bytes - info->bytes_used - info->bytes_pinned -
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004436 info->bytes_reserved - info->bytes_readonly -
4437 info->bytes_may_use;
Liu Bo15d1ff82012-03-29 09:57:44 -04004438 spin_unlock(&info->lock);
4439
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004440 num_devs = get_profile_num_devs(root, type);
4441
4442 /* num_devs device items to update and 1 chunk item to add or remove */
Filipe Manana4617ea32015-06-09 17:48:21 +01004443 thresh = btrfs_calc_trunc_metadata_size(root, num_devs) +
4444 btrfs_calc_trans_metadata_size(root, 1);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004445
Liu Bo15d1ff82012-03-29 09:57:44 -04004446 if (left < thresh && btrfs_test_opt(root, ENOSPC_DEBUG)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00004447 btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu",
4448 left, thresh, type);
Liu Bo15d1ff82012-03-29 09:57:44 -04004449 dump_space_info(info, 0, 0);
4450 }
4451
4452 if (left < thresh) {
4453 u64 flags;
4454
4455 flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0);
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004456 /*
4457 * Ignore failure to create system chunk. We might end up not
4458 * needing it, as we might not need to COW all nodes/leafs from
4459 * the paths we visit in the chunk tree (they were already COWed
4460 * or created in the current transaction for example).
4461 */
4462 ret = btrfs_alloc_chunk(trans, root, flags);
4463 }
4464
4465 if (!ret) {
4466 ret = btrfs_block_rsv_add(root->fs_info->chunk_root,
4467 &root->fs_info->chunk_block_rsv,
4468 thresh, BTRFS_RESERVE_NO_FLUSH);
4469 if (!ret)
4470 trans->chunk_bytes_reserved += thresh;
Liu Bo15d1ff82012-03-29 09:57:44 -04004471 }
4472}
4473
Chris Mason6324fbf2008-03-24 15:01:59 -04004474static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Josef Bacik698d0082012-09-12 14:08:47 -04004475 struct btrfs_root *extent_root, u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04004476{
4477 struct btrfs_space_info *space_info;
Josef Bacik97e728d2009-04-21 17:40:57 -04004478 struct btrfs_fs_info *fs_info = extent_root->fs_info;
Josef Bacik6d741192011-04-11 20:20:11 -04004479 int wait_for_alloc = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05004480 int ret = 0;
4481
Josef Bacikc6b305a2012-12-18 09:16:16 -05004482 /* Don't re-enter if we're already allocating a chunk */
4483 if (trans->allocating_chunk)
4484 return -ENOSPC;
4485
Chris Mason6324fbf2008-03-24 15:01:59 -04004486 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04004487 if (!space_info) {
4488 ret = update_space_info(extent_root->fs_info, flags,
Josef Bacike40edf22016-03-25 13:25:47 -04004489 0, 0, 0, &space_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004490 BUG_ON(ret); /* -ENOMEM */
Chris Mason593060d2008-03-25 16:50:33 -04004491 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004492 BUG_ON(!space_info); /* Logic error */
Chris Mason6324fbf2008-03-24 15:01:59 -04004493
Josef Bacik6d741192011-04-11 20:20:11 -04004494again:
Josef Bacik25179202008-10-29 14:49:05 -04004495 spin_lock(&space_info->lock);
Miao Xie9e622d62012-01-26 15:01:12 -05004496 if (force < space_info->force_alloc)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004497 force = space_info->force_alloc;
Josef Bacik25179202008-10-29 14:49:05 -04004498 if (space_info->full) {
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01004499 if (should_alloc_chunk(extent_root, space_info, force))
4500 ret = -ENOSPC;
4501 else
4502 ret = 0;
Josef Bacik25179202008-10-29 14:49:05 -04004503 spin_unlock(&space_info->lock);
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01004504 return ret;
Josef Bacik25179202008-10-29 14:49:05 -04004505 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004506
Josef Bacik698d0082012-09-12 14:08:47 -04004507 if (!should_alloc_chunk(extent_root, space_info, force)) {
Josef Bacik25179202008-10-29 14:49:05 -04004508 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04004509 return 0;
4510 } else if (space_info->chunk_alloc) {
4511 wait_for_alloc = 1;
4512 } else {
4513 space_info->chunk_alloc = 1;
Josef Bacik25179202008-10-29 14:49:05 -04004514 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004515
Josef Bacik25179202008-10-29 14:49:05 -04004516 spin_unlock(&space_info->lock);
4517
Josef Bacik6d741192011-04-11 20:20:11 -04004518 mutex_lock(&fs_info->chunk_mutex);
4519
4520 /*
4521 * The chunk_mutex is held throughout the entirety of a chunk
4522 * allocation, so once we've acquired the chunk_mutex we know that the
4523 * other guy is done and we need to recheck and see if we should
4524 * allocate.
4525 */
4526 if (wait_for_alloc) {
4527 mutex_unlock(&fs_info->chunk_mutex);
4528 wait_for_alloc = 0;
4529 goto again;
4530 }
4531
Josef Bacikc6b305a2012-12-18 09:16:16 -05004532 trans->allocating_chunk = true;
4533
Josef Bacik97e728d2009-04-21 17:40:57 -04004534 /*
Josef Bacik67377732010-09-16 16:19:09 -04004535 * If we have mixed data/metadata chunks we want to make sure we keep
4536 * allocating mixed chunks instead of individual chunks.
4537 */
4538 if (btrfs_mixed_space_info(space_info))
4539 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
4540
4541 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04004542 * if we're doing a data chunk, go ahead and make sure that
4543 * we keep a reasonable number of metadata chunks allocated in the
4544 * FS as well.
4545 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04004546 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04004547 fs_info->data_chunk_allocations++;
4548 if (!(fs_info->data_chunk_allocations %
4549 fs_info->metadata_ratio))
4550 force_metadata_allocation(fs_info);
4551 }
4552
Liu Bo15d1ff82012-03-29 09:57:44 -04004553 /*
4554 * Check if we have enough space in SYSTEM chunk because we may need
4555 * to update devices.
4556 */
Filipe Manana4617ea32015-06-09 17:48:21 +01004557 check_system_chunk(trans, extent_root, flags);
Liu Bo15d1ff82012-03-29 09:57:44 -04004558
Yan Zheng2b820322008-11-17 21:11:30 -05004559 ret = btrfs_alloc_chunk(trans, extent_root, flags);
Josef Bacikc6b305a2012-12-18 09:16:16 -05004560 trans->allocating_chunk = false;
Mark Fasheh92b8e8972011-07-12 10:57:59 -07004561
Josef Bacik9ed74f22009-09-11 16:12:44 -04004562 spin_lock(&space_info->lock);
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004563 if (ret < 0 && ret != -ENOSPC)
4564 goto out;
Chris Masond3977122009-01-05 21:25:51 -05004565 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04004566 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04004567 else
4568 ret = 1;
Josef Bacik6d741192011-04-11 20:20:11 -04004569
Chris Mason0e4f8f82011-04-15 16:05:44 -04004570 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004571out:
Josef Bacik6d741192011-04-11 20:20:11 -04004572 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004573 spin_unlock(&space_info->lock);
Dan Carpentera25c75d2012-04-18 09:59:29 +03004574 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana00d80e32015-07-20 14:56:20 +01004575 /*
4576 * When we allocate a new chunk we reserve space in the chunk block
4577 * reserve to make sure we can COW nodes/leafs in the chunk tree or
4578 * add new nodes/leafs to it if we end up needing to do it when
4579 * inserting the chunk item and updating device items as part of the
4580 * second phase of chunk allocation, performed by
4581 * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a
4582 * large number of new block groups to create in our transaction
4583 * handle's new_bgs list to avoid exhausting the chunk block reserve
4584 * in extreme cases - like having a single transaction create many new
4585 * block groups when starting to write out the free space caches of all
4586 * the block groups that were made dirty during the lifetime of the
4587 * transaction.
4588 */
Filipe Mananad9a05402015-10-03 13:13:13 +01004589 if (trans->can_flush_pending_bgs &&
Byongho Leeee221842015-12-15 01:42:10 +09004590 trans->chunk_bytes_reserved >= (u64)SZ_2M) {
Filipe Manana00d80e32015-07-20 14:56:20 +01004591 btrfs_create_pending_block_groups(trans, trans->root);
4592 btrfs_trans_release_chunk_metadata(trans);
4593 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04004594 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04004595}
4596
Josef Bacika80c8dc2012-09-06 16:59:33 -04004597static int can_overcommit(struct btrfs_root *root,
4598 struct btrfs_space_info *space_info, u64 bytes,
Miao Xie08e007d2012-10-16 11:33:38 +00004599 enum btrfs_reserve_flush_enum flush)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004600{
Josef Bacik957780e2016-05-17 13:30:55 -04004601 struct btrfs_block_rsv *global_rsv;
4602 u64 profile;
Miao Xie3c76cd82013-04-25 10:12:38 +00004603 u64 space_size;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004604 u64 avail;
4605 u64 used;
4606
Josef Bacik957780e2016-05-17 13:30:55 -04004607 /* Don't overcommit when in mixed mode. */
4608 if (space_info->flags & BTRFS_BLOCK_GROUP_DATA)
4609 return 0;
4610
4611 BUG_ON(root->fs_info == NULL);
4612 global_rsv = &root->fs_info->global_block_rsv;
4613 profile = btrfs_get_alloc_profile(root, 0);
Josef Bacika80c8dc2012-09-06 16:59:33 -04004614 used = space_info->bytes_used + space_info->bytes_reserved +
Josef Bacik96f1bb52013-01-30 17:02:51 -05004615 space_info->bytes_pinned + space_info->bytes_readonly;
4616
Josef Bacik96f1bb52013-01-30 17:02:51 -05004617 /*
4618 * We only want to allow over committing if we have lots of actual space
4619 * free, but if we don't have enough space to handle the global reserve
4620 * space then we could end up having a real enospc problem when trying
4621 * to allocate a chunk or some other such important allocation.
4622 */
Miao Xie3c76cd82013-04-25 10:12:38 +00004623 spin_lock(&global_rsv->lock);
4624 space_size = calc_global_rsv_need_space(global_rsv);
4625 spin_unlock(&global_rsv->lock);
4626 if (used + space_size >= space_info->total_bytes)
Josef Bacik96f1bb52013-01-30 17:02:51 -05004627 return 0;
4628
4629 used += space_info->bytes_may_use;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004630
4631 spin_lock(&root->fs_info->free_chunk_lock);
4632 avail = root->fs_info->free_chunk_space;
4633 spin_unlock(&root->fs_info->free_chunk_lock);
4634
4635 /*
4636 * If we have dup, raid1 or raid10 then only half of the free
David Woodhouse53b381b2013-01-29 18:40:14 -05004637 * space is actually useable. For raid56, the space info used
4638 * doesn't include the parity drive, so we don't have to
4639 * change the math
Josef Bacika80c8dc2012-09-06 16:59:33 -04004640 */
4641 if (profile & (BTRFS_BLOCK_GROUP_DUP |
4642 BTRFS_BLOCK_GROUP_RAID1 |
4643 BTRFS_BLOCK_GROUP_RAID10))
4644 avail >>= 1;
4645
4646 /*
Miao Xie561c2942012-10-16 11:32:18 +00004647 * If we aren't flushing all things, let us overcommit up to
4648 * 1/2th of the space. If we can flush, don't let us overcommit
4649 * too much, let it overcommit up to 1/8 of the space.
Josef Bacika80c8dc2012-09-06 16:59:33 -04004650 */
Miao Xie08e007d2012-10-16 11:33:38 +00004651 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacik14575ae2013-09-17 10:48:00 -04004652 avail >>= 3;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004653 else
Josef Bacik14575ae2013-09-17 10:48:00 -04004654 avail >>= 1;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004655
Josef Bacik14575ae2013-09-17 10:48:00 -04004656 if (used + bytes < space_info->total_bytes + avail)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004657 return 1;
4658 return 0;
4659}
4660
Eric Sandeen48a3b632013-04-25 20:41:01 +00004661static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root,
Miao Xie6c255e62014-03-06 13:55:01 +08004662 unsigned long nr_pages, int nr_items)
Miao Xieda633a42012-12-20 11:19:09 +00004663{
4664 struct super_block *sb = root->fs_info->sb;
Miao Xieda633a42012-12-20 11:19:09 +00004665
Josef Bacik925a6ef2013-06-20 12:31:27 -04004666 if (down_read_trylock(&sb->s_umount)) {
4667 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
4668 up_read(&sb->s_umount);
4669 } else {
Miao Xieda633a42012-12-20 11:19:09 +00004670 /*
4671 * We needn't worry the filesystem going from r/w to r/o though
4672 * we don't acquire ->s_umount mutex, because the filesystem
4673 * should guarantee the delalloc inodes list be empty after
4674 * the filesystem is readonly(all dirty pages are written to
4675 * the disk).
4676 */
Miao Xie6c255e62014-03-06 13:55:01 +08004677 btrfs_start_delalloc_roots(root->fs_info, 0, nr_items);
Josef Bacik98ad69c2013-04-04 11:55:49 -04004678 if (!current->journal_info)
Filipe Manana578def72016-04-26 15:36:38 +01004679 btrfs_wait_ordered_roots(root->fs_info, nr_items,
4680 0, (u64)-1);
Miao Xieda633a42012-12-20 11:19:09 +00004681 }
4682}
4683
Miao Xie18cd8ea2013-11-04 23:13:22 +08004684static inline int calc_reclaim_items_nr(struct btrfs_root *root, u64 to_reclaim)
4685{
4686 u64 bytes;
4687 int nr;
4688
4689 bytes = btrfs_calc_trans_metadata_size(root, 1);
4690 nr = (int)div64_u64(to_reclaim, bytes);
4691 if (!nr)
4692 nr = 1;
4693 return nr;
4694}
4695
Byongho Leeee221842015-12-15 01:42:10 +09004696#define EXTENT_SIZE_PER_ITEM SZ_256K
Miao Xiec61a16a2013-11-04 23:13:23 +08004697
Yan, Zheng5da9d012010-05-16 10:46:25 -04004698/*
4699 * shrink metadata reservation for delalloc
4700 */
Josef Bacikf4c738c2012-07-02 17:10:51 -04004701static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig,
4702 bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04004703{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004704 struct btrfs_block_rsv *block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004705 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04004706 struct btrfs_trans_handle *trans;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004707 u64 delalloc_bytes;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004708 u64 max_reclaim;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004709 long time_left;
Miao Xied3ee29e32013-11-04 23:13:20 +08004710 unsigned long nr_pages;
4711 int loops;
Miao Xieb0244192013-11-04 23:13:25 +08004712 int items;
Miao Xie08e007d2012-10-16 11:33:38 +00004713 enum btrfs_reserve_flush_enum flush;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004714
Miao Xiec61a16a2013-11-04 23:13:23 +08004715 /* Calc the number of the pages we need flush for space reservation */
Miao Xieb0244192013-11-04 23:13:25 +08004716 items = calc_reclaim_items_nr(root, to_reclaim);
Adam Borowski8eb0dfd2016-05-08 15:08:00 +02004717 to_reclaim = (u64)items * EXTENT_SIZE_PER_ITEM;
Miao Xiec61a16a2013-11-04 23:13:23 +08004718
Josef Bacik663350a2011-11-03 22:54:25 -04004719 trans = (struct btrfs_trans_handle *)current->journal_info;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004720 block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004721 space_info = block_rsv->space_info;
Chris Masonbf9022e2010-10-26 13:40:45 -04004722
Miao Xie963d6782013-01-29 10:10:51 +00004723 delalloc_bytes = percpu_counter_sum_positive(
4724 &root->fs_info->delalloc_bytes);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004725 if (delalloc_bytes == 0) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004726 if (trans)
Josef Bacikf4c738c2012-07-02 17:10:51 -04004727 return;
Miao Xie38c135a2013-11-04 23:13:21 +08004728 if (wait_ordered)
Filipe Manana578def72016-04-26 15:36:38 +01004729 btrfs_wait_ordered_roots(root->fs_info, items,
4730 0, (u64)-1);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004731 return;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004732 }
4733
Miao Xied3ee29e32013-11-04 23:13:20 +08004734 loops = 0;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004735 while (delalloc_bytes && loops < 3) {
4736 max_reclaim = min(delalloc_bytes, to_reclaim);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004737 nr_pages = max_reclaim >> PAGE_SHIFT;
Miao Xie6c255e62014-03-06 13:55:01 +08004738 btrfs_writeback_inodes_sb_nr(root, nr_pages, items);
Josef Bacikdea31f52012-09-06 16:47:00 -04004739 /*
4740 * We need to wait for the async pages to actually start before
4741 * we do anything.
4742 */
Miao Xie9f3a0742013-11-04 23:13:24 +08004743 max_reclaim = atomic_read(&root->fs_info->async_delalloc_pages);
4744 if (!max_reclaim)
4745 goto skip_async;
Josef Bacikdea31f52012-09-06 16:47:00 -04004746
Miao Xie9f3a0742013-11-04 23:13:24 +08004747 if (max_reclaim <= nr_pages)
4748 max_reclaim = 0;
4749 else
4750 max_reclaim -= nr_pages;
4751
4752 wait_event(root->fs_info->async_submit_wait,
4753 atomic_read(&root->fs_info->async_delalloc_pages) <=
4754 (int)max_reclaim);
4755skip_async:
Miao Xie08e007d2012-10-16 11:33:38 +00004756 if (!trans)
4757 flush = BTRFS_RESERVE_FLUSH_ALL;
4758 else
4759 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacik0019f102010-10-15 15:18:40 -04004760 spin_lock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00004761 if (can_overcommit(root, space_info, orig, flush)) {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004762 spin_unlock(&space_info->lock);
4763 break;
4764 }
Josef Bacik957780e2016-05-17 13:30:55 -04004765 if (list_empty(&space_info->tickets) &&
4766 list_empty(&space_info->priority_tickets)) {
4767 spin_unlock(&space_info->lock);
4768 break;
4769 }
Josef Bacik0019f102010-10-15 15:18:40 -04004770 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004771
Chris Mason36e39c42011-03-12 07:08:42 -05004772 loops++;
Josef Bacikf104d042011-10-14 13:56:58 -04004773 if (wait_ordered && !trans) {
Filipe Manana578def72016-04-26 15:36:38 +01004774 btrfs_wait_ordered_roots(root->fs_info, items,
4775 0, (u64)-1);
Josef Bacikf104d042011-10-14 13:56:58 -04004776 } else {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004777 time_left = schedule_timeout_killable(1);
Josef Bacikf104d042011-10-14 13:56:58 -04004778 if (time_left)
4779 break;
4780 }
Miao Xie963d6782013-01-29 10:10:51 +00004781 delalloc_bytes = percpu_counter_sum_positive(
4782 &root->fs_info->delalloc_bytes);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004783 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04004784}
4785
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004786/**
Josef Bacik663350a2011-11-03 22:54:25 -04004787 * maybe_commit_transaction - possibly commit the transaction if its ok to
4788 * @root - the root we're allocating for
4789 * @bytes - the number of bytes we want to reserve
4790 * @force - force the commit
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004791 *
Josef Bacik663350a2011-11-03 22:54:25 -04004792 * This will check to make sure that committing the transaction will actually
4793 * get us somewhere and then commit the transaction if it does. Otherwise it
4794 * will return -ENOSPC.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004795 */
Josef Bacik663350a2011-11-03 22:54:25 -04004796static int may_commit_transaction(struct btrfs_root *root,
4797 struct btrfs_space_info *space_info,
4798 u64 bytes, int force)
4799{
4800 struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv;
4801 struct btrfs_trans_handle *trans;
4802
4803 trans = (struct btrfs_trans_handle *)current->journal_info;
4804 if (trans)
4805 return -EAGAIN;
4806
4807 if (force)
4808 goto commit;
4809
4810 /* See if there is enough pinned space to make this reservation */
Josef Bacikb150a4f2013-06-19 15:00:04 -04004811 if (percpu_counter_compare(&space_info->total_bytes_pinned,
Miao Xie0424c542014-03-06 13:54:59 +08004812 bytes) >= 0)
Josef Bacik663350a2011-11-03 22:54:25 -04004813 goto commit;
Josef Bacik663350a2011-11-03 22:54:25 -04004814
4815 /*
4816 * See if there is some space in the delayed insertion reservation for
4817 * this reservation.
4818 */
4819 if (space_info != delayed_rsv->space_info)
4820 return -ENOSPC;
4821
4822 spin_lock(&delayed_rsv->lock);
Josef Bacikb150a4f2013-06-19 15:00:04 -04004823 if (percpu_counter_compare(&space_info->total_bytes_pinned,
4824 bytes - delayed_rsv->size) >= 0) {
Josef Bacik663350a2011-11-03 22:54:25 -04004825 spin_unlock(&delayed_rsv->lock);
4826 return -ENOSPC;
4827 }
4828 spin_unlock(&delayed_rsv->lock);
4829
4830commit:
4831 trans = btrfs_join_transaction(root);
4832 if (IS_ERR(trans))
4833 return -ENOSPC;
4834
4835 return btrfs_commit_transaction(trans, root);
4836}
4837
Josef Bacik957780e2016-05-17 13:30:55 -04004838struct reserve_ticket {
4839 u64 bytes;
4840 int error;
4841 struct list_head list;
4842 wait_queue_head_t wait;
4843};
4844
Josef Bacik96c3f432012-06-21 14:05:49 -04004845static int flush_space(struct btrfs_root *root,
4846 struct btrfs_space_info *space_info, u64 num_bytes,
4847 u64 orig_bytes, int state)
4848{
4849 struct btrfs_trans_handle *trans;
4850 int nr;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004851 int ret = 0;
Josef Bacik96c3f432012-06-21 14:05:49 -04004852
4853 switch (state) {
Josef Bacik96c3f432012-06-21 14:05:49 -04004854 case FLUSH_DELAYED_ITEMS_NR:
4855 case FLUSH_DELAYED_ITEMS:
Miao Xie18cd8ea2013-11-04 23:13:22 +08004856 if (state == FLUSH_DELAYED_ITEMS_NR)
4857 nr = calc_reclaim_items_nr(root, num_bytes) * 2;
4858 else
Josef Bacik96c3f432012-06-21 14:05:49 -04004859 nr = -1;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004860
Josef Bacik96c3f432012-06-21 14:05:49 -04004861 trans = btrfs_join_transaction(root);
4862 if (IS_ERR(trans)) {
4863 ret = PTR_ERR(trans);
4864 break;
4865 }
4866 ret = btrfs_run_delayed_items_nr(trans, root, nr);
4867 btrfs_end_transaction(trans, root);
4868 break;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004869 case FLUSH_DELALLOC:
4870 case FLUSH_DELALLOC_WAIT:
Miao Xie24af7dd2014-03-06 13:55:00 +08004871 shrink_delalloc(root, num_bytes * 2, orig_bytes,
Josef Bacik67b0fd62012-09-24 13:42:00 -04004872 state == FLUSH_DELALLOC_WAIT);
4873 break;
Josef Bacikea658ba2012-09-11 16:57:25 -04004874 case ALLOC_CHUNK:
4875 trans = btrfs_join_transaction(root);
4876 if (IS_ERR(trans)) {
4877 ret = PTR_ERR(trans);
4878 break;
4879 }
4880 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Josef Bacikea658ba2012-09-11 16:57:25 -04004881 btrfs_get_alloc_profile(root, 0),
4882 CHUNK_ALLOC_NO_FORCE);
4883 btrfs_end_transaction(trans, root);
4884 if (ret == -ENOSPC)
4885 ret = 0;
4886 break;
Josef Bacik96c3f432012-06-21 14:05:49 -04004887 case COMMIT_TRANS:
4888 ret = may_commit_transaction(root, space_info, orig_bytes, 0);
4889 break;
4890 default:
4891 ret = -ENOSPC;
4892 break;
4893 }
4894
Josef Bacikf376df22016-03-25 13:25:56 -04004895 trace_btrfs_flush_space(root->fs_info, space_info->flags, num_bytes,
4896 orig_bytes, state, ret);
Josef Bacik96c3f432012-06-21 14:05:49 -04004897 return ret;
4898}
Miao Xie21c7e752014-05-13 17:29:04 -07004899
4900static inline u64
4901btrfs_calc_reclaim_metadata_size(struct btrfs_root *root,
4902 struct btrfs_space_info *space_info)
4903{
Josef Bacik957780e2016-05-17 13:30:55 -04004904 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07004905 u64 used;
4906 u64 expected;
Josef Bacik957780e2016-05-17 13:30:55 -04004907 u64 to_reclaim = 0;
Miao Xie21c7e752014-05-13 17:29:04 -07004908
Byongho Leeee221842015-12-15 01:42:10 +09004909 to_reclaim = min_t(u64, num_online_cpus() * SZ_1M, SZ_16M);
Miao Xie21c7e752014-05-13 17:29:04 -07004910 if (can_overcommit(root, space_info, to_reclaim,
Josef Bacik957780e2016-05-17 13:30:55 -04004911 BTRFS_RESERVE_FLUSH_ALL))
4912 return 0;
4913
4914 list_for_each_entry(ticket, &space_info->tickets, list)
4915 to_reclaim += ticket->bytes;
4916 list_for_each_entry(ticket, &space_info->priority_tickets, list)
4917 to_reclaim += ticket->bytes;
4918 if (to_reclaim)
4919 return to_reclaim;
Miao Xie21c7e752014-05-13 17:29:04 -07004920
4921 used = space_info->bytes_used + space_info->bytes_reserved +
4922 space_info->bytes_pinned + space_info->bytes_readonly +
4923 space_info->bytes_may_use;
Byongho Leeee221842015-12-15 01:42:10 +09004924 if (can_overcommit(root, space_info, SZ_1M, BTRFS_RESERVE_FLUSH_ALL))
Miao Xie21c7e752014-05-13 17:29:04 -07004925 expected = div_factor_fine(space_info->total_bytes, 95);
4926 else
4927 expected = div_factor_fine(space_info->total_bytes, 90);
4928
4929 if (used > expected)
4930 to_reclaim = used - expected;
4931 else
4932 to_reclaim = 0;
4933 to_reclaim = min(to_reclaim, space_info->bytes_may_use +
4934 space_info->bytes_reserved);
Miao Xie21c7e752014-05-13 17:29:04 -07004935 return to_reclaim;
4936}
4937
4938static inline int need_do_async_reclaim(struct btrfs_space_info *space_info,
4939 struct btrfs_fs_info *fs_info, u64 used)
4940{
Josef Bacik365c5312015-02-18 13:58:15 -08004941 u64 thresh = div_factor_fine(space_info->total_bytes, 98);
4942
4943 /* If we're just plain full then async reclaim just slows us down. */
Josef Bacikbaee8792016-01-26 09:35:38 -05004944 if ((space_info->bytes_used + space_info->bytes_reserved) >= thresh)
Josef Bacik365c5312015-02-18 13:58:15 -08004945 return 0;
4946
Josef Bacikd38b3492016-03-25 13:25:59 -04004947 if (!btrfs_calc_reclaim_metadata_size(fs_info->fs_root, space_info))
4948 return 0;
4949
Josef Bacik365c5312015-02-18 13:58:15 -08004950 return (used >= thresh && !btrfs_fs_closing(fs_info) &&
Miao Xie21c7e752014-05-13 17:29:04 -07004951 !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state));
4952}
4953
Josef Bacik957780e2016-05-17 13:30:55 -04004954static void wake_all_tickets(struct list_head *head)
Miao Xie21c7e752014-05-13 17:29:04 -07004955{
Josef Bacik957780e2016-05-17 13:30:55 -04004956 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07004957
Josef Bacik957780e2016-05-17 13:30:55 -04004958 while (!list_empty(head)) {
4959 ticket = list_first_entry(head, struct reserve_ticket, list);
4960 list_del_init(&ticket->list);
4961 ticket->error = -ENOSPC;
4962 wake_up(&ticket->wait);
Liu Bo25ce4592014-09-10 12:58:50 +08004963 }
Miao Xie21c7e752014-05-13 17:29:04 -07004964}
4965
Josef Bacik957780e2016-05-17 13:30:55 -04004966/*
4967 * This is for normal flushers, we can wait all goddamned day if we want to. We
4968 * will loop and continuously try to flush as long as we are making progress.
4969 * We count progress as clearing off tickets each time we have to loop.
4970 */
Miao Xie21c7e752014-05-13 17:29:04 -07004971static void btrfs_async_reclaim_metadata_space(struct work_struct *work)
4972{
Josef Bacik957780e2016-05-17 13:30:55 -04004973 struct reserve_ticket *last_ticket = NULL;
Miao Xie21c7e752014-05-13 17:29:04 -07004974 struct btrfs_fs_info *fs_info;
4975 struct btrfs_space_info *space_info;
4976 u64 to_reclaim;
4977 int flush_state;
Josef Bacik957780e2016-05-17 13:30:55 -04004978 int commit_cycles = 0;
Miao Xie21c7e752014-05-13 17:29:04 -07004979
4980 fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work);
4981 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4982
Josef Bacik957780e2016-05-17 13:30:55 -04004983 spin_lock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07004984 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root,
4985 space_info);
Josef Bacik957780e2016-05-17 13:30:55 -04004986 if (!to_reclaim) {
4987 space_info->flush = 0;
4988 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07004989 return;
Josef Bacik957780e2016-05-17 13:30:55 -04004990 }
4991 last_ticket = list_first_entry(&space_info->tickets,
4992 struct reserve_ticket, list);
4993 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07004994
4995 flush_state = FLUSH_DELAYED_ITEMS_NR;
4996 do {
Josef Bacik957780e2016-05-17 13:30:55 -04004997 struct reserve_ticket *ticket;
4998 int ret;
4999
5000 ret = flush_space(fs_info->fs_root, space_info, to_reclaim,
Miao Xie21c7e752014-05-13 17:29:04 -07005001 to_reclaim, flush_state);
Josef Bacik957780e2016-05-17 13:30:55 -04005002 spin_lock(&space_info->lock);
5003 if (list_empty(&space_info->tickets)) {
5004 space_info->flush = 0;
5005 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07005006 return;
Josef Bacik957780e2016-05-17 13:30:55 -04005007 }
5008 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root,
5009 space_info);
5010 ticket = list_first_entry(&space_info->tickets,
5011 struct reserve_ticket, list);
5012 if (last_ticket == ticket) {
5013 flush_state++;
5014 } else {
5015 last_ticket = ticket;
5016 flush_state = FLUSH_DELAYED_ITEMS_NR;
5017 if (commit_cycles)
5018 commit_cycles--;
5019 }
5020
5021 if (flush_state > COMMIT_TRANS) {
5022 commit_cycles++;
5023 if (commit_cycles > 2) {
5024 wake_all_tickets(&space_info->tickets);
5025 space_info->flush = 0;
5026 } else {
5027 flush_state = FLUSH_DELAYED_ITEMS_NR;
5028 }
5029 }
5030 spin_unlock(&space_info->lock);
5031 } while (flush_state <= COMMIT_TRANS);
Miao Xie21c7e752014-05-13 17:29:04 -07005032}
5033
5034void btrfs_init_async_reclaim_work(struct work_struct *work)
5035{
5036 INIT_WORK(work, btrfs_async_reclaim_metadata_space);
5037}
5038
Josef Bacik957780e2016-05-17 13:30:55 -04005039static void priority_reclaim_metadata_space(struct btrfs_fs_info *fs_info,
5040 struct btrfs_space_info *space_info,
5041 struct reserve_ticket *ticket)
5042{
5043 u64 to_reclaim;
5044 int flush_state = FLUSH_DELAYED_ITEMS_NR;
5045
5046 spin_lock(&space_info->lock);
5047 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root,
5048 space_info);
5049 if (!to_reclaim) {
5050 spin_unlock(&space_info->lock);
5051 return;
5052 }
5053 spin_unlock(&space_info->lock);
5054
5055 do {
5056 flush_space(fs_info->fs_root, space_info, to_reclaim,
5057 to_reclaim, flush_state);
5058 flush_state++;
5059 spin_lock(&space_info->lock);
5060 if (ticket->bytes == 0) {
5061 spin_unlock(&space_info->lock);
5062 return;
5063 }
5064 spin_unlock(&space_info->lock);
5065
5066 /*
5067 * Priority flushers can't wait on delalloc without
5068 * deadlocking.
5069 */
5070 if (flush_state == FLUSH_DELALLOC ||
5071 flush_state == FLUSH_DELALLOC_WAIT)
5072 flush_state = ALLOC_CHUNK;
5073 } while (flush_state < COMMIT_TRANS);
5074}
5075
5076static int wait_reserve_ticket(struct btrfs_fs_info *fs_info,
5077 struct btrfs_space_info *space_info,
5078 struct reserve_ticket *ticket, u64 orig_bytes)
5079
5080{
5081 DEFINE_WAIT(wait);
5082 int ret = 0;
5083
5084 spin_lock(&space_info->lock);
5085 while (ticket->bytes > 0 && ticket->error == 0) {
5086 ret = prepare_to_wait_event(&ticket->wait, &wait, TASK_KILLABLE);
5087 if (ret) {
5088 ret = -EINTR;
5089 break;
5090 }
5091 spin_unlock(&space_info->lock);
5092
5093 schedule();
5094
5095 finish_wait(&ticket->wait, &wait);
5096 spin_lock(&space_info->lock);
5097 }
5098 if (!ret)
5099 ret = ticket->error;
5100 if (!list_empty(&ticket->list))
5101 list_del_init(&ticket->list);
5102 if (ticket->bytes && ticket->bytes < orig_bytes) {
5103 u64 num_bytes = orig_bytes - ticket->bytes;
5104 space_info->bytes_may_use -= num_bytes;
5105 trace_btrfs_space_reservation(fs_info, "space_info",
5106 space_info->flags, num_bytes, 0);
5107 }
5108 spin_unlock(&space_info->lock);
5109
5110 return ret;
5111}
5112
Josef Bacik663350a2011-11-03 22:54:25 -04005113/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005114 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5115 * @root - the root we're allocating for
Josef Bacik957780e2016-05-17 13:30:55 -04005116 * @space_info - the space info we want to allocate from
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005117 * @orig_bytes - the number of bytes we want
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04005118 * @flush - whether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005119 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04005120 * This will reserve orig_bytes number of bytes from the space info associated
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005121 * with the block_rsv. If there is not enough space it will make an attempt to
5122 * flush out space to make room. It will do this by flushing delalloc if
5123 * possible or committing the transaction. If flush is 0 then no attempts to
5124 * regain reservations will be made and this will fail if there is not enough
5125 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005126 */
Josef Bacik957780e2016-05-17 13:30:55 -04005127static int __reserve_metadata_bytes(struct btrfs_root *root,
5128 struct btrfs_space_info *space_info,
5129 u64 orig_bytes,
5130 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005131{
Josef Bacik957780e2016-05-17 13:30:55 -04005132 struct reserve_ticket ticket;
Josef Bacik2bf64752011-09-26 17:12:22 -04005133 u64 used;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005134 int ret = 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005135
Josef Bacik957780e2016-05-17 13:30:55 -04005136 ASSERT(orig_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005137 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04005138 ret = -ENOSPC;
Josef Bacik2bf64752011-09-26 17:12:22 -04005139 used = space_info->bytes_used + space_info->bytes_reserved +
5140 space_info->bytes_pinned + space_info->bytes_readonly +
5141 space_info->bytes_may_use;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005142
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005143 /*
Josef Bacik957780e2016-05-17 13:30:55 -04005144 * If we have enough space then hooray, make our reservation and carry
5145 * on. If not see if we can overcommit, and if we can, hooray carry on.
5146 * If not things get more complicated.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005147 */
Josef Bacik957780e2016-05-17 13:30:55 -04005148 if (used + orig_bytes <= space_info->total_bytes) {
5149 space_info->bytes_may_use += orig_bytes;
5150 trace_btrfs_space_reservation(root->fs_info, "space_info",
5151 space_info->flags, orig_bytes,
5152 1);
5153 ret = 0;
5154 } else if (can_overcommit(root, space_info, orig_bytes, flush)) {
Josef Bacik44734ed2012-09-28 16:04:19 -04005155 space_info->bytes_may_use += orig_bytes;
5156 trace_btrfs_space_reservation(root->fs_info, "space_info",
5157 space_info->flags, orig_bytes,
5158 1);
5159 ret = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04005160 }
5161
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005162 /*
Josef Bacik957780e2016-05-17 13:30:55 -04005163 * If we couldn't make a reservation then setup our reservation ticket
5164 * and kick the async worker if it's not already running.
Miao Xie08e007d2012-10-16 11:33:38 +00005165 *
Josef Bacik957780e2016-05-17 13:30:55 -04005166 * If we are a priority flusher then we just need to add our ticket to
5167 * the list and we will do our own flushing further down.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005168 */
Josef Bacik72bcd992012-12-18 15:16:34 -05005169 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
Josef Bacik957780e2016-05-17 13:30:55 -04005170 ticket.bytes = orig_bytes;
5171 ticket.error = 0;
5172 init_waitqueue_head(&ticket.wait);
5173 if (flush == BTRFS_RESERVE_FLUSH_ALL) {
5174 list_add_tail(&ticket.list, &space_info->tickets);
5175 if (!space_info->flush) {
5176 space_info->flush = 1;
Josef Bacikf376df22016-03-25 13:25:56 -04005177 trace_btrfs_trigger_flush(root->fs_info,
5178 space_info->flags,
5179 orig_bytes, flush,
5180 "enospc");
Josef Bacik957780e2016-05-17 13:30:55 -04005181 queue_work(system_unbound_wq,
5182 &root->fs_info->async_reclaim_work);
5183 }
5184 } else {
5185 list_add_tail(&ticket.list,
5186 &space_info->priority_tickets);
5187 }
Miao Xie21c7e752014-05-13 17:29:04 -07005188 } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
5189 used += orig_bytes;
Josef Bacikf6acfd52014-09-18 11:27:17 -04005190 /*
5191 * We will do the space reservation dance during log replay,
5192 * which means we won't have fs_info->fs_root set, so don't do
5193 * the async reclaim as we will panic.
5194 */
5195 if (!root->fs_info->log_root_recovering &&
5196 need_do_async_reclaim(space_info, root->fs_info, used) &&
Josef Bacikf376df22016-03-25 13:25:56 -04005197 !work_busy(&root->fs_info->async_reclaim_work)) {
5198 trace_btrfs_trigger_flush(root->fs_info,
5199 space_info->flags,
5200 orig_bytes, flush,
5201 "preempt");
Miao Xie21c7e752014-05-13 17:29:04 -07005202 queue_work(system_unbound_wq,
5203 &root->fs_info->async_reclaim_work);
Josef Bacikf376df22016-03-25 13:25:56 -04005204 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005205 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005206 spin_unlock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00005207 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
Josef Bacik957780e2016-05-17 13:30:55 -04005208 return ret;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005209
Josef Bacik957780e2016-05-17 13:30:55 -04005210 if (flush == BTRFS_RESERVE_FLUSH_ALL)
5211 return wait_reserve_ticket(root->fs_info, space_info, &ticket,
5212 orig_bytes);
Miao Xie08e007d2012-10-16 11:33:38 +00005213
Josef Bacik957780e2016-05-17 13:30:55 -04005214 ret = 0;
5215 priority_reclaim_metadata_space(root->fs_info, space_info, &ticket);
5216 spin_lock(&space_info->lock);
5217 if (ticket.bytes) {
5218 if (ticket.bytes < orig_bytes) {
5219 u64 num_bytes = orig_bytes - ticket.bytes;
5220 space_info->bytes_may_use -= num_bytes;
5221 trace_btrfs_space_reservation(root->fs_info,
5222 "space_info", space_info->flags,
5223 num_bytes, 0);
Miao Xie08e007d2012-10-16 11:33:38 +00005224
Josef Bacik957780e2016-05-17 13:30:55 -04005225 }
5226 list_del_init(&ticket.list);
5227 ret = -ENOSPC;
5228 }
5229 spin_unlock(&space_info->lock);
5230 ASSERT(list_empty(&ticket.list));
5231 return ret;
5232}
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005233
Josef Bacik957780e2016-05-17 13:30:55 -04005234/**
5235 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5236 * @root - the root we're allocating for
5237 * @block_rsv - the block_rsv we're allocating for
5238 * @orig_bytes - the number of bytes we want
5239 * @flush - whether or not we can flush to make our reservation
5240 *
5241 * This will reserve orgi_bytes number of bytes from the space info associated
5242 * with the block_rsv. If there is not enough space it will make an attempt to
5243 * flush out space to make room. It will do this by flushing delalloc if
5244 * possible or committing the transaction. If flush is 0 then no attempts to
5245 * regain reservations will be made and this will fail if there is not enough
5246 * space already.
5247 */
5248static int reserve_metadata_bytes(struct btrfs_root *root,
5249 struct btrfs_block_rsv *block_rsv,
5250 u64 orig_bytes,
5251 enum btrfs_reserve_flush_enum flush)
5252{
5253 int ret;
5254
5255 ret = __reserve_metadata_bytes(root, block_rsv->space_info, orig_bytes,
5256 flush);
Josef Bacik5d803662013-02-07 16:06:02 -05005257 if (ret == -ENOSPC &&
5258 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
5259 struct btrfs_block_rsv *global_rsv =
5260 &root->fs_info->global_block_rsv;
5261
5262 if (block_rsv != global_rsv &&
5263 !block_rsv_use_bytes(global_rsv, orig_bytes))
5264 ret = 0;
5265 }
Jeff Mahoneycab45e22013-10-16 16:27:01 -04005266 if (ret == -ENOSPC)
5267 trace_btrfs_space_reservation(root->fs_info,
5268 "space_info:enospc",
Josef Bacik957780e2016-05-17 13:30:55 -04005269 block_rsv->space_info->flags,
5270 orig_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005271 return ret;
5272}
5273
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005274static struct btrfs_block_rsv *get_block_rsv(
5275 const struct btrfs_trans_handle *trans,
5276 const struct btrfs_root *root)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005277{
Josef Bacik4c13d752011-08-30 11:31:29 -04005278 struct btrfs_block_rsv *block_rsv = NULL;
5279
Alexandru Moisee9cf4392015-09-09 00:18:50 +00005280 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
5281 (root == root->fs_info->csum_root && trans->adding_csums) ||
5282 (root == root->fs_info->uuid_root))
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02005283 block_rsv = trans->block_rsv;
5284
Josef Bacik4c13d752011-08-30 11:31:29 -04005285 if (!block_rsv)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005286 block_rsv = root->block_rsv;
5287
5288 if (!block_rsv)
5289 block_rsv = &root->fs_info->empty_block_rsv;
5290
5291 return block_rsv;
5292}
5293
5294static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
5295 u64 num_bytes)
5296{
5297 int ret = -ENOSPC;
5298 spin_lock(&block_rsv->lock);
5299 if (block_rsv->reserved >= num_bytes) {
5300 block_rsv->reserved -= num_bytes;
5301 if (block_rsv->reserved < block_rsv->size)
5302 block_rsv->full = 0;
5303 ret = 0;
5304 }
5305 spin_unlock(&block_rsv->lock);
5306 return ret;
5307}
5308
5309static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
5310 u64 num_bytes, int update_size)
5311{
5312 spin_lock(&block_rsv->lock);
5313 block_rsv->reserved += num_bytes;
5314 if (update_size)
5315 block_rsv->size += num_bytes;
5316 else if (block_rsv->reserved >= block_rsv->size)
5317 block_rsv->full = 1;
5318 spin_unlock(&block_rsv->lock);
5319}
5320
Josef Bacikd52be812013-05-29 14:54:47 -04005321int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
5322 struct btrfs_block_rsv *dest, u64 num_bytes,
5323 int min_factor)
5324{
5325 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5326 u64 min_bytes;
5327
5328 if (global_rsv->space_info != dest->space_info)
5329 return -ENOSPC;
5330
5331 spin_lock(&global_rsv->lock);
5332 min_bytes = div_factor(global_rsv->size, min_factor);
5333 if (global_rsv->reserved < min_bytes + num_bytes) {
5334 spin_unlock(&global_rsv->lock);
5335 return -ENOSPC;
5336 }
5337 global_rsv->reserved -= num_bytes;
5338 if (global_rsv->reserved < global_rsv->size)
5339 global_rsv->full = 0;
5340 spin_unlock(&global_rsv->lock);
5341
5342 block_rsv_add_bytes(dest, num_bytes, 1);
5343 return 0;
5344}
5345
Josef Bacik957780e2016-05-17 13:30:55 -04005346/*
5347 * This is for space we already have accounted in space_info->bytes_may_use, so
5348 * basically when we're returning space from block_rsv's.
5349 */
5350static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info,
5351 struct btrfs_space_info *space_info,
5352 u64 num_bytes)
5353{
5354 struct reserve_ticket *ticket;
5355 struct list_head *head;
5356 u64 used;
5357 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_NO_FLUSH;
5358 bool check_overcommit = false;
5359
5360 spin_lock(&space_info->lock);
5361 head = &space_info->priority_tickets;
5362
5363 /*
5364 * If we are over our limit then we need to check and see if we can
5365 * overcommit, and if we can't then we just need to free up our space
5366 * and not satisfy any requests.
5367 */
5368 used = space_info->bytes_used + space_info->bytes_reserved +
5369 space_info->bytes_pinned + space_info->bytes_readonly +
5370 space_info->bytes_may_use;
5371 if (used - num_bytes >= space_info->total_bytes)
5372 check_overcommit = true;
5373again:
5374 while (!list_empty(head) && num_bytes) {
5375 ticket = list_first_entry(head, struct reserve_ticket,
5376 list);
5377 /*
5378 * We use 0 bytes because this space is already reserved, so
5379 * adding the ticket space would be a double count.
5380 */
5381 if (check_overcommit &&
5382 !can_overcommit(fs_info->extent_root, space_info, 0,
5383 flush))
5384 break;
5385 if (num_bytes >= ticket->bytes) {
5386 list_del_init(&ticket->list);
5387 num_bytes -= ticket->bytes;
5388 ticket->bytes = 0;
5389 wake_up(&ticket->wait);
5390 } else {
5391 ticket->bytes -= num_bytes;
5392 num_bytes = 0;
5393 }
5394 }
5395
5396 if (num_bytes && head == &space_info->priority_tickets) {
5397 head = &space_info->tickets;
5398 flush = BTRFS_RESERVE_FLUSH_ALL;
5399 goto again;
5400 }
5401 space_info->bytes_may_use -= num_bytes;
5402 trace_btrfs_space_reservation(fs_info, "space_info",
5403 space_info->flags, num_bytes, 0);
5404 spin_unlock(&space_info->lock);
5405}
5406
5407/*
5408 * This is for newly allocated space that isn't accounted in
5409 * space_info->bytes_may_use yet. So if we allocate a chunk or unpin an extent
5410 * we use this helper.
5411 */
5412static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
5413 struct btrfs_space_info *space_info,
5414 u64 num_bytes)
5415{
5416 struct reserve_ticket *ticket;
5417 struct list_head *head = &space_info->priority_tickets;
5418
5419again:
5420 while (!list_empty(head) && num_bytes) {
5421 ticket = list_first_entry(head, struct reserve_ticket,
5422 list);
5423 if (num_bytes >= ticket->bytes) {
5424 trace_btrfs_space_reservation(fs_info, "space_info",
5425 space_info->flags,
5426 ticket->bytes, 1);
5427 list_del_init(&ticket->list);
5428 num_bytes -= ticket->bytes;
5429 space_info->bytes_may_use += ticket->bytes;
5430 ticket->bytes = 0;
5431 wake_up(&ticket->wait);
5432 } else {
5433 trace_btrfs_space_reservation(fs_info, "space_info",
5434 space_info->flags,
5435 num_bytes, 1);
5436 space_info->bytes_may_use += num_bytes;
5437 ticket->bytes -= num_bytes;
5438 num_bytes = 0;
5439 }
5440 }
5441
5442 if (num_bytes && head == &space_info->priority_tickets) {
5443 head = &space_info->tickets;
5444 goto again;
5445 }
5446}
5447
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005448static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
5449 struct btrfs_block_rsv *block_rsv,
David Sterba62a45b62011-04-20 15:52:26 +02005450 struct btrfs_block_rsv *dest, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005451{
5452 struct btrfs_space_info *space_info = block_rsv->space_info;
5453
5454 spin_lock(&block_rsv->lock);
5455 if (num_bytes == (u64)-1)
5456 num_bytes = block_rsv->size;
5457 block_rsv->size -= num_bytes;
5458 if (block_rsv->reserved >= block_rsv->size) {
5459 num_bytes = block_rsv->reserved - block_rsv->size;
5460 block_rsv->reserved = block_rsv->size;
5461 block_rsv->full = 1;
5462 } else {
5463 num_bytes = 0;
5464 }
5465 spin_unlock(&block_rsv->lock);
5466
5467 if (num_bytes > 0) {
5468 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00005469 spin_lock(&dest->lock);
5470 if (!dest->full) {
5471 u64 bytes_to_add;
5472
5473 bytes_to_add = dest->size - dest->reserved;
5474 bytes_to_add = min(num_bytes, bytes_to_add);
5475 dest->reserved += bytes_to_add;
5476 if (dest->reserved >= dest->size)
5477 dest->full = 1;
5478 num_bytes -= bytes_to_add;
5479 }
5480 spin_unlock(&dest->lock);
5481 }
Josef Bacik957780e2016-05-17 13:30:55 -04005482 if (num_bytes)
5483 space_info_add_old_bytes(fs_info, space_info,
5484 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005485 }
5486}
5487
Josef Bacik25d609f2016-03-25 13:25:48 -04005488int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src,
5489 struct btrfs_block_rsv *dst, u64 num_bytes,
5490 int update_size)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005491{
5492 int ret;
5493
5494 ret = block_rsv_use_bytes(src, num_bytes);
5495 if (ret)
5496 return ret;
5497
Josef Bacik25d609f2016-03-25 13:25:48 -04005498 block_rsv_add_bytes(dst, num_bytes, update_size);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005499 return 0;
5500}
5501
Miao Xie66d8f3d2012-09-06 04:02:28 -06005502void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005503{
5504 memset(rsv, 0, sizeof(*rsv));
5505 spin_lock_init(&rsv->lock);
Miao Xie66d8f3d2012-09-06 04:02:28 -06005506 rsv->type = type;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005507}
5508
Miao Xie66d8f3d2012-09-06 04:02:28 -06005509struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root,
5510 unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005511{
5512 struct btrfs_block_rsv *block_rsv;
5513 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005514
5515 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
5516 if (!block_rsv)
5517 return NULL;
5518
Miao Xie66d8f3d2012-09-06 04:02:28 -06005519 btrfs_init_block_rsv(block_rsv, type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005520 block_rsv->space_info = __find_space_info(fs_info,
5521 BTRFS_BLOCK_GROUP_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005522 return block_rsv;
5523}
5524
5525void btrfs_free_block_rsv(struct btrfs_root *root,
5526 struct btrfs_block_rsv *rsv)
5527{
Josef Bacik2aaa6652012-08-29 14:27:18 -04005528 if (!rsv)
5529 return;
Josef Bacikdabdb642011-08-08 12:50:18 -04005530 btrfs_block_rsv_release(root, rsv, (u64)-1);
5531 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005532}
5533
Chris Masoncdfb0802015-04-06 18:17:00 -07005534void __btrfs_free_block_rsv(struct btrfs_block_rsv *rsv)
5535{
5536 kfree(rsv);
5537}
5538
Miao Xie08e007d2012-10-16 11:33:38 +00005539int btrfs_block_rsv_add(struct btrfs_root *root,
5540 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
5541 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005542{
5543 int ret;
5544
5545 if (num_bytes == 0)
5546 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005547
Miao Xie61b520a2011-11-10 20:45:05 -05005548 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005549 if (!ret) {
5550 block_rsv_add_bytes(block_rsv, num_bytes, 1);
5551 return 0;
5552 }
5553
Yan, Zhengf0486c62010-05-16 10:46:25 -04005554 return ret;
5555}
5556
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005557int btrfs_block_rsv_check(struct btrfs_root *root,
Josef Bacik36ba0222011-10-18 12:15:48 -04005558 struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005559{
5560 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005561 int ret = -ENOSPC;
5562
5563 if (!block_rsv)
5564 return 0;
5565
5566 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04005567 num_bytes = div_factor(block_rsv->size, min_factor);
5568 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005569 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005570 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005571
Josef Bacik36ba0222011-10-18 12:15:48 -04005572 return ret;
5573}
5574
Miao Xie08e007d2012-10-16 11:33:38 +00005575int btrfs_block_rsv_refill(struct btrfs_root *root,
5576 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
5577 enum btrfs_reserve_flush_enum flush)
Josef Bacik36ba0222011-10-18 12:15:48 -04005578{
5579 u64 num_bytes = 0;
5580 int ret = -ENOSPC;
5581
5582 if (!block_rsv)
5583 return 0;
5584
5585 spin_lock(&block_rsv->lock);
5586 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04005587 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005588 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04005589 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04005590 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005591 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04005592
Yan, Zhengf0486c62010-05-16 10:46:25 -04005593 if (!ret)
5594 return 0;
5595
Miao Xieaa38a712011-11-18 17:43:00 +08005596 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Josef Bacikdabdb642011-08-08 12:50:18 -04005597 if (!ret) {
5598 block_rsv_add_bytes(block_rsv, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005599 return 0;
5600 }
5601
Josef Bacik13553e52011-08-08 13:33:21 -04005602 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005603}
5604
Yan, Zhengf0486c62010-05-16 10:46:25 -04005605void btrfs_block_rsv_release(struct btrfs_root *root,
5606 struct btrfs_block_rsv *block_rsv,
5607 u64 num_bytes)
5608{
5609 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Liu Bo17504582013-12-29 21:44:50 +08005610 if (global_rsv == block_rsv ||
Yan, Zhengf0486c62010-05-16 10:46:25 -04005611 block_rsv->space_info != global_rsv->space_info)
5612 global_rsv = NULL;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005613 block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv,
5614 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005615}
5616
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005617/*
5618 * helper to calculate size of global block reservation.
5619 * the desired value is sum of space used by extent tree,
5620 * checksum tree and root tree
5621 */
5622static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info)
5623{
5624 struct btrfs_space_info *sinfo;
5625 u64 num_bytes;
5626 u64 meta_used;
5627 u64 data_used;
David Sterba6c417612011-04-13 15:41:04 +02005628 int csum_size = btrfs_super_csum_size(fs_info->super_copy);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005629
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005630 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA);
5631 spin_lock(&sinfo->lock);
5632 data_used = sinfo->bytes_used;
5633 spin_unlock(&sinfo->lock);
5634
5635 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
5636 spin_lock(&sinfo->lock);
Josef Bacik6d487552010-10-15 15:13:32 -04005637 if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA)
5638 data_used = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005639 meta_used = sinfo->bytes_used;
5640 spin_unlock(&sinfo->lock);
5641
5642 num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) *
5643 csum_size * 2;
David Sterbaf8c269d2015-01-16 17:21:12 +01005644 num_bytes += div_u64(data_used + meta_used, 50);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005645
5646 if (num_bytes * 3 > meta_used)
David Sterbaf8c269d2015-01-16 17:21:12 +01005647 num_bytes = div_u64(meta_used, 3);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005648
David Sterba707e8a02014-06-04 19:22:26 +02005649 return ALIGN(num_bytes, fs_info->extent_root->nodesize << 10);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005650}
5651
5652static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
5653{
5654 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
5655 struct btrfs_space_info *sinfo = block_rsv->space_info;
5656 u64 num_bytes;
5657
5658 num_bytes = calc_global_metadata_size(fs_info);
5659
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005660 spin_lock(&sinfo->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005661 spin_lock(&block_rsv->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005662
Byongho Leeee221842015-12-15 01:42:10 +09005663 block_rsv->size = min_t(u64, num_bytes, SZ_512M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005664
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005665 if (block_rsv->reserved < block_rsv->size) {
5666 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
5667 sinfo->bytes_reserved + sinfo->bytes_readonly +
5668 sinfo->bytes_may_use;
5669 if (sinfo->total_bytes > num_bytes) {
5670 num_bytes = sinfo->total_bytes - num_bytes;
5671 num_bytes = min(num_bytes,
5672 block_rsv->size - block_rsv->reserved);
5673 block_rsv->reserved += num_bytes;
5674 sinfo->bytes_may_use += num_bytes;
5675 trace_btrfs_space_reservation(fs_info, "space_info",
5676 sinfo->flags, num_bytes,
5677 1);
5678 }
5679 } else if (block_rsv->reserved > block_rsv->size) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005680 num_bytes = block_rsv->reserved - block_rsv->size;
Josef Bacikfb25e912011-07-26 17:00:46 -04005681 sinfo->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005682 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04005683 sinfo->flags, num_bytes, 0);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005684 block_rsv->reserved = block_rsv->size;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005685 }
David Sterba182608c2011-05-05 13:13:16 +02005686
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005687 if (block_rsv->reserved == block_rsv->size)
5688 block_rsv->full = 1;
5689 else
5690 block_rsv->full = 0;
5691
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005692 spin_unlock(&block_rsv->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005693 spin_unlock(&sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005694}
5695
Yan, Zhengf0486c62010-05-16 10:46:25 -04005696static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
5697{
5698 struct btrfs_space_info *space_info;
5699
5700 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
5701 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005702
5703 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005704 fs_info->global_block_rsv.space_info = space_info;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005705 fs_info->delalloc_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005706 fs_info->trans_block_rsv.space_info = space_info;
5707 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04005708 fs_info->delayed_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005709
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005710 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
5711 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
5712 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
5713 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Stefan Behrens3a6cad92013-05-16 14:48:19 +00005714 if (fs_info->quota_root)
5715 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005716 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005717
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005718 update_global_block_rsv(fs_info);
5719}
5720
5721static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
5722{
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005723 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
5724 (u64)-1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005725 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
5726 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
5727 WARN_ON(fs_info->trans_block_rsv.size > 0);
5728 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
5729 WARN_ON(fs_info->chunk_block_rsv.size > 0);
5730 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04005731 WARN_ON(fs_info->delayed_block_rsv.size > 0);
5732 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04005733}
5734
Yan, Zhenga22285a2010-05-16 10:48:46 -04005735void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
5736 struct btrfs_root *root)
5737{
Josef Bacik0e721102012-06-26 16:13:18 -04005738 if (!trans->block_rsv)
5739 return;
5740
Yan, Zhenga22285a2010-05-16 10:48:46 -04005741 if (!trans->bytes_reserved)
5742 return;
5743
Chris Masone77266e2012-02-24 10:39:05 -05005744 trace_btrfs_space_reservation(root->fs_info, "transaction",
Liu Bo2bcc0322012-03-29 09:57:44 -04005745 trans->transid, trans->bytes_reserved, 0);
Josef Bacikb24e03d2011-10-14 14:40:17 -04005746 btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005747 trans->bytes_reserved = 0;
5748}
5749
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005750/*
5751 * To be called after all the new block groups attached to the transaction
5752 * handle have been created (btrfs_create_pending_block_groups()).
5753 */
5754void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
5755{
5756 struct btrfs_fs_info *fs_info = trans->root->fs_info;
5757
5758 if (!trans->chunk_bytes_reserved)
5759 return;
5760
5761 WARN_ON_ONCE(!list_empty(&trans->new_bgs));
5762
5763 block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL,
5764 trans->chunk_bytes_reserved);
5765 trans->chunk_bytes_reserved = 0;
5766}
5767
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005768/* Can only return 0 or -ENOSPC */
Yan, Zhengd68fc572010-05-16 10:49:58 -04005769int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
5770 struct inode *inode)
5771{
5772 struct btrfs_root *root = BTRFS_I(inode)->root;
5773 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
5774 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
5775
5776 /*
Josef Bacikfcb80c22011-05-03 10:40:22 -04005777 * We need to hold space in order to delete our orphan item once we've
5778 * added it, so this takes the reservation so we can release it later
5779 * when we are truly done with the orphan item.
Yan, Zhengd68fc572010-05-16 10:49:58 -04005780 */
Chris Masonff5714c2011-05-28 07:00:39 -04005781 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005782 trace_btrfs_space_reservation(root->fs_info, "orphan",
5783 btrfs_ino(inode), num_bytes, 1);
Josef Bacik25d609f2016-03-25 13:25:48 -04005784 return btrfs_block_rsv_migrate(src_rsv, dst_rsv, num_bytes, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04005785}
5786
5787void btrfs_orphan_release_metadata(struct inode *inode)
5788{
5789 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonff5714c2011-05-28 07:00:39 -04005790 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005791 trace_btrfs_space_reservation(root->fs_info, "orphan",
5792 btrfs_ino(inode), num_bytes, 0);
Yan, Zhengd68fc572010-05-16 10:49:58 -04005793 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
5794}
5795
Miao Xied5c12072013-02-28 10:04:33 +00005796/*
5797 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
5798 * root: the root of the parent directory
5799 * rsv: block reservation
5800 * items: the number of items that we need do reservation
5801 * qgroup_reserved: used to return the reserved size in qgroup
5802 *
5803 * This function is used to reserve the space for snapshot/subvolume
5804 * creation and deletion. Those operations are different with the
5805 * common file/directory operations, they change two fs/file trees
5806 * and root tree, the number of items that the qgroup reserves is
5807 * different with the free space reservation. So we can not use
Nicholas D Steeves01327612016-05-19 21:18:45 -04005808 * the space reservation mechanism in start_transaction().
Miao Xied5c12072013-02-28 10:04:33 +00005809 */
5810int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
5811 struct btrfs_block_rsv *rsv,
5812 int items,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005813 u64 *qgroup_reserved,
5814 bool use_global_rsv)
Yan, Zhenga22285a2010-05-16 10:48:46 -04005815{
Miao Xied5c12072013-02-28 10:04:33 +00005816 u64 num_bytes;
5817 int ret;
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005818 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Miao Xied5c12072013-02-28 10:04:33 +00005819
5820 if (root->fs_info->quota_enabled) {
5821 /* One for parent inode, two for dir entries */
David Sterba707e8a02014-06-04 19:22:26 +02005822 num_bytes = 3 * root->nodesize;
Qu Wenruo71741092015-09-08 17:22:41 +08005823 ret = btrfs_qgroup_reserve_meta(root, num_bytes);
Miao Xied5c12072013-02-28 10:04:33 +00005824 if (ret)
5825 return ret;
5826 } else {
5827 num_bytes = 0;
5828 }
5829
5830 *qgroup_reserved = num_bytes;
5831
5832 num_bytes = btrfs_calc_trans_metadata_size(root, items);
5833 rsv->space_info = __find_space_info(root->fs_info,
5834 BTRFS_BLOCK_GROUP_METADATA);
5835 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
5836 BTRFS_RESERVE_FLUSH_ALL);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005837
5838 if (ret == -ENOSPC && use_global_rsv)
Josef Bacik25d609f2016-03-25 13:25:48 -04005839 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes, 1);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005840
Qu Wenruo71741092015-09-08 17:22:41 +08005841 if (ret && *qgroup_reserved)
5842 btrfs_qgroup_free_meta(root, *qgroup_reserved);
Miao Xied5c12072013-02-28 10:04:33 +00005843
5844 return ret;
5845}
5846
5847void btrfs_subvolume_release_metadata(struct btrfs_root *root,
5848 struct btrfs_block_rsv *rsv,
5849 u64 qgroup_reserved)
5850{
5851 btrfs_block_rsv_release(root, rsv, (u64)-1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005852}
5853
Josef Bacik7709cde2011-08-04 10:25:02 -04005854/**
5855 * drop_outstanding_extent - drop an outstanding extent
5856 * @inode: the inode we're dropping the extent for
Nicholas D Steeves01327612016-05-19 21:18:45 -04005857 * @num_bytes: the number of bytes we're releasing.
Josef Bacik7709cde2011-08-04 10:25:02 -04005858 *
5859 * This is called when we are freeing up an outstanding extent, either called
5860 * after an error or after an extent is written. This will return the number of
5861 * reserved extents that need to be freed. This must be called with
5862 * BTRFS_I(inode)->lock held.
5863 */
Josef Bacikdcab6a32015-02-11 15:08:59 -05005864static unsigned drop_outstanding_extent(struct inode *inode, u64 num_bytes)
Josef Bacik9e0baf62011-07-15 15:16:44 +00005865{
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005866 unsigned drop_inode_space = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005867 unsigned dropped_extents = 0;
Josef Bacikdcab6a32015-02-11 15:08:59 -05005868 unsigned num_extents = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005869
Josef Bacikdcab6a32015-02-11 15:08:59 -05005870 num_extents = (unsigned)div64_u64(num_bytes +
5871 BTRFS_MAX_EXTENT_SIZE - 1,
5872 BTRFS_MAX_EXTENT_SIZE);
5873 ASSERT(num_extents);
5874 ASSERT(BTRFS_I(inode)->outstanding_extents >= num_extents);
5875 BTRFS_I(inode)->outstanding_extents -= num_extents;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005876
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005877 if (BTRFS_I(inode)->outstanding_extents == 0 &&
Josef Bacik72ac3c02012-05-23 14:13:11 -04005878 test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5879 &BTRFS_I(inode)->runtime_flags))
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005880 drop_inode_space = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005881
Josef Bacik9e0baf62011-07-15 15:16:44 +00005882 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005883 * If we have more or the same amount of outstanding extents than we have
Josef Bacik9e0baf62011-07-15 15:16:44 +00005884 * reserved then we need to leave the reserved extents count alone.
5885 */
5886 if (BTRFS_I(inode)->outstanding_extents >=
5887 BTRFS_I(inode)->reserved_extents)
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005888 return drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005889
5890 dropped_extents = BTRFS_I(inode)->reserved_extents -
5891 BTRFS_I(inode)->outstanding_extents;
5892 BTRFS_I(inode)->reserved_extents -= dropped_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005893 return dropped_extents + drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005894}
5895
Josef Bacik7709cde2011-08-04 10:25:02 -04005896/**
Nicholas D Steeves01327612016-05-19 21:18:45 -04005897 * calc_csum_metadata_size - return the amount of metadata space that must be
5898 * reserved/freed for the given bytes.
Josef Bacik7709cde2011-08-04 10:25:02 -04005899 * @inode: the inode we're manipulating
5900 * @num_bytes: the number of bytes in question
5901 * @reserve: 1 if we are reserving space, 0 if we are freeing space
5902 *
5903 * This adjusts the number of csum_bytes in the inode and then returns the
5904 * correct amount of metadata that must either be reserved or freed. We
5905 * calculate how many checksums we can fit into one leaf and then divide the
5906 * number of bytes that will need to be checksumed by this value to figure out
5907 * how many checksums will be required. If we are adding bytes then the number
5908 * may go up and we will return the number of additional bytes that must be
5909 * reserved. If it is going down we will return the number of bytes that must
5910 * be freed.
5911 *
5912 * This must be called with BTRFS_I(inode)->lock held.
5913 */
5914static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes,
5915 int reserve)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005916{
Josef Bacik7709cde2011-08-04 10:25:02 -04005917 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik12621332015-02-03 07:50:16 -08005918 u64 old_csums, num_csums;
Josef Bacik7709cde2011-08-04 10:25:02 -04005919
5920 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM &&
5921 BTRFS_I(inode)->csum_bytes == 0)
5922 return 0;
5923
Chris Mason28f75a02015-02-04 06:59:29 -08005924 old_csums = btrfs_csum_bytes_to_leaves(root, BTRFS_I(inode)->csum_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04005925 if (reserve)
5926 BTRFS_I(inode)->csum_bytes += num_bytes;
5927 else
5928 BTRFS_I(inode)->csum_bytes -= num_bytes;
Chris Mason28f75a02015-02-04 06:59:29 -08005929 num_csums = btrfs_csum_bytes_to_leaves(root, BTRFS_I(inode)->csum_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04005930
5931 /* No change, no need to reserve more */
5932 if (old_csums == num_csums)
5933 return 0;
5934
5935 if (reserve)
5936 return btrfs_calc_trans_metadata_size(root,
5937 num_csums - old_csums);
5938
5939 return btrfs_calc_trans_metadata_size(root, old_csums - num_csums);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005940}
5941
5942int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
5943{
5944 struct btrfs_root *root = BTRFS_I(inode)->root;
5945 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005946 u64 to_reserve = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05005947 u64 csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005948 unsigned nr_extents = 0;
Miao Xie08e007d2012-10-16 11:33:38 +00005949 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
Jan Schmidteb6b88d2013-01-27 23:26:00 -07005950 int ret = 0;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005951 bool delalloc_lock = true;
Wang Shilong88e081bf2013-03-01 11:36:01 +00005952 u64 to_free = 0;
5953 unsigned dropped;
Josef Bacik48c3d482016-03-25 13:25:49 -04005954 bool release_extra = false;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005955
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005956 /* If we are a free space inode we need to not flush since we will be in
5957 * the middle of a transaction commit. We also don't need the delalloc
5958 * mutex since we won't race with anybody. We need this mostly to make
5959 * lockdep shut its filthy mouth.
5960 */
5961 if (btrfs_is_free_space_inode(inode)) {
Miao Xie08e007d2012-10-16 11:33:38 +00005962 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005963 delalloc_lock = false;
5964 }
Josef Bacikc09544e2011-08-30 10:19:10 -04005965
Miao Xie08e007d2012-10-16 11:33:38 +00005966 if (flush != BTRFS_RESERVE_NO_FLUSH &&
5967 btrfs_transaction_in_commit(root->fs_info))
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005968 schedule_timeout(1);
5969
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005970 if (delalloc_lock)
5971 mutex_lock(&BTRFS_I(inode)->delalloc_mutex);
5972
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005973 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005974
Josef Bacik9e0baf62011-07-15 15:16:44 +00005975 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik6a41dd02015-03-13 15:12:23 -04005976 nr_extents = (unsigned)div64_u64(num_bytes +
5977 BTRFS_MAX_EXTENT_SIZE - 1,
5978 BTRFS_MAX_EXTENT_SIZE);
5979 BTRFS_I(inode)->outstanding_extents += nr_extents;
Josef Bacik57a45ced2011-01-25 16:30:38 -05005980
Josef Bacik48c3d482016-03-25 13:25:49 -04005981 nr_extents = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005982 if (BTRFS_I(inode)->outstanding_extents >
Josef Bacik660d3f62011-12-09 11:18:51 -05005983 BTRFS_I(inode)->reserved_extents)
Josef Bacik48c3d482016-03-25 13:25:49 -04005984 nr_extents += BTRFS_I(inode)->outstanding_extents -
Josef Bacik9e0baf62011-07-15 15:16:44 +00005985 BTRFS_I(inode)->reserved_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005986
Josef Bacik48c3d482016-03-25 13:25:49 -04005987 /* We always want to reserve a slot for updating the inode. */
5988 to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents + 1);
Josef Bacik7709cde2011-08-04 10:25:02 -04005989 to_reserve += calc_csum_metadata_size(inode, num_bytes, 1);
Josef Bacik660d3f62011-12-09 11:18:51 -05005990 csum_bytes = BTRFS_I(inode)->csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005991 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05005992
Wang Shilong88e081bf2013-03-01 11:36:01 +00005993 if (root->fs_info->quota_enabled) {
Qu Wenruo71741092015-09-08 17:22:41 +08005994 ret = btrfs_qgroup_reserve_meta(root,
5995 nr_extents * root->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005996 if (ret)
5997 goto out_fail;
Wang Shilonga9870c02013-03-01 11:33:01 +00005998 }
Arne Jansenc5567232011-09-14 15:44:05 +02005999
Josef Bacik48c3d482016-03-25 13:25:49 -04006000 ret = btrfs_block_rsv_add(root, block_rsv, to_reserve, flush);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006001 if (unlikely(ret)) {
Qu Wenruo71741092015-09-08 17:22:41 +08006002 btrfs_qgroup_free_meta(root, nr_extents * root->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006003 goto out_fail;
Josef Bacik9e0baf62011-07-15 15:16:44 +00006004 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006005
Josef Bacik660d3f62011-12-09 11:18:51 -05006006 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik48c3d482016-03-25 13:25:49 -04006007 if (test_and_set_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
Josef Bacikf485c9e2016-03-25 13:25:55 -04006008 &BTRFS_I(inode)->runtime_flags)) {
6009 to_reserve -= btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik48c3d482016-03-25 13:25:49 -04006010 release_extra = true;
Josef Bacikf485c9e2016-03-25 13:25:55 -04006011 }
Josef Bacik660d3f62011-12-09 11:18:51 -05006012 BTRFS_I(inode)->reserved_extents += nr_extents;
6013 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006014
6015 if (delalloc_lock)
6016 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
Josef Bacik660d3f62011-12-09 11:18:51 -05006017
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006018 if (to_reserve)
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05306019 trace_btrfs_space_reservation(root->fs_info, "delalloc",
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006020 btrfs_ino(inode), to_reserve, 1);
Josef Bacik48c3d482016-03-25 13:25:49 -04006021 if (release_extra)
6022 btrfs_block_rsv_release(root, block_rsv,
6023 btrfs_calc_trans_metadata_size(root,
6024 1));
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006025 return 0;
Wang Shilong88e081bf2013-03-01 11:36:01 +00006026
6027out_fail:
6028 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacikdcab6a32015-02-11 15:08:59 -05006029 dropped = drop_outstanding_extent(inode, num_bytes);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006030 /*
6031 * If the inodes csum_bytes is the same as the original
6032 * csum_bytes then we know we haven't raced with any free()ers
6033 * so we can just reduce our inodes csum bytes and carry on.
Wang Shilong88e081bf2013-03-01 11:36:01 +00006034 */
Josef Bacikf4881bc2013-03-25 16:03:35 -04006035 if (BTRFS_I(inode)->csum_bytes == csum_bytes) {
Wang Shilong88e081bf2013-03-01 11:36:01 +00006036 calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacikf4881bc2013-03-25 16:03:35 -04006037 } else {
6038 u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes;
6039 u64 bytes;
6040
6041 /*
6042 * This is tricky, but first we need to figure out how much we
Nicholas D Steeves01327612016-05-19 21:18:45 -04006043 * freed from any free-ers that occurred during this
Josef Bacikf4881bc2013-03-25 16:03:35 -04006044 * reservation, so we reset ->csum_bytes to the csum_bytes
6045 * before we dropped our lock, and then call the free for the
6046 * number of bytes that were freed while we were trying our
6047 * reservation.
6048 */
6049 bytes = csum_bytes - BTRFS_I(inode)->csum_bytes;
6050 BTRFS_I(inode)->csum_bytes = csum_bytes;
6051 to_free = calc_csum_metadata_size(inode, bytes, 0);
6052
6053
6054 /*
6055 * Now we need to see how much we would have freed had we not
6056 * been making this reservation and our ->csum_bytes were not
6057 * artificially inflated.
6058 */
6059 BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes;
6060 bytes = csum_bytes - orig_csum_bytes;
6061 bytes = calc_csum_metadata_size(inode, bytes, 0);
6062
6063 /*
6064 * Now reset ->csum_bytes to what it should be. If bytes is
Nicholas D Steeves01327612016-05-19 21:18:45 -04006065 * more than to_free then we would have freed more space had we
Josef Bacikf4881bc2013-03-25 16:03:35 -04006066 * not had an artificially high ->csum_bytes, so we need to free
6067 * the remainder. If bytes is the same or less then we don't
6068 * need to do anything, the other free-ers did the correct
6069 * thing.
6070 */
6071 BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes;
6072 if (bytes > to_free)
6073 to_free = bytes - to_free;
6074 else
6075 to_free = 0;
6076 }
Wang Shilong88e081bf2013-03-01 11:36:01 +00006077 spin_unlock(&BTRFS_I(inode)->lock);
Dongsheng Yange2d1f922015-02-06 10:26:52 -05006078 if (dropped)
Wang Shilong88e081bf2013-03-01 11:36:01 +00006079 to_free += btrfs_calc_trans_metadata_size(root, dropped);
6080
6081 if (to_free) {
6082 btrfs_block_rsv_release(root, block_rsv, to_free);
6083 trace_btrfs_space_reservation(root->fs_info, "delalloc",
6084 btrfs_ino(inode), to_free, 0);
6085 }
6086 if (delalloc_lock)
6087 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
6088 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006089}
6090
Josef Bacik7709cde2011-08-04 10:25:02 -04006091/**
6092 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
6093 * @inode: the inode to release the reservation for
6094 * @num_bytes: the number of bytes we're releasing
6095 *
6096 * This will release the metadata reservation for an inode. This can be called
6097 * once we complete IO for a given set of bytes to release their metadata
6098 * reservations.
6099 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006100void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
6101{
6102 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik9e0baf62011-07-15 15:16:44 +00006103 u64 to_free = 0;
6104 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006105
6106 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik7709cde2011-08-04 10:25:02 -04006107 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacikdcab6a32015-02-11 15:08:59 -05006108 dropped = drop_outstanding_extent(inode, num_bytes);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006109
Miao Xie09348562013-02-07 10:12:07 +00006110 if (num_bytes)
6111 to_free = calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacik7709cde2011-08-04 10:25:02 -04006112 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00006113 if (dropped > 0)
6114 to_free += btrfs_calc_trans_metadata_size(root, dropped);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006115
Josef Bacik6a3891c2015-03-16 17:38:52 -04006116 if (btrfs_test_is_dummy_root(root))
6117 return;
6118
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006119 trace_btrfs_space_reservation(root->fs_info, "delalloc",
6120 btrfs_ino(inode), to_free, 0);
Arne Jansenc5567232011-09-14 15:44:05 +02006121
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006122 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
6123 to_free);
6124}
6125
Josef Bacik7709cde2011-08-04 10:25:02 -04006126/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006127 * btrfs_delalloc_reserve_space - reserve data and metadata space for
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006128 * delalloc
6129 * @inode: inode we're writing to
6130 * @start: start range we are writing to
6131 * @len: how long the range we are writing to
6132 *
6133 * TODO: This function will finally replace old btrfs_delalloc_reserve_space()
6134 *
6135 * This will do the following things
6136 *
6137 * o reserve space in data space info for num bytes
6138 * and reserve precious corresponding qgroup space
6139 * (Done in check_data_free_space)
6140 *
6141 * o reserve space for metadata space, based on the number of outstanding
6142 * extents and how much csums will be needed
6143 * also reserve metadata space in a per root over-reserve method.
6144 * o add to the inodes->delalloc_bytes
6145 * o add it to the fs_info's delalloc inodes list.
6146 * (Above 3 all done in delalloc_reserve_metadata)
6147 *
6148 * Return 0 for success
6149 * Return <0 for error(-ENOSPC or -EQUOT)
6150 */
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006151int btrfs_delalloc_reserve_space(struct inode *inode, u64 start, u64 len)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006152{
6153 int ret;
6154
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006155 ret = btrfs_check_data_free_space(inode, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006156 if (ret < 0)
6157 return ret;
6158 ret = btrfs_delalloc_reserve_metadata(inode, len);
6159 if (ret < 0)
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006160 btrfs_free_reserved_data_space(inode, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006161 return ret;
6162}
6163
6164/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006165 * btrfs_delalloc_release_space - release data and metadata space for delalloc
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006166 * @inode: inode we're releasing space for
6167 * @start: start position of the space already reserved
6168 * @len: the len of the space already reserved
6169 *
6170 * This must be matched with a call to btrfs_delalloc_reserve_space. This is
6171 * called in the case that we don't need the metadata AND data reservations
6172 * anymore. So if there is an error or we insert an inline extent.
6173 *
6174 * This function will release the metadata space that was not used and will
6175 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
6176 * list if there are no delalloc bytes left.
6177 * Also it will handle the qgroup reserved space.
6178 */
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006179void btrfs_delalloc_release_space(struct inode *inode, u64 start, u64 len)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006180{
6181 btrfs_delalloc_release_metadata(inode, len);
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006182 btrfs_free_reserved_data_space(inode, start, len);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006183}
6184
Josef Bacikce93ec52014-11-17 15:45:48 -05006185static int update_block_group(struct btrfs_trans_handle *trans,
6186 struct btrfs_root *root, u64 bytenr,
6187 u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04006188{
Josef Bacik0af3d002010-06-21 14:48:16 -04006189 struct btrfs_block_group_cache *cache = NULL;
Chris Mason9078a3e2007-04-26 16:46:15 -04006190 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04006191 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006192 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04006193 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04006194 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04006195
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006196 /* block accounting for super block */
Miao Xieeb73c1b2013-05-15 07:48:22 +00006197 spin_lock(&info->delalloc_root_lock);
David Sterba6c417612011-04-13 15:41:04 +02006198 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006199 if (alloc)
6200 old_val += num_bytes;
6201 else
6202 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02006203 btrfs_set_super_bytes_used(info->super_copy, old_val);
Miao Xieeb73c1b2013-05-15 07:48:22 +00006204 spin_unlock(&info->delalloc_root_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006205
Chris Masond3977122009-01-05 21:25:51 -05006206 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04006207 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05006208 if (!cache)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006209 return -ENOENT;
Yan, Zhengb742bb82010-05-16 10:46:24 -04006210 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
6211 BTRFS_BLOCK_GROUP_RAID1 |
6212 BTRFS_BLOCK_GROUP_RAID10))
6213 factor = 2;
6214 else
6215 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04006216 /*
6217 * If this block group has free space cache written out, we
6218 * need to make sure to load it if we are removing space. This
6219 * is because we need the unpinning stage to actually add the
6220 * space back to the block group, otherwise we will leak space.
6221 */
6222 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Liu Bof6373bf2012-12-27 09:01:18 +00006223 cache_block_group(cache, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04006224
Chris Masondb945352007-10-15 16:15:53 -04006225 byte_in_group = bytenr - cache->key.objectid;
6226 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04006227
Josef Bacik25179202008-10-29 14:49:05 -04006228 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04006229 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04006230
Josef Bacik73bc1872011-10-03 14:07:49 -04006231 if (btrfs_test_opt(root, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04006232 cache->disk_cache_state < BTRFS_DC_CLEAR)
6233 cache->disk_cache_state = BTRFS_DC_CLEAR;
6234
Chris Mason9078a3e2007-04-26 16:46:15 -04006235 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04006236 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04006237 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04006238 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006239 btrfs_set_block_group_used(&cache->item, old_val);
6240 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006241 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04006242 cache->space_info->bytes_used += num_bytes;
6243 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04006244 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006245 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04006246 } else {
Chris Masondb945352007-10-15 16:15:53 -04006247 old_val -= num_bytes;
Filipe Mananaae0ab002014-11-26 15:28:52 +00006248 btrfs_set_block_group_used(&cache->item, old_val);
6249 cache->pinned += num_bytes;
6250 cache->space_info->bytes_pinned += num_bytes;
6251 cache->space_info->bytes_used -= num_bytes;
6252 cache->space_info->disk_used -= num_bytes * factor;
6253 spin_unlock(&cache->lock);
6254 spin_unlock(&cache->space_info->lock);
Josef Bacik47ab2a62014-09-18 11:20:02 -04006255
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006256 trace_btrfs_space_reservation(root->fs_info, "pinned",
6257 cache->space_info->flags,
6258 num_bytes, 1);
Filipe Mananaae0ab002014-11-26 15:28:52 +00006259 set_extent_dirty(info->pinned_extents,
6260 bytenr, bytenr + num_bytes - 1,
6261 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04006262 }
Chris Mason1bbc6212015-04-06 12:46:08 -07006263
6264 spin_lock(&trans->transaction->dirty_bgs_lock);
6265 if (list_empty(&cache->dirty_list)) {
6266 list_add_tail(&cache->dirty_list,
6267 &trans->transaction->dirty_bgs);
6268 trans->transaction->num_dirty_bgs++;
6269 btrfs_get_block_group(cache);
6270 }
6271 spin_unlock(&trans->transaction->dirty_bgs_lock);
6272
Filipe Manana036a9342015-11-23 15:25:16 +00006273 /*
6274 * No longer have used bytes in this block group, queue it for
6275 * deletion. We do this after adding the block group to the
6276 * dirty list to avoid races between cleaner kthread and space
6277 * cache writeout.
6278 */
6279 if (!alloc && old_val == 0) {
6280 spin_lock(&info->unused_bgs_lock);
6281 if (list_empty(&cache->bg_list)) {
6282 btrfs_get_block_group(cache);
6283 list_add_tail(&cache->bg_list,
6284 &info->unused_bgs);
6285 }
6286 spin_unlock(&info->unused_bgs_lock);
6287 }
6288
Chris Masonfa9c0d792009-04-03 09:47:43 -04006289 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04006290 total -= num_bytes;
6291 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006292 }
6293 return 0;
6294}
Chris Mason6324fbf2008-03-24 15:01:59 -04006295
Chris Masona061fc82008-05-07 11:43:44 -04006296static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
6297{
Josef Bacik0f9dd462008-09-23 13:14:11 -04006298 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05006299 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006300
Liu Boa1897fd2012-12-27 09:01:23 +00006301 spin_lock(&root->fs_info->block_group_cache_lock);
6302 bytenr = root->fs_info->first_logical_byte;
6303 spin_unlock(&root->fs_info->block_group_cache_lock);
6304
6305 if (bytenr < (u64)-1)
6306 return bytenr;
6307
Josef Bacik0f9dd462008-09-23 13:14:11 -04006308 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
6309 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04006310 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006311
Yan Zhengd2fb3432008-12-11 16:30:39 -05006312 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006313 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05006314
6315 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04006316}
6317
Yan, Zhengf0486c62010-05-16 10:46:25 -04006318static int pin_down_extent(struct btrfs_root *root,
6319 struct btrfs_block_group_cache *cache,
6320 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05006321{
Yan Zheng11833d62009-09-11 16:11:19 -04006322 spin_lock(&cache->space_info->lock);
6323 spin_lock(&cache->lock);
6324 cache->pinned += num_bytes;
6325 cache->space_info->bytes_pinned += num_bytes;
6326 if (reserved) {
6327 cache->reserved -= num_bytes;
6328 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05006329 }
Yan Zheng11833d62009-09-11 16:11:19 -04006330 spin_unlock(&cache->lock);
6331 spin_unlock(&cache->space_info->lock);
6332
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006333 trace_btrfs_space_reservation(root->fs_info, "pinned",
6334 cache->space_info->flags, num_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006335 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
6336 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Yan324ae4d2007-11-16 14:57:08 -05006337 return 0;
6338}
Chris Mason9078a3e2007-04-26 16:46:15 -04006339
Yan, Zhengf0486c62010-05-16 10:46:25 -04006340/*
6341 * this function must be called within transaction
6342 */
6343int btrfs_pin_extent(struct btrfs_root *root,
6344 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04006345{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006346 struct btrfs_block_group_cache *cache;
6347
6348 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006349 BUG_ON(!cache); /* Logic error */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006350
6351 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
6352
6353 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04006354 return 0;
6355}
Zheng Yane8569812008-09-26 10:05:48 -04006356
Yan, Zhengf0486c62010-05-16 10:46:25 -04006357/*
Chris Masone688b7252011-10-31 20:52:39 -04006358 * this function must be called within transaction
Yan, Zhengf0486c62010-05-16 10:46:25 -04006359 */
Liu Bodcfac412012-12-27 09:01:20 +00006360int btrfs_pin_extent_for_log_replay(struct btrfs_root *root,
Chris Masone688b7252011-10-31 20:52:39 -04006361 u64 bytenr, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006362{
Chris Masone688b7252011-10-31 20:52:39 -04006363 struct btrfs_block_group_cache *cache;
Josef Bacikb50c6e22013-04-25 15:55:30 -04006364 int ret;
Chris Masone688b7252011-10-31 20:52:39 -04006365
6366 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006367 if (!cache)
6368 return -EINVAL;
Chris Masone688b7252011-10-31 20:52:39 -04006369
6370 /*
6371 * pull in the free space cache (if any) so that our pin
6372 * removes the free space from the cache. We have load_only set
6373 * to one because the slow code to read in the free extents does check
6374 * the pinned extents.
6375 */
Liu Bof6373bf2012-12-27 09:01:18 +00006376 cache_block_group(cache, 1);
Chris Masone688b7252011-10-31 20:52:39 -04006377
6378 pin_down_extent(root, cache, bytenr, num_bytes, 0);
6379
6380 /* remove us from the free space cache (if we're there at all) */
Josef Bacikb50c6e22013-04-25 15:55:30 -04006381 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
Chris Masone688b7252011-10-31 20:52:39 -04006382 btrfs_put_block_group(cache);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006383 return ret;
Chris Masone688b7252011-10-31 20:52:39 -04006384}
6385
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006386static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes)
6387{
6388 int ret;
6389 struct btrfs_block_group_cache *block_group;
6390 struct btrfs_caching_control *caching_ctl;
6391
6392 block_group = btrfs_lookup_block_group(root->fs_info, start);
6393 if (!block_group)
6394 return -EINVAL;
6395
6396 cache_block_group(block_group, 0);
6397 caching_ctl = get_caching_control(block_group);
6398
6399 if (!caching_ctl) {
6400 /* Logic error */
6401 BUG_ON(!block_group_cache_done(block_group));
6402 ret = btrfs_remove_free_space(block_group, start, num_bytes);
6403 } else {
6404 mutex_lock(&caching_ctl->mutex);
6405
6406 if (start >= caching_ctl->progress) {
6407 ret = add_excluded_extent(root, start, num_bytes);
6408 } else if (start + num_bytes <= caching_ctl->progress) {
6409 ret = btrfs_remove_free_space(block_group,
6410 start, num_bytes);
6411 } else {
6412 num_bytes = caching_ctl->progress - start;
6413 ret = btrfs_remove_free_space(block_group,
6414 start, num_bytes);
6415 if (ret)
6416 goto out_lock;
6417
6418 num_bytes = (start + num_bytes) -
6419 caching_ctl->progress;
6420 start = caching_ctl->progress;
6421 ret = add_excluded_extent(root, start, num_bytes);
6422 }
6423out_lock:
6424 mutex_unlock(&caching_ctl->mutex);
6425 put_caching_control(caching_ctl);
6426 }
6427 btrfs_put_block_group(block_group);
6428 return ret;
6429}
6430
6431int btrfs_exclude_logged_extents(struct btrfs_root *log,
6432 struct extent_buffer *eb)
6433{
6434 struct btrfs_file_extent_item *item;
6435 struct btrfs_key key;
6436 int found_type;
6437 int i;
6438
6439 if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS))
6440 return 0;
6441
6442 for (i = 0; i < btrfs_header_nritems(eb); i++) {
6443 btrfs_item_key_to_cpu(eb, &key, i);
6444 if (key.type != BTRFS_EXTENT_DATA_KEY)
6445 continue;
6446 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
6447 found_type = btrfs_file_extent_type(eb, item);
6448 if (found_type == BTRFS_FILE_EXTENT_INLINE)
6449 continue;
6450 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
6451 continue;
6452 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
6453 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
6454 __exclude_logged_extent(log, key.objectid, key.offset);
6455 }
6456
6457 return 0;
6458}
6459
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006460static void
6461btrfs_inc_block_group_reservations(struct btrfs_block_group_cache *bg)
6462{
6463 atomic_inc(&bg->reservations);
6464}
6465
6466void btrfs_dec_block_group_reservations(struct btrfs_fs_info *fs_info,
6467 const u64 start)
6468{
6469 struct btrfs_block_group_cache *bg;
6470
6471 bg = btrfs_lookup_block_group(fs_info, start);
6472 ASSERT(bg);
6473 if (atomic_dec_and_test(&bg->reservations))
6474 wake_up_atomic_t(&bg->reservations);
6475 btrfs_put_block_group(bg);
6476}
6477
6478static int btrfs_wait_bg_reservations_atomic_t(atomic_t *a)
6479{
6480 schedule();
6481 return 0;
6482}
6483
6484void btrfs_wait_block_group_reservations(struct btrfs_block_group_cache *bg)
6485{
6486 struct btrfs_space_info *space_info = bg->space_info;
6487
6488 ASSERT(bg->ro);
6489
6490 if (!(bg->flags & BTRFS_BLOCK_GROUP_DATA))
6491 return;
6492
6493 /*
6494 * Our block group is read only but before we set it to read only,
6495 * some task might have had allocated an extent from it already, but it
6496 * has not yet created a respective ordered extent (and added it to a
6497 * root's list of ordered extents).
6498 * Therefore wait for any task currently allocating extents, since the
6499 * block group's reservations counter is incremented while a read lock
6500 * on the groups' semaphore is held and decremented after releasing
6501 * the read access on that semaphore and creating the ordered extent.
6502 */
6503 down_write(&space_info->groups_sem);
6504 up_write(&space_info->groups_sem);
6505
6506 wait_on_atomic_t(&bg->reservations,
6507 btrfs_wait_bg_reservations_atomic_t,
6508 TASK_UNINTERRUPTIBLE);
6509}
6510
Josef Bacikfb25e912011-07-26 17:00:46 -04006511/**
6512 * btrfs_update_reserved_bytes - update the block_group and space info counters
6513 * @cache: The cache we are manipulating
6514 * @num_bytes: The number of bytes in question
6515 * @reserve: One of the reservation enums
Miao Xiee570fd22014-06-19 10:42:50 +08006516 * @delalloc: The blocks are allocated for the delalloc write
Josef Bacikfb25e912011-07-26 17:00:46 -04006517 *
6518 * This is called by the allocator when it reserves space, or by somebody who is
6519 * freeing space that was never actually used on disk. For example if you
6520 * reserve some space for a new leaf in transaction A and before transaction A
6521 * commits you free that leaf, you call this with reserve set to 0 in order to
6522 * clear the reservation.
6523 *
6524 * Metadata reservations should be called with RESERVE_ALLOC so we do the proper
6525 * ENOSPC accounting. For data we handle the reservation through clearing the
6526 * delalloc bits in the io_tree. We have to do this since we could end up
6527 * allocating less disk space for the amount of data we have reserved in the
6528 * case of compression.
6529 *
6530 * If this is a reservation and the block group has become read only we cannot
6531 * make the reservation and return -EAGAIN, otherwise this function always
6532 * succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04006533 */
Josef Bacikfb25e912011-07-26 17:00:46 -04006534static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
Miao Xiee570fd22014-06-19 10:42:50 +08006535 u64 num_bytes, int reserve, int delalloc)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006536{
Josef Bacikfb25e912011-07-26 17:00:46 -04006537 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006538 int ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006539
Josef Bacikfb25e912011-07-26 17:00:46 -04006540 spin_lock(&space_info->lock);
6541 spin_lock(&cache->lock);
6542 if (reserve != RESERVE_FREE) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04006543 if (cache->ro) {
6544 ret = -EAGAIN;
6545 } else {
Josef Bacikfb25e912011-07-26 17:00:46 -04006546 cache->reserved += num_bytes;
6547 space_info->bytes_reserved += num_bytes;
6548 if (reserve == RESERVE_ALLOC) {
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006549 trace_btrfs_space_reservation(cache->fs_info,
Liu Bo2bcc0322012-03-29 09:57:44 -04006550 "space_info", space_info->flags,
6551 num_bytes, 0);
Josef Bacikfb25e912011-07-26 17:00:46 -04006552 space_info->bytes_may_use -= num_bytes;
6553 }
Miao Xiee570fd22014-06-19 10:42:50 +08006554
6555 if (delalloc)
6556 cache->delalloc_bytes += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006557 }
Josef Bacikfb25e912011-07-26 17:00:46 -04006558 } else {
6559 if (cache->ro)
6560 space_info->bytes_readonly += num_bytes;
6561 cache->reserved -= num_bytes;
6562 space_info->bytes_reserved -= num_bytes;
Miao Xiee570fd22014-06-19 10:42:50 +08006563
6564 if (delalloc)
6565 cache->delalloc_bytes -= num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006566 }
Josef Bacikfb25e912011-07-26 17:00:46 -04006567 spin_unlock(&cache->lock);
6568 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006569 return ret;
6570}
6571
Jeff Mahoney143bede2012-03-01 14:56:26 +01006572void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04006573 struct btrfs_root *root)
6574{
6575 struct btrfs_fs_info *fs_info = root->fs_info;
6576 struct btrfs_caching_control *next;
6577 struct btrfs_caching_control *caching_ctl;
6578 struct btrfs_block_group_cache *cache;
6579
Josef Bacik9e351cc2014-03-13 15:42:13 -04006580 down_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04006581
6582 list_for_each_entry_safe(caching_ctl, next,
6583 &fs_info->caching_block_groups, list) {
6584 cache = caching_ctl->block_group;
6585 if (block_group_cache_done(cache)) {
6586 cache->last_byte_to_unpin = (u64)-1;
6587 list_del_init(&caching_ctl->list);
6588 put_caching_control(caching_ctl);
6589 } else {
6590 cache->last_byte_to_unpin = caching_ctl->progress;
6591 }
6592 }
6593
6594 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6595 fs_info->pinned_extents = &fs_info->freed_extents[1];
6596 else
6597 fs_info->pinned_extents = &fs_info->freed_extents[0];
6598
Josef Bacik9e351cc2014-03-13 15:42:13 -04006599 up_write(&fs_info->commit_root_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006600
6601 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04006602}
6603
Josef Bacikc759c4e2015-10-02 15:25:10 -04006604/*
6605 * Returns the free cluster for the given space info and sets empty_cluster to
6606 * what it should be based on the mount options.
6607 */
6608static struct btrfs_free_cluster *
6609fetch_cluster_info(struct btrfs_root *root, struct btrfs_space_info *space_info,
6610 u64 *empty_cluster)
6611{
6612 struct btrfs_free_cluster *ret = NULL;
6613 bool ssd = btrfs_test_opt(root, SSD);
6614
6615 *empty_cluster = 0;
6616 if (btrfs_mixed_space_info(space_info))
6617 return ret;
6618
6619 if (ssd)
Byongho Leeee221842015-12-15 01:42:10 +09006620 *empty_cluster = SZ_2M;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006621 if (space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
6622 ret = &root->fs_info->meta_alloc_cluster;
6623 if (!ssd)
Byongho Leeee221842015-12-15 01:42:10 +09006624 *empty_cluster = SZ_64K;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006625 } else if ((space_info->flags & BTRFS_BLOCK_GROUP_DATA) && ssd) {
6626 ret = &root->fs_info->data_alloc_cluster;
6627 }
6628
6629 return ret;
6630}
6631
Filipe Manana678886b2014-12-07 21:31:47 +00006632static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end,
6633 const bool return_free_space)
Yan Zheng11833d62009-09-11 16:11:19 -04006634{
6635 struct btrfs_fs_info *fs_info = root->fs_info;
6636 struct btrfs_block_group_cache *cache = NULL;
Josef Bacik7b398f82012-10-22 15:52:28 -04006637 struct btrfs_space_info *space_info;
6638 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006639 struct btrfs_free_cluster *cluster = NULL;
Yan Zheng11833d62009-09-11 16:11:19 -04006640 u64 len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006641 u64 total_unpinned = 0;
6642 u64 empty_cluster = 0;
Josef Bacik7b398f82012-10-22 15:52:28 -04006643 bool readonly;
Yan Zheng11833d62009-09-11 16:11:19 -04006644
6645 while (start <= end) {
Josef Bacik7b398f82012-10-22 15:52:28 -04006646 readonly = false;
Yan Zheng11833d62009-09-11 16:11:19 -04006647 if (!cache ||
6648 start >= cache->key.objectid + cache->key.offset) {
6649 if (cache)
6650 btrfs_put_block_group(cache);
Josef Bacikc759c4e2015-10-02 15:25:10 -04006651 total_unpinned = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006652 cache = btrfs_lookup_block_group(fs_info, start);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006653 BUG_ON(!cache); /* Logic error */
Josef Bacikc759c4e2015-10-02 15:25:10 -04006654
6655 cluster = fetch_cluster_info(root,
6656 cache->space_info,
6657 &empty_cluster);
6658 empty_cluster <<= 1;
Yan Zheng11833d62009-09-11 16:11:19 -04006659 }
6660
6661 len = cache->key.objectid + cache->key.offset - start;
6662 len = min(len, end + 1 - start);
6663
6664 if (start < cache->last_byte_to_unpin) {
6665 len = min(len, cache->last_byte_to_unpin - start);
Filipe Manana678886b2014-12-07 21:31:47 +00006666 if (return_free_space)
6667 btrfs_add_free_space(cache, start, len);
Yan Zheng11833d62009-09-11 16:11:19 -04006668 }
Josef Bacik25179202008-10-29 14:49:05 -04006669
Yan, Zhengf0486c62010-05-16 10:46:25 -04006670 start += len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006671 total_unpinned += len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006672 space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006673
Josef Bacikc759c4e2015-10-02 15:25:10 -04006674 /*
6675 * If this space cluster has been marked as fragmented and we've
6676 * unpinned enough in this block group to potentially allow a
6677 * cluster to be created inside of it go ahead and clear the
6678 * fragmented check.
6679 */
6680 if (cluster && cluster->fragmented &&
6681 total_unpinned > empty_cluster) {
6682 spin_lock(&cluster->lock);
6683 cluster->fragmented = 0;
6684 spin_unlock(&cluster->lock);
6685 }
6686
Josef Bacik7b398f82012-10-22 15:52:28 -04006687 spin_lock(&space_info->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006688 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006689 cache->pinned -= len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006690 space_info->bytes_pinned -= len;
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006691
6692 trace_btrfs_space_reservation(fs_info, "pinned",
6693 space_info->flags, len, 0);
Josef Bacik4f4db212015-09-29 11:40:47 -04006694 space_info->max_extent_size = 0;
Liu Bod288db52014-07-02 16:58:01 +08006695 percpu_counter_add(&space_info->total_bytes_pinned, -len);
Josef Bacik7b398f82012-10-22 15:52:28 -04006696 if (cache->ro) {
6697 space_info->bytes_readonly += len;
6698 readonly = true;
6699 }
Josef Bacik25179202008-10-29 14:49:05 -04006700 spin_unlock(&cache->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006701 if (!readonly && return_free_space &&
6702 global_rsv->space_info == space_info) {
6703 u64 to_add = len;
6704 WARN_ON(!return_free_space);
Josef Bacik7b398f82012-10-22 15:52:28 -04006705 spin_lock(&global_rsv->lock);
6706 if (!global_rsv->full) {
Josef Bacik957780e2016-05-17 13:30:55 -04006707 to_add = min(len, global_rsv->size -
6708 global_rsv->reserved);
6709 global_rsv->reserved += to_add;
6710 space_info->bytes_may_use += to_add;
Josef Bacik7b398f82012-10-22 15:52:28 -04006711 if (global_rsv->reserved >= global_rsv->size)
6712 global_rsv->full = 1;
Josef Bacik957780e2016-05-17 13:30:55 -04006713 trace_btrfs_space_reservation(fs_info,
6714 "space_info",
6715 space_info->flags,
6716 to_add, 1);
6717 len -= to_add;
Josef Bacik7b398f82012-10-22 15:52:28 -04006718 }
6719 spin_unlock(&global_rsv->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006720 /* Add to any tickets we may have */
6721 if (len)
6722 space_info_add_new_bytes(fs_info, space_info,
6723 len);
Josef Bacik7b398f82012-10-22 15:52:28 -04006724 }
6725 spin_unlock(&space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006726 }
6727
6728 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006729 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04006730 return 0;
6731}
6732
6733int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04006734 struct btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -05006735{
Yan Zheng11833d62009-09-11 16:11:19 -04006736 struct btrfs_fs_info *fs_info = root->fs_info;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006737 struct btrfs_block_group_cache *block_group, *tmp;
6738 struct list_head *deleted_bgs;
Yan Zheng11833d62009-09-11 16:11:19 -04006739 struct extent_io_tree *unpin;
Chris Mason1a5bc162007-10-15 16:15:26 -04006740 u64 start;
6741 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05006742 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05006743
Yan Zheng11833d62009-09-11 16:11:19 -04006744 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6745 unpin = &fs_info->freed_extents[1];
6746 else
6747 unpin = &fs_info->freed_extents[0];
6748
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006749 while (!trans->aborted) {
Filipe Mananad4b450c2015-01-29 19:18:25 +00006750 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Chris Mason1a5bc162007-10-15 16:15:26 -04006751 ret = find_first_extent_bit(unpin, 0, &start, &end,
Josef Bacike6138872012-09-27 17:07:30 -04006752 EXTENT_DIRTY, NULL);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006753 if (ret) {
6754 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05006755 break;
Filipe Mananad4b450c2015-01-29 19:18:25 +00006756 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05006757
Li Dongyang5378e602011-03-24 10:24:27 +00006758 if (btrfs_test_opt(root, DISCARD))
6759 ret = btrfs_discard_extent(root, start,
6760 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05006761
David Sterbaaf6f8f62016-04-26 23:54:39 +02006762 clear_extent_dirty(unpin, start, end);
Filipe Manana678886b2014-12-07 21:31:47 +00006763 unpin_extent_range(root, start, end, true);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006764 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masonb9473432009-03-13 11:00:37 -04006765 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05006766 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006767
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006768 /*
6769 * Transaction is finished. We don't need the lock anymore. We
6770 * do need to clean up the block groups in case of a transaction
6771 * abort.
6772 */
6773 deleted_bgs = &trans->transaction->deleted_bgs;
6774 list_for_each_entry_safe(block_group, tmp, deleted_bgs, bg_list) {
6775 u64 trimmed = 0;
6776
6777 ret = -EROFS;
6778 if (!trans->aborted)
6779 ret = btrfs_discard_extent(root,
6780 block_group->key.objectid,
6781 block_group->key.offset,
6782 &trimmed);
6783
6784 list_del_init(&block_group->bg_list);
6785 btrfs_put_block_group_trimming(block_group);
6786 btrfs_put_block_group(block_group);
6787
6788 if (ret) {
6789 const char *errstr = btrfs_decode_error(ret);
6790 btrfs_warn(fs_info,
6791 "Discard failed while removing blockgroup: errno=%d %s\n",
6792 ret, errstr);
6793 }
6794 }
6795
Chris Masone20d96d2007-03-22 12:13:20 -04006796 return 0;
6797}
6798
Josef Bacikb150a4f2013-06-19 15:00:04 -04006799static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes,
6800 u64 owner, u64 root_objectid)
6801{
6802 struct btrfs_space_info *space_info;
6803 u64 flags;
6804
6805 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
6806 if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID)
6807 flags = BTRFS_BLOCK_GROUP_SYSTEM;
6808 else
6809 flags = BTRFS_BLOCK_GROUP_METADATA;
6810 } else {
6811 flags = BTRFS_BLOCK_GROUP_DATA;
6812 }
6813
6814 space_info = __find_space_info(fs_info, flags);
6815 BUG_ON(!space_info); /* Logic bug */
6816 percpu_counter_add(&space_info->total_bytes_pinned, num_bytes);
6817}
6818
6819
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006820static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
6821 struct btrfs_root *root,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006822 struct btrfs_delayed_ref_node *node, u64 parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006823 u64 root_objectid, u64 owner_objectid,
6824 u64 owner_offset, int refs_to_drop,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006825 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05006826{
Chris Masone2fa7222007-03-12 16:22:34 -04006827 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006828 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04006829 struct btrfs_fs_info *info = root->fs_info;
6830 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04006831 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006832 struct btrfs_extent_item *ei;
6833 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05006834 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006835 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05006836 int extent_slot = 0;
6837 int found_extent = 0;
6838 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006839 u32 item_size;
6840 u64 refs;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006841 u64 bytenr = node->bytenr;
6842 u64 num_bytes = node->num_bytes;
Josef Bacikfcebe452014-05-13 17:30:47 -07006843 int last_ref = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05006844 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
6845 SKINNY_METADATA);
Chris Mason037e6392007-03-07 11:50:24 -05006846
Chris Mason5caf2a02007-04-02 11:20:42 -04006847 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04006848 if (!path)
6849 return -ENOMEM;
6850
David Sterbae4058b52015-11-27 16:31:35 +01006851 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04006852 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006853
6854 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
6855 BUG_ON(!is_data && refs_to_drop != 1);
6856
Josef Bacik3173a182013-03-07 14:22:04 -05006857 if (is_data)
6858 skinny_metadata = 0;
6859
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006860 ret = lookup_extent_backref(trans, extent_root, path, &iref,
6861 bytenr, num_bytes, parent,
6862 root_objectid, owner_objectid,
6863 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05006864 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05006865 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006866 while (extent_slot >= 0) {
6867 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05006868 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006869 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05006870 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006871 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
6872 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05006873 found_extent = 1;
6874 break;
6875 }
Josef Bacik3173a182013-03-07 14:22:04 -05006876 if (key.type == BTRFS_METADATA_ITEM_KEY &&
6877 key.offset == owner_objectid) {
6878 found_extent = 1;
6879 break;
6880 }
Chris Mason952fcca2008-02-18 16:33:44 -05006881 if (path->slots[0] - extent_slot > 5)
6882 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006883 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05006884 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006885#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6886 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
6887 if (found_extent && item_size < sizeof(*ei))
6888 found_extent = 0;
6889#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04006890 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006891 BUG_ON(iref);
Chris Mason56bec292009-03-13 10:10:06 -04006892 ret = remove_extent_backref(trans, extent_root, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006893 NULL, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07006894 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06006895 if (ret) {
6896 btrfs_abort_transaction(trans, extent_root, ret);
6897 goto out;
6898 }
David Sterbab3b4aa72011-04-21 01:20:15 +02006899 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04006900 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006901
6902 key.objectid = bytenr;
6903 key.type = BTRFS_EXTENT_ITEM_KEY;
6904 key.offset = num_bytes;
6905
Josef Bacik3173a182013-03-07 14:22:04 -05006906 if (!is_data && skinny_metadata) {
6907 key.type = BTRFS_METADATA_ITEM_KEY;
6908 key.offset = owner_objectid;
6909 }
6910
Zheng Yan31840ae2008-09-23 13:14:14 -04006911 ret = btrfs_search_slot(trans, extent_root,
6912 &key, path, -1, 1);
Josef Bacik3173a182013-03-07 14:22:04 -05006913 if (ret > 0 && skinny_metadata && path->slots[0]) {
6914 /*
6915 * Couldn't find our skinny metadata item,
6916 * see if we have ye olde extent item.
6917 */
6918 path->slots[0]--;
6919 btrfs_item_key_to_cpu(path->nodes[0], &key,
6920 path->slots[0]);
6921 if (key.objectid == bytenr &&
6922 key.type == BTRFS_EXTENT_ITEM_KEY &&
6923 key.offset == num_bytes)
6924 ret = 0;
6925 }
6926
6927 if (ret > 0 && skinny_metadata) {
6928 skinny_metadata = false;
Filipe Manana9ce49a02014-04-24 15:15:28 +01006929 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05006930 key.type = BTRFS_EXTENT_ITEM_KEY;
6931 key.offset = num_bytes;
6932 btrfs_release_path(path);
6933 ret = btrfs_search_slot(trans, extent_root,
6934 &key, path, -1, 1);
6935 }
6936
Josef Bacikf3465ca2008-11-12 14:19:50 -05006937 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006938 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006939 ret, bytenr);
Josef Bacikb783e622011-07-13 15:03:50 +00006940 if (ret > 0)
6941 btrfs_print_leaf(extent_root,
6942 path->nodes[0]);
Josef Bacikf3465ca2008-11-12 14:19:50 -05006943 }
David Sterba005d6422012-09-18 07:52:32 -06006944 if (ret < 0) {
6945 btrfs_abort_transaction(trans, extent_root, ret);
6946 goto out;
6947 }
Zheng Yan31840ae2008-09-23 13:14:14 -04006948 extent_slot = path->slots[0];
6949 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306950 } else if (WARN_ON(ret == -ENOENT)) {
Chris Mason7bb86312007-12-11 09:25:06 -05006951 btrfs_print_leaf(extent_root, path->nodes[0]);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006952 btrfs_err(info,
6953 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006954 bytenr, parent, root_objectid, owner_objectid,
6955 owner_offset);
Josef Bacikc4a050b2014-03-14 16:36:53 -04006956 btrfs_abort_transaction(trans, extent_root, ret);
6957 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006958 } else {
David Sterba005d6422012-09-18 07:52:32 -06006959 btrfs_abort_transaction(trans, extent_root, ret);
6960 goto out;
Chris Mason7bb86312007-12-11 09:25:06 -05006961 }
Chris Mason5f39d392007-10-15 16:14:19 -04006962
6963 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006964 item_size = btrfs_item_size_nr(leaf, extent_slot);
6965#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6966 if (item_size < sizeof(*ei)) {
6967 BUG_ON(found_extent || extent_slot != path->slots[0]);
6968 ret = convert_extent_item_v0(trans, extent_root, path,
6969 owner_objectid, 0);
David Sterba005d6422012-09-18 07:52:32 -06006970 if (ret < 0) {
6971 btrfs_abort_transaction(trans, extent_root, ret);
6972 goto out;
6973 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006974
David Sterbab3b4aa72011-04-21 01:20:15 +02006975 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006976 path->leave_spinning = 1;
6977
6978 key.objectid = bytenr;
6979 key.type = BTRFS_EXTENT_ITEM_KEY;
6980 key.offset = num_bytes;
6981
6982 ret = btrfs_search_slot(trans, extent_root, &key, path,
6983 -1, 1);
6984 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006985 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006986 ret, bytenr);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006987 btrfs_print_leaf(extent_root, path->nodes[0]);
6988 }
David Sterba005d6422012-09-18 07:52:32 -06006989 if (ret < 0) {
6990 btrfs_abort_transaction(trans, extent_root, ret);
6991 goto out;
6992 }
6993
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006994 extent_slot = path->slots[0];
6995 leaf = path->nodes[0];
6996 item_size = btrfs_item_size_nr(leaf, extent_slot);
6997 }
6998#endif
6999 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05007000 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04007001 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05007002 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
7003 key.type == BTRFS_EXTENT_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007004 struct btrfs_tree_block_info *bi;
7005 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
7006 bi = (struct btrfs_tree_block_info *)(ei + 1);
7007 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05007008 }
7009
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007010 refs = btrfs_extent_refs(leaf, ei);
Josef Bacik32b02532013-04-24 16:38:50 -04007011 if (refs < refs_to_drop) {
7012 btrfs_err(info, "trying to drop %d refs but we only have %Lu "
David Sterba351fd352014-05-15 16:48:20 +02007013 "for bytenr %Lu", refs_to_drop, refs, bytenr);
Josef Bacik32b02532013-04-24 16:38:50 -04007014 ret = -EINVAL;
7015 btrfs_abort_transaction(trans, extent_root, ret);
7016 goto out;
7017 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007018 refs -= refs_to_drop;
7019
7020 if (refs > 0) {
7021 if (extent_op)
7022 __run_delayed_extent_op(extent_op, leaf, ei);
7023 /*
7024 * In the case of inline back ref, reference count will
7025 * be updated by remove_extent_backref
7026 */
7027 if (iref) {
7028 BUG_ON(!found_extent);
7029 } else {
7030 btrfs_set_extent_refs(leaf, ei, refs);
7031 btrfs_mark_buffer_dirty(leaf);
7032 }
7033 if (found_extent) {
7034 ret = remove_extent_backref(trans, extent_root, path,
7035 iref, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07007036 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06007037 if (ret) {
7038 btrfs_abort_transaction(trans, extent_root, ret);
7039 goto out;
7040 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007041 }
Josef Bacikb150a4f2013-06-19 15:00:04 -04007042 add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid,
7043 root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007044 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007045 if (found_extent) {
7046 BUG_ON(is_data && refs_to_drop !=
Zhaolei9ed0dea2015-08-06 22:16:24 +08007047 extent_data_ref_count(path, iref));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007048 if (iref) {
7049 BUG_ON(path->slots[0] != extent_slot);
7050 } else {
7051 BUG_ON(path->slots[0] != extent_slot + 1);
7052 path->slots[0] = extent_slot;
7053 num_to_del = 2;
7054 }
Chris Mason78fae272007-03-25 11:35:08 -04007055 }
Chris Masonb9473432009-03-13 11:00:37 -04007056
Josef Bacikfcebe452014-05-13 17:30:47 -07007057 last_ref = 1;
Chris Mason952fcca2008-02-18 16:33:44 -05007058 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
7059 num_to_del);
David Sterba005d6422012-09-18 07:52:32 -06007060 if (ret) {
7061 btrfs_abort_transaction(trans, extent_root, ret);
7062 goto out;
7063 }
David Sterbab3b4aa72011-04-21 01:20:15 +02007064 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01007065
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007066 if (is_data) {
Chris Mason459931e2008-12-10 09:10:46 -05007067 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
David Sterba005d6422012-09-18 07:52:32 -06007068 if (ret) {
7069 btrfs_abort_transaction(trans, extent_root, ret);
7070 goto out;
7071 }
Chris Mason459931e2008-12-10 09:10:46 -05007072 }
7073
Omar Sandoval1e144fb2015-09-29 20:50:37 -07007074 ret = add_to_free_space_tree(trans, root->fs_info, bytenr,
7075 num_bytes);
7076 if (ret) {
7077 btrfs_abort_transaction(trans, extent_root, ret);
7078 goto out;
7079 }
7080
Josef Bacikce93ec52014-11-17 15:45:48 -05007081 ret = update_block_group(trans, root, bytenr, num_bytes, 0);
David Sterba005d6422012-09-18 07:52:32 -06007082 if (ret) {
7083 btrfs_abort_transaction(trans, extent_root, ret);
7084 goto out;
7085 }
Chris Masona28ec192007-03-06 20:08:01 -05007086 }
Josef Bacikfcebe452014-05-13 17:30:47 -07007087 btrfs_release_path(path);
7088
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007089out:
Chris Mason5caf2a02007-04-02 11:20:42 -04007090 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05007091 return ret;
7092}
7093
7094/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04007095 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04007096 * delayed ref for that extent as well. This searches the delayed ref tree for
7097 * a given extent, and if there are no other delayed refs to be processed, it
7098 * removes it from the tree.
7099 */
7100static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
7101 struct btrfs_root *root, u64 bytenr)
7102{
7103 struct btrfs_delayed_ref_head *head;
7104 struct btrfs_delayed_ref_root *delayed_refs;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007105 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04007106
7107 delayed_refs = &trans->transaction->delayed_refs;
7108 spin_lock(&delayed_refs->lock);
7109 head = btrfs_find_delayed_ref_head(trans, bytenr);
7110 if (!head)
Chris Masoncf93da72014-01-29 07:02:40 -08007111 goto out_delayed_unlock;
Chris Mason1887be62009-03-13 10:11:24 -04007112
Josef Bacikd7df2c72014-01-23 09:21:38 -05007113 spin_lock(&head->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08007114 if (!list_empty(&head->ref_list))
Chris Mason1887be62009-03-13 10:11:24 -04007115 goto out;
7116
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007117 if (head->extent_op) {
7118 if (!head->must_insert_reserved)
7119 goto out;
Miao Xie78a61842012-11-21 02:21:28 +00007120 btrfs_free_delayed_extent_op(head->extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007121 head->extent_op = NULL;
7122 }
7123
Chris Mason1887be62009-03-13 10:11:24 -04007124 /*
7125 * waiting for the lock here would deadlock. If someone else has it
7126 * locked they are already in the process of dropping it anyway
7127 */
7128 if (!mutex_trylock(&head->mutex))
7129 goto out;
7130
7131 /*
7132 * at this point we have a head with no other entries. Go
7133 * ahead and process it.
7134 */
7135 head->node.in_tree = 0;
Liu Boc46effa2013-10-14 12:59:45 +08007136 rb_erase(&head->href_node, &delayed_refs->href_root);
Chris Masonc3e69d52009-03-13 10:17:05 -04007137
Josef Bacikd7df2c72014-01-23 09:21:38 -05007138 atomic_dec(&delayed_refs->num_entries);
Chris Mason1887be62009-03-13 10:11:24 -04007139
7140 /*
7141 * we don't take a ref on the node because we're removing it from the
7142 * tree, so we just steal the ref the tree was holding.
7143 */
Chris Masonc3e69d52009-03-13 10:17:05 -04007144 delayed_refs->num_heads--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05007145 if (head->processing == 0)
Chris Masonc3e69d52009-03-13 10:17:05 -04007146 delayed_refs->num_heads_ready--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05007147 head->processing = 0;
7148 spin_unlock(&head->lock);
Chris Mason1887be62009-03-13 10:11:24 -04007149 spin_unlock(&delayed_refs->lock);
7150
Yan, Zhengf0486c62010-05-16 10:46:25 -04007151 BUG_ON(head->extent_op);
7152 if (head->must_insert_reserved)
7153 ret = 1;
7154
7155 mutex_unlock(&head->mutex);
Chris Mason1887be62009-03-13 10:11:24 -04007156 btrfs_put_delayed_ref(&head->node);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007157 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04007158out:
Josef Bacikd7df2c72014-01-23 09:21:38 -05007159 spin_unlock(&head->lock);
Chris Masoncf93da72014-01-29 07:02:40 -08007160
7161out_delayed_unlock:
Chris Mason1887be62009-03-13 10:11:24 -04007162 spin_unlock(&delayed_refs->lock);
7163 return 0;
7164}
7165
Yan, Zhengf0486c62010-05-16 10:46:25 -04007166void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
7167 struct btrfs_root *root,
7168 struct extent_buffer *buf,
Jan Schmidt5581a512012-05-16 17:04:52 +02007169 u64 parent, int last_ref)
Yan, Zhengf0486c62010-05-16 10:46:25 -04007170{
Josef Bacikb150a4f2013-06-19 15:00:04 -04007171 int pin = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007172 int ret;
7173
7174 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007175 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
7176 buf->start, buf->len,
7177 parent, root->root_key.objectid,
7178 btrfs_header_level(buf),
Filipe Mananab06c4bf2015-10-23 07:52:54 +01007179 BTRFS_DROP_DELAYED_REF, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007180 BUG_ON(ret); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007181 }
7182
7183 if (!last_ref)
7184 return;
7185
Yan, Zhengf0486c62010-05-16 10:46:25 -04007186 if (btrfs_header_generation(buf) == trans->transid) {
Filipe Manana62198722015-01-06 20:18:45 +00007187 struct btrfs_block_group_cache *cache;
7188
Yan, Zhengf0486c62010-05-16 10:46:25 -04007189 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
7190 ret = check_ref_cleanup(trans, root, buf->start);
7191 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04007192 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007193 }
7194
Filipe Manana62198722015-01-06 20:18:45 +00007195 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
7196
Yan, Zhengf0486c62010-05-16 10:46:25 -04007197 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
7198 pin_down_extent(root, cache, buf->start, buf->len, 1);
Filipe Manana62198722015-01-06 20:18:45 +00007199 btrfs_put_block_group(cache);
Josef Bacik37be25b2011-08-05 10:25:38 -04007200 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007201 }
7202
7203 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
7204
7205 btrfs_add_free_space(cache, buf->start, buf->len);
Miao Xiee570fd22014-06-19 10:42:50 +08007206 btrfs_update_reserved_bytes(cache, buf->len, RESERVE_FREE, 0);
Filipe Manana62198722015-01-06 20:18:45 +00007207 btrfs_put_block_group(cache);
Josef Bacik0be5dc62013-10-07 15:18:52 -04007208 trace_btrfs_reserved_extent_free(root, buf->start, buf->len);
Josef Bacikb150a4f2013-06-19 15:00:04 -04007209 pin = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007210 }
7211out:
Josef Bacikb150a4f2013-06-19 15:00:04 -04007212 if (pin)
7213 add_pinned_bytes(root->fs_info, buf->len,
7214 btrfs_header_level(buf),
7215 root->root_key.objectid);
7216
Josef Bacika826d6d2011-03-16 13:42:43 -04007217 /*
7218 * Deleting the buffer, clear the corrupt flag since it doesn't matter
7219 * anymore.
7220 */
7221 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007222}
7223
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007224/* Can return -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007225int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root,
7226 u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01007227 u64 owner, u64 offset)
Chris Mason925baed2008-06-25 16:01:30 -04007228{
7229 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007230 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason925baed2008-06-25 16:01:30 -04007231
David Sterbafccb84c2014-09-29 23:53:21 +02007232 if (btrfs_test_is_dummy_root(root))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04007233 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02007234
Josef Bacikb150a4f2013-06-19 15:00:04 -04007235 add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid);
7236
Chris Mason56bec292009-03-13 10:10:06 -04007237 /*
7238 * tree log blocks never actually go into the extent allocation
7239 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04007240 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007241 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
7242 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04007243 /* unlocks the pinned mutex */
Yan Zheng11833d62009-09-11 16:11:19 -04007244 btrfs_pin_extent(root, bytenr, num_bytes, 1);
Chris Mason56bec292009-03-13 10:10:06 -04007245 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007246 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007247 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
7248 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007249 parent, root_objectid, (int)owner,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01007250 BTRFS_DROP_DELAYED_REF, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007251 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007252 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
7253 num_bytes,
7254 parent, root_objectid, owner,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08007255 offset, 0,
7256 BTRFS_DROP_DELAYED_REF, NULL);
Chris Mason56bec292009-03-13 10:10:06 -04007257 }
Chris Mason925baed2008-06-25 16:01:30 -04007258 return ret;
7259}
7260
Chris Masonfec577f2007-02-26 10:40:21 -05007261/*
Josef Bacik817d52f2009-07-13 21:29:25 -04007262 * when we wait for progress in the block group caching, its because
7263 * our allocation attempt failed at least once. So, we must sleep
7264 * and let some progress happen before we try again.
7265 *
7266 * This function will sleep at least once waiting for new free space to
7267 * show up, and then it will check the block group free space numbers
7268 * for our min num_bytes. Another option is to have it go ahead
7269 * and look in the rbtree for a free extent of a given size, but this
7270 * is a good start.
Josef Bacik36cce922013-08-05 11:15:21 -04007271 *
7272 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
7273 * any of the information in this block group.
Josef Bacik817d52f2009-07-13 21:29:25 -04007274 */
Josef Bacik36cce922013-08-05 11:15:21 -04007275static noinline void
Josef Bacik817d52f2009-07-13 21:29:25 -04007276wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
7277 u64 num_bytes)
7278{
Yan Zheng11833d62009-09-11 16:11:19 -04007279 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04007280
Yan Zheng11833d62009-09-11 16:11:19 -04007281 caching_ctl = get_caching_control(cache);
7282 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007283 return;
Josef Bacik817d52f2009-07-13 21:29:25 -04007284
Yan Zheng11833d62009-09-11 16:11:19 -04007285 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08007286 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04007287
7288 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -04007289}
7290
7291static noinline int
7292wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
7293{
7294 struct btrfs_caching_control *caching_ctl;
Josef Bacik36cce922013-08-05 11:15:21 -04007295 int ret = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007296
7297 caching_ctl = get_caching_control(cache);
7298 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007299 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007300
7301 wait_event(caching_ctl->wait, block_group_cache_done(cache));
Josef Bacik36cce922013-08-05 11:15:21 -04007302 if (cache->cached == BTRFS_CACHE_ERROR)
7303 ret = -EIO;
Yan Zheng11833d62009-09-11 16:11:19 -04007304 put_caching_control(caching_ctl);
Josef Bacik36cce922013-08-05 11:15:21 -04007305 return ret;
Josef Bacik817d52f2009-07-13 21:29:25 -04007306}
7307
Liu Bo31e50222012-11-21 14:18:10 +00007308int __get_raid_index(u64 flags)
Yan, Zhengb742bb82010-05-16 10:46:24 -04007309{
Ilya Dryomov7738a532012-03-27 17:09:17 +03007310 if (flags & BTRFS_BLOCK_GROUP_RAID10)
Miao Xiee6ec7162013-01-17 05:38:51 +00007311 return BTRFS_RAID_RAID10;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007312 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
Miao Xiee6ec7162013-01-17 05:38:51 +00007313 return BTRFS_RAID_RAID1;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007314 else if (flags & BTRFS_BLOCK_GROUP_DUP)
Miao Xiee6ec7162013-01-17 05:38:51 +00007315 return BTRFS_RAID_DUP;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007316 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
Miao Xiee6ec7162013-01-17 05:38:51 +00007317 return BTRFS_RAID_RAID0;
David Woodhouse53b381b2013-01-29 18:40:14 -05007318 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
Chris Masone942f882013-02-20 14:06:05 -05007319 return BTRFS_RAID_RAID5;
David Woodhouse53b381b2013-01-29 18:40:14 -05007320 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
Chris Masone942f882013-02-20 14:06:05 -05007321 return BTRFS_RAID_RAID6;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007322
Chris Masone942f882013-02-20 14:06:05 -05007323 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
Yan, Zhengb742bb82010-05-16 10:46:24 -04007324}
7325
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04007326int get_block_group_index(struct btrfs_block_group_cache *cache)
Ilya Dryomov7738a532012-03-27 17:09:17 +03007327{
Liu Bo31e50222012-11-21 14:18:10 +00007328 return __get_raid_index(cache->flags);
Ilya Dryomov7738a532012-03-27 17:09:17 +03007329}
7330
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04007331static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = {
7332 [BTRFS_RAID_RAID10] = "raid10",
7333 [BTRFS_RAID_RAID1] = "raid1",
7334 [BTRFS_RAID_DUP] = "dup",
7335 [BTRFS_RAID_RAID0] = "raid0",
7336 [BTRFS_RAID_SINGLE] = "single",
7337 [BTRFS_RAID_RAID5] = "raid5",
7338 [BTRFS_RAID_RAID6] = "raid6",
7339};
7340
Jeff Mahoney1b8e5df2013-11-20 16:50:23 -05007341static const char *get_raid_name(enum btrfs_raid_types type)
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04007342{
7343 if (type >= BTRFS_NR_RAID_TYPES)
7344 return NULL;
7345
7346 return btrfs_raid_type_names[type];
7347}
7348
Josef Bacik817d52f2009-07-13 21:29:25 -04007349enum btrfs_loop_type {
Josef Bacik285ff5a2012-01-13 15:27:45 -05007350 LOOP_CACHING_NOWAIT = 0,
7351 LOOP_CACHING_WAIT = 1,
7352 LOOP_ALLOC_CHUNK = 2,
7353 LOOP_NO_EMPTY_SIZE = 3,
Josef Bacik817d52f2009-07-13 21:29:25 -04007354};
7355
Miao Xiee570fd22014-06-19 10:42:50 +08007356static inline void
7357btrfs_lock_block_group(struct btrfs_block_group_cache *cache,
7358 int delalloc)
7359{
7360 if (delalloc)
7361 down_read(&cache->data_rwsem);
7362}
7363
7364static inline void
7365btrfs_grab_block_group(struct btrfs_block_group_cache *cache,
7366 int delalloc)
7367{
7368 btrfs_get_block_group(cache);
7369 if (delalloc)
7370 down_read(&cache->data_rwsem);
7371}
7372
7373static struct btrfs_block_group_cache *
7374btrfs_lock_cluster(struct btrfs_block_group_cache *block_group,
7375 struct btrfs_free_cluster *cluster,
7376 int delalloc)
7377{
Sudip Mukherjee89771cc2016-02-16 13:32:47 +05307378 struct btrfs_block_group_cache *used_bg = NULL;
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007379
Miao Xiee570fd22014-06-19 10:42:50 +08007380 spin_lock(&cluster->refill_lock);
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007381 while (1) {
7382 used_bg = cluster->block_group;
7383 if (!used_bg)
7384 return NULL;
7385
7386 if (used_bg == block_group)
7387 return used_bg;
7388
7389 btrfs_get_block_group(used_bg);
7390
7391 if (!delalloc)
7392 return used_bg;
7393
7394 if (down_read_trylock(&used_bg->data_rwsem))
7395 return used_bg;
7396
7397 spin_unlock(&cluster->refill_lock);
7398
7399 down_read(&used_bg->data_rwsem);
7400
7401 spin_lock(&cluster->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08007402 if (used_bg == cluster->block_group)
7403 return used_bg;
7404
7405 up_read(&used_bg->data_rwsem);
7406 btrfs_put_block_group(used_bg);
7407 }
Miao Xiee570fd22014-06-19 10:42:50 +08007408}
7409
7410static inline void
7411btrfs_release_block_group(struct btrfs_block_group_cache *cache,
7412 int delalloc)
7413{
7414 if (delalloc)
7415 up_read(&cache->data_rwsem);
7416 btrfs_put_block_group(cache);
7417}
7418
Josef Bacik817d52f2009-07-13 21:29:25 -04007419/*
Chris Masonfec577f2007-02-26 10:40:21 -05007420 * walks the btree of allocated extents and find a hole of a given size.
7421 * The key ins is changed to record the hole:
Miao Xiea4820392013-09-09 13:19:42 +08007422 * ins->objectid == start position
Chris Mason62e27492007-03-15 12:56:47 -04007423 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Miao Xiea4820392013-09-09 13:19:42 +08007424 * ins->offset == the size of the hole.
Chris Masonfec577f2007-02-26 10:40:21 -05007425 * Any available blocks before search_start are skipped.
Miao Xiea4820392013-09-09 13:19:42 +08007426 *
7427 * If there is no suitable free space, we will record the max size of
7428 * the free space extent currently.
Chris Masonfec577f2007-02-26 10:40:21 -05007429 */
Josef Bacik00361582013-08-14 14:02:47 -04007430static noinline int find_free_extent(struct btrfs_root *orig_root,
Chris Mason98ed5172008-01-03 10:01:48 -05007431 u64 num_bytes, u64 empty_size,
Chris Mason98ed5172008-01-03 10:01:48 -05007432 u64 hint_byte, struct btrfs_key *ins,
Miao Xiee570fd22014-06-19 10:42:50 +08007433 u64 flags, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05007434{
Josef Bacik80eb2342008-10-29 14:49:05 -04007435 int ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05007436 struct btrfs_root *root = orig_root->fs_info->extent_root;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007437 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04007438 struct btrfs_block_group_cache *block_group = NULL;
Josef Bacik81c9ad22012-01-18 10:56:06 -05007439 u64 search_start = 0;
Miao Xiea4820392013-09-09 13:19:42 +08007440 u64 max_extent_size = 0;
Josef Bacikc759c4e2015-10-02 15:25:10 -04007441 u64 empty_cluster = 0;
Josef Bacik80eb2342008-10-29 14:49:05 -04007442 struct btrfs_space_info *space_info;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007443 int loop = 0;
David Sterbab6919a52013-04-29 13:39:40 +00007444 int index = __get_raid_index(flags);
7445 int alloc_type = (flags & BTRFS_BLOCK_GROUP_DATA) ?
Josef Bacikfb25e912011-07-26 17:00:46 -04007446 RESERVE_ALLOC_NO_ACCOUNT : RESERVE_ALLOC;
Josef Bacik0a243252009-09-11 16:11:20 -04007447 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007448 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04007449 bool use_cluster = true;
Miao Xie60d2adb2011-09-09 17:34:35 +08007450 bool have_caching_bg = false;
chandan13a0db52015-11-02 13:59:46 +05307451 bool orig_have_caching_bg = false;
Josef Bacika5e681d2015-10-01 14:54:10 -04007452 bool full_search = false;
Chris Masonfec577f2007-02-26 10:40:21 -05007453
Chris Masondb945352007-10-15 16:15:53 -04007454 WARN_ON(num_bytes < root->sectorsize);
David Sterba962a2982014-06-04 18:41:45 +02007455 ins->type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacik80eb2342008-10-29 14:49:05 -04007456 ins->objectid = 0;
7457 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04007458
David Sterbab6919a52013-04-29 13:39:40 +00007459 trace_find_free_extent(orig_root, num_bytes, empty_size, flags);
Josef Bacik3f7de032011-11-10 08:29:20 -05007460
David Sterbab6919a52013-04-29 13:39:40 +00007461 space_info = __find_space_info(root->fs_info, flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007462 if (!space_info) {
David Sterbab6919a52013-04-29 13:39:40 +00007463 btrfs_err(root->fs_info, "No space info for %llu", flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007464 return -ENOSPC;
7465 }
Josef Bacik2552d172009-04-03 10:14:19 -04007466
Josef Bacik67377732010-09-16 16:19:09 -04007467 /*
Josef Bacik4f4db212015-09-29 11:40:47 -04007468 * If our free space is heavily fragmented we may not be able to make
7469 * big contiguous allocations, so instead of doing the expensive search
7470 * for free space, simply return ENOSPC with our max_extent_size so we
7471 * can go ahead and search for a more manageable chunk.
7472 *
7473 * If our max_extent_size is large enough for our allocation simply
7474 * disable clustering since we will likely not be able to find enough
7475 * space to create a cluster and induce latency trying.
Josef Bacik67377732010-09-16 16:19:09 -04007476 */
Josef Bacik4f4db212015-09-29 11:40:47 -04007477 if (unlikely(space_info->max_extent_size)) {
7478 spin_lock(&space_info->lock);
7479 if (space_info->max_extent_size &&
7480 num_bytes > space_info->max_extent_size) {
7481 ins->offset = space_info->max_extent_size;
7482 spin_unlock(&space_info->lock);
7483 return -ENOSPC;
7484 } else if (space_info->max_extent_size) {
7485 use_cluster = false;
7486 }
7487 spin_unlock(&space_info->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007488 }
7489
Josef Bacikc759c4e2015-10-02 15:25:10 -04007490 last_ptr = fetch_cluster_info(orig_root, space_info, &empty_cluster);
Chris Mason239b14b2008-03-24 15:02:07 -04007491 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007492 spin_lock(&last_ptr->lock);
7493 if (last_ptr->block_group)
7494 hint_byte = last_ptr->window_start;
Josef Bacikc759c4e2015-10-02 15:25:10 -04007495 if (last_ptr->fragmented) {
7496 /*
7497 * We still set window_start so we can keep track of the
7498 * last place we found an allocation to try and save
7499 * some time.
7500 */
7501 hint_byte = last_ptr->window_start;
7502 use_cluster = false;
7503 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007504 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007505 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007506
Chris Masona061fc82008-05-07 11:43:44 -04007507 search_start = max(search_start, first_logical_byte(root, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04007508 search_start = max(search_start, hint_byte);
Josef Bacik2552d172009-04-03 10:14:19 -04007509 if (search_start == hint_byte) {
Josef Bacik2552d172009-04-03 10:14:19 -04007510 block_group = btrfs_lookup_block_group(root->fs_info,
7511 search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04007512 /*
7513 * we don't want to use the block group if it doesn't match our
7514 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05007515 *
7516 * However if we are re-searching with an ideal block group
7517 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04007518 */
David Sterbab6919a52013-04-29 13:39:40 +00007519 if (block_group && block_group_bits(block_group, flags) &&
Josef Bacik285ff5a2012-01-13 15:27:45 -05007520 block_group->cached != BTRFS_CACHE_NO) {
Josef Bacik2552d172009-04-03 10:14:19 -04007521 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04007522 if (list_empty(&block_group->list) ||
7523 block_group->ro) {
7524 /*
7525 * someone is removing this block group,
7526 * we can't jump into the have_block_group
7527 * target because our list pointers are not
7528 * valid
7529 */
7530 btrfs_put_block_group(block_group);
7531 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05007532 } else {
Yan, Zhengb742bb82010-05-16 10:46:24 -04007533 index = get_block_group_index(block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08007534 btrfs_lock_block_group(block_group, delalloc);
Chris Mason44fb5512009-06-04 15:34:51 -04007535 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05007536 }
Josef Bacik2552d172009-04-03 10:14:19 -04007537 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007538 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04007539 }
Chris Mason42e70e72008-11-07 18:17:11 -05007540 }
Josef Bacik2552d172009-04-03 10:14:19 -04007541search:
Miao Xie60d2adb2011-09-09 17:34:35 +08007542 have_caching_bg = false;
Josef Bacika5e681d2015-10-01 14:54:10 -04007543 if (index == 0 || index == __get_raid_index(flags))
7544 full_search = true;
Josef Bacik80eb2342008-10-29 14:49:05 -04007545 down_read(&space_info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04007546 list_for_each_entry(block_group, &space_info->block_groups[index],
7547 list) {
Josef Bacik6226cb02009-04-03 10:14:18 -04007548 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04007549 int cached;
Chris Mason8a1413a2008-11-10 16:13:54 -05007550
Miao Xiee570fd22014-06-19 10:42:50 +08007551 btrfs_grab_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007552 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05007553
Chris Mason83a50de2010-12-13 15:06:46 -05007554 /*
7555 * this can happen if we end up cycling through all the
7556 * raid types, but we want to make sure we only allocate
7557 * for the proper type.
7558 */
David Sterbab6919a52013-04-29 13:39:40 +00007559 if (!block_group_bits(block_group, flags)) {
Chris Mason83a50de2010-12-13 15:06:46 -05007560 u64 extra = BTRFS_BLOCK_GROUP_DUP |
7561 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05007562 BTRFS_BLOCK_GROUP_RAID5 |
7563 BTRFS_BLOCK_GROUP_RAID6 |
Chris Mason83a50de2010-12-13 15:06:46 -05007564 BTRFS_BLOCK_GROUP_RAID10;
7565
7566 /*
7567 * if they asked for extra copies and this block group
7568 * doesn't provide them, bail. This does allow us to
7569 * fill raid0 from raid1.
7570 */
David Sterbab6919a52013-04-29 13:39:40 +00007571 if ((flags & extra) && !(block_group->flags & extra))
Chris Mason83a50de2010-12-13 15:06:46 -05007572 goto loop;
7573 }
7574
Josef Bacik2552d172009-04-03 10:14:19 -04007575have_block_group:
Josef Bacik291c7d22011-11-14 13:52:14 -05007576 cached = block_group_cache_done(block_group);
7577 if (unlikely(!cached)) {
Josef Bacika5e681d2015-10-01 14:54:10 -04007578 have_caching_bg = true;
Liu Bof6373bf2012-12-27 09:01:18 +00007579 ret = cache_block_group(block_group, 0);
Chris Mason1d4284b2012-03-28 20:31:37 -04007580 BUG_ON(ret < 0);
7581 ret = 0;
Josef Bacikea6a4782008-11-20 12:16:16 -05007582 }
7583
Josef Bacik36cce922013-08-05 11:15:21 -04007584 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
7585 goto loop;
Josef Bacikea6a4782008-11-20 12:16:16 -05007586 if (unlikely(block_group->ro))
Josef Bacik2552d172009-04-03 10:14:19 -04007587 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007588
Josef Bacik0a243252009-09-11 16:11:20 -04007589 /*
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007590 * Ok we want to try and use the cluster allocator, so
7591 * lets look there
Josef Bacik0a243252009-09-11 16:11:20 -04007592 */
Josef Bacikc759c4e2015-10-02 15:25:10 -04007593 if (last_ptr && use_cluster) {
Miao Xie215a63d2014-01-15 20:00:56 +08007594 struct btrfs_block_group_cache *used_block_group;
Chris Mason8de972b2013-01-04 15:39:43 -05007595 unsigned long aligned_cluster;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007596 /*
7597 * the refill lock keeps out other
7598 * people trying to start a new cluster
7599 */
Miao Xiee570fd22014-06-19 10:42:50 +08007600 used_block_group = btrfs_lock_cluster(block_group,
7601 last_ptr,
7602 delalloc);
7603 if (!used_block_group)
Chris Mason44fb5512009-06-04 15:34:51 -04007604 goto refill_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -04007605
Miao Xiee570fd22014-06-19 10:42:50 +08007606 if (used_block_group != block_group &&
7607 (used_block_group->ro ||
7608 !block_group_bits(used_block_group, flags)))
7609 goto release_cluster;
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05007610
7611 offset = btrfs_alloc_from_cluster(used_block_group,
Miao Xiea4820392013-09-09 13:19:42 +08007612 last_ptr,
7613 num_bytes,
7614 used_block_group->key.objectid,
7615 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007616 if (offset) {
7617 /* we have a block, we're done */
7618 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05007619 trace_btrfs_reserve_extent_cluster(root,
Miao Xie89d43462014-01-15 20:00:57 +08007620 used_block_group,
7621 search_start, num_bytes);
Miao Xie215a63d2014-01-15 20:00:56 +08007622 if (used_block_group != block_group) {
Miao Xiee570fd22014-06-19 10:42:50 +08007623 btrfs_release_block_group(block_group,
7624 delalloc);
Miao Xie215a63d2014-01-15 20:00:56 +08007625 block_group = used_block_group;
7626 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007627 goto checks;
7628 }
7629
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05007630 WARN_ON(last_ptr->block_group != used_block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08007631release_cluster:
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007632 /* If we are on LOOP_NO_EMPTY_SIZE, we can't
7633 * set up a new clusters, so lets just skip it
7634 * and let the allocator find whatever block
7635 * it can find. If we reach this point, we
7636 * will have tried the cluster allocator
7637 * plenty of times and not have found
7638 * anything, so we are likely way too
7639 * fragmented for the clustering stuff to find
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007640 * anything.
7641 *
7642 * However, if the cluster is taken from the
7643 * current block group, release the cluster
7644 * first, so that we stand a better chance of
7645 * succeeding in the unclustered
7646 * allocation. */
7647 if (loop >= LOOP_NO_EMPTY_SIZE &&
Miao Xiee570fd22014-06-19 10:42:50 +08007648 used_block_group != block_group) {
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007649 spin_unlock(&last_ptr->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08007650 btrfs_release_block_group(used_block_group,
7651 delalloc);
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007652 goto unclustered_alloc;
7653 }
7654
Chris Masonfa9c0d792009-04-03 09:47:43 -04007655 /*
7656 * this cluster didn't work out, free it and
7657 * start over
7658 */
7659 btrfs_return_cluster_to_free_space(NULL, last_ptr);
7660
Miao Xiee570fd22014-06-19 10:42:50 +08007661 if (used_block_group != block_group)
7662 btrfs_release_block_group(used_block_group,
7663 delalloc);
7664refill_cluster:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007665 if (loop >= LOOP_NO_EMPTY_SIZE) {
7666 spin_unlock(&last_ptr->refill_lock);
7667 goto unclustered_alloc;
7668 }
7669
Chris Mason8de972b2013-01-04 15:39:43 -05007670 aligned_cluster = max_t(unsigned long,
7671 empty_cluster + empty_size,
7672 block_group->full_stripe_len);
7673
Chris Masonfa9c0d792009-04-03 09:47:43 -04007674 /* allocate a cluster in this block group */
Josef Bacik00361582013-08-14 14:02:47 -04007675 ret = btrfs_find_space_cluster(root, block_group,
7676 last_ptr, search_start,
7677 num_bytes,
7678 aligned_cluster);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007679 if (ret == 0) {
7680 /*
7681 * now pull our allocation out of this
7682 * cluster
7683 */
7684 offset = btrfs_alloc_from_cluster(block_group,
Miao Xiea4820392013-09-09 13:19:42 +08007685 last_ptr,
7686 num_bytes,
7687 search_start,
7688 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007689 if (offset) {
7690 /* we found one, proceed */
7691 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05007692 trace_btrfs_reserve_extent_cluster(root,
7693 block_group, search_start,
7694 num_bytes);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007695 goto checks;
7696 }
Josef Bacik0a243252009-09-11 16:11:20 -04007697 } else if (!cached && loop > LOOP_CACHING_NOWAIT
7698 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04007699 spin_unlock(&last_ptr->refill_lock);
7700
Josef Bacik0a243252009-09-11 16:11:20 -04007701 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04007702 wait_block_group_cache_progress(block_group,
7703 num_bytes + empty_cluster + empty_size);
7704 goto have_block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007705 }
Josef Bacik817d52f2009-07-13 21:29:25 -04007706
Chris Masonfa9c0d792009-04-03 09:47:43 -04007707 /*
7708 * at this point we either didn't find a cluster
7709 * or we weren't able to allocate a block from our
7710 * cluster. Free the cluster we've been trying
7711 * to use, and go to the next block group
7712 */
Josef Bacik0a243252009-09-11 16:11:20 -04007713 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007714 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04007715 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007716 }
7717
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007718unclustered_alloc:
Josef Bacikc759c4e2015-10-02 15:25:10 -04007719 /*
7720 * We are doing an unclustered alloc, set the fragmented flag so
7721 * we don't bother trying to setup a cluster again until we get
7722 * more space.
7723 */
7724 if (unlikely(last_ptr)) {
7725 spin_lock(&last_ptr->lock);
7726 last_ptr->fragmented = 1;
7727 spin_unlock(&last_ptr->lock);
7728 }
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007729 spin_lock(&block_group->free_space_ctl->tree_lock);
7730 if (cached &&
7731 block_group->free_space_ctl->free_space <
7732 num_bytes + empty_cluster + empty_size) {
Miao Xiea4820392013-09-09 13:19:42 +08007733 if (block_group->free_space_ctl->free_space >
7734 max_extent_size)
7735 max_extent_size =
7736 block_group->free_space_ctl->free_space;
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007737 spin_unlock(&block_group->free_space_ctl->tree_lock);
7738 goto loop;
7739 }
7740 spin_unlock(&block_group->free_space_ctl->tree_lock);
7741
Josef Bacik6226cb02009-04-03 10:14:18 -04007742 offset = btrfs_find_space_for_alloc(block_group, search_start,
Miao Xiea4820392013-09-09 13:19:42 +08007743 num_bytes, empty_size,
7744 &max_extent_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007745 /*
7746 * If we didn't find a chunk, and we haven't failed on this
7747 * block group before, and this block group is in the middle of
7748 * caching and we are ok with waiting, then go ahead and wait
7749 * for progress to be made, and set failed_alloc to true.
7750 *
7751 * If failed_alloc is true then we've already waited on this
7752 * block group once and should move on to the next block group.
7753 */
7754 if (!offset && !failed_alloc && !cached &&
7755 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04007756 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007757 num_bytes + empty_size);
7758 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04007759 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007760 } else if (!offset) {
7761 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04007762 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007763checks:
David Sterba4e54b172014-06-05 01:39:19 +02007764 search_start = ALIGN(offset, root->stripesize);
Chris Masone37c9e62007-05-09 20:13:14 -04007765
Josef Bacik2552d172009-04-03 10:14:19 -04007766 /* move on to the next group */
7767 if (search_start + num_bytes >
Miao Xie215a63d2014-01-15 20:00:56 +08007768 block_group->key.objectid + block_group->key.offset) {
7769 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04007770 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04007771 }
Josef Bacik80eb2342008-10-29 14:49:05 -04007772
Josef Bacik6226cb02009-04-03 10:14:18 -04007773 if (offset < search_start)
Miao Xie215a63d2014-01-15 20:00:56 +08007774 btrfs_add_free_space(block_group, offset,
Josef Bacik6226cb02009-04-03 10:14:18 -04007775 search_start - offset);
7776 BUG_ON(offset > search_start);
7777
Miao Xie215a63d2014-01-15 20:00:56 +08007778 ret = btrfs_update_reserved_bytes(block_group, num_bytes,
Miao Xiee570fd22014-06-19 10:42:50 +08007779 alloc_type, delalloc);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007780 if (ret == -EAGAIN) {
Miao Xie215a63d2014-01-15 20:00:56 +08007781 btrfs_add_free_space(block_group, offset, num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007782 goto loop;
7783 }
Filipe Manana9cfa3e32016-04-26 15:39:32 +01007784 btrfs_inc_block_group_reservations(block_group);
Yan Zheng11833d62009-09-11 16:11:19 -04007785
Josef Bacik2552d172009-04-03 10:14:19 -04007786 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007787 ins->objectid = search_start;
7788 ins->offset = num_bytes;
7789
Josef Bacik3f7de032011-11-10 08:29:20 -05007790 trace_btrfs_reserve_extent(orig_root, block_group,
7791 search_start, num_bytes);
Miao Xiee570fd22014-06-19 10:42:50 +08007792 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007793 break;
7794loop:
Josef Bacik0a243252009-09-11 16:11:20 -04007795 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007796 failed_alloc = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04007797 BUG_ON(index != get_block_group_index(block_group));
Miao Xiee570fd22014-06-19 10:42:50 +08007798 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007799 }
7800 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05007801
chandan13a0db52015-11-02 13:59:46 +05307802 if ((loop == LOOP_CACHING_NOWAIT) && have_caching_bg
7803 && !orig_have_caching_bg)
7804 orig_have_caching_bg = true;
7805
Miao Xie60d2adb2011-09-09 17:34:35 +08007806 if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg)
7807 goto search;
7808
Yan, Zhengb742bb82010-05-16 10:46:24 -04007809 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
7810 goto search;
7811
Josef Bacik285ff5a2012-01-13 15:27:45 -05007812 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05007813 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
7814 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04007815 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
7816 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
7817 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
7818 * again
Chris Masonfa9c0d792009-04-03 09:47:43 -04007819 */
Josef Bacik723bda22011-05-27 16:11:38 -04007820 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) {
Yan, Zhengb742bb82010-05-16 10:46:24 -04007821 index = 0;
Josef Bacika5e681d2015-10-01 14:54:10 -04007822 if (loop == LOOP_CACHING_NOWAIT) {
7823 /*
7824 * We want to skip the LOOP_CACHING_WAIT step if we
Nicholas D Steeves01327612016-05-19 21:18:45 -04007825 * don't have any uncached bgs and we've already done a
Josef Bacika5e681d2015-10-01 14:54:10 -04007826 * full search through.
7827 */
chandan13a0db52015-11-02 13:59:46 +05307828 if (orig_have_caching_bg || !full_search)
Josef Bacika5e681d2015-10-01 14:54:10 -04007829 loop = LOOP_CACHING_WAIT;
7830 else
7831 loop = LOOP_ALLOC_CHUNK;
7832 } else {
7833 loop++;
7834 }
7835
Josef Bacik817d52f2009-07-13 21:29:25 -04007836 if (loop == LOOP_ALLOC_CHUNK) {
Josef Bacik00361582013-08-14 14:02:47 -04007837 struct btrfs_trans_handle *trans;
Wang Shilongf017f152014-03-13 13:19:47 +08007838 int exist = 0;
Josef Bacik00361582013-08-14 14:02:47 -04007839
Wang Shilongf017f152014-03-13 13:19:47 +08007840 trans = current->journal_info;
7841 if (trans)
7842 exist = 1;
7843 else
7844 trans = btrfs_join_transaction(root);
7845
Josef Bacik00361582013-08-14 14:02:47 -04007846 if (IS_ERR(trans)) {
7847 ret = PTR_ERR(trans);
7848 goto out;
7849 }
7850
David Sterbab6919a52013-04-29 13:39:40 +00007851 ret = do_chunk_alloc(trans, root, flags,
Josef Bacikea658ba2012-09-11 16:57:25 -04007852 CHUNK_ALLOC_FORCE);
Josef Bacika5e681d2015-10-01 14:54:10 -04007853
7854 /*
7855 * If we can't allocate a new chunk we've already looped
7856 * through at least once, move on to the NO_EMPTY_SIZE
7857 * case.
7858 */
7859 if (ret == -ENOSPC)
7860 loop = LOOP_NO_EMPTY_SIZE;
7861
Josef Bacikea658ba2012-09-11 16:57:25 -04007862 /*
7863 * Do not bail out on ENOSPC since we
7864 * can do more things.
7865 */
Josef Bacik00361582013-08-14 14:02:47 -04007866 if (ret < 0 && ret != -ENOSPC)
Josef Bacikea658ba2012-09-11 16:57:25 -04007867 btrfs_abort_transaction(trans,
7868 root, ret);
Josef Bacik00361582013-08-14 14:02:47 -04007869 else
7870 ret = 0;
Wang Shilongf017f152014-03-13 13:19:47 +08007871 if (!exist)
7872 btrfs_end_transaction(trans, root);
Josef Bacik00361582013-08-14 14:02:47 -04007873 if (ret)
Josef Bacikea658ba2012-09-11 16:57:25 -04007874 goto out;
Josef Bacik723bda22011-05-27 16:11:38 -04007875 }
7876
7877 if (loop == LOOP_NO_EMPTY_SIZE) {
Josef Bacika5e681d2015-10-01 14:54:10 -04007878 /*
7879 * Don't loop again if we already have no empty_size and
7880 * no empty_cluster.
7881 */
7882 if (empty_size == 0 &&
7883 empty_cluster == 0) {
7884 ret = -ENOSPC;
7885 goto out;
7886 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007887 empty_size = 0;
7888 empty_cluster = 0;
7889 }
Chris Mason42e70e72008-11-07 18:17:11 -05007890
Josef Bacik723bda22011-05-27 16:11:38 -04007891 goto search;
Josef Bacik2552d172009-04-03 10:14:19 -04007892 } else if (!ins->objectid) {
7893 ret = -ENOSPC;
Josef Bacikd82a6f12011-05-11 15:26:06 -04007894 } else if (ins->objectid) {
Josef Bacikc759c4e2015-10-02 15:25:10 -04007895 if (!use_cluster && last_ptr) {
7896 spin_lock(&last_ptr->lock);
7897 last_ptr->window_start = ins->objectid;
7898 spin_unlock(&last_ptr->lock);
7899 }
Josef Bacik2552d172009-04-03 10:14:19 -04007900 ret = 0;
7901 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007902out:
Josef Bacik4f4db212015-09-29 11:40:47 -04007903 if (ret == -ENOSPC) {
7904 spin_lock(&space_info->lock);
7905 space_info->max_extent_size = max_extent_size;
7906 spin_unlock(&space_info->lock);
Miao Xiea4820392013-09-09 13:19:42 +08007907 ins->offset = max_extent_size;
Josef Bacik4f4db212015-09-29 11:40:47 -04007908 }
Chris Mason0f70abe2007-02-28 16:46:22 -05007909 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05007910}
Chris Masonec44a352008-04-28 15:29:52 -04007911
Josef Bacik9ed74f22009-09-11 16:12:44 -04007912static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
7913 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04007914{
7915 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb82010-05-16 10:46:24 -04007916 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007917
Josef Bacik9ed74f22009-09-11 16:12:44 -04007918 spin_lock(&info->lock);
Frank Holtonefe120a2013-12-20 11:37:06 -05007919 printk(KERN_INFO "BTRFS: space_info %llu has %llu free, is %sfull\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007920 info->flags,
7921 info->total_bytes - info->bytes_used - info->bytes_pinned -
7922 info->bytes_reserved - info->bytes_readonly,
Chris Masond3977122009-01-05 21:25:51 -05007923 (info->full) ? "" : "not ");
Frank Holtonefe120a2013-12-20 11:37:06 -05007924 printk(KERN_INFO "BTRFS: space_info total=%llu, used=%llu, pinned=%llu, "
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04007925 "reserved=%llu, may_use=%llu, readonly=%llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007926 info->total_bytes, info->bytes_used, info->bytes_pinned,
7927 info->bytes_reserved, info->bytes_may_use,
7928 info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007929 spin_unlock(&info->lock);
7930
7931 if (!dump_block_groups)
7932 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007933
Josef Bacik80eb2342008-10-29 14:49:05 -04007934 down_read(&info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04007935again:
7936 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04007937 spin_lock(&cache->lock);
Frank Holtonefe120a2013-12-20 11:37:06 -05007938 printk(KERN_INFO "BTRFS: "
7939 "block group %llu has %llu bytes, "
7940 "%llu used %llu pinned %llu reserved %s\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007941 cache->key.objectid, cache->key.offset,
7942 btrfs_block_group_used(&cache->item), cache->pinned,
7943 cache->reserved, cache->ro ? "[readonly]" : "");
Josef Bacik0f9dd462008-09-23 13:14:11 -04007944 btrfs_dump_free_space(cache, bytes);
7945 spin_unlock(&cache->lock);
7946 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04007947 if (++index < BTRFS_NR_RAID_TYPES)
7948 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04007949 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04007950}
Zheng Yane8569812008-09-26 10:05:48 -04007951
Josef Bacik00361582013-08-14 14:02:47 -04007952int btrfs_reserve_extent(struct btrfs_root *root,
Yan Zheng11833d62009-09-11 16:11:19 -04007953 u64 num_bytes, u64 min_alloc_size,
7954 u64 empty_size, u64 hint_byte,
Miao Xiee570fd22014-06-19 10:42:50 +08007955 struct btrfs_key *ins, int is_data, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05007956{
Josef Bacik36af4e02015-09-25 16:13:11 -04007957 bool final_tried = num_bytes == min_alloc_size;
David Sterbab6919a52013-04-29 13:39:40 +00007958 u64 flags;
Chris Masonfec577f2007-02-26 10:40:21 -05007959 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04007960
David Sterbab6919a52013-04-29 13:39:40 +00007961 flags = btrfs_get_alloc_profile(root, is_data);
Chris Mason98d20f62008-04-14 09:46:10 -04007962again:
Chris Masondb945352007-10-15 16:15:53 -04007963 WARN_ON(num_bytes < root->sectorsize);
Josef Bacik00361582013-08-14 14:02:47 -04007964 ret = find_free_extent(root, num_bytes, empty_size, hint_byte, ins,
Miao Xiee570fd22014-06-19 10:42:50 +08007965 flags, delalloc);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01007966 if (!ret && !is_data) {
7967 btrfs_dec_block_group_reservations(root->fs_info,
7968 ins->objectid);
7969 } else if (ret == -ENOSPC) {
Miao Xiea4820392013-09-09 13:19:42 +08007970 if (!final_tried && ins->offset) {
7971 num_bytes = min(num_bytes >> 1, ins->offset);
Zach Brown24542bf2012-11-16 00:04:43 +00007972 num_bytes = round_down(num_bytes, root->sectorsize);
Miao Xie9e622d62012-01-26 15:01:12 -05007973 num_bytes = max(num_bytes, min_alloc_size);
Miao Xie9e622d62012-01-26 15:01:12 -05007974 if (num_bytes == min_alloc_size)
7975 final_tried = true;
7976 goto again;
7977 } else if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
7978 struct btrfs_space_info *sinfo;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007979
David Sterbab6919a52013-04-29 13:39:40 +00007980 sinfo = __find_space_info(root->fs_info, flags);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007981 btrfs_err(root->fs_info, "allocation failed flags %llu, wanted %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007982 flags, num_bytes);
Jeff Mahoney53804282012-03-01 14:56:28 +01007983 if (sinfo)
7984 dump_space_info(sinfo, num_bytes, 1);
Miao Xie9e622d62012-01-26 15:01:12 -05007985 }
Chris Mason925baed2008-06-25 16:01:30 -04007986 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04007987
7988 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007989}
7990
Chris Masone688b7252011-10-31 20:52:39 -04007991static int __btrfs_free_reserved_extent(struct btrfs_root *root,
Miao Xiee570fd22014-06-19 10:42:50 +08007992 u64 start, u64 len,
7993 int pin, int delalloc)
Chris Mason65b51a02008-08-01 15:11:20 -04007994{
Josef Bacik0f9dd462008-09-23 13:14:11 -04007995 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05007996 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007997
Josef Bacik0f9dd462008-09-23 13:14:11 -04007998 cache = btrfs_lookup_block_group(root->fs_info, start);
7999 if (!cache) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008000 btrfs_err(root->fs_info, "Unable to find block group for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02008001 start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008002 return -ENOSPC;
8003 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05008004
Chris Masone688b7252011-10-31 20:52:39 -04008005 if (pin)
8006 pin_down_extent(root, cache, start, len, 1);
8007 else {
Filipe Mananadcc82f42015-03-23 14:07:40 +00008008 if (btrfs_test_opt(root, DISCARD))
8009 ret = btrfs_discard_extent(root, start, len, NULL);
Chris Masone688b7252011-10-31 20:52:39 -04008010 btrfs_add_free_space(cache, start, len);
Miao Xiee570fd22014-06-19 10:42:50 +08008011 btrfs_update_reserved_bytes(cache, len, RESERVE_FREE, delalloc);
Josef Bacik31bada72016-03-25 13:25:58 -04008012 trace_btrfs_reserved_extent_free(root, start, len);
Chris Masone688b7252011-10-31 20:52:39 -04008013 }
Dongsheng Yang31193212014-12-12 16:44:35 +08008014
Chris Masonfa9c0d792009-04-03 09:47:43 -04008015 btrfs_put_block_group(cache);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008016 return ret;
8017}
8018
Chris Masone688b7252011-10-31 20:52:39 -04008019int btrfs_free_reserved_extent(struct btrfs_root *root,
Miao Xiee570fd22014-06-19 10:42:50 +08008020 u64 start, u64 len, int delalloc)
Chris Masone688b7252011-10-31 20:52:39 -04008021{
Miao Xiee570fd22014-06-19 10:42:50 +08008022 return __btrfs_free_reserved_extent(root, start, len, 0, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04008023}
8024
8025int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root,
8026 u64 start, u64 len)
8027{
Miao Xiee570fd22014-06-19 10:42:50 +08008028 return __btrfs_free_reserved_extent(root, start, len, 1, 0);
Chris Masone688b7252011-10-31 20:52:39 -04008029}
8030
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008031static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
8032 struct btrfs_root *root,
8033 u64 parent, u64 root_objectid,
8034 u64 flags, u64 owner, u64 offset,
8035 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008036{
8037 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008038 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008039 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008040 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008041 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008042 struct extent_buffer *leaf;
8043 int type;
8044 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04008045
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008046 if (parent > 0)
8047 type = BTRFS_SHARED_DATA_REF_KEY;
8048 else
8049 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04008050
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008051 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05008052
8053 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00008054 if (!path)
8055 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05008056
Chris Masonb9473432009-03-13 11:00:37 -04008057 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008058 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
8059 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008060 if (ret) {
8061 btrfs_free_path(path);
8062 return ret;
8063 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04008064
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008065 leaf = path->nodes[0];
8066 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05008067 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008068 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
8069 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8070 btrfs_set_extent_flags(leaf, extent_item,
8071 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05008072
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008073 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
8074 btrfs_set_extent_inline_ref_type(leaf, iref, type);
8075 if (parent > 0) {
8076 struct btrfs_shared_data_ref *ref;
8077 ref = (struct btrfs_shared_data_ref *)(iref + 1);
8078 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
8079 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
8080 } else {
8081 struct btrfs_extent_data_ref *ref;
8082 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
8083 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
8084 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
8085 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
8086 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
8087 }
Chris Mason47e4bb92008-02-01 14:51:59 -05008088
8089 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05008090 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04008091
Omar Sandoval1e144fb2015-09-29 20:50:37 -07008092 ret = remove_from_free_space_tree(trans, fs_info, ins->objectid,
8093 ins->offset);
8094 if (ret)
8095 return ret;
8096
Josef Bacikce93ec52014-11-17 15:45:48 -05008097 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008098 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008099 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02008100 ins->objectid, ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05008101 BUG();
8102 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04008103 trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008104 return ret;
8105}
8106
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008107static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
8108 struct btrfs_root *root,
8109 u64 parent, u64 root_objectid,
8110 u64 flags, struct btrfs_disk_key *key,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01008111 int level, struct btrfs_key *ins)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008112{
8113 int ret;
8114 struct btrfs_fs_info *fs_info = root->fs_info;
8115 struct btrfs_extent_item *extent_item;
8116 struct btrfs_tree_block_info *block_info;
8117 struct btrfs_extent_inline_ref *iref;
8118 struct btrfs_path *path;
8119 struct extent_buffer *leaf;
Josef Bacik3173a182013-03-07 14:22:04 -05008120 u32 size = sizeof(*extent_item) + sizeof(*iref);
Josef Bacikfcebe452014-05-13 17:30:47 -07008121 u64 num_bytes = ins->offset;
Josef Bacik3173a182013-03-07 14:22:04 -05008122 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
8123 SKINNY_METADATA);
8124
8125 if (!skinny_metadata)
8126 size += sizeof(*block_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008127
8128 path = btrfs_alloc_path();
Josef Bacik857cc2f2013-10-07 15:21:08 -04008129 if (!path) {
8130 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
David Sterba707e8a02014-06-04 19:22:26 +02008131 root->nodesize);
Mark Fashehd8926bb2011-07-13 10:38:47 -07008132 return -ENOMEM;
Josef Bacik857cc2f2013-10-07 15:21:08 -04008133 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008134
8135 path->leave_spinning = 1;
8136 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
8137 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008138 if (ret) {
Chris Masondd825252015-04-01 08:36:05 -07008139 btrfs_free_path(path);
Josef Bacik857cc2f2013-10-07 15:21:08 -04008140 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
David Sterba707e8a02014-06-04 19:22:26 +02008141 root->nodesize);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008142 return ret;
8143 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008144
8145 leaf = path->nodes[0];
8146 extent_item = btrfs_item_ptr(leaf, path->slots[0],
8147 struct btrfs_extent_item);
8148 btrfs_set_extent_refs(leaf, extent_item, 1);
8149 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8150 btrfs_set_extent_flags(leaf, extent_item,
8151 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008152
Josef Bacik3173a182013-03-07 14:22:04 -05008153 if (skinny_metadata) {
8154 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
David Sterba707e8a02014-06-04 19:22:26 +02008155 num_bytes = root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05008156 } else {
8157 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
8158 btrfs_set_tree_block_key(leaf, block_info, key);
8159 btrfs_set_tree_block_level(leaf, block_info, level);
8160 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
8161 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008162
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008163 if (parent > 0) {
8164 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
8165 btrfs_set_extent_inline_ref_type(leaf, iref,
8166 BTRFS_SHARED_BLOCK_REF_KEY);
8167 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
8168 } else {
8169 btrfs_set_extent_inline_ref_type(leaf, iref,
8170 BTRFS_TREE_BLOCK_REF_KEY);
8171 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
8172 }
8173
8174 btrfs_mark_buffer_dirty(leaf);
8175 btrfs_free_path(path);
8176
Omar Sandoval1e144fb2015-09-29 20:50:37 -07008177 ret = remove_from_free_space_tree(trans, fs_info, ins->objectid,
8178 num_bytes);
8179 if (ret)
8180 return ret;
8181
Josef Bacikce93ec52014-11-17 15:45:48 -05008182 ret = update_block_group(trans, root, ins->objectid, root->nodesize,
8183 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008184 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008185 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02008186 ins->objectid, ins->offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008187 BUG();
8188 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04008189
David Sterba707e8a02014-06-04 19:22:26 +02008190 trace_btrfs_reserved_extent_alloc(root, ins->objectid, root->nodesize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008191 return ret;
8192}
8193
8194int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
8195 struct btrfs_root *root,
8196 u64 root_objectid, u64 owner,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08008197 u64 offset, u64 ram_bytes,
8198 struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008199{
8200 int ret;
Chris Mason1c2308f2008-09-23 13:14:13 -04008201
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008202 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04008203
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008204 ret = btrfs_add_delayed_data_ref(root->fs_info, trans, ins->objectid,
8205 ins->offset, 0,
8206 root_objectid, owner, offset,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08008207 ram_bytes, BTRFS_ADD_DELAYED_EXTENT,
8208 NULL);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008209 return ret;
8210}
Chris Masone02119d2008-09-05 16:13:11 -04008211
8212/*
8213 * this is used by the tree logging recovery code. It records that
8214 * an extent has been allocated and makes sure to clear the free
8215 * space cache bits as well
8216 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008217int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
8218 struct btrfs_root *root,
8219 u64 root_objectid, u64 owner, u64 offset,
8220 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04008221{
8222 int ret;
8223 struct btrfs_block_group_cache *block_group;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008224
8225 /*
8226 * Mixed block groups will exclude before processing the log so we only
Nicholas D Steeves01327612016-05-19 21:18:45 -04008227 * need to do the exclude dance if this fs isn't mixed.
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008228 */
8229 if (!btrfs_fs_incompat(root->fs_info, MIXED_GROUPS)) {
8230 ret = __exclude_logged_extent(root, ins->objectid, ins->offset);
8231 if (ret)
8232 return ret;
8233 }
Chris Masone02119d2008-09-05 16:13:11 -04008234
Chris Masone02119d2008-09-05 16:13:11 -04008235 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008236 if (!block_group)
8237 return -EINVAL;
Yan Zheng11833d62009-09-11 16:11:19 -04008238
Josef Bacikfb25e912011-07-26 17:00:46 -04008239 ret = btrfs_update_reserved_bytes(block_group, ins->offset,
Miao Xiee570fd22014-06-19 10:42:50 +08008240 RESERVE_ALLOC_NO_ACCOUNT, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008241 BUG_ON(ret); /* logic error */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008242 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
8243 0, owner, offset, ins, 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04008244 btrfs_put_block_group(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04008245 return ret;
8246}
8247
Eric Sandeen48a3b632013-04-25 20:41:01 +00008248static struct extent_buffer *
8249btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
David Sterbafe864572014-06-15 02:28:42 +02008250 u64 bytenr, int level)
Chris Mason65b51a02008-08-01 15:11:20 -04008251{
8252 struct extent_buffer *buf;
8253
David Sterbaa83fffb2014-06-15 02:39:54 +02008254 buf = btrfs_find_create_tree_block(root, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07008255 if (IS_ERR(buf))
8256 return buf;
8257
Chris Mason65b51a02008-08-01 15:11:20 -04008258 btrfs_set_header_generation(buf, trans->transid);
Chris Mason85d4e462011-07-26 16:11:19 -04008259 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04008260 btrfs_tree_lock(buf);
Daniel Dressler01d58472014-11-21 17:15:07 +09008261 clean_tree_block(trans, root->fs_info, buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05008262 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
Chris Masonb4ce94d2009-02-04 09:25:08 -05008263
8264 btrfs_set_lock_blocking(buf);
David Sterba4db8c522015-12-03 13:06:46 +01008265 set_extent_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05008266
Chris Masond0c803c2008-09-11 16:17:57 -04008267 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Filipe Manana656f30d2014-09-26 12:25:56 +01008268 buf->log_index = root->log_transid % 2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008269 /*
8270 * we allow two log transactions at a time, use different
8271 * EXENT bit to differentiate dirty pages.
8272 */
Filipe Manana656f30d2014-09-26 12:25:56 +01008273 if (buf->log_index == 0)
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008274 set_extent_dirty(&root->dirty_log_pages, buf->start,
8275 buf->start + buf->len - 1, GFP_NOFS);
8276 else
8277 set_extent_new(&root->dirty_log_pages, buf->start,
David Sterba3744dbe2016-04-26 23:54:39 +02008278 buf->start + buf->len - 1);
Chris Masond0c803c2008-09-11 16:17:57 -04008279 } else {
Filipe Manana656f30d2014-09-26 12:25:56 +01008280 buf->log_index = -1;
Chris Masond0c803c2008-09-11 16:17:57 -04008281 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
8282 buf->start + buf->len - 1, GFP_NOFS);
8283 }
Jeff Mahoney64c12922016-06-08 00:36:38 -04008284 trans->dirty = true;
Chris Masonb4ce94d2009-02-04 09:25:08 -05008285 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04008286 return buf;
8287}
8288
Yan, Zhengf0486c62010-05-16 10:46:25 -04008289static struct btrfs_block_rsv *
8290use_block_rsv(struct btrfs_trans_handle *trans,
8291 struct btrfs_root *root, u32 blocksize)
8292{
8293 struct btrfs_block_rsv *block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00008294 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008295 int ret;
Miao Xied88033d2013-05-13 13:55:12 +00008296 bool global_updated = false;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008297
8298 block_rsv = get_block_rsv(trans, root);
8299
Miao Xieb586b322013-05-13 13:55:10 +00008300 if (unlikely(block_rsv->size == 0))
8301 goto try_reserve;
Miao Xied88033d2013-05-13 13:55:12 +00008302again:
Yan, Zhengf0486c62010-05-16 10:46:25 -04008303 ret = block_rsv_use_bytes(block_rsv, blocksize);
8304 if (!ret)
8305 return block_rsv;
8306
Miao Xieb586b322013-05-13 13:55:10 +00008307 if (block_rsv->failfast)
8308 return ERR_PTR(ret);
8309
Miao Xied88033d2013-05-13 13:55:12 +00008310 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
8311 global_updated = true;
8312 update_global_block_rsv(root->fs_info);
8313 goto again;
8314 }
8315
Miao Xieb586b322013-05-13 13:55:10 +00008316 if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
8317 static DEFINE_RATELIMIT_STATE(_rs,
8318 DEFAULT_RATELIMIT_INTERVAL * 10,
8319 /*DEFAULT_RATELIMIT_BURST*/ 1);
8320 if (__ratelimit(&_rs))
8321 WARN(1, KERN_DEBUG
Frank Holtonefe120a2013-12-20 11:37:06 -05008322 "BTRFS: block rsv returned %d\n", ret);
Miao Xieb586b322013-05-13 13:55:10 +00008323 }
8324try_reserve:
8325 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
8326 BTRFS_RESERVE_NO_FLUSH);
8327 if (!ret)
8328 return block_rsv;
8329 /*
8330 * If we couldn't reserve metadata bytes try and use some from
Miao Xie5881cfc2013-05-13 13:55:11 +00008331 * the global reserve if its space type is the same as the global
8332 * reservation.
Miao Xieb586b322013-05-13 13:55:10 +00008333 */
Miao Xie5881cfc2013-05-13 13:55:11 +00008334 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
8335 block_rsv->space_info == global_rsv->space_info) {
Miao Xieb586b322013-05-13 13:55:10 +00008336 ret = block_rsv_use_bytes(global_rsv, blocksize);
8337 if (!ret)
8338 return global_rsv;
8339 }
8340 return ERR_PTR(ret);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008341}
8342
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05008343static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
8344 struct btrfs_block_rsv *block_rsv, u32 blocksize)
Yan, Zhengf0486c62010-05-16 10:46:25 -04008345{
8346 block_rsv_add_bytes(block_rsv, blocksize, 0);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05008347 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008348}
8349
Chris Masonfec577f2007-02-26 10:40:21 -05008350/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04008351 * finds a free extent and does all the dirty work required for allocation
Omar Sandoval67b78592015-02-24 02:47:04 -08008352 * returns the tree buffer or an ERR_PTR on error.
Chris Masonfec577f2007-02-26 10:40:21 -05008353 */
David Sterba4d75f8a2014-06-15 01:54:12 +02008354struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans,
8355 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008356 u64 parent, u64 root_objectid,
8357 struct btrfs_disk_key *key, int level,
Jan Schmidt5581a512012-05-16 17:04:52 +02008358 u64 hint, u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05008359{
Chris Masone2fa7222007-03-12 16:22:34 -04008360 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008361 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04008362 struct extent_buffer *buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08008363 struct btrfs_delayed_extent_op *extent_op;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008364 u64 flags = 0;
8365 int ret;
David Sterba4d75f8a2014-06-15 01:54:12 +02008366 u32 blocksize = root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05008367 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
8368 SKINNY_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008369
David Sterbafccb84c2014-09-29 23:53:21 +02008370 if (btrfs_test_is_dummy_root(root)) {
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04008371 buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr,
David Sterbafe864572014-06-15 02:28:42 +02008372 level);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04008373 if (!IS_ERR(buf))
8374 root->alloc_bytenr += blocksize;
8375 return buf;
8376 }
David Sterbafccb84c2014-09-29 23:53:21 +02008377
Yan, Zhengf0486c62010-05-16 10:46:25 -04008378 block_rsv = use_block_rsv(trans, root, blocksize);
8379 if (IS_ERR(block_rsv))
8380 return ERR_CAST(block_rsv);
8381
Josef Bacik00361582013-08-14 14:02:47 -04008382 ret = btrfs_reserve_extent(root, blocksize, blocksize,
Miao Xiee570fd22014-06-19 10:42:50 +08008383 empty_size, hint, &ins, 0, 0);
Omar Sandoval67b78592015-02-24 02:47:04 -08008384 if (ret)
8385 goto out_unuse;
Chris Mason55c69072008-01-09 15:55:33 -05008386
David Sterbafe864572014-06-15 02:28:42 +02008387 buf = btrfs_init_new_buffer(trans, root, ins.objectid, level);
Omar Sandoval67b78592015-02-24 02:47:04 -08008388 if (IS_ERR(buf)) {
8389 ret = PTR_ERR(buf);
8390 goto out_free_reserved;
8391 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008392
8393 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
8394 if (parent == 0)
8395 parent = ins.objectid;
8396 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
8397 } else
8398 BUG_ON(parent > 0);
8399
8400 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
Miao Xie78a61842012-11-21 02:21:28 +00008401 extent_op = btrfs_alloc_delayed_extent_op();
Omar Sandoval67b78592015-02-24 02:47:04 -08008402 if (!extent_op) {
8403 ret = -ENOMEM;
8404 goto out_free_buf;
8405 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008406 if (key)
8407 memcpy(&extent_op->key, key, sizeof(extent_op->key));
8408 else
8409 memset(&extent_op->key, 0, sizeof(extent_op->key));
8410 extent_op->flags_to_set = flags;
David Sterba35b3ad52015-11-30 16:51:29 +01008411 extent_op->update_key = skinny_metadata ? false : true;
8412 extent_op->update_flags = true;
8413 extent_op->is_data = false;
Josef Bacikb1c79e02013-05-09 13:49:30 -04008414 extent_op->level = level;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008415
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008416 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
Omar Sandoval67b78592015-02-24 02:47:04 -08008417 ins.objectid, ins.offset,
8418 parent, root_objectid, level,
8419 BTRFS_ADD_DELAYED_EXTENT,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01008420 extent_op);
Omar Sandoval67b78592015-02-24 02:47:04 -08008421 if (ret)
8422 goto out_free_delayed;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008423 }
Chris Masonfec577f2007-02-26 10:40:21 -05008424 return buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08008425
8426out_free_delayed:
8427 btrfs_free_delayed_extent_op(extent_op);
8428out_free_buf:
8429 free_extent_buffer(buf);
8430out_free_reserved:
8431 btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 0);
8432out_unuse:
8433 unuse_block_rsv(root->fs_info, block_rsv, blocksize);
8434 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05008435}
Chris Masona28ec192007-03-06 20:08:01 -05008436
Yan Zheng2c47e6052009-06-27 21:07:35 -04008437struct walk_control {
8438 u64 refs[BTRFS_MAX_LEVEL];
8439 u64 flags[BTRFS_MAX_LEVEL];
8440 struct btrfs_key update_progress;
8441 int stage;
8442 int level;
8443 int shared_level;
8444 int update_ref;
8445 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008446 int reada_slot;
8447 int reada_count;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008448 int for_reloc;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008449};
8450
8451#define DROP_REFERENCE 1
8452#define UPDATE_BACKREF 2
8453
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008454static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
8455 struct btrfs_root *root,
8456 struct walk_control *wc,
8457 struct btrfs_path *path)
8458{
8459 u64 bytenr;
8460 u64 generation;
8461 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008462 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008463 u32 nritems;
8464 u32 blocksize;
8465 struct btrfs_key key;
8466 struct extent_buffer *eb;
8467 int ret;
8468 int slot;
8469 int nread = 0;
8470
8471 if (path->slots[wc->level] < wc->reada_slot) {
8472 wc->reada_count = wc->reada_count * 2 / 3;
8473 wc->reada_count = max(wc->reada_count, 2);
8474 } else {
8475 wc->reada_count = wc->reada_count * 3 / 2;
8476 wc->reada_count = min_t(int, wc->reada_count,
8477 BTRFS_NODEPTRS_PER_BLOCK(root));
8478 }
8479
8480 eb = path->nodes[wc->level];
8481 nritems = btrfs_header_nritems(eb);
David Sterba707e8a02014-06-04 19:22:26 +02008482 blocksize = root->nodesize;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008483
8484 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
8485 if (nread >= wc->reada_count)
8486 break;
8487
8488 cond_resched();
8489 bytenr = btrfs_node_blockptr(eb, slot);
8490 generation = btrfs_node_ptr_generation(eb, slot);
8491
8492 if (slot == path->slots[wc->level])
8493 goto reada;
8494
8495 if (wc->stage == UPDATE_BACKREF &&
8496 generation <= root->root_key.offset)
8497 continue;
8498
Yan, Zheng94fcca92009-10-09 09:25:16 -04008499 /* We don't lock the tree block, it's OK to be racy here */
Josef Bacik3173a182013-03-07 14:22:04 -05008500 ret = btrfs_lookup_extent_info(trans, root, bytenr,
8501 wc->level - 1, 1, &refs,
8502 &flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008503 /* We don't care about errors in readahead. */
8504 if (ret < 0)
8505 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008506 BUG_ON(refs == 0);
8507
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008508 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008509 if (refs == 1)
8510 goto reada;
8511
Yan, Zheng94fcca92009-10-09 09:25:16 -04008512 if (wc->level == 1 &&
8513 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8514 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008515 if (!wc->update_ref ||
8516 generation <= root->root_key.offset)
8517 continue;
8518 btrfs_node_key_to_cpu(eb, &key, slot);
8519 ret = btrfs_comp_cpu_keys(&key,
8520 &wc->update_progress);
8521 if (ret < 0)
8522 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008523 } else {
8524 if (wc->level == 1 &&
8525 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8526 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008527 }
8528reada:
David Sterbad3e46fe2014-06-15 02:04:19 +02008529 readahead_tree_block(root, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008530 nread++;
8531 }
8532 wc->reada_slot = slot;
8533}
8534
Qu Wenruo0ed47922015-04-16 16:55:08 +08008535/*
Mark Fasheh82bd1012015-11-05 14:38:00 -08008536 * These may not be seen by the usual inc/dec ref code so we have to
8537 * add them here.
Qu Wenruo0ed47922015-04-16 16:55:08 +08008538 */
Mark Fasheh82bd1012015-11-05 14:38:00 -08008539static int record_one_subtree_extent(struct btrfs_trans_handle *trans,
8540 struct btrfs_root *root, u64 bytenr,
8541 u64 num_bytes)
8542{
8543 struct btrfs_qgroup_extent_record *qrecord;
8544 struct btrfs_delayed_ref_root *delayed_refs;
8545
8546 qrecord = kmalloc(sizeof(*qrecord), GFP_NOFS);
8547 if (!qrecord)
8548 return -ENOMEM;
8549
8550 qrecord->bytenr = bytenr;
8551 qrecord->num_bytes = num_bytes;
8552 qrecord->old_roots = NULL;
8553
8554 delayed_refs = &trans->transaction->delayed_refs;
8555 spin_lock(&delayed_refs->lock);
8556 if (btrfs_qgroup_insert_dirty_extent(delayed_refs, qrecord))
8557 kfree(qrecord);
8558 spin_unlock(&delayed_refs->lock);
8559
8560 return 0;
8561}
8562
Mark Fasheh11526512014-07-17 12:39:01 -07008563static int account_leaf_items(struct btrfs_trans_handle *trans,
8564 struct btrfs_root *root,
8565 struct extent_buffer *eb)
8566{
8567 int nr = btrfs_header_nritems(eb);
Mark Fasheh82bd1012015-11-05 14:38:00 -08008568 int i, extent_type, ret;
Mark Fasheh11526512014-07-17 12:39:01 -07008569 struct btrfs_key key;
8570 struct btrfs_file_extent_item *fi;
8571 u64 bytenr, num_bytes;
8572
Mark Fasheh82bd1012015-11-05 14:38:00 -08008573 /* We can be called directly from walk_up_proc() */
8574 if (!root->fs_info->quota_enabled)
8575 return 0;
8576
Mark Fasheh11526512014-07-17 12:39:01 -07008577 for (i = 0; i < nr; i++) {
8578 btrfs_item_key_to_cpu(eb, &key, i);
8579
8580 if (key.type != BTRFS_EXTENT_DATA_KEY)
8581 continue;
8582
8583 fi = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
8584 /* filter out non qgroup-accountable extents */
8585 extent_type = btrfs_file_extent_type(eb, fi);
8586
8587 if (extent_type == BTRFS_FILE_EXTENT_INLINE)
8588 continue;
8589
8590 bytenr = btrfs_file_extent_disk_bytenr(eb, fi);
8591 if (!bytenr)
8592 continue;
8593
8594 num_bytes = btrfs_file_extent_disk_num_bytes(eb, fi);
Mark Fasheh82bd1012015-11-05 14:38:00 -08008595
8596 ret = record_one_subtree_extent(trans, root, bytenr, num_bytes);
8597 if (ret)
8598 return ret;
Mark Fasheh11526512014-07-17 12:39:01 -07008599 }
8600 return 0;
8601}
8602
8603/*
8604 * Walk up the tree from the bottom, freeing leaves and any interior
8605 * nodes which have had all slots visited. If a node (leaf or
8606 * interior) is freed, the node above it will have it's slot
8607 * incremented. The root node will never be freed.
8608 *
8609 * At the end of this function, we should have a path which has all
8610 * slots incremented to the next position for a search. If we need to
8611 * read a new node it will be NULL and the node above it will have the
8612 * correct slot selected for a later read.
8613 *
8614 * If we increment the root nodes slot counter past the number of
8615 * elements, 1 is returned to signal completion of the search.
8616 */
8617static int adjust_slots_upwards(struct btrfs_root *root,
8618 struct btrfs_path *path, int root_level)
8619{
8620 int level = 0;
8621 int nr, slot;
8622 struct extent_buffer *eb;
8623
8624 if (root_level == 0)
8625 return 1;
8626
8627 while (level <= root_level) {
8628 eb = path->nodes[level];
8629 nr = btrfs_header_nritems(eb);
8630 path->slots[level]++;
8631 slot = path->slots[level];
8632 if (slot >= nr || level == 0) {
8633 /*
8634 * Don't free the root - we will detect this
8635 * condition after our loop and return a
8636 * positive value for caller to stop walking the tree.
8637 */
8638 if (level != root_level) {
8639 btrfs_tree_unlock_rw(eb, path->locks[level]);
8640 path->locks[level] = 0;
8641
8642 free_extent_buffer(eb);
8643 path->nodes[level] = NULL;
8644 path->slots[level] = 0;
8645 }
8646 } else {
8647 /*
8648 * We have a valid slot to walk back down
8649 * from. Stop here so caller can process these
8650 * new nodes.
8651 */
8652 break;
8653 }
8654
8655 level++;
8656 }
8657
8658 eb = path->nodes[root_level];
8659 if (path->slots[root_level] >= btrfs_header_nritems(eb))
8660 return 1;
8661
8662 return 0;
8663}
8664
8665/*
8666 * root_eb is the subtree root and is locked before this function is called.
8667 */
8668static int account_shared_subtree(struct btrfs_trans_handle *trans,
8669 struct btrfs_root *root,
8670 struct extent_buffer *root_eb,
8671 u64 root_gen,
8672 int root_level)
8673{
8674 int ret = 0;
8675 int level;
8676 struct extent_buffer *eb = root_eb;
8677 struct btrfs_path *path = NULL;
8678
8679 BUG_ON(root_level < 0 || root_level > BTRFS_MAX_LEVEL);
8680 BUG_ON(root_eb == NULL);
8681
8682 if (!root->fs_info->quota_enabled)
8683 return 0;
8684
8685 if (!extent_buffer_uptodate(root_eb)) {
8686 ret = btrfs_read_buffer(root_eb, root_gen);
8687 if (ret)
8688 goto out;
8689 }
8690
8691 if (root_level == 0) {
8692 ret = account_leaf_items(trans, root, root_eb);
8693 goto out;
8694 }
8695
8696 path = btrfs_alloc_path();
8697 if (!path)
8698 return -ENOMEM;
8699
8700 /*
8701 * Walk down the tree. Missing extent blocks are filled in as
8702 * we go. Metadata is accounted every time we read a new
8703 * extent block.
8704 *
8705 * When we reach a leaf, we account for file extent items in it,
8706 * walk back up the tree (adjusting slot pointers as we go)
8707 * and restart the search process.
8708 */
8709 extent_buffer_get(root_eb); /* For path */
8710 path->nodes[root_level] = root_eb;
8711 path->slots[root_level] = 0;
8712 path->locks[root_level] = 0; /* so release_path doesn't try to unlock */
8713walk_down:
8714 level = root_level;
8715 while (level >= 0) {
8716 if (path->nodes[level] == NULL) {
Mark Fasheh11526512014-07-17 12:39:01 -07008717 int parent_slot;
8718 u64 child_gen;
8719 u64 child_bytenr;
8720
8721 /* We need to get child blockptr/gen from
8722 * parent before we can read it. */
8723 eb = path->nodes[level + 1];
8724 parent_slot = path->slots[level + 1];
8725 child_bytenr = btrfs_node_blockptr(eb, parent_slot);
8726 child_gen = btrfs_node_ptr_generation(eb, parent_slot);
8727
David Sterbace86cd52014-06-15 01:07:32 +02008728 eb = read_tree_block(root, child_bytenr, child_gen);
Liu Bo64c043d2015-05-25 17:30:15 +08008729 if (IS_ERR(eb)) {
8730 ret = PTR_ERR(eb);
8731 goto out;
8732 } else if (!extent_buffer_uptodate(eb)) {
Liu Bo8635eda2015-05-25 17:30:14 +08008733 free_extent_buffer(eb);
Liu Bo64c043d2015-05-25 17:30:15 +08008734 ret = -EIO;
Mark Fasheh11526512014-07-17 12:39:01 -07008735 goto out;
8736 }
8737
8738 path->nodes[level] = eb;
8739 path->slots[level] = 0;
8740
8741 btrfs_tree_read_lock(eb);
8742 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
8743 path->locks[level] = BTRFS_READ_LOCK_BLOCKING;
Mark Fasheh82bd1012015-11-05 14:38:00 -08008744
8745 ret = record_one_subtree_extent(trans, root, child_bytenr,
8746 root->nodesize);
8747 if (ret)
8748 goto out;
Mark Fasheh11526512014-07-17 12:39:01 -07008749 }
8750
8751 if (level == 0) {
8752 ret = account_leaf_items(trans, root, path->nodes[level]);
8753 if (ret)
8754 goto out;
8755
8756 /* Nonzero return here means we completed our search */
8757 ret = adjust_slots_upwards(root, path, root_level);
8758 if (ret)
8759 break;
8760
8761 /* Restart search with new slots */
8762 goto walk_down;
8763 }
8764
8765 level--;
8766 }
8767
8768 ret = 0;
8769out:
8770 btrfs_free_path(path);
8771
8772 return ret;
8773}
8774
Chris Mason9aca1d52007-03-13 11:09:37 -04008775/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008776 * helper to process tree block while walking down the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04008777 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04008778 * when wc->stage == UPDATE_BACKREF, this function updates
8779 * back refs for pointers in the block.
8780 *
8781 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04008782 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008783static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
8784 struct btrfs_root *root,
8785 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008786 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04008787{
8788 int level = wc->level;
8789 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04008790 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
8791 int ret;
8792
8793 if (wc->stage == UPDATE_BACKREF &&
8794 btrfs_header_owner(eb) != root->root_key.objectid)
8795 return 1;
8796
8797 /*
8798 * when reference count of tree block is 1, it won't increase
8799 * again. once full backref flag is set, we never clear it.
8800 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04008801 if (lookup_info &&
8802 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
8803 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008804 BUG_ON(!path->locks[level]);
8805 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05008806 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008807 &wc->refs[level],
8808 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008809 BUG_ON(ret == -ENOMEM);
8810 if (ret)
8811 return ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008812 BUG_ON(wc->refs[level] == 0);
8813 }
8814
Yan Zheng2c47e6052009-06-27 21:07:35 -04008815 if (wc->stage == DROP_REFERENCE) {
8816 if (wc->refs[level] > 1)
8817 return 1;
8818
8819 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04008820 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008821 path->locks[level] = 0;
8822 }
8823 return 0;
8824 }
8825
8826 /* wc->stage == UPDATE_BACKREF */
8827 if (!(wc->flags[level] & flag)) {
8828 BUG_ON(!path->locks[level]);
Josef Bacike339a6b2014-07-02 10:54:25 -07008829 ret = btrfs_inc_ref(trans, root, eb, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008830 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07008831 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008832 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008833 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
Josef Bacikb1c79e02013-05-09 13:49:30 -04008834 eb->len, flag,
8835 btrfs_header_level(eb), 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008836 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008837 wc->flags[level] |= flag;
8838 }
8839
8840 /*
8841 * the block is shared by multiple trees, so it's not good to
8842 * keep the tree lock
8843 */
8844 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04008845 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008846 path->locks[level] = 0;
8847 }
8848 return 0;
8849}
8850
8851/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008852 * helper to process tree block pointer.
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008853 *
8854 * when wc->stage == DROP_REFERENCE, this function checks
8855 * reference count of the block pointed to. if the block
8856 * is shared and we need update back refs for the subtree
8857 * rooted at the block, this function changes wc->stage to
8858 * UPDATE_BACKREF. if the block is shared and there is no
8859 * need to update back, this function drops the reference
8860 * to the block.
8861 *
8862 * NOTE: return value 1 means we should stop walking down.
8863 */
8864static noinline int do_walk_down(struct btrfs_trans_handle *trans,
8865 struct btrfs_root *root,
8866 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008867 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008868{
8869 u64 bytenr;
8870 u64 generation;
8871 u64 parent;
8872 u32 blocksize;
8873 struct btrfs_key key;
8874 struct extent_buffer *next;
8875 int level = wc->level;
8876 int reada = 0;
8877 int ret = 0;
Mark Fasheh11526512014-07-17 12:39:01 -07008878 bool need_account = false;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008879
8880 generation = btrfs_node_ptr_generation(path->nodes[level],
8881 path->slots[level]);
8882 /*
8883 * if the lower level block was created before the snapshot
8884 * was created, we know there is no need to update back refs
8885 * for the subtree
8886 */
8887 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04008888 generation <= root->root_key.offset) {
8889 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008890 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008891 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008892
8893 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
David Sterba707e8a02014-06-04 19:22:26 +02008894 blocksize = root->nodesize;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008895
Daniel Dressler01d58472014-11-21 17:15:07 +09008896 next = btrfs_find_tree_block(root->fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008897 if (!next) {
David Sterbaa83fffb2014-06-15 02:39:54 +02008898 next = btrfs_find_create_tree_block(root, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07008899 if (IS_ERR(next))
8900 return PTR_ERR(next);
8901
Josef Bacikb2aaaa32013-07-05 17:05:38 -04008902 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
8903 level - 1);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008904 reada = 1;
8905 }
8906 btrfs_tree_lock(next);
8907 btrfs_set_lock_blocking(next);
8908
Josef Bacik3173a182013-03-07 14:22:04 -05008909 ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008910 &wc->refs[level - 1],
8911 &wc->flags[level - 1]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008912 if (ret < 0) {
8913 btrfs_tree_unlock(next);
8914 return ret;
8915 }
8916
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008917 if (unlikely(wc->refs[level - 1] == 0)) {
8918 btrfs_err(root->fs_info, "Missing references.");
8919 BUG();
8920 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008921 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008922
Yan, Zheng94fcca92009-10-09 09:25:16 -04008923 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008924 if (wc->refs[level - 1] > 1) {
Mark Fasheh11526512014-07-17 12:39:01 -07008925 need_account = true;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008926 if (level == 1 &&
8927 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8928 goto skip;
8929
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008930 if (!wc->update_ref ||
8931 generation <= root->root_key.offset)
8932 goto skip;
8933
8934 btrfs_node_key_to_cpu(path->nodes[level], &key,
8935 path->slots[level]);
8936 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
8937 if (ret < 0)
8938 goto skip;
8939
8940 wc->stage = UPDATE_BACKREF;
8941 wc->shared_level = level - 1;
8942 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008943 } else {
8944 if (level == 1 &&
8945 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8946 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008947 }
8948
Chris Masonb9fab912012-05-06 07:23:47 -04008949 if (!btrfs_buffer_uptodate(next, generation, 0)) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008950 btrfs_tree_unlock(next);
8951 free_extent_buffer(next);
8952 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008953 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008954 }
8955
8956 if (!next) {
8957 if (reada && level == 1)
8958 reada_walk_down(trans, root, wc, path);
David Sterbace86cd52014-06-15 01:07:32 +02008959 next = read_tree_block(root, bytenr, generation);
Liu Bo64c043d2015-05-25 17:30:15 +08008960 if (IS_ERR(next)) {
8961 return PTR_ERR(next);
8962 } else if (!extent_buffer_uptodate(next)) {
Josef Bacik416bc652013-04-23 14:17:42 -04008963 free_extent_buffer(next);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00008964 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04008965 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008966 btrfs_tree_lock(next);
8967 btrfs_set_lock_blocking(next);
8968 }
8969
8970 level--;
8971 BUG_ON(level != btrfs_header_level(next));
8972 path->nodes[level] = next;
8973 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008974 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008975 wc->level = level;
8976 if (wc->level == 1)
8977 wc->reada_slot = 0;
8978 return 0;
8979skip:
8980 wc->refs[level - 1] = 0;
8981 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008982 if (wc->stage == DROP_REFERENCE) {
8983 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
8984 parent = path->nodes[level]->start;
8985 } else {
8986 BUG_ON(root->root_key.objectid !=
8987 btrfs_header_owner(path->nodes[level]));
8988 parent = 0;
8989 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008990
Mark Fasheh11526512014-07-17 12:39:01 -07008991 if (need_account) {
8992 ret = account_shared_subtree(trans, root, next,
8993 generation, level - 1);
8994 if (ret) {
David Sterba94647322015-10-08 11:01:36 +02008995 btrfs_err_rl(root->fs_info,
8996 "Error "
Mark Fasheh11526512014-07-17 12:39:01 -07008997 "%d accounting shared subtree. Quota "
David Sterba94647322015-10-08 11:01:36 +02008998 "is out of sync, rescan required.",
8999 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07009000 }
9001 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04009002 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01009003 root->root_key.objectid, level - 1, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009004 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009005 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009006 btrfs_tree_unlock(next);
9007 free_extent_buffer(next);
Yan, Zheng94fcca92009-10-09 09:25:16 -04009008 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009009 return 1;
9010}
9011
9012/*
Liu Bo2c016dc2012-12-26 15:32:17 +08009013 * helper to process tree block while walking up the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04009014 *
9015 * when wc->stage == DROP_REFERENCE, this function drops
9016 * reference count on the block.
9017 *
9018 * when wc->stage == UPDATE_BACKREF, this function changes
9019 * wc->stage back to DROP_REFERENCE if we changed wc->stage
9020 * to UPDATE_BACKREF previously while processing the block.
9021 *
9022 * NOTE: return value 1 means we should stop walking up.
9023 */
9024static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
9025 struct btrfs_root *root,
9026 struct btrfs_path *path,
9027 struct walk_control *wc)
9028{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009029 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009030 int level = wc->level;
9031 struct extent_buffer *eb = path->nodes[level];
9032 u64 parent = 0;
9033
9034 if (wc->stage == UPDATE_BACKREF) {
9035 BUG_ON(wc->shared_level < level);
9036 if (level < wc->shared_level)
9037 goto out;
9038
Yan Zheng2c47e6052009-06-27 21:07:35 -04009039 ret = find_next_key(path, level + 1, &wc->update_progress);
9040 if (ret > 0)
9041 wc->update_ref = 0;
9042
9043 wc->stage = DROP_REFERENCE;
9044 wc->shared_level = -1;
9045 path->slots[level] = 0;
9046
9047 /*
9048 * check reference count again if the block isn't locked.
9049 * we should start walking down the tree again if reference
9050 * count is one.
9051 */
9052 if (!path->locks[level]) {
9053 BUG_ON(level == 0);
9054 btrfs_tree_lock(eb);
9055 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04009056 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009057
9058 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05009059 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009060 &wc->refs[level],
9061 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009062 if (ret < 0) {
9063 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00009064 path->locks[level] = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009065 return ret;
9066 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009067 BUG_ON(wc->refs[level] == 0);
9068 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04009069 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00009070 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009071 return 1;
9072 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009073 }
9074 }
9075
9076 /* wc->stage == DROP_REFERENCE */
9077 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
9078
9079 if (wc->refs[level] == 1) {
9080 if (level == 0) {
9081 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
Josef Bacike339a6b2014-07-02 10:54:25 -07009082 ret = btrfs_dec_ref(trans, root, eb, 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009083 else
Josef Bacike339a6b2014-07-02 10:54:25 -07009084 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009085 BUG_ON(ret); /* -ENOMEM */
Mark Fasheh11526512014-07-17 12:39:01 -07009086 ret = account_leaf_items(trans, root, eb);
9087 if (ret) {
David Sterba94647322015-10-08 11:01:36 +02009088 btrfs_err_rl(root->fs_info,
9089 "error "
Mark Fasheh11526512014-07-17 12:39:01 -07009090 "%d accounting leaf items. Quota "
David Sterba94647322015-10-08 11:01:36 +02009091 "is out of sync, rescan required.",
9092 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07009093 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009094 }
9095 /* make block locked assertion in clean_tree_block happy */
9096 if (!path->locks[level] &&
9097 btrfs_header_generation(eb) == trans->transid) {
9098 btrfs_tree_lock(eb);
9099 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04009100 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009101 }
Daniel Dressler01d58472014-11-21 17:15:07 +09009102 clean_tree_block(trans, root->fs_info, eb);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009103 }
9104
9105 if (eb == root->node) {
9106 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
9107 parent = eb->start;
9108 else
9109 BUG_ON(root->root_key.objectid !=
9110 btrfs_header_owner(eb));
9111 } else {
9112 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
9113 parent = path->nodes[level + 1]->start;
9114 else
9115 BUG_ON(root->root_key.objectid !=
9116 btrfs_header_owner(path->nodes[level + 1]));
9117 }
9118
Jan Schmidt5581a512012-05-16 17:04:52 +02009119 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009120out:
9121 wc->refs[level] = 0;
9122 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009123 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009124}
9125
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009126static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
9127 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009128 struct btrfs_path *path,
9129 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04009130{
Yan Zheng2c47e6052009-06-27 21:07:35 -04009131 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04009132 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009133 int ret;
9134
Yan Zheng2c47e6052009-06-27 21:07:35 -04009135 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04009136 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009137 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04009138 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009139
Yan Zheng2c47e6052009-06-27 21:07:35 -04009140 if (level == 0)
9141 break;
9142
Yan, Zheng7a7965f2010-02-01 02:41:17 +00009143 if (path->slots[level] >=
9144 btrfs_header_nritems(path->nodes[level]))
9145 break;
9146
Yan, Zheng94fcca92009-10-09 09:25:16 -04009147 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009148 if (ret > 0) {
9149 path->slots[level]++;
9150 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00009151 } else if (ret < 0)
9152 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009153 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009154 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04009155 return 0;
9156}
9157
Chris Masond3977122009-01-05 21:25:51 -05009158static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05009159 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04009160 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009161 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05009162{
Yan Zheng2c47e6052009-06-27 21:07:35 -04009163 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05009164 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04009165
Yan Zheng2c47e6052009-06-27 21:07:35 -04009166 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
9167 while (level < max_level && path->nodes[level]) {
9168 wc->level = level;
9169 if (path->slots[level] + 1 <
9170 btrfs_header_nritems(path->nodes[level])) {
9171 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05009172 return 0;
9173 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009174 ret = walk_up_proc(trans, root, path, wc);
9175 if (ret > 0)
9176 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05009177
Yan Zheng2c47e6052009-06-27 21:07:35 -04009178 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04009179 btrfs_tree_unlock_rw(path->nodes[level],
9180 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009181 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009182 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009183 free_extent_buffer(path->nodes[level]);
9184 path->nodes[level] = NULL;
9185 level++;
Chris Mason20524f02007-03-10 06:35:47 -05009186 }
9187 }
9188 return 1;
9189}
9190
Chris Mason9aca1d52007-03-13 11:09:37 -04009191/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04009192 * drop a subvolume tree.
9193 *
9194 * this function traverses the tree freeing any blocks that only
9195 * referenced by the tree.
9196 *
9197 * when a shared tree block is found. this function decreases its
9198 * reference count by one. if update_ref is true, this function
9199 * also make sure backrefs for the shared block and all lower level
9200 * blocks are properly updated.
David Sterba9d1a2a32013-03-12 15:13:28 +00009201 *
9202 * If called with for_reloc == 0, may exit early with -EAGAIN
Chris Mason9aca1d52007-03-13 11:09:37 -04009203 */
Jeff Mahoney2c536792011-10-03 23:22:41 -04009204int btrfs_drop_snapshot(struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009205 struct btrfs_block_rsv *block_rsv, int update_ref,
9206 int for_reloc)
Chris Mason20524f02007-03-10 06:35:47 -05009207{
Chris Mason5caf2a02007-04-02 11:20:42 -04009208 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009209 struct btrfs_trans_handle *trans;
9210 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04009211 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009212 struct walk_control *wc;
9213 struct btrfs_key key;
9214 int err = 0;
9215 int ret;
9216 int level;
Josef Bacikd29a9f62013-07-17 19:30:20 -04009217 bool root_dropped = false;
Chris Mason20524f02007-03-10 06:35:47 -05009218
Mark Fasheh11526512014-07-17 12:39:01 -07009219 btrfs_debug(root->fs_info, "Drop subvolume %llu", root->objectid);
9220
Chris Mason5caf2a02007-04-02 11:20:42 -04009221 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009222 if (!path) {
9223 err = -ENOMEM;
9224 goto out;
9225 }
Chris Mason20524f02007-03-10 06:35:47 -05009226
Yan Zheng2c47e6052009-06-27 21:07:35 -04009227 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07009228 if (!wc) {
9229 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009230 err = -ENOMEM;
9231 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07009232 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009233
Yan, Zhenga22285a2010-05-16 10:48:46 -04009234 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009235 if (IS_ERR(trans)) {
9236 err = PTR_ERR(trans);
9237 goto out_free;
9238 }
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00009239
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009240 if (block_rsv)
9241 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009242
Chris Mason9f3a7422007-08-07 15:52:19 -04009243 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009244 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009245 path->nodes[level] = btrfs_lock_root_node(root);
9246 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04009247 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009248 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009249 memset(&wc->update_progress, 0,
9250 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04009251 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04009252 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009253 memcpy(&wc->update_progress, &key,
9254 sizeof(wc->update_progress));
9255
Chris Mason6702ed42007-08-07 16:15:09 -04009256 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009257 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04009258 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009259 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
9260 path->lowest_level = 0;
9261 if (ret < 0) {
9262 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009263 goto out_end_trans;
Chris Mason9f3a7422007-08-07 15:52:19 -04009264 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009265 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009266
Chris Mason7d9eb122008-07-08 14:19:17 -04009267 /*
9268 * unlock our path, this is safe because only this
9269 * function is allowed to delete this snapshot
9270 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009271 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04009272
Yan Zheng2c47e6052009-06-27 21:07:35 -04009273 level = btrfs_header_level(root->node);
9274 while (1) {
9275 btrfs_tree_lock(path->nodes[level]);
9276 btrfs_set_lock_blocking(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009277 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009278
9279 ret = btrfs_lookup_extent_info(trans, root,
9280 path->nodes[level]->start,
Josef Bacik3173a182013-03-07 14:22:04 -05009281 level, 1, &wc->refs[level],
Yan Zheng2c47e6052009-06-27 21:07:35 -04009282 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009283 if (ret < 0) {
9284 err = ret;
9285 goto out_end_trans;
9286 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009287 BUG_ON(wc->refs[level] == 0);
9288
9289 if (level == root_item->drop_level)
9290 break;
9291
9292 btrfs_tree_unlock(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009293 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009294 WARN_ON(wc->refs[level] != 1);
9295 level--;
9296 }
9297 }
9298
9299 wc->level = level;
9300 wc->shared_level = -1;
9301 wc->stage = DROP_REFERENCE;
9302 wc->update_ref = update_ref;
9303 wc->keep_locks = 0;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009304 wc->for_reloc = for_reloc;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009305 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009306
9307 while (1) {
David Sterba9d1a2a32013-03-12 15:13:28 +00009308
Yan Zheng2c47e6052009-06-27 21:07:35 -04009309 ret = walk_down_tree(trans, root, path, wc);
9310 if (ret < 0) {
9311 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04009312 break;
9313 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009314
9315 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
9316 if (ret < 0) {
9317 err = ret;
9318 break;
9319 }
9320
9321 if (ret > 0) {
9322 BUG_ON(wc->stage != DROP_REFERENCE);
9323 break;
9324 }
9325
9326 if (wc->stage == DROP_REFERENCE) {
9327 level = wc->level;
9328 btrfs_node_key(path->nodes[level],
9329 &root_item->drop_progress,
9330 path->slots[level]);
9331 root_item->drop_level = level;
9332 }
9333
9334 BUG_ON(wc->level == 0);
Josef Bacik3c8f2422013-07-15 11:57:06 -04009335 if (btrfs_should_end_transaction(trans, tree_root) ||
9336 (!for_reloc && btrfs_need_cleaner_sleep(root))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009337 ret = btrfs_update_root(trans, tree_root,
9338 &root->root_key,
9339 root_item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009340 if (ret) {
9341 btrfs_abort_transaction(trans, tree_root, ret);
9342 err = ret;
9343 goto out_end_trans;
9344 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009345
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009346 btrfs_end_transaction_throttle(trans, tree_root);
Josef Bacik3c8f2422013-07-15 11:57:06 -04009347 if (!for_reloc && btrfs_need_cleaner_sleep(root)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05009348 pr_debug("BTRFS: drop snapshot early exit\n");
Josef Bacik3c8f2422013-07-15 11:57:06 -04009349 err = -EAGAIN;
9350 goto out_free;
9351 }
9352
Yan, Zhenga22285a2010-05-16 10:48:46 -04009353 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009354 if (IS_ERR(trans)) {
9355 err = PTR_ERR(trans);
9356 goto out_free;
9357 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009358 if (block_rsv)
9359 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04009360 }
Chris Mason20524f02007-03-10 06:35:47 -05009361 }
David Sterbab3b4aa72011-04-21 01:20:15 +02009362 btrfs_release_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009363 if (err)
9364 goto out_end_trans;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009365
9366 ret = btrfs_del_root(trans, tree_root, &root->root_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009367 if (ret) {
9368 btrfs_abort_transaction(trans, tree_root, ret);
9369 goto out_end_trans;
9370 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009371
Yan, Zheng76dda932009-09-21 16:00:26 -04009372 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Miao Xiecb517ea2013-05-15 07:48:19 +00009373 ret = btrfs_find_root(tree_root, &root->root_key, path,
9374 NULL, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009375 if (ret < 0) {
9376 btrfs_abort_transaction(trans, tree_root, ret);
9377 err = ret;
9378 goto out_end_trans;
9379 } else if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05009380 /* if we fail to delete the orphan item this time
9381 * around, it'll get picked up the next time.
9382 *
9383 * The most common failure here is just -ENOENT.
9384 */
9385 btrfs_del_orphan_item(trans, tree_root,
9386 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04009387 }
9388 }
9389
Miao Xie27cdeb72014-04-02 19:51:05 +08009390 if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) {
Josef Bacik2b9dbef2015-09-15 10:07:04 -04009391 btrfs_add_dropped_root(trans, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009392 } else {
9393 free_extent_buffer(root->node);
9394 free_extent_buffer(root->commit_root);
Miao Xieb0feb9d2013-05-15 07:48:20 +00009395 btrfs_put_fs_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009396 }
Josef Bacikd29a9f62013-07-17 19:30:20 -04009397 root_dropped = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009398out_end_trans:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009399 btrfs_end_transaction_throttle(trans, tree_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009400out_free:
Yan Zheng2c47e6052009-06-27 21:07:35 -04009401 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04009402 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009403out:
Josef Bacikd29a9f62013-07-17 19:30:20 -04009404 /*
9405 * So if we need to stop dropping the snapshot for whatever reason we
9406 * need to make sure to add it back to the dead root list so that we
9407 * keep trying to do the work later. This also cleans up roots if we
9408 * don't have it in the radix (like when we recover after a power fail
9409 * or unmount) so we don't leak memory.
9410 */
Josef Bacikb37b39c2013-07-23 16:57:15 -04009411 if (!for_reloc && root_dropped == false)
Josef Bacikd29a9f62013-07-17 19:30:20 -04009412 btrfs_add_dead_root(root);
Wang Shilong90515e72014-01-07 17:26:58 +08009413 if (err && err != -EAGAIN)
Anand Jain34d97002016-03-16 16:43:06 +08009414 btrfs_handle_fs_error(root->fs_info, err, NULL);
Jeff Mahoney2c536792011-10-03 23:22:41 -04009415 return err;
Chris Mason20524f02007-03-10 06:35:47 -05009416}
Chris Mason9078a3e2007-04-26 16:46:15 -04009417
Yan Zheng2c47e6052009-06-27 21:07:35 -04009418/*
9419 * drop subtree rooted at tree block 'node'.
9420 *
9421 * NOTE: this function will unlock and release tree block 'node'
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009422 * only used by relocation code
Yan Zheng2c47e6052009-06-27 21:07:35 -04009423 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04009424int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
9425 struct btrfs_root *root,
9426 struct extent_buffer *node,
9427 struct extent_buffer *parent)
9428{
9429 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009430 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009431 int level;
9432 int parent_level;
9433 int ret = 0;
9434 int wret;
9435
Yan Zheng2c47e6052009-06-27 21:07:35 -04009436 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
9437
Yan Zhengf82d02d2008-10-29 14:49:05 -04009438 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009439 if (!path)
9440 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009441
Yan Zheng2c47e6052009-06-27 21:07:35 -04009442 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009443 if (!wc) {
9444 btrfs_free_path(path);
9445 return -ENOMEM;
9446 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009447
Chris Masonb9447ef2009-03-09 11:45:38 -04009448 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009449 parent_level = btrfs_header_level(parent);
9450 extent_buffer_get(parent);
9451 path->nodes[parent_level] = parent;
9452 path->slots[parent_level] = btrfs_header_nritems(parent);
9453
Chris Masonb9447ef2009-03-09 11:45:38 -04009454 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009455 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009456 path->nodes[level] = node;
9457 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009458 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009459
9460 wc->refs[parent_level] = 1;
9461 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
9462 wc->level = level;
9463 wc->shared_level = -1;
9464 wc->stage = DROP_REFERENCE;
9465 wc->update_ref = 0;
9466 wc->keep_locks = 1;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009467 wc->for_reloc = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009468 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009469
9470 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009471 wret = walk_down_tree(trans, root, path, wc);
9472 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04009473 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009474 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009475 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04009476
Yan Zheng2c47e6052009-06-27 21:07:35 -04009477 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009478 if (wret < 0)
9479 ret = wret;
9480 if (wret != 0)
9481 break;
9482 }
9483
Yan Zheng2c47e6052009-06-27 21:07:35 -04009484 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009485 btrfs_free_path(path);
9486 return ret;
9487}
9488
Chris Masonec44a352008-04-28 15:29:52 -04009489static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
9490{
9491 u64 num_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009492 u64 stripped;
Chris Masonec44a352008-04-28 15:29:52 -04009493
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009494 /*
9495 * if restripe for this chunk_type is on pick target profile and
9496 * return, otherwise do the usual balance
9497 */
9498 stripped = get_restripe_target(root->fs_info, flags);
9499 if (stripped)
9500 return extended_to_chunk(stripped);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02009501
Miao Xie95669972014-07-24 11:37:14 +08009502 num_devices = root->fs_info->fs_devices->rw_devices;
Chris Masoncd02dca2010-12-13 14:56:23 -05009503
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009504 stripped = BTRFS_BLOCK_GROUP_RAID0 |
David Woodhouse53b381b2013-01-29 18:40:14 -05009505 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009506 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
9507
Chris Masonec44a352008-04-28 15:29:52 -04009508 if (num_devices == 1) {
9509 stripped |= BTRFS_BLOCK_GROUP_DUP;
9510 stripped = flags & ~stripped;
9511
9512 /* turn raid0 into single device chunks */
9513 if (flags & BTRFS_BLOCK_GROUP_RAID0)
9514 return stripped;
9515
9516 /* turn mirroring into duplication */
9517 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
9518 BTRFS_BLOCK_GROUP_RAID10))
9519 return stripped | BTRFS_BLOCK_GROUP_DUP;
Chris Masonec44a352008-04-28 15:29:52 -04009520 } else {
9521 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04009522 if (flags & stripped)
9523 return flags;
9524
9525 stripped |= BTRFS_BLOCK_GROUP_DUP;
9526 stripped = flags & ~stripped;
9527
9528 /* switch duplicated blocks with raid1 */
9529 if (flags & BTRFS_BLOCK_GROUP_DUP)
9530 return stripped | BTRFS_BLOCK_GROUP_RAID1;
9531
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009532 /* this is drive concat, leave it alone */
Chris Masonec44a352008-04-28 15:29:52 -04009533 }
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009534
Chris Masonec44a352008-04-28 15:29:52 -04009535 return flags;
9536}
9537
Zhaolei868f4012015-08-05 16:43:27 +08009538static int inc_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04009539{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009540 struct btrfs_space_info *sinfo = cache->space_info;
9541 u64 num_bytes;
Miao Xie199c36e2011-07-15 10:34:36 +00009542 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009543 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04009544
Miao Xie199c36e2011-07-15 10:34:36 +00009545 /*
9546 * We need some metadata space and system metadata space for
9547 * allocating chunks in some corner cases until we force to set
9548 * it to be readonly.
9549 */
9550 if ((sinfo->flags &
9551 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
9552 !force)
Byongho Leeee221842015-12-15 01:42:10 +09009553 min_allocable_bytes = SZ_1M;
Miao Xie199c36e2011-07-15 10:34:36 +00009554 else
9555 min_allocable_bytes = 0;
9556
Yan, Zhengf0486c62010-05-16 10:46:25 -04009557 spin_lock(&sinfo->lock);
9558 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00009559
9560 if (cache->ro) {
Zhaolei868f4012015-08-05 16:43:27 +08009561 cache->ro++;
WuBo61cfea92011-07-26 03:30:11 +00009562 ret = 0;
9563 goto out;
9564 }
9565
Yan, Zhengf0486c62010-05-16 10:46:25 -04009566 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
9567 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04009568
Yan, Zhengf0486c62010-05-16 10:46:25 -04009569 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
Josef Bacik37be25b2011-08-05 10:25:38 -04009570 sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes +
9571 min_allocable_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04009572 sinfo->bytes_readonly += num_bytes;
Zhaolei868f4012015-08-05 16:43:27 +08009573 cache->ro++;
Josef Bacik633c0aa2014-10-31 09:49:34 -04009574 list_add_tail(&cache->ro_list, &sinfo->ro_bgs);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009575 ret = 0;
9576 }
WuBo61cfea92011-07-26 03:30:11 +00009577out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04009578 spin_unlock(&cache->lock);
9579 spin_unlock(&sinfo->lock);
9580 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04009581}
9582
Zhaolei868f4012015-08-05 16:43:27 +08009583int btrfs_inc_block_group_ro(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04009584 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009585
9586{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009587 struct btrfs_trans_handle *trans;
9588 u64 alloc_flags;
9589 int ret;
9590
Chris Mason1bbc6212015-04-06 12:46:08 -07009591again:
Josef Bacik7a7eaa42011-04-13 12:54:33 -04009592 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009593 if (IS_ERR(trans))
9594 return PTR_ERR(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009595
Chris Mason1bbc6212015-04-06 12:46:08 -07009596 /*
9597 * we're not allowed to set block groups readonly after the dirty
9598 * block groups cache has started writing. If it already started,
9599 * back off and let this transaction commit
9600 */
9601 mutex_lock(&root->fs_info->ro_block_group_mutex);
Josef Bacik3204d332015-09-24 10:46:10 -04009602 if (test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &trans->transaction->flags)) {
Chris Mason1bbc6212015-04-06 12:46:08 -07009603 u64 transid = trans->transid;
9604
9605 mutex_unlock(&root->fs_info->ro_block_group_mutex);
9606 btrfs_end_transaction(trans, root);
9607
9608 ret = btrfs_wait_for_commit(root, transid);
9609 if (ret)
9610 return ret;
9611 goto again;
9612 }
9613
Chris Mason153c35b2015-05-19 18:54:41 -07009614 /*
9615 * if we are changing raid levels, try to allocate a corresponding
9616 * block group with the new raid level.
9617 */
9618 alloc_flags = update_block_group_flags(root, cache->flags);
9619 if (alloc_flags != cache->flags) {
9620 ret = do_chunk_alloc(trans, root, alloc_flags,
9621 CHUNK_ALLOC_FORCE);
9622 /*
9623 * ENOSPC is allowed here, we may have enough space
9624 * already allocated at the new raid level to
9625 * carry on
9626 */
9627 if (ret == -ENOSPC)
9628 ret = 0;
9629 if (ret < 0)
9630 goto out;
9631 }
Chris Mason1bbc6212015-04-06 12:46:08 -07009632
Zhaolei868f4012015-08-05 16:43:27 +08009633 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009634 if (!ret)
9635 goto out;
9636 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
Josef Bacik698d0082012-09-12 14:08:47 -04009637 ret = do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04009638 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009639 if (ret < 0)
9640 goto out;
Zhaolei868f4012015-08-05 16:43:27 +08009641 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009642out:
Shaohua Li2f081082015-01-09 10:40:15 -08009643 if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
9644 alloc_flags = update_block_group_flags(root, cache->flags);
Filipe Mananaa9629592015-05-18 19:11:40 +01009645 lock_chunks(root->fs_info->chunk_root);
Filipe Manana4617ea32015-06-09 17:48:21 +01009646 check_system_chunk(trans, root, alloc_flags);
Filipe Mananaa9629592015-05-18 19:11:40 +01009647 unlock_chunks(root->fs_info->chunk_root);
Shaohua Li2f081082015-01-09 10:40:15 -08009648 }
Chris Mason1bbc6212015-04-06 12:46:08 -07009649 mutex_unlock(&root->fs_info->ro_block_group_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08009650
Yan, Zhengf0486c62010-05-16 10:46:25 -04009651 btrfs_end_transaction(trans, root);
9652 return ret;
9653}
9654
Chris Masonc87f08c2011-02-16 13:57:04 -05009655int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
9656 struct btrfs_root *root, u64 type)
9657{
9658 u64 alloc_flags = get_alloc_profile(root, type);
Josef Bacik698d0082012-09-12 14:08:47 -04009659 return do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04009660 CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05009661}
9662
Miao Xie6d07bce2011-01-05 10:07:31 +00009663/*
9664 * helper to account the unused space of all the readonly block group in the
Josef Bacik633c0aa2014-10-31 09:49:34 -04009665 * space_info. takes mirrors into account.
Miao Xie6d07bce2011-01-05 10:07:31 +00009666 */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009667u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
Miao Xie6d07bce2011-01-05 10:07:31 +00009668{
9669 struct btrfs_block_group_cache *block_group;
9670 u64 free_bytes = 0;
9671 int factor;
9672
Nicholas D Steeves01327612016-05-19 21:18:45 -04009673 /* It's df, we don't care if it's racy */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009674 if (list_empty(&sinfo->ro_bgs))
9675 return 0;
9676
9677 spin_lock(&sinfo->lock);
9678 list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00009679 spin_lock(&block_group->lock);
9680
9681 if (!block_group->ro) {
9682 spin_unlock(&block_group->lock);
9683 continue;
9684 }
9685
9686 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
9687 BTRFS_BLOCK_GROUP_RAID10 |
9688 BTRFS_BLOCK_GROUP_DUP))
9689 factor = 2;
9690 else
9691 factor = 1;
9692
9693 free_bytes += (block_group->key.offset -
9694 btrfs_block_group_used(&block_group->item)) *
9695 factor;
9696
9697 spin_unlock(&block_group->lock);
9698 }
Miao Xie6d07bce2011-01-05 10:07:31 +00009699 spin_unlock(&sinfo->lock);
9700
9701 return free_bytes;
9702}
9703
Zhaolei868f4012015-08-05 16:43:27 +08009704void btrfs_dec_block_group_ro(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04009705 struct btrfs_block_group_cache *cache)
9706{
9707 struct btrfs_space_info *sinfo = cache->space_info;
9708 u64 num_bytes;
9709
9710 BUG_ON(!cache->ro);
9711
9712 spin_lock(&sinfo->lock);
9713 spin_lock(&cache->lock);
Zhaolei868f4012015-08-05 16:43:27 +08009714 if (!--cache->ro) {
9715 num_bytes = cache->key.offset - cache->reserved -
9716 cache->pinned - cache->bytes_super -
9717 btrfs_block_group_used(&cache->item);
9718 sinfo->bytes_readonly -= num_bytes;
9719 list_del_init(&cache->ro_list);
9720 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009721 spin_unlock(&cache->lock);
9722 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009723}
9724
Josef Bacikba1bf482009-09-11 16:11:19 -04009725/*
9726 * checks to see if its even possible to relocate this block group.
9727 *
9728 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
9729 * ok to go ahead and try.
9730 */
9731int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04009732{
Zheng Yan1a40e232008-09-26 10:09:34 -04009733 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04009734 struct btrfs_space_info *space_info;
9735 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
9736 struct btrfs_device *device;
Josef Bacik6df9a952013-06-27 13:22:46 -04009737 struct btrfs_trans_handle *trans;
liubocdcb7252011-08-03 10:15:25 +00009738 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04009739 u64 dev_min = 1;
9740 u64 dev_nr = 0;
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009741 u64 target;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009742 int debug;
liubocdcb7252011-08-03 10:15:25 +00009743 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04009744 int full = 0;
9745 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05009746
Qu Wenruo0305bc22016-03-23 11:38:17 +08009747 debug = btrfs_test_opt(root, ENOSPC_DEBUG);
9748
Josef Bacikba1bf482009-09-11 16:11:19 -04009749 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04009750
Josef Bacikba1bf482009-09-11 16:11:19 -04009751 /* odd, couldn't find the block group, leave it alone */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009752 if (!block_group) {
9753 if (debug)
9754 btrfs_warn(root->fs_info,
9755 "can't find block group for bytenr %llu",
9756 bytenr);
Josef Bacikba1bf482009-09-11 16:11:19 -04009757 return -1;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009758 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009759
liubocdcb7252011-08-03 10:15:25 +00009760 min_free = btrfs_block_group_used(&block_group->item);
9761
Josef Bacikba1bf482009-09-11 16:11:19 -04009762 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00009763 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04009764 goto out;
Chris Mason323da792008-05-09 11:46:48 -04009765
Josef Bacikba1bf482009-09-11 16:11:19 -04009766 space_info = block_group->space_info;
9767 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04009768
Josef Bacikba1bf482009-09-11 16:11:19 -04009769 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04009770
Josef Bacikba1bf482009-09-11 16:11:19 -04009771 /*
9772 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04009773 * relocate it unless we're able to allocate a new chunk below.
9774 *
9775 * Otherwise, we need to make sure we have room in the space to handle
9776 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04009777 */
Chris Mason7ce618d2009-09-22 14:48:44 -04009778 if ((space_info->total_bytes != block_group->key.offset) &&
liubocdcb7252011-08-03 10:15:25 +00009779 (space_info->bytes_used + space_info->bytes_reserved +
9780 space_info->bytes_pinned + space_info->bytes_readonly +
9781 min_free < space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04009782 spin_unlock(&space_info->lock);
9783 goto out;
9784 }
9785 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009786
Josef Bacikba1bf482009-09-11 16:11:19 -04009787 /*
9788 * ok we don't have enough space, but maybe we have free space on our
9789 * devices to allocate new chunks for relocation, so loop through our
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009790 * alloc devices and guess if we have enough space. if this block
9791 * group is going to be restriped, run checks against the target
9792 * profile instead of the current one.
Josef Bacikba1bf482009-09-11 16:11:19 -04009793 */
9794 ret = -1;
Chris Mason4313b392008-01-03 09:08:48 -05009795
liubocdcb7252011-08-03 10:15:25 +00009796 /*
9797 * index:
9798 * 0: raid10
9799 * 1: raid1
9800 * 2: dup
9801 * 3: raid0
9802 * 4: single
9803 */
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009804 target = get_restripe_target(root->fs_info, block_group->flags);
9805 if (target) {
Liu Bo31e50222012-11-21 14:18:10 +00009806 index = __get_raid_index(extended_to_chunk(target));
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009807 } else {
9808 /*
9809 * this is just a balance, so if we were marked as full
9810 * we know there is no space for a new chunk
9811 */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009812 if (full) {
9813 if (debug)
9814 btrfs_warn(root->fs_info,
9815 "no space to alloc new chunk for block group %llu",
9816 block_group->key.objectid);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009817 goto out;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009818 }
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009819
9820 index = get_block_group_index(block_group);
9821 }
9822
Miao Xiee6ec7162013-01-17 05:38:51 +00009823 if (index == BTRFS_RAID_RAID10) {
liubocdcb7252011-08-03 10:15:25 +00009824 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04009825 /* Divide by 2 */
9826 min_free >>= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009827 } else if (index == BTRFS_RAID_RAID1) {
liubocdcb7252011-08-03 10:15:25 +00009828 dev_min = 2;
Miao Xiee6ec7162013-01-17 05:38:51 +00009829 } else if (index == BTRFS_RAID_DUP) {
Josef Bacik6719db62011-08-20 08:29:51 -04009830 /* Multiply by 2 */
9831 min_free <<= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009832 } else if (index == BTRFS_RAID_RAID0) {
liubocdcb7252011-08-03 10:15:25 +00009833 dev_min = fs_devices->rw_devices;
David Sterba47c57132015-02-20 18:43:47 +01009834 min_free = div64_u64(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00009835 }
9836
Josef Bacik6df9a952013-06-27 13:22:46 -04009837 /* We need to do this so that we can look at pending chunks */
9838 trans = btrfs_join_transaction(root);
9839 if (IS_ERR(trans)) {
9840 ret = PTR_ERR(trans);
9841 goto out;
9842 }
9843
Josef Bacikba1bf482009-09-11 16:11:19 -04009844 mutex_lock(&root->fs_info->chunk_mutex);
9845 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00009846 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04009847
Josef Bacikba1bf482009-09-11 16:11:19 -04009848 /*
9849 * check to make sure we can actually find a chunk with enough
9850 * space to fit our block group in.
9851 */
Stefan Behrens63a212a2012-11-05 18:29:28 +01009852 if (device->total_bytes > device->bytes_used + min_free &&
9853 !device->is_tgtdev_for_dev_replace) {
Josef Bacik6df9a952013-06-27 13:22:46 -04009854 ret = find_free_dev_extent(trans, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00009855 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04009856 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00009857 dev_nr++;
9858
9859 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05009860 break;
liubocdcb7252011-08-03 10:15:25 +00009861
Josef Bacikba1bf482009-09-11 16:11:19 -04009862 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05009863 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009864 }
Qu Wenruo0305bc22016-03-23 11:38:17 +08009865 if (debug && ret == -1)
9866 btrfs_warn(root->fs_info,
9867 "no space to allocate a new chunk for block group %llu",
9868 block_group->key.objectid);
Josef Bacikba1bf482009-09-11 16:11:19 -04009869 mutex_unlock(&root->fs_info->chunk_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04009870 btrfs_end_transaction(trans, root);
Chris Masonedbd8d42007-12-21 16:27:24 -05009871out:
Josef Bacikba1bf482009-09-11 16:11:19 -04009872 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05009873 return ret;
9874}
9875
Christoph Hellwigb2950862008-12-02 09:54:17 -05009876static int find_first_block_group(struct btrfs_root *root,
9877 struct btrfs_path *path, struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04009878{
Chris Mason925baed2008-06-25 16:01:30 -04009879 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04009880 struct btrfs_key found_key;
9881 struct extent_buffer *leaf;
9882 int slot;
9883
9884 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
9885 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009886 goto out;
9887
Chris Masond3977122009-01-05 21:25:51 -05009888 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04009889 slot = path->slots[0];
9890 leaf = path->nodes[0];
9891 if (slot >= btrfs_header_nritems(leaf)) {
9892 ret = btrfs_next_leaf(root, path);
9893 if (ret == 0)
9894 continue;
9895 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009896 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04009897 break;
9898 }
9899 btrfs_item_key_to_cpu(leaf, &found_key, slot);
9900
9901 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04009902 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
9903 ret = 0;
9904 goto out;
9905 }
Chris Mason0b86a832008-03-24 15:01:56 -04009906 path->slots[0]++;
9907 }
Chris Mason925baed2008-06-25 16:01:30 -04009908out:
Chris Mason0b86a832008-03-24 15:01:56 -04009909 return ret;
9910}
9911
Josef Bacik0af3d002010-06-21 14:48:16 -04009912void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
9913{
9914 struct btrfs_block_group_cache *block_group;
9915 u64 last = 0;
9916
9917 while (1) {
9918 struct inode *inode;
9919
9920 block_group = btrfs_lookup_first_block_group(info, last);
9921 while (block_group) {
9922 spin_lock(&block_group->lock);
9923 if (block_group->iref)
9924 break;
9925 spin_unlock(&block_group->lock);
9926 block_group = next_block_group(info->tree_root,
9927 block_group);
9928 }
9929 if (!block_group) {
9930 if (last == 0)
9931 break;
9932 last = 0;
9933 continue;
9934 }
9935
9936 inode = block_group->inode;
9937 block_group->iref = 0;
9938 block_group->inode = NULL;
9939 spin_unlock(&block_group->lock);
9940 iput(inode);
9941 last = block_group->key.objectid + block_group->key.offset;
9942 btrfs_put_block_group(block_group);
9943 }
9944}
9945
Zheng Yan1a40e232008-09-26 10:09:34 -04009946int btrfs_free_block_groups(struct btrfs_fs_info *info)
9947{
9948 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04009949 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04009950 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04009951 struct rb_node *n;
9952
Josef Bacik9e351cc2014-03-13 15:42:13 -04009953 down_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04009954 while (!list_empty(&info->caching_block_groups)) {
9955 caching_ctl = list_entry(info->caching_block_groups.next,
9956 struct btrfs_caching_control, list);
9957 list_del(&caching_ctl->list);
9958 put_caching_control(caching_ctl);
9959 }
Josef Bacik9e351cc2014-03-13 15:42:13 -04009960 up_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04009961
Josef Bacik47ab2a62014-09-18 11:20:02 -04009962 spin_lock(&info->unused_bgs_lock);
9963 while (!list_empty(&info->unused_bgs)) {
9964 block_group = list_first_entry(&info->unused_bgs,
9965 struct btrfs_block_group_cache,
9966 bg_list);
9967 list_del_init(&block_group->bg_list);
9968 btrfs_put_block_group(block_group);
9969 }
9970 spin_unlock(&info->unused_bgs_lock);
9971
Zheng Yan1a40e232008-09-26 10:09:34 -04009972 spin_lock(&info->block_group_cache_lock);
9973 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
9974 block_group = rb_entry(n, struct btrfs_block_group_cache,
9975 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04009976 rb_erase(&block_group->cache_node,
9977 &info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +00009978 RB_CLEAR_NODE(&block_group->cache_node);
Yan Zhengd899e052008-10-30 14:25:28 -04009979 spin_unlock(&info->block_group_cache_lock);
9980
Josef Bacik80eb2342008-10-29 14:49:05 -04009981 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04009982 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04009983 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05009984
Josef Bacik817d52f2009-07-13 21:29:25 -04009985 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04009986 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04009987
Josef Bacik3c148742011-02-02 15:53:47 +00009988 /*
9989 * We haven't cached this block group, which means we could
9990 * possibly have excluded extents on this block group.
9991 */
Josef Bacik36cce922013-08-05 11:15:21 -04009992 if (block_group->cached == BTRFS_CACHE_NO ||
9993 block_group->cached == BTRFS_CACHE_ERROR)
Josef Bacik3c148742011-02-02 15:53:47 +00009994 free_excluded_extents(info->extent_root, block_group);
9995
Josef Bacik817d52f2009-07-13 21:29:25 -04009996 btrfs_remove_free_space_cache(block_group);
Josef Bacik11dfe352009-11-13 20:12:59 +00009997 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04009998
9999 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -040010000 }
10001 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -040010002
10003 /* now that all the block groups are freed, go through and
10004 * free all the space_info structs. This is only called during
10005 * the final stages of unmount, and so we know nobody is
10006 * using them. We call synchronize_rcu() once before we start,
10007 * just to be on the safe side.
10008 */
10009 synchronize_rcu();
10010
Yan, Zheng8929ecfa2010-05-16 10:49:58 -040010011 release_global_block_rsv(info);
10012
Dulshani Gunawardhana67871252013-10-31 10:33:04 +053010013 while (!list_empty(&info->space_info)) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010014 int i;
10015
Chris Mason4184ea72009-03-10 12:39:20 -040010016 space_info = list_entry(info->space_info.next,
10017 struct btrfs_space_info,
10018 list);
Josef Bacikd555b6c2016-03-25 13:25:51 -040010019
10020 /*
10021 * Do not hide this behind enospc_debug, this is actually
10022 * important and indicates a real bug if this happens.
10023 */
10024 if (WARN_ON(space_info->bytes_pinned > 0 ||
David Sterbab069e0c2013-02-08 21:28:17 +000010025 space_info->bytes_reserved > 0 ||
Josef Bacikd555b6c2016-03-25 13:25:51 -040010026 space_info->bytes_may_use > 0))
10027 dump_space_info(space_info, 0, 0);
Chris Mason4184ea72009-03-10 12:39:20 -040010028 list_del(&space_info->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010029 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
10030 struct kobject *kobj;
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010031 kobj = space_info->block_group_kobjs[i];
10032 space_info->block_group_kobjs[i] = NULL;
10033 if (kobj) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010034 kobject_del(kobj);
10035 kobject_put(kobj);
10036 }
10037 }
10038 kobject_del(&space_info->kobj);
10039 kobject_put(&space_info->kobj);
Chris Mason4184ea72009-03-10 12:39:20 -040010040 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010041 return 0;
10042}
10043
Yan, Zhengb742bb82010-05-16 10:46:24 -040010044static void __link_block_group(struct btrfs_space_info *space_info,
10045 struct btrfs_block_group_cache *cache)
10046{
10047 int index = get_block_group_index(cache);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -040010048 bool first = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -040010049
10050 down_write(&space_info->groups_sem);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -040010051 if (list_empty(&space_info->block_groups[index]))
10052 first = true;
10053 list_add_tail(&cache->list, &space_info->block_groups[index]);
10054 up_write(&space_info->groups_sem);
10055
10056 if (first) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010057 struct raid_kobject *rkobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010058 int ret;
10059
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010060 rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS);
10061 if (!rkobj)
10062 goto out_err;
10063 rkobj->raid_type = index;
10064 kobject_init(&rkobj->kobj, &btrfs_raid_ktype);
10065 ret = kobject_add(&rkobj->kobj, &space_info->kobj,
10066 "%s", get_raid_name(index));
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010067 if (ret) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010068 kobject_put(&rkobj->kobj);
10069 goto out_err;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010070 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010071 space_info->block_group_kobjs[index] = &rkobj->kobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010072 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010073
10074 return;
10075out_err:
10076 pr_warn("BTRFS: failed to add kobject for block cache. ignoring.\n");
Yan, Zhengb742bb82010-05-16 10:46:24 -040010077}
10078
Miao Xie920e4a52014-01-15 20:00:55 +080010079static struct btrfs_block_group_cache *
10080btrfs_create_block_group_cache(struct btrfs_root *root, u64 start, u64 size)
10081{
10082 struct btrfs_block_group_cache *cache;
10083
10084 cache = kzalloc(sizeof(*cache), GFP_NOFS);
10085 if (!cache)
10086 return NULL;
10087
10088 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
10089 GFP_NOFS);
10090 if (!cache->free_space_ctl) {
10091 kfree(cache);
10092 return NULL;
10093 }
10094
10095 cache->key.objectid = start;
10096 cache->key.offset = size;
10097 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
10098
10099 cache->sectorsize = root->sectorsize;
10100 cache->fs_info = root->fs_info;
10101 cache->full_stripe_len = btrfs_full_stripe_len(root,
10102 &root->fs_info->mapping_tree,
10103 start);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010104 set_free_space_tree_thresholds(cache);
10105
Miao Xie920e4a52014-01-15 20:00:55 +080010106 atomic_set(&cache->count, 1);
10107 spin_lock_init(&cache->lock);
Miao Xiee570fd22014-06-19 10:42:50 +080010108 init_rwsem(&cache->data_rwsem);
Miao Xie920e4a52014-01-15 20:00:55 +080010109 INIT_LIST_HEAD(&cache->list);
10110 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010111 INIT_LIST_HEAD(&cache->bg_list);
Josef Bacik633c0aa2014-10-31 09:49:34 -040010112 INIT_LIST_HEAD(&cache->ro_list);
Josef Bacikce93ec52014-11-17 15:45:48 -050010113 INIT_LIST_HEAD(&cache->dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -070010114 INIT_LIST_HEAD(&cache->io_list);
Miao Xie920e4a52014-01-15 20:00:55 +080010115 btrfs_init_free_space_ctl(cache);
Filipe Manana04216822014-11-27 21:14:15 +000010116 atomic_set(&cache->trimming, 0);
Omar Sandovala5ed9182015-09-29 20:50:35 -070010117 mutex_init(&cache->free_space_lock);
Miao Xie920e4a52014-01-15 20:00:55 +080010118
10119 return cache;
10120}
10121
Chris Mason9078a3e2007-04-26 16:46:15 -040010122int btrfs_read_block_groups(struct btrfs_root *root)
10123{
10124 struct btrfs_path *path;
10125 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -040010126 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -040010127 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -040010128 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -040010129 struct btrfs_key key;
10130 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -040010131 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -040010132 int need_clear = 0;
10133 u64 cache_gen;
Chris Mason96b51792007-10-15 16:15:19 -040010134
Chris Masonbe744172007-05-06 10:15:01 -040010135 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -040010136 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -040010137 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +020010138 key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Chris Mason9078a3e2007-04-26 16:46:15 -040010139 path = btrfs_alloc_path();
10140 if (!path)
10141 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +010010142 path->reada = READA_FORWARD;
Chris Mason9078a3e2007-04-26 16:46:15 -040010143
David Sterba6c417612011-04-13 15:41:04 +020010144 cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
Josef Bacik73bc1872011-10-03 14:07:49 -040010145 if (btrfs_test_opt(root, SPACE_CACHE) &&
David Sterba6c417612011-04-13 15:41:04 +020010146 btrfs_super_generation(root->fs_info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -040010147 need_clear = 1;
Josef Bacik88c2ba32010-09-21 14:21:34 -040010148 if (btrfs_test_opt(root, CLEAR_CACHE))
10149 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -040010150
Chris Masond3977122009-01-05 21:25:51 -050010151 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -040010152 ret = find_first_block_group(root, path, &key);
Yan, Zhengb742bb82010-05-16 10:46:24 -040010153 if (ret > 0)
10154 break;
Chris Mason0b86a832008-03-24 15:01:56 -040010155 if (ret != 0)
10156 goto error;
Miao Xie920e4a52014-01-15 20:00:55 +080010157
Chris Mason5f39d392007-10-15 16:14:19 -040010158 leaf = path->nodes[0];
10159 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Miao Xie920e4a52014-01-15 20:00:55 +080010160
10161 cache = btrfs_create_block_group_cache(root, found_key.objectid,
10162 found_key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -040010163 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -040010164 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -040010165 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -040010166 }
Josef Bacik96303082009-07-13 21:29:25 -040010167
Liu Bocf7c1ef2012-07-06 03:31:34 -060010168 if (need_clear) {
10169 /*
10170 * When we mount with old space cache, we need to
10171 * set BTRFS_DC_CLEAR and set dirty flag.
10172 *
10173 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
10174 * truncate the old free space cache inode and
10175 * setup a new one.
10176 * b) Setting 'dirty flag' makes sure that we flush
10177 * the new space cache info onto disk.
10178 */
Liu Bocf7c1ef2012-07-06 03:31:34 -060010179 if (btrfs_test_opt(root, SPACE_CACHE))
Josef Bacikce93ec52014-11-17 15:45:48 -050010180 cache->disk_cache_state = BTRFS_DC_CLEAR;
Liu Bocf7c1ef2012-07-06 03:31:34 -060010181 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010182
Chris Mason5f39d392007-10-15 16:14:19 -040010183 read_extent_buffer(leaf, &cache->item,
10184 btrfs_item_ptr_offset(leaf, path->slots[0]),
10185 sizeof(cache->item));
Miao Xie920e4a52014-01-15 20:00:55 +080010186 cache->flags = btrfs_block_group_flags(&cache->item);
Chris Mason0b86a832008-03-24 15:01:56 -040010187
Chris Mason9078a3e2007-04-26 16:46:15 -040010188 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +020010189 btrfs_release_path(path);
Li Zefan34d52cb2011-03-29 13:46:06 +080010190
Josef Bacik817d52f2009-07-13 21:29:25 -040010191 /*
Josef Bacik3c148742011-02-02 15:53:47 +000010192 * We need to exclude the super stripes now so that the space
10193 * info has super bytes accounted for, otherwise we'll think
10194 * we have more space than we actually do.
10195 */
Josef Bacik835d9742013-03-19 12:13:25 -040010196 ret = exclude_super_stripes(root, cache);
10197 if (ret) {
10198 /*
10199 * We may have excluded something, so call this just in
10200 * case.
10201 */
10202 free_excluded_extents(root, cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010203 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010204 goto error;
10205 }
Josef Bacik3c148742011-02-02 15:53:47 +000010206
10207 /*
Josef Bacik817d52f2009-07-13 21:29:25 -040010208 * check for two cases, either we are full, and therefore
10209 * don't need to bother with the caching work since we won't
10210 * find any space, or we are empty, and we can just add all
10211 * the space in and be done with it. This saves us _alot_ of
10212 * time, particularly in the full case.
10213 */
10214 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -040010215 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010216 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik1b2da372009-09-11 16:11:20 -040010217 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010218 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -040010219 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010220 cache->cached = BTRFS_CACHE_FINISHED;
10221 add_new_free_space(cache, root->fs_info,
10222 found_key.objectid,
10223 found_key.objectid +
10224 found_key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -040010225 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010226 }
Chris Mason96b51792007-10-15 16:15:19 -040010227
Josef Bacik8c579fe2013-04-02 12:40:42 -040010228 ret = btrfs_add_block_group_cache(root->fs_info, cache);
10229 if (ret) {
10230 btrfs_remove_free_space_cache(cache);
10231 btrfs_put_block_group(cache);
10232 goto error;
10233 }
10234
Josef Bacikc83f8ef2016-03-25 13:25:52 -040010235 trace_btrfs_add_block_group(root->fs_info, cache, 0);
Chris Mason6324fbf2008-03-24 15:01:59 -040010236 ret = update_space_info(info, cache->flags, found_key.offset,
10237 btrfs_block_group_used(&cache->item),
Josef Bacike40edf22016-03-25 13:25:47 -040010238 cache->bytes_super, &space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010239 if (ret) {
10240 btrfs_remove_free_space_cache(cache);
10241 spin_lock(&info->block_group_cache_lock);
10242 rb_erase(&cache->cache_node,
10243 &info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +000010244 RB_CLEAR_NODE(&cache->cache_node);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010245 spin_unlock(&info->block_group_cache_lock);
10246 btrfs_put_block_group(cache);
10247 goto error;
10248 }
10249
Chris Mason6324fbf2008-03-24 15:01:59 -040010250 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -040010251
Yan, Zhengb742bb82010-05-16 10:46:24 -040010252 __link_block_group(space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010253
Chris Mason75ccf472008-09-30 19:24:06 -040010254 set_avail_alloc_bits(root->fs_info, cache->flags);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010255 if (btrfs_chunk_readonly(root, cache->key.objectid)) {
Zhaolei868f4012015-08-05 16:43:27 +080010256 inc_block_group_ro(cache, 1);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010257 } else if (btrfs_block_group_used(&cache->item) == 0) {
10258 spin_lock(&info->unused_bgs_lock);
10259 /* Should always be true but just in case. */
10260 if (list_empty(&cache->bg_list)) {
10261 btrfs_get_block_group(cache);
10262 list_add_tail(&cache->bg_list,
10263 &info->unused_bgs);
10264 }
10265 spin_unlock(&info->unused_bgs_lock);
10266 }
Chris Mason9078a3e2007-04-26 16:46:15 -040010267 }
Yan, Zhengb742bb82010-05-16 10:46:24 -040010268
10269 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
10270 if (!(get_alloc_profile(root, space_info->flags) &
10271 (BTRFS_BLOCK_GROUP_RAID10 |
10272 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -050010273 BTRFS_BLOCK_GROUP_RAID5 |
10274 BTRFS_BLOCK_GROUP_RAID6 |
Yan, Zhengb742bb82010-05-16 10:46:24 -040010275 BTRFS_BLOCK_GROUP_DUP)))
10276 continue;
10277 /*
10278 * avoid allocating from un-mirrored block group if there are
10279 * mirrored block groups.
10280 */
chandan1095cc02013-07-16 12:28:56 +053010281 list_for_each_entry(cache,
10282 &space_info->block_groups[BTRFS_RAID_RAID0],
10283 list)
Zhaolei868f4012015-08-05 16:43:27 +080010284 inc_block_group_ro(cache, 1);
chandan1095cc02013-07-16 12:28:56 +053010285 list_for_each_entry(cache,
10286 &space_info->block_groups[BTRFS_RAID_SINGLE],
10287 list)
Zhaolei868f4012015-08-05 16:43:27 +080010288 inc_block_group_ro(cache, 1);
Yan, Zhengb742bb82010-05-16 10:46:24 -040010289 }
Yan, Zhengf0486c62010-05-16 10:46:25 -040010290
10291 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -040010292 ret = 0;
10293error:
Chris Mason9078a3e2007-04-26 16:46:15 -040010294 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -040010295 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -040010296}
Chris Mason6324fbf2008-03-24 15:01:59 -040010297
Josef Bacikea658ba2012-09-11 16:57:25 -040010298void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans,
10299 struct btrfs_root *root)
10300{
10301 struct btrfs_block_group_cache *block_group, *tmp;
10302 struct btrfs_root *extent_root = root->fs_info->extent_root;
10303 struct btrfs_block_group_item item;
10304 struct btrfs_key key;
10305 int ret = 0;
Filipe Mananad9a05402015-10-03 13:13:13 +010010306 bool can_flush_pending_bgs = trans->can_flush_pending_bgs;
Josef Bacikea658ba2012-09-11 16:57:25 -040010307
Filipe Mananad9a05402015-10-03 13:13:13 +010010308 trans->can_flush_pending_bgs = false;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010309 list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) {
Josef Bacikea658ba2012-09-11 16:57:25 -040010310 if (ret)
Filipe Mananac92f6be2014-11-26 15:28:55 +000010311 goto next;
Josef Bacikea658ba2012-09-11 16:57:25 -040010312
10313 spin_lock(&block_group->lock);
10314 memcpy(&item, &block_group->item, sizeof(item));
10315 memcpy(&key, &block_group->key, sizeof(key));
10316 spin_unlock(&block_group->lock);
10317
10318 ret = btrfs_insert_item(trans, extent_root, &key, &item,
10319 sizeof(item));
10320 if (ret)
10321 btrfs_abort_transaction(trans, extent_root, ret);
Josef Bacik6df9a952013-06-27 13:22:46 -040010322 ret = btrfs_finish_chunk_alloc(trans, extent_root,
10323 key.objectid, key.offset);
10324 if (ret)
10325 btrfs_abort_transaction(trans, extent_root, ret);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010326 add_block_group_free_space(trans, root->fs_info, block_group);
10327 /* already aborted the transaction if it failed. */
Filipe Mananac92f6be2014-11-26 15:28:55 +000010328next:
10329 list_del_init(&block_group->bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -040010330 }
Filipe Mananad9a05402015-10-03 13:13:13 +010010331 trans->can_flush_pending_bgs = can_flush_pending_bgs;
Josef Bacikea658ba2012-09-11 16:57:25 -040010332}
10333
Chris Mason6324fbf2008-03-24 15:01:59 -040010334int btrfs_make_block_group(struct btrfs_trans_handle *trans,
10335 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -040010336 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -040010337 u64 size)
10338{
10339 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -040010340 struct btrfs_root *extent_root;
10341 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -040010342 extent_root = root->fs_info->extent_root;
Chris Mason6324fbf2008-03-24 15:01:59 -040010343
Miao Xie995946d2014-04-02 19:51:06 +080010344 btrfs_set_log_full_commit(root->fs_info, trans);
Chris Masone02119d2008-09-05 16:13:11 -040010345
Miao Xie920e4a52014-01-15 20:00:55 +080010346 cache = btrfs_create_block_group_cache(root, chunk_offset, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -040010347 if (!cache)
10348 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +080010349
Chris Mason6324fbf2008-03-24 15:01:59 -040010350 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -040010351 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
Chris Mason6324fbf2008-03-24 15:01:59 -040010352 btrfs_set_block_group_flags(&cache->item, type);
10353
Miao Xie920e4a52014-01-15 20:00:55 +080010354 cache->flags = type;
Yan Zheng11833d62009-09-11 16:11:19 -040010355 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010356 cache->cached = BTRFS_CACHE_FINISHED;
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010357 cache->needs_free_space = 1;
Josef Bacik835d9742013-03-19 12:13:25 -040010358 ret = exclude_super_stripes(root, cache);
10359 if (ret) {
10360 /*
10361 * We may have excluded something, so call this just in
10362 * case.
10363 */
10364 free_excluded_extents(root, cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010365 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010366 return ret;
10367 }
Josef Bacik96303082009-07-13 21:29:25 -040010368
Josef Bacik817d52f2009-07-13 21:29:25 -040010369 add_new_free_space(cache, root->fs_info, chunk_offset,
10370 chunk_offset + size);
10371
Yan Zheng11833d62009-09-11 16:11:19 -040010372 free_excluded_extents(root, cache);
10373
Josef Bacikd0bd4562015-09-23 14:54:14 -040010374#ifdef CONFIG_BTRFS_DEBUG
10375 if (btrfs_should_fragment_free_space(root, cache)) {
10376 u64 new_bytes_used = size - bytes_used;
10377
10378 bytes_used += new_bytes_used >> 1;
10379 fragment_free_space(root, cache);
10380 }
10381#endif
Filipe Manana2e6e5182015-05-12 00:28:11 +010010382 /*
10383 * Call to ensure the corresponding space_info object is created and
10384 * assigned to our block group, but don't update its counters just yet.
10385 * We want our bg to be added to the rbtree with its ->space_info set.
10386 */
Josef Bacike40edf22016-03-25 13:25:47 -040010387 ret = update_space_info(root->fs_info, cache->flags, 0, 0, 0,
Filipe Manana2e6e5182015-05-12 00:28:11 +010010388 &cache->space_info);
10389 if (ret) {
10390 btrfs_remove_free_space_cache(cache);
10391 btrfs_put_block_group(cache);
10392 return ret;
10393 }
10394
Josef Bacik8c579fe2013-04-02 12:40:42 -040010395 ret = btrfs_add_block_group_cache(root->fs_info, cache);
10396 if (ret) {
10397 btrfs_remove_free_space_cache(cache);
10398 btrfs_put_block_group(cache);
10399 return ret;
10400 }
10401
Filipe Manana2e6e5182015-05-12 00:28:11 +010010402 /*
10403 * Now that our block group has its ->space_info set and is inserted in
10404 * the rbtree, update the space info's counters.
10405 */
Josef Bacikc83f8ef2016-03-25 13:25:52 -040010406 trace_btrfs_add_block_group(root->fs_info, cache, 1);
Chris Mason6324fbf2008-03-24 15:01:59 -040010407 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -040010408 cache->bytes_super, &cache->space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010409 if (ret) {
10410 btrfs_remove_free_space_cache(cache);
10411 spin_lock(&root->fs_info->block_group_cache_lock);
10412 rb_erase(&cache->cache_node,
10413 &root->fs_info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +000010414 RB_CLEAR_NODE(&cache->cache_node);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010415 spin_unlock(&root->fs_info->block_group_cache_lock);
10416 btrfs_put_block_group(cache);
10417 return ret;
10418 }
Li Zefanc7c144d2011-12-07 10:39:22 +080010419 update_global_block_rsv(root->fs_info);
Josef Bacik1b2da372009-09-11 16:11:20 -040010420
Yan, Zhengb742bb82010-05-16 10:46:24 -040010421 __link_block_group(cache->space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010422
Josef Bacik47ab2a62014-09-18 11:20:02 -040010423 list_add_tail(&cache->bg_list, &trans->new_bgs);
Chris Mason6324fbf2008-03-24 15:01:59 -040010424
Chris Masond18a2c42008-04-04 15:40:00 -040010425 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason6324fbf2008-03-24 15:01:59 -040010426 return 0;
10427}
Zheng Yan1a40e232008-09-26 10:09:34 -040010428
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010429static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
10430{
Ilya Dryomov899c81e2012-03-27 17:09:16 +030010431 u64 extra_flags = chunk_to_extended(flags) &
10432 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010433
Miao Xiede98ced2013-01-29 10:13:12 +000010434 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010435 if (flags & BTRFS_BLOCK_GROUP_DATA)
10436 fs_info->avail_data_alloc_bits &= ~extra_flags;
10437 if (flags & BTRFS_BLOCK_GROUP_METADATA)
10438 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
10439 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
10440 fs_info->avail_system_alloc_bits &= ~extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +000010441 write_sequnlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010442}
10443
Zheng Yan1a40e232008-09-26 10:09:34 -040010444int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
Filipe Manana04216822014-11-27 21:14:15 +000010445 struct btrfs_root *root, u64 group_start,
10446 struct extent_map *em)
Zheng Yan1a40e232008-09-26 10:09:34 -040010447{
10448 struct btrfs_path *path;
10449 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -040010450 struct btrfs_free_cluster *cluster;
Josef Bacik0af3d002010-06-21 14:48:16 -040010451 struct btrfs_root *tree_root = root->fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -040010452 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -040010453 struct inode *inode;
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010454 struct kobject *kobj = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -040010455 int ret;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010456 int index;
Josef Bacik89a55892010-10-14 14:52:27 -040010457 int factor;
Filipe Manana4f69cb92014-11-26 15:28:51 +000010458 struct btrfs_caching_control *caching_ctl = NULL;
Filipe Manana04216822014-11-27 21:14:15 +000010459 bool remove_em;
Zheng Yan1a40e232008-09-26 10:09:34 -040010460
Zheng Yan1a40e232008-09-26 10:09:34 -040010461 root = root->fs_info->extent_root;
10462
10463 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
10464 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -050010465 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -040010466
liubo9f7c43c2011-03-07 02:13:33 +000010467 /*
10468 * Free the reserved super bytes from this block group before
10469 * remove it.
10470 */
10471 free_excluded_extents(root, block_group);
10472
Zheng Yan1a40e232008-09-26 10:09:34 -040010473 memcpy(&key, &block_group->key, sizeof(key));
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010474 index = get_block_group_index(block_group);
Josef Bacik89a55892010-10-14 14:52:27 -040010475 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
10476 BTRFS_BLOCK_GROUP_RAID1 |
10477 BTRFS_BLOCK_GROUP_RAID10))
10478 factor = 2;
10479 else
10480 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -040010481
Chris Mason44fb5512009-06-04 15:34:51 -040010482 /* make sure this block group isn't part of an allocation cluster */
10483 cluster = &root->fs_info->data_alloc_cluster;
10484 spin_lock(&cluster->refill_lock);
10485 btrfs_return_cluster_to_free_space(block_group, cluster);
10486 spin_unlock(&cluster->refill_lock);
10487
10488 /*
10489 * make sure this block group isn't part of a metadata
10490 * allocation cluster
10491 */
10492 cluster = &root->fs_info->meta_alloc_cluster;
10493 spin_lock(&cluster->refill_lock);
10494 btrfs_return_cluster_to_free_space(block_group, cluster);
10495 spin_unlock(&cluster->refill_lock);
10496
Zheng Yan1a40e232008-09-26 10:09:34 -040010497 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -070010498 if (!path) {
10499 ret = -ENOMEM;
10500 goto out;
10501 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010502
Chris Mason1bbc6212015-04-06 12:46:08 -070010503 /*
10504 * get the inode first so any iput calls done for the io_list
10505 * aren't the final iput (no unlinks allowed now)
10506 */
Ilya Dryomov10b2f342011-10-02 13:56:53 +030010507 inode = lookup_free_space_inode(tree_root, block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -070010508
10509 mutex_lock(&trans->transaction->cache_write_mutex);
10510 /*
10511 * make sure our free spache cache IO is done before remove the
10512 * free space inode
10513 */
10514 spin_lock(&trans->transaction->dirty_bgs_lock);
10515 if (!list_empty(&block_group->io_list)) {
10516 list_del_init(&block_group->io_list);
10517
10518 WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode);
10519
10520 spin_unlock(&trans->transaction->dirty_bgs_lock);
10521 btrfs_wait_cache_io(root, trans, block_group,
10522 &block_group->io_ctl, path,
10523 block_group->key.objectid);
10524 btrfs_put_block_group(block_group);
10525 spin_lock(&trans->transaction->dirty_bgs_lock);
10526 }
10527
10528 if (!list_empty(&block_group->dirty_list)) {
10529 list_del_init(&block_group->dirty_list);
10530 btrfs_put_block_group(block_group);
10531 }
10532 spin_unlock(&trans->transaction->dirty_bgs_lock);
10533 mutex_unlock(&trans->transaction->cache_write_mutex);
10534
Josef Bacik0af3d002010-06-21 14:48:16 -040010535 if (!IS_ERR(inode)) {
Tsutomu Itohb5324022011-07-19 07:27:20 +000010536 ret = btrfs_orphan_add(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010537 if (ret) {
10538 btrfs_add_delayed_iput(inode);
10539 goto out;
10540 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010541 clear_nlink(inode);
10542 /* One for the block groups ref */
10543 spin_lock(&block_group->lock);
10544 if (block_group->iref) {
10545 block_group->iref = 0;
10546 block_group->inode = NULL;
10547 spin_unlock(&block_group->lock);
10548 iput(inode);
10549 } else {
10550 spin_unlock(&block_group->lock);
10551 }
10552 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -040010553 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -040010554 }
10555
10556 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
10557 key.offset = block_group->key.objectid;
10558 key.type = 0;
10559
10560 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
10561 if (ret < 0)
10562 goto out;
10563 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +020010564 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010565 if (ret == 0) {
10566 ret = btrfs_del_item(trans, tree_root, path);
10567 if (ret)
10568 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +020010569 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010570 }
10571
Yan Zheng3dfdb932009-01-21 10:49:16 -050010572 spin_lock(&root->fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -040010573 rb_erase(&block_group->cache_node,
10574 &root->fs_info->block_group_cache_tree);
Filipe Manana292cbd52014-11-26 15:28:50 +000010575 RB_CLEAR_NODE(&block_group->cache_node);
Liu Boa1897fd2012-12-27 09:01:23 +000010576
10577 if (root->fs_info->first_logical_byte == block_group->key.objectid)
10578 root->fs_info->first_logical_byte = (u64)-1;
Yan Zheng3dfdb932009-01-21 10:49:16 -050010579 spin_unlock(&root->fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -040010580
Josef Bacik80eb2342008-10-29 14:49:05 -040010581 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -040010582 /*
10583 * we must use list_del_init so people can check to see if they
10584 * are still on the list after taking the semaphore
10585 */
10586 list_del_init(&block_group->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010587 if (list_empty(&block_group->space_info->block_groups[index])) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010588 kobj = block_group->space_info->block_group_kobjs[index];
10589 block_group->space_info->block_group_kobjs[index] = NULL;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010590 clear_avail_alloc_bits(root->fs_info, block_group->flags);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010591 }
Josef Bacik80eb2342008-10-29 14:49:05 -040010592 up_write(&block_group->space_info->groups_sem);
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010593 if (kobj) {
10594 kobject_del(kobj);
10595 kobject_put(kobj);
10596 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010597
Filipe Manana4f69cb92014-11-26 15:28:51 +000010598 if (block_group->has_caching_ctl)
10599 caching_ctl = get_caching_control(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -040010600 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -040010601 wait_block_group_cache_done(block_group);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010602 if (block_group->has_caching_ctl) {
10603 down_write(&root->fs_info->commit_root_sem);
10604 if (!caching_ctl) {
10605 struct btrfs_caching_control *ctl;
10606
10607 list_for_each_entry(ctl,
10608 &root->fs_info->caching_block_groups, list)
10609 if (ctl->block_group == block_group) {
10610 caching_ctl = ctl;
10611 atomic_inc(&caching_ctl->count);
10612 break;
10613 }
10614 }
10615 if (caching_ctl)
10616 list_del_init(&caching_ctl->list);
10617 up_write(&root->fs_info->commit_root_sem);
10618 if (caching_ctl) {
10619 /* Once for the caching bgs list and once for us. */
10620 put_caching_control(caching_ctl);
10621 put_caching_control(caching_ctl);
10622 }
10623 }
Josef Bacik817d52f2009-07-13 21:29:25 -040010624
Josef Bacikce93ec52014-11-17 15:45:48 -050010625 spin_lock(&trans->transaction->dirty_bgs_lock);
10626 if (!list_empty(&block_group->dirty_list)) {
Chris Mason1bbc6212015-04-06 12:46:08 -070010627 WARN_ON(1);
10628 }
10629 if (!list_empty(&block_group->io_list)) {
10630 WARN_ON(1);
Josef Bacikce93ec52014-11-17 15:45:48 -050010631 }
10632 spin_unlock(&trans->transaction->dirty_bgs_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -040010633 btrfs_remove_free_space_cache(block_group);
10634
Yan Zhengc146afa2008-11-12 14:34:12 -050010635 spin_lock(&block_group->space_info->lock);
Filipe Manana75c68e92015-01-16 13:24:40 +000010636 list_del_init(&block_group->ro_list);
Zhao Lei18d018a2015-02-24 20:07:44 +080010637
10638 if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
10639 WARN_ON(block_group->space_info->total_bytes
10640 < block_group->key.offset);
10641 WARN_ON(block_group->space_info->bytes_readonly
10642 < block_group->key.offset);
10643 WARN_ON(block_group->space_info->disk_total
10644 < block_group->key.offset * factor);
10645 }
Yan Zhengc146afa2008-11-12 14:34:12 -050010646 block_group->space_info->total_bytes -= block_group->key.offset;
10647 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -040010648 block_group->space_info->disk_total -= block_group->key.offset * factor;
Zhao Lei18d018a2015-02-24 20:07:44 +080010649
Yan Zhengc146afa2008-11-12 14:34:12 -050010650 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -040010651
Josef Bacik0af3d002010-06-21 14:48:16 -040010652 memcpy(&key, &block_group->key, sizeof(key));
10653
Filipe Manana04216822014-11-27 21:14:15 +000010654 lock_chunks(root);
Filipe Manana495e64f2014-12-02 18:07:30 +000010655 if (!list_empty(&em->list)) {
10656 /* We're in the transaction->pending_chunks list. */
10657 free_extent_map(em);
10658 }
Filipe Manana04216822014-11-27 21:14:15 +000010659 spin_lock(&block_group->lock);
10660 block_group->removed = 1;
10661 /*
10662 * At this point trimming can't start on this block group, because we
10663 * removed the block group from the tree fs_info->block_group_cache_tree
10664 * so no one can't find it anymore and even if someone already got this
10665 * block group before we removed it from the rbtree, they have already
10666 * incremented block_group->trimming - if they didn't, they won't find
10667 * any free space entries because we already removed them all when we
10668 * called btrfs_remove_free_space_cache().
10669 *
10670 * And we must not remove the extent map from the fs_info->mapping_tree
10671 * to prevent the same logical address range and physical device space
10672 * ranges from being reused for a new block group. This is because our
10673 * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is
10674 * completely transactionless, so while it is trimming a range the
10675 * currently running transaction might finish and a new one start,
10676 * allowing for new block groups to be created that can reuse the same
10677 * physical device locations unless we take this special care.
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010678 *
10679 * There may also be an implicit trim operation if the file system
10680 * is mounted with -odiscard. The same protections must remain
10681 * in place until the extents have been discarded completely when
10682 * the transaction commit has completed.
Filipe Manana04216822014-11-27 21:14:15 +000010683 */
10684 remove_em = (atomic_read(&block_group->trimming) == 0);
10685 /*
10686 * Make sure a trimmer task always sees the em in the pinned_chunks list
10687 * if it sees block_group->removed == 1 (needs to lock block_group->lock
10688 * before checking block_group->removed).
10689 */
10690 if (!remove_em) {
10691 /*
10692 * Our em might be in trans->transaction->pending_chunks which
10693 * is protected by fs_info->chunk_mutex ([lock|unlock]_chunks),
10694 * and so is the fs_info->pinned_chunks list.
10695 *
10696 * So at this point we must be holding the chunk_mutex to avoid
10697 * any races with chunk allocation (more specifically at
10698 * volumes.c:contains_pending_extent()), to ensure it always
10699 * sees the em, either in the pending_chunks list or in the
10700 * pinned_chunks list.
10701 */
10702 list_move_tail(&em->list, &root->fs_info->pinned_chunks);
10703 }
10704 spin_unlock(&block_group->lock);
Filipe Manana04216822014-11-27 21:14:15 +000010705
10706 if (remove_em) {
10707 struct extent_map_tree *em_tree;
10708
10709 em_tree = &root->fs_info->mapping_tree.map_tree;
10710 write_lock(&em_tree->lock);
Filipe Manana8dbcd102014-12-02 18:07:49 +000010711 /*
10712 * The em might be in the pending_chunks list, so make sure the
10713 * chunk mutex is locked, since remove_extent_mapping() will
10714 * delete us from that list.
10715 */
Filipe Manana04216822014-11-27 21:14:15 +000010716 remove_extent_mapping(em_tree, em);
10717 write_unlock(&em_tree->lock);
10718 /* once for the tree */
10719 free_extent_map(em);
10720 }
10721
Filipe Manana8dbcd102014-12-02 18:07:49 +000010722 unlock_chunks(root);
10723
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010724 ret = remove_block_group_free_space(trans, root->fs_info, block_group);
10725 if (ret)
10726 goto out;
10727
Chris Masonfa9c0d792009-04-03 09:47:43 -040010728 btrfs_put_block_group(block_group);
10729 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -040010730
10731 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
10732 if (ret > 0)
10733 ret = -EIO;
10734 if (ret < 0)
10735 goto out;
10736
10737 ret = btrfs_del_item(trans, root, path);
10738out:
10739 btrfs_free_path(path);
10740 return ret;
10741}
liuboacce9522011-01-06 19:30:25 +080010742
Filipe Manana8eab77f2015-11-13 23:57:16 +000010743struct btrfs_trans_handle *
Filipe Manana7fd01182015-11-13 23:57:17 +000010744btrfs_start_trans_remove_block_group(struct btrfs_fs_info *fs_info,
10745 const u64 chunk_offset)
Filipe Manana8eab77f2015-11-13 23:57:16 +000010746{
Filipe Manana7fd01182015-11-13 23:57:17 +000010747 struct extent_map_tree *em_tree = &fs_info->mapping_tree.map_tree;
10748 struct extent_map *em;
10749 struct map_lookup *map;
10750 unsigned int num_items;
10751
10752 read_lock(&em_tree->lock);
10753 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
10754 read_unlock(&em_tree->lock);
10755 ASSERT(em && em->start == chunk_offset);
10756
Filipe Manana8eab77f2015-11-13 23:57:16 +000010757 /*
Filipe Manana7fd01182015-11-13 23:57:17 +000010758 * We need to reserve 3 + N units from the metadata space info in order
10759 * to remove a block group (done at btrfs_remove_chunk() and at
10760 * btrfs_remove_block_group()), which are used for:
10761 *
Filipe Manana8eab77f2015-11-13 23:57:16 +000010762 * 1 unit for adding the free space inode's orphan (located in the tree
10763 * of tree roots).
Filipe Manana7fd01182015-11-13 23:57:17 +000010764 * 1 unit for deleting the block group item (located in the extent
10765 * tree).
10766 * 1 unit for deleting the free space item (located in tree of tree
10767 * roots).
10768 * N units for deleting N device extent items corresponding to each
10769 * stripe (located in the device tree).
10770 *
10771 * In order to remove a block group we also need to reserve units in the
10772 * system space info in order to update the chunk tree (update one or
10773 * more device items and remove one chunk item), but this is done at
10774 * btrfs_remove_chunk() through a call to check_system_chunk().
Filipe Manana8eab77f2015-11-13 23:57:16 +000010775 */
Jeff Mahoney95617d62015-06-03 10:55:48 -040010776 map = em->map_lookup;
Filipe Manana7fd01182015-11-13 23:57:17 +000010777 num_items = 3 + map->num_stripes;
10778 free_extent_map(em);
10779
Filipe Manana8eab77f2015-11-13 23:57:16 +000010780 return btrfs_start_transaction_fallback_global_rsv(fs_info->extent_root,
Filipe Manana7fd01182015-11-13 23:57:17 +000010781 num_items, 1);
Filipe Manana8eab77f2015-11-13 23:57:16 +000010782}
10783
Josef Bacik47ab2a62014-09-18 11:20:02 -040010784/*
10785 * Process the unused_bgs list and remove any that don't have any allocated
10786 * space inside of them.
10787 */
10788void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info)
10789{
10790 struct btrfs_block_group_cache *block_group;
10791 struct btrfs_space_info *space_info;
10792 struct btrfs_root *root = fs_info->extent_root;
10793 struct btrfs_trans_handle *trans;
10794 int ret = 0;
10795
10796 if (!fs_info->open)
10797 return;
10798
10799 spin_lock(&fs_info->unused_bgs_lock);
10800 while (!list_empty(&fs_info->unused_bgs)) {
10801 u64 start, end;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010802 int trimming;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010803
10804 block_group = list_first_entry(&fs_info->unused_bgs,
10805 struct btrfs_block_group_cache,
10806 bg_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010807 list_del_init(&block_group->bg_list);
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010808
10809 space_info = block_group->space_info;
10810
Josef Bacik47ab2a62014-09-18 11:20:02 -040010811 if (ret || btrfs_mixed_space_info(space_info)) {
10812 btrfs_put_block_group(block_group);
10813 continue;
10814 }
10815 spin_unlock(&fs_info->unused_bgs_lock);
10816
Zhao Leid5f2e332015-10-08 18:46:44 +080010817 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Filipe Manana67c5e7d2015-06-11 00:58:53 +010010818
Josef Bacik47ab2a62014-09-18 11:20:02 -040010819 /* Don't want to race with allocators so take the groups_sem */
10820 down_write(&space_info->groups_sem);
10821 spin_lock(&block_group->lock);
10822 if (block_group->reserved ||
10823 btrfs_block_group_used(&block_group->item) ||
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010824 block_group->ro ||
10825 list_is_singular(&block_group->list)) {
Josef Bacik47ab2a62014-09-18 11:20:02 -040010826 /*
10827 * We want to bail if we made new allocations or have
10828 * outstanding allocations in this block group. We do
10829 * the ro check in case balance is currently acting on
10830 * this block group.
10831 */
10832 spin_unlock(&block_group->lock);
10833 up_write(&space_info->groups_sem);
10834 goto next;
10835 }
10836 spin_unlock(&block_group->lock);
10837
10838 /* We don't want to force the issue, only flip if it's ok. */
Zhaolei868f4012015-08-05 16:43:27 +080010839 ret = inc_block_group_ro(block_group, 0);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010840 up_write(&space_info->groups_sem);
10841 if (ret < 0) {
10842 ret = 0;
10843 goto next;
10844 }
10845
10846 /*
10847 * Want to do this before we do anything else so we can recover
10848 * properly if we fail to join the transaction.
10849 */
Filipe Manana7fd01182015-11-13 23:57:17 +000010850 trans = btrfs_start_trans_remove_block_group(fs_info,
10851 block_group->key.objectid);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010852 if (IS_ERR(trans)) {
Zhaolei868f4012015-08-05 16:43:27 +080010853 btrfs_dec_block_group_ro(root, block_group);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010854 ret = PTR_ERR(trans);
10855 goto next;
10856 }
10857
10858 /*
10859 * We could have pending pinned extents for this block group,
10860 * just delete them, we don't care about them anymore.
10861 */
10862 start = block_group->key.objectid;
10863 end = start + block_group->key.offset - 1;
Filipe Mananad4b450c2015-01-29 19:18:25 +000010864 /*
10865 * Hold the unused_bg_unpin_mutex lock to avoid racing with
10866 * btrfs_finish_extent_commit(). If we are at transaction N,
10867 * another task might be running finish_extent_commit() for the
10868 * previous transaction N - 1, and have seen a range belonging
10869 * to the block group in freed_extents[] before we were able to
10870 * clear the whole block group range from freed_extents[]. This
10871 * means that task can lookup for the block group after we
10872 * unpinned it from freed_extents[] and removed it, leading to
10873 * a BUG_ON() at btrfs_unpin_extent_range().
10874 */
10875 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana758eb512014-11-03 14:08:39 +000010876 ret = clear_extent_bits(&fs_info->freed_extents[0], start, end,
David Sterba91166212016-04-26 23:54:39 +020010877 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000010878 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000010879 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Zhaolei868f4012015-08-05 16:43:27 +080010880 btrfs_dec_block_group_ro(root, block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000010881 goto end_trans;
10882 }
10883 ret = clear_extent_bits(&fs_info->freed_extents[1], start, end,
David Sterba91166212016-04-26 23:54:39 +020010884 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000010885 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000010886 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Zhaolei868f4012015-08-05 16:43:27 +080010887 btrfs_dec_block_group_ro(root, block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000010888 goto end_trans;
10889 }
Filipe Mananad4b450c2015-01-29 19:18:25 +000010890 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010891
10892 /* Reset pinned so btrfs_put_block_group doesn't complain */
Zhao Leic30666d2015-02-25 14:17:20 +080010893 spin_lock(&space_info->lock);
10894 spin_lock(&block_group->lock);
10895
10896 space_info->bytes_pinned -= block_group->pinned;
10897 space_info->bytes_readonly += block_group->pinned;
10898 percpu_counter_add(&space_info->total_bytes_pinned,
10899 -block_group->pinned);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010900 block_group->pinned = 0;
10901
Zhao Leic30666d2015-02-25 14:17:20 +080010902 spin_unlock(&block_group->lock);
10903 spin_unlock(&space_info->lock);
10904
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010905 /* DISCARD can flip during remount */
10906 trimming = btrfs_test_opt(root, DISCARD);
10907
10908 /* Implicit trim during transaction commit. */
10909 if (trimming)
10910 btrfs_get_block_group_trimming(block_group);
10911
Josef Bacik47ab2a62014-09-18 11:20:02 -040010912 /*
10913 * Btrfs_remove_chunk will abort the transaction if things go
10914 * horribly wrong.
10915 */
10916 ret = btrfs_remove_chunk(trans, root,
10917 block_group->key.objectid);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010918
10919 if (ret) {
10920 if (trimming)
10921 btrfs_put_block_group_trimming(block_group);
10922 goto end_trans;
10923 }
10924
10925 /*
10926 * If we're not mounted with -odiscard, we can just forget
10927 * about this block group. Otherwise we'll need to wait
10928 * until transaction commit to do the actual discard.
10929 */
10930 if (trimming) {
Filipe Manana348a0012015-11-27 12:16:16 +000010931 spin_lock(&fs_info->unused_bgs_lock);
10932 /*
10933 * A concurrent scrub might have added us to the list
10934 * fs_info->unused_bgs, so use a list_move operation
10935 * to add the block group to the deleted_bgs list.
10936 */
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010937 list_move(&block_group->bg_list,
10938 &trans->transaction->deleted_bgs);
Filipe Manana348a0012015-11-27 12:16:16 +000010939 spin_unlock(&fs_info->unused_bgs_lock);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010940 btrfs_get_block_group(block_group);
10941 }
Filipe Manana758eb512014-11-03 14:08:39 +000010942end_trans:
Josef Bacik47ab2a62014-09-18 11:20:02 -040010943 btrfs_end_transaction(trans, root);
10944next:
Zhao Leid5f2e332015-10-08 18:46:44 +080010945 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010946 btrfs_put_block_group(block_group);
10947 spin_lock(&fs_info->unused_bgs_lock);
10948 }
10949 spin_unlock(&fs_info->unused_bgs_lock);
10950}
10951
liuboc59021f2011-03-07 02:13:14 +000010952int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
10953{
10954 struct btrfs_space_info *space_info;
liubo1aba86d2011-04-08 08:44:37 +000010955 struct btrfs_super_block *disk_super;
10956 u64 features;
10957 u64 flags;
10958 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +000010959 int ret;
10960
David Sterba6c417612011-04-13 15:41:04 +020010961 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +000010962 if (!btrfs_super_root(disk_super))
Dan Carpenter0dc924c52016-01-13 15:21:17 +030010963 return -EINVAL;
liuboc59021f2011-03-07 02:13:14 +000010964
liubo1aba86d2011-04-08 08:44:37 +000010965 features = btrfs_super_incompat_flags(disk_super);
10966 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
10967 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +000010968
liubo1aba86d2011-04-08 08:44:37 +000010969 flags = BTRFS_BLOCK_GROUP_SYSTEM;
Josef Bacike40edf22016-03-25 13:25:47 -040010970 ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info);
liuboc59021f2011-03-07 02:13:14 +000010971 if (ret)
liubo1aba86d2011-04-08 08:44:37 +000010972 goto out;
liuboc59021f2011-03-07 02:13:14 +000010973
liubo1aba86d2011-04-08 08:44:37 +000010974 if (mixed) {
10975 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
Josef Bacike40edf22016-03-25 13:25:47 -040010976 ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info);
liubo1aba86d2011-04-08 08:44:37 +000010977 } else {
10978 flags = BTRFS_BLOCK_GROUP_METADATA;
Josef Bacike40edf22016-03-25 13:25:47 -040010979 ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info);
liubo1aba86d2011-04-08 08:44:37 +000010980 if (ret)
10981 goto out;
10982
10983 flags = BTRFS_BLOCK_GROUP_DATA;
Josef Bacike40edf22016-03-25 13:25:47 -040010984 ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info);
liubo1aba86d2011-04-08 08:44:37 +000010985 }
10986out:
liuboc59021f2011-03-07 02:13:14 +000010987 return ret;
10988}
10989
liuboacce9522011-01-06 19:30:25 +080010990int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
10991{
Filipe Manana678886b2014-12-07 21:31:47 +000010992 return unpin_extent_range(root, start, end, false);
liuboacce9522011-01-06 19:30:25 +080010993}
10994
Jeff Mahoney499f3772015-06-15 09:41:17 -040010995/*
10996 * It used to be that old block groups would be left around forever.
10997 * Iterating over them would be enough to trim unused space. Since we
10998 * now automatically remove them, we also need to iterate over unallocated
10999 * space.
11000 *
11001 * We don't want a transaction for this since the discard may take a
11002 * substantial amount of time. We don't require that a transaction be
11003 * running, but we do need to take a running transaction into account
11004 * to ensure that we're not discarding chunks that were released in
11005 * the current transaction.
11006 *
11007 * Holding the chunks lock will prevent other threads from allocating
11008 * or releasing chunks, but it won't prevent a running transaction
11009 * from committing and releasing the memory that the pending chunks
11010 * list head uses. For that, we need to take a reference to the
11011 * transaction.
11012 */
11013static int btrfs_trim_free_extents(struct btrfs_device *device,
11014 u64 minlen, u64 *trimmed)
11015{
11016 u64 start = 0, len = 0;
11017 int ret;
11018
11019 *trimmed = 0;
11020
11021 /* Not writeable = nothing to do. */
11022 if (!device->writeable)
11023 return 0;
11024
11025 /* No free space = nothing to do. */
11026 if (device->total_bytes <= device->bytes_used)
11027 return 0;
11028
11029 ret = 0;
11030
11031 while (1) {
11032 struct btrfs_fs_info *fs_info = device->dev_root->fs_info;
11033 struct btrfs_transaction *trans;
11034 u64 bytes;
11035
11036 ret = mutex_lock_interruptible(&fs_info->chunk_mutex);
11037 if (ret)
11038 return ret;
11039
11040 down_read(&fs_info->commit_root_sem);
11041
11042 spin_lock(&fs_info->trans_lock);
11043 trans = fs_info->running_transaction;
11044 if (trans)
11045 atomic_inc(&trans->use_count);
11046 spin_unlock(&fs_info->trans_lock);
11047
11048 ret = find_free_dev_extent_start(trans, device, minlen, start,
11049 &start, &len);
11050 if (trans)
11051 btrfs_put_transaction(trans);
11052
11053 if (ret) {
11054 up_read(&fs_info->commit_root_sem);
11055 mutex_unlock(&fs_info->chunk_mutex);
11056 if (ret == -ENOSPC)
11057 ret = 0;
11058 break;
11059 }
11060
11061 ret = btrfs_issue_discard(device->bdev, start, len, &bytes);
11062 up_read(&fs_info->commit_root_sem);
11063 mutex_unlock(&fs_info->chunk_mutex);
11064
11065 if (ret)
11066 break;
11067
11068 start += len;
11069 *trimmed += bytes;
11070
11071 if (fatal_signal_pending(current)) {
11072 ret = -ERESTARTSYS;
11073 break;
11074 }
11075
11076 cond_resched();
11077 }
11078
11079 return ret;
11080}
11081
Li Dongyangf7039b12011-03-24 10:24:28 +000011082int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range)
11083{
11084 struct btrfs_fs_info *fs_info = root->fs_info;
11085 struct btrfs_block_group_cache *cache = NULL;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011086 struct btrfs_device *device;
11087 struct list_head *devices;
Li Dongyangf7039b12011-03-24 10:24:28 +000011088 u64 group_trimmed;
11089 u64 start;
11090 u64 end;
11091 u64 trimmed = 0;
Liu Bo2cac13e2012-02-09 18:17:41 +080011092 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +000011093 int ret = 0;
11094
Liu Bo2cac13e2012-02-09 18:17:41 +080011095 /*
11096 * try to trim all FS space, our block group may start from non-zero.
11097 */
11098 if (range->len == total_bytes)
11099 cache = btrfs_lookup_first_block_group(fs_info, range->start);
11100 else
11101 cache = btrfs_lookup_block_group(fs_info, range->start);
Li Dongyangf7039b12011-03-24 10:24:28 +000011102
11103 while (cache) {
11104 if (cache->key.objectid >= (range->start + range->len)) {
11105 btrfs_put_block_group(cache);
11106 break;
11107 }
11108
11109 start = max(range->start, cache->key.objectid);
11110 end = min(range->start + range->len,
11111 cache->key.objectid + cache->key.offset);
11112
11113 if (end - start >= range->minlen) {
11114 if (!block_group_cache_done(cache)) {
Liu Bof6373bf2012-12-27 09:01:18 +000011115 ret = cache_block_group(cache, 0);
Josef Bacik1be41b72013-06-12 13:56:06 -040011116 if (ret) {
11117 btrfs_put_block_group(cache);
11118 break;
11119 }
11120 ret = wait_block_group_cache_done(cache);
11121 if (ret) {
11122 btrfs_put_block_group(cache);
11123 break;
11124 }
Li Dongyangf7039b12011-03-24 10:24:28 +000011125 }
11126 ret = btrfs_trim_block_group(cache,
11127 &group_trimmed,
11128 start,
11129 end,
11130 range->minlen);
11131
11132 trimmed += group_trimmed;
11133 if (ret) {
11134 btrfs_put_block_group(cache);
11135 break;
11136 }
11137 }
11138
11139 cache = next_block_group(fs_info->tree_root, cache);
11140 }
11141
Jeff Mahoney499f3772015-06-15 09:41:17 -040011142 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
11143 devices = &root->fs_info->fs_devices->alloc_list;
11144 list_for_each_entry(device, devices, dev_alloc_list) {
11145 ret = btrfs_trim_free_extents(device, range->minlen,
11146 &group_trimmed);
11147 if (ret)
11148 break;
11149
11150 trimmed += group_trimmed;
11151 }
11152 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
11153
Li Dongyangf7039b12011-03-24 10:24:28 +000011154 range->len = trimmed;
11155 return ret;
11156}
Miao Xie8257b2d2014-03-06 13:38:19 +080011157
11158/*
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011159 * btrfs_{start,end}_write_no_snapshoting() are similar to
11160 * mnt_{want,drop}_write(), they are used to prevent some tasks from writing
11161 * data into the page cache through nocow before the subvolume is snapshoted,
11162 * but flush the data into disk after the snapshot creation, or to prevent
11163 * operations while snapshoting is ongoing and that cause the snapshot to be
11164 * inconsistent (writes followed by expanding truncates for example).
Miao Xie8257b2d2014-03-06 13:38:19 +080011165 */
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011166void btrfs_end_write_no_snapshoting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011167{
11168 percpu_counter_dec(&root->subv_writers->counter);
11169 /*
David Sterbaa83342a2015-02-16 19:36:47 +010011170 * Make sure counter is updated before we wake up waiters.
Miao Xie8257b2d2014-03-06 13:38:19 +080011171 */
11172 smp_mb();
11173 if (waitqueue_active(&root->subv_writers->wait))
11174 wake_up(&root->subv_writers->wait);
11175}
11176
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011177int btrfs_start_write_no_snapshoting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011178{
David Sterbaee39b432014-09-30 01:33:33 +020011179 if (atomic_read(&root->will_be_snapshoted))
Miao Xie8257b2d2014-03-06 13:38:19 +080011180 return 0;
11181
11182 percpu_counter_inc(&root->subv_writers->counter);
11183 /*
11184 * Make sure counter is updated before we check for snapshot creation.
11185 */
11186 smp_mb();
David Sterbaee39b432014-09-30 01:33:33 +020011187 if (atomic_read(&root->will_be_snapshoted)) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011188 btrfs_end_write_no_snapshoting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +080011189 return 0;
11190 }
11191 return 1;
11192}
Zhao Lei0bc19f902016-01-06 18:56:36 +080011193
11194static int wait_snapshoting_atomic_t(atomic_t *a)
11195{
11196 schedule();
11197 return 0;
11198}
11199
11200void btrfs_wait_for_snapshot_creation(struct btrfs_root *root)
11201{
11202 while (true) {
11203 int ret;
11204
11205 ret = btrfs_start_write_no_snapshoting(root);
11206 if (ret)
11207 break;
11208 wait_on_atomic_t(&root->will_be_snapshoted,
11209 wait_snapshoting_atomic_t,
11210 TASK_UNINTERRUPTIBLE);
11211 }
11212}