blob: 538f378eea52abdb0e7b60a3a34470486f353230 [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 Bacikce93ec52014-11-17 15:45:48 -050063static int update_block_group(struct btrfs_trans_handle *trans,
64 struct btrfs_root *root, u64 bytenr,
65 u64 num_bytes, int alloc);
Yan Zheng5d4f98a2009-06-10 10:45:14 -040066static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
67 struct btrfs_root *root,
Qu Wenruoc682f9b2015-03-17 16:59:47 +080068 struct btrfs_delayed_ref_node *node, u64 parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -040069 u64 root_objectid, u64 owner_objectid,
70 u64 owner_offset, int refs_to_drop,
Qu Wenruoc682f9b2015-03-17 16:59:47 +080071 struct btrfs_delayed_extent_op *extra_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -040072static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
73 struct extent_buffer *leaf,
74 struct btrfs_extent_item *ei);
75static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
76 struct btrfs_root *root,
77 u64 parent, u64 root_objectid,
78 u64 flags, u64 owner, u64 offset,
79 struct btrfs_key *ins, int ref_mod);
80static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
81 struct btrfs_root *root,
82 u64 parent, u64 root_objectid,
83 u64 flags, struct btrfs_disk_key *key,
Filipe Mananab06c4bf2015-10-23 07:52:54 +010084 int level, struct btrfs_key *ins);
Josef Bacik6a632092009-02-20 11:00:09 -050085static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Josef Bacik698d0082012-09-12 14:08:47 -040086 struct btrfs_root *extent_root, u64 flags,
87 int force);
Yan Zheng11833d62009-09-11 16:11:19 -040088static int find_next_key(struct btrfs_path *path, int level,
89 struct btrfs_key *key);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -040090static void dump_space_info(struct btrfs_fs_info *fs_info,
91 struct btrfs_space_info *info, u64 bytes,
Josef Bacik9ed74f22009-09-11 16:12:44 -040092 int dump_block_groups);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +080093static int btrfs_add_reserved_bytes(struct btrfs_block_group_cache *cache,
Wang Xiaoguang18513092016-07-25 15:51:40 +080094 u64 ram_bytes, u64 num_bytes, int delalloc);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +080095static int btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache,
96 u64 num_bytes, int delalloc);
Josef Bacik5d803662013-02-07 16:06:02 -050097static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
98 u64 num_bytes);
Eric Sandeen48a3b632013-04-25 20:41:01 +000099int btrfs_pin_extent(struct btrfs_root *root,
100 u64 bytenr, u64 num_bytes, int reserved);
Josef Bacik957780e2016-05-17 13:30:55 -0400101static int __reserve_metadata_bytes(struct btrfs_root *root,
102 struct btrfs_space_info *space_info,
103 u64 orig_bytes,
104 enum btrfs_reserve_flush_enum flush);
105static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
106 struct btrfs_space_info *space_info,
107 u64 num_bytes);
108static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info,
109 struct btrfs_space_info *space_info,
110 u64 num_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -0500111
Josef Bacik817d52f2009-07-13 21:29:25 -0400112static noinline int
113block_group_cache_done(struct btrfs_block_group_cache *cache)
114{
115 smp_mb();
Josef Bacik36cce922013-08-05 11:15:21 -0400116 return cache->cached == BTRFS_CACHE_FINISHED ||
117 cache->cached == BTRFS_CACHE_ERROR;
Josef Bacik817d52f2009-07-13 21:29:25 -0400118}
119
Josef Bacik0f9dd462008-09-23 13:14:11 -0400120static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
121{
122 return (cache->flags & bits) == bits;
123}
124
Filipe Manana758f2df2015-11-19 11:45:48 +0000125void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
Josef Bacik11dfe352009-11-13 20:12:59 +0000126{
127 atomic_inc(&cache->count);
128}
129
130void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
131{
Yan, Zhengf0486c62010-05-16 10:46:25 -0400132 if (atomic_dec_and_test(&cache->count)) {
133 WARN_ON(cache->pinned > 0);
134 WARN_ON(cache->reserved > 0);
Li Zefan34d52cb2011-03-29 13:46:06 +0800135 kfree(cache->free_space_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000136 kfree(cache);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400137 }
Josef Bacik11dfe352009-11-13 20:12:59 +0000138}
139
Josef Bacik0f9dd462008-09-23 13:14:11 -0400140/*
141 * this adds the block group to the fs_info rb tree for the block group
142 * cache
143 */
Christoph Hellwigb2950862008-12-02 09:54:17 -0500144static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400145 struct btrfs_block_group_cache *block_group)
146{
147 struct rb_node **p;
148 struct rb_node *parent = NULL;
149 struct btrfs_block_group_cache *cache;
150
151 spin_lock(&info->block_group_cache_lock);
152 p = &info->block_group_cache_tree.rb_node;
153
154 while (*p) {
155 parent = *p;
156 cache = rb_entry(parent, struct btrfs_block_group_cache,
157 cache_node);
158 if (block_group->key.objectid < cache->key.objectid) {
159 p = &(*p)->rb_left;
160 } else if (block_group->key.objectid > cache->key.objectid) {
161 p = &(*p)->rb_right;
162 } else {
163 spin_unlock(&info->block_group_cache_lock);
164 return -EEXIST;
165 }
166 }
167
168 rb_link_node(&block_group->cache_node, parent, p);
169 rb_insert_color(&block_group->cache_node,
170 &info->block_group_cache_tree);
Liu Boa1897fd2012-12-27 09:01:23 +0000171
172 if (info->first_logical_byte > block_group->key.objectid)
173 info->first_logical_byte = block_group->key.objectid;
174
Josef Bacik0f9dd462008-09-23 13:14:11 -0400175 spin_unlock(&info->block_group_cache_lock);
176
177 return 0;
178}
179
180/*
181 * This will return the block group at or after bytenr if contains is 0, else
182 * it will return the block group that contains the bytenr
183 */
184static struct btrfs_block_group_cache *
185block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
186 int contains)
187{
188 struct btrfs_block_group_cache *cache, *ret = NULL;
189 struct rb_node *n;
190 u64 end, start;
191
192 spin_lock(&info->block_group_cache_lock);
193 n = info->block_group_cache_tree.rb_node;
194
195 while (n) {
196 cache = rb_entry(n, struct btrfs_block_group_cache,
197 cache_node);
198 end = cache->key.objectid + cache->key.offset - 1;
199 start = cache->key.objectid;
200
201 if (bytenr < start) {
202 if (!contains && (!ret || start < ret->key.objectid))
203 ret = cache;
204 n = n->rb_left;
205 } else if (bytenr > start) {
206 if (contains && bytenr <= end) {
207 ret = cache;
208 break;
209 }
210 n = n->rb_right;
211 } else {
212 ret = cache;
213 break;
214 }
215 }
Liu Boa1897fd2012-12-27 09:01:23 +0000216 if (ret) {
Josef Bacik11dfe352009-11-13 20:12:59 +0000217 btrfs_get_block_group(ret);
Liu Boa1897fd2012-12-27 09:01:23 +0000218 if (bytenr == 0 && info->first_logical_byte > ret->key.objectid)
219 info->first_logical_byte = ret->key.objectid;
220 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400221 spin_unlock(&info->block_group_cache_lock);
222
223 return ret;
224}
225
Yan Zheng11833d62009-09-11 16:11:19 -0400226static int add_excluded_extent(struct btrfs_root *root,
227 u64 start, u64 num_bytes)
Josef Bacik817d52f2009-07-13 21:29:25 -0400228{
Yan Zheng11833d62009-09-11 16:11:19 -0400229 u64 end = start + num_bytes - 1;
230 set_extent_bits(&root->fs_info->freed_extents[0],
David Sterbaceeb0ae2016-04-26 23:54:39 +0200231 start, end, EXTENT_UPTODATE);
Yan Zheng11833d62009-09-11 16:11:19 -0400232 set_extent_bits(&root->fs_info->freed_extents[1],
David Sterbaceeb0ae2016-04-26 23:54:39 +0200233 start, end, EXTENT_UPTODATE);
Yan Zheng11833d62009-09-11 16:11:19 -0400234 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400235}
236
Yan Zheng11833d62009-09-11 16:11:19 -0400237static void free_excluded_extents(struct btrfs_root *root,
238 struct btrfs_block_group_cache *cache)
Josef Bacik817d52f2009-07-13 21:29:25 -0400239{
Yan Zheng11833d62009-09-11 16:11:19 -0400240 u64 start, end;
241
242 start = cache->key.objectid;
243 end = start + cache->key.offset - 1;
244
245 clear_extent_bits(&root->fs_info->freed_extents[0],
David Sterba91166212016-04-26 23:54:39 +0200246 start, end, EXTENT_UPTODATE);
Yan Zheng11833d62009-09-11 16:11:19 -0400247 clear_extent_bits(&root->fs_info->freed_extents[1],
David Sterba91166212016-04-26 23:54:39 +0200248 start, end, EXTENT_UPTODATE);
Yan Zheng11833d62009-09-11 16:11:19 -0400249}
250
251static int exclude_super_stripes(struct btrfs_root *root,
252 struct btrfs_block_group_cache *cache)
253{
Josef Bacik817d52f2009-07-13 21:29:25 -0400254 u64 bytenr;
255 u64 *logical;
256 int stripe_len;
257 int i, nr, ret;
258
Yan, Zheng06b23312009-11-26 09:31:11 +0000259 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
260 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
261 cache->bytes_super += stripe_len;
262 ret = add_excluded_extent(root, cache->key.objectid,
263 stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400264 if (ret)
265 return ret;
Yan, Zheng06b23312009-11-26 09:31:11 +0000266 }
267
Josef Bacik817d52f2009-07-13 21:29:25 -0400268 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
269 bytenr = btrfs_sb_offset(i);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400270 ret = btrfs_rmap_block(root->fs_info, cache->key.objectid,
271 bytenr, 0, &logical, &nr, &stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400272 if (ret)
273 return ret;
Yan Zheng11833d62009-09-11 16:11:19 -0400274
Josef Bacik817d52f2009-07-13 21:29:25 -0400275 while (nr--) {
Josef Bacik51bf5f02013-04-23 12:55:21 -0400276 u64 start, len;
277
278 if (logical[nr] > cache->key.objectid +
279 cache->key.offset)
280 continue;
281
282 if (logical[nr] + stripe_len <= cache->key.objectid)
283 continue;
284
285 start = logical[nr];
286 if (start < cache->key.objectid) {
287 start = cache->key.objectid;
288 len = (logical[nr] + stripe_len) - start;
289 } else {
290 len = min_t(u64, stripe_len,
291 cache->key.objectid +
292 cache->key.offset - start);
293 }
294
295 cache->bytes_super += len;
296 ret = add_excluded_extent(root, start, len);
Josef Bacik835d9742013-03-19 12:13:25 -0400297 if (ret) {
298 kfree(logical);
299 return ret;
300 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400301 }
Yan Zheng11833d62009-09-11 16:11:19 -0400302
Josef Bacik817d52f2009-07-13 21:29:25 -0400303 kfree(logical);
304 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400305 return 0;
306}
307
Yan Zheng11833d62009-09-11 16:11:19 -0400308static struct btrfs_caching_control *
309get_caching_control(struct btrfs_block_group_cache *cache)
310{
311 struct btrfs_caching_control *ctl;
312
313 spin_lock(&cache->lock);
Josef Bacikdde5abe2010-09-16 16:17:03 -0400314 if (!cache->caching_ctl) {
315 spin_unlock(&cache->lock);
316 return NULL;
317 }
318
Yan Zheng11833d62009-09-11 16:11:19 -0400319 ctl = cache->caching_ctl;
320 atomic_inc(&ctl->count);
321 spin_unlock(&cache->lock);
322 return ctl;
323}
324
325static void put_caching_control(struct btrfs_caching_control *ctl)
326{
327 if (atomic_dec_and_test(&ctl->count))
328 kfree(ctl);
329}
330
Josef Bacikd0bd4562015-09-23 14:54:14 -0400331#ifdef CONFIG_BTRFS_DEBUG
332static void fragment_free_space(struct btrfs_root *root,
333 struct btrfs_block_group_cache *block_group)
334{
335 u64 start = block_group->key.objectid;
336 u64 len = block_group->key.offset;
337 u64 chunk = block_group->flags & BTRFS_BLOCK_GROUP_METADATA ?
338 root->nodesize : root->sectorsize;
339 u64 step = chunk << 1;
340
341 while (len > chunk) {
342 btrfs_remove_free_space(block_group, start, chunk);
343 start += step;
344 if (len < step)
345 len = 0;
346 else
347 len -= step;
348 }
349}
350#endif
351
Josef Bacik0f9dd462008-09-23 13:14:11 -0400352/*
353 * this is only called by cache_block_group, since we could have freed extents
354 * we need to check the pinned_extents for any extents that can't be used yet
355 * since their free space will be released as soon as the transaction commits.
356 */
Omar Sandovala5ed9182015-09-29 20:50:35 -0700357u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
358 struct btrfs_fs_info *info, u64 start, u64 end)
Josef Bacik0f9dd462008-09-23 13:14:11 -0400359{
Josef Bacik817d52f2009-07-13 21:29:25 -0400360 u64 extent_start, extent_end, size, total_added = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400361 int ret;
362
363 while (start < end) {
Yan Zheng11833d62009-09-11 16:11:19 -0400364 ret = find_first_extent_bit(info->pinned_extents, start,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400365 &extent_start, &extent_end,
Josef Bacike6138872012-09-27 17:07:30 -0400366 EXTENT_DIRTY | EXTENT_UPTODATE,
367 NULL);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400368 if (ret)
369 break;
370
Yan, Zheng06b23312009-11-26 09:31:11 +0000371 if (extent_start <= start) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400372 start = extent_end + 1;
373 } else if (extent_start > start && extent_start < end) {
374 size = extent_start - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400375 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500376 ret = btrfs_add_free_space(block_group, start,
377 size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100378 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400379 start = extent_end + 1;
380 } else {
381 break;
382 }
383 }
384
385 if (start < end) {
386 size = end - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400387 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500388 ret = btrfs_add_free_space(block_group, start, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100389 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400390 }
391
Josef Bacik817d52f2009-07-13 21:29:25 -0400392 return total_added;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400393}
394
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700395static int load_extent_tree_free(struct btrfs_caching_control *caching_ctl)
Chris Masone37c9e62007-05-09 20:13:14 -0400396{
Josef Bacikbab39bf2011-06-30 14:42:28 -0400397 struct btrfs_block_group_cache *block_group;
398 struct btrfs_fs_info *fs_info;
Josef Bacikbab39bf2011-06-30 14:42:28 -0400399 struct btrfs_root *extent_root;
Chris Masone37c9e62007-05-09 20:13:14 -0400400 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400401 struct extent_buffer *leaf;
Yan Zheng11833d62009-09-11 16:11:19 -0400402 struct btrfs_key key;
Josef Bacik817d52f2009-07-13 21:29:25 -0400403 u64 total_found = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400404 u64 last = 0;
405 u32 nritems;
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700406 int ret;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400407 bool wakeup = true;
Chris Masonf510cfe2007-10-15 16:14:48 -0400408
Josef Bacikbab39bf2011-06-30 14:42:28 -0400409 block_group = caching_ctl->block_group;
410 fs_info = block_group->fs_info;
411 extent_root = fs_info->extent_root;
412
Chris Masone37c9e62007-05-09 20:13:14 -0400413 path = btrfs_alloc_path();
414 if (!path)
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700415 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -0400416
Josef Bacik817d52f2009-07-13 21:29:25 -0400417 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
Yan Zheng11833d62009-09-11 16:11:19 -0400418
Josef Bacikd0bd4562015-09-23 14:54:14 -0400419#ifdef CONFIG_BTRFS_DEBUG
420 /*
421 * If we're fragmenting we don't want to make anybody think we can
422 * allocate from this block group until we've had a chance to fragment
423 * the free space.
424 */
425 if (btrfs_should_fragment_free_space(extent_root, block_group))
426 wakeup = false;
427#endif
Chris Mason5cd57b22008-06-25 16:01:30 -0400428 /*
Josef Bacik817d52f2009-07-13 21:29:25 -0400429 * We don't want to deadlock with somebody trying to allocate a new
430 * extent for the extent root while also trying to search the extent
431 * root to add free space. So we skip locking and search the commit
432 * root, since its read-only
Chris Mason5cd57b22008-06-25 16:01:30 -0400433 */
434 path->skip_locking = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400435 path->search_commit_root = 1;
David Sterbae4058b52015-11-27 16:31:35 +0100436 path->reada = READA_FORWARD;
Josef Bacik817d52f2009-07-13 21:29:25 -0400437
Yan Zhenge4404d62008-12-12 10:03:26 -0500438 key.objectid = last;
Chris Masone37c9e62007-05-09 20:13:14 -0400439 key.offset = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400440 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason013f1b12009-07-31 14:57:55 -0400441
Liu Bo52ee28d2013-07-11 17:51:15 +0800442next:
Yan Zheng11833d62009-09-11 16:11:19 -0400443 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
Chris Masone37c9e62007-05-09 20:13:14 -0400444 if (ret < 0)
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700445 goto out;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500446
Yan Zheng11833d62009-09-11 16:11:19 -0400447 leaf = path->nodes[0];
448 nritems = btrfs_header_nritems(leaf);
449
Chris Masond3977122009-01-05 21:25:51 -0500450 while (1) {
David Sterba7841cb22011-05-31 18:07:27 +0200451 if (btrfs_fs_closing(fs_info) > 1) {
Yan Zhengf25784b2009-07-28 08:41:57 -0400452 last = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400453 break;
Yan Zhengf25784b2009-07-28 08:41:57 -0400454 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400455
Yan Zheng11833d62009-09-11 16:11:19 -0400456 if (path->slots[0] < nritems) {
457 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
458 } else {
459 ret = find_next_key(path, 0, &key);
460 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -0400461 break;
Josef Bacik817d52f2009-07-13 21:29:25 -0400462
Josef Bacikc9ea7b22013-09-19 10:02:11 -0400463 if (need_resched() ||
Josef Bacik9e351cc2014-03-13 15:42:13 -0400464 rwsem_is_contended(&fs_info->commit_root_sem)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -0400465 if (wakeup)
466 caching_ctl->progress = last;
Chris Masonff5714c2011-05-28 07:00:39 -0400467 btrfs_release_path(path);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400468 up_read(&fs_info->commit_root_sem);
Josef Bacik589d8ad2011-05-11 17:30:53 -0400469 mutex_unlock(&caching_ctl->mutex);
Yan Zheng11833d62009-09-11 16:11:19 -0400470 cond_resched();
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700471 mutex_lock(&caching_ctl->mutex);
472 down_read(&fs_info->commit_root_sem);
473 goto next;
Josef Bacik589d8ad2011-05-11 17:30:53 -0400474 }
Josef Bacik0a3896d2013-04-19 14:37:26 -0400475
476 ret = btrfs_next_leaf(extent_root, path);
477 if (ret < 0)
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700478 goto out;
Josef Bacik0a3896d2013-04-19 14:37:26 -0400479 if (ret)
480 break;
Josef Bacik589d8ad2011-05-11 17:30:53 -0400481 leaf = path->nodes[0];
482 nritems = btrfs_header_nritems(leaf);
483 continue;
Yan Zheng11833d62009-09-11 16:11:19 -0400484 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400485
Liu Bo52ee28d2013-07-11 17:51:15 +0800486 if (key.objectid < last) {
487 key.objectid = last;
488 key.offset = 0;
489 key.type = BTRFS_EXTENT_ITEM_KEY;
490
Josef Bacikd0bd4562015-09-23 14:54:14 -0400491 if (wakeup)
492 caching_ctl->progress = last;
Liu Bo52ee28d2013-07-11 17:51:15 +0800493 btrfs_release_path(path);
494 goto next;
495 }
496
Yan Zheng11833d62009-09-11 16:11:19 -0400497 if (key.objectid < block_group->key.objectid) {
498 path->slots[0]++;
Josef Bacik817d52f2009-07-13 21:29:25 -0400499 continue;
Chris Masone37c9e62007-05-09 20:13:14 -0400500 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400501
Chris Masone37c9e62007-05-09 20:13:14 -0400502 if (key.objectid >= block_group->key.objectid +
Josef Bacik0f9dd462008-09-23 13:14:11 -0400503 block_group->key.offset)
Yan7d7d6062007-09-14 16:15:28 -0400504 break;
Yan7d7d6062007-09-14 16:15:28 -0400505
Josef Bacik3173a182013-03-07 14:22:04 -0500506 if (key.type == BTRFS_EXTENT_ITEM_KEY ||
507 key.type == BTRFS_METADATA_ITEM_KEY) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400508 total_found += add_new_free_space(block_group,
509 fs_info, last,
510 key.objectid);
Josef Bacik3173a182013-03-07 14:22:04 -0500511 if (key.type == BTRFS_METADATA_ITEM_KEY)
512 last = key.objectid +
David Sterba707e8a02014-06-04 19:22:26 +0200513 fs_info->tree_root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500514 else
515 last = key.objectid + key.offset;
Josef Bacik817d52f2009-07-13 21:29:25 -0400516
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700517 if (total_found > CACHING_CTL_WAKE_UP) {
Yan Zheng11833d62009-09-11 16:11:19 -0400518 total_found = 0;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400519 if (wakeup)
520 wake_up(&caching_ctl->wait);
Yan Zheng11833d62009-09-11 16:11:19 -0400521 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400522 }
Chris Masone37c9e62007-05-09 20:13:14 -0400523 path->slots[0]++;
524 }
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400525 ret = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400526
527 total_found += add_new_free_space(block_group, fs_info, last,
528 block_group->key.objectid +
529 block_group->key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -0400530 caching_ctl->progress = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400531
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700532out:
533 btrfs_free_path(path);
534 return ret;
535}
536
537static noinline void caching_thread(struct btrfs_work *work)
538{
539 struct btrfs_block_group_cache *block_group;
540 struct btrfs_fs_info *fs_info;
541 struct btrfs_caching_control *caching_ctl;
Chris Masonb4570aa2015-12-30 07:37:26 -0800542 struct btrfs_root *extent_root;
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700543 int ret;
544
545 caching_ctl = container_of(work, struct btrfs_caching_control, work);
546 block_group = caching_ctl->block_group;
547 fs_info = block_group->fs_info;
Chris Masonb4570aa2015-12-30 07:37:26 -0800548 extent_root = fs_info->extent_root;
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700549
550 mutex_lock(&caching_ctl->mutex);
551 down_read(&fs_info->commit_root_sem);
552
Omar Sandoval1e144fb2015-09-29 20:50:37 -0700553 if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE))
554 ret = load_free_space_tree(caching_ctl);
555 else
556 ret = load_extent_tree_free(caching_ctl);
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700557
Josef Bacik817d52f2009-07-13 21:29:25 -0400558 spin_lock(&block_group->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400559 block_group->caching_ctl = NULL;
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700560 block_group->cached = ret ? BTRFS_CACHE_ERROR : BTRFS_CACHE_FINISHED;
Josef Bacik817d52f2009-07-13 21:29:25 -0400561 spin_unlock(&block_group->lock);
562
Josef Bacikd0bd4562015-09-23 14:54:14 -0400563#ifdef CONFIG_BTRFS_DEBUG
564 if (btrfs_should_fragment_free_space(extent_root, block_group)) {
565 u64 bytes_used;
566
567 spin_lock(&block_group->space_info->lock);
568 spin_lock(&block_group->lock);
569 bytes_used = block_group->key.offset -
570 btrfs_block_group_used(&block_group->item);
571 block_group->space_info->bytes_used += bytes_used >> 1;
572 spin_unlock(&block_group->lock);
573 spin_unlock(&block_group->space_info->lock);
574 fragment_free_space(extent_root, block_group);
575 }
576#endif
577
578 caching_ctl->progress = (u64)-1;
Chris Masonf7d3d2f2015-12-18 11:11:10 -0800579
Josef Bacik9e351cc2014-03-13 15:42:13 -0400580 up_read(&fs_info->commit_root_sem);
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700581 free_excluded_extents(fs_info->extent_root, block_group);
Yan Zheng11833d62009-09-11 16:11:19 -0400582 mutex_unlock(&caching_ctl->mutex);
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700583
Yan Zheng11833d62009-09-11 16:11:19 -0400584 wake_up(&caching_ctl->wait);
585
586 put_caching_control(caching_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000587 btrfs_put_block_group(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -0400588}
589
Josef Bacik9d66e232010-08-25 16:54:15 -0400590static int cache_block_group(struct btrfs_block_group_cache *cache,
Josef Bacik9d66e232010-08-25 16:54:15 -0400591 int load_cache_only)
Josef Bacik817d52f2009-07-13 21:29:25 -0400592{
Josef Bacik291c7d22011-11-14 13:52:14 -0500593 DEFINE_WAIT(wait);
Yan Zheng11833d62009-09-11 16:11:19 -0400594 struct btrfs_fs_info *fs_info = cache->fs_info;
595 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400596 int ret = 0;
597
Josef Bacik291c7d22011-11-14 13:52:14 -0500598 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100599 if (!caching_ctl)
600 return -ENOMEM;
Josef Bacik291c7d22011-11-14 13:52:14 -0500601
602 INIT_LIST_HEAD(&caching_ctl->list);
603 mutex_init(&caching_ctl->mutex);
604 init_waitqueue_head(&caching_ctl->wait);
605 caching_ctl->block_group = cache;
606 caching_ctl->progress = cache->key.objectid;
607 atomic_set(&caching_ctl->count, 1);
Liu Bo9e0af232014-08-15 23:36:53 +0800608 btrfs_init_work(&caching_ctl->work, btrfs_cache_helper,
609 caching_thread, NULL, NULL);
Josef Bacik291c7d22011-11-14 13:52:14 -0500610
611 spin_lock(&cache->lock);
612 /*
613 * This should be a rare occasion, but this could happen I think in the
614 * case where one thread starts to load the space cache info, and then
615 * some other thread starts a transaction commit which tries to do an
616 * allocation while the other thread is still loading the space cache
617 * info. The previous loop should have kept us from choosing this block
618 * group, but if we've moved to the state where we will wait on caching
619 * block groups we need to first check if we're doing a fast load here,
620 * so we can wait for it to finish, otherwise we could end up allocating
621 * from a block group who's cache gets evicted for one reason or
622 * another.
623 */
624 while (cache->cached == BTRFS_CACHE_FAST) {
625 struct btrfs_caching_control *ctl;
626
627 ctl = cache->caching_ctl;
628 atomic_inc(&ctl->count);
629 prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE);
630 spin_unlock(&cache->lock);
631
632 schedule();
633
634 finish_wait(&ctl->wait, &wait);
635 put_caching_control(ctl);
636 spin_lock(&cache->lock);
637 }
638
639 if (cache->cached != BTRFS_CACHE_NO) {
640 spin_unlock(&cache->lock);
641 kfree(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400642 return 0;
Josef Bacik291c7d22011-11-14 13:52:14 -0500643 }
644 WARN_ON(cache->caching_ctl);
645 cache->caching_ctl = caching_ctl;
646 cache->cached = BTRFS_CACHE_FAST;
647 spin_unlock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400648
Josef Bacikd53ba472012-04-12 16:03:57 -0400649 if (fs_info->mount_opt & BTRFS_MOUNT_SPACE_CACHE) {
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500650 mutex_lock(&caching_ctl->mutex);
Josef Bacik9d66e232010-08-25 16:54:15 -0400651 ret = load_free_space_cache(fs_info, cache);
652
653 spin_lock(&cache->lock);
654 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500655 cache->caching_ctl = NULL;
Josef Bacik9d66e232010-08-25 16:54:15 -0400656 cache->cached = BTRFS_CACHE_FINISHED;
657 cache->last_byte_to_unpin = (u64)-1;
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500658 caching_ctl->progress = (u64)-1;
Josef Bacik9d66e232010-08-25 16:54:15 -0400659 } else {
Josef Bacik291c7d22011-11-14 13:52:14 -0500660 if (load_cache_only) {
661 cache->caching_ctl = NULL;
662 cache->cached = BTRFS_CACHE_NO;
663 } else {
664 cache->cached = BTRFS_CACHE_STARTED;
Filipe Manana4f69cb92014-11-26 15:28:51 +0000665 cache->has_caching_ctl = 1;
Josef Bacik291c7d22011-11-14 13:52:14 -0500666 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400667 }
668 spin_unlock(&cache->lock);
Josef Bacikd0bd4562015-09-23 14:54:14 -0400669#ifdef CONFIG_BTRFS_DEBUG
670 if (ret == 1 &&
671 btrfs_should_fragment_free_space(fs_info->extent_root,
672 cache)) {
673 u64 bytes_used;
674
675 spin_lock(&cache->space_info->lock);
676 spin_lock(&cache->lock);
677 bytes_used = cache->key.offset -
678 btrfs_block_group_used(&cache->item);
679 cache->space_info->bytes_used += bytes_used >> 1;
680 spin_unlock(&cache->lock);
681 spin_unlock(&cache->space_info->lock);
682 fragment_free_space(fs_info->extent_root, cache);
683 }
684#endif
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500685 mutex_unlock(&caching_ctl->mutex);
686
Josef Bacik291c7d22011-11-14 13:52:14 -0500687 wake_up(&caching_ctl->wait);
Josef Bacik3c148742011-02-02 15:53:47 +0000688 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500689 put_caching_control(caching_ctl);
Josef Bacik3c148742011-02-02 15:53:47 +0000690 free_excluded_extents(fs_info->extent_root, cache);
Josef Bacik9d66e232010-08-25 16:54:15 -0400691 return 0;
Josef Bacik3c148742011-02-02 15:53:47 +0000692 }
Josef Bacik291c7d22011-11-14 13:52:14 -0500693 } else {
694 /*
Omar Sandoval1e144fb2015-09-29 20:50:37 -0700695 * We're either using the free space tree or no caching at all.
696 * Set cached to the appropriate value and wakeup any waiters.
Josef Bacik291c7d22011-11-14 13:52:14 -0500697 */
698 spin_lock(&cache->lock);
699 if (load_cache_only) {
700 cache->caching_ctl = NULL;
701 cache->cached = BTRFS_CACHE_NO;
702 } else {
703 cache->cached = BTRFS_CACHE_STARTED;
Filipe Manana4f69cb92014-11-26 15:28:51 +0000704 cache->has_caching_ctl = 1;
Josef Bacik291c7d22011-11-14 13:52:14 -0500705 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400706 spin_unlock(&cache->lock);
Josef Bacik291c7d22011-11-14 13:52:14 -0500707 wake_up(&caching_ctl->wait);
708 }
709
710 if (load_cache_only) {
711 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400712 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400713 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400714
Josef Bacik9e351cc2014-03-13 15:42:13 -0400715 down_write(&fs_info->commit_root_sem);
Josef Bacik291c7d22011-11-14 13:52:14 -0500716 atomic_inc(&caching_ctl->count);
Yan Zheng11833d62009-09-11 16:11:19 -0400717 list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400718 up_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -0400719
Josef Bacik11dfe352009-11-13 20:12:59 +0000720 btrfs_get_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -0400721
Qu Wenruoe66f0bb2014-02-28 10:46:12 +0800722 btrfs_queue_work(fs_info->caching_workers, &caching_ctl->work);
Josef Bacik817d52f2009-07-13 21:29:25 -0400723
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400724 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -0400725}
726
Josef Bacik0f9dd462008-09-23 13:14:11 -0400727/*
728 * return the block group that starts at or after bytenr
729 */
Chris Masond3977122009-01-05 21:25:51 -0500730static struct btrfs_block_group_cache *
731btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
Chris Mason0ef3e662008-05-24 14:04:53 -0400732{
Masahiro Yamadae2c89902016-09-13 04:35:52 +0900733 return block_group_cache_tree_search(info, bytenr, 0);
Chris Mason0ef3e662008-05-24 14:04:53 -0400734}
735
Josef Bacik0f9dd462008-09-23 13:14:11 -0400736/*
Sankar P9f556842009-05-14 13:52:22 -0400737 * return the block group that contains the given bytenr
Josef Bacik0f9dd462008-09-23 13:14:11 -0400738 */
Chris Masond3977122009-01-05 21:25:51 -0500739struct btrfs_block_group_cache *btrfs_lookup_block_group(
740 struct btrfs_fs_info *info,
741 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400742{
Masahiro Yamadae2c89902016-09-13 04:35:52 +0900743 return block_group_cache_tree_search(info, bytenr, 1);
Chris Masonbe744172007-05-06 10:15:01 -0400744}
Chris Mason0b86a832008-03-24 15:01:56 -0400745
Josef Bacik0f9dd462008-09-23 13:14:11 -0400746static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
747 u64 flags)
Chris Mason6324fbf2008-03-24 15:01:59 -0400748{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400749 struct list_head *head = &info->space_info;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400750 struct btrfs_space_info *found;
Chris Mason4184ea72009-03-10 12:39:20 -0400751
Ilya Dryomov52ba6922012-01-16 22:04:47 +0200752 flags &= BTRFS_BLOCK_GROUP_TYPE_MASK;
Yan, Zhengb742bb82010-05-16 10:46:24 -0400753
Chris Mason4184ea72009-03-10 12:39:20 -0400754 rcu_read_lock();
755 list_for_each_entry_rcu(found, head, list) {
Josef Bacik67377732010-09-16 16:19:09 -0400756 if (found->flags & flags) {
Chris Mason4184ea72009-03-10 12:39:20 -0400757 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400758 return found;
Chris Mason4184ea72009-03-10 12:39:20 -0400759 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400760 }
Chris Mason4184ea72009-03-10 12:39:20 -0400761 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400762 return NULL;
Chris Mason6324fbf2008-03-24 15:01:59 -0400763}
764
Chris Mason4184ea72009-03-10 12:39:20 -0400765/*
766 * after adding space to the filesystem, we need to clear the full flags
767 * on all the space infos.
768 */
769void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
770{
771 struct list_head *head = &info->space_info;
772 struct btrfs_space_info *found;
773
774 rcu_read_lock();
775 list_for_each_entry_rcu(found, head, list)
776 found->full = 0;
777 rcu_read_unlock();
778}
779
Filipe Manana1a4ed8f2014-10-27 10:44:24 +0000780/* simple helper to search for an existing data extent at a given offset */
781int btrfs_lookup_data_extent(struct btrfs_root *root, u64 start, u64 len)
Chris Masone02119d2008-09-05 16:13:11 -0400782{
783 int ret;
784 struct btrfs_key key;
Zheng Yan31840ae2008-09-23 13:14:14 -0400785 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -0400786
Zheng Yan31840ae2008-09-23 13:14:14 -0400787 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700788 if (!path)
789 return -ENOMEM;
790
Chris Masone02119d2008-09-05 16:13:11 -0400791 key.objectid = start;
792 key.offset = len;
Josef Bacik3173a182013-03-07 14:22:04 -0500793 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -0400794 ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path,
795 0, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400796 btrfs_free_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -0500797 return ret;
798}
799
Chris Masond8d5f3e2007-12-11 12:42:00 -0500800/*
Josef Bacik3173a182013-03-07 14:22:04 -0500801 * helper function to lookup reference count and flags of a tree block.
Yan, Zhenga22285a2010-05-16 10:48:46 -0400802 *
803 * the head node for delayed ref is used to store the sum of all the
804 * reference count modifications queued up in the rbtree. the head
805 * node may also store the extent flags to set. This way you can check
806 * to see what the reference count and extent flags would be if all of
807 * the delayed refs are not processed.
808 */
809int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
810 struct btrfs_root *root, u64 bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -0500811 u64 offset, int metadata, u64 *refs, u64 *flags)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400812{
813 struct btrfs_delayed_ref_head *head;
814 struct btrfs_delayed_ref_root *delayed_refs;
815 struct btrfs_path *path;
816 struct btrfs_extent_item *ei;
817 struct extent_buffer *leaf;
818 struct btrfs_key key;
819 u32 item_size;
820 u64 num_refs;
821 u64 extent_flags;
822 int ret;
823
Josef Bacik3173a182013-03-07 14:22:04 -0500824 /*
825 * If we don't have skinny metadata, don't bother doing anything
826 * different
827 */
828 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) {
David Sterba707e8a02014-06-04 19:22:26 +0200829 offset = root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500830 metadata = 0;
831 }
832
Yan, Zhenga22285a2010-05-16 10:48:46 -0400833 path = btrfs_alloc_path();
834 if (!path)
835 return -ENOMEM;
836
Yan, Zhenga22285a2010-05-16 10:48:46 -0400837 if (!trans) {
838 path->skip_locking = 1;
839 path->search_commit_root = 1;
840 }
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000841
842search_again:
843 key.objectid = bytenr;
844 key.offset = offset;
845 if (metadata)
846 key.type = BTRFS_METADATA_ITEM_KEY;
847 else
848 key.type = BTRFS_EXTENT_ITEM_KEY;
849
Yan, Zhenga22285a2010-05-16 10:48:46 -0400850 ret = btrfs_search_slot(trans, root->fs_info->extent_root,
851 &key, path, 0, 0);
852 if (ret < 0)
853 goto out_free;
854
Josef Bacik3173a182013-03-07 14:22:04 -0500855 if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) {
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100856 if (path->slots[0]) {
857 path->slots[0]--;
858 btrfs_item_key_to_cpu(path->nodes[0], &key,
859 path->slots[0]);
860 if (key.objectid == bytenr &&
861 key.type == BTRFS_EXTENT_ITEM_KEY &&
David Sterba707e8a02014-06-04 19:22:26 +0200862 key.offset == root->nodesize)
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100863 ret = 0;
864 }
Josef Bacik3173a182013-03-07 14:22:04 -0500865 }
866
Yan, Zhenga22285a2010-05-16 10:48:46 -0400867 if (ret == 0) {
868 leaf = path->nodes[0];
869 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
870 if (item_size >= sizeof(*ei)) {
871 ei = btrfs_item_ptr(leaf, path->slots[0],
872 struct btrfs_extent_item);
873 num_refs = btrfs_extent_refs(leaf, ei);
874 extent_flags = btrfs_extent_flags(leaf, ei);
875 } else {
876#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
877 struct btrfs_extent_item_v0 *ei0;
878 BUG_ON(item_size != sizeof(*ei0));
879 ei0 = btrfs_item_ptr(leaf, path->slots[0],
880 struct btrfs_extent_item_v0);
881 num_refs = btrfs_extent_refs_v0(leaf, ei0);
882 /* FIXME: this isn't correct for data */
883 extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
884#else
885 BUG();
886#endif
887 }
888 BUG_ON(num_refs == 0);
889 } else {
890 num_refs = 0;
891 extent_flags = 0;
892 ret = 0;
893 }
894
895 if (!trans)
896 goto out;
897
898 delayed_refs = &trans->transaction->delayed_refs;
899 spin_lock(&delayed_refs->lock);
900 head = btrfs_find_delayed_ref_head(trans, bytenr);
901 if (head) {
902 if (!mutex_trylock(&head->mutex)) {
903 atomic_inc(&head->node.refs);
904 spin_unlock(&delayed_refs->lock);
905
David Sterbab3b4aa72011-04-21 01:20:15 +0200906 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400907
David Sterba8cc33e52011-05-02 15:29:25 +0200908 /*
909 * Mutex was contended, block until it's released and try
910 * again
911 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400912 mutex_lock(&head->mutex);
913 mutex_unlock(&head->mutex);
914 btrfs_put_delayed_ref(&head->node);
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000915 goto search_again;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400916 }
Josef Bacikd7df2c72014-01-23 09:21:38 -0500917 spin_lock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400918 if (head->extent_op && head->extent_op->update_flags)
919 extent_flags |= head->extent_op->flags_to_set;
920 else
921 BUG_ON(num_refs == 0);
922
923 num_refs += head->node.ref_mod;
Josef Bacikd7df2c72014-01-23 09:21:38 -0500924 spin_unlock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400925 mutex_unlock(&head->mutex);
926 }
927 spin_unlock(&delayed_refs->lock);
928out:
929 WARN_ON(num_refs == 0);
930 if (refs)
931 *refs = num_refs;
932 if (flags)
933 *flags = extent_flags;
934out_free:
935 btrfs_free_path(path);
936 return ret;
937}
938
939/*
Chris Masond8d5f3e2007-12-11 12:42:00 -0500940 * Back reference rules. Back refs have three main goals:
941 *
942 * 1) differentiate between all holders of references to an extent so that
943 * when a reference is dropped we can make sure it was a valid reference
944 * before freeing the extent.
945 *
946 * 2) Provide enough information to quickly find the holders of an extent
947 * if we notice a given block is corrupted or bad.
948 *
949 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
950 * maintenance. This is actually the same as #2, but with a slightly
951 * different use case.
952 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400953 * There are two kinds of back refs. The implicit back refs is optimized
954 * for pointers in non-shared tree blocks. For a given pointer in a block,
955 * back refs of this kind provide information about the block's owner tree
956 * and the pointer's key. These information allow us to find the block by
957 * b-tree searching. The full back refs is for pointers in tree blocks not
958 * referenced by their owner trees. The location of tree block is recorded
959 * in the back refs. Actually the full back refs is generic, and can be
960 * used in all cases the implicit back refs is used. The major shortcoming
961 * of the full back refs is its overhead. Every time a tree block gets
962 * COWed, we have to update back refs entry for all pointers in it.
963 *
964 * For a newly allocated tree block, we use implicit back refs for
965 * pointers in it. This means most tree related operations only involve
966 * implicit back refs. For a tree block created in old transaction, the
967 * only way to drop a reference to it is COW it. So we can detect the
968 * event that tree block loses its owner tree's reference and do the
969 * back refs conversion.
970 *
Nicholas D Steeves01327612016-05-19 21:18:45 -0400971 * When a tree block is COWed through a tree, there are four cases:
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400972 *
973 * The reference count of the block is one and the tree is the block's
974 * owner tree. Nothing to do in this case.
975 *
976 * The reference count of the block is one and the tree is not the
977 * block's owner tree. In this case, full back refs is used for pointers
978 * in the block. Remove these full back refs, add implicit back refs for
979 * every pointers in the new block.
980 *
981 * The reference count of the block is greater than one and the tree is
982 * the block's owner tree. In this case, implicit back refs is used for
983 * pointers in the block. Add full back refs for every pointers in the
984 * block, increase lower level extents' reference counts. The original
985 * implicit back refs are entailed to the new block.
986 *
987 * The reference count of the block is greater than one and the tree is
988 * not the block's owner tree. Add implicit back refs for every pointer in
989 * the new block, increase lower level extents' reference count.
990 *
991 * Back Reference Key composing:
992 *
993 * The key objectid corresponds to the first byte in the extent,
994 * The key type is used to differentiate between types of back refs.
995 * There are different meanings of the key offset for different types
996 * of back refs.
997 *
Chris Masond8d5f3e2007-12-11 12:42:00 -0500998 * File extents can be referenced by:
999 *
1000 * - multiple snapshots, subvolumes, or different generations in one subvol
Zheng Yan31840ae2008-09-23 13:14:14 -04001001 * - different files inside a single subvolume
Chris Masond8d5f3e2007-12-11 12:42:00 -05001002 * - different offsets inside a file (bookend extents in file.c)
1003 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001004 * The extent ref structure for the implicit back refs has fields for:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001005 *
1006 * - Objectid of the subvolume root
Chris Masond8d5f3e2007-12-11 12:42:00 -05001007 * - objectid of the file holding the reference
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001008 * - original offset in the file
1009 * - how many bookend extents
Zheng Yan31840ae2008-09-23 13:14:14 -04001010 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001011 * The key offset for the implicit back refs is hash of the first
1012 * three fields.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001013 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001014 * The extent ref structure for the full back refs has field for:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001015 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001016 * - number of pointers in the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -05001017 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001018 * The key offset for the implicit back refs is the first byte of
1019 * the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -05001020 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001021 * When a file extent is allocated, The implicit back refs is used.
1022 * the fields are filled in:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001023 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001024 * (root_key.objectid, inode objectid, offset in file, 1)
1025 *
1026 * When a file extent is removed file truncation, we find the
1027 * corresponding implicit back refs and check the following fields:
1028 *
1029 * (btrfs_header_owner(leaf), inode objectid, offset in file)
Chris Masond8d5f3e2007-12-11 12:42:00 -05001030 *
1031 * Btree extents can be referenced by:
1032 *
1033 * - Different subvolumes
Chris Masond8d5f3e2007-12-11 12:42:00 -05001034 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001035 * Both the implicit back refs and the full back refs for tree blocks
1036 * only consist of key. The key offset for the implicit back refs is
1037 * objectid of block's owner tree. The key offset for the full back refs
1038 * is the first byte of parent block.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001039 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001040 * When implicit back refs is used, information about the lowest key and
1041 * level of the tree block are required. These information are stored in
1042 * tree block info structure.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001043 */
Zheng Yan31840ae2008-09-23 13:14:14 -04001044
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001045#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1046static int convert_extent_item_v0(struct btrfs_trans_handle *trans,
1047 struct btrfs_root *root,
1048 struct btrfs_path *path,
1049 u64 owner, u32 extra_size)
Chris Mason74493f72007-12-11 09:25:06 -05001050{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001051 struct btrfs_extent_item *item;
1052 struct btrfs_extent_item_v0 *ei0;
1053 struct btrfs_extent_ref_v0 *ref0;
1054 struct btrfs_tree_block_info *bi;
Zheng Yan31840ae2008-09-23 13:14:14 -04001055 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001056 struct btrfs_key key;
1057 struct btrfs_key found_key;
1058 u32 new_size = sizeof(*item);
1059 u64 refs;
Chris Mason74493f72007-12-11 09:25:06 -05001060 int ret;
1061
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001062 leaf = path->nodes[0];
1063 BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0));
Chris Mason74493f72007-12-11 09:25:06 -05001064
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001065 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1066 ei0 = btrfs_item_ptr(leaf, path->slots[0],
1067 struct btrfs_extent_item_v0);
1068 refs = btrfs_extent_refs_v0(leaf, ei0);
1069
1070 if (owner == (u64)-1) {
1071 while (1) {
1072 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1073 ret = btrfs_next_leaf(root, path);
1074 if (ret < 0)
1075 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001076 BUG_ON(ret > 0); /* Corruption */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001077 leaf = path->nodes[0];
1078 }
1079 btrfs_item_key_to_cpu(leaf, &found_key,
1080 path->slots[0]);
1081 BUG_ON(key.objectid != found_key.objectid);
1082 if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) {
1083 path->slots[0]++;
1084 continue;
1085 }
1086 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1087 struct btrfs_extent_ref_v0);
1088 owner = btrfs_ref_objectid_v0(leaf, ref0);
1089 break;
1090 }
1091 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001092 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001093
1094 if (owner < BTRFS_FIRST_FREE_OBJECTID)
1095 new_size += sizeof(*bi);
1096
1097 new_size -= sizeof(*ei0);
1098 ret = btrfs_search_slot(trans, root, &key, path,
1099 new_size + extra_size, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04001100 if (ret < 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001101 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001102 BUG_ON(ret); /* Corruption */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001103
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00001104 btrfs_extend_item(root, path, new_size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001105
1106 leaf = path->nodes[0];
1107 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1108 btrfs_set_extent_refs(leaf, item, refs);
1109 /* FIXME: get real generation */
1110 btrfs_set_extent_generation(leaf, item, 0);
1111 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1112 btrfs_set_extent_flags(leaf, item,
1113 BTRFS_EXTENT_FLAG_TREE_BLOCK |
1114 BTRFS_BLOCK_FLAG_FULL_BACKREF);
1115 bi = (struct btrfs_tree_block_info *)(item + 1);
1116 /* FIXME: get first key of the block */
1117 memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi));
1118 btrfs_set_tree_block_level(leaf, bi, (int)owner);
1119 } else {
1120 btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA);
1121 }
1122 btrfs_mark_buffer_dirty(leaf);
1123 return 0;
1124}
1125#endif
1126
1127static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
1128{
1129 u32 high_crc = ~(u32)0;
1130 u32 low_crc = ~(u32)0;
1131 __le64 lenum;
1132
1133 lenum = cpu_to_le64(root_objectid);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001134 high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001135 lenum = cpu_to_le64(owner);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001136 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001137 lenum = cpu_to_le64(offset);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001138 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001139
1140 return ((u64)high_crc << 31) ^ (u64)low_crc;
1141}
1142
1143static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
1144 struct btrfs_extent_data_ref *ref)
1145{
1146 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
1147 btrfs_extent_data_ref_objectid(leaf, ref),
1148 btrfs_extent_data_ref_offset(leaf, ref));
1149}
1150
1151static int match_extent_data_ref(struct extent_buffer *leaf,
1152 struct btrfs_extent_data_ref *ref,
1153 u64 root_objectid, u64 owner, u64 offset)
1154{
1155 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
1156 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
1157 btrfs_extent_data_ref_offset(leaf, ref) != offset)
1158 return 0;
1159 return 1;
1160}
1161
1162static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
1163 struct btrfs_root *root,
1164 struct btrfs_path *path,
1165 u64 bytenr, u64 parent,
1166 u64 root_objectid,
1167 u64 owner, u64 offset)
1168{
1169 struct btrfs_key key;
1170 struct btrfs_extent_data_ref *ref;
1171 struct extent_buffer *leaf;
1172 u32 nritems;
1173 int ret;
1174 int recow;
1175 int err = -ENOENT;
1176
1177 key.objectid = bytenr;
1178 if (parent) {
1179 key.type = BTRFS_SHARED_DATA_REF_KEY;
1180 key.offset = parent;
1181 } else {
1182 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1183 key.offset = hash_extent_data_ref(root_objectid,
1184 owner, offset);
1185 }
1186again:
1187 recow = 0;
1188 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1189 if (ret < 0) {
1190 err = ret;
1191 goto fail;
1192 }
1193
1194 if (parent) {
1195 if (!ret)
1196 return 0;
1197#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1198 key.type = BTRFS_EXTENT_REF_V0_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02001199 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001200 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1201 if (ret < 0) {
1202 err = ret;
1203 goto fail;
1204 }
1205 if (!ret)
1206 return 0;
1207#endif
1208 goto fail;
Zheng Yan31840ae2008-09-23 13:14:14 -04001209 }
1210
1211 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001212 nritems = btrfs_header_nritems(leaf);
1213 while (1) {
1214 if (path->slots[0] >= nritems) {
1215 ret = btrfs_next_leaf(root, path);
1216 if (ret < 0)
1217 err = ret;
1218 if (ret)
1219 goto fail;
1220
1221 leaf = path->nodes[0];
1222 nritems = btrfs_header_nritems(leaf);
1223 recow = 1;
1224 }
1225
1226 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1227 if (key.objectid != bytenr ||
1228 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1229 goto fail;
1230
1231 ref = btrfs_item_ptr(leaf, path->slots[0],
1232 struct btrfs_extent_data_ref);
1233
1234 if (match_extent_data_ref(leaf, ref, root_objectid,
1235 owner, offset)) {
1236 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001237 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001238 goto again;
1239 }
1240 err = 0;
1241 break;
1242 }
1243 path->slots[0]++;
Zheng Yan31840ae2008-09-23 13:14:14 -04001244 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001245fail:
1246 return err;
Zheng Yan31840ae2008-09-23 13:14:14 -04001247}
1248
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001249static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
1250 struct btrfs_root *root,
1251 struct btrfs_path *path,
1252 u64 bytenr, u64 parent,
1253 u64 root_objectid, u64 owner,
1254 u64 offset, int refs_to_add)
Zheng Yan31840ae2008-09-23 13:14:14 -04001255{
1256 struct btrfs_key key;
1257 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001258 u32 size;
Zheng Yan31840ae2008-09-23 13:14:14 -04001259 u32 num_refs;
1260 int ret;
1261
1262 key.objectid = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001263 if (parent) {
1264 key.type = BTRFS_SHARED_DATA_REF_KEY;
1265 key.offset = parent;
1266 size = sizeof(struct btrfs_shared_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001267 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001268 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1269 key.offset = hash_extent_data_ref(root_objectid,
1270 owner, offset);
1271 size = sizeof(struct btrfs_extent_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001272 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001273
1274 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1275 if (ret && ret != -EEXIST)
1276 goto fail;
1277
1278 leaf = path->nodes[0];
1279 if (parent) {
1280 struct btrfs_shared_data_ref *ref;
1281 ref = btrfs_item_ptr(leaf, path->slots[0],
1282 struct btrfs_shared_data_ref);
1283 if (ret == 0) {
1284 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1285 } else {
1286 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1287 num_refs += refs_to_add;
1288 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
1289 }
1290 } else {
1291 struct btrfs_extent_data_ref *ref;
1292 while (ret == -EEXIST) {
1293 ref = btrfs_item_ptr(leaf, path->slots[0],
1294 struct btrfs_extent_data_ref);
1295 if (match_extent_data_ref(leaf, ref, root_objectid,
1296 owner, offset))
1297 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02001298 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001299 key.offset++;
1300 ret = btrfs_insert_empty_item(trans, root, path, &key,
1301 size);
1302 if (ret && ret != -EEXIST)
1303 goto fail;
1304
1305 leaf = path->nodes[0];
1306 }
1307 ref = btrfs_item_ptr(leaf, path->slots[0],
1308 struct btrfs_extent_data_ref);
1309 if (ret == 0) {
1310 btrfs_set_extent_data_ref_root(leaf, ref,
1311 root_objectid);
1312 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1313 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1314 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1315 } else {
1316 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1317 num_refs += refs_to_add;
1318 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
1319 }
1320 }
1321 btrfs_mark_buffer_dirty(leaf);
1322 ret = 0;
1323fail:
David Sterbab3b4aa72011-04-21 01:20:15 +02001324 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05001325 return ret;
Chris Mason74493f72007-12-11 09:25:06 -05001326}
1327
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001328static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
1329 struct btrfs_root *root,
1330 struct btrfs_path *path,
Josef Bacikfcebe452014-05-13 17:30:47 -07001331 int refs_to_drop, int *last_ref)
Zheng Yan31840ae2008-09-23 13:14:14 -04001332{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001333 struct btrfs_key key;
1334 struct btrfs_extent_data_ref *ref1 = NULL;
1335 struct btrfs_shared_data_ref *ref2 = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -04001336 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001337 u32 num_refs = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04001338 int ret = 0;
1339
1340 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001341 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1342
1343 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1344 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1345 struct btrfs_extent_data_ref);
1346 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1347 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1348 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1349 struct btrfs_shared_data_ref);
1350 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1351#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1352 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1353 struct btrfs_extent_ref_v0 *ref0;
1354 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1355 struct btrfs_extent_ref_v0);
1356 num_refs = btrfs_ref_count_v0(leaf, ref0);
1357#endif
1358 } else {
1359 BUG();
1360 }
1361
Chris Mason56bec292009-03-13 10:10:06 -04001362 BUG_ON(num_refs < refs_to_drop);
1363 num_refs -= refs_to_drop;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001364
Zheng Yan31840ae2008-09-23 13:14:14 -04001365 if (num_refs == 0) {
1366 ret = btrfs_del_item(trans, root, path);
Josef Bacikfcebe452014-05-13 17:30:47 -07001367 *last_ref = 1;
Zheng Yan31840ae2008-09-23 13:14:14 -04001368 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001369 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1370 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1371 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1372 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
1373#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1374 else {
1375 struct btrfs_extent_ref_v0 *ref0;
1376 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1377 struct btrfs_extent_ref_v0);
1378 btrfs_set_ref_count_v0(leaf, ref0, num_refs);
1379 }
1380#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04001381 btrfs_mark_buffer_dirty(leaf);
1382 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001383 return ret;
1384}
1385
Zhaolei9ed0dea2015-08-06 22:16:24 +08001386static noinline u32 extent_data_ref_count(struct btrfs_path *path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001387 struct btrfs_extent_inline_ref *iref)
1388{
1389 struct btrfs_key key;
1390 struct extent_buffer *leaf;
1391 struct btrfs_extent_data_ref *ref1;
1392 struct btrfs_shared_data_ref *ref2;
1393 u32 num_refs = 0;
1394
1395 leaf = path->nodes[0];
1396 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1397 if (iref) {
1398 if (btrfs_extent_inline_ref_type(leaf, iref) ==
1399 BTRFS_EXTENT_DATA_REF_KEY) {
1400 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1401 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1402 } else {
1403 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1404 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1405 }
1406 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1407 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1408 struct btrfs_extent_data_ref);
1409 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1410 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1411 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1412 struct btrfs_shared_data_ref);
1413 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1414#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1415 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1416 struct btrfs_extent_ref_v0 *ref0;
1417 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1418 struct btrfs_extent_ref_v0);
1419 num_refs = btrfs_ref_count_v0(leaf, ref0);
1420#endif
1421 } else {
1422 WARN_ON(1);
1423 }
1424 return num_refs;
1425}
1426
1427static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
1428 struct btrfs_root *root,
1429 struct btrfs_path *path,
1430 u64 bytenr, u64 parent,
1431 u64 root_objectid)
1432{
1433 struct btrfs_key key;
1434 int ret;
1435
1436 key.objectid = bytenr;
1437 if (parent) {
1438 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1439 key.offset = parent;
1440 } else {
1441 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1442 key.offset = root_objectid;
1443 }
1444
1445 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1446 if (ret > 0)
1447 ret = -ENOENT;
1448#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1449 if (ret == -ENOENT && parent) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001450 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001451 key.type = BTRFS_EXTENT_REF_V0_KEY;
1452 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1453 if (ret > 0)
1454 ret = -ENOENT;
1455 }
1456#endif
1457 return ret;
1458}
1459
1460static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
1461 struct btrfs_root *root,
1462 struct btrfs_path *path,
1463 u64 bytenr, u64 parent,
1464 u64 root_objectid)
1465{
1466 struct btrfs_key key;
1467 int ret;
1468
1469 key.objectid = bytenr;
1470 if (parent) {
1471 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1472 key.offset = parent;
1473 } else {
1474 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1475 key.offset = root_objectid;
1476 }
1477
1478 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
David Sterbab3b4aa72011-04-21 01:20:15 +02001479 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04001480 return ret;
1481}
1482
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001483static inline int extent_ref_type(u64 parent, u64 owner)
1484{
1485 int type;
1486 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1487 if (parent > 0)
1488 type = BTRFS_SHARED_BLOCK_REF_KEY;
1489 else
1490 type = BTRFS_TREE_BLOCK_REF_KEY;
1491 } else {
1492 if (parent > 0)
1493 type = BTRFS_SHARED_DATA_REF_KEY;
1494 else
1495 type = BTRFS_EXTENT_DATA_REF_KEY;
1496 }
1497 return type;
1498}
1499
Yan Zheng2c47e6052009-06-27 21:07:35 -04001500static int find_next_key(struct btrfs_path *path, int level,
1501 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001502
1503{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001504 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001505 if (!path->nodes[level])
1506 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001507 if (path->slots[level] + 1 >=
1508 btrfs_header_nritems(path->nodes[level]))
1509 continue;
1510 if (level == 0)
1511 btrfs_item_key_to_cpu(path->nodes[level], key,
1512 path->slots[level] + 1);
1513 else
1514 btrfs_node_key_to_cpu(path->nodes[level], key,
1515 path->slots[level] + 1);
1516 return 0;
1517 }
1518 return 1;
1519}
1520
1521/*
1522 * look for inline back ref. if back ref is found, *ref_ret is set
1523 * to the address of inline back ref, and 0 is returned.
1524 *
1525 * if back ref isn't found, *ref_ret is set to the address where it
1526 * should be inserted, and -ENOENT is returned.
1527 *
1528 * if insert is true and there are too many inline back refs, the path
1529 * points to the extent item, and -EAGAIN is returned.
1530 *
1531 * NOTE: inline back refs are ordered in the same way that back ref
1532 * items in the tree are ordered.
1533 */
1534static noinline_for_stack
1535int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
1536 struct btrfs_root *root,
1537 struct btrfs_path *path,
1538 struct btrfs_extent_inline_ref **ref_ret,
1539 u64 bytenr, u64 num_bytes,
1540 u64 parent, u64 root_objectid,
1541 u64 owner, u64 offset, int insert)
1542{
1543 struct btrfs_key key;
1544 struct extent_buffer *leaf;
1545 struct btrfs_extent_item *ei;
1546 struct btrfs_extent_inline_ref *iref;
1547 u64 flags;
1548 u64 item_size;
1549 unsigned long ptr;
1550 unsigned long end;
1551 int extra_size;
1552 int type;
1553 int want;
1554 int ret;
1555 int err = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05001556 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
1557 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001558
1559 key.objectid = bytenr;
1560 key.type = BTRFS_EXTENT_ITEM_KEY;
1561 key.offset = num_bytes;
1562
1563 want = extent_ref_type(parent, owner);
1564 if (insert) {
1565 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001566 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001567 } else
1568 extra_size = -1;
Josef Bacik3173a182013-03-07 14:22:04 -05001569
1570 /*
1571 * Owner is our parent level, so we can just add one to get the level
1572 * for the block we are interested in.
1573 */
1574 if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) {
1575 key.type = BTRFS_METADATA_ITEM_KEY;
1576 key.offset = owner;
1577 }
1578
1579again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001580 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1581 if (ret < 0) {
1582 err = ret;
1583 goto out;
1584 }
Josef Bacik3173a182013-03-07 14:22:04 -05001585
1586 /*
1587 * We may be a newly converted file system which still has the old fat
1588 * extent entries for metadata, so try and see if we have one of those.
1589 */
1590 if (ret > 0 && skinny_metadata) {
1591 skinny_metadata = false;
1592 if (path->slots[0]) {
1593 path->slots[0]--;
1594 btrfs_item_key_to_cpu(path->nodes[0], &key,
1595 path->slots[0]);
1596 if (key.objectid == bytenr &&
1597 key.type == BTRFS_EXTENT_ITEM_KEY &&
1598 key.offset == num_bytes)
1599 ret = 0;
1600 }
1601 if (ret) {
Filipe Manana9ce49a02014-04-24 15:15:28 +01001602 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05001603 key.type = BTRFS_EXTENT_ITEM_KEY;
1604 key.offset = num_bytes;
1605 btrfs_release_path(path);
1606 goto again;
1607 }
1608 }
1609
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001610 if (ret && !insert) {
1611 err = -ENOENT;
1612 goto out;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301613 } else if (WARN_ON(ret)) {
Josef Bacik492104c2013-03-08 15:41:02 -05001614 err = -EIO;
Josef Bacik492104c2013-03-08 15:41:02 -05001615 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001616 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001617
1618 leaf = path->nodes[0];
1619 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1620#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1621 if (item_size < sizeof(*ei)) {
1622 if (!insert) {
1623 err = -ENOENT;
1624 goto out;
1625 }
1626 ret = convert_extent_item_v0(trans, root, path, owner,
1627 extra_size);
1628 if (ret < 0) {
1629 err = ret;
1630 goto out;
1631 }
1632 leaf = path->nodes[0];
1633 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1634 }
1635#endif
1636 BUG_ON(item_size < sizeof(*ei));
1637
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001638 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1639 flags = btrfs_extent_flags(leaf, ei);
1640
1641 ptr = (unsigned long)(ei + 1);
1642 end = (unsigned long)ei + item_size;
1643
Josef Bacik3173a182013-03-07 14:22:04 -05001644 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001645 ptr += sizeof(struct btrfs_tree_block_info);
1646 BUG_ON(ptr > end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001647 }
1648
1649 err = -ENOENT;
1650 while (1) {
1651 if (ptr >= end) {
1652 WARN_ON(ptr > end);
1653 break;
1654 }
1655 iref = (struct btrfs_extent_inline_ref *)ptr;
1656 type = btrfs_extent_inline_ref_type(leaf, iref);
1657 if (want < type)
1658 break;
1659 if (want > type) {
1660 ptr += btrfs_extent_inline_ref_size(type);
1661 continue;
1662 }
1663
1664 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1665 struct btrfs_extent_data_ref *dref;
1666 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1667 if (match_extent_data_ref(leaf, dref, root_objectid,
1668 owner, offset)) {
1669 err = 0;
1670 break;
1671 }
1672 if (hash_extent_data_ref_item(leaf, dref) <
1673 hash_extent_data_ref(root_objectid, owner, offset))
1674 break;
1675 } else {
1676 u64 ref_offset;
1677 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1678 if (parent > 0) {
1679 if (parent == ref_offset) {
1680 err = 0;
1681 break;
1682 }
1683 if (ref_offset < parent)
1684 break;
1685 } else {
1686 if (root_objectid == ref_offset) {
1687 err = 0;
1688 break;
1689 }
1690 if (ref_offset < root_objectid)
1691 break;
1692 }
1693 }
1694 ptr += btrfs_extent_inline_ref_size(type);
1695 }
1696 if (err == -ENOENT && insert) {
1697 if (item_size + extra_size >=
1698 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1699 err = -EAGAIN;
1700 goto out;
1701 }
1702 /*
1703 * To add new inline back ref, we have to make sure
1704 * there is no corresponding back ref item.
1705 * For simplicity, we just do not add new inline back
1706 * ref if there is any kind of item for this block
1707 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001708 if (find_next_key(path, 0, &key) == 0 &&
1709 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001710 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001711 err = -EAGAIN;
1712 goto out;
1713 }
1714 }
1715 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1716out:
Yan Zheng85d41982009-06-11 08:51:10 -04001717 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001718 path->keep_locks = 0;
1719 btrfs_unlock_up_safe(path, 1);
1720 }
1721 return err;
1722}
1723
1724/*
1725 * helper to add new inline back ref
1726 */
1727static noinline_for_stack
Tsutomu Itohfd279fa2013-04-16 05:19:11 +00001728void setup_inline_extent_backref(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001729 struct btrfs_path *path,
1730 struct btrfs_extent_inline_ref *iref,
1731 u64 parent, u64 root_objectid,
1732 u64 owner, u64 offset, int refs_to_add,
1733 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001734{
1735 struct extent_buffer *leaf;
1736 struct btrfs_extent_item *ei;
1737 unsigned long ptr;
1738 unsigned long end;
1739 unsigned long item_offset;
1740 u64 refs;
1741 int size;
1742 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001743
1744 leaf = path->nodes[0];
1745 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1746 item_offset = (unsigned long)iref - (unsigned long)ei;
1747
1748 type = extent_ref_type(parent, owner);
1749 size = btrfs_extent_inline_ref_size(type);
1750
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00001751 btrfs_extend_item(root, path, size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001752
1753 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1754 refs = btrfs_extent_refs(leaf, ei);
1755 refs += refs_to_add;
1756 btrfs_set_extent_refs(leaf, ei, refs);
1757 if (extent_op)
1758 __run_delayed_extent_op(extent_op, leaf, ei);
1759
1760 ptr = (unsigned long)ei + item_offset;
1761 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1762 if (ptr < end - size)
1763 memmove_extent_buffer(leaf, ptr + size, ptr,
1764 end - size - ptr);
1765
1766 iref = (struct btrfs_extent_inline_ref *)ptr;
1767 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1768 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1769 struct btrfs_extent_data_ref *dref;
1770 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1771 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1772 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1773 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1774 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1775 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1776 struct btrfs_shared_data_ref *sref;
1777 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1778 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1779 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1780 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1781 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1782 } else {
1783 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1784 }
1785 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001786}
1787
1788static int lookup_extent_backref(struct btrfs_trans_handle *trans,
1789 struct btrfs_root *root,
1790 struct btrfs_path *path,
1791 struct btrfs_extent_inline_ref **ref_ret,
1792 u64 bytenr, u64 num_bytes, u64 parent,
1793 u64 root_objectid, u64 owner, u64 offset)
1794{
1795 int ret;
1796
1797 ret = lookup_inline_extent_backref(trans, root, path, ref_ret,
1798 bytenr, num_bytes, parent,
1799 root_objectid, owner, offset, 0);
1800 if (ret != -ENOENT)
1801 return ret;
1802
David Sterbab3b4aa72011-04-21 01:20:15 +02001803 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001804 *ref_ret = NULL;
1805
1806 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1807 ret = lookup_tree_block_ref(trans, root, path, bytenr, parent,
1808 root_objectid);
1809 } else {
1810 ret = lookup_extent_data_ref(trans, root, path, bytenr, parent,
1811 root_objectid, owner, offset);
1812 }
1813 return ret;
1814}
1815
1816/*
1817 * helper to update/remove inline back ref
1818 */
1819static noinline_for_stack
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001820void update_inline_extent_backref(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001821 struct btrfs_path *path,
1822 struct btrfs_extent_inline_ref *iref,
1823 int refs_to_mod,
Josef Bacikfcebe452014-05-13 17:30:47 -07001824 struct btrfs_delayed_extent_op *extent_op,
1825 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001826{
1827 struct extent_buffer *leaf;
1828 struct btrfs_extent_item *ei;
1829 struct btrfs_extent_data_ref *dref = NULL;
1830 struct btrfs_shared_data_ref *sref = NULL;
1831 unsigned long ptr;
1832 unsigned long end;
1833 u32 item_size;
1834 int size;
1835 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001836 u64 refs;
1837
1838 leaf = path->nodes[0];
1839 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1840 refs = btrfs_extent_refs(leaf, ei);
1841 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1842 refs += refs_to_mod;
1843 btrfs_set_extent_refs(leaf, ei, refs);
1844 if (extent_op)
1845 __run_delayed_extent_op(extent_op, leaf, ei);
1846
1847 type = btrfs_extent_inline_ref_type(leaf, iref);
1848
1849 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1850 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1851 refs = btrfs_extent_data_ref_count(leaf, dref);
1852 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1853 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1854 refs = btrfs_shared_data_ref_count(leaf, sref);
1855 } else {
1856 refs = 1;
1857 BUG_ON(refs_to_mod != -1);
1858 }
1859
1860 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1861 refs += refs_to_mod;
1862
1863 if (refs > 0) {
1864 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1865 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1866 else
1867 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1868 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001869 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001870 size = btrfs_extent_inline_ref_size(type);
1871 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1872 ptr = (unsigned long)iref;
1873 end = (unsigned long)ei + item_size;
1874 if (ptr + size < end)
1875 memmove_extent_buffer(leaf, ptr, ptr + size,
1876 end - ptr - size);
1877 item_size -= size;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001878 btrfs_truncate_item(root, path, item_size, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001879 }
1880 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001881}
1882
1883static noinline_for_stack
1884int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
1885 struct btrfs_root *root,
1886 struct btrfs_path *path,
1887 u64 bytenr, u64 num_bytes, u64 parent,
1888 u64 root_objectid, u64 owner,
1889 u64 offset, int refs_to_add,
1890 struct btrfs_delayed_extent_op *extent_op)
1891{
1892 struct btrfs_extent_inline_ref *iref;
1893 int ret;
1894
1895 ret = lookup_inline_extent_backref(trans, root, path, &iref,
1896 bytenr, num_bytes, parent,
1897 root_objectid, owner, offset, 1);
1898 if (ret == 0) {
1899 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001900 update_inline_extent_backref(root, path, iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001901 refs_to_add, extent_op, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001902 } else if (ret == -ENOENT) {
Tsutomu Itohfd279fa2013-04-16 05:19:11 +00001903 setup_inline_extent_backref(root, path, iref, parent,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001904 root_objectid, owner, offset,
1905 refs_to_add, extent_op);
1906 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001907 }
1908 return ret;
1909}
1910
1911static int insert_extent_backref(struct btrfs_trans_handle *trans,
1912 struct btrfs_root *root,
1913 struct btrfs_path *path,
1914 u64 bytenr, u64 parent, u64 root_objectid,
1915 u64 owner, u64 offset, int refs_to_add)
1916{
1917 int ret;
1918 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1919 BUG_ON(refs_to_add != 1);
1920 ret = insert_tree_block_ref(trans, root, path, bytenr,
1921 parent, root_objectid);
1922 } else {
1923 ret = insert_extent_data_ref(trans, root, path, bytenr,
1924 parent, root_objectid,
1925 owner, offset, refs_to_add);
1926 }
1927 return ret;
1928}
1929
1930static int remove_extent_backref(struct btrfs_trans_handle *trans,
1931 struct btrfs_root *root,
1932 struct btrfs_path *path,
1933 struct btrfs_extent_inline_ref *iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001934 int refs_to_drop, int is_data, int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001935{
Jeff Mahoney143bede2012-03-01 14:56:26 +01001936 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001937
1938 BUG_ON(!is_data && refs_to_drop != 1);
1939 if (iref) {
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001940 update_inline_extent_backref(root, path, iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001941 -refs_to_drop, NULL, last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001942 } else if (is_data) {
Josef Bacikfcebe452014-05-13 17:30:47 -07001943 ret = remove_extent_data_ref(trans, root, path, refs_to_drop,
1944 last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001945 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001946 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001947 ret = btrfs_del_item(trans, root, path);
1948 }
1949 return ret;
1950}
1951
Jeff Mahoney86557862015-06-15 09:41:16 -04001952#define in_range(b, first, len) ((b) >= (first) && (b) < (first) + (len))
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001953static int btrfs_issue_discard(struct block_device *bdev, u64 start, u64 len,
1954 u64 *discarded_bytes)
Chris Mason15916de2008-11-19 21:17:22 -05001955{
Jeff Mahoney86557862015-06-15 09:41:16 -04001956 int j, ret = 0;
1957 u64 bytes_left, end;
Jeff Mahoney4d89d372015-06-15 09:41:15 -04001958 u64 aligned_start = ALIGN(start, 1 << 9);
1959
1960 if (WARN_ON(start != aligned_start)) {
1961 len -= aligned_start - start;
1962 len = round_down(len, 1 << 9);
1963 start = aligned_start;
1964 }
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001965
1966 *discarded_bytes = 0;
Jeff Mahoney86557862015-06-15 09:41:16 -04001967
1968 if (!len)
1969 return 0;
1970
1971 end = start + len;
1972 bytes_left = len;
1973
1974 /* Skip any superblocks on this device. */
1975 for (j = 0; j < BTRFS_SUPER_MIRROR_MAX; j++) {
1976 u64 sb_start = btrfs_sb_offset(j);
1977 u64 sb_end = sb_start + BTRFS_SUPER_INFO_SIZE;
1978 u64 size = sb_start - start;
1979
1980 if (!in_range(sb_start, start, bytes_left) &&
1981 !in_range(sb_end, start, bytes_left) &&
1982 !in_range(start, sb_start, BTRFS_SUPER_INFO_SIZE))
1983 continue;
1984
1985 /*
1986 * Superblock spans beginning of range. Adjust start and
1987 * try again.
1988 */
1989 if (sb_start <= start) {
1990 start += sb_end - start;
1991 if (start > end) {
1992 bytes_left = 0;
1993 break;
1994 }
1995 bytes_left = end - start;
1996 continue;
1997 }
1998
1999 if (size) {
2000 ret = blkdev_issue_discard(bdev, start >> 9, size >> 9,
2001 GFP_NOFS, 0);
2002 if (!ret)
2003 *discarded_bytes += size;
2004 else if (ret != -EOPNOTSUPP)
2005 return ret;
2006 }
2007
2008 start = sb_end;
2009 if (start > end) {
2010 bytes_left = 0;
2011 break;
2012 }
2013 bytes_left = end - start;
2014 }
2015
2016 if (bytes_left) {
2017 ret = blkdev_issue_discard(bdev, start >> 9, bytes_left >> 9,
Jeff Mahoney4d89d372015-06-15 09:41:15 -04002018 GFP_NOFS, 0);
2019 if (!ret)
Jeff Mahoney86557862015-06-15 09:41:16 -04002020 *discarded_bytes += bytes_left;
Jeff Mahoney4d89d372015-06-15 09:41:15 -04002021 }
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002022 return ret;
Chris Mason15916de2008-11-19 21:17:22 -05002023}
Chris Mason15916de2008-11-19 21:17:22 -05002024
Filipe Manana1edb647b2014-12-08 14:01:12 +00002025int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr,
2026 u64 num_bytes, u64 *actual_bytes)
Liu Hui1f3c79a2009-01-05 15:57:51 -05002027{
Liu Hui1f3c79a2009-01-05 15:57:51 -05002028 int ret;
Li Dongyang5378e602011-03-24 10:24:27 +00002029 u64 discarded_bytes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02002030 struct btrfs_bio *bbio = NULL;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002031
Christoph Hellwige244a0a2009-10-14 09:24:59 -04002032
Filipe Manana29992412016-05-27 17:42:05 +01002033 /*
2034 * Avoid races with device replace and make sure our bbio has devices
2035 * associated to its stripes that don't go away while we are discarding.
2036 */
2037 btrfs_bio_counter_inc_blocked(root->fs_info);
Liu Hui1f3c79a2009-01-05 15:57:51 -05002038 /* Tell the block device(s) that the sectors can be discarded */
Mike Christieb3d3fa52016-06-05 14:31:53 -05002039 ret = btrfs_map_block(root->fs_info, REQ_OP_DISCARD,
Jan Schmidta1d3c472011-08-04 17:15:33 +02002040 bytenr, &num_bytes, &bbio, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002041 /* Error condition is -ENOMEM */
Liu Hui1f3c79a2009-01-05 15:57:51 -05002042 if (!ret) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02002043 struct btrfs_bio_stripe *stripe = bbio->stripes;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002044 int i;
2045
Liu Hui1f3c79a2009-01-05 15:57:51 -05002046
Jan Schmidta1d3c472011-08-04 17:15:33 +02002047 for (i = 0; i < bbio->num_stripes; i++, stripe++) {
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002048 u64 bytes;
Josef Bacikd5e20032011-08-04 14:52:27 +00002049 if (!stripe->dev->can_discard)
2050 continue;
2051
Li Dongyang5378e602011-03-24 10:24:27 +00002052 ret = btrfs_issue_discard(stripe->dev->bdev,
2053 stripe->physical,
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002054 stripe->length,
2055 &bytes);
Li Dongyang5378e602011-03-24 10:24:27 +00002056 if (!ret)
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002057 discarded_bytes += bytes;
Li Dongyang5378e602011-03-24 10:24:27 +00002058 else if (ret != -EOPNOTSUPP)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002059 break; /* Logic errors or -ENOMEM, or -EIO but I don't know how that could happen JDM */
Josef Bacikd5e20032011-08-04 14:52:27 +00002060
2061 /*
2062 * Just in case we get back EOPNOTSUPP for some reason,
2063 * just ignore the return value so we don't screw up
2064 * people calling discard_extent.
2065 */
2066 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002067 }
Zhao Lei6e9606d2015-01-20 15:11:34 +08002068 btrfs_put_bbio(bbio);
Liu Hui1f3c79a2009-01-05 15:57:51 -05002069 }
Filipe Manana29992412016-05-27 17:42:05 +01002070 btrfs_bio_counter_dec(root->fs_info);
Li Dongyang5378e602011-03-24 10:24:27 +00002071
2072 if (actual_bytes)
2073 *actual_bytes = discarded_bytes;
2074
Liu Hui1f3c79a2009-01-05 15:57:51 -05002075
David Woodhouse53b381b2013-01-29 18:40:14 -05002076 if (ret == -EOPNOTSUPP)
2077 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002078 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002079}
2080
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002081/* Can return -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002082int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
2083 struct btrfs_root *root,
2084 u64 bytenr, u64 num_bytes, u64 parent,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002085 u64 root_objectid, u64 owner, u64 offset)
Zheng Yan31840ae2008-09-23 13:14:14 -04002086{
2087 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002088 struct btrfs_fs_info *fs_info = root->fs_info;
2089
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002090 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
2091 root_objectid == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04002092
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002093 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002094 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
2095 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002096 parent, root_objectid, (int)owner,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002097 BTRFS_ADD_DELAYED_REF, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002098 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002099 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08002100 num_bytes, parent, root_objectid,
2101 owner, offset, 0,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002102 BTRFS_ADD_DELAYED_REF, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002103 }
Zheng Yan31840ae2008-09-23 13:14:14 -04002104 return ret;
2105}
2106
Chris Mason925baed2008-06-25 16:01:30 -04002107static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002108 struct btrfs_root *root,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002109 struct btrfs_delayed_ref_node *node,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002110 u64 parent, u64 root_objectid,
2111 u64 owner, u64 offset, int refs_to_add,
2112 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04002113{
Josef Bacikfcebe452014-05-13 17:30:47 -07002114 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5caf2a02007-04-02 11:20:42 -04002115 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002116 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04002117 struct btrfs_extent_item *item;
Josef Bacikfcebe452014-05-13 17:30:47 -07002118 struct btrfs_key key;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002119 u64 bytenr = node->bytenr;
2120 u64 num_bytes = node->num_bytes;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002121 u64 refs;
2122 int ret;
Chris Mason037e6392007-03-07 11:50:24 -05002123
Chris Mason5caf2a02007-04-02 11:20:42 -04002124 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002125 if (!path)
2126 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04002127
David Sterbae4058b52015-11-27 16:31:35 +01002128 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04002129 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002130 /* this will setup the path even if it fails to insert the back ref */
Josef Bacikfcebe452014-05-13 17:30:47 -07002131 ret = insert_inline_extent_backref(trans, fs_info->extent_root, path,
2132 bytenr, num_bytes, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002133 root_objectid, owner, offset,
2134 refs_to_add, extent_op);
Qu Wenruo0ed47922015-04-16 16:55:08 +08002135 if ((ret < 0 && ret != -EAGAIN) || !ret)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002136 goto out;
Josef Bacikfcebe452014-05-13 17:30:47 -07002137
2138 /*
2139 * Ok we had -EAGAIN which means we didn't have space to insert and
2140 * inline extent ref, so just update the reference count and add a
2141 * normal backref.
2142 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002143 leaf = path->nodes[0];
Josef Bacikfcebe452014-05-13 17:30:47 -07002144 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002145 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2146 refs = btrfs_extent_refs(leaf, item);
2147 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
2148 if (extent_op)
2149 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04002150
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002151 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002152 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05002153
David Sterbae4058b52015-11-27 16:31:35 +01002154 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04002155 path->leave_spinning = 1;
Chris Mason56bec292009-03-13 10:10:06 -04002156 /* now insert the actual backref */
Zheng Yan31840ae2008-09-23 13:14:14 -04002157 ret = insert_extent_backref(trans, root->fs_info->extent_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002158 path, bytenr, parent, root_objectid,
2159 owner, offset, refs_to_add);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002160 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04002161 btrfs_abort_transaction(trans, ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002162out:
Chris Mason74493f72007-12-11 09:25:06 -05002163 btrfs_free_path(path);
Liu Bo30d133f2013-10-11 16:30:23 +08002164 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002165}
2166
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002167static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
2168 struct btrfs_root *root,
2169 struct btrfs_delayed_ref_node *node,
2170 struct btrfs_delayed_extent_op *extent_op,
2171 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04002172{
Chris Mason56bec292009-03-13 10:10:06 -04002173 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002174 struct btrfs_delayed_data_ref *ref;
2175 struct btrfs_key ins;
2176 u64 parent = 0;
2177 u64 ref_root = 0;
2178 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002179
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002180 ins.objectid = node->bytenr;
2181 ins.offset = node->num_bytes;
2182 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04002183
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002184 ref = btrfs_delayed_node_to_data_ref(node);
Jeff Mahoneybc074522016-06-09 17:27:55 -04002185 trace_run_delayed_data_ref(root->fs_info, node, ref, node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002186
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002187 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
2188 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002189 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002190
2191 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002192 if (extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002193 flags |= extent_op->flags_to_set;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002194 ret = alloc_reserved_file_extent(trans, root,
2195 parent, ref_root, flags,
2196 ref->objectid, ref->offset,
2197 &ins, node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002198 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002199 ret = __btrfs_inc_extent_ref(trans, root, node, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002200 ref_root, ref->objectid,
2201 ref->offset, node->ref_mod,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002202 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002203 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002204 ret = __btrfs_free_extent(trans, root, node, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002205 ref_root, ref->objectid,
2206 ref->offset, node->ref_mod,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002207 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002208 } else {
2209 BUG();
2210 }
Chris Mason56bec292009-03-13 10:10:06 -04002211 return ret;
2212}
2213
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002214static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
2215 struct extent_buffer *leaf,
2216 struct btrfs_extent_item *ei)
2217{
2218 u64 flags = btrfs_extent_flags(leaf, ei);
2219 if (extent_op->update_flags) {
2220 flags |= extent_op->flags_to_set;
2221 btrfs_set_extent_flags(leaf, ei, flags);
2222 }
2223
2224 if (extent_op->update_key) {
2225 struct btrfs_tree_block_info *bi;
2226 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
2227 bi = (struct btrfs_tree_block_info *)(ei + 1);
2228 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
2229 }
2230}
2231
2232static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
2233 struct btrfs_root *root,
2234 struct btrfs_delayed_ref_node *node,
2235 struct btrfs_delayed_extent_op *extent_op)
2236{
2237 struct btrfs_key key;
2238 struct btrfs_path *path;
2239 struct btrfs_extent_item *ei;
2240 struct extent_buffer *leaf;
2241 u32 item_size;
2242 int ret;
2243 int err = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002244 int metadata = !extent_op->is_data;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002245
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002246 if (trans->aborted)
2247 return 0;
2248
Josef Bacik3173a182013-03-07 14:22:04 -05002249 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2250 metadata = 0;
2251
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002252 path = btrfs_alloc_path();
2253 if (!path)
2254 return -ENOMEM;
2255
2256 key.objectid = node->bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002257
Josef Bacik3173a182013-03-07 14:22:04 -05002258 if (metadata) {
Josef Bacik3173a182013-03-07 14:22:04 -05002259 key.type = BTRFS_METADATA_ITEM_KEY;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002260 key.offset = extent_op->level;
Josef Bacik3173a182013-03-07 14:22:04 -05002261 } else {
2262 key.type = BTRFS_EXTENT_ITEM_KEY;
2263 key.offset = node->num_bytes;
2264 }
2265
2266again:
David Sterbae4058b52015-11-27 16:31:35 +01002267 path->reada = READA_FORWARD;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002268 path->leave_spinning = 1;
2269 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key,
2270 path, 0, 1);
2271 if (ret < 0) {
2272 err = ret;
2273 goto out;
2274 }
2275 if (ret > 0) {
Josef Bacik3173a182013-03-07 14:22:04 -05002276 if (metadata) {
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002277 if (path->slots[0] > 0) {
2278 path->slots[0]--;
2279 btrfs_item_key_to_cpu(path->nodes[0], &key,
2280 path->slots[0]);
2281 if (key.objectid == node->bytenr &&
2282 key.type == BTRFS_EXTENT_ITEM_KEY &&
2283 key.offset == node->num_bytes)
2284 ret = 0;
2285 }
2286 if (ret > 0) {
2287 btrfs_release_path(path);
2288 metadata = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002289
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002290 key.objectid = node->bytenr;
2291 key.offset = node->num_bytes;
2292 key.type = BTRFS_EXTENT_ITEM_KEY;
2293 goto again;
2294 }
2295 } else {
2296 err = -EIO;
2297 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05002298 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002299 }
2300
2301 leaf = path->nodes[0];
2302 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2303#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2304 if (item_size < sizeof(*ei)) {
2305 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
2306 path, (u64)-1, 0);
2307 if (ret < 0) {
2308 err = ret;
2309 goto out;
2310 }
2311 leaf = path->nodes[0];
2312 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2313 }
2314#endif
2315 BUG_ON(item_size < sizeof(*ei));
2316 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2317 __run_delayed_extent_op(extent_op, leaf, ei);
2318
2319 btrfs_mark_buffer_dirty(leaf);
2320out:
2321 btrfs_free_path(path);
2322 return err;
2323}
2324
2325static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
2326 struct btrfs_root *root,
2327 struct btrfs_delayed_ref_node *node,
2328 struct btrfs_delayed_extent_op *extent_op,
2329 int insert_reserved)
2330{
2331 int ret = 0;
2332 struct btrfs_delayed_tree_ref *ref;
2333 struct btrfs_key ins;
2334 u64 parent = 0;
2335 u64 ref_root = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002336 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
2337 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002338
2339 ref = btrfs_delayed_node_to_tree_ref(node);
Jeff Mahoneybc074522016-06-09 17:27:55 -04002340 trace_run_delayed_tree_ref(root->fs_info, node, ref, node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002341
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002342 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2343 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002344 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002345
Josef Bacik3173a182013-03-07 14:22:04 -05002346 ins.objectid = node->bytenr;
2347 if (skinny_metadata) {
2348 ins.offset = ref->level;
2349 ins.type = BTRFS_METADATA_ITEM_KEY;
2350 } else {
2351 ins.offset = node->num_bytes;
2352 ins.type = BTRFS_EXTENT_ITEM_KEY;
2353 }
2354
Liu Bo02794222016-09-14 19:19:05 -07002355 if (node->ref_mod != 1) {
2356 btrfs_err(root->fs_info,
2357 "btree block(%llu) has %d references rather than 1: action %d ref_root %llu parent %llu",
2358 node->bytenr, node->ref_mod, node->action, ref_root,
2359 parent);
2360 return -EIO;
2361 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002362 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002363 BUG_ON(!extent_op || !extent_op->update_flags);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002364 ret = alloc_reserved_tree_block(trans, root,
2365 parent, ref_root,
2366 extent_op->flags_to_set,
2367 &extent_op->key,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002368 ref->level, &ins);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002369 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002370 ret = __btrfs_inc_extent_ref(trans, root, node,
2371 parent, ref_root,
2372 ref->level, 0, 1,
Josef Bacikfcebe452014-05-13 17:30:47 -07002373 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002374 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002375 ret = __btrfs_free_extent(trans, root, node,
2376 parent, ref_root,
2377 ref->level, 0, 1, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002378 } else {
2379 BUG();
2380 }
2381 return ret;
2382}
2383
Chris Mason56bec292009-03-13 10:10:06 -04002384/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002385static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
2386 struct btrfs_root *root,
2387 struct btrfs_delayed_ref_node *node,
2388 struct btrfs_delayed_extent_op *extent_op,
2389 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002390{
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002391 int ret = 0;
2392
Josef Bacik857cc2f2013-10-07 15:21:08 -04002393 if (trans->aborted) {
2394 if (insert_reserved)
2395 btrfs_pin_extent(root, node->bytenr,
2396 node->num_bytes, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002397 return 0;
Josef Bacik857cc2f2013-10-07 15:21:08 -04002398 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002399
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002400 if (btrfs_delayed_ref_is_head(node)) {
Chris Mason56bec292009-03-13 10:10:06 -04002401 struct btrfs_delayed_ref_head *head;
2402 /*
2403 * we've hit the end of the chain and we were supposed
2404 * to insert this extent into the tree. But, it got
2405 * deleted before we ever needed to insert it, so all
2406 * we have to do is clean up the accounting
2407 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002408 BUG_ON(extent_op);
2409 head = btrfs_delayed_node_to_head(node);
Jeff Mahoneybc074522016-06-09 17:27:55 -04002410 trace_run_delayed_ref_head(root->fs_info, node, head,
2411 node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002412
Chris Mason56bec292009-03-13 10:10:06 -04002413 if (insert_reserved) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04002414 btrfs_pin_extent(root, node->bytenr,
2415 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002416 if (head->is_data) {
2417 ret = btrfs_del_csums(trans, root,
2418 node->bytenr,
2419 node->num_bytes);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002420 }
Chris Mason56bec292009-03-13 10:10:06 -04002421 }
Qu Wenruo297d7502015-09-08 17:08:37 +08002422
2423 /* Also free its reserved qgroup space */
2424 btrfs_qgroup_free_delayed_ref(root->fs_info,
2425 head->qgroup_ref_root,
2426 head->qgroup_reserved);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002427 return ret;
Chris Mason56bec292009-03-13 10:10:06 -04002428 }
Josef Bacikeb099672009-02-12 09:27:38 -05002429
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002430 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2431 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2432 ret = run_delayed_tree_ref(trans, root, node, extent_op,
2433 insert_reserved);
2434 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2435 node->type == BTRFS_SHARED_DATA_REF_KEY)
2436 ret = run_delayed_data_ref(trans, root, node, extent_op,
2437 insert_reserved);
2438 else
2439 BUG();
2440 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002441}
2442
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002443static inline struct btrfs_delayed_ref_node *
Chris Mason56bec292009-03-13 10:10:06 -04002444select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002445{
Filipe Mananacffc3372015-07-09 13:13:44 +01002446 struct btrfs_delayed_ref_node *ref;
2447
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002448 if (list_empty(&head->ref_list))
2449 return NULL;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002450
Filipe Mananacffc3372015-07-09 13:13:44 +01002451 /*
2452 * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first.
2453 * This is to prevent a ref count from going down to zero, which deletes
2454 * the extent item from the extent tree, when there still are references
2455 * to add, which would fail because they would not find the extent item.
2456 */
2457 list_for_each_entry(ref, &head->ref_list, list) {
2458 if (ref->action == BTRFS_ADD_DELAYED_REF)
2459 return ref;
2460 }
2461
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002462 return list_entry(head->ref_list.next, struct btrfs_delayed_ref_node,
2463 list);
Chris Mason56bec292009-03-13 10:10:06 -04002464}
2465
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002466/*
2467 * Returns 0 on success or if called with an already aborted transaction.
2468 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2469 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002470static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2471 struct btrfs_root *root,
2472 unsigned long nr)
Chris Mason56bec292009-03-13 10:10:06 -04002473{
Chris Mason56bec292009-03-13 10:10:06 -04002474 struct btrfs_delayed_ref_root *delayed_refs;
2475 struct btrfs_delayed_ref_node *ref;
2476 struct btrfs_delayed_ref_head *locked_ref = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002477 struct btrfs_delayed_extent_op *extent_op;
Jan Schmidt097b8a72012-06-21 11:08:04 +02002478 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002479 ktime_t start = ktime_get();
Chris Mason56bec292009-03-13 10:10:06 -04002480 int ret;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002481 unsigned long count = 0;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002482 unsigned long actual_count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002483 int must_insert_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002484
2485 delayed_refs = &trans->transaction->delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002486 while (1) {
2487 if (!locked_ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002488 if (count >= nr)
Chris Mason56bec292009-03-13 10:10:06 -04002489 break;
Chris Mason56bec292009-03-13 10:10:06 -04002490
Josef Bacikd7df2c72014-01-23 09:21:38 -05002491 spin_lock(&delayed_refs->lock);
2492 locked_ref = btrfs_select_ref_head(trans);
2493 if (!locked_ref) {
2494 spin_unlock(&delayed_refs->lock);
2495 break;
2496 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002497
2498 /* grab the lock that says we are going to process
2499 * all the refs for this head */
2500 ret = btrfs_delayed_ref_lock(trans, locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002501 spin_unlock(&delayed_refs->lock);
Chris Masonc3e69d52009-03-13 10:17:05 -04002502 /*
2503 * we may have dropped the spin lock to get the head
2504 * mutex lock, and that might have given someone else
2505 * time to free the head. If that's true, it has been
2506 * removed from our list and we can move on.
2507 */
2508 if (ret == -EAGAIN) {
2509 locked_ref = NULL;
2510 count++;
2511 continue;
Chris Mason56bec292009-03-13 10:10:06 -04002512 }
2513 }
2514
Filipe Manana2c3cf7d2015-10-22 09:47:34 +01002515 /*
2516 * We need to try and merge add/drops of the same ref since we
2517 * can run into issues with relocate dropping the implicit ref
2518 * and then it being added back again before the drop can
2519 * finish. If we merged anything we need to re-loop so we can
2520 * get a good ref.
2521 * Or we can get node references of the same type that weren't
2522 * merged when created due to bumps in the tree mod seq, and
2523 * we need to merge them to prevent adding an inline extent
2524 * backref before dropping it (triggering a BUG_ON at
2525 * insert_inline_extent_backref()).
2526 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002527 spin_lock(&locked_ref->lock);
Filipe Manana2c3cf7d2015-10-22 09:47:34 +01002528 btrfs_merge_delayed_refs(trans, fs_info, delayed_refs,
2529 locked_ref);
Josef Bacikae1e2062012-08-07 16:00:32 -04002530
2531 /*
Arne Jansend1270cd2011-09-13 15:16:43 +02002532 * locked_ref is the head node, so we have to go one
2533 * node back for any delayed ref updates
2534 */
2535 ref = select_delayed_ref(locked_ref);
2536
2537 if (ref && ref->seq &&
Jan Schmidt097b8a72012-06-21 11:08:04 +02002538 btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002539 spin_unlock(&locked_ref->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002540 spin_lock(&delayed_refs->lock);
2541 locked_ref->processing = 0;
Arne Jansend1270cd2011-09-13 15:16:43 +02002542 delayed_refs->num_heads_ready++;
2543 spin_unlock(&delayed_refs->lock);
Jeff Mahoney003e3162016-12-20 13:28:28 -05002544 btrfs_delayed_ref_unlock(locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002545 locked_ref = NULL;
Arne Jansend1270cd2011-09-13 15:16:43 +02002546 cond_resched();
Josef Bacik27a377d2014-02-07 13:57:59 -05002547 count++;
Arne Jansend1270cd2011-09-13 15:16:43 +02002548 continue;
2549 }
2550
2551 /*
Chris Mason56bec292009-03-13 10:10:06 -04002552 * record the must insert reserved flag before we
2553 * drop the spin lock.
2554 */
2555 must_insert_reserved = locked_ref->must_insert_reserved;
2556 locked_ref->must_insert_reserved = 0;
2557
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002558 extent_op = locked_ref->extent_op;
2559 locked_ref->extent_op = NULL;
2560
Chris Mason56bec292009-03-13 10:10:06 -04002561 if (!ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002562
2563
Chris Mason56bec292009-03-13 10:10:06 -04002564 /* All delayed refs have been processed, Go ahead
2565 * and send the head node to run_one_delayed_ref,
2566 * so that any accounting fixes can happen
2567 */
2568 ref = &locked_ref->node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002569
2570 if (extent_op && must_insert_reserved) {
Miao Xie78a61842012-11-21 02:21:28 +00002571 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002572 extent_op = NULL;
2573 }
2574
2575 if (extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002576 spin_unlock(&locked_ref->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002577 ret = run_delayed_extent_op(trans, root,
2578 ref, extent_op);
Miao Xie78a61842012-11-21 02:21:28 +00002579 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002580
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002581 if (ret) {
Josef Bacik857cc2f2013-10-07 15:21:08 -04002582 /*
2583 * Need to reset must_insert_reserved if
2584 * there was an error so the abort stuff
2585 * can cleanup the reserved space
2586 * properly.
2587 */
2588 if (must_insert_reserved)
2589 locked_ref->must_insert_reserved = 1;
Jeff Mahoney7a1dcd92016-12-20 13:28:27 -05002590 spin_lock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002591 locked_ref->processing = 0;
Jeff Mahoney7a1dcd92016-12-20 13:28:27 -05002592 delayed_refs->num_heads_ready++;
2593 spin_unlock(&delayed_refs->lock);
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002594 btrfs_debug(fs_info,
2595 "run_delayed_extent_op returned %d",
2596 ret);
Miao Xie093486c2012-12-19 08:10:10 +00002597 btrfs_delayed_ref_unlock(locked_ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002598 return ret;
2599 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002600 continue;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002601 }
Chris Mason56bec292009-03-13 10:10:06 -04002602
Josef Bacikd7df2c72014-01-23 09:21:38 -05002603 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002604 * Need to drop our head ref lock and re-acquire the
Josef Bacikd7df2c72014-01-23 09:21:38 -05002605 * delayed ref lock and then re-check to make sure
2606 * nobody got added.
2607 */
2608 spin_unlock(&locked_ref->lock);
2609 spin_lock(&delayed_refs->lock);
2610 spin_lock(&locked_ref->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002611 if (!list_empty(&locked_ref->ref_list) ||
Josef Bacik573a0752014-03-27 19:41:34 -04002612 locked_ref->extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002613 spin_unlock(&locked_ref->lock);
2614 spin_unlock(&delayed_refs->lock);
2615 continue;
2616 }
2617 ref->in_tree = 0;
2618 delayed_refs->num_heads--;
Liu Boc46effa2013-10-14 12:59:45 +08002619 rb_erase(&locked_ref->href_node,
2620 &delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002621 spin_unlock(&delayed_refs->lock);
2622 } else {
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002623 actual_count++;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002624 ref->in_tree = 0;
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002625 list_del(&ref->list);
Liu Boc46effa2013-10-14 12:59:45 +08002626 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002627 atomic_dec(&delayed_refs->num_entries);
2628
Miao Xie093486c2012-12-19 08:10:10 +00002629 if (!btrfs_delayed_ref_is_head(ref)) {
Arne Jansen22cd2e72012-08-09 00:16:53 -06002630 /*
2631 * when we play the delayed ref, also correct the
2632 * ref_mod on head
2633 */
2634 switch (ref->action) {
2635 case BTRFS_ADD_DELAYED_REF:
2636 case BTRFS_ADD_DELAYED_EXTENT:
2637 locked_ref->node.ref_mod -= ref->ref_mod;
2638 break;
2639 case BTRFS_DROP_DELAYED_REF:
2640 locked_ref->node.ref_mod += ref->ref_mod;
2641 break;
2642 default:
2643 WARN_ON(1);
2644 }
2645 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002646 spin_unlock(&locked_ref->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002647
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002648 ret = run_one_delayed_ref(trans, root, ref, extent_op,
Chris Mason56bec292009-03-13 10:10:06 -04002649 must_insert_reserved);
Chris Mason56bec292009-03-13 10:10:06 -04002650
Miao Xie78a61842012-11-21 02:21:28 +00002651 btrfs_free_delayed_extent_op(extent_op);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002652 if (ret) {
Wang Xiaoguang9d1032c2016-06-20 09:18:52 +08002653 spin_lock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002654 locked_ref->processing = 0;
Wang Xiaoguang9d1032c2016-06-20 09:18:52 +08002655 delayed_refs->num_heads_ready++;
2656 spin_unlock(&delayed_refs->lock);
Miao Xie093486c2012-12-19 08:10:10 +00002657 btrfs_delayed_ref_unlock(locked_ref);
2658 btrfs_put_delayed_ref(ref);
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002659 btrfs_debug(fs_info, "run_one_delayed_ref returned %d",
2660 ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002661 return ret;
2662 }
2663
Miao Xie093486c2012-12-19 08:10:10 +00002664 /*
2665 * If this node is a head, that means all the refs in this head
2666 * have been dealt with, and we will pick the next head to deal
2667 * with, so we must unlock the head and drop it from the cluster
2668 * list before we release it.
2669 */
2670 if (btrfs_delayed_ref_is_head(ref)) {
Josef Bacik12621332015-02-03 07:50:16 -08002671 if (locked_ref->is_data &&
2672 locked_ref->total_ref_mod < 0) {
2673 spin_lock(&delayed_refs->lock);
2674 delayed_refs->pending_csums -= ref->num_bytes;
2675 spin_unlock(&delayed_refs->lock);
2676 }
Miao Xie093486c2012-12-19 08:10:10 +00002677 btrfs_delayed_ref_unlock(locked_ref);
2678 locked_ref = NULL;
2679 }
2680 btrfs_put_delayed_ref(ref);
2681 count++;
Chris Mason1887be62009-03-13 10:11:24 -04002682 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002683 }
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002684
2685 /*
2686 * We don't want to include ref heads since we can have empty ref heads
2687 * and those will drastically skew our runtime down since we just do
2688 * accounting, no actual extent tree updates.
2689 */
2690 if (actual_count > 0) {
2691 u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start));
2692 u64 avg;
2693
2694 /*
2695 * We weigh the current average higher than our current runtime
2696 * to avoid large swings in the average.
2697 */
2698 spin_lock(&delayed_refs->lock);
2699 avg = fs_info->avg_delayed_ref_runtime * 3 + runtime;
David Sterbaf8c269d2015-01-16 17:21:12 +01002700 fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002701 spin_unlock(&delayed_refs->lock);
2702 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002703 return 0;
Chris Masonc3e69d52009-03-13 10:17:05 -04002704}
2705
Arne Jansen709c0482011-09-12 12:22:57 +02002706#ifdef SCRAMBLE_DELAYED_REFS
2707/*
2708 * Normally delayed refs get processed in ascending bytenr order. This
2709 * correlates in most cases to the order added. To expose dependencies on this
2710 * order, we start to process the tree in the middle instead of the beginning
2711 */
2712static u64 find_middle(struct rb_root *root)
2713{
2714 struct rb_node *n = root->rb_node;
2715 struct btrfs_delayed_ref_node *entry;
2716 int alt = 1;
2717 u64 middle;
2718 u64 first = 0, last = 0;
2719
2720 n = rb_first(root);
2721 if (n) {
2722 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2723 first = entry->bytenr;
2724 }
2725 n = rb_last(root);
2726 if (n) {
2727 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2728 last = entry->bytenr;
2729 }
2730 n = root->rb_node;
2731
2732 while (n) {
2733 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2734 WARN_ON(!entry->in_tree);
2735
2736 middle = entry->bytenr;
2737
2738 if (alt)
2739 n = n->rb_left;
2740 else
2741 n = n->rb_right;
2742
2743 alt = 1 - alt;
2744 }
2745 return middle;
2746}
2747#endif
2748
Josef Bacik1be41b72013-06-12 13:56:06 -04002749static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads)
2750{
2751 u64 num_bytes;
2752
2753 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2754 sizeof(struct btrfs_extent_inline_ref));
2755 if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2756 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2757
2758 /*
2759 * 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 -04002760 * closer to what we're really going to want to use.
Josef Bacik1be41b72013-06-12 13:56:06 -04002761 */
David Sterbaf8c269d2015-01-16 17:21:12 +01002762 return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root));
Josef Bacik1be41b72013-06-12 13:56:06 -04002763}
2764
Josef Bacik12621332015-02-03 07:50:16 -08002765/*
2766 * Takes the number of bytes to be csumm'ed and figures out how many leaves it
2767 * would require to store the csums for that many bytes.
2768 */
Chris Mason28f75a02015-02-04 06:59:29 -08002769u64 btrfs_csum_bytes_to_leaves(struct btrfs_root *root, u64 csum_bytes)
Josef Bacik12621332015-02-03 07:50:16 -08002770{
2771 u64 csum_size;
2772 u64 num_csums_per_leaf;
2773 u64 num_csums;
2774
Jeff Mahoney14a1e062016-06-15 10:25:38 -04002775 csum_size = BTRFS_MAX_ITEM_SIZE(root);
Josef Bacik12621332015-02-03 07:50:16 -08002776 num_csums_per_leaf = div64_u64(csum_size,
2777 (u64)btrfs_super_csum_size(root->fs_info->super_copy));
2778 num_csums = div64_u64(csum_bytes, root->sectorsize);
2779 num_csums += num_csums_per_leaf - 1;
2780 num_csums = div64_u64(num_csums, num_csums_per_leaf);
2781 return num_csums;
2782}
2783
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002784int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans,
Josef Bacik1be41b72013-06-12 13:56:06 -04002785 struct btrfs_root *root)
2786{
2787 struct btrfs_block_rsv *global_rsv;
2788 u64 num_heads = trans->transaction->delayed_refs.num_heads_ready;
Josef Bacik12621332015-02-03 07:50:16 -08002789 u64 csum_bytes = trans->transaction->delayed_refs.pending_csums;
Josef Bacikcb723e42015-02-18 08:06:57 -08002790 u64 num_dirty_bgs = trans->transaction->num_dirty_bgs;
2791 u64 num_bytes, num_dirty_bgs_bytes;
Josef Bacik1be41b72013-06-12 13:56:06 -04002792 int ret = 0;
2793
2794 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
2795 num_heads = heads_to_leaves(root, num_heads);
2796 if (num_heads > 1)
David Sterba707e8a02014-06-04 19:22:26 +02002797 num_bytes += (num_heads - 1) * root->nodesize;
Josef Bacik1be41b72013-06-12 13:56:06 -04002798 num_bytes <<= 1;
Chris Mason28f75a02015-02-04 06:59:29 -08002799 num_bytes += btrfs_csum_bytes_to_leaves(root, csum_bytes) * root->nodesize;
Josef Bacikcb723e42015-02-18 08:06:57 -08002800 num_dirty_bgs_bytes = btrfs_calc_trans_metadata_size(root,
2801 num_dirty_bgs);
Josef Bacik1be41b72013-06-12 13:56:06 -04002802 global_rsv = &root->fs_info->global_block_rsv;
2803
2804 /*
2805 * If we can't allocate any more chunks lets make sure we have _lots_ of
2806 * wiggle room since running delayed refs can create more delayed refs.
2807 */
Josef Bacikcb723e42015-02-18 08:06:57 -08002808 if (global_rsv->space_info->full) {
2809 num_dirty_bgs_bytes <<= 1;
Josef Bacik1be41b72013-06-12 13:56:06 -04002810 num_bytes <<= 1;
Josef Bacikcb723e42015-02-18 08:06:57 -08002811 }
Josef Bacik1be41b72013-06-12 13:56:06 -04002812
2813 spin_lock(&global_rsv->lock);
Josef Bacikcb723e42015-02-18 08:06:57 -08002814 if (global_rsv->reserved <= num_bytes + num_dirty_bgs_bytes)
Josef Bacik1be41b72013-06-12 13:56:06 -04002815 ret = 1;
2816 spin_unlock(&global_rsv->lock);
2817 return ret;
2818}
2819
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002820int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans,
2821 struct btrfs_root *root)
2822{
2823 struct btrfs_fs_info *fs_info = root->fs_info;
2824 u64 num_entries =
2825 atomic_read(&trans->transaction->delayed_refs.num_entries);
2826 u64 avg_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002827 u64 val;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002828
2829 smp_mb();
2830 avg_runtime = fs_info->avg_delayed_ref_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002831 val = num_entries * avg_runtime;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002832 if (num_entries * avg_runtime >= NSEC_PER_SEC)
2833 return 1;
Chris Masona79b7d42014-05-22 16:18:52 -07002834 if (val >= NSEC_PER_SEC / 2)
2835 return 2;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002836
2837 return btrfs_check_space_for_delayed_refs(trans, root);
2838}
2839
Chris Masona79b7d42014-05-22 16:18:52 -07002840struct async_delayed_refs {
2841 struct btrfs_root *root;
Josef Bacik31b96552016-04-11 17:37:40 -04002842 u64 transid;
Chris Masona79b7d42014-05-22 16:18:52 -07002843 int count;
2844 int error;
2845 int sync;
2846 struct completion wait;
2847 struct btrfs_work work;
2848};
2849
2850static void delayed_ref_async_start(struct btrfs_work *work)
2851{
2852 struct async_delayed_refs *async;
2853 struct btrfs_trans_handle *trans;
2854 int ret;
2855
2856 async = container_of(work, struct async_delayed_refs, work);
2857
Chris Mason0f873ec2016-04-27 09:59:38 -04002858 /* if the commit is already started, we don't need to wait here */
2859 if (btrfs_transaction_blocked(async->root->fs_info))
Josef Bacik31b96552016-04-11 17:37:40 -04002860 goto done;
Josef Bacik31b96552016-04-11 17:37:40 -04002861
Chris Mason0f873ec2016-04-27 09:59:38 -04002862 trans = btrfs_join_transaction(async->root);
2863 if (IS_ERR(trans)) {
2864 async->error = PTR_ERR(trans);
Chris Masona79b7d42014-05-22 16:18:52 -07002865 goto done;
2866 }
2867
2868 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002869 * trans->sync means that when we call end_transaction, we won't
Chris Masona79b7d42014-05-22 16:18:52 -07002870 * wait on delayed refs
2871 */
2872 trans->sync = true;
Chris Mason0f873ec2016-04-27 09:59:38 -04002873
2874 /* Don't bother flushing if we got into a different transaction */
2875 if (trans->transid > async->transid)
2876 goto end;
2877
Chris Masona79b7d42014-05-22 16:18:52 -07002878 ret = btrfs_run_delayed_refs(trans, async->root, async->count);
2879 if (ret)
2880 async->error = ret;
Chris Mason0f873ec2016-04-27 09:59:38 -04002881end:
Chris Masona79b7d42014-05-22 16:18:52 -07002882 ret = btrfs_end_transaction(trans, async->root);
2883 if (ret && !async->error)
2884 async->error = ret;
2885done:
2886 if (async->sync)
2887 complete(&async->wait);
2888 else
2889 kfree(async);
2890}
2891
2892int btrfs_async_run_delayed_refs(struct btrfs_root *root,
Josef Bacik31b96552016-04-11 17:37:40 -04002893 unsigned long count, u64 transid, int wait)
Chris Masona79b7d42014-05-22 16:18:52 -07002894{
2895 struct async_delayed_refs *async;
2896 int ret;
2897
2898 async = kmalloc(sizeof(*async), GFP_NOFS);
2899 if (!async)
2900 return -ENOMEM;
2901
2902 async->root = root->fs_info->tree_root;
2903 async->count = count;
2904 async->error = 0;
Josef Bacik31b96552016-04-11 17:37:40 -04002905 async->transid = transid;
Chris Masona79b7d42014-05-22 16:18:52 -07002906 if (wait)
2907 async->sync = 1;
2908 else
2909 async->sync = 0;
2910 init_completion(&async->wait);
2911
Liu Bo9e0af232014-08-15 23:36:53 +08002912 btrfs_init_work(&async->work, btrfs_extent_refs_helper,
2913 delayed_ref_async_start, NULL, NULL);
Chris Masona79b7d42014-05-22 16:18:52 -07002914
2915 btrfs_queue_work(root->fs_info->extent_workers, &async->work);
2916
2917 if (wait) {
2918 wait_for_completion(&async->wait);
2919 ret = async->error;
2920 kfree(async);
2921 return ret;
2922 }
2923 return 0;
2924}
2925
Chris Masonc3e69d52009-03-13 10:17:05 -04002926/*
2927 * this starts processing the delayed reference count updates and
2928 * extent insertions we have queued up so far. count can be
2929 * 0, which means to process everything in the tree at the start
2930 * of the run (but not newly added entries), or it can be some target
2931 * number you'd like to process.
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002932 *
2933 * Returns 0 on success or if called with an aborted transaction
2934 * Returns <0 on error and aborts the transaction
Chris Masonc3e69d52009-03-13 10:17:05 -04002935 */
2936int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2937 struct btrfs_root *root, unsigned long count)
2938{
2939 struct rb_node *node;
2940 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boc46effa2013-10-14 12:59:45 +08002941 struct btrfs_delayed_ref_head *head;
Chris Masonc3e69d52009-03-13 10:17:05 -04002942 int ret;
2943 int run_all = count == (unsigned long)-1;
Filipe Mananad9a05402015-10-03 13:13:13 +01002944 bool can_flush_pending_bgs = trans->can_flush_pending_bgs;
Chris Masonc3e69d52009-03-13 10:17:05 -04002945
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002946 /* We'll clean this up in btrfs_cleanup_transaction */
2947 if (trans->aborted)
2948 return 0;
2949
Josef Bacikafcdd122016-09-02 15:40:02 -04002950 if (test_bit(BTRFS_FS_CREATING_FREE_SPACE_TREE, &root->fs_info->flags))
Chris Mason511711a2015-12-30 07:52:35 -08002951 return 0;
2952
Chris Masonc3e69d52009-03-13 10:17:05 -04002953 if (root == root->fs_info->extent_root)
2954 root = root->fs_info->tree_root;
2955
2956 delayed_refs = &trans->transaction->delayed_refs;
Liu Bo26455d32014-12-17 16:14:09 +08002957 if (count == 0)
Josef Bacikd7df2c72014-01-23 09:21:38 -05002958 count = atomic_read(&delayed_refs->num_entries) * 2;
Chris Masonbb721702013-01-29 18:44:12 -05002959
Chris Masonc3e69d52009-03-13 10:17:05 -04002960again:
Arne Jansen709c0482011-09-12 12:22:57 +02002961#ifdef SCRAMBLE_DELAYED_REFS
2962 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
2963#endif
Filipe Mananad9a05402015-10-03 13:13:13 +01002964 trans->can_flush_pending_bgs = false;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002965 ret = __btrfs_run_delayed_refs(trans, root, count);
2966 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002967 btrfs_abort_transaction(trans, ret);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002968 return ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04002969 }
2970
Chris Mason56bec292009-03-13 10:10:06 -04002971 if (run_all) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002972 if (!list_empty(&trans->new_bgs))
Josef Bacikea658ba2012-09-11 16:57:25 -04002973 btrfs_create_pending_block_groups(trans, root);
Josef Bacikea658ba2012-09-11 16:57:25 -04002974
Josef Bacikd7df2c72014-01-23 09:21:38 -05002975 spin_lock(&delayed_refs->lock);
Liu Boc46effa2013-10-14 12:59:45 +08002976 node = rb_first(&delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002977 if (!node) {
2978 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002979 goto out;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002980 }
Chris Mason56bec292009-03-13 10:10:06 -04002981
2982 while (node) {
Liu Boc46effa2013-10-14 12:59:45 +08002983 head = rb_entry(node, struct btrfs_delayed_ref_head,
2984 href_node);
2985 if (btrfs_delayed_ref_is_head(&head->node)) {
2986 struct btrfs_delayed_ref_node *ref;
Chris Mason56bec292009-03-13 10:10:06 -04002987
Liu Boc46effa2013-10-14 12:59:45 +08002988 ref = &head->node;
Chris Mason56bec292009-03-13 10:10:06 -04002989 atomic_inc(&ref->refs);
2990
2991 spin_unlock(&delayed_refs->lock);
David Sterba8cc33e52011-05-02 15:29:25 +02002992 /*
2993 * Mutex was contended, block until it's
2994 * released and try again
2995 */
Chris Mason56bec292009-03-13 10:10:06 -04002996 mutex_lock(&head->mutex);
2997 mutex_unlock(&head->mutex);
2998
2999 btrfs_put_delayed_ref(ref);
Chris Mason1887be62009-03-13 10:11:24 -04003000 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04003001 goto again;
Liu Boc46effa2013-10-14 12:59:45 +08003002 } else {
3003 WARN_ON(1);
Chris Mason56bec292009-03-13 10:10:06 -04003004 }
3005 node = rb_next(node);
3006 }
3007 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003008 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04003009 goto again;
3010 }
Chris Mason54aa1f42007-06-22 14:16:25 -04003011out:
Jan Schmidtedf39272012-06-28 18:04:55 +02003012 assert_qgroups_uptodate(trans);
Filipe Mananad9a05402015-10-03 13:13:13 +01003013 trans->can_flush_pending_bgs = can_flush_pending_bgs;
Chris Masona28ec192007-03-06 20:08:01 -05003014 return 0;
3015}
3016
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003017int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
3018 struct btrfs_root *root,
3019 u64 bytenr, u64 num_bytes, u64 flags,
Josef Bacikb1c79e02013-05-09 13:49:30 -04003020 int level, int is_data)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003021{
3022 struct btrfs_delayed_extent_op *extent_op;
3023 int ret;
3024
Miao Xie78a61842012-11-21 02:21:28 +00003025 extent_op = btrfs_alloc_delayed_extent_op();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003026 if (!extent_op)
3027 return -ENOMEM;
3028
3029 extent_op->flags_to_set = flags;
David Sterba35b3ad52015-11-30 16:51:29 +01003030 extent_op->update_flags = true;
3031 extent_op->update_key = false;
3032 extent_op->is_data = is_data ? true : false;
Josef Bacikb1c79e02013-05-09 13:49:30 -04003033 extent_op->level = level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003034
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003035 ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr,
3036 num_bytes, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003037 if (ret)
Miao Xie78a61842012-11-21 02:21:28 +00003038 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003039 return ret;
3040}
3041
3042static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
3043 struct btrfs_root *root,
3044 struct btrfs_path *path,
3045 u64 objectid, u64 offset, u64 bytenr)
3046{
3047 struct btrfs_delayed_ref_head *head;
3048 struct btrfs_delayed_ref_node *ref;
3049 struct btrfs_delayed_data_ref *data_ref;
3050 struct btrfs_delayed_ref_root *delayed_refs;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003051 int ret = 0;
3052
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003053 delayed_refs = &trans->transaction->delayed_refs;
3054 spin_lock(&delayed_refs->lock);
3055 head = btrfs_find_delayed_ref_head(trans, bytenr);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003056 if (!head) {
3057 spin_unlock(&delayed_refs->lock);
3058 return 0;
3059 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003060
3061 if (!mutex_trylock(&head->mutex)) {
3062 atomic_inc(&head->node.refs);
3063 spin_unlock(&delayed_refs->lock);
3064
David Sterbab3b4aa72011-04-21 01:20:15 +02003065 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003066
David Sterba8cc33e52011-05-02 15:29:25 +02003067 /*
3068 * Mutex was contended, block until it's released and let
3069 * caller try again
3070 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003071 mutex_lock(&head->mutex);
3072 mutex_unlock(&head->mutex);
3073 btrfs_put_delayed_ref(&head->node);
3074 return -EAGAIN;
3075 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003076 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003077
3078 spin_lock(&head->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08003079 list_for_each_entry(ref, &head->ref_list, list) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05003080 /* If it's a shared ref we know a cross reference exists */
3081 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) {
3082 ret = 1;
3083 break;
3084 }
3085
3086 data_ref = btrfs_delayed_node_to_data_ref(ref);
3087
3088 /*
3089 * If our ref doesn't match the one we're currently looking at
3090 * then we have a cross reference.
3091 */
3092 if (data_ref->root != root->root_key.objectid ||
3093 data_ref->objectid != objectid ||
3094 data_ref->offset != offset) {
3095 ret = 1;
3096 break;
3097 }
3098 }
3099 spin_unlock(&head->lock);
3100 mutex_unlock(&head->mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003101 return ret;
3102}
3103
3104static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
3105 struct btrfs_root *root,
3106 struct btrfs_path *path,
3107 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05003108{
3109 struct btrfs_root *extent_root = root->fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04003110 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003111 struct btrfs_extent_data_ref *ref;
3112 struct btrfs_extent_inline_ref *iref;
3113 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05003114 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003115 u32 item_size;
Yan Zhengf321e492008-07-30 09:26:11 -04003116 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05003117
Chris Masonbe20aa92007-12-17 20:14:01 -05003118 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04003119 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04003120 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05003121
Chris Masonbe20aa92007-12-17 20:14:01 -05003122 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
3123 if (ret < 0)
3124 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003125 BUG_ON(ret == 0); /* Corruption */
Yan Zheng80ff3852008-10-30 14:20:02 -04003126
3127 ret = -ENOENT;
3128 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04003129 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003130
Zheng Yan31840ae2008-09-23 13:14:14 -04003131 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04003132 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003133 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05003134
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003135 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05003136 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003137
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003138 ret = 1;
3139 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
3140#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
3141 if (item_size < sizeof(*ei)) {
3142 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
3143 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003144 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003145#endif
3146 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
3147
3148 if (item_size != sizeof(*ei) +
3149 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
3150 goto out;
3151
3152 if (btrfs_extent_generation(leaf, ei) <=
3153 btrfs_root_last_snapshot(&root->root_item))
3154 goto out;
3155
3156 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
3157 if (btrfs_extent_inline_ref_type(leaf, iref) !=
3158 BTRFS_EXTENT_DATA_REF_KEY)
3159 goto out;
3160
3161 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
3162 if (btrfs_extent_refs(leaf, ei) !=
3163 btrfs_extent_data_ref_count(leaf, ref) ||
3164 btrfs_extent_data_ref_root(leaf, ref) !=
3165 root->root_key.objectid ||
3166 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
3167 btrfs_extent_data_ref_offset(leaf, ref) != offset)
3168 goto out;
3169
Yan Zhengf321e492008-07-30 09:26:11 -04003170 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05003171out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003172 return ret;
3173}
3174
3175int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
3176 struct btrfs_root *root,
3177 u64 objectid, u64 offset, u64 bytenr)
3178{
3179 struct btrfs_path *path;
3180 int ret;
3181 int ret2;
3182
3183 path = btrfs_alloc_path();
3184 if (!path)
3185 return -ENOENT;
3186
3187 do {
3188 ret = check_committed_ref(trans, root, path, objectid,
3189 offset, bytenr);
3190 if (ret && ret != -ENOENT)
3191 goto out;
3192
3193 ret2 = check_delayed_ref(trans, root, path, objectid,
3194 offset, bytenr);
3195 } while (ret2 == -EAGAIN);
3196
3197 if (ret2 && ret2 != -ENOENT) {
3198 ret = ret2;
3199 goto out;
3200 }
3201
3202 if (ret != -ENOENT || ret2 != -ENOENT)
3203 ret = 0;
3204out:
Yan Zhengf321e492008-07-30 09:26:11 -04003205 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003206 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3207 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04003208 return ret;
3209}
3210
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003211static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05003212 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003213 struct extent_buffer *buf,
Josef Bacike339a6b2014-07-02 10:54:25 -07003214 int full_backref, int inc)
Zheng Yan31840ae2008-09-23 13:14:14 -04003215{
3216 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003217 u64 num_bytes;
3218 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003219 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04003220 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04003221 struct btrfs_key key;
3222 struct btrfs_file_extent_item *fi;
3223 int i;
3224 int level;
3225 int ret = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04003226 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003227 u64, u64, u64, u64, u64, u64);
Zheng Yan31840ae2008-09-23 13:14:14 -04003228
David Sterbafccb84c2014-09-29 23:53:21 +02003229
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -04003230 if (btrfs_is_testing(root->fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04003231 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02003232
Zheng Yan31840ae2008-09-23 13:14:14 -04003233 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04003234 nritems = btrfs_header_nritems(buf);
3235 level = btrfs_header_level(buf);
3236
Miao Xie27cdeb72014-04-02 19:51:05 +08003237 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003238 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05003239
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003240 if (inc)
3241 process_func = btrfs_inc_extent_ref;
3242 else
3243 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003244
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003245 if (full_backref)
3246 parent = buf->start;
3247 else
3248 parent = 0;
3249
Zheng Yan31840ae2008-09-23 13:14:14 -04003250 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04003251 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003252 btrfs_item_key_to_cpu(buf, &key, i);
David Sterba962a2982014-06-04 18:41:45 +02003253 if (key.type != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04003254 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003255 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04003256 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003257 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04003258 BTRFS_FILE_EXTENT_INLINE)
3259 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003260 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3261 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04003262 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003263
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003264 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3265 key.offset -= btrfs_file_extent_offset(buf, fi);
3266 ret = process_func(trans, root, bytenr, num_bytes,
3267 parent, ref_root, key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003268 key.offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003269 if (ret)
3270 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05003271 } else {
3272 bytenr = btrfs_node_blockptr(buf, i);
David Sterba707e8a02014-06-04 19:22:26 +02003273 num_bytes = root->nodesize;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003274 ret = process_func(trans, root, bytenr, num_bytes,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003275 parent, ref_root, level - 1, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003276 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04003277 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04003278 }
3279 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003280 return 0;
3281fail:
Chris Mason54aa1f42007-06-22 14:16:25 -04003282 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05003283}
3284
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003285int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003286 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04003287{
Josef Bacike339a6b2014-07-02 10:54:25 -07003288 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003289}
Zheng Yan31840ae2008-09-23 13:14:14 -04003290
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003291int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003292 struct extent_buffer *buf, int full_backref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003293{
Josef Bacike339a6b2014-07-02 10:54:25 -07003294 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003295}
3296
Chris Mason9078a3e2007-04-26 16:46:15 -04003297static int write_one_cache_group(struct btrfs_trans_handle *trans,
3298 struct btrfs_root *root,
3299 struct btrfs_path *path,
3300 struct btrfs_block_group_cache *cache)
3301{
3302 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003303 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003304 unsigned long bi;
3305 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04003306
Chris Mason9078a3e2007-04-26 16:46:15 -04003307 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003308 if (ret) {
3309 if (ret > 0)
3310 ret = -ENOENT;
Chris Mason54aa1f42007-06-22 14:16:25 -04003311 goto fail;
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003312 }
Chris Mason5f39d392007-10-15 16:14:19 -04003313
3314 leaf = path->nodes[0];
3315 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3316 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3317 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -04003318fail:
Filipe Manana24b89d02015-04-25 18:31:05 +01003319 btrfs_release_path(path);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003320 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003321
3322}
3323
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003324static struct btrfs_block_group_cache *
3325next_block_group(struct btrfs_root *root,
3326 struct btrfs_block_group_cache *cache)
3327{
3328 struct rb_node *node;
Filipe Manana292cbd52014-11-26 15:28:50 +00003329
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003330 spin_lock(&root->fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003331
3332 /* If our block group was removed, we need a full search. */
3333 if (RB_EMPTY_NODE(&cache->cache_node)) {
3334 const u64 next_bytenr = cache->key.objectid + cache->key.offset;
3335
3336 spin_unlock(&root->fs_info->block_group_cache_lock);
3337 btrfs_put_block_group(cache);
3338 cache = btrfs_lookup_first_block_group(root->fs_info,
3339 next_bytenr);
3340 return cache;
3341 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003342 node = rb_next(&cache->cache_node);
3343 btrfs_put_block_group(cache);
3344 if (node) {
3345 cache = rb_entry(node, struct btrfs_block_group_cache,
3346 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00003347 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003348 } else
3349 cache = NULL;
3350 spin_unlock(&root->fs_info->block_group_cache_lock);
3351 return cache;
3352}
3353
Josef Bacik0af3d002010-06-21 14:48:16 -04003354static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3355 struct btrfs_trans_handle *trans,
3356 struct btrfs_path *path)
3357{
3358 struct btrfs_root *root = block_group->fs_info->tree_root;
3359 struct inode *inode = NULL;
3360 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05003361 int dcs = BTRFS_DC_ERROR;
David Sterbaf8c269d2015-01-16 17:21:12 +01003362 u64 num_pages = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003363 int retries = 0;
3364 int ret = 0;
3365
3366 /*
3367 * If this block group is smaller than 100 megs don't bother caching the
3368 * block group.
3369 */
Byongho Leeee221842015-12-15 01:42:10 +09003370 if (block_group->key.offset < (100 * SZ_1M)) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003371 spin_lock(&block_group->lock);
3372 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3373 spin_unlock(&block_group->lock);
3374 return 0;
3375 }
3376
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003377 if (trans->aborted)
3378 return 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003379again:
3380 inode = lookup_free_space_inode(root, block_group, path);
3381 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3382 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02003383 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003384 goto out;
3385 }
3386
3387 if (IS_ERR(inode)) {
3388 BUG_ON(retries);
3389 retries++;
3390
3391 if (block_group->ro)
3392 goto out_free;
3393
3394 ret = create_free_space_inode(root, trans, block_group, path);
3395 if (ret)
3396 goto out_free;
3397 goto again;
3398 }
3399
3400 /*
3401 * We want to set the generation to 0, that way if anything goes wrong
3402 * from here on out we know not to trust this cache when we load up next
3403 * time.
3404 */
3405 BTRFS_I(inode)->generation = 0;
3406 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003407 if (ret) {
3408 /*
3409 * So theoretically we could recover from this, simply set the
3410 * super cache generation to 0 so we know to invalidate the
3411 * cache, but then we'd have to keep track of the block groups
3412 * that fail this way so we know we _have_ to reset this cache
3413 * before the next commit or risk reading stale cache. So to
3414 * limit our exposure to horrible edge cases lets just abort the
3415 * transaction, this only happens in really bad situations
3416 * anyway.
3417 */
Jeff Mahoney66642832016-06-10 18:19:25 -04003418 btrfs_abort_transaction(trans, ret);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003419 goto out_put;
3420 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003421 WARN_ON(ret);
3422
Josef Bacikc2512672017-11-17 14:50:46 -05003423 /* We've already setup this transaction, go ahead and exit */
3424 if (block_group->cache_generation == trans->transid &&
3425 i_size_read(inode)) {
3426 dcs = BTRFS_DC_SETUP;
3427 goto out_put;
3428 }
3429
Josef Bacik0af3d002010-06-21 14:48:16 -04003430 if (i_size_read(inode) > 0) {
Miao Xie7b61cd92013-05-13 13:55:09 +00003431 ret = btrfs_check_trunc_cache_free_space(root,
3432 &root->fs_info->global_block_rsv);
3433 if (ret)
3434 goto out_put;
3435
Chris Mason1bbc6212015-04-06 12:46:08 -07003436 ret = btrfs_truncate_free_space_cache(root, trans, NULL, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003437 if (ret)
3438 goto out_put;
3439 }
3440
3441 spin_lock(&block_group->lock);
Liu Bocf7c1ef2012-07-06 03:31:34 -06003442 if (block_group->cached != BTRFS_CACHE_FINISHED ||
Jeff Mahoney3cdde222016-06-09 21:38:35 -04003443 !btrfs_test_opt(root->fs_info, SPACE_CACHE)) {
Liu Bocf7c1ef2012-07-06 03:31:34 -06003444 /*
3445 * don't bother trying to write stuff out _if_
3446 * a) we're not cached,
3447 * b) we're with nospace_cache mount option.
3448 */
Josef Bacik2b209822010-12-03 13:17:53 -05003449 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04003450 spin_unlock(&block_group->lock);
3451 goto out_put;
3452 }
3453 spin_unlock(&block_group->lock);
3454
Josef Bacik6fc823b2012-08-06 13:46:38 -06003455 /*
Josef Bacik2968b1f2015-10-01 12:55:18 -04003456 * We hit an ENOSPC when setting up the cache in this transaction, just
3457 * skip doing the setup, we've already cleared the cache so we're safe.
3458 */
3459 if (test_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags)) {
3460 ret = -ENOSPC;
3461 goto out_put;
3462 }
3463
3464 /*
Josef Bacik6fc823b2012-08-06 13:46:38 -06003465 * Try to preallocate enough space based on how big the block group is.
3466 * Keep in mind this has to include any pinned space which could end up
3467 * taking up quite a bit since it's not folded into the other space
3468 * cache.
3469 */
Byongho Leeee221842015-12-15 01:42:10 +09003470 num_pages = div_u64(block_group->key.offset, SZ_256M);
Josef Bacik0af3d002010-06-21 14:48:16 -04003471 if (!num_pages)
3472 num_pages = 1;
3473
Josef Bacik0af3d002010-06-21 14:48:16 -04003474 num_pages *= 16;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003475 num_pages *= PAGE_SIZE;
Josef Bacik0af3d002010-06-21 14:48:16 -04003476
Qu Wenruo7cf5b972015-09-08 17:25:55 +08003477 ret = btrfs_check_data_free_space(inode, 0, num_pages);
Josef Bacik0af3d002010-06-21 14:48:16 -04003478 if (ret)
3479 goto out_put;
3480
3481 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3482 num_pages, num_pages,
3483 &alloc_hint);
Josef Bacik2968b1f2015-10-01 12:55:18 -04003484 /*
3485 * Our cache requires contiguous chunks so that we don't modify a bunch
3486 * of metadata or split extents when writing the cache out, which means
3487 * we can enospc if we are heavily fragmented in addition to just normal
3488 * out of space conditions. So if we hit this just skip setting up any
3489 * other block groups for this transaction, maybe we'll unpin enough
3490 * space the next time around.
3491 */
Josef Bacik2b209822010-12-03 13:17:53 -05003492 if (!ret)
3493 dcs = BTRFS_DC_SETUP;
Josef Bacik2968b1f2015-10-01 12:55:18 -04003494 else if (ret == -ENOSPC)
3495 set_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags);
Josef Bacikc09544e2011-08-30 10:19:10 -04003496
Josef Bacik0af3d002010-06-21 14:48:16 -04003497out_put:
3498 iput(inode);
3499out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02003500 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003501out:
3502 spin_lock(&block_group->lock);
Josef Bacike65cbb92011-12-13 16:04:54 -05003503 if (!ret && dcs == BTRFS_DC_SETUP)
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003504 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05003505 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04003506 spin_unlock(&block_group->lock);
3507
3508 return ret;
3509}
3510
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003511int btrfs_setup_space_cache(struct btrfs_trans_handle *trans,
3512 struct btrfs_root *root)
3513{
3514 struct btrfs_block_group_cache *cache, *tmp;
3515 struct btrfs_transaction *cur_trans = trans->transaction;
3516 struct btrfs_path *path;
3517
3518 if (list_empty(&cur_trans->dirty_bgs) ||
Jeff Mahoney3cdde222016-06-09 21:38:35 -04003519 !btrfs_test_opt(root->fs_info, SPACE_CACHE))
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003520 return 0;
3521
3522 path = btrfs_alloc_path();
3523 if (!path)
3524 return -ENOMEM;
3525
3526 /* Could add new block groups, use _safe just in case */
3527 list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs,
3528 dirty_list) {
3529 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3530 cache_save_setup(cache, trans, path);
3531 }
3532
3533 btrfs_free_path(path);
3534 return 0;
3535}
3536
Chris Mason1bbc6212015-04-06 12:46:08 -07003537/*
3538 * transaction commit does final block group cache writeback during a
3539 * critical section where nothing is allowed to change the FS. This is
3540 * required in order for the cache to actually match the block group,
3541 * but can introduce a lot of latency into the commit.
3542 *
3543 * So, btrfs_start_dirty_block_groups is here to kick off block group
3544 * cache IO. There's a chance we'll have to redo some of it if the
3545 * block group changes again during the commit, but it greatly reduces
3546 * the commit latency by getting rid of the easy block groups while
3547 * we're still allowing others to join the commit.
3548 */
3549int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans,
3550 struct btrfs_root *root)
3551{
3552 struct btrfs_block_group_cache *cache;
3553 struct btrfs_transaction *cur_trans = trans->transaction;
3554 int ret = 0;
3555 int should_put;
3556 struct btrfs_path *path = NULL;
3557 LIST_HEAD(dirty);
3558 struct list_head *io = &cur_trans->io_bgs;
3559 int num_started = 0;
3560 int loops = 0;
3561
3562 spin_lock(&cur_trans->dirty_bgs_lock);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003563 if (list_empty(&cur_trans->dirty_bgs)) {
3564 spin_unlock(&cur_trans->dirty_bgs_lock);
3565 return 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003566 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003567 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Chris Mason1bbc6212015-04-06 12:46:08 -07003568 spin_unlock(&cur_trans->dirty_bgs_lock);
3569
3570again:
Chris Mason1bbc6212015-04-06 12:46:08 -07003571 /*
3572 * make sure all the block groups on our dirty list actually
3573 * exist
3574 */
3575 btrfs_create_pending_block_groups(trans, root);
3576
3577 if (!path) {
3578 path = btrfs_alloc_path();
3579 if (!path)
3580 return -ENOMEM;
3581 }
3582
Filipe Mananab58d1a92015-04-25 18:29:16 +01003583 /*
3584 * cache_write_mutex is here only to save us from balance or automatic
3585 * removal of empty block groups deleting this block group while we are
3586 * writing out the cache
3587 */
3588 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003589 while (!list_empty(&dirty)) {
3590 cache = list_first_entry(&dirty,
3591 struct btrfs_block_group_cache,
3592 dirty_list);
Chris Mason1bbc6212015-04-06 12:46:08 -07003593 /*
3594 * this can happen if something re-dirties a block
3595 * group that is already under IO. Just wait for it to
3596 * finish and then do it all again
3597 */
3598 if (!list_empty(&cache->io_list)) {
3599 list_del_init(&cache->io_list);
3600 btrfs_wait_cache_io(root, trans, cache,
3601 &cache->io_ctl, path,
3602 cache->key.objectid);
3603 btrfs_put_block_group(cache);
3604 }
3605
3606
3607 /*
3608 * btrfs_wait_cache_io uses the cache->dirty_list to decide
3609 * if it should update the cache_state. Don't delete
3610 * until after we wait.
3611 *
3612 * Since we're not running in the commit critical section
3613 * we need the dirty_bgs_lock to protect from update_block_group
3614 */
3615 spin_lock(&cur_trans->dirty_bgs_lock);
3616 list_del_init(&cache->dirty_list);
3617 spin_unlock(&cur_trans->dirty_bgs_lock);
3618
3619 should_put = 1;
3620
3621 cache_save_setup(cache, trans, path);
3622
3623 if (cache->disk_cache_state == BTRFS_DC_SETUP) {
3624 cache->io_ctl.inode = NULL;
3625 ret = btrfs_write_out_cache(root, trans, cache, path);
3626 if (ret == 0 && cache->io_ctl.inode) {
3627 num_started++;
3628 should_put = 0;
3629
3630 /*
3631 * the cache_write_mutex is protecting
3632 * the io_list
3633 */
3634 list_add_tail(&cache->io_list, io);
3635 } else {
3636 /*
3637 * if we failed to write the cache, the
3638 * generation will be bad and life goes on
3639 */
3640 ret = 0;
3641 }
3642 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003643 if (!ret) {
Chris Mason1bbc6212015-04-06 12:46:08 -07003644 ret = write_one_cache_group(trans, root, path, cache);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003645 /*
3646 * Our block group might still be attached to the list
3647 * of new block groups in the transaction handle of some
3648 * other task (struct btrfs_trans_handle->new_bgs). This
3649 * means its block group item isn't yet in the extent
3650 * tree. If this happens ignore the error, as we will
3651 * try again later in the critical section of the
3652 * transaction commit.
3653 */
3654 if (ret == -ENOENT) {
3655 ret = 0;
3656 spin_lock(&cur_trans->dirty_bgs_lock);
3657 if (list_empty(&cache->dirty_list)) {
3658 list_add_tail(&cache->dirty_list,
3659 &cur_trans->dirty_bgs);
3660 btrfs_get_block_group(cache);
3661 }
3662 spin_unlock(&cur_trans->dirty_bgs_lock);
3663 } else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003664 btrfs_abort_transaction(trans, ret);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003665 }
3666 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003667
3668 /* if its not on the io list, we need to put the block group */
3669 if (should_put)
3670 btrfs_put_block_group(cache);
3671
3672 if (ret)
3673 break;
Filipe Mananab58d1a92015-04-25 18:29:16 +01003674
3675 /*
3676 * Avoid blocking other tasks for too long. It might even save
3677 * us from writing caches for block groups that are going to be
3678 * removed.
3679 */
3680 mutex_unlock(&trans->transaction->cache_write_mutex);
3681 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003682 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003683 mutex_unlock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003684
3685 /*
3686 * go through delayed refs for all the stuff we've just kicked off
3687 * and then loop back (just once)
3688 */
3689 ret = btrfs_run_delayed_refs(trans, root, 0);
3690 if (!ret && loops == 0) {
3691 loops++;
3692 spin_lock(&cur_trans->dirty_bgs_lock);
3693 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003694 /*
3695 * dirty_bgs_lock protects us from concurrent block group
3696 * deletes too (not just cache_write_mutex).
3697 */
3698 if (!list_empty(&dirty)) {
3699 spin_unlock(&cur_trans->dirty_bgs_lock);
3700 goto again;
3701 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003702 spin_unlock(&cur_trans->dirty_bgs_lock);
Liu Boc79a1752016-07-20 17:44:12 -07003703 } else if (ret < 0) {
3704 btrfs_cleanup_dirty_bgs(cur_trans, root);
Chris Mason1bbc6212015-04-06 12:46:08 -07003705 }
3706
3707 btrfs_free_path(path);
3708 return ret;
3709}
3710
Chris Mason96b51792007-10-15 16:15:19 -04003711int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
3712 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04003713{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003714 struct btrfs_block_group_cache *cache;
Josef Bacikce93ec52014-11-17 15:45:48 -05003715 struct btrfs_transaction *cur_trans = trans->transaction;
3716 int ret = 0;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003717 int should_put;
Chris Mason9078a3e2007-04-26 16:46:15 -04003718 struct btrfs_path *path;
Chris Mason1bbc6212015-04-06 12:46:08 -07003719 struct list_head *io = &cur_trans->io_bgs;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003720 int num_started = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003721
3722 path = btrfs_alloc_path();
3723 if (!path)
3724 return -ENOMEM;
3725
Josef Bacikce93ec52014-11-17 15:45:48 -05003726 /*
Filipe Mananae44081e2015-12-18 03:02:48 +00003727 * Even though we are in the critical section of the transaction commit,
3728 * we can still have concurrent tasks adding elements to this
3729 * transaction's list of dirty block groups. These tasks correspond to
3730 * endio free space workers started when writeback finishes for a
3731 * space cache, which run inode.c:btrfs_finish_ordered_io(), and can
3732 * allocate new block groups as a result of COWing nodes of the root
3733 * tree when updating the free space inode. The writeback for the space
3734 * caches is triggered by an earlier call to
3735 * btrfs_start_dirty_block_groups() and iterations of the following
3736 * loop.
3737 * Also we want to do the cache_save_setup first and then run the
Josef Bacikce93ec52014-11-17 15:45:48 -05003738 * delayed refs to make sure we have the best chance at doing this all
3739 * in one shot.
3740 */
Filipe Mananae44081e2015-12-18 03:02:48 +00003741 spin_lock(&cur_trans->dirty_bgs_lock);
Josef Bacikce93ec52014-11-17 15:45:48 -05003742 while (!list_empty(&cur_trans->dirty_bgs)) {
3743 cache = list_first_entry(&cur_trans->dirty_bgs,
3744 struct btrfs_block_group_cache,
3745 dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003746
3747 /*
3748 * this can happen if cache_save_setup re-dirties a block
3749 * group that is already under IO. Just wait for it to
3750 * finish and then do it all again
3751 */
3752 if (!list_empty(&cache->io_list)) {
Filipe Mananae44081e2015-12-18 03:02:48 +00003753 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003754 list_del_init(&cache->io_list);
3755 btrfs_wait_cache_io(root, trans, cache,
3756 &cache->io_ctl, path,
3757 cache->key.objectid);
3758 btrfs_put_block_group(cache);
Filipe Mananae44081e2015-12-18 03:02:48 +00003759 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003760 }
3761
Chris Mason1bbc6212015-04-06 12:46:08 -07003762 /*
3763 * don't remove from the dirty list until after we've waited
3764 * on any pending IO
3765 */
Josef Bacikce93ec52014-11-17 15:45:48 -05003766 list_del_init(&cache->dirty_list);
Filipe Mananae44081e2015-12-18 03:02:48 +00003767 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003768 should_put = 1;
3769
Chris Mason1bbc6212015-04-06 12:46:08 -07003770 cache_save_setup(cache, trans, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003771
Josef Bacikce93ec52014-11-17 15:45:48 -05003772 if (!ret)
Chris Masonc9dc4c62015-04-04 17:14:42 -07003773 ret = btrfs_run_delayed_refs(trans, root, (unsigned long) -1);
3774
3775 if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) {
3776 cache->io_ctl.inode = NULL;
3777 ret = btrfs_write_out_cache(root, trans, cache, path);
3778 if (ret == 0 && cache->io_ctl.inode) {
3779 num_started++;
3780 should_put = 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003781 list_add_tail(&cache->io_list, io);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003782 } else {
3783 /*
3784 * if we failed to write the cache, the
3785 * generation will be bad and life goes on
3786 */
3787 ret = 0;
3788 }
3789 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003790 if (!ret) {
Josef Bacikce93ec52014-11-17 15:45:48 -05003791 ret = write_one_cache_group(trans, root, path, cache);
Filipe Manana2bc0bb52015-12-30 02:42:30 +00003792 /*
3793 * One of the free space endio workers might have
3794 * created a new block group while updating a free space
3795 * cache's inode (at inode.c:btrfs_finish_ordered_io())
3796 * and hasn't released its transaction handle yet, in
3797 * which case the new block group is still attached to
3798 * its transaction handle and its creation has not
3799 * finished yet (no block group item in the extent tree
3800 * yet, etc). If this is the case, wait for all free
3801 * space endio workers to finish and retry. This is a
3802 * a very rare case so no need for a more efficient and
3803 * complex approach.
3804 */
3805 if (ret == -ENOENT) {
3806 wait_event(cur_trans->writer_wait,
3807 atomic_read(&cur_trans->num_writers) == 1);
3808 ret = write_one_cache_group(trans, root, path,
3809 cache);
3810 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003811 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003812 btrfs_abort_transaction(trans, ret);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003813 }
Chris Masonc9dc4c62015-04-04 17:14:42 -07003814
3815 /* if its not on the io list, we need to put the block group */
3816 if (should_put)
3817 btrfs_put_block_group(cache);
Filipe Mananae44081e2015-12-18 03:02:48 +00003818 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003819 }
Filipe Mananae44081e2015-12-18 03:02:48 +00003820 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003821
Chris Mason1bbc6212015-04-06 12:46:08 -07003822 while (!list_empty(io)) {
3823 cache = list_first_entry(io, struct btrfs_block_group_cache,
Chris Masonc9dc4c62015-04-04 17:14:42 -07003824 io_list);
3825 list_del_init(&cache->io_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003826 btrfs_wait_cache_io(root, trans, cache,
3827 &cache->io_ctl, path, cache->key.objectid);
Josef Bacik0af3d002010-06-21 14:48:16 -04003828 btrfs_put_block_group(cache);
3829 }
3830
Chris Mason9078a3e2007-04-26 16:46:15 -04003831 btrfs_free_path(path);
Josef Bacikce93ec52014-11-17 15:45:48 -05003832 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003833}
3834
Yan Zhengd2fb3432008-12-11 16:30:39 -05003835int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
3836{
3837 struct btrfs_block_group_cache *block_group;
3838 int readonly = 0;
3839
3840 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
3841 if (!block_group || block_group->ro)
3842 readonly = 1;
3843 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04003844 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003845 return readonly;
3846}
3847
Filipe Mananaf78c4362016-05-09 13:15:41 +01003848bool btrfs_inc_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3849{
3850 struct btrfs_block_group_cache *bg;
3851 bool ret = true;
3852
3853 bg = btrfs_lookup_block_group(fs_info, bytenr);
3854 if (!bg)
3855 return false;
3856
3857 spin_lock(&bg->lock);
3858 if (bg->ro)
3859 ret = false;
3860 else
3861 atomic_inc(&bg->nocow_writers);
3862 spin_unlock(&bg->lock);
3863
3864 /* no put on block group, done by btrfs_dec_nocow_writers */
3865 if (!ret)
3866 btrfs_put_block_group(bg);
3867
3868 return ret;
3869
3870}
3871
3872void btrfs_dec_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3873{
3874 struct btrfs_block_group_cache *bg;
3875
3876 bg = btrfs_lookup_block_group(fs_info, bytenr);
3877 ASSERT(bg);
3878 if (atomic_dec_and_test(&bg->nocow_writers))
3879 wake_up_atomic_t(&bg->nocow_writers);
3880 /*
3881 * Once for our lookup and once for the lookup done by a previous call
3882 * to btrfs_inc_nocow_writers()
3883 */
3884 btrfs_put_block_group(bg);
3885 btrfs_put_block_group(bg);
3886}
3887
3888static int btrfs_wait_nocow_writers_atomic_t(atomic_t *a)
3889{
3890 schedule();
3891 return 0;
3892}
3893
3894void btrfs_wait_nocow_writers(struct btrfs_block_group_cache *bg)
3895{
3896 wait_on_atomic_t(&bg->nocow_writers,
3897 btrfs_wait_nocow_writers_atomic_t,
3898 TASK_UNINTERRUPTIBLE);
3899}
3900
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003901static const char *alloc_name(u64 flags)
3902{
3903 switch (flags) {
3904 case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA:
3905 return "mixed";
3906 case BTRFS_BLOCK_GROUP_METADATA:
3907 return "metadata";
3908 case BTRFS_BLOCK_GROUP_DATA:
3909 return "data";
3910 case BTRFS_BLOCK_GROUP_SYSTEM:
3911 return "system";
3912 default:
3913 WARN_ON(1);
3914 return "invalid-combination";
3915 };
3916}
3917
Chris Mason593060d2008-03-25 16:50:33 -04003918static int update_space_info(struct btrfs_fs_info *info, u64 flags,
3919 u64 total_bytes, u64 bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -04003920 u64 bytes_readonly,
Chris Mason593060d2008-03-25 16:50:33 -04003921 struct btrfs_space_info **space_info)
3922{
3923 struct btrfs_space_info *found;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003924 int i;
3925 int factor;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003926 int ret;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003927
3928 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
3929 BTRFS_BLOCK_GROUP_RAID10))
3930 factor = 2;
3931 else
3932 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04003933
3934 found = __find_space_info(info, flags);
3935 if (found) {
Josef Bacik25179202008-10-29 14:49:05 -04003936 spin_lock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003937 found->total_bytes += total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003938 found->disk_total += total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003939 found->bytes_used += bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003940 found->disk_used += bytes_used * factor;
Josef Bacike40edf22016-03-25 13:25:47 -04003941 found->bytes_readonly += bytes_readonly;
Filipe Manana2e6e5182015-05-12 00:28:11 +01003942 if (total_bytes > 0)
3943 found->full = 0;
Josef Bacik957780e2016-05-17 13:30:55 -04003944 space_info_add_new_bytes(info, found, total_bytes -
3945 bytes_used - bytes_readonly);
Josef Bacik25179202008-10-29 14:49:05 -04003946 spin_unlock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003947 *space_info = found;
3948 return 0;
3949 }
Yan Zhengc146afa2008-11-12 14:34:12 -05003950 found = kzalloc(sizeof(*found), GFP_NOFS);
Chris Mason593060d2008-03-25 16:50:33 -04003951 if (!found)
3952 return -ENOMEM;
3953
Tejun Heo908c7f12014-09-08 09:51:29 +09003954 ret = percpu_counter_init(&found->total_bytes_pinned, 0, GFP_KERNEL);
Josef Bacikb150a4f2013-06-19 15:00:04 -04003955 if (ret) {
3956 kfree(found);
3957 return ret;
3958 }
3959
Jeff Mahoneyc1895442014-05-27 12:59:57 -04003960 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
Yan, Zhengb742bb82010-05-16 10:46:24 -04003961 INIT_LIST_HEAD(&found->block_groups[i]);
Josef Bacik80eb2342008-10-29 14:49:05 -04003962 init_rwsem(&found->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003963 spin_lock_init(&found->lock);
Ilya Dryomov52ba6922012-01-16 22:04:47 +02003964 found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
Chris Mason593060d2008-03-25 16:50:33 -04003965 found->total_bytes = total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003966 found->disk_total = total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003967 found->bytes_used = bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003968 found->disk_used = bytes_used * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003969 found->bytes_pinned = 0;
Zheng Yane8569812008-09-26 10:05:48 -04003970 found->bytes_reserved = 0;
Josef Bacike40edf22016-03-25 13:25:47 -04003971 found->bytes_readonly = bytes_readonly;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003972 found->bytes_may_use = 0;
Filipe Manana6af3e3a2015-09-07 10:41:12 +01003973 found->full = 0;
Josef Bacik4f4db212015-09-29 11:40:47 -04003974 found->max_extent_size = 0;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003975 found->force_alloc = CHUNK_ALLOC_NO_FORCE;
Josef Bacik6d741192011-04-11 20:20:11 -04003976 found->chunk_alloc = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003977 found->flush = 0;
3978 init_waitqueue_head(&found->wait);
Josef Bacik633c0aa2014-10-31 09:49:34 -04003979 INIT_LIST_HEAD(&found->ro_bgs);
Josef Bacik957780e2016-05-17 13:30:55 -04003980 INIT_LIST_HEAD(&found->tickets);
3981 INIT_LIST_HEAD(&found->priority_tickets);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003982
3983 ret = kobject_init_and_add(&found->kobj, &space_info_ktype,
3984 info->space_info_kobj, "%s",
3985 alloc_name(found->flags));
3986 if (ret) {
Jeff Mahoney66d64482017-05-17 09:49:37 -04003987 percpu_counter_destroy(&found->total_bytes_pinned);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003988 kfree(found);
3989 return ret;
3990 }
3991
Chris Mason593060d2008-03-25 16:50:33 -04003992 *space_info = found;
Chris Mason4184ea72009-03-10 12:39:20 -04003993 list_add_rcu(&found->list, &info->space_info);
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003994 if (flags & BTRFS_BLOCK_GROUP_DATA)
3995 info->data_sinfo = found;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003996
3997 return ret;
Chris Mason593060d2008-03-25 16:50:33 -04003998}
3999
Chris Mason8790d502008-04-03 16:29:03 -04004000static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
4001{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03004002 u64 extra_flags = chunk_to_extended(flags) &
4003 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004004
Miao Xiede98ced2013-01-29 10:13:12 +00004005 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004006 if (flags & BTRFS_BLOCK_GROUP_DATA)
4007 fs_info->avail_data_alloc_bits |= extra_flags;
4008 if (flags & BTRFS_BLOCK_GROUP_METADATA)
4009 fs_info->avail_metadata_alloc_bits |= extra_flags;
4010 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
4011 fs_info->avail_system_alloc_bits |= extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004012 write_sequnlock(&fs_info->profiles_lock);
Chris Mason8790d502008-04-03 16:29:03 -04004013}
Chris Mason593060d2008-03-25 16:50:33 -04004014
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004015/*
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004016 * returns target flags in extended format or 0 if restripe for this
4017 * chunk_type is not in progress
Ilya Dryomovc6664b42012-04-12 16:03:56 -04004018 *
4019 * should be called with either volume_mutex or balance_lock held
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004020 */
4021static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
4022{
4023 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4024 u64 target = 0;
4025
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004026 if (!bctl)
4027 return 0;
4028
4029 if (flags & BTRFS_BLOCK_GROUP_DATA &&
4030 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4031 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
4032 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
4033 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4034 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
4035 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
4036 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4037 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
4038 }
4039
4040 return target;
4041}
4042
4043/*
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004044 * @flags: available profiles in extended format (see ctree.h)
4045 *
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004046 * Returns reduced profile in chunk format. If profile changing is in
4047 * progress (either running or paused) picks the target profile (if it's
4048 * already available), otherwise falls back to plain reducing.
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004049 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00004050static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04004051{
Miao Xie95669972014-07-24 11:37:14 +08004052 u64 num_devices = root->fs_info->fs_devices->rw_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004053 u64 target;
Zhao Lei9c170b22015-09-15 21:08:08 +08004054 u64 raid_type;
4055 u64 allowed = 0;
Chris Masona061fc82008-05-07 11:43:44 -04004056
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004057 /*
4058 * see if restripe for this chunk_type is in progress, if so
4059 * try to reduce to the target profile
4060 */
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004061 spin_lock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004062 target = get_restripe_target(root->fs_info, flags);
4063 if (target) {
4064 /* pick target profile only if it's already available */
4065 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004066 spin_unlock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004067 return extended_to_chunk(target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004068 }
4069 }
4070 spin_unlock(&root->fs_info->balance_lock);
4071
David Woodhouse53b381b2013-01-29 18:40:14 -05004072 /* First, mask out the RAID levels which aren't possible */
Zhao Lei9c170b22015-09-15 21:08:08 +08004073 for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) {
4074 if (num_devices >= btrfs_raid_array[raid_type].devs_min)
4075 allowed |= btrfs_raid_group[raid_type];
4076 }
4077 allowed &= flags;
Chris Masona061fc82008-05-07 11:43:44 -04004078
Zhao Lei9c170b22015-09-15 21:08:08 +08004079 if (allowed & BTRFS_BLOCK_GROUP_RAID6)
4080 allowed = BTRFS_BLOCK_GROUP_RAID6;
4081 else if (allowed & BTRFS_BLOCK_GROUP_RAID5)
4082 allowed = BTRFS_BLOCK_GROUP_RAID5;
4083 else if (allowed & BTRFS_BLOCK_GROUP_RAID10)
4084 allowed = BTRFS_BLOCK_GROUP_RAID10;
4085 else if (allowed & BTRFS_BLOCK_GROUP_RAID1)
4086 allowed = BTRFS_BLOCK_GROUP_RAID1;
4087 else if (allowed & BTRFS_BLOCK_GROUP_RAID0)
4088 allowed = BTRFS_BLOCK_GROUP_RAID0;
Chris Masonec44a352008-04-28 15:29:52 -04004089
Zhao Lei9c170b22015-09-15 21:08:08 +08004090 flags &= ~BTRFS_BLOCK_GROUP_PROFILE_MASK;
Chris Masonec44a352008-04-28 15:29:52 -04004091
Zhao Lei9c170b22015-09-15 21:08:08 +08004092 return extended_to_chunk(flags | allowed);
Chris Masonec44a352008-04-28 15:29:52 -04004093}
4094
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004095static u64 get_alloc_profile(struct btrfs_root *root, u64 orig_flags)
Josef Bacik6a632092009-02-20 11:00:09 -05004096{
Miao Xiede98ced2013-01-29 10:13:12 +00004097 unsigned seq;
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004098 u64 flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004099
4100 do {
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004101 flags = orig_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004102 seq = read_seqbegin(&root->fs_info->profiles_lock);
4103
4104 if (flags & BTRFS_BLOCK_GROUP_DATA)
4105 flags |= root->fs_info->avail_data_alloc_bits;
4106 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
4107 flags |= root->fs_info->avail_system_alloc_bits;
4108 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
4109 flags |= root->fs_info->avail_metadata_alloc_bits;
4110 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02004111
Yan, Zhengb742bb82010-05-16 10:46:24 -04004112 return btrfs_reduce_alloc_profile(root, flags);
4113}
Josef Bacik6a632092009-02-20 11:00:09 -05004114
Miao Xie6d07bce2011-01-05 10:07:31 +00004115u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
Yan, Zhengb742bb82010-05-16 10:46:24 -04004116{
4117 u64 flags;
David Woodhouse53b381b2013-01-29 18:40:14 -05004118 u64 ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004119
Yan, Zhengb742bb82010-05-16 10:46:24 -04004120 if (data)
4121 flags = BTRFS_BLOCK_GROUP_DATA;
4122 else if (root == root->fs_info->chunk_root)
4123 flags = BTRFS_BLOCK_GROUP_SYSTEM;
4124 else
4125 flags = BTRFS_BLOCK_GROUP_METADATA;
4126
David Woodhouse53b381b2013-01-29 18:40:14 -05004127 ret = get_alloc_profile(root, flags);
4128 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004129}
4130
Qu Wenruo4ceff072015-09-08 17:22:42 +08004131int btrfs_alloc_data_chunk_ondemand(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05004132{
4133 struct btrfs_space_info *data_sinfo;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004134 struct btrfs_root *root = BTRFS_I(inode)->root;
Li Zefanb4d7c3c2012-07-09 20:21:07 -06004135 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacikab6e24102010-03-19 14:38:13 +00004136 u64 used;
Zhao Lei94b947b2015-02-14 13:23:45 +08004137 int ret = 0;
Zhao Leic99f1b02015-03-02 19:32:20 +08004138 int need_commit = 2;
4139 int have_pinned_space;
Josef Bacik6a632092009-02-20 11:00:09 -05004140
4141 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00004142 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05004143
Miao Xie9dced182013-10-25 17:33:36 +08004144 if (btrfs_is_free_space_inode(inode)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004145 need_commit = 0;
Miao Xie9dced182013-10-25 17:33:36 +08004146 ASSERT(current->journal_info);
Josef Bacik0af3d002010-06-21 14:48:16 -04004147 }
4148
Li Zefanb4d7c3c2012-07-09 20:21:07 -06004149 data_sinfo = fs_info->data_sinfo;
Chris Mason33b4d472009-09-22 14:45:50 -04004150 if (!data_sinfo)
4151 goto alloc;
4152
Josef Bacik6a632092009-02-20 11:00:09 -05004153again:
4154 /* make sure we have enough space to handle the data first */
4155 spin_lock(&data_sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004156 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
4157 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
4158 data_sinfo->bytes_may_use;
Josef Bacikab6e24102010-03-19 14:38:13 +00004159
4160 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004161 struct btrfs_trans_handle *trans;
4162
Josef Bacik6a632092009-02-20 11:00:09 -05004163 /*
4164 * if we don't have enough free bytes in this space then we need
4165 * to alloc a new chunk.
4166 */
Zhao Leib9fd47c2015-02-09 14:40:20 +08004167 if (!data_sinfo->full) {
Josef Bacik6a632092009-02-20 11:00:09 -05004168 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05004169
Chris Mason0e4f8f82011-04-15 16:05:44 -04004170 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05004171 spin_unlock(&data_sinfo->lock);
Chris Mason33b4d472009-09-22 14:45:50 -04004172alloc:
Josef Bacik6a632092009-02-20 11:00:09 -05004173 alloc_target = btrfs_get_alloc_profile(root, 1);
Miao Xie9dced182013-10-25 17:33:36 +08004174 /*
4175 * It is ugly that we don't call nolock join
4176 * transaction for the free space inode case here.
4177 * But it is safe because we only do the data space
4178 * reservation for the free space cache in the
4179 * transaction context, the common join transaction
4180 * just increase the counter of the current transaction
4181 * handler, doesn't try to acquire the trans_lock of
4182 * the fs.
4183 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004184 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004185 if (IS_ERR(trans))
4186 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05004187
4188 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0e4f8f82011-04-15 16:05:44 -04004189 alloc_target,
4190 CHUNK_ALLOC_NO_FORCE);
Josef Bacik6a632092009-02-20 11:00:09 -05004191 btrfs_end_transaction(trans, root);
Miao Xied52a5b52011-01-05 10:07:18 +00004192 if (ret < 0) {
4193 if (ret != -ENOSPC)
4194 return ret;
Zhao Leic99f1b02015-03-02 19:32:20 +08004195 else {
4196 have_pinned_space = 1;
Miao Xied52a5b52011-01-05 10:07:18 +00004197 goto commit_trans;
Zhao Leic99f1b02015-03-02 19:32:20 +08004198 }
Miao Xied52a5b52011-01-05 10:07:18 +00004199 }
Chris Mason33b4d472009-09-22 14:45:50 -04004200
Li Zefanb4d7c3c2012-07-09 20:21:07 -06004201 if (!data_sinfo)
4202 data_sinfo = fs_info->data_sinfo;
4203
Josef Bacik6a632092009-02-20 11:00:09 -05004204 goto again;
4205 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004206
4207 /*
Josef Bacikb150a4f2013-06-19 15:00:04 -04004208 * If we don't have enough pinned space to deal with this
Zhao Lei94b947b2015-02-14 13:23:45 +08004209 * allocation, and no removed chunk in current transaction,
4210 * don't bother committing the transaction.
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004211 */
Zhao Leic99f1b02015-03-02 19:32:20 +08004212 have_pinned_space = percpu_counter_compare(
4213 &data_sinfo->total_bytes_pinned,
4214 used + bytes - data_sinfo->total_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05004215 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004216
4217 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00004218commit_trans:
Zhao Leic99f1b02015-03-02 19:32:20 +08004219 if (need_commit &&
Josef Bacika4abeea2011-04-11 17:25:13 -04004220 !atomic_read(&root->fs_info->open_ioctl_trans)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004221 need_commit--;
Josef Bacikb150a4f2013-06-19 15:00:04 -04004222
Zhao Leie1746e82015-12-01 18:39:40 +08004223 if (need_commit > 0) {
4224 btrfs_start_delalloc_roots(fs_info, 0, -1);
Filipe Manana578def72016-04-26 15:36:38 +01004225 btrfs_wait_ordered_roots(fs_info, -1, 0, (u64)-1);
Zhao Leie1746e82015-12-01 18:39:40 +08004226 }
Zhao Lei9a4e7272015-04-09 12:34:43 +08004227
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004228 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004229 if (IS_ERR(trans))
4230 return PTR_ERR(trans);
Zhao Leic99f1b02015-03-02 19:32:20 +08004231 if (have_pinned_space >= 0 ||
Josef Bacik3204d332015-09-24 10:46:10 -04004232 test_bit(BTRFS_TRANS_HAVE_FREE_BGS,
4233 &trans->transaction->flags) ||
Zhao Leic99f1b02015-03-02 19:32:20 +08004234 need_commit > 0) {
Zhao Lei94b947b2015-02-14 13:23:45 +08004235 ret = btrfs_commit_transaction(trans, root);
4236 if (ret)
4237 return ret;
Zhao Leid7c15172015-02-26 10:49:20 +08004238 /*
Filipe Mananac2d6cb12016-01-15 11:05:12 +00004239 * The cleaner kthread might still be doing iput
4240 * operations. Wait for it to finish so that
4241 * more space is released.
Zhao Leid7c15172015-02-26 10:49:20 +08004242 */
Filipe Mananac2d6cb12016-01-15 11:05:12 +00004243 mutex_lock(&root->fs_info->cleaner_delayed_iput_mutex);
4244 mutex_unlock(&root->fs_info->cleaner_delayed_iput_mutex);
Zhao Lei94b947b2015-02-14 13:23:45 +08004245 goto again;
4246 } else {
4247 btrfs_end_transaction(trans, root);
4248 }
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004249 }
4250
Jeff Mahoneycab45e22013-10-16 16:27:01 -04004251 trace_btrfs_space_reservation(root->fs_info,
4252 "space_info:enospc",
4253 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004254 return -ENOSPC;
4255 }
4256 data_sinfo->bytes_may_use += bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004257 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004258 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004259 spin_unlock(&data_sinfo->lock);
4260
Dongsheng Yang237c0e92014-12-29 06:23:05 -05004261 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004262}
4263
4264/*
Qu Wenruo4ceff072015-09-08 17:22:42 +08004265 * New check_data_free_space() with ability for precious data reservation
4266 * Will replace old btrfs_check_data_free_space(), but for patch split,
4267 * add a new function first and then replace it.
4268 */
Qu Wenruo7cf5b972015-09-08 17:25:55 +08004269int btrfs_check_data_free_space(struct inode *inode, u64 start, u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004270{
4271 struct btrfs_root *root = BTRFS_I(inode)->root;
4272 int ret;
4273
4274 /* align the range */
4275 len = round_up(start + len, root->sectorsize) -
4276 round_down(start, root->sectorsize);
4277 start = round_down(start, root->sectorsize);
4278
4279 ret = btrfs_alloc_data_chunk_ondemand(inode, len);
4280 if (ret < 0)
4281 return ret;
4282
Josef Bacik1e5ec2e2016-09-15 14:57:48 -04004283 /* Use new btrfs_qgroup_reserve_data to reserve precious data space. */
Qu Wenruo4ceff072015-09-08 17:22:42 +08004284 ret = btrfs_qgroup_reserve_data(inode, start, len);
Josef Bacik1e5ec2e2016-09-15 14:57:48 -04004285 if (ret)
4286 btrfs_free_reserved_data_space_noquota(inode, start, len);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004287 return ret;
4288}
4289
4290/*
Qu Wenruo4ceff072015-09-08 17:22:42 +08004291 * Called if we need to clear a data reservation for this inode
4292 * Normally in a error case.
4293 *
Qu Wenruo51773be2015-10-08 18:19:37 +08004294 * This one will *NOT* use accurate qgroup reserved space API, just for case
4295 * which we can't sleep and is sure it won't affect qgroup reserved space.
4296 * Like clear_bit_hook().
Qu Wenruo4ceff072015-09-08 17:22:42 +08004297 */
Qu Wenruo51773be2015-10-08 18:19:37 +08004298void btrfs_free_reserved_data_space_noquota(struct inode *inode, u64 start,
4299 u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004300{
4301 struct btrfs_root *root = BTRFS_I(inode)->root;
4302 struct btrfs_space_info *data_sinfo;
4303
4304 /* Make sure the range is aligned to sectorsize */
4305 len = round_up(start + len, root->sectorsize) -
4306 round_down(start, root->sectorsize);
4307 start = round_down(start, root->sectorsize);
4308
Qu Wenruo4ceff072015-09-08 17:22:42 +08004309 data_sinfo = root->fs_info->data_sinfo;
4310 spin_lock(&data_sinfo->lock);
4311 if (WARN_ON(data_sinfo->bytes_may_use < len))
4312 data_sinfo->bytes_may_use = 0;
4313 else
4314 data_sinfo->bytes_may_use -= len;
4315 trace_btrfs_space_reservation(root->fs_info, "space_info",
4316 data_sinfo->flags, len, 0);
4317 spin_unlock(&data_sinfo->lock);
4318}
4319
Qu Wenruo51773be2015-10-08 18:19:37 +08004320/*
4321 * Called if we need to clear a data reservation for this inode
4322 * Normally in a error case.
4323 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04004324 * This one will handle the per-inode data rsv map for accurate reserved
Qu Wenruo51773be2015-10-08 18:19:37 +08004325 * space framework.
4326 */
4327void btrfs_free_reserved_data_space(struct inode *inode, u64 start, u64 len)
4328{
4329 btrfs_free_reserved_data_space_noquota(inode, start, len);
4330 btrfs_qgroup_free_data(inode, start, len);
4331}
4332
Josef Bacik97e728d2009-04-21 17:40:57 -04004333static void force_metadata_allocation(struct btrfs_fs_info *info)
4334{
4335 struct list_head *head = &info->space_info;
4336 struct btrfs_space_info *found;
4337
4338 rcu_read_lock();
4339 list_for_each_entry_rcu(found, head, list) {
4340 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004341 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04004342 }
4343 rcu_read_unlock();
4344}
4345
Miao Xie3c76cd82013-04-25 10:12:38 +00004346static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
4347{
4348 return (global->size << 1);
4349}
4350
Chris Masone5bc2452010-10-26 13:37:56 -04004351static int should_alloc_chunk(struct btrfs_root *root,
Josef Bacik698d0082012-09-12 14:08:47 -04004352 struct btrfs_space_info *sinfo, int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04004353{
Josef Bacikfb25e912011-07-26 17:00:46 -04004354 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zheng424499d2010-05-16 10:46:25 -04004355 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
Chris Mason0e4f8f82011-04-15 16:05:44 -04004356 u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved;
Chris Masone5bc2452010-10-26 13:37:56 -04004357 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04004358
Chris Mason0e4f8f82011-04-15 16:05:44 -04004359 if (force == CHUNK_ALLOC_FORCE)
4360 return 1;
4361
4362 /*
Josef Bacikfb25e912011-07-26 17:00:46 -04004363 * We need to take into account the global rsv because for all intents
4364 * and purposes it's used space. Don't worry about locking the
4365 * global_rsv, it doesn't change except when the transaction commits.
4366 */
Josef Bacik54338b52012-08-14 16:20:52 -04004367 if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA)
Miao Xie3c76cd82013-04-25 10:12:38 +00004368 num_allocated += calc_global_rsv_need_space(global_rsv);
Josef Bacikfb25e912011-07-26 17:00:46 -04004369
4370 /*
Chris Mason0e4f8f82011-04-15 16:05:44 -04004371 * in limited mode, we want to have some free space up to
4372 * about 1% of the FS size.
4373 */
4374 if (force == CHUNK_ALLOC_LIMITED) {
David Sterba6c417612011-04-13 15:41:04 +02004375 thresh = btrfs_super_total_bytes(root->fs_info->super_copy);
Byongho Leeee221842015-12-15 01:42:10 +09004376 thresh = max_t(u64, SZ_64M, div_factor_fine(thresh, 1));
Chris Mason0e4f8f82011-04-15 16:05:44 -04004377
4378 if (num_bytes - num_allocated < thresh)
4379 return 1;
4380 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004381
Byongho Leeee221842015-12-15 01:42:10 +09004382 if (num_allocated + SZ_2M < div_factor(num_bytes, 8))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04004383 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04004384 return 1;
4385}
4386
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004387static u64 get_profile_num_devs(struct btrfs_root *root, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004388{
4389 u64 num_dev;
4390
David Woodhouse53b381b2013-01-29 18:40:14 -05004391 if (type & (BTRFS_BLOCK_GROUP_RAID10 |
4392 BTRFS_BLOCK_GROUP_RAID0 |
4393 BTRFS_BLOCK_GROUP_RAID5 |
4394 BTRFS_BLOCK_GROUP_RAID6))
Liu Bo15d1ff82012-03-29 09:57:44 -04004395 num_dev = root->fs_info->fs_devices->rw_devices;
4396 else if (type & BTRFS_BLOCK_GROUP_RAID1)
4397 num_dev = 2;
4398 else
4399 num_dev = 1; /* DUP or single */
4400
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004401 return num_dev;
Liu Bo15d1ff82012-03-29 09:57:44 -04004402}
4403
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004404/*
4405 * If @is_allocation is true, reserve space in the system space info necessary
4406 * for allocating a chunk, otherwise if it's false, reserve space necessary for
4407 * removing a chunk.
4408 */
4409void check_system_chunk(struct btrfs_trans_handle *trans,
4410 struct btrfs_root *root,
Filipe Manana4617ea32015-06-09 17:48:21 +01004411 u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004412{
4413 struct btrfs_space_info *info;
4414 u64 left;
4415 u64 thresh;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004416 int ret = 0;
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004417 u64 num_devs;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004418
4419 /*
4420 * Needed because we can end up allocating a system chunk and for an
4421 * atomic and race free space reservation in the chunk block reserve.
4422 */
4423 ASSERT(mutex_is_locked(&root->fs_info->chunk_mutex));
Liu Bo15d1ff82012-03-29 09:57:44 -04004424
4425 info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4426 spin_lock(&info->lock);
4427 left = info->total_bytes - info->bytes_used - info->bytes_pinned -
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004428 info->bytes_reserved - info->bytes_readonly -
4429 info->bytes_may_use;
Liu Bo15d1ff82012-03-29 09:57:44 -04004430 spin_unlock(&info->lock);
4431
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004432 num_devs = get_profile_num_devs(root, type);
4433
4434 /* num_devs device items to update and 1 chunk item to add or remove */
Filipe Manana4617ea32015-06-09 17:48:21 +01004435 thresh = btrfs_calc_trunc_metadata_size(root, num_devs) +
4436 btrfs_calc_trans_metadata_size(root, 1);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004437
Jeff Mahoney3cdde222016-06-09 21:38:35 -04004438 if (left < thresh && btrfs_test_opt(root->fs_info, ENOSPC_DEBUG)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00004439 btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu",
4440 left, thresh, type);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04004441 dump_space_info(root->fs_info, info, 0, 0);
Liu Bo15d1ff82012-03-29 09:57:44 -04004442 }
4443
4444 if (left < thresh) {
4445 u64 flags;
4446
4447 flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0);
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004448 /*
4449 * Ignore failure to create system chunk. We might end up not
4450 * needing it, as we might not need to COW all nodes/leafs from
4451 * the paths we visit in the chunk tree (they were already COWed
4452 * or created in the current transaction for example).
4453 */
4454 ret = btrfs_alloc_chunk(trans, root, flags);
4455 }
4456
4457 if (!ret) {
4458 ret = btrfs_block_rsv_add(root->fs_info->chunk_root,
4459 &root->fs_info->chunk_block_rsv,
4460 thresh, BTRFS_RESERVE_NO_FLUSH);
4461 if (!ret)
4462 trans->chunk_bytes_reserved += thresh;
Liu Bo15d1ff82012-03-29 09:57:44 -04004463 }
4464}
4465
Liu Bo28b737f2016-07-29 11:09:50 -07004466/*
4467 * If force is CHUNK_ALLOC_FORCE:
4468 * - return 1 if it successfully allocates a chunk,
4469 * - return errors including -ENOSPC otherwise.
4470 * If force is NOT CHUNK_ALLOC_FORCE:
4471 * - return 0 if it doesn't need to allocate a new chunk,
4472 * - return 1 if it successfully allocates a chunk,
4473 * - return errors including -ENOSPC otherwise.
4474 */
Chris Mason6324fbf2008-03-24 15:01:59 -04004475static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Josef Bacik698d0082012-09-12 14:08:47 -04004476 struct btrfs_root *extent_root, u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04004477{
4478 struct btrfs_space_info *space_info;
Josef Bacik97e728d2009-04-21 17:40:57 -04004479 struct btrfs_fs_info *fs_info = extent_root->fs_info;
Josef Bacik6d741192011-04-11 20:20:11 -04004480 int wait_for_alloc = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05004481 int ret = 0;
4482
Josef Bacikc6b305a2012-12-18 09:16:16 -05004483 /* Don't re-enter if we're already allocating a chunk */
4484 if (trans->allocating_chunk)
4485 return -ENOSPC;
4486
Chris Mason6324fbf2008-03-24 15:01:59 -04004487 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04004488 if (!space_info) {
4489 ret = update_space_info(extent_root->fs_info, flags,
Josef Bacike40edf22016-03-25 13:25:47 -04004490 0, 0, 0, &space_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004491 BUG_ON(ret); /* -ENOMEM */
Chris Mason593060d2008-03-25 16:50:33 -04004492 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004493 BUG_ON(!space_info); /* Logic error */
Chris Mason6324fbf2008-03-24 15:01:59 -04004494
Josef Bacik6d741192011-04-11 20:20:11 -04004495again:
Josef Bacik25179202008-10-29 14:49:05 -04004496 spin_lock(&space_info->lock);
Miao Xie9e622d62012-01-26 15:01:12 -05004497 if (force < space_info->force_alloc)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004498 force = space_info->force_alloc;
Josef Bacik25179202008-10-29 14:49:05 -04004499 if (space_info->full) {
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01004500 if (should_alloc_chunk(extent_root, space_info, force))
4501 ret = -ENOSPC;
4502 else
4503 ret = 0;
Josef Bacik25179202008-10-29 14:49:05 -04004504 spin_unlock(&space_info->lock);
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01004505 return ret;
Josef Bacik25179202008-10-29 14:49:05 -04004506 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004507
Josef Bacik698d0082012-09-12 14:08:47 -04004508 if (!should_alloc_chunk(extent_root, space_info, force)) {
Josef Bacik25179202008-10-29 14:49:05 -04004509 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04004510 return 0;
4511 } else if (space_info->chunk_alloc) {
4512 wait_for_alloc = 1;
4513 } else {
4514 space_info->chunk_alloc = 1;
Josef Bacik25179202008-10-29 14:49:05 -04004515 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004516
Josef Bacik25179202008-10-29 14:49:05 -04004517 spin_unlock(&space_info->lock);
4518
Josef Bacik6d741192011-04-11 20:20:11 -04004519 mutex_lock(&fs_info->chunk_mutex);
4520
4521 /*
4522 * The chunk_mutex is held throughout the entirety of a chunk
4523 * allocation, so once we've acquired the chunk_mutex we know that the
4524 * other guy is done and we need to recheck and see if we should
4525 * allocate.
4526 */
4527 if (wait_for_alloc) {
4528 mutex_unlock(&fs_info->chunk_mutex);
4529 wait_for_alloc = 0;
Nikolay Borisov4367fb92018-04-05 10:40:15 +03004530 cond_resched();
Josef Bacik6d741192011-04-11 20:20:11 -04004531 goto again;
4532 }
4533
Josef Bacikc6b305a2012-12-18 09:16:16 -05004534 trans->allocating_chunk = true;
4535
Josef Bacik97e728d2009-04-21 17:40:57 -04004536 /*
Josef Bacik67377732010-09-16 16:19:09 -04004537 * If we have mixed data/metadata chunks we want to make sure we keep
4538 * allocating mixed chunks instead of individual chunks.
4539 */
4540 if (btrfs_mixed_space_info(space_info))
4541 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
4542
4543 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04004544 * if we're doing a data chunk, go ahead and make sure that
4545 * we keep a reasonable number of metadata chunks allocated in the
4546 * FS as well.
4547 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04004548 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04004549 fs_info->data_chunk_allocations++;
4550 if (!(fs_info->data_chunk_allocations %
4551 fs_info->metadata_ratio))
4552 force_metadata_allocation(fs_info);
4553 }
4554
Liu Bo15d1ff82012-03-29 09:57:44 -04004555 /*
4556 * Check if we have enough space in SYSTEM chunk because we may need
4557 * to update devices.
4558 */
Filipe Manana4617ea32015-06-09 17:48:21 +01004559 check_system_chunk(trans, extent_root, flags);
Liu Bo15d1ff82012-03-29 09:57:44 -04004560
Yan Zheng2b820322008-11-17 21:11:30 -05004561 ret = btrfs_alloc_chunk(trans, extent_root, flags);
Josef Bacikc6b305a2012-12-18 09:16:16 -05004562 trans->allocating_chunk = false;
Mark Fasheh92b8e8972011-07-12 10:57:59 -07004563
Josef Bacik9ed74f22009-09-11 16:12:44 -04004564 spin_lock(&space_info->lock);
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004565 if (ret < 0 && ret != -ENOSPC)
4566 goto out;
Chris Masond3977122009-01-05 21:25:51 -05004567 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04004568 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04004569 else
4570 ret = 1;
Josef Bacik6d741192011-04-11 20:20:11 -04004571
Chris Mason0e4f8f82011-04-15 16:05:44 -04004572 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004573out:
Josef Bacik6d741192011-04-11 20:20:11 -04004574 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004575 spin_unlock(&space_info->lock);
Dan Carpentera25c75d2012-04-18 09:59:29 +03004576 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana00d80e32015-07-20 14:56:20 +01004577 /*
4578 * When we allocate a new chunk we reserve space in the chunk block
4579 * reserve to make sure we can COW nodes/leafs in the chunk tree or
4580 * add new nodes/leafs to it if we end up needing to do it when
4581 * inserting the chunk item and updating device items as part of the
4582 * second phase of chunk allocation, performed by
4583 * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a
4584 * large number of new block groups to create in our transaction
4585 * handle's new_bgs list to avoid exhausting the chunk block reserve
4586 * in extreme cases - like having a single transaction create many new
4587 * block groups when starting to write out the free space caches of all
4588 * the block groups that were made dirty during the lifetime of the
4589 * transaction.
4590 */
Filipe Mananad9a05402015-10-03 13:13:13 +01004591 if (trans->can_flush_pending_bgs &&
Byongho Leeee221842015-12-15 01:42:10 +09004592 trans->chunk_bytes_reserved >= (u64)SZ_2M) {
Jeff Mahoney64b63582016-06-20 17:23:41 -04004593 btrfs_create_pending_block_groups(trans, extent_root);
Filipe Manana00d80e32015-07-20 14:56:20 +01004594 btrfs_trans_release_chunk_metadata(trans);
4595 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04004596 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04004597}
4598
Josef Bacika80c8dc2012-09-06 16:59:33 -04004599static int can_overcommit(struct btrfs_root *root,
4600 struct btrfs_space_info *space_info, u64 bytes,
Miao Xie08e007d2012-10-16 11:33:38 +00004601 enum btrfs_reserve_flush_enum flush)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004602{
Josef Bacik957780e2016-05-17 13:30:55 -04004603 struct btrfs_block_rsv *global_rsv;
4604 u64 profile;
Miao Xie3c76cd82013-04-25 10:12:38 +00004605 u64 space_size;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004606 u64 avail;
4607 u64 used;
4608
Josef Bacik957780e2016-05-17 13:30:55 -04004609 /* Don't overcommit when in mixed mode. */
4610 if (space_info->flags & BTRFS_BLOCK_GROUP_DATA)
4611 return 0;
4612
4613 BUG_ON(root->fs_info == NULL);
4614 global_rsv = &root->fs_info->global_block_rsv;
4615 profile = btrfs_get_alloc_profile(root, 0);
Josef Bacika80c8dc2012-09-06 16:59:33 -04004616 used = space_info->bytes_used + space_info->bytes_reserved +
Josef Bacik96f1bb52013-01-30 17:02:51 -05004617 space_info->bytes_pinned + space_info->bytes_readonly;
4618
Josef Bacik96f1bb52013-01-30 17:02:51 -05004619 /*
4620 * We only want to allow over committing if we have lots of actual space
4621 * free, but if we don't have enough space to handle the global reserve
4622 * space then we could end up having a real enospc problem when trying
4623 * to allocate a chunk or some other such important allocation.
4624 */
Miao Xie3c76cd82013-04-25 10:12:38 +00004625 spin_lock(&global_rsv->lock);
4626 space_size = calc_global_rsv_need_space(global_rsv);
4627 spin_unlock(&global_rsv->lock);
4628 if (used + space_size >= space_info->total_bytes)
Josef Bacik96f1bb52013-01-30 17:02:51 -05004629 return 0;
4630
4631 used += space_info->bytes_may_use;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004632
4633 spin_lock(&root->fs_info->free_chunk_lock);
4634 avail = root->fs_info->free_chunk_space;
4635 spin_unlock(&root->fs_info->free_chunk_lock);
4636
4637 /*
4638 * If we have dup, raid1 or raid10 then only half of the free
David Woodhouse53b381b2013-01-29 18:40:14 -05004639 * space is actually useable. For raid56, the space info used
4640 * doesn't include the parity drive, so we don't have to
4641 * change the math
Josef Bacika80c8dc2012-09-06 16:59:33 -04004642 */
4643 if (profile & (BTRFS_BLOCK_GROUP_DUP |
4644 BTRFS_BLOCK_GROUP_RAID1 |
4645 BTRFS_BLOCK_GROUP_RAID10))
4646 avail >>= 1;
4647
4648 /*
Miao Xie561c2942012-10-16 11:32:18 +00004649 * If we aren't flushing all things, let us overcommit up to
4650 * 1/2th of the space. If we can flush, don't let us overcommit
4651 * too much, let it overcommit up to 1/8 of the space.
Josef Bacika80c8dc2012-09-06 16:59:33 -04004652 */
Miao Xie08e007d2012-10-16 11:33:38 +00004653 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacik14575ae2013-09-17 10:48:00 -04004654 avail >>= 3;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004655 else
Josef Bacik14575ae2013-09-17 10:48:00 -04004656 avail >>= 1;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004657
Josef Bacik14575ae2013-09-17 10:48:00 -04004658 if (used + bytes < space_info->total_bytes + avail)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004659 return 1;
4660 return 0;
4661}
4662
Eric Sandeen48a3b632013-04-25 20:41:01 +00004663static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root,
Miao Xie6c255e62014-03-06 13:55:01 +08004664 unsigned long nr_pages, int nr_items)
Miao Xieda633a42012-12-20 11:19:09 +00004665{
4666 struct super_block *sb = root->fs_info->sb;
Miao Xieda633a42012-12-20 11:19:09 +00004667
Josef Bacik925a6ef2013-06-20 12:31:27 -04004668 if (down_read_trylock(&sb->s_umount)) {
4669 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
4670 up_read(&sb->s_umount);
4671 } else {
Miao Xieda633a42012-12-20 11:19:09 +00004672 /*
4673 * We needn't worry the filesystem going from r/w to r/o though
4674 * we don't acquire ->s_umount mutex, because the filesystem
4675 * should guarantee the delalloc inodes list be empty after
4676 * the filesystem is readonly(all dirty pages are written to
4677 * the disk).
4678 */
Miao Xie6c255e62014-03-06 13:55:01 +08004679 btrfs_start_delalloc_roots(root->fs_info, 0, nr_items);
Josef Bacik98ad69c2013-04-04 11:55:49 -04004680 if (!current->journal_info)
Filipe Manana578def72016-04-26 15:36:38 +01004681 btrfs_wait_ordered_roots(root->fs_info, nr_items,
4682 0, (u64)-1);
Miao Xieda633a42012-12-20 11:19:09 +00004683 }
4684}
4685
Miao Xie18cd8ea2013-11-04 23:13:22 +08004686static inline int calc_reclaim_items_nr(struct btrfs_root *root, u64 to_reclaim)
4687{
4688 u64 bytes;
4689 int nr;
4690
4691 bytes = btrfs_calc_trans_metadata_size(root, 1);
4692 nr = (int)div64_u64(to_reclaim, bytes);
4693 if (!nr)
4694 nr = 1;
4695 return nr;
4696}
4697
Byongho Leeee221842015-12-15 01:42:10 +09004698#define EXTENT_SIZE_PER_ITEM SZ_256K
Miao Xiec61a16a2013-11-04 23:13:23 +08004699
Yan, Zheng5da9d012010-05-16 10:46:25 -04004700/*
4701 * shrink metadata reservation for delalloc
4702 */
Josef Bacikf4c738c2012-07-02 17:10:51 -04004703static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig,
4704 bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04004705{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004706 struct btrfs_block_rsv *block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004707 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04004708 struct btrfs_trans_handle *trans;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004709 u64 delalloc_bytes;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004710 u64 max_reclaim;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004711 long time_left;
Miao Xied3ee29e2013-11-04 23:13:20 +08004712 unsigned long nr_pages;
4713 int loops;
Miao Xieb0244192013-11-04 23:13:25 +08004714 int items;
Miao Xie08e007d2012-10-16 11:33:38 +00004715 enum btrfs_reserve_flush_enum flush;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004716
Miao Xiec61a16a2013-11-04 23:13:23 +08004717 /* Calc the number of the pages we need flush for space reservation */
Miao Xieb0244192013-11-04 23:13:25 +08004718 items = calc_reclaim_items_nr(root, to_reclaim);
Adam Borowski8eb0dfd2016-05-08 15:08:00 +02004719 to_reclaim = (u64)items * EXTENT_SIZE_PER_ITEM;
Miao Xiec61a16a2013-11-04 23:13:23 +08004720
Josef Bacik663350a2011-11-03 22:54:25 -04004721 trans = (struct btrfs_trans_handle *)current->journal_info;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004722 block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004723 space_info = block_rsv->space_info;
Chris Masonbf9022e2010-10-26 13:40:45 -04004724
Miao Xie963d6782013-01-29 10:10:51 +00004725 delalloc_bytes = percpu_counter_sum_positive(
4726 &root->fs_info->delalloc_bytes);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004727 if (delalloc_bytes == 0) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004728 if (trans)
Josef Bacikf4c738c2012-07-02 17:10:51 -04004729 return;
Miao Xie38c135a2013-11-04 23:13:21 +08004730 if (wait_ordered)
Filipe Manana578def72016-04-26 15:36:38 +01004731 btrfs_wait_ordered_roots(root->fs_info, items,
4732 0, (u64)-1);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004733 return;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004734 }
4735
Miao Xied3ee29e2013-11-04 23:13:20 +08004736 loops = 0;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004737 while (delalloc_bytes && loops < 3) {
4738 max_reclaim = min(delalloc_bytes, to_reclaim);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004739 nr_pages = max_reclaim >> PAGE_SHIFT;
Miao Xie6c255e62014-03-06 13:55:01 +08004740 btrfs_writeback_inodes_sb_nr(root, nr_pages, items);
Josef Bacikdea31f52012-09-06 16:47:00 -04004741 /*
4742 * We need to wait for the async pages to actually start before
4743 * we do anything.
4744 */
Miao Xie9f3a0742013-11-04 23:13:24 +08004745 max_reclaim = atomic_read(&root->fs_info->async_delalloc_pages);
4746 if (!max_reclaim)
4747 goto skip_async;
Josef Bacikdea31f52012-09-06 16:47:00 -04004748
Miao Xie9f3a0742013-11-04 23:13:24 +08004749 if (max_reclaim <= nr_pages)
4750 max_reclaim = 0;
4751 else
4752 max_reclaim -= nr_pages;
4753
4754 wait_event(root->fs_info->async_submit_wait,
4755 atomic_read(&root->fs_info->async_delalloc_pages) <=
4756 (int)max_reclaim);
4757skip_async:
Miao Xie08e007d2012-10-16 11:33:38 +00004758 if (!trans)
4759 flush = BTRFS_RESERVE_FLUSH_ALL;
4760 else
4761 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacik0019f102010-10-15 15:18:40 -04004762 spin_lock(&space_info->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04004763 if (list_empty(&space_info->tickets) &&
4764 list_empty(&space_info->priority_tickets)) {
4765 spin_unlock(&space_info->lock);
4766 break;
4767 }
Josef Bacik0019f102010-10-15 15:18:40 -04004768 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004769
Chris Mason36e39c42011-03-12 07:08:42 -05004770 loops++;
Josef Bacikf104d042011-10-14 13:56:58 -04004771 if (wait_ordered && !trans) {
Filipe Manana578def72016-04-26 15:36:38 +01004772 btrfs_wait_ordered_roots(root->fs_info, items,
4773 0, (u64)-1);
Josef Bacikf104d042011-10-14 13:56:58 -04004774 } else {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004775 time_left = schedule_timeout_killable(1);
Josef Bacikf104d042011-10-14 13:56:58 -04004776 if (time_left)
4777 break;
4778 }
Miao Xie963d6782013-01-29 10:10:51 +00004779 delalloc_bytes = percpu_counter_sum_positive(
4780 &root->fs_info->delalloc_bytes);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004781 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04004782}
4783
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004784/**
Josef Bacik663350a2011-11-03 22:54:25 -04004785 * maybe_commit_transaction - possibly commit the transaction if its ok to
4786 * @root - the root we're allocating for
4787 * @bytes - the number of bytes we want to reserve
4788 * @force - force the commit
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004789 *
Josef Bacik663350a2011-11-03 22:54:25 -04004790 * This will check to make sure that committing the transaction will actually
4791 * get us somewhere and then commit the transaction if it does. Otherwise it
4792 * will return -ENOSPC.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004793 */
Josef Bacik663350a2011-11-03 22:54:25 -04004794static int may_commit_transaction(struct btrfs_root *root,
4795 struct btrfs_space_info *space_info,
4796 u64 bytes, int force)
4797{
4798 struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv;
4799 struct btrfs_trans_handle *trans;
4800
4801 trans = (struct btrfs_trans_handle *)current->journal_info;
4802 if (trans)
4803 return -EAGAIN;
4804
4805 if (force)
4806 goto commit;
4807
4808 /* See if there is enough pinned space to make this reservation */
Josef Bacikb150a4f2013-06-19 15:00:04 -04004809 if (percpu_counter_compare(&space_info->total_bytes_pinned,
Miao Xie0424c542014-03-06 13:54:59 +08004810 bytes) >= 0)
Josef Bacik663350a2011-11-03 22:54:25 -04004811 goto commit;
Josef Bacik663350a2011-11-03 22:54:25 -04004812
4813 /*
4814 * See if there is some space in the delayed insertion reservation for
4815 * this reservation.
4816 */
4817 if (space_info != delayed_rsv->space_info)
4818 return -ENOSPC;
4819
4820 spin_lock(&delayed_rsv->lock);
Josef Bacikb150a4f2013-06-19 15:00:04 -04004821 if (percpu_counter_compare(&space_info->total_bytes_pinned,
4822 bytes - delayed_rsv->size) >= 0) {
Josef Bacik663350a2011-11-03 22:54:25 -04004823 spin_unlock(&delayed_rsv->lock);
4824 return -ENOSPC;
4825 }
4826 spin_unlock(&delayed_rsv->lock);
4827
4828commit:
4829 trans = btrfs_join_transaction(root);
4830 if (IS_ERR(trans))
4831 return -ENOSPC;
4832
4833 return btrfs_commit_transaction(trans, root);
4834}
4835
Josef Bacik957780e2016-05-17 13:30:55 -04004836struct reserve_ticket {
4837 u64 bytes;
4838 int error;
4839 struct list_head list;
4840 wait_queue_head_t wait;
Josef Bacik96c3f432012-06-21 14:05:49 -04004841};
4842
4843static int flush_space(struct btrfs_root *root,
4844 struct btrfs_space_info *space_info, u64 num_bytes,
4845 u64 orig_bytes, int state)
4846{
4847 struct btrfs_trans_handle *trans;
4848 int nr;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004849 int ret = 0;
Josef Bacik96c3f432012-06-21 14:05:49 -04004850
4851 switch (state) {
Josef Bacik96c3f432012-06-21 14:05:49 -04004852 case FLUSH_DELAYED_ITEMS_NR:
4853 case FLUSH_DELAYED_ITEMS:
Miao Xie18cd8ea2013-11-04 23:13:22 +08004854 if (state == FLUSH_DELAYED_ITEMS_NR)
4855 nr = calc_reclaim_items_nr(root, num_bytes) * 2;
4856 else
Josef Bacik96c3f432012-06-21 14:05:49 -04004857 nr = -1;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004858
Josef Bacik96c3f432012-06-21 14:05:49 -04004859 trans = btrfs_join_transaction(root);
4860 if (IS_ERR(trans)) {
4861 ret = PTR_ERR(trans);
4862 break;
4863 }
4864 ret = btrfs_run_delayed_items_nr(trans, root, nr);
4865 btrfs_end_transaction(trans, root);
4866 break;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004867 case FLUSH_DELALLOC:
4868 case FLUSH_DELALLOC_WAIT:
Miao Xie24af7dd2014-03-06 13:55:00 +08004869 shrink_delalloc(root, num_bytes * 2, orig_bytes,
Josef Bacik67b0fd62012-09-24 13:42:00 -04004870 state == FLUSH_DELALLOC_WAIT);
4871 break;
Josef Bacikea658ba2012-09-11 16:57:25 -04004872 case ALLOC_CHUNK:
4873 trans = btrfs_join_transaction(root);
4874 if (IS_ERR(trans)) {
4875 ret = PTR_ERR(trans);
4876 break;
4877 }
4878 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Josef Bacikea658ba2012-09-11 16:57:25 -04004879 btrfs_get_alloc_profile(root, 0),
4880 CHUNK_ALLOC_NO_FORCE);
4881 btrfs_end_transaction(trans, root);
Alex Lyakaseecba892015-12-06 12:32:31 +02004882 if (ret > 0 || ret == -ENOSPC)
Josef Bacikea658ba2012-09-11 16:57:25 -04004883 ret = 0;
4884 break;
Josef Bacik96c3f432012-06-21 14:05:49 -04004885 case COMMIT_TRANS:
4886 ret = may_commit_transaction(root, space_info, orig_bytes, 0);
4887 break;
4888 default:
4889 ret = -ENOSPC;
4890 break;
4891 }
4892
Josef Bacikf376df22016-03-25 13:25:56 -04004893 trace_btrfs_flush_space(root->fs_info, space_info->flags, num_bytes,
4894 orig_bytes, state, ret);
Josef Bacik96c3f432012-06-21 14:05:49 -04004895 return ret;
4896}
Miao Xie21c7e752014-05-13 17:29:04 -07004897
4898static inline u64
4899btrfs_calc_reclaim_metadata_size(struct btrfs_root *root,
4900 struct btrfs_space_info *space_info)
4901{
Josef Bacik957780e2016-05-17 13:30:55 -04004902 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07004903 u64 used;
4904 u64 expected;
Josef Bacik957780e2016-05-17 13:30:55 -04004905 u64 to_reclaim = 0;
Miao Xie21c7e752014-05-13 17:29:04 -07004906
Josef Bacik957780e2016-05-17 13:30:55 -04004907 list_for_each_entry(ticket, &space_info->tickets, list)
4908 to_reclaim += ticket->bytes;
4909 list_for_each_entry(ticket, &space_info->priority_tickets, list)
4910 to_reclaim += ticket->bytes;
4911 if (to_reclaim)
4912 return to_reclaim;
Miao Xie21c7e752014-05-13 17:29:04 -07004913
Wang Xiaoguange0af2482016-08-31 19:46:16 +08004914 to_reclaim = min_t(u64, num_online_cpus() * SZ_1M, SZ_16M);
4915 if (can_overcommit(root, space_info, to_reclaim,
4916 BTRFS_RESERVE_FLUSH_ALL))
4917 return 0;
4918
Miao Xie21c7e752014-05-13 17:29:04 -07004919 used = space_info->bytes_used + space_info->bytes_reserved +
4920 space_info->bytes_pinned + space_info->bytes_readonly +
4921 space_info->bytes_may_use;
Byongho Leeee221842015-12-15 01:42:10 +09004922 if (can_overcommit(root, space_info, SZ_1M, BTRFS_RESERVE_FLUSH_ALL))
Miao Xie21c7e752014-05-13 17:29:04 -07004923 expected = div_factor_fine(space_info->total_bytes, 95);
4924 else
4925 expected = div_factor_fine(space_info->total_bytes, 90);
4926
4927 if (used > expected)
4928 to_reclaim = used - expected;
4929 else
4930 to_reclaim = 0;
4931 to_reclaim = min(to_reclaim, space_info->bytes_may_use +
4932 space_info->bytes_reserved);
Miao Xie21c7e752014-05-13 17:29:04 -07004933 return to_reclaim;
4934}
4935
4936static inline int need_do_async_reclaim(struct btrfs_space_info *space_info,
Josef Bacik87241c22016-04-25 09:58:18 -04004937 struct btrfs_root *root, u64 used)
Miao Xie21c7e752014-05-13 17:29:04 -07004938{
Josef Bacik365c5312015-02-18 13:58:15 -08004939 u64 thresh = div_factor_fine(space_info->total_bytes, 98);
4940
4941 /* If we're just plain full then async reclaim just slows us down. */
Josef Bacikbaee8792016-01-26 09:35:38 -05004942 if ((space_info->bytes_used + space_info->bytes_reserved) >= thresh)
Josef Bacik365c5312015-02-18 13:58:15 -08004943 return 0;
4944
Josef Bacik87241c22016-04-25 09:58:18 -04004945 if (!btrfs_calc_reclaim_metadata_size(root, space_info))
Liu Bo25ce4592014-09-10 12:58:50 +08004946 return 0;
Liu Bo25ce4592014-09-10 12:58:50 +08004947
Josef Bacik87241c22016-04-25 09:58:18 -04004948 return (used >= thresh && !btrfs_fs_closing(root->fs_info) &&
4949 !test_bit(BTRFS_FS_STATE_REMOUNTING,
4950 &root->fs_info->fs_state));
Miao Xie21c7e752014-05-13 17:29:04 -07004951}
4952
Josef Bacik957780e2016-05-17 13:30:55 -04004953static void wake_all_tickets(struct list_head *head)
Miao Xie21c7e752014-05-13 17:29:04 -07004954{
Josef Bacik957780e2016-05-17 13:30:55 -04004955 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07004956
Josef Bacik957780e2016-05-17 13:30:55 -04004957 while (!list_empty(head)) {
4958 ticket = list_first_entry(head, struct reserve_ticket, list);
4959 list_del_init(&ticket->list);
4960 ticket->error = -ENOSPC;
4961 wake_up(&ticket->wait);
Miao Xie21c7e752014-05-13 17:29:04 -07004962 }
Miao Xie21c7e752014-05-13 17:29:04 -07004963}
4964
Josef Bacik957780e2016-05-17 13:30:55 -04004965/*
4966 * This is for normal flushers, we can wait all goddamned day if we want to. We
4967 * will loop and continuously try to flush as long as we are making progress.
4968 * We count progress as clearing off tickets each time we have to loop.
4969 */
Miao Xie21c7e752014-05-13 17:29:04 -07004970static void btrfs_async_reclaim_metadata_space(struct work_struct *work)
4971{
4972 struct btrfs_fs_info *fs_info;
4973 struct btrfs_space_info *space_info;
4974 u64 to_reclaim;
4975 int flush_state;
Josef Bacik957780e2016-05-17 13:30:55 -04004976 int commit_cycles = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08004977 u64 last_tickets_id;
Miao Xie21c7e752014-05-13 17:29:04 -07004978
4979 fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work);
4980 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4981
Josef Bacik957780e2016-05-17 13:30:55 -04004982 spin_lock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07004983 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root,
4984 space_info);
Josef Bacik957780e2016-05-17 13:30:55 -04004985 if (!to_reclaim) {
4986 space_info->flush = 0;
4987 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07004988 return;
Josef Bacik957780e2016-05-17 13:30:55 -04004989 }
Wang Xiaoguangce129652016-09-02 10:58:46 +08004990 last_tickets_id = space_info->tickets_id;
Josef Bacik957780e2016-05-17 13:30:55 -04004991 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07004992
4993 flush_state = FLUSH_DELAYED_ITEMS_NR;
4994 do {
Josef Bacik957780e2016-05-17 13:30:55 -04004995 struct reserve_ticket *ticket;
4996 int ret;
4997
4998 ret = flush_space(fs_info->fs_root, space_info, to_reclaim,
Miao Xie21c7e752014-05-13 17:29:04 -07004999 to_reclaim, flush_state);
Josef Bacik957780e2016-05-17 13:30:55 -04005000 spin_lock(&space_info->lock);
5001 if (list_empty(&space_info->tickets)) {
5002 space_info->flush = 0;
5003 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07005004 return;
Josef Bacik957780e2016-05-17 13:30:55 -04005005 }
5006 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root,
5007 space_info);
5008 ticket = list_first_entry(&space_info->tickets,
5009 struct reserve_ticket, list);
Wang Xiaoguangce129652016-09-02 10:58:46 +08005010 if (last_tickets_id == space_info->tickets_id) {
Josef Bacik957780e2016-05-17 13:30:55 -04005011 flush_state++;
5012 } else {
Wang Xiaoguangce129652016-09-02 10:58:46 +08005013 last_tickets_id = space_info->tickets_id;
Josef Bacik957780e2016-05-17 13:30:55 -04005014 flush_state = FLUSH_DELAYED_ITEMS_NR;
5015 if (commit_cycles)
5016 commit_cycles--;
5017 }
5018
5019 if (flush_state > COMMIT_TRANS) {
5020 commit_cycles++;
5021 if (commit_cycles > 2) {
5022 wake_all_tickets(&space_info->tickets);
5023 space_info->flush = 0;
5024 } else {
5025 flush_state = FLUSH_DELAYED_ITEMS_NR;
5026 }
5027 }
5028 spin_unlock(&space_info->lock);
5029 } while (flush_state <= COMMIT_TRANS);
Miao Xie21c7e752014-05-13 17:29:04 -07005030}
5031
5032void btrfs_init_async_reclaim_work(struct work_struct *work)
5033{
5034 INIT_WORK(work, btrfs_async_reclaim_metadata_space);
5035}
5036
Josef Bacik957780e2016-05-17 13:30:55 -04005037static void priority_reclaim_metadata_space(struct btrfs_fs_info *fs_info,
5038 struct btrfs_space_info *space_info,
5039 struct reserve_ticket *ticket)
5040{
5041 u64 to_reclaim;
5042 int flush_state = FLUSH_DELAYED_ITEMS_NR;
5043
5044 spin_lock(&space_info->lock);
5045 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root,
5046 space_info);
5047 if (!to_reclaim) {
5048 spin_unlock(&space_info->lock);
5049 return;
5050 }
5051 spin_unlock(&space_info->lock);
5052
5053 do {
5054 flush_space(fs_info->fs_root, space_info, to_reclaim,
5055 to_reclaim, flush_state);
5056 flush_state++;
5057 spin_lock(&space_info->lock);
5058 if (ticket->bytes == 0) {
5059 spin_unlock(&space_info->lock);
5060 return;
5061 }
5062 spin_unlock(&space_info->lock);
5063
5064 /*
5065 * Priority flushers can't wait on delalloc without
5066 * deadlocking.
5067 */
5068 if (flush_state == FLUSH_DELALLOC ||
5069 flush_state == FLUSH_DELALLOC_WAIT)
5070 flush_state = ALLOC_CHUNK;
5071 } while (flush_state < COMMIT_TRANS);
5072}
5073
5074static int wait_reserve_ticket(struct btrfs_fs_info *fs_info,
5075 struct btrfs_space_info *space_info,
5076 struct reserve_ticket *ticket, u64 orig_bytes)
5077
5078{
5079 DEFINE_WAIT(wait);
5080 int ret = 0;
5081
5082 spin_lock(&space_info->lock);
5083 while (ticket->bytes > 0 && ticket->error == 0) {
5084 ret = prepare_to_wait_event(&ticket->wait, &wait, TASK_KILLABLE);
5085 if (ret) {
5086 ret = -EINTR;
5087 break;
5088 }
5089 spin_unlock(&space_info->lock);
5090
5091 schedule();
5092
5093 finish_wait(&ticket->wait, &wait);
5094 spin_lock(&space_info->lock);
5095 }
5096 if (!ret)
5097 ret = ticket->error;
5098 if (!list_empty(&ticket->list))
5099 list_del_init(&ticket->list);
5100 if (ticket->bytes && ticket->bytes < orig_bytes) {
5101 u64 num_bytes = orig_bytes - ticket->bytes;
5102 space_info->bytes_may_use -= num_bytes;
5103 trace_btrfs_space_reservation(fs_info, "space_info",
5104 space_info->flags, num_bytes, 0);
5105 }
5106 spin_unlock(&space_info->lock);
5107
5108 return ret;
5109}
5110
Josef Bacik663350a2011-11-03 22:54:25 -04005111/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005112 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5113 * @root - the root we're allocating for
Josef Bacik957780e2016-05-17 13:30:55 -04005114 * @space_info - the space info we want to allocate from
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005115 * @orig_bytes - the number of bytes we want
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04005116 * @flush - whether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005117 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04005118 * This will reserve orig_bytes number of bytes from the space info associated
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005119 * with the block_rsv. If there is not enough space it will make an attempt to
5120 * flush out space to make room. It will do this by flushing delalloc if
5121 * possible or committing the transaction. If flush is 0 then no attempts to
5122 * regain reservations will be made and this will fail if there is not enough
5123 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005124 */
Josef Bacik957780e2016-05-17 13:30:55 -04005125static int __reserve_metadata_bytes(struct btrfs_root *root,
5126 struct btrfs_space_info *space_info,
5127 u64 orig_bytes,
5128 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005129{
Josef Bacik957780e2016-05-17 13:30:55 -04005130 struct reserve_ticket ticket;
Josef Bacik2bf64752011-09-26 17:12:22 -04005131 u64 used;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005132 int ret = 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005133
Josef Bacik957780e2016-05-17 13:30:55 -04005134 ASSERT(orig_bytes);
Josef Bacik8ca17f02016-05-27 13:24:13 -04005135 ASSERT(!current->journal_info || flush != BTRFS_RESERVE_FLUSH_ALL);
5136
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 */
Josef Bacikafcdd122016-09-02 15:40:02 -04005195 if (!test_bit(BTRFS_FS_LOG_RECOVERING, &root->fs_info->flags) &&
Josef Bacik87241c22016-04-25 09:58:18 -04005196 need_do_async_reclaim(space_info, root, 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 Bacik8bb8ab22010-10-15 16:52:49 -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 *
Josef Bacik957780e2016-05-17 13:30:55 -04005241 * This will reserve orgi_bytes number of bytes from the space info associated
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005242 * 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{
Josef Bacik957780e2016-05-17 13:30:55 -04005253 int ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005254
Josef Bacik957780e2016-05-17 13:30:55 -04005255 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;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005389 space_info->tickets_id++;
Josef Bacik957780e2016-05-17 13:30:55 -04005390 wake_up(&ticket->wait);
5391 } else {
5392 ticket->bytes -= num_bytes;
5393 num_bytes = 0;
5394 }
5395 }
5396
5397 if (num_bytes && head == &space_info->priority_tickets) {
5398 head = &space_info->tickets;
5399 flush = BTRFS_RESERVE_FLUSH_ALL;
5400 goto again;
5401 }
5402 space_info->bytes_may_use -= num_bytes;
5403 trace_btrfs_space_reservation(fs_info, "space_info",
5404 space_info->flags, num_bytes, 0);
5405 spin_unlock(&space_info->lock);
5406}
5407
5408/*
5409 * This is for newly allocated space that isn't accounted in
5410 * space_info->bytes_may_use yet. So if we allocate a chunk or unpin an extent
5411 * we use this helper.
5412 */
5413static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
5414 struct btrfs_space_info *space_info,
5415 u64 num_bytes)
5416{
5417 struct reserve_ticket *ticket;
5418 struct list_head *head = &space_info->priority_tickets;
5419
5420again:
5421 while (!list_empty(head) && num_bytes) {
5422 ticket = list_first_entry(head, struct reserve_ticket,
5423 list);
5424 if (num_bytes >= ticket->bytes) {
5425 trace_btrfs_space_reservation(fs_info, "space_info",
5426 space_info->flags,
5427 ticket->bytes, 1);
5428 list_del_init(&ticket->list);
5429 num_bytes -= ticket->bytes;
5430 space_info->bytes_may_use += ticket->bytes;
5431 ticket->bytes = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005432 space_info->tickets_id++;
Josef Bacik957780e2016-05-17 13:30:55 -04005433 wake_up(&ticket->wait);
5434 } else {
5435 trace_btrfs_space_reservation(fs_info, "space_info",
5436 space_info->flags,
5437 num_bytes, 1);
5438 space_info->bytes_may_use += num_bytes;
5439 ticket->bytes -= num_bytes;
5440 num_bytes = 0;
5441 }
5442 }
5443
5444 if (num_bytes && head == &space_info->priority_tickets) {
5445 head = &space_info->tickets;
5446 goto again;
5447 }
5448}
5449
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005450static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
5451 struct btrfs_block_rsv *block_rsv,
David Sterba62a45b62011-04-20 15:52:26 +02005452 struct btrfs_block_rsv *dest, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005453{
5454 struct btrfs_space_info *space_info = block_rsv->space_info;
5455
5456 spin_lock(&block_rsv->lock);
5457 if (num_bytes == (u64)-1)
5458 num_bytes = block_rsv->size;
5459 block_rsv->size -= num_bytes;
5460 if (block_rsv->reserved >= block_rsv->size) {
5461 num_bytes = block_rsv->reserved - block_rsv->size;
5462 block_rsv->reserved = block_rsv->size;
5463 block_rsv->full = 1;
5464 } else {
5465 num_bytes = 0;
5466 }
5467 spin_unlock(&block_rsv->lock);
5468
5469 if (num_bytes > 0) {
5470 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00005471 spin_lock(&dest->lock);
5472 if (!dest->full) {
5473 u64 bytes_to_add;
5474
5475 bytes_to_add = dest->size - dest->reserved;
5476 bytes_to_add = min(num_bytes, bytes_to_add);
5477 dest->reserved += bytes_to_add;
5478 if (dest->reserved >= dest->size)
5479 dest->full = 1;
5480 num_bytes -= bytes_to_add;
5481 }
5482 spin_unlock(&dest->lock);
5483 }
Josef Bacik957780e2016-05-17 13:30:55 -04005484 if (num_bytes)
5485 space_info_add_old_bytes(fs_info, space_info,
5486 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005487 }
5488}
5489
Josef Bacik25d609f2016-03-25 13:25:48 -04005490int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src,
5491 struct btrfs_block_rsv *dst, u64 num_bytes,
5492 int update_size)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005493{
5494 int ret;
5495
5496 ret = block_rsv_use_bytes(src, num_bytes);
5497 if (ret)
5498 return ret;
5499
Josef Bacik25d609f2016-03-25 13:25:48 -04005500 block_rsv_add_bytes(dst, num_bytes, update_size);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005501 return 0;
5502}
5503
Miao Xie66d8f3d2012-09-06 04:02:28 -06005504void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005505{
5506 memset(rsv, 0, sizeof(*rsv));
5507 spin_lock_init(&rsv->lock);
Miao Xie66d8f3d2012-09-06 04:02:28 -06005508 rsv->type = type;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005509}
5510
Miao Xie66d8f3d2012-09-06 04:02:28 -06005511struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root,
5512 unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005513{
5514 struct btrfs_block_rsv *block_rsv;
5515 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005516
5517 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
5518 if (!block_rsv)
5519 return NULL;
5520
Miao Xie66d8f3d2012-09-06 04:02:28 -06005521 btrfs_init_block_rsv(block_rsv, type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005522 block_rsv->space_info = __find_space_info(fs_info,
5523 BTRFS_BLOCK_GROUP_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005524 return block_rsv;
5525}
5526
5527void btrfs_free_block_rsv(struct btrfs_root *root,
5528 struct btrfs_block_rsv *rsv)
5529{
Josef Bacik2aaa6652012-08-29 14:27:18 -04005530 if (!rsv)
5531 return;
Josef Bacikdabdb642011-08-08 12:50:18 -04005532 btrfs_block_rsv_release(root, rsv, (u64)-1);
5533 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005534}
5535
Chris Masoncdfb0802015-04-06 18:17:00 -07005536void __btrfs_free_block_rsv(struct btrfs_block_rsv *rsv)
5537{
5538 kfree(rsv);
5539}
5540
Miao Xie08e007d2012-10-16 11:33:38 +00005541int btrfs_block_rsv_add(struct btrfs_root *root,
5542 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
5543 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005544{
5545 int ret;
5546
5547 if (num_bytes == 0)
5548 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005549
Miao Xie61b520a2011-11-10 20:45:05 -05005550 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005551 if (!ret) {
5552 block_rsv_add_bytes(block_rsv, num_bytes, 1);
5553 return 0;
5554 }
5555
Yan, Zhengf0486c62010-05-16 10:46:25 -04005556 return ret;
5557}
5558
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005559int btrfs_block_rsv_check(struct btrfs_root *root,
Josef Bacik36ba0222011-10-18 12:15:48 -04005560 struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005561{
5562 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005563 int ret = -ENOSPC;
5564
5565 if (!block_rsv)
5566 return 0;
5567
5568 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04005569 num_bytes = div_factor(block_rsv->size, min_factor);
5570 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005571 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005572 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005573
Josef Bacik36ba0222011-10-18 12:15:48 -04005574 return ret;
5575}
5576
Miao Xie08e007d2012-10-16 11:33:38 +00005577int btrfs_block_rsv_refill(struct btrfs_root *root,
5578 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
5579 enum btrfs_reserve_flush_enum flush)
Josef Bacik36ba0222011-10-18 12:15:48 -04005580{
5581 u64 num_bytes = 0;
5582 int ret = -ENOSPC;
5583
5584 if (!block_rsv)
5585 return 0;
5586
5587 spin_lock(&block_rsv->lock);
5588 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04005589 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005590 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04005591 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04005592 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005593 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04005594
Yan, Zhengf0486c62010-05-16 10:46:25 -04005595 if (!ret)
5596 return 0;
5597
Miao Xieaa38a712011-11-18 17:43:00 +08005598 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Josef Bacikdabdb642011-08-08 12:50:18 -04005599 if (!ret) {
5600 block_rsv_add_bytes(block_rsv, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005601 return 0;
5602 }
5603
Josef Bacik13553e52011-08-08 13:33:21 -04005604 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005605}
5606
Yan, Zhengf0486c62010-05-16 10:46:25 -04005607void btrfs_block_rsv_release(struct btrfs_root *root,
5608 struct btrfs_block_rsv *block_rsv,
5609 u64 num_bytes)
5610{
5611 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Liu Bo17504582013-12-29 21:44:50 +08005612 if (global_rsv == block_rsv ||
Yan, Zhengf0486c62010-05-16 10:46:25 -04005613 block_rsv->space_info != global_rsv->space_info)
5614 global_rsv = NULL;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005615 block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv,
5616 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005617}
5618
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005619static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
5620{
5621 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
5622 struct btrfs_space_info *sinfo = block_rsv->space_info;
5623 u64 num_bytes;
5624
Josef Bacikae2e4722016-05-27 12:58:35 -04005625 /*
5626 * The global block rsv is based on the size of the extent tree, the
5627 * checksum tree and the root tree. If the fs is empty we want to set
5628 * it to a minimal amount for safety.
5629 */
5630 num_bytes = btrfs_root_used(&fs_info->extent_root->root_item) +
5631 btrfs_root_used(&fs_info->csum_root->root_item) +
5632 btrfs_root_used(&fs_info->tree_root->root_item);
5633 num_bytes = max_t(u64, num_bytes, SZ_16M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005634
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005635 spin_lock(&sinfo->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005636 spin_lock(&block_rsv->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005637
Byongho Leeee221842015-12-15 01:42:10 +09005638 block_rsv->size = min_t(u64, num_bytes, SZ_512M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005639
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005640 if (block_rsv->reserved < block_rsv->size) {
5641 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
5642 sinfo->bytes_reserved + sinfo->bytes_readonly +
5643 sinfo->bytes_may_use;
5644 if (sinfo->total_bytes > num_bytes) {
5645 num_bytes = sinfo->total_bytes - num_bytes;
5646 num_bytes = min(num_bytes,
5647 block_rsv->size - block_rsv->reserved);
5648 block_rsv->reserved += num_bytes;
5649 sinfo->bytes_may_use += num_bytes;
5650 trace_btrfs_space_reservation(fs_info, "space_info",
5651 sinfo->flags, num_bytes,
5652 1);
5653 }
5654 } else if (block_rsv->reserved > block_rsv->size) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005655 num_bytes = block_rsv->reserved - block_rsv->size;
Josef Bacikfb25e912011-07-26 17:00:46 -04005656 sinfo->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005657 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04005658 sinfo->flags, num_bytes, 0);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005659 block_rsv->reserved = block_rsv->size;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005660 }
David Sterba182608c2011-05-05 13:13:16 +02005661
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005662 if (block_rsv->reserved == block_rsv->size)
5663 block_rsv->full = 1;
5664 else
5665 block_rsv->full = 0;
5666
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005667 spin_unlock(&block_rsv->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005668 spin_unlock(&sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005669}
5670
Yan, Zhengf0486c62010-05-16 10:46:25 -04005671static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
5672{
5673 struct btrfs_space_info *space_info;
5674
5675 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
5676 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005677
5678 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005679 fs_info->global_block_rsv.space_info = space_info;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005680 fs_info->delalloc_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005681 fs_info->trans_block_rsv.space_info = space_info;
5682 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04005683 fs_info->delayed_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005684
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005685 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
5686 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
5687 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
5688 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Stefan Behrens3a6cad92013-05-16 14:48:19 +00005689 if (fs_info->quota_root)
5690 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005691 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005692
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005693 update_global_block_rsv(fs_info);
5694}
5695
5696static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
5697{
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005698 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
5699 (u64)-1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005700 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
5701 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
5702 WARN_ON(fs_info->trans_block_rsv.size > 0);
5703 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
5704 WARN_ON(fs_info->chunk_block_rsv.size > 0);
5705 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04005706 WARN_ON(fs_info->delayed_block_rsv.size > 0);
5707 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04005708}
5709
Yan, Zhenga22285a2010-05-16 10:48:46 -04005710void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
5711 struct btrfs_root *root)
5712{
Josef Bacik0e721102012-06-26 16:13:18 -04005713 if (!trans->block_rsv)
5714 return;
5715
Yan, Zhenga22285a2010-05-16 10:48:46 -04005716 if (!trans->bytes_reserved)
5717 return;
5718
Chris Masone77266e2012-02-24 10:39:05 -05005719 trace_btrfs_space_reservation(root->fs_info, "transaction",
Liu Bo2bcc0322012-03-29 09:57:44 -04005720 trans->transid, trans->bytes_reserved, 0);
Josef Bacikb24e03d2011-10-14 14:40:17 -04005721 btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005722 trans->bytes_reserved = 0;
5723}
5724
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005725/*
5726 * To be called after all the new block groups attached to the transaction
5727 * handle have been created (btrfs_create_pending_block_groups()).
5728 */
5729void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
5730{
Jeff Mahoney64b63582016-06-20 17:23:41 -04005731 struct btrfs_fs_info *fs_info = trans->fs_info;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005732
5733 if (!trans->chunk_bytes_reserved)
5734 return;
5735
5736 WARN_ON_ONCE(!list_empty(&trans->new_bgs));
5737
5738 block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL,
5739 trans->chunk_bytes_reserved);
5740 trans->chunk_bytes_reserved = 0;
5741}
5742
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005743/* Can only return 0 or -ENOSPC */
Yan, Zhengd68fc572010-05-16 10:49:58 -04005744int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
5745 struct inode *inode)
5746{
5747 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik40acc3e2016-05-27 13:01:08 -04005748 /*
5749 * We always use trans->block_rsv here as we will have reserved space
5750 * for our orphan when starting the transaction, using get_block_rsv()
5751 * here will sometimes make us choose the wrong block rsv as we could be
5752 * doing a reloc inode for a non refcounted root.
5753 */
5754 struct btrfs_block_rsv *src_rsv = trans->block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04005755 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
5756
5757 /*
Josef Bacikfcb80c22011-05-03 10:40:22 -04005758 * We need to hold space in order to delete our orphan item once we've
5759 * added it, so this takes the reservation so we can release it later
5760 * when we are truly done with the orphan item.
Yan, Zhengd68fc572010-05-16 10:49:58 -04005761 */
Chris Masonff5714c2011-05-28 07:00:39 -04005762 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005763 trace_btrfs_space_reservation(root->fs_info, "orphan",
5764 btrfs_ino(inode), num_bytes, 1);
Josef Bacik25d609f2016-03-25 13:25:48 -04005765 return btrfs_block_rsv_migrate(src_rsv, dst_rsv, num_bytes, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04005766}
5767
5768void btrfs_orphan_release_metadata(struct inode *inode)
5769{
5770 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonff5714c2011-05-28 07:00:39 -04005771 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005772 trace_btrfs_space_reservation(root->fs_info, "orphan",
5773 btrfs_ino(inode), num_bytes, 0);
Yan, Zhengd68fc572010-05-16 10:49:58 -04005774 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
5775}
5776
Miao Xied5c12072013-02-28 10:04:33 +00005777/*
5778 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
5779 * root: the root of the parent directory
5780 * rsv: block reservation
5781 * items: the number of items that we need do reservation
5782 * qgroup_reserved: used to return the reserved size in qgroup
5783 *
5784 * This function is used to reserve the space for snapshot/subvolume
5785 * creation and deletion. Those operations are different with the
5786 * common file/directory operations, they change two fs/file trees
5787 * and root tree, the number of items that the qgroup reserves is
5788 * different with the free space reservation. So we can not use
Nicholas D Steeves01327612016-05-19 21:18:45 -04005789 * the space reservation mechanism in start_transaction().
Miao Xied5c12072013-02-28 10:04:33 +00005790 */
5791int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
5792 struct btrfs_block_rsv *rsv,
5793 int items,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005794 u64 *qgroup_reserved,
5795 bool use_global_rsv)
Yan, Zhenga22285a2010-05-16 10:48:46 -04005796{
Miao Xied5c12072013-02-28 10:04:33 +00005797 u64 num_bytes;
5798 int ret;
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005799 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Miao Xied5c12072013-02-28 10:04:33 +00005800
Josef Bacikafcdd122016-09-02 15:40:02 -04005801 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &root->fs_info->flags)) {
Miao Xied5c12072013-02-28 10:04:33 +00005802 /* One for parent inode, two for dir entries */
David Sterba707e8a02014-06-04 19:22:26 +02005803 num_bytes = 3 * root->nodesize;
Qu Wenruo71741092015-09-08 17:22:41 +08005804 ret = btrfs_qgroup_reserve_meta(root, num_bytes);
Miao Xied5c12072013-02-28 10:04:33 +00005805 if (ret)
5806 return ret;
5807 } else {
5808 num_bytes = 0;
5809 }
5810
5811 *qgroup_reserved = num_bytes;
5812
5813 num_bytes = btrfs_calc_trans_metadata_size(root, items);
5814 rsv->space_info = __find_space_info(root->fs_info,
5815 BTRFS_BLOCK_GROUP_METADATA);
5816 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
5817 BTRFS_RESERVE_FLUSH_ALL);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005818
5819 if (ret == -ENOSPC && use_global_rsv)
Josef Bacik25d609f2016-03-25 13:25:48 -04005820 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes, 1);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005821
Qu Wenruo71741092015-09-08 17:22:41 +08005822 if (ret && *qgroup_reserved)
5823 btrfs_qgroup_free_meta(root, *qgroup_reserved);
Miao Xied5c12072013-02-28 10:04:33 +00005824
5825 return ret;
5826}
5827
5828void btrfs_subvolume_release_metadata(struct btrfs_root *root,
5829 struct btrfs_block_rsv *rsv,
5830 u64 qgroup_reserved)
5831{
5832 btrfs_block_rsv_release(root, rsv, (u64)-1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005833}
5834
Josef Bacik7709cde2011-08-04 10:25:02 -04005835/**
5836 * drop_outstanding_extent - drop an outstanding extent
5837 * @inode: the inode we're dropping the extent for
Nicholas D Steeves01327612016-05-19 21:18:45 -04005838 * @num_bytes: the number of bytes we're releasing.
Josef Bacik7709cde2011-08-04 10:25:02 -04005839 *
5840 * This is called when we are freeing up an outstanding extent, either called
5841 * after an error or after an extent is written. This will return the number of
5842 * reserved extents that need to be freed. This must be called with
5843 * BTRFS_I(inode)->lock held.
5844 */
Josef Bacikdcab6a32015-02-11 15:08:59 -05005845static unsigned drop_outstanding_extent(struct inode *inode, u64 num_bytes)
Josef Bacik9e0baf62011-07-15 15:16:44 +00005846{
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005847 unsigned drop_inode_space = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005848 unsigned dropped_extents = 0;
Josef Bacikdcab6a32015-02-11 15:08:59 -05005849 unsigned num_extents = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005850
Josef Bacikdcab6a32015-02-11 15:08:59 -05005851 num_extents = (unsigned)div64_u64(num_bytes +
5852 BTRFS_MAX_EXTENT_SIZE - 1,
5853 BTRFS_MAX_EXTENT_SIZE);
5854 ASSERT(num_extents);
5855 ASSERT(BTRFS_I(inode)->outstanding_extents >= num_extents);
5856 BTRFS_I(inode)->outstanding_extents -= num_extents;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005857
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005858 if (BTRFS_I(inode)->outstanding_extents == 0 &&
Josef Bacik72ac3c02012-05-23 14:13:11 -04005859 test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5860 &BTRFS_I(inode)->runtime_flags))
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005861 drop_inode_space = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005862
Josef Bacik9e0baf62011-07-15 15:16:44 +00005863 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005864 * If we have more or the same amount of outstanding extents than we have
Josef Bacik9e0baf62011-07-15 15:16:44 +00005865 * reserved then we need to leave the reserved extents count alone.
5866 */
5867 if (BTRFS_I(inode)->outstanding_extents >=
5868 BTRFS_I(inode)->reserved_extents)
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005869 return drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005870
5871 dropped_extents = BTRFS_I(inode)->reserved_extents -
5872 BTRFS_I(inode)->outstanding_extents;
5873 BTRFS_I(inode)->reserved_extents -= dropped_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005874 return dropped_extents + drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005875}
5876
Josef Bacik7709cde2011-08-04 10:25:02 -04005877/**
Nicholas D Steeves01327612016-05-19 21:18:45 -04005878 * calc_csum_metadata_size - return the amount of metadata space that must be
5879 * reserved/freed for the given bytes.
Josef Bacik7709cde2011-08-04 10:25:02 -04005880 * @inode: the inode we're manipulating
5881 * @num_bytes: the number of bytes in question
5882 * @reserve: 1 if we are reserving space, 0 if we are freeing space
5883 *
5884 * This adjusts the number of csum_bytes in the inode and then returns the
5885 * correct amount of metadata that must either be reserved or freed. We
5886 * calculate how many checksums we can fit into one leaf and then divide the
5887 * number of bytes that will need to be checksumed by this value to figure out
5888 * how many checksums will be required. If we are adding bytes then the number
5889 * may go up and we will return the number of additional bytes that must be
5890 * reserved. If it is going down we will return the number of bytes that must
5891 * be freed.
5892 *
5893 * This must be called with BTRFS_I(inode)->lock held.
5894 */
5895static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes,
5896 int reserve)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005897{
Josef Bacik7709cde2011-08-04 10:25:02 -04005898 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik12621332015-02-03 07:50:16 -08005899 u64 old_csums, num_csums;
Josef Bacik7709cde2011-08-04 10:25:02 -04005900
5901 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM &&
5902 BTRFS_I(inode)->csum_bytes == 0)
5903 return 0;
5904
Chris Mason28f75a02015-02-04 06:59:29 -08005905 old_csums = btrfs_csum_bytes_to_leaves(root, BTRFS_I(inode)->csum_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04005906 if (reserve)
5907 BTRFS_I(inode)->csum_bytes += num_bytes;
5908 else
5909 BTRFS_I(inode)->csum_bytes -= num_bytes;
Chris Mason28f75a02015-02-04 06:59:29 -08005910 num_csums = btrfs_csum_bytes_to_leaves(root, BTRFS_I(inode)->csum_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04005911
5912 /* No change, no need to reserve more */
5913 if (old_csums == num_csums)
5914 return 0;
5915
5916 if (reserve)
5917 return btrfs_calc_trans_metadata_size(root,
5918 num_csums - old_csums);
5919
5920 return btrfs_calc_trans_metadata_size(root, old_csums - num_csums);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005921}
5922
5923int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
5924{
5925 struct btrfs_root *root = BTRFS_I(inode)->root;
5926 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005927 u64 to_reserve = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05005928 u64 csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005929 unsigned nr_extents = 0;
Miao Xie08e007d2012-10-16 11:33:38 +00005930 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
Jan Schmidteb6b88d2013-01-27 23:26:00 -07005931 int ret = 0;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005932 bool delalloc_lock = true;
Wang Shilong88e081bf2013-03-01 11:36:01 +00005933 u64 to_free = 0;
5934 unsigned dropped;
Josef Bacik48c3d482016-03-25 13:25:49 -04005935 bool release_extra = false;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005936
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005937 /* If we are a free space inode we need to not flush since we will be in
5938 * the middle of a transaction commit. We also don't need the delalloc
5939 * mutex since we won't race with anybody. We need this mostly to make
5940 * lockdep shut its filthy mouth.
Josef Bacikbac357dc2016-07-20 16:48:45 -07005941 *
5942 * If we have a transaction open (can happen if we call truncate_block
5943 * from truncate), then we need FLUSH_LIMIT so we don't deadlock.
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005944 */
5945 if (btrfs_is_free_space_inode(inode)) {
Miao Xie08e007d2012-10-16 11:33:38 +00005946 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005947 delalloc_lock = false;
Josef Bacikbac357dc2016-07-20 16:48:45 -07005948 } else if (current->journal_info) {
5949 flush = BTRFS_RESERVE_FLUSH_LIMIT;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005950 }
Josef Bacikc09544e2011-08-30 10:19:10 -04005951
Miao Xie08e007d2012-10-16 11:33:38 +00005952 if (flush != BTRFS_RESERVE_NO_FLUSH &&
5953 btrfs_transaction_in_commit(root->fs_info))
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005954 schedule_timeout(1);
5955
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005956 if (delalloc_lock)
5957 mutex_lock(&BTRFS_I(inode)->delalloc_mutex);
5958
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005959 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005960
Josef Bacik9e0baf62011-07-15 15:16:44 +00005961 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik6a41dd02015-03-13 15:12:23 -04005962 nr_extents = (unsigned)div64_u64(num_bytes +
5963 BTRFS_MAX_EXTENT_SIZE - 1,
5964 BTRFS_MAX_EXTENT_SIZE);
5965 BTRFS_I(inode)->outstanding_extents += nr_extents;
Josef Bacik57a45ced2011-01-25 16:30:38 -05005966
Josef Bacik48c3d482016-03-25 13:25:49 -04005967 nr_extents = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005968 if (BTRFS_I(inode)->outstanding_extents >
Josef Bacik660d3f62011-12-09 11:18:51 -05005969 BTRFS_I(inode)->reserved_extents)
Josef Bacik48c3d482016-03-25 13:25:49 -04005970 nr_extents += BTRFS_I(inode)->outstanding_extents -
Josef Bacik9e0baf62011-07-15 15:16:44 +00005971 BTRFS_I(inode)->reserved_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005972
Josef Bacik48c3d482016-03-25 13:25:49 -04005973 /* We always want to reserve a slot for updating the inode. */
5974 to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents + 1);
Josef Bacik7709cde2011-08-04 10:25:02 -04005975 to_reserve += calc_csum_metadata_size(inode, num_bytes, 1);
Josef Bacik660d3f62011-12-09 11:18:51 -05005976 csum_bytes = BTRFS_I(inode)->csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005977 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05005978
Josef Bacikafcdd122016-09-02 15:40:02 -04005979 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &root->fs_info->flags)) {
Qu Wenruo71741092015-09-08 17:22:41 +08005980 ret = btrfs_qgroup_reserve_meta(root,
5981 nr_extents * root->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005982 if (ret)
5983 goto out_fail;
Wang Shilonga9870c02013-03-01 11:33:01 +00005984 }
Arne Jansenc5567232011-09-14 15:44:05 +02005985
Josef Bacik48c3d482016-03-25 13:25:49 -04005986 ret = btrfs_block_rsv_add(root, block_rsv, to_reserve, flush);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005987 if (unlikely(ret)) {
Qu Wenruo71741092015-09-08 17:22:41 +08005988 btrfs_qgroup_free_meta(root, nr_extents * root->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005989 goto out_fail;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005990 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005991
Josef Bacik660d3f62011-12-09 11:18:51 -05005992 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik48c3d482016-03-25 13:25:49 -04005993 if (test_and_set_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
Josef Bacikf485c9e2016-03-25 13:25:55 -04005994 &BTRFS_I(inode)->runtime_flags)) {
5995 to_reserve -= btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik48c3d482016-03-25 13:25:49 -04005996 release_extra = true;
Josef Bacik660d3f62011-12-09 11:18:51 -05005997 }
5998 BTRFS_I(inode)->reserved_extents += nr_extents;
5999 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006000
6001 if (delalloc_lock)
6002 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
Josef Bacik660d3f62011-12-09 11:18:51 -05006003
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006004 if (to_reserve)
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05306005 trace_btrfs_space_reservation(root->fs_info, "delalloc",
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006006 btrfs_ino(inode), to_reserve, 1);
Josef Bacik48c3d482016-03-25 13:25:49 -04006007 if (release_extra)
6008 btrfs_block_rsv_release(root, block_rsv,
6009 btrfs_calc_trans_metadata_size(root,
6010 1));
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006011 return 0;
Wang Shilong88e081bf2013-03-01 11:36:01 +00006012
6013out_fail:
6014 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacikdcab6a32015-02-11 15:08:59 -05006015 dropped = drop_outstanding_extent(inode, num_bytes);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006016 /*
6017 * If the inodes csum_bytes is the same as the original
6018 * csum_bytes then we know we haven't raced with any free()ers
6019 * so we can just reduce our inodes csum bytes and carry on.
Wang Shilong88e081bf2013-03-01 11:36:01 +00006020 */
Josef Bacikf4881bc2013-03-25 16:03:35 -04006021 if (BTRFS_I(inode)->csum_bytes == csum_bytes) {
Wang Shilong88e081bf2013-03-01 11:36:01 +00006022 calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacikf4881bc2013-03-25 16:03:35 -04006023 } else {
6024 u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes;
6025 u64 bytes;
6026
6027 /*
6028 * This is tricky, but first we need to figure out how much we
Nicholas D Steeves01327612016-05-19 21:18:45 -04006029 * freed from any free-ers that occurred during this
Josef Bacikf4881bc2013-03-25 16:03:35 -04006030 * reservation, so we reset ->csum_bytes to the csum_bytes
6031 * before we dropped our lock, and then call the free for the
6032 * number of bytes that were freed while we were trying our
6033 * reservation.
6034 */
6035 bytes = csum_bytes - BTRFS_I(inode)->csum_bytes;
6036 BTRFS_I(inode)->csum_bytes = csum_bytes;
6037 to_free = calc_csum_metadata_size(inode, bytes, 0);
6038
6039
6040 /*
6041 * Now we need to see how much we would have freed had we not
6042 * been making this reservation and our ->csum_bytes were not
6043 * artificially inflated.
6044 */
6045 BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes;
6046 bytes = csum_bytes - orig_csum_bytes;
6047 bytes = calc_csum_metadata_size(inode, bytes, 0);
6048
6049 /*
6050 * Now reset ->csum_bytes to what it should be. If bytes is
Nicholas D Steeves01327612016-05-19 21:18:45 -04006051 * more than to_free then we would have freed more space had we
Josef Bacikf4881bc2013-03-25 16:03:35 -04006052 * not had an artificially high ->csum_bytes, so we need to free
6053 * the remainder. If bytes is the same or less then we don't
6054 * need to do anything, the other free-ers did the correct
6055 * thing.
6056 */
6057 BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes;
6058 if (bytes > to_free)
6059 to_free = bytes - to_free;
6060 else
6061 to_free = 0;
6062 }
Wang Shilong88e081bf2013-03-01 11:36:01 +00006063 spin_unlock(&BTRFS_I(inode)->lock);
Dongsheng Yange2d1f922015-02-06 10:26:52 -05006064 if (dropped)
Wang Shilong88e081bf2013-03-01 11:36:01 +00006065 to_free += btrfs_calc_trans_metadata_size(root, dropped);
6066
6067 if (to_free) {
6068 btrfs_block_rsv_release(root, block_rsv, to_free);
6069 trace_btrfs_space_reservation(root->fs_info, "delalloc",
6070 btrfs_ino(inode), to_free, 0);
6071 }
6072 if (delalloc_lock)
6073 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
6074 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006075}
6076
Josef Bacik7709cde2011-08-04 10:25:02 -04006077/**
6078 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
6079 * @inode: the inode to release the reservation for
6080 * @num_bytes: the number of bytes we're releasing
6081 *
6082 * This will release the metadata reservation for an inode. This can be called
6083 * once we complete IO for a given set of bytes to release their metadata
6084 * reservations.
6085 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006086void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
6087{
6088 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik9e0baf62011-07-15 15:16:44 +00006089 u64 to_free = 0;
6090 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006091
6092 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik7709cde2011-08-04 10:25:02 -04006093 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacikdcab6a32015-02-11 15:08:59 -05006094 dropped = drop_outstanding_extent(inode, num_bytes);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006095
Miao Xie09348562013-02-07 10:12:07 +00006096 if (num_bytes)
6097 to_free = calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacik7709cde2011-08-04 10:25:02 -04006098 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00006099 if (dropped > 0)
6100 to_free += btrfs_calc_trans_metadata_size(root, dropped);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006101
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -04006102 if (btrfs_is_testing(root->fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04006103 return;
6104
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006105 trace_btrfs_space_reservation(root->fs_info, "delalloc",
6106 btrfs_ino(inode), to_free, 0);
Arne Jansenc5567232011-09-14 15:44:05 +02006107
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006108 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
6109 to_free);
6110}
6111
Josef Bacik7709cde2011-08-04 10:25:02 -04006112/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006113 * btrfs_delalloc_reserve_space - reserve data and metadata space for
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006114 * delalloc
6115 * @inode: inode we're writing to
6116 * @start: start range we are writing to
6117 * @len: how long the range we are writing to
6118 *
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006119 * This will do the following things
6120 *
6121 * o reserve space in data space info for num bytes
6122 * and reserve precious corresponding qgroup space
6123 * (Done in check_data_free_space)
6124 *
6125 * o reserve space for metadata space, based on the number of outstanding
6126 * extents and how much csums will be needed
6127 * also reserve metadata space in a per root over-reserve method.
6128 * o add to the inodes->delalloc_bytes
6129 * o add it to the fs_info's delalloc inodes list.
6130 * (Above 3 all done in delalloc_reserve_metadata)
6131 *
6132 * Return 0 for success
6133 * Return <0 for error(-ENOSPC or -EQUOT)
6134 */
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006135int btrfs_delalloc_reserve_space(struct inode *inode, u64 start, u64 len)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006136{
6137 int ret;
6138
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006139 ret = btrfs_check_data_free_space(inode, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006140 if (ret < 0)
6141 return ret;
6142 ret = btrfs_delalloc_reserve_metadata(inode, len);
6143 if (ret < 0)
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006144 btrfs_free_reserved_data_space(inode, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006145 return ret;
6146}
6147
6148/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006149 * btrfs_delalloc_release_space - release data and metadata space for delalloc
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006150 * @inode: inode we're releasing space for
6151 * @start: start position of the space already reserved
6152 * @len: the len of the space already reserved
6153 *
6154 * This must be matched with a call to btrfs_delalloc_reserve_space. This is
6155 * called in the case that we don't need the metadata AND data reservations
6156 * anymore. So if there is an error or we insert an inline extent.
6157 *
6158 * This function will release the metadata space that was not used and will
6159 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
6160 * list if there are no delalloc bytes left.
6161 * Also it will handle the qgroup reserved space.
6162 */
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006163void btrfs_delalloc_release_space(struct inode *inode, u64 start, u64 len)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006164{
6165 btrfs_delalloc_release_metadata(inode, len);
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006166 btrfs_free_reserved_data_space(inode, start, len);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006167}
6168
Josef Bacikce93ec52014-11-17 15:45:48 -05006169static int update_block_group(struct btrfs_trans_handle *trans,
6170 struct btrfs_root *root, u64 bytenr,
6171 u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04006172{
Josef Bacik0af3d002010-06-21 14:48:16 -04006173 struct btrfs_block_group_cache *cache = NULL;
Chris Mason9078a3e2007-04-26 16:46:15 -04006174 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04006175 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006176 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04006177 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04006178 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04006179
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006180 /* block accounting for super block */
Miao Xieeb73c1b2013-05-15 07:48:22 +00006181 spin_lock(&info->delalloc_root_lock);
David Sterba6c417612011-04-13 15:41:04 +02006182 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006183 if (alloc)
6184 old_val += num_bytes;
6185 else
6186 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02006187 btrfs_set_super_bytes_used(info->super_copy, old_val);
Miao Xieeb73c1b2013-05-15 07:48:22 +00006188 spin_unlock(&info->delalloc_root_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006189
Chris Masond3977122009-01-05 21:25:51 -05006190 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04006191 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05006192 if (!cache)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006193 return -ENOENT;
Yan, Zhengb742bb82010-05-16 10:46:24 -04006194 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
6195 BTRFS_BLOCK_GROUP_RAID1 |
6196 BTRFS_BLOCK_GROUP_RAID10))
6197 factor = 2;
6198 else
6199 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04006200 /*
6201 * If this block group has free space cache written out, we
6202 * need to make sure to load it if we are removing space. This
6203 * is because we need the unpinning stage to actually add the
6204 * space back to the block group, otherwise we will leak space.
6205 */
6206 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Liu Bof6373bf2012-12-27 09:01:18 +00006207 cache_block_group(cache, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04006208
Chris Masondb945352007-10-15 16:15:53 -04006209 byte_in_group = bytenr - cache->key.objectid;
6210 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04006211
Josef Bacik25179202008-10-29 14:49:05 -04006212 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04006213 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04006214
Jeff Mahoney3cdde222016-06-09 21:38:35 -04006215 if (btrfs_test_opt(root->fs_info, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04006216 cache->disk_cache_state < BTRFS_DC_CLEAR)
6217 cache->disk_cache_state = BTRFS_DC_CLEAR;
6218
Chris Mason9078a3e2007-04-26 16:46:15 -04006219 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04006220 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04006221 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04006222 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006223 btrfs_set_block_group_used(&cache->item, old_val);
6224 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006225 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04006226 cache->space_info->bytes_used += num_bytes;
6227 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04006228 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006229 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04006230 } else {
Chris Masondb945352007-10-15 16:15:53 -04006231 old_val -= num_bytes;
Filipe Mananaae0ab002014-11-26 15:28:52 +00006232 btrfs_set_block_group_used(&cache->item, old_val);
6233 cache->pinned += num_bytes;
6234 cache->space_info->bytes_pinned += num_bytes;
6235 cache->space_info->bytes_used -= num_bytes;
6236 cache->space_info->disk_used -= num_bytes * factor;
6237 spin_unlock(&cache->lock);
6238 spin_unlock(&cache->space_info->lock);
Josef Bacik47ab2a62014-09-18 11:20:02 -04006239
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006240 trace_btrfs_space_reservation(root->fs_info, "pinned",
6241 cache->space_info->flags,
6242 num_bytes, 1);
Filipe Mananaae0ab002014-11-26 15:28:52 +00006243 set_extent_dirty(info->pinned_extents,
6244 bytenr, bytenr + num_bytes - 1,
6245 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04006246 }
Chris Mason1bbc6212015-04-06 12:46:08 -07006247
6248 spin_lock(&trans->transaction->dirty_bgs_lock);
6249 if (list_empty(&cache->dirty_list)) {
6250 list_add_tail(&cache->dirty_list,
6251 &trans->transaction->dirty_bgs);
6252 trans->transaction->num_dirty_bgs++;
6253 btrfs_get_block_group(cache);
6254 }
6255 spin_unlock(&trans->transaction->dirty_bgs_lock);
6256
Filipe Manana036a9342015-11-23 15:25:16 +00006257 /*
6258 * No longer have used bytes in this block group, queue it for
6259 * deletion. We do this after adding the block group to the
6260 * dirty list to avoid races between cleaner kthread and space
6261 * cache writeout.
6262 */
6263 if (!alloc && old_val == 0) {
6264 spin_lock(&info->unused_bgs_lock);
6265 if (list_empty(&cache->bg_list)) {
6266 btrfs_get_block_group(cache);
6267 list_add_tail(&cache->bg_list,
6268 &info->unused_bgs);
6269 }
6270 spin_unlock(&info->unused_bgs_lock);
6271 }
6272
Chris Masonfa9c0d792009-04-03 09:47:43 -04006273 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04006274 total -= num_bytes;
6275 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006276 }
6277 return 0;
6278}
Chris Mason6324fbf2008-03-24 15:01:59 -04006279
Chris Masona061fc82008-05-07 11:43:44 -04006280static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
6281{
Josef Bacik0f9dd462008-09-23 13:14:11 -04006282 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05006283 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006284
Liu Boa1897fd2012-12-27 09:01:23 +00006285 spin_lock(&root->fs_info->block_group_cache_lock);
6286 bytenr = root->fs_info->first_logical_byte;
6287 spin_unlock(&root->fs_info->block_group_cache_lock);
6288
6289 if (bytenr < (u64)-1)
6290 return bytenr;
6291
Josef Bacik0f9dd462008-09-23 13:14:11 -04006292 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
6293 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04006294 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006295
Yan Zhengd2fb3432008-12-11 16:30:39 -05006296 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006297 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05006298
6299 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04006300}
6301
Yan, Zhengf0486c62010-05-16 10:46:25 -04006302static int pin_down_extent(struct btrfs_root *root,
6303 struct btrfs_block_group_cache *cache,
6304 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05006305{
Yan Zheng11833d62009-09-11 16:11:19 -04006306 spin_lock(&cache->space_info->lock);
6307 spin_lock(&cache->lock);
6308 cache->pinned += num_bytes;
6309 cache->space_info->bytes_pinned += num_bytes;
6310 if (reserved) {
6311 cache->reserved -= num_bytes;
6312 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05006313 }
Yan Zheng11833d62009-09-11 16:11:19 -04006314 spin_unlock(&cache->lock);
6315 spin_unlock(&cache->space_info->lock);
6316
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006317 trace_btrfs_space_reservation(root->fs_info, "pinned",
6318 cache->space_info->flags, num_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006319 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
6320 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Yan324ae4d2007-11-16 14:57:08 -05006321 return 0;
6322}
Chris Mason9078a3e2007-04-26 16:46:15 -04006323
Yan, Zhengf0486c62010-05-16 10:46:25 -04006324/*
6325 * this function must be called within transaction
6326 */
6327int btrfs_pin_extent(struct btrfs_root *root,
6328 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04006329{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006330 struct btrfs_block_group_cache *cache;
6331
6332 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006333 BUG_ON(!cache); /* Logic error */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006334
6335 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
6336
6337 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04006338 return 0;
6339}
Zheng Yane8569812008-09-26 10:05:48 -04006340
Yan, Zhengf0486c62010-05-16 10:46:25 -04006341/*
Chris Masone688b7252011-10-31 20:52:39 -04006342 * this function must be called within transaction
Yan, Zhengf0486c62010-05-16 10:46:25 -04006343 */
Liu Bodcfac412012-12-27 09:01:20 +00006344int btrfs_pin_extent_for_log_replay(struct btrfs_root *root,
Chris Masone688b7252011-10-31 20:52:39 -04006345 u64 bytenr, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006346{
Chris Masone688b7252011-10-31 20:52:39 -04006347 struct btrfs_block_group_cache *cache;
Josef Bacikb50c6e22013-04-25 15:55:30 -04006348 int ret;
Chris Masone688b7252011-10-31 20:52:39 -04006349
6350 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006351 if (!cache)
6352 return -EINVAL;
Chris Masone688b7252011-10-31 20:52:39 -04006353
6354 /*
6355 * pull in the free space cache (if any) so that our pin
6356 * removes the free space from the cache. We have load_only set
6357 * to one because the slow code to read in the free extents does check
6358 * the pinned extents.
6359 */
Liu Bof6373bf2012-12-27 09:01:18 +00006360 cache_block_group(cache, 1);
Chris Masone688b7252011-10-31 20:52:39 -04006361
6362 pin_down_extent(root, cache, bytenr, num_bytes, 0);
6363
6364 /* remove us from the free space cache (if we're there at all) */
Josef Bacikb50c6e22013-04-25 15:55:30 -04006365 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
Chris Masone688b7252011-10-31 20:52:39 -04006366 btrfs_put_block_group(cache);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006367 return ret;
Chris Masone688b7252011-10-31 20:52:39 -04006368}
6369
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006370static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes)
6371{
6372 int ret;
6373 struct btrfs_block_group_cache *block_group;
6374 struct btrfs_caching_control *caching_ctl;
6375
6376 block_group = btrfs_lookup_block_group(root->fs_info, start);
6377 if (!block_group)
6378 return -EINVAL;
6379
6380 cache_block_group(block_group, 0);
6381 caching_ctl = get_caching_control(block_group);
6382
6383 if (!caching_ctl) {
6384 /* Logic error */
6385 BUG_ON(!block_group_cache_done(block_group));
6386 ret = btrfs_remove_free_space(block_group, start, num_bytes);
6387 } else {
6388 mutex_lock(&caching_ctl->mutex);
6389
6390 if (start >= caching_ctl->progress) {
6391 ret = add_excluded_extent(root, start, num_bytes);
6392 } else if (start + num_bytes <= caching_ctl->progress) {
6393 ret = btrfs_remove_free_space(block_group,
6394 start, num_bytes);
6395 } else {
6396 num_bytes = caching_ctl->progress - start;
6397 ret = btrfs_remove_free_space(block_group,
6398 start, num_bytes);
6399 if (ret)
6400 goto out_lock;
6401
6402 num_bytes = (start + num_bytes) -
6403 caching_ctl->progress;
6404 start = caching_ctl->progress;
6405 ret = add_excluded_extent(root, start, num_bytes);
6406 }
6407out_lock:
6408 mutex_unlock(&caching_ctl->mutex);
6409 put_caching_control(caching_ctl);
6410 }
6411 btrfs_put_block_group(block_group);
6412 return ret;
6413}
6414
6415int btrfs_exclude_logged_extents(struct btrfs_root *log,
6416 struct extent_buffer *eb)
6417{
6418 struct btrfs_file_extent_item *item;
6419 struct btrfs_key key;
6420 int found_type;
6421 int i;
6422
6423 if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS))
6424 return 0;
6425
6426 for (i = 0; i < btrfs_header_nritems(eb); i++) {
6427 btrfs_item_key_to_cpu(eb, &key, i);
6428 if (key.type != BTRFS_EXTENT_DATA_KEY)
6429 continue;
6430 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
6431 found_type = btrfs_file_extent_type(eb, item);
6432 if (found_type == BTRFS_FILE_EXTENT_INLINE)
6433 continue;
6434 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
6435 continue;
6436 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
6437 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
6438 __exclude_logged_extent(log, key.objectid, key.offset);
6439 }
6440
6441 return 0;
6442}
6443
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006444static void
6445btrfs_inc_block_group_reservations(struct btrfs_block_group_cache *bg)
6446{
6447 atomic_inc(&bg->reservations);
6448}
6449
6450void btrfs_dec_block_group_reservations(struct btrfs_fs_info *fs_info,
6451 const u64 start)
6452{
6453 struct btrfs_block_group_cache *bg;
6454
6455 bg = btrfs_lookup_block_group(fs_info, start);
6456 ASSERT(bg);
6457 if (atomic_dec_and_test(&bg->reservations))
6458 wake_up_atomic_t(&bg->reservations);
6459 btrfs_put_block_group(bg);
6460}
6461
6462static int btrfs_wait_bg_reservations_atomic_t(atomic_t *a)
6463{
6464 schedule();
6465 return 0;
6466}
6467
6468void btrfs_wait_block_group_reservations(struct btrfs_block_group_cache *bg)
6469{
6470 struct btrfs_space_info *space_info = bg->space_info;
6471
6472 ASSERT(bg->ro);
6473
6474 if (!(bg->flags & BTRFS_BLOCK_GROUP_DATA))
6475 return;
6476
6477 /*
6478 * Our block group is read only but before we set it to read only,
6479 * some task might have had allocated an extent from it already, but it
6480 * has not yet created a respective ordered extent (and added it to a
6481 * root's list of ordered extents).
6482 * Therefore wait for any task currently allocating extents, since the
6483 * block group's reservations counter is incremented while a read lock
6484 * on the groups' semaphore is held and decremented after releasing
6485 * the read access on that semaphore and creating the ordered extent.
6486 */
6487 down_write(&space_info->groups_sem);
6488 up_write(&space_info->groups_sem);
6489
6490 wait_on_atomic_t(&bg->reservations,
6491 btrfs_wait_bg_reservations_atomic_t,
6492 TASK_UNINTERRUPTIBLE);
6493}
6494
Josef Bacikfb25e912011-07-26 17:00:46 -04006495/**
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006496 * btrfs_add_reserved_bytes - update the block_group and space info counters
Josef Bacikfb25e912011-07-26 17:00:46 -04006497 * @cache: The cache we are manipulating
Wang Xiaoguang18513092016-07-25 15:51:40 +08006498 * @ram_bytes: The number of bytes of file content, and will be same to
6499 * @num_bytes except for the compress path.
Josef Bacikfb25e912011-07-26 17:00:46 -04006500 * @num_bytes: The number of bytes in question
Miao Xiee570fd22014-06-19 10:42:50 +08006501 * @delalloc: The blocks are allocated for the delalloc write
Josef Bacikfb25e912011-07-26 17:00:46 -04006502 *
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006503 * This is called by the allocator when it reserves space. Metadata
6504 * reservations should be called with RESERVE_ALLOC so we do the proper
Josef Bacikfb25e912011-07-26 17:00:46 -04006505 * ENOSPC accounting. For data we handle the reservation through clearing the
6506 * delalloc bits in the io_tree. We have to do this since we could end up
6507 * allocating less disk space for the amount of data we have reserved in the
6508 * case of compression.
6509 *
6510 * If this is a reservation and the block group has become read only we cannot
6511 * make the reservation and return -EAGAIN, otherwise this function always
6512 * succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04006513 */
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006514static int btrfs_add_reserved_bytes(struct btrfs_block_group_cache *cache,
Wang Xiaoguang18513092016-07-25 15:51:40 +08006515 u64 ram_bytes, u64 num_bytes, int delalloc)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006516{
Josef Bacikfb25e912011-07-26 17:00:46 -04006517 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006518 int ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006519
Josef Bacikfb25e912011-07-26 17:00:46 -04006520 spin_lock(&space_info->lock);
6521 spin_lock(&cache->lock);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006522 if (cache->ro) {
6523 ret = -EAGAIN;
Josef Bacikfb25e912011-07-26 17:00:46 -04006524 } else {
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006525 cache->reserved += num_bytes;
6526 space_info->bytes_reserved += num_bytes;
Miao Xiee570fd22014-06-19 10:42:50 +08006527
Wang Xiaoguang18513092016-07-25 15:51:40 +08006528 trace_btrfs_space_reservation(cache->fs_info,
6529 "space_info", space_info->flags,
6530 ram_bytes, 0);
6531 space_info->bytes_may_use -= ram_bytes;
Miao Xiee570fd22014-06-19 10:42:50 +08006532 if (delalloc)
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006533 cache->delalloc_bytes += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006534 }
Josef Bacikfb25e912011-07-26 17:00:46 -04006535 spin_unlock(&cache->lock);
6536 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006537 return ret;
6538}
6539
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006540/**
6541 * btrfs_free_reserved_bytes - update the block_group and space info counters
6542 * @cache: The cache we are manipulating
6543 * @num_bytes: The number of bytes in question
6544 * @delalloc: The blocks are allocated for the delalloc write
6545 *
6546 * This is called by somebody who is freeing space that was never actually used
6547 * on disk. For example if you reserve some space for a new leaf in transaction
6548 * A and before transaction A commits you free that leaf, you call this with
6549 * reserve set to 0 in order to clear the reservation.
6550 */
6551
6552static int btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache,
6553 u64 num_bytes, int delalloc)
6554{
6555 struct btrfs_space_info *space_info = cache->space_info;
6556 int ret = 0;
6557
6558 spin_lock(&space_info->lock);
6559 spin_lock(&cache->lock);
6560 if (cache->ro)
6561 space_info->bytes_readonly += num_bytes;
6562 cache->reserved -= num_bytes;
6563 space_info->bytes_reserved -= num_bytes;
6564
6565 if (delalloc)
6566 cache->delalloc_bytes -= num_bytes;
6567 spin_unlock(&cache->lock);
6568 spin_unlock(&space_info->lock);
6569 return ret;
6570}
Jeff Mahoney143bede2012-03-01 14:56:26 +01006571void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04006572 struct btrfs_root *root)
6573{
6574 struct btrfs_fs_info *fs_info = root->fs_info;
6575 struct btrfs_caching_control *next;
6576 struct btrfs_caching_control *caching_ctl;
6577 struct btrfs_block_group_cache *cache;
6578
Josef Bacik9e351cc2014-03-13 15:42:13 -04006579 down_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04006580
6581 list_for_each_entry_safe(caching_ctl, next,
6582 &fs_info->caching_block_groups, list) {
6583 cache = caching_ctl->block_group;
6584 if (block_group_cache_done(cache)) {
6585 cache->last_byte_to_unpin = (u64)-1;
6586 list_del_init(&caching_ctl->list);
6587 put_caching_control(caching_ctl);
6588 } else {
6589 cache->last_byte_to_unpin = caching_ctl->progress;
6590 }
6591 }
6592
6593 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6594 fs_info->pinned_extents = &fs_info->freed_extents[1];
6595 else
6596 fs_info->pinned_extents = &fs_info->freed_extents[0];
6597
Josef Bacik9e351cc2014-03-13 15:42:13 -04006598 up_write(&fs_info->commit_root_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006599
6600 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04006601}
6602
Josef Bacikc759c4e2015-10-02 15:25:10 -04006603/*
6604 * Returns the free cluster for the given space info and sets empty_cluster to
6605 * what it should be based on the mount options.
6606 */
6607static struct btrfs_free_cluster *
6608fetch_cluster_info(struct btrfs_root *root, struct btrfs_space_info *space_info,
6609 u64 *empty_cluster)
6610{
6611 struct btrfs_free_cluster *ret = NULL;
Jeff Mahoney3cdde222016-06-09 21:38:35 -04006612 bool ssd = btrfs_test_opt(root->fs_info, SSD);
Josef Bacikc759c4e2015-10-02 15:25:10 -04006613
6614 *empty_cluster = 0;
6615 if (btrfs_mixed_space_info(space_info))
6616 return ret;
6617
6618 if (ssd)
Byongho Leeee221842015-12-15 01:42:10 +09006619 *empty_cluster = SZ_2M;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006620 if (space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
6621 ret = &root->fs_info->meta_alloc_cluster;
6622 if (!ssd)
Byongho Leeee221842015-12-15 01:42:10 +09006623 *empty_cluster = SZ_64K;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006624 } else if ((space_info->flags & BTRFS_BLOCK_GROUP_DATA) && ssd) {
6625 ret = &root->fs_info->data_alloc_cluster;
6626 }
6627
6628 return ret;
6629}
6630
Filipe Manana678886b2014-12-07 21:31:47 +00006631static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end,
6632 const bool return_free_space)
Yan Zheng11833d62009-09-11 16:11:19 -04006633{
6634 struct btrfs_fs_info *fs_info = root->fs_info;
6635 struct btrfs_block_group_cache *cache = NULL;
Josef Bacik7b398f82012-10-22 15:52:28 -04006636 struct btrfs_space_info *space_info;
6637 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006638 struct btrfs_free_cluster *cluster = NULL;
Yan Zheng11833d62009-09-11 16:11:19 -04006639 u64 len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006640 u64 total_unpinned = 0;
6641 u64 empty_cluster = 0;
Josef Bacik7b398f82012-10-22 15:52:28 -04006642 bool readonly;
Yan Zheng11833d62009-09-11 16:11:19 -04006643
6644 while (start <= end) {
Josef Bacik7b398f82012-10-22 15:52:28 -04006645 readonly = false;
Yan Zheng11833d62009-09-11 16:11:19 -04006646 if (!cache ||
6647 start >= cache->key.objectid + cache->key.offset) {
6648 if (cache)
6649 btrfs_put_block_group(cache);
Josef Bacikc759c4e2015-10-02 15:25:10 -04006650 total_unpinned = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006651 cache = btrfs_lookup_block_group(fs_info, start);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006652 BUG_ON(!cache); /* Logic error */
Josef Bacikc759c4e2015-10-02 15:25:10 -04006653
6654 cluster = fetch_cluster_info(root,
6655 cache->space_info,
6656 &empty_cluster);
6657 empty_cluster <<= 1;
Yan Zheng11833d62009-09-11 16:11:19 -04006658 }
6659
6660 len = cache->key.objectid + cache->key.offset - start;
6661 len = min(len, end + 1 - start);
6662
6663 if (start < cache->last_byte_to_unpin) {
6664 len = min(len, cache->last_byte_to_unpin - start);
Filipe Manana678886b2014-12-07 21:31:47 +00006665 if (return_free_space)
6666 btrfs_add_free_space(cache, start, len);
Yan Zheng11833d62009-09-11 16:11:19 -04006667 }
Josef Bacik25179202008-10-29 14:49:05 -04006668
Yan, Zhengf0486c62010-05-16 10:46:25 -04006669 start += len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006670 total_unpinned += len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006671 space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006672
Josef Bacikc759c4e2015-10-02 15:25:10 -04006673 /*
6674 * If this space cluster has been marked as fragmented and we've
6675 * unpinned enough in this block group to potentially allow a
6676 * cluster to be created inside of it go ahead and clear the
6677 * fragmented check.
6678 */
6679 if (cluster && cluster->fragmented &&
6680 total_unpinned > empty_cluster) {
6681 spin_lock(&cluster->lock);
6682 cluster->fragmented = 0;
6683 spin_unlock(&cluster->lock);
6684 }
6685
Josef Bacik7b398f82012-10-22 15:52:28 -04006686 spin_lock(&space_info->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006687 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006688 cache->pinned -= len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006689 space_info->bytes_pinned -= len;
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006690
6691 trace_btrfs_space_reservation(fs_info, "pinned",
6692 space_info->flags, len, 0);
Josef Bacik4f4db212015-09-29 11:40:47 -04006693 space_info->max_extent_size = 0;
Liu Bod288db52014-07-02 16:58:01 +08006694 percpu_counter_add(&space_info->total_bytes_pinned, -len);
Josef Bacik7b398f82012-10-22 15:52:28 -04006695 if (cache->ro) {
6696 space_info->bytes_readonly += len;
6697 readonly = true;
6698 }
Josef Bacik25179202008-10-29 14:49:05 -04006699 spin_unlock(&cache->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006700 if (!readonly && return_free_space &&
6701 global_rsv->space_info == space_info) {
6702 u64 to_add = len;
6703 WARN_ON(!return_free_space);
Josef Bacik7b398f82012-10-22 15:52:28 -04006704 spin_lock(&global_rsv->lock);
6705 if (!global_rsv->full) {
Josef Bacik957780e2016-05-17 13:30:55 -04006706 to_add = min(len, global_rsv->size -
6707 global_rsv->reserved);
6708 global_rsv->reserved += to_add;
6709 space_info->bytes_may_use += to_add;
Josef Bacik7b398f82012-10-22 15:52:28 -04006710 if (global_rsv->reserved >= global_rsv->size)
6711 global_rsv->full = 1;
Josef Bacik957780e2016-05-17 13:30:55 -04006712 trace_btrfs_space_reservation(fs_info,
6713 "space_info",
6714 space_info->flags,
6715 to_add, 1);
6716 len -= to_add;
Josef Bacik7b398f82012-10-22 15:52:28 -04006717 }
6718 spin_unlock(&global_rsv->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006719 /* Add to any tickets we may have */
6720 if (len)
6721 space_info_add_new_bytes(fs_info, space_info,
6722 len);
Josef Bacik7b398f82012-10-22 15:52:28 -04006723 }
6724 spin_unlock(&space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006725 }
6726
6727 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006728 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04006729 return 0;
6730}
6731
6732int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04006733 struct btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -05006734{
Yan Zheng11833d62009-09-11 16:11:19 -04006735 struct btrfs_fs_info *fs_info = root->fs_info;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006736 struct btrfs_block_group_cache *block_group, *tmp;
6737 struct list_head *deleted_bgs;
Yan Zheng11833d62009-09-11 16:11:19 -04006738 struct extent_io_tree *unpin;
Chris Mason1a5bc162007-10-15 16:15:26 -04006739 u64 start;
6740 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05006741 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05006742
Yan Zheng11833d62009-09-11 16:11:19 -04006743 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6744 unpin = &fs_info->freed_extents[1];
6745 else
6746 unpin = &fs_info->freed_extents[0];
6747
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006748 while (!trans->aborted) {
Filipe Mananad4b450c2015-01-29 19:18:25 +00006749 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Chris Mason1a5bc162007-10-15 16:15:26 -04006750 ret = find_first_extent_bit(unpin, 0, &start, &end,
Josef Bacike6138872012-09-27 17:07:30 -04006751 EXTENT_DIRTY, NULL);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006752 if (ret) {
6753 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05006754 break;
Filipe Mananad4b450c2015-01-29 19:18:25 +00006755 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05006756
Jeff Mahoney3cdde222016-06-09 21:38:35 -04006757 if (btrfs_test_opt(root->fs_info, DISCARD))
Li Dongyang5378e602011-03-24 10:24:27 +00006758 ret = btrfs_discard_extent(root, start,
6759 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05006760
David Sterbaaf6f8f62016-04-26 23:54:39 +02006761 clear_extent_dirty(unpin, start, end);
Filipe Manana678886b2014-12-07 21:31:47 +00006762 unpin_extent_range(root, start, end, true);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006763 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masonb9473432009-03-13 11:00:37 -04006764 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05006765 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006766
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006767 /*
6768 * Transaction is finished. We don't need the lock anymore. We
6769 * do need to clean up the block groups in case of a transaction
6770 * abort.
6771 */
6772 deleted_bgs = &trans->transaction->deleted_bgs;
6773 list_for_each_entry_safe(block_group, tmp, deleted_bgs, bg_list) {
6774 u64 trimmed = 0;
6775
6776 ret = -EROFS;
6777 if (!trans->aborted)
6778 ret = btrfs_discard_extent(root,
6779 block_group->key.objectid,
6780 block_group->key.offset,
6781 &trimmed);
6782
6783 list_del_init(&block_group->bg_list);
6784 btrfs_put_block_group_trimming(block_group);
6785 btrfs_put_block_group(block_group);
6786
6787 if (ret) {
6788 const char *errstr = btrfs_decode_error(ret);
6789 btrfs_warn(fs_info,
6790 "Discard failed while removing blockgroup: errno=%d %s\n",
6791 ret, errstr);
6792 }
6793 }
6794
Chris Masone20d96d2007-03-22 12:13:20 -04006795 return 0;
6796}
6797
Josef Bacikb150a4f2013-06-19 15:00:04 -04006798static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes,
6799 u64 owner, u64 root_objectid)
6800{
6801 struct btrfs_space_info *space_info;
6802 u64 flags;
6803
6804 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
6805 if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID)
6806 flags = BTRFS_BLOCK_GROUP_SYSTEM;
6807 else
6808 flags = BTRFS_BLOCK_GROUP_METADATA;
6809 } else {
6810 flags = BTRFS_BLOCK_GROUP_DATA;
6811 }
6812
6813 space_info = __find_space_info(fs_info, flags);
6814 BUG_ON(!space_info); /* Logic bug */
6815 percpu_counter_add(&space_info->total_bytes_pinned, num_bytes);
6816}
6817
6818
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006819static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
6820 struct btrfs_root *root,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006821 struct btrfs_delayed_ref_node *node, u64 parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006822 u64 root_objectid, u64 owner_objectid,
6823 u64 owner_offset, int refs_to_drop,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006824 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05006825{
Chris Masone2fa7222007-03-12 16:22:34 -04006826 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006827 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04006828 struct btrfs_fs_info *info = root->fs_info;
6829 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04006830 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006831 struct btrfs_extent_item *ei;
6832 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05006833 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006834 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05006835 int extent_slot = 0;
6836 int found_extent = 0;
6837 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006838 u32 item_size;
6839 u64 refs;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006840 u64 bytenr = node->bytenr;
6841 u64 num_bytes = node->num_bytes;
Josef Bacikfcebe452014-05-13 17:30:47 -07006842 int last_ref = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05006843 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
6844 SKINNY_METADATA);
Chris Mason037e6392007-03-07 11:50:24 -05006845
Chris Mason5caf2a02007-04-02 11:20:42 -04006846 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04006847 if (!path)
6848 return -ENOMEM;
6849
David Sterbae4058b52015-11-27 16:31:35 +01006850 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04006851 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006852
6853 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
6854 BUG_ON(!is_data && refs_to_drop != 1);
6855
Josef Bacik3173a182013-03-07 14:22:04 -05006856 if (is_data)
6857 skinny_metadata = 0;
6858
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006859 ret = lookup_extent_backref(trans, extent_root, path, &iref,
6860 bytenr, num_bytes, parent,
6861 root_objectid, owner_objectid,
6862 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05006863 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05006864 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006865 while (extent_slot >= 0) {
6866 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05006867 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006868 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05006869 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006870 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
6871 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05006872 found_extent = 1;
6873 break;
6874 }
Josef Bacik3173a182013-03-07 14:22:04 -05006875 if (key.type == BTRFS_METADATA_ITEM_KEY &&
6876 key.offset == owner_objectid) {
6877 found_extent = 1;
6878 break;
6879 }
Chris Mason952fcca2008-02-18 16:33:44 -05006880 if (path->slots[0] - extent_slot > 5)
6881 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006882 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05006883 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006884#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6885 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
6886 if (found_extent && item_size < sizeof(*ei))
6887 found_extent = 0;
6888#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04006889 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006890 BUG_ON(iref);
Chris Mason56bec292009-03-13 10:10:06 -04006891 ret = remove_extent_backref(trans, extent_root, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006892 NULL, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07006893 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06006894 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006895 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006896 goto out;
6897 }
David Sterbab3b4aa72011-04-21 01:20:15 +02006898 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04006899 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006900
6901 key.objectid = bytenr;
6902 key.type = BTRFS_EXTENT_ITEM_KEY;
6903 key.offset = num_bytes;
6904
Josef Bacik3173a182013-03-07 14:22:04 -05006905 if (!is_data && skinny_metadata) {
6906 key.type = BTRFS_METADATA_ITEM_KEY;
6907 key.offset = owner_objectid;
6908 }
6909
Zheng Yan31840ae2008-09-23 13:14:14 -04006910 ret = btrfs_search_slot(trans, extent_root,
6911 &key, path, -1, 1);
Josef Bacik3173a182013-03-07 14:22:04 -05006912 if (ret > 0 && skinny_metadata && path->slots[0]) {
6913 /*
6914 * Couldn't find our skinny metadata item,
6915 * see if we have ye olde extent item.
6916 */
6917 path->slots[0]--;
6918 btrfs_item_key_to_cpu(path->nodes[0], &key,
6919 path->slots[0]);
6920 if (key.objectid == bytenr &&
6921 key.type == BTRFS_EXTENT_ITEM_KEY &&
6922 key.offset == num_bytes)
6923 ret = 0;
6924 }
6925
6926 if (ret > 0 && skinny_metadata) {
6927 skinny_metadata = false;
Filipe Manana9ce49a02014-04-24 15:15:28 +01006928 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05006929 key.type = BTRFS_EXTENT_ITEM_KEY;
6930 key.offset = num_bytes;
6931 btrfs_release_path(path);
6932 ret = btrfs_search_slot(trans, extent_root,
6933 &key, path, -1, 1);
6934 }
6935
Josef Bacikf3465ca2008-11-12 14:19:50 -05006936 if (ret) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006937 btrfs_err(info,
6938 "umm, got %d back from search, was looking for %llu",
6939 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) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006945 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006946 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);
Jeff Mahoney66642832016-06-10 18:19:25 -04006956 btrfs_abort_transaction(trans, ret);
Josef Bacikc4a050b2014-03-14 16:36:53 -04006957 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006958 } else {
Jeff Mahoney66642832016-06-10 18:19:25 -04006959 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006960 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) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006971 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006972 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) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006985 btrfs_err(info,
6986 "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006987 ret, bytenr);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006988 btrfs_print_leaf(extent_root, path->nodes[0]);
6989 }
David Sterba005d6422012-09-18 07:52:32 -06006990 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006991 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006992 goto out;
6993 }
6994
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006995 extent_slot = path->slots[0];
6996 leaf = path->nodes[0];
6997 item_size = btrfs_item_size_nr(leaf, extent_slot);
6998 }
6999#endif
7000 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05007001 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04007002 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05007003 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
7004 key.type == BTRFS_EXTENT_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007005 struct btrfs_tree_block_info *bi;
7006 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
7007 bi = (struct btrfs_tree_block_info *)(ei + 1);
7008 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05007009 }
7010
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007011 refs = btrfs_extent_refs(leaf, ei);
Josef Bacik32b02532013-04-24 16:38:50 -04007012 if (refs < refs_to_drop) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04007013 btrfs_err(info,
7014 "trying to drop %d refs but we only have %Lu for bytenr %Lu",
7015 refs_to_drop, refs, bytenr);
Josef Bacik32b02532013-04-24 16:38:50 -04007016 ret = -EINVAL;
Jeff Mahoney66642832016-06-10 18:19:25 -04007017 btrfs_abort_transaction(trans, ret);
Josef Bacik32b02532013-04-24 16:38:50 -04007018 goto out;
7019 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007020 refs -= refs_to_drop;
7021
7022 if (refs > 0) {
7023 if (extent_op)
7024 __run_delayed_extent_op(extent_op, leaf, ei);
7025 /*
7026 * In the case of inline back ref, reference count will
7027 * be updated by remove_extent_backref
7028 */
7029 if (iref) {
7030 BUG_ON(!found_extent);
7031 } else {
7032 btrfs_set_extent_refs(leaf, ei, refs);
7033 btrfs_mark_buffer_dirty(leaf);
7034 }
7035 if (found_extent) {
7036 ret = remove_extent_backref(trans, extent_root, path,
7037 iref, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07007038 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06007039 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007040 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007041 goto out;
7042 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007043 }
Josef Bacikb150a4f2013-06-19 15:00:04 -04007044 add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid,
7045 root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007046 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007047 if (found_extent) {
7048 BUG_ON(is_data && refs_to_drop !=
Zhaolei9ed0dea2015-08-06 22:16:24 +08007049 extent_data_ref_count(path, iref));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007050 if (iref) {
7051 BUG_ON(path->slots[0] != extent_slot);
7052 } else {
7053 BUG_ON(path->slots[0] != extent_slot + 1);
7054 path->slots[0] = extent_slot;
7055 num_to_del = 2;
7056 }
Chris Mason78fae272007-03-25 11:35:08 -04007057 }
Chris Masonb9473432009-03-13 11:00:37 -04007058
Josef Bacikfcebe452014-05-13 17:30:47 -07007059 last_ref = 1;
Chris Mason952fcca2008-02-18 16:33:44 -05007060 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
7061 num_to_del);
David Sterba005d6422012-09-18 07:52:32 -06007062 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007063 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007064 goto out;
7065 }
David Sterbab3b4aa72011-04-21 01:20:15 +02007066 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01007067
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007068 if (is_data) {
Chris Mason459931e2008-12-10 09:10:46 -05007069 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
David Sterba005d6422012-09-18 07:52:32 -06007070 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007071 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007072 goto out;
7073 }
Chris Mason459931e2008-12-10 09:10:46 -05007074 }
7075
Omar Sandoval1e144fb2015-09-29 20:50:37 -07007076 ret = add_to_free_space_tree(trans, root->fs_info, bytenr,
7077 num_bytes);
7078 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007079 btrfs_abort_transaction(trans, ret);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07007080 goto out;
7081 }
7082
Josef Bacikce93ec52014-11-17 15:45:48 -05007083 ret = update_block_group(trans, root, bytenr, num_bytes, 0);
David Sterba005d6422012-09-18 07:52:32 -06007084 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007085 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007086 goto out;
7087 }
Chris Masona28ec192007-03-06 20:08:01 -05007088 }
Josef Bacikfcebe452014-05-13 17:30:47 -07007089 btrfs_release_path(path);
7090
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007091out:
Chris Mason5caf2a02007-04-02 11:20:42 -04007092 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05007093 return ret;
7094}
7095
7096/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04007097 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04007098 * delayed ref for that extent as well. This searches the delayed ref tree for
7099 * a given extent, and if there are no other delayed refs to be processed, it
7100 * removes it from the tree.
7101 */
7102static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
7103 struct btrfs_root *root, u64 bytenr)
7104{
7105 struct btrfs_delayed_ref_head *head;
7106 struct btrfs_delayed_ref_root *delayed_refs;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007107 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04007108
7109 delayed_refs = &trans->transaction->delayed_refs;
7110 spin_lock(&delayed_refs->lock);
7111 head = btrfs_find_delayed_ref_head(trans, bytenr);
7112 if (!head)
Chris Masoncf93da72014-01-29 07:02:40 -08007113 goto out_delayed_unlock;
Chris Mason1887be62009-03-13 10:11:24 -04007114
Josef Bacikd7df2c72014-01-23 09:21:38 -05007115 spin_lock(&head->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08007116 if (!list_empty(&head->ref_list))
Chris Mason1887be62009-03-13 10:11:24 -04007117 goto out;
7118
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007119 if (head->extent_op) {
7120 if (!head->must_insert_reserved)
7121 goto out;
Miao Xie78a61842012-11-21 02:21:28 +00007122 btrfs_free_delayed_extent_op(head->extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007123 head->extent_op = NULL;
7124 }
7125
Chris Mason1887be62009-03-13 10:11:24 -04007126 /*
7127 * waiting for the lock here would deadlock. If someone else has it
7128 * locked they are already in the process of dropping it anyway
7129 */
7130 if (!mutex_trylock(&head->mutex))
7131 goto out;
7132
7133 /*
7134 * at this point we have a head with no other entries. Go
7135 * ahead and process it.
7136 */
7137 head->node.in_tree = 0;
Liu Boc46effa2013-10-14 12:59:45 +08007138 rb_erase(&head->href_node, &delayed_refs->href_root);
Chris Masonc3e69d52009-03-13 10:17:05 -04007139
Josef Bacikd7df2c72014-01-23 09:21:38 -05007140 atomic_dec(&delayed_refs->num_entries);
Chris Mason1887be62009-03-13 10:11:24 -04007141
7142 /*
7143 * we don't take a ref on the node because we're removing it from the
7144 * tree, so we just steal the ref the tree was holding.
7145 */
Chris Masonc3e69d52009-03-13 10:17:05 -04007146 delayed_refs->num_heads--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05007147 if (head->processing == 0)
Chris Masonc3e69d52009-03-13 10:17:05 -04007148 delayed_refs->num_heads_ready--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05007149 head->processing = 0;
7150 spin_unlock(&head->lock);
Chris Mason1887be62009-03-13 10:11:24 -04007151 spin_unlock(&delayed_refs->lock);
7152
Yan, Zhengf0486c62010-05-16 10:46:25 -04007153 BUG_ON(head->extent_op);
7154 if (head->must_insert_reserved)
7155 ret = 1;
7156
7157 mutex_unlock(&head->mutex);
Chris Mason1887be62009-03-13 10:11:24 -04007158 btrfs_put_delayed_ref(&head->node);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007159 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04007160out:
Josef Bacikd7df2c72014-01-23 09:21:38 -05007161 spin_unlock(&head->lock);
Chris Masoncf93da72014-01-29 07:02:40 -08007162
7163out_delayed_unlock:
Chris Mason1887be62009-03-13 10:11:24 -04007164 spin_unlock(&delayed_refs->lock);
7165 return 0;
7166}
7167
Yan, Zhengf0486c62010-05-16 10:46:25 -04007168void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
7169 struct btrfs_root *root,
7170 struct extent_buffer *buf,
Jan Schmidt5581a512012-05-16 17:04:52 +02007171 u64 parent, int last_ref)
Yan, Zhengf0486c62010-05-16 10:46:25 -04007172{
Josef Bacikb150a4f2013-06-19 15:00:04 -04007173 int pin = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007174 int ret;
7175
7176 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007177 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
7178 buf->start, buf->len,
7179 parent, root->root_key.objectid,
7180 btrfs_header_level(buf),
Filipe Mananab06c4bf2015-10-23 07:52:54 +01007181 BTRFS_DROP_DELAYED_REF, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007182 BUG_ON(ret); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007183 }
7184
7185 if (!last_ref)
7186 return;
7187
Yan, Zhengf0486c62010-05-16 10:46:25 -04007188 if (btrfs_header_generation(buf) == trans->transid) {
Filipe Manana62198722015-01-06 20:18:45 +00007189 struct btrfs_block_group_cache *cache;
7190
Yan, Zhengf0486c62010-05-16 10:46:25 -04007191 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
7192 ret = check_ref_cleanup(trans, root, buf->start);
7193 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04007194 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007195 }
7196
Filipe Manana62198722015-01-06 20:18:45 +00007197 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
7198
Yan, Zhengf0486c62010-05-16 10:46:25 -04007199 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
7200 pin_down_extent(root, cache, buf->start, buf->len, 1);
Filipe Manana62198722015-01-06 20:18:45 +00007201 btrfs_put_block_group(cache);
Josef Bacik37be25b2011-08-05 10:25:38 -04007202 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007203 }
7204
7205 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
7206
7207 btrfs_add_free_space(cache, buf->start, buf->len);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08007208 btrfs_free_reserved_bytes(cache, buf->len, 0);
Filipe Manana62198722015-01-06 20:18:45 +00007209 btrfs_put_block_group(cache);
Josef Bacik0be5dc62013-10-07 15:18:52 -04007210 trace_btrfs_reserved_extent_free(root, buf->start, buf->len);
Josef Bacikb150a4f2013-06-19 15:00:04 -04007211 pin = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007212 }
7213out:
Josef Bacikb150a4f2013-06-19 15:00:04 -04007214 if (pin)
7215 add_pinned_bytes(root->fs_info, buf->len,
7216 btrfs_header_level(buf),
7217 root->root_key.objectid);
7218
Josef Bacika826d6d2011-03-16 13:42:43 -04007219 /*
7220 * Deleting the buffer, clear the corrupt flag since it doesn't matter
7221 * anymore.
7222 */
7223 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007224}
7225
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007226/* Can return -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007227int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root,
7228 u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01007229 u64 owner, u64 offset)
Chris Mason925baed2008-06-25 16:01:30 -04007230{
7231 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007232 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason925baed2008-06-25 16:01:30 -04007233
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -04007234 if (btrfs_is_testing(fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04007235 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02007236
Josef Bacikb150a4f2013-06-19 15:00:04 -04007237 add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid);
7238
Chris Mason56bec292009-03-13 10:10:06 -04007239 /*
7240 * tree log blocks never actually go into the extent allocation
7241 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04007242 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007243 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
7244 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04007245 /* unlocks the pinned mutex */
Yan Zheng11833d62009-09-11 16:11:19 -04007246 btrfs_pin_extent(root, bytenr, num_bytes, 1);
Chris Mason56bec292009-03-13 10:10:06 -04007247 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007248 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007249 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
7250 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007251 parent, root_objectid, (int)owner,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01007252 BTRFS_DROP_DELAYED_REF, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007253 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007254 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
7255 num_bytes,
7256 parent, root_objectid, owner,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08007257 offset, 0,
7258 BTRFS_DROP_DELAYED_REF, NULL);
Chris Mason56bec292009-03-13 10:10:06 -04007259 }
Chris Mason925baed2008-06-25 16:01:30 -04007260 return ret;
7261}
7262
Chris Masonfec577f2007-02-26 10:40:21 -05007263/*
Josef Bacik817d52f2009-07-13 21:29:25 -04007264 * when we wait for progress in the block group caching, its because
7265 * our allocation attempt failed at least once. So, we must sleep
7266 * and let some progress happen before we try again.
7267 *
7268 * This function will sleep at least once waiting for new free space to
7269 * show up, and then it will check the block group free space numbers
7270 * for our min num_bytes. Another option is to have it go ahead
7271 * and look in the rbtree for a free extent of a given size, but this
7272 * is a good start.
Josef Bacik36cce922013-08-05 11:15:21 -04007273 *
7274 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
7275 * any of the information in this block group.
Josef Bacik817d52f2009-07-13 21:29:25 -04007276 */
Josef Bacik36cce922013-08-05 11:15:21 -04007277static noinline void
Josef Bacik817d52f2009-07-13 21:29:25 -04007278wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
7279 u64 num_bytes)
7280{
Yan Zheng11833d62009-09-11 16:11:19 -04007281 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04007282
Yan Zheng11833d62009-09-11 16:11:19 -04007283 caching_ctl = get_caching_control(cache);
7284 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007285 return;
Josef Bacik817d52f2009-07-13 21:29:25 -04007286
Yan Zheng11833d62009-09-11 16:11:19 -04007287 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08007288 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04007289
7290 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -04007291}
7292
7293static noinline int
7294wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
7295{
7296 struct btrfs_caching_control *caching_ctl;
Josef Bacik36cce922013-08-05 11:15:21 -04007297 int ret = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007298
7299 caching_ctl = get_caching_control(cache);
7300 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007301 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007302
7303 wait_event(caching_ctl->wait, block_group_cache_done(cache));
Josef Bacik36cce922013-08-05 11:15:21 -04007304 if (cache->cached == BTRFS_CACHE_ERROR)
7305 ret = -EIO;
Yan Zheng11833d62009-09-11 16:11:19 -04007306 put_caching_control(caching_ctl);
Josef Bacik36cce922013-08-05 11:15:21 -04007307 return ret;
Josef Bacik817d52f2009-07-13 21:29:25 -04007308}
7309
Liu Bo31e50222012-11-21 14:18:10 +00007310int __get_raid_index(u64 flags)
Yan, Zhengb742bb82010-05-16 10:46:24 -04007311{
Ilya Dryomov7738a532012-03-27 17:09:17 +03007312 if (flags & BTRFS_BLOCK_GROUP_RAID10)
Miao Xiee6ec7162013-01-17 05:38:51 +00007313 return BTRFS_RAID_RAID10;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007314 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
Miao Xiee6ec7162013-01-17 05:38:51 +00007315 return BTRFS_RAID_RAID1;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007316 else if (flags & BTRFS_BLOCK_GROUP_DUP)
Miao Xiee6ec7162013-01-17 05:38:51 +00007317 return BTRFS_RAID_DUP;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007318 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
Miao Xiee6ec7162013-01-17 05:38:51 +00007319 return BTRFS_RAID_RAID0;
David Woodhouse53b381b2013-01-29 18:40:14 -05007320 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
Chris Masone942f882013-02-20 14:06:05 -05007321 return BTRFS_RAID_RAID5;
David Woodhouse53b381b2013-01-29 18:40:14 -05007322 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
Chris Masone942f882013-02-20 14:06:05 -05007323 return BTRFS_RAID_RAID6;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007324
Chris Masone942f882013-02-20 14:06:05 -05007325 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
Yan, Zhengb742bb82010-05-16 10:46:24 -04007326}
7327
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04007328int get_block_group_index(struct btrfs_block_group_cache *cache)
Ilya Dryomov7738a532012-03-27 17:09:17 +03007329{
Liu Bo31e50222012-11-21 14:18:10 +00007330 return __get_raid_index(cache->flags);
Ilya Dryomov7738a532012-03-27 17:09:17 +03007331}
7332
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04007333static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = {
7334 [BTRFS_RAID_RAID10] = "raid10",
7335 [BTRFS_RAID_RAID1] = "raid1",
7336 [BTRFS_RAID_DUP] = "dup",
7337 [BTRFS_RAID_RAID0] = "raid0",
7338 [BTRFS_RAID_SINGLE] = "single",
7339 [BTRFS_RAID_RAID5] = "raid5",
7340 [BTRFS_RAID_RAID6] = "raid6",
7341};
7342
Jeff Mahoney1b8e5df2013-11-20 16:50:23 -05007343static const char *get_raid_name(enum btrfs_raid_types type)
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04007344{
7345 if (type >= BTRFS_NR_RAID_TYPES)
7346 return NULL;
7347
7348 return btrfs_raid_type_names[type];
7349}
7350
Josef Bacik817d52f2009-07-13 21:29:25 -04007351enum btrfs_loop_type {
Josef Bacik285ff5a2012-01-13 15:27:45 -05007352 LOOP_CACHING_NOWAIT = 0,
7353 LOOP_CACHING_WAIT = 1,
7354 LOOP_ALLOC_CHUNK = 2,
7355 LOOP_NO_EMPTY_SIZE = 3,
Josef Bacik817d52f2009-07-13 21:29:25 -04007356};
7357
Miao Xiee570fd22014-06-19 10:42:50 +08007358static inline void
7359btrfs_lock_block_group(struct btrfs_block_group_cache *cache,
7360 int delalloc)
7361{
7362 if (delalloc)
7363 down_read(&cache->data_rwsem);
7364}
7365
7366static inline void
7367btrfs_grab_block_group(struct btrfs_block_group_cache *cache,
7368 int delalloc)
7369{
7370 btrfs_get_block_group(cache);
7371 if (delalloc)
7372 down_read(&cache->data_rwsem);
7373}
7374
7375static struct btrfs_block_group_cache *
7376btrfs_lock_cluster(struct btrfs_block_group_cache *block_group,
7377 struct btrfs_free_cluster *cluster,
7378 int delalloc)
7379{
Sudip Mukherjee89771cc2016-02-16 13:32:47 +05307380 struct btrfs_block_group_cache *used_bg = NULL;
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007381
Miao Xiee570fd22014-06-19 10:42:50 +08007382 spin_lock(&cluster->refill_lock);
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007383 while (1) {
7384 used_bg = cluster->block_group;
7385 if (!used_bg)
7386 return NULL;
7387
7388 if (used_bg == block_group)
7389 return used_bg;
7390
7391 btrfs_get_block_group(used_bg);
7392
7393 if (!delalloc)
7394 return used_bg;
7395
7396 if (down_read_trylock(&used_bg->data_rwsem))
7397 return used_bg;
7398
7399 spin_unlock(&cluster->refill_lock);
7400
Liu Bo78418b82016-11-30 16:11:04 -08007401 /* We should only have one-level nested. */
7402 down_read_nested(&used_bg->data_rwsem, SINGLE_DEPTH_NESTING);
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007403
7404 spin_lock(&cluster->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08007405 if (used_bg == cluster->block_group)
7406 return used_bg;
7407
7408 up_read(&used_bg->data_rwsem);
7409 btrfs_put_block_group(used_bg);
7410 }
Miao Xiee570fd22014-06-19 10:42:50 +08007411}
7412
7413static inline void
7414btrfs_release_block_group(struct btrfs_block_group_cache *cache,
7415 int delalloc)
7416{
7417 if (delalloc)
7418 up_read(&cache->data_rwsem);
7419 btrfs_put_block_group(cache);
7420}
7421
Josef Bacik817d52f2009-07-13 21:29:25 -04007422/*
Chris Masonfec577f2007-02-26 10:40:21 -05007423 * walks the btree of allocated extents and find a hole of a given size.
7424 * The key ins is changed to record the hole:
Miao Xiea4820392013-09-09 13:19:42 +08007425 * ins->objectid == start position
Chris Mason62e27492007-03-15 12:56:47 -04007426 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Miao Xiea4820392013-09-09 13:19:42 +08007427 * ins->offset == the size of the hole.
Chris Masonfec577f2007-02-26 10:40:21 -05007428 * Any available blocks before search_start are skipped.
Miao Xiea4820392013-09-09 13:19:42 +08007429 *
7430 * If there is no suitable free space, we will record the max size of
7431 * the free space extent currently.
Chris Masonfec577f2007-02-26 10:40:21 -05007432 */
Josef Bacik00361582013-08-14 14:02:47 -04007433static noinline int find_free_extent(struct btrfs_root *orig_root,
Wang Xiaoguang18513092016-07-25 15:51:40 +08007434 u64 ram_bytes, u64 num_bytes, u64 empty_size,
7435 u64 hint_byte, struct btrfs_key *ins,
7436 u64 flags, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05007437{
Josef Bacik80eb2342008-10-29 14:49:05 -04007438 int ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05007439 struct btrfs_root *root = orig_root->fs_info->extent_root;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007440 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04007441 struct btrfs_block_group_cache *block_group = NULL;
Josef Bacik81c9ad22012-01-18 10:56:06 -05007442 u64 search_start = 0;
Miao Xiea4820392013-09-09 13:19:42 +08007443 u64 max_extent_size = 0;
Josef Bacikc759c4e2015-10-02 15:25:10 -04007444 u64 empty_cluster = 0;
Josef Bacik80eb2342008-10-29 14:49:05 -04007445 struct btrfs_space_info *space_info;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007446 int loop = 0;
David Sterbab6919a52013-04-29 13:39:40 +00007447 int index = __get_raid_index(flags);
Josef Bacik0a243252009-09-11 16:11:20 -04007448 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007449 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04007450 bool use_cluster = true;
Miao Xie60d2adb2011-09-09 17:34:35 +08007451 bool have_caching_bg = false;
chandan13a0db52015-11-02 13:59:46 +05307452 bool orig_have_caching_bg = false;
Josef Bacika5e681d2015-10-01 14:54:10 -04007453 bool full_search = false;
Chris Masonfec577f2007-02-26 10:40:21 -05007454
Chris Masondb945352007-10-15 16:15:53 -04007455 WARN_ON(num_bytes < root->sectorsize);
David Sterba962a2982014-06-04 18:41:45 +02007456 ins->type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacik80eb2342008-10-29 14:49:05 -04007457 ins->objectid = 0;
7458 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04007459
David Sterbab6919a52013-04-29 13:39:40 +00007460 trace_find_free_extent(orig_root, num_bytes, empty_size, flags);
Josef Bacik3f7de032011-11-10 08:29:20 -05007461
David Sterbab6919a52013-04-29 13:39:40 +00007462 space_info = __find_space_info(root->fs_info, flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007463 if (!space_info) {
David Sterbab6919a52013-04-29 13:39:40 +00007464 btrfs_err(root->fs_info, "No space info for %llu", flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007465 return -ENOSPC;
7466 }
Josef Bacik2552d172009-04-03 10:14:19 -04007467
Josef Bacik67377732010-09-16 16:19:09 -04007468 /*
Josef Bacik4f4db212015-09-29 11:40:47 -04007469 * If our free space is heavily fragmented we may not be able to make
7470 * big contiguous allocations, so instead of doing the expensive search
7471 * for free space, simply return ENOSPC with our max_extent_size so we
7472 * can go ahead and search for a more manageable chunk.
7473 *
7474 * If our max_extent_size is large enough for our allocation simply
7475 * disable clustering since we will likely not be able to find enough
7476 * space to create a cluster and induce latency trying.
Josef Bacik67377732010-09-16 16:19:09 -04007477 */
Josef Bacik4f4db212015-09-29 11:40:47 -04007478 if (unlikely(space_info->max_extent_size)) {
7479 spin_lock(&space_info->lock);
7480 if (space_info->max_extent_size &&
7481 num_bytes > space_info->max_extent_size) {
7482 ins->offset = space_info->max_extent_size;
7483 spin_unlock(&space_info->lock);
7484 return -ENOSPC;
7485 } else if (space_info->max_extent_size) {
7486 use_cluster = false;
7487 }
7488 spin_unlock(&space_info->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007489 }
7490
Josef Bacikc759c4e2015-10-02 15:25:10 -04007491 last_ptr = fetch_cluster_info(orig_root, space_info, &empty_cluster);
Chris Mason239b14b2008-03-24 15:02:07 -04007492 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007493 spin_lock(&last_ptr->lock);
7494 if (last_ptr->block_group)
7495 hint_byte = last_ptr->window_start;
Josef Bacikc759c4e2015-10-02 15:25:10 -04007496 if (last_ptr->fragmented) {
7497 /*
7498 * We still set window_start so we can keep track of the
7499 * last place we found an allocation to try and save
7500 * some time.
7501 */
7502 hint_byte = last_ptr->window_start;
7503 use_cluster = false;
7504 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007505 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007506 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007507
Chris Masona061fc82008-05-07 11:43:44 -04007508 search_start = max(search_start, first_logical_byte(root, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04007509 search_start = max(search_start, hint_byte);
Josef Bacik2552d172009-04-03 10:14:19 -04007510 if (search_start == hint_byte) {
Josef Bacik2552d172009-04-03 10:14:19 -04007511 block_group = btrfs_lookup_block_group(root->fs_info,
7512 search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04007513 /*
7514 * we don't want to use the block group if it doesn't match our
7515 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05007516 *
7517 * However if we are re-searching with an ideal block group
7518 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04007519 */
David Sterbab6919a52013-04-29 13:39:40 +00007520 if (block_group && block_group_bits(block_group, flags) &&
Josef Bacik285ff5a2012-01-13 15:27:45 -05007521 block_group->cached != BTRFS_CACHE_NO) {
Josef Bacik2552d172009-04-03 10:14:19 -04007522 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04007523 if (list_empty(&block_group->list) ||
7524 block_group->ro) {
7525 /*
7526 * someone is removing this block group,
7527 * we can't jump into the have_block_group
7528 * target because our list pointers are not
7529 * valid
7530 */
7531 btrfs_put_block_group(block_group);
7532 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05007533 } else {
Yan, Zhengb742bb82010-05-16 10:46:24 -04007534 index = get_block_group_index(block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08007535 btrfs_lock_block_group(block_group, delalloc);
Chris Mason44fb5512009-06-04 15:34:51 -04007536 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05007537 }
Josef Bacik2552d172009-04-03 10:14:19 -04007538 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007539 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04007540 }
Chris Mason42e70e72008-11-07 18:17:11 -05007541 }
Josef Bacik2552d172009-04-03 10:14:19 -04007542search:
Miao Xie60d2adb2011-09-09 17:34:35 +08007543 have_caching_bg = false;
Josef Bacika5e681d2015-10-01 14:54:10 -04007544 if (index == 0 || index == __get_raid_index(flags))
7545 full_search = true;
Josef Bacik80eb2342008-10-29 14:49:05 -04007546 down_read(&space_info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04007547 list_for_each_entry(block_group, &space_info->block_groups[index],
7548 list) {
Josef Bacik6226cb0a2009-04-03 10:14:18 -04007549 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04007550 int cached;
Chris Mason8a1413a2008-11-10 16:13:54 -05007551
Miao Xiee570fd22014-06-19 10:42:50 +08007552 btrfs_grab_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007553 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05007554
Chris Mason83a50de2010-12-13 15:06:46 -05007555 /*
7556 * this can happen if we end up cycling through all the
7557 * raid types, but we want to make sure we only allocate
7558 * for the proper type.
7559 */
David Sterbab6919a52013-04-29 13:39:40 +00007560 if (!block_group_bits(block_group, flags)) {
Chris Mason83a50de2010-12-13 15:06:46 -05007561 u64 extra = BTRFS_BLOCK_GROUP_DUP |
7562 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05007563 BTRFS_BLOCK_GROUP_RAID5 |
7564 BTRFS_BLOCK_GROUP_RAID6 |
Chris Mason83a50de2010-12-13 15:06:46 -05007565 BTRFS_BLOCK_GROUP_RAID10;
7566
7567 /*
7568 * if they asked for extra copies and this block group
7569 * doesn't provide them, bail. This does allow us to
7570 * fill raid0 from raid1.
7571 */
David Sterbab6919a52013-04-29 13:39:40 +00007572 if ((flags & extra) && !(block_group->flags & extra))
Chris Mason83a50de2010-12-13 15:06:46 -05007573 goto loop;
Qu Wenruod43c3552019-07-16 17:00:33 +08007574
7575 /*
7576 * This block group has different flags than we want.
7577 * It's possible that we have MIXED_GROUP flag but no
7578 * block group is mixed. Just skip such block group.
7579 */
7580 btrfs_release_block_group(block_group, delalloc);
7581 continue;
Chris Mason83a50de2010-12-13 15:06:46 -05007582 }
7583
Josef Bacik2552d172009-04-03 10:14:19 -04007584have_block_group:
Josef Bacik291c7d22011-11-14 13:52:14 -05007585 cached = block_group_cache_done(block_group);
7586 if (unlikely(!cached)) {
Josef Bacika5e681d2015-10-01 14:54:10 -04007587 have_caching_bg = true;
Liu Bof6373bf2012-12-27 09:01:18 +00007588 ret = cache_block_group(block_group, 0);
Chris Mason1d4284b2012-03-28 20:31:37 -04007589 BUG_ON(ret < 0);
7590 ret = 0;
Josef Bacikea6a4782008-11-20 12:16:16 -05007591 }
7592
Josef Bacik36cce922013-08-05 11:15:21 -04007593 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
7594 goto loop;
Josef Bacikea6a4782008-11-20 12:16:16 -05007595 if (unlikely(block_group->ro))
Josef Bacik2552d172009-04-03 10:14:19 -04007596 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007597
Josef Bacik0a243252009-09-11 16:11:20 -04007598 /*
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007599 * Ok we want to try and use the cluster allocator, so
7600 * lets look there
Josef Bacik0a243252009-09-11 16:11:20 -04007601 */
Josef Bacikc759c4e2015-10-02 15:25:10 -04007602 if (last_ptr && use_cluster) {
Miao Xie215a63d2014-01-15 20:00:56 +08007603 struct btrfs_block_group_cache *used_block_group;
Chris Mason8de972b2013-01-04 15:39:43 -05007604 unsigned long aligned_cluster;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007605 /*
7606 * the refill lock keeps out other
7607 * people trying to start a new cluster
7608 */
Miao Xiee570fd22014-06-19 10:42:50 +08007609 used_block_group = btrfs_lock_cluster(block_group,
7610 last_ptr,
7611 delalloc);
7612 if (!used_block_group)
Chris Mason44fb5512009-06-04 15:34:51 -04007613 goto refill_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -04007614
Miao Xiee570fd22014-06-19 10:42:50 +08007615 if (used_block_group != block_group &&
7616 (used_block_group->ro ||
7617 !block_group_bits(used_block_group, flags)))
7618 goto release_cluster;
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05007619
7620 offset = btrfs_alloc_from_cluster(used_block_group,
Miao Xiea4820392013-09-09 13:19:42 +08007621 last_ptr,
7622 num_bytes,
7623 used_block_group->key.objectid,
7624 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007625 if (offset) {
7626 /* we have a block, we're done */
7627 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05007628 trace_btrfs_reserve_extent_cluster(root,
Miao Xie89d43462014-01-15 20:00:57 +08007629 used_block_group,
7630 search_start, num_bytes);
Miao Xie215a63d2014-01-15 20:00:56 +08007631 if (used_block_group != block_group) {
Miao Xiee570fd22014-06-19 10:42:50 +08007632 btrfs_release_block_group(block_group,
7633 delalloc);
Miao Xie215a63d2014-01-15 20:00:56 +08007634 block_group = used_block_group;
7635 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007636 goto checks;
7637 }
7638
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05007639 WARN_ON(last_ptr->block_group != used_block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08007640release_cluster:
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007641 /* If we are on LOOP_NO_EMPTY_SIZE, we can't
7642 * set up a new clusters, so lets just skip it
7643 * and let the allocator find whatever block
7644 * it can find. If we reach this point, we
7645 * will have tried the cluster allocator
7646 * plenty of times and not have found
7647 * anything, so we are likely way too
7648 * fragmented for the clustering stuff to find
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007649 * anything.
7650 *
7651 * However, if the cluster is taken from the
7652 * current block group, release the cluster
7653 * first, so that we stand a better chance of
7654 * succeeding in the unclustered
7655 * allocation. */
7656 if (loop >= LOOP_NO_EMPTY_SIZE &&
Miao Xiee570fd22014-06-19 10:42:50 +08007657 used_block_group != block_group) {
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007658 spin_unlock(&last_ptr->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08007659 btrfs_release_block_group(used_block_group,
7660 delalloc);
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007661 goto unclustered_alloc;
7662 }
7663
Chris Masonfa9c0d792009-04-03 09:47:43 -04007664 /*
7665 * this cluster didn't work out, free it and
7666 * start over
7667 */
7668 btrfs_return_cluster_to_free_space(NULL, last_ptr);
7669
Miao Xiee570fd22014-06-19 10:42:50 +08007670 if (used_block_group != block_group)
7671 btrfs_release_block_group(used_block_group,
7672 delalloc);
7673refill_cluster:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007674 if (loop >= LOOP_NO_EMPTY_SIZE) {
7675 spin_unlock(&last_ptr->refill_lock);
7676 goto unclustered_alloc;
7677 }
7678
Chris Mason8de972b2013-01-04 15:39:43 -05007679 aligned_cluster = max_t(unsigned long,
7680 empty_cluster + empty_size,
7681 block_group->full_stripe_len);
7682
Chris Masonfa9c0d792009-04-03 09:47:43 -04007683 /* allocate a cluster in this block group */
Josef Bacik00361582013-08-14 14:02:47 -04007684 ret = btrfs_find_space_cluster(root, block_group,
7685 last_ptr, search_start,
7686 num_bytes,
7687 aligned_cluster);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007688 if (ret == 0) {
7689 /*
7690 * now pull our allocation out of this
7691 * cluster
7692 */
7693 offset = btrfs_alloc_from_cluster(block_group,
Miao Xiea4820392013-09-09 13:19:42 +08007694 last_ptr,
7695 num_bytes,
7696 search_start,
7697 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007698 if (offset) {
7699 /* we found one, proceed */
7700 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05007701 trace_btrfs_reserve_extent_cluster(root,
7702 block_group, search_start,
7703 num_bytes);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007704 goto checks;
7705 }
Josef Bacik0a243252009-09-11 16:11:20 -04007706 } else if (!cached && loop > LOOP_CACHING_NOWAIT
7707 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04007708 spin_unlock(&last_ptr->refill_lock);
7709
Josef Bacik0a243252009-09-11 16:11:20 -04007710 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04007711 wait_block_group_cache_progress(block_group,
7712 num_bytes + empty_cluster + empty_size);
7713 goto have_block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007714 }
Josef Bacik817d52f2009-07-13 21:29:25 -04007715
Chris Masonfa9c0d792009-04-03 09:47:43 -04007716 /*
7717 * at this point we either didn't find a cluster
7718 * or we weren't able to allocate a block from our
7719 * cluster. Free the cluster we've been trying
7720 * to use, and go to the next block group
7721 */
Josef Bacik0a243252009-09-11 16:11:20 -04007722 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007723 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04007724 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007725 }
7726
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007727unclustered_alloc:
Josef Bacikc759c4e2015-10-02 15:25:10 -04007728 /*
7729 * We are doing an unclustered alloc, set the fragmented flag so
7730 * we don't bother trying to setup a cluster again until we get
7731 * more space.
7732 */
7733 if (unlikely(last_ptr)) {
7734 spin_lock(&last_ptr->lock);
7735 last_ptr->fragmented = 1;
7736 spin_unlock(&last_ptr->lock);
7737 }
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007738 spin_lock(&block_group->free_space_ctl->tree_lock);
7739 if (cached &&
7740 block_group->free_space_ctl->free_space <
7741 num_bytes + empty_cluster + empty_size) {
Miao Xiea4820392013-09-09 13:19:42 +08007742 if (block_group->free_space_ctl->free_space >
7743 max_extent_size)
7744 max_extent_size =
7745 block_group->free_space_ctl->free_space;
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007746 spin_unlock(&block_group->free_space_ctl->tree_lock);
7747 goto loop;
7748 }
7749 spin_unlock(&block_group->free_space_ctl->tree_lock);
7750
Josef Bacik6226cb0a2009-04-03 10:14:18 -04007751 offset = btrfs_find_space_for_alloc(block_group, search_start,
Miao Xiea4820392013-09-09 13:19:42 +08007752 num_bytes, empty_size,
7753 &max_extent_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007754 /*
7755 * If we didn't find a chunk, and we haven't failed on this
7756 * block group before, and this block group is in the middle of
7757 * caching and we are ok with waiting, then go ahead and wait
7758 * for progress to be made, and set failed_alloc to true.
7759 *
7760 * If failed_alloc is true then we've already waited on this
7761 * block group once and should move on to the next block group.
7762 */
7763 if (!offset && !failed_alloc && !cached &&
7764 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04007765 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007766 num_bytes + empty_size);
7767 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04007768 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007769 } else if (!offset) {
7770 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04007771 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007772checks:
David Sterba4e54b172014-06-05 01:39:19 +02007773 search_start = ALIGN(offset, root->stripesize);
Chris Masone37c9e62007-05-09 20:13:14 -04007774
Josef Bacik2552d172009-04-03 10:14:19 -04007775 /* move on to the next group */
7776 if (search_start + num_bytes >
Miao Xie215a63d2014-01-15 20:00:56 +08007777 block_group->key.objectid + block_group->key.offset) {
7778 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04007779 goto loop;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04007780 }
Josef Bacik80eb2342008-10-29 14:49:05 -04007781
Josef Bacik6226cb0a2009-04-03 10:14:18 -04007782 if (offset < search_start)
Miao Xie215a63d2014-01-15 20:00:56 +08007783 btrfs_add_free_space(block_group, offset,
Josef Bacik6226cb0a2009-04-03 10:14:18 -04007784 search_start - offset);
7785 BUG_ON(offset > search_start);
7786
Wang Xiaoguang18513092016-07-25 15:51:40 +08007787 ret = btrfs_add_reserved_bytes(block_group, ram_bytes,
7788 num_bytes, delalloc);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007789 if (ret == -EAGAIN) {
Miao Xie215a63d2014-01-15 20:00:56 +08007790 btrfs_add_free_space(block_group, offset, num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007791 goto loop;
7792 }
Filipe Manana9cfa3e32016-04-26 15:39:32 +01007793 btrfs_inc_block_group_reservations(block_group);
Yan Zheng11833d62009-09-11 16:11:19 -04007794
Josef Bacik2552d172009-04-03 10:14:19 -04007795 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007796 ins->objectid = search_start;
7797 ins->offset = num_bytes;
7798
Josef Bacik3f7de032011-11-10 08:29:20 -05007799 trace_btrfs_reserve_extent(orig_root, block_group,
7800 search_start, num_bytes);
Miao Xiee570fd22014-06-19 10:42:50 +08007801 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007802 break;
7803loop:
Josef Bacik0a243252009-09-11 16:11:20 -04007804 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007805 failed_alloc = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04007806 BUG_ON(index != get_block_group_index(block_group));
Miao Xiee570fd22014-06-19 10:42:50 +08007807 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007808 }
7809 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05007810
chandan13a0db52015-11-02 13:59:46 +05307811 if ((loop == LOOP_CACHING_NOWAIT) && have_caching_bg
7812 && !orig_have_caching_bg)
7813 orig_have_caching_bg = true;
7814
Miao Xie60d2adb2011-09-09 17:34:35 +08007815 if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg)
7816 goto search;
7817
Yan, Zhengb742bb82010-05-16 10:46:24 -04007818 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
7819 goto search;
7820
Josef Bacik285ff5a2012-01-13 15:27:45 -05007821 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05007822 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
7823 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04007824 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
7825 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
7826 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
7827 * again
Chris Masonfa9c0d792009-04-03 09:47:43 -04007828 */
Josef Bacik723bda22011-05-27 16:11:38 -04007829 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) {
Yan, Zhengb742bb82010-05-16 10:46:24 -04007830 index = 0;
Josef Bacika5e681d2015-10-01 14:54:10 -04007831 if (loop == LOOP_CACHING_NOWAIT) {
7832 /*
7833 * We want to skip the LOOP_CACHING_WAIT step if we
Nicholas D Steeves01327612016-05-19 21:18:45 -04007834 * don't have any uncached bgs and we've already done a
Josef Bacika5e681d2015-10-01 14:54:10 -04007835 * full search through.
7836 */
chandan13a0db52015-11-02 13:59:46 +05307837 if (orig_have_caching_bg || !full_search)
Josef Bacika5e681d2015-10-01 14:54:10 -04007838 loop = LOOP_CACHING_WAIT;
7839 else
7840 loop = LOOP_ALLOC_CHUNK;
7841 } else {
7842 loop++;
7843 }
7844
Josef Bacik817d52f2009-07-13 21:29:25 -04007845 if (loop == LOOP_ALLOC_CHUNK) {
Josef Bacik00361582013-08-14 14:02:47 -04007846 struct btrfs_trans_handle *trans;
Wang Shilongf017f152014-03-13 13:19:47 +08007847 int exist = 0;
Josef Bacik00361582013-08-14 14:02:47 -04007848
Wang Shilongf017f152014-03-13 13:19:47 +08007849 trans = current->journal_info;
7850 if (trans)
7851 exist = 1;
7852 else
7853 trans = btrfs_join_transaction(root);
7854
Josef Bacik00361582013-08-14 14:02:47 -04007855 if (IS_ERR(trans)) {
7856 ret = PTR_ERR(trans);
7857 goto out;
7858 }
7859
David Sterbab6919a52013-04-29 13:39:40 +00007860 ret = do_chunk_alloc(trans, root, flags,
Josef Bacikea658ba2012-09-11 16:57:25 -04007861 CHUNK_ALLOC_FORCE);
Josef Bacika5e681d2015-10-01 14:54:10 -04007862
7863 /*
7864 * If we can't allocate a new chunk we've already looped
7865 * through at least once, move on to the NO_EMPTY_SIZE
7866 * case.
7867 */
7868 if (ret == -ENOSPC)
7869 loop = LOOP_NO_EMPTY_SIZE;
7870
Josef Bacikea658ba2012-09-11 16:57:25 -04007871 /*
7872 * Do not bail out on ENOSPC since we
7873 * can do more things.
7874 */
Josef Bacik00361582013-08-14 14:02:47 -04007875 if (ret < 0 && ret != -ENOSPC)
Jeff Mahoney66642832016-06-10 18:19:25 -04007876 btrfs_abort_transaction(trans, ret);
Josef Bacik00361582013-08-14 14:02:47 -04007877 else
7878 ret = 0;
Wang Shilongf017f152014-03-13 13:19:47 +08007879 if (!exist)
7880 btrfs_end_transaction(trans, root);
Josef Bacik00361582013-08-14 14:02:47 -04007881 if (ret)
Josef Bacikea658ba2012-09-11 16:57:25 -04007882 goto out;
Josef Bacik723bda22011-05-27 16:11:38 -04007883 }
7884
7885 if (loop == LOOP_NO_EMPTY_SIZE) {
Josef Bacika5e681d2015-10-01 14:54:10 -04007886 /*
7887 * Don't loop again if we already have no empty_size and
7888 * no empty_cluster.
7889 */
7890 if (empty_size == 0 &&
7891 empty_cluster == 0) {
7892 ret = -ENOSPC;
7893 goto out;
7894 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007895 empty_size = 0;
7896 empty_cluster = 0;
7897 }
Chris Mason42e70e72008-11-07 18:17:11 -05007898
Josef Bacik723bda22011-05-27 16:11:38 -04007899 goto search;
Josef Bacik2552d172009-04-03 10:14:19 -04007900 } else if (!ins->objectid) {
7901 ret = -ENOSPC;
Josef Bacikd82a6f12011-05-11 15:26:06 -04007902 } else if (ins->objectid) {
Josef Bacikc759c4e2015-10-02 15:25:10 -04007903 if (!use_cluster && last_ptr) {
7904 spin_lock(&last_ptr->lock);
7905 last_ptr->window_start = ins->objectid;
7906 spin_unlock(&last_ptr->lock);
7907 }
Josef Bacik2552d172009-04-03 10:14:19 -04007908 ret = 0;
7909 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007910out:
Josef Bacik4f4db212015-09-29 11:40:47 -04007911 if (ret == -ENOSPC) {
7912 spin_lock(&space_info->lock);
7913 space_info->max_extent_size = max_extent_size;
7914 spin_unlock(&space_info->lock);
Miao Xiea4820392013-09-09 13:19:42 +08007915 ins->offset = max_extent_size;
Josef Bacik4f4db212015-09-29 11:40:47 -04007916 }
Chris Mason0f70abe2007-02-28 16:46:22 -05007917 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05007918}
Chris Masonec44a352008-04-28 15:29:52 -04007919
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007920static void dump_space_info(struct btrfs_fs_info *fs_info,
7921 struct btrfs_space_info *info, u64 bytes,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007922 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04007923{
7924 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb82010-05-16 10:46:24 -04007925 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007926
Josef Bacik9ed74f22009-09-11 16:12:44 -04007927 spin_lock(&info->lock);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007928 btrfs_info(fs_info, "space_info %llu has %llu free, is %sfull",
7929 info->flags,
7930 info->total_bytes - info->bytes_used - info->bytes_pinned -
7931 info->bytes_reserved - info->bytes_readonly -
7932 info->bytes_may_use, (info->full) ? "" : "not ");
7933 btrfs_info(fs_info,
7934 "space_info total=%llu, used=%llu, pinned=%llu, reserved=%llu, may_use=%llu, readonly=%llu",
7935 info->total_bytes, info->bytes_used, info->bytes_pinned,
7936 info->bytes_reserved, info->bytes_may_use,
7937 info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007938 spin_unlock(&info->lock);
7939
7940 if (!dump_block_groups)
7941 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007942
Josef Bacik80eb2342008-10-29 14:49:05 -04007943 down_read(&info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04007944again:
7945 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04007946 spin_lock(&cache->lock);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007947 btrfs_info(fs_info,
7948 "block group %llu has %llu bytes, %llu used %llu pinned %llu reserved %s",
7949 cache->key.objectid, cache->key.offset,
7950 btrfs_block_group_used(&cache->item), cache->pinned,
7951 cache->reserved, cache->ro ? "[readonly]" : "");
Josef Bacik0f9dd462008-09-23 13:14:11 -04007952 btrfs_dump_free_space(cache, bytes);
7953 spin_unlock(&cache->lock);
7954 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04007955 if (++index < BTRFS_NR_RAID_TYPES)
7956 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04007957 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04007958}
Zheng Yane8569812008-09-26 10:05:48 -04007959
Wang Xiaoguang18513092016-07-25 15:51:40 +08007960int btrfs_reserve_extent(struct btrfs_root *root, u64 ram_bytes,
Yan Zheng11833d62009-09-11 16:11:19 -04007961 u64 num_bytes, u64 min_alloc_size,
7962 u64 empty_size, u64 hint_byte,
Miao Xiee570fd22014-06-19 10:42:50 +08007963 struct btrfs_key *ins, int is_data, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05007964{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007965 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik36af4e02015-09-25 16:13:11 -04007966 bool final_tried = num_bytes == min_alloc_size;
David Sterbab6919a52013-04-29 13:39:40 +00007967 u64 flags;
Chris Masonfec577f2007-02-26 10:40:21 -05007968 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04007969
David Sterbab6919a52013-04-29 13:39:40 +00007970 flags = btrfs_get_alloc_profile(root, is_data);
Chris Mason98d20f62008-04-14 09:46:10 -04007971again:
Chris Masondb945352007-10-15 16:15:53 -04007972 WARN_ON(num_bytes < root->sectorsize);
Wang Xiaoguang18513092016-07-25 15:51:40 +08007973 ret = find_free_extent(root, ram_bytes, num_bytes, empty_size,
7974 hint_byte, ins, flags, delalloc);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01007975 if (!ret && !is_data) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007976 btrfs_dec_block_group_reservations(fs_info, ins->objectid);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01007977 } else if (ret == -ENOSPC) {
Miao Xiea4820392013-09-09 13:19:42 +08007978 if (!final_tried && ins->offset) {
7979 num_bytes = min(num_bytes >> 1, ins->offset);
Zach Brown24542bf2012-11-16 00:04:43 +00007980 num_bytes = round_down(num_bytes, root->sectorsize);
Miao Xie9e622d62012-01-26 15:01:12 -05007981 num_bytes = max(num_bytes, min_alloc_size);
Wang Xiaoguang18513092016-07-25 15:51:40 +08007982 ram_bytes = num_bytes;
Miao Xie9e622d62012-01-26 15:01:12 -05007983 if (num_bytes == min_alloc_size)
7984 final_tried = true;
7985 goto again;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007986 } else if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Miao Xie9e622d62012-01-26 15:01:12 -05007987 struct btrfs_space_info *sinfo;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007988
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007989 sinfo = __find_space_info(fs_info, flags);
Jeff Mahoney5d163e02016-09-20 10:05:00 -04007990 btrfs_err(root->fs_info,
7991 "allocation failed flags %llu, wanted %llu",
7992 flags, num_bytes);
Jeff Mahoney53804282012-03-01 14:56:28 +01007993 if (sinfo)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007994 dump_space_info(fs_info, sinfo, num_bytes, 1);
Miao Xie9e622d62012-01-26 15:01:12 -05007995 }
Chris Mason925baed2008-06-25 16:01:30 -04007996 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04007997
7998 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007999}
8000
Chris Masone688b7252011-10-31 20:52:39 -04008001static int __btrfs_free_reserved_extent(struct btrfs_root *root,
Miao Xiee570fd22014-06-19 10:42:50 +08008002 u64 start, u64 len,
8003 int pin, int delalloc)
Chris Mason65b51a02008-08-01 15:11:20 -04008004{
Josef Bacik0f9dd462008-09-23 13:14:11 -04008005 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05008006 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008007
Josef Bacik0f9dd462008-09-23 13:14:11 -04008008 cache = btrfs_lookup_block_group(root->fs_info, start);
8009 if (!cache) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008010 btrfs_err(root->fs_info, "Unable to find block group for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02008011 start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008012 return -ENOSPC;
8013 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05008014
Chris Masone688b7252011-10-31 20:52:39 -04008015 if (pin)
8016 pin_down_extent(root, cache, start, len, 1);
8017 else {
Jeff Mahoney3cdde222016-06-09 21:38:35 -04008018 if (btrfs_test_opt(root->fs_info, DISCARD))
Filipe Mananadcc82f42015-03-23 14:07:40 +00008019 ret = btrfs_discard_extent(root, start, len, NULL);
Chris Masone688b7252011-10-31 20:52:39 -04008020 btrfs_add_free_space(cache, start, len);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08008021 btrfs_free_reserved_bytes(cache, len, delalloc);
Josef Bacik31bada72016-03-25 13:25:58 -04008022 trace_btrfs_reserved_extent_free(root, start, len);
Chris Masone688b7252011-10-31 20:52:39 -04008023 }
Dongsheng Yang31193212014-12-12 16:44:35 +08008024
Chris Masonfa9c0d792009-04-03 09:47:43 -04008025 btrfs_put_block_group(cache);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008026 return ret;
8027}
8028
Chris Masone688b7252011-10-31 20:52:39 -04008029int btrfs_free_reserved_extent(struct btrfs_root *root,
Miao Xiee570fd22014-06-19 10:42:50 +08008030 u64 start, u64 len, int delalloc)
Chris Masone688b7252011-10-31 20:52:39 -04008031{
Miao Xiee570fd22014-06-19 10:42:50 +08008032 return __btrfs_free_reserved_extent(root, start, len, 0, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04008033}
8034
8035int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root,
8036 u64 start, u64 len)
8037{
Miao Xiee570fd22014-06-19 10:42:50 +08008038 return __btrfs_free_reserved_extent(root, start, len, 1, 0);
Chris Masone688b7252011-10-31 20:52:39 -04008039}
8040
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008041static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
8042 struct btrfs_root *root,
8043 u64 parent, u64 root_objectid,
8044 u64 flags, u64 owner, u64 offset,
8045 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008046{
8047 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008048 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008049 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008050 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008051 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008052 struct extent_buffer *leaf;
8053 int type;
8054 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04008055
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008056 if (parent > 0)
8057 type = BTRFS_SHARED_DATA_REF_KEY;
8058 else
8059 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04008060
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008061 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05008062
8063 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00008064 if (!path)
8065 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05008066
Chris Masonb9473432009-03-13 11:00:37 -04008067 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008068 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
8069 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008070 if (ret) {
8071 btrfs_free_path(path);
8072 return ret;
8073 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04008074
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008075 leaf = path->nodes[0];
8076 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05008077 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008078 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
8079 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8080 btrfs_set_extent_flags(leaf, extent_item,
8081 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05008082
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008083 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
8084 btrfs_set_extent_inline_ref_type(leaf, iref, type);
8085 if (parent > 0) {
8086 struct btrfs_shared_data_ref *ref;
8087 ref = (struct btrfs_shared_data_ref *)(iref + 1);
8088 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
8089 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
8090 } else {
8091 struct btrfs_extent_data_ref *ref;
8092 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
8093 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
8094 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
8095 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
8096 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
8097 }
Chris Mason47e4bb92008-02-01 14:51:59 -05008098
8099 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05008100 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04008101
Omar Sandoval1e144fb2015-09-29 20:50:37 -07008102 ret = remove_from_free_space_tree(trans, fs_info, ins->objectid,
8103 ins->offset);
8104 if (ret)
8105 return ret;
8106
Josef Bacikce93ec52014-11-17 15:45:48 -05008107 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008108 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008109 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02008110 ins->objectid, ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05008111 BUG();
8112 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04008113 trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008114 return ret;
8115}
8116
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008117static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
8118 struct btrfs_root *root,
8119 u64 parent, u64 root_objectid,
8120 u64 flags, struct btrfs_disk_key *key,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01008121 int level, struct btrfs_key *ins)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008122{
8123 int ret;
8124 struct btrfs_fs_info *fs_info = root->fs_info;
8125 struct btrfs_extent_item *extent_item;
8126 struct btrfs_tree_block_info *block_info;
8127 struct btrfs_extent_inline_ref *iref;
8128 struct btrfs_path *path;
8129 struct extent_buffer *leaf;
Josef Bacik3173a182013-03-07 14:22:04 -05008130 u32 size = sizeof(*extent_item) + sizeof(*iref);
Josef Bacikfcebe452014-05-13 17:30:47 -07008131 u64 num_bytes = ins->offset;
Josef Bacik3173a182013-03-07 14:22:04 -05008132 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
8133 SKINNY_METADATA);
8134
8135 if (!skinny_metadata)
8136 size += sizeof(*block_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008137
8138 path = btrfs_alloc_path();
Josef Bacik857cc2f2013-10-07 15:21:08 -04008139 if (!path) {
8140 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
David Sterba707e8a02014-06-04 19:22:26 +02008141 root->nodesize);
Mark Fashehd8926bb2011-07-13 10:38:47 -07008142 return -ENOMEM;
Josef Bacik857cc2f2013-10-07 15:21:08 -04008143 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008144
8145 path->leave_spinning = 1;
8146 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
8147 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008148 if (ret) {
Chris Masondd825252015-04-01 08:36:05 -07008149 btrfs_free_path(path);
Josef Bacik857cc2f2013-10-07 15:21:08 -04008150 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
David Sterba707e8a02014-06-04 19:22:26 +02008151 root->nodesize);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008152 return ret;
8153 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008154
8155 leaf = path->nodes[0];
8156 extent_item = btrfs_item_ptr(leaf, path->slots[0],
8157 struct btrfs_extent_item);
8158 btrfs_set_extent_refs(leaf, extent_item, 1);
8159 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8160 btrfs_set_extent_flags(leaf, extent_item,
8161 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008162
Josef Bacik3173a182013-03-07 14:22:04 -05008163 if (skinny_metadata) {
8164 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
David Sterba707e8a02014-06-04 19:22:26 +02008165 num_bytes = root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05008166 } else {
8167 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
8168 btrfs_set_tree_block_key(leaf, block_info, key);
8169 btrfs_set_tree_block_level(leaf, block_info, level);
8170 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
8171 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008172
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008173 if (parent > 0) {
8174 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
8175 btrfs_set_extent_inline_ref_type(leaf, iref,
8176 BTRFS_SHARED_BLOCK_REF_KEY);
8177 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
8178 } else {
8179 btrfs_set_extent_inline_ref_type(leaf, iref,
8180 BTRFS_TREE_BLOCK_REF_KEY);
8181 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
8182 }
8183
8184 btrfs_mark_buffer_dirty(leaf);
8185 btrfs_free_path(path);
8186
Omar Sandoval1e144fb2015-09-29 20:50:37 -07008187 ret = remove_from_free_space_tree(trans, fs_info, ins->objectid,
8188 num_bytes);
8189 if (ret)
8190 return ret;
8191
Josef Bacikce93ec52014-11-17 15:45:48 -05008192 ret = update_block_group(trans, root, ins->objectid, root->nodesize,
8193 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008194 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008195 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02008196 ins->objectid, ins->offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008197 BUG();
8198 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04008199
David Sterba707e8a02014-06-04 19:22:26 +02008200 trace_btrfs_reserved_extent_alloc(root, ins->objectid, root->nodesize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008201 return ret;
8202}
8203
8204int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
8205 struct btrfs_root *root,
8206 u64 root_objectid, u64 owner,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08008207 u64 offset, u64 ram_bytes,
8208 struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008209{
8210 int ret;
Chris Mason1c2308f2008-09-23 13:14:13 -04008211
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008212 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04008213
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008214 ret = btrfs_add_delayed_data_ref(root->fs_info, trans, ins->objectid,
8215 ins->offset, 0,
8216 root_objectid, owner, offset,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08008217 ram_bytes, BTRFS_ADD_DELAYED_EXTENT,
8218 NULL);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008219 return ret;
8220}
Chris Masone02119d2008-09-05 16:13:11 -04008221
8222/*
8223 * this is used by the tree logging recovery code. It records that
8224 * an extent has been allocated and makes sure to clear the free
8225 * space cache bits as well
8226 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008227int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
8228 struct btrfs_root *root,
8229 u64 root_objectid, u64 owner, u64 offset,
8230 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04008231{
8232 int ret;
8233 struct btrfs_block_group_cache *block_group;
Wang Xiaoguanged7a6942016-08-26 11:33:14 +08008234 struct btrfs_space_info *space_info;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008235
8236 /*
8237 * Mixed block groups will exclude before processing the log so we only
Nicholas D Steeves01327612016-05-19 21:18:45 -04008238 * need to do the exclude dance if this fs isn't mixed.
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008239 */
8240 if (!btrfs_fs_incompat(root->fs_info, MIXED_GROUPS)) {
8241 ret = __exclude_logged_extent(root, ins->objectid, ins->offset);
8242 if (ret)
8243 return ret;
8244 }
Chris Masone02119d2008-09-05 16:13:11 -04008245
Chris Masone02119d2008-09-05 16:13:11 -04008246 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008247 if (!block_group)
8248 return -EINVAL;
Yan Zheng11833d62009-09-11 16:11:19 -04008249
Wang Xiaoguanged7a6942016-08-26 11:33:14 +08008250 space_info = block_group->space_info;
8251 spin_lock(&space_info->lock);
8252 spin_lock(&block_group->lock);
8253 space_info->bytes_reserved += ins->offset;
8254 block_group->reserved += ins->offset;
8255 spin_unlock(&block_group->lock);
8256 spin_unlock(&space_info->lock);
8257
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008258 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
8259 0, owner, offset, ins, 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04008260 btrfs_put_block_group(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04008261 return ret;
8262}
8263
Eric Sandeen48a3b632013-04-25 20:41:01 +00008264static struct extent_buffer *
8265btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
David Sterbafe864572014-06-15 02:28:42 +02008266 u64 bytenr, int level)
Chris Mason65b51a02008-08-01 15:11:20 -04008267{
8268 struct extent_buffer *buf;
8269
David Sterbaa83fffb2014-06-15 02:39:54 +02008270 buf = btrfs_find_create_tree_block(root, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07008271 if (IS_ERR(buf))
8272 return buf;
8273
Qu Wenruo51255642018-08-21 09:53:47 +08008274 /*
8275 * Extra safety check in case the extent tree is corrupted and extent
8276 * allocator chooses to use a tree block which is already used and
8277 * locked.
8278 */
8279 if (buf->lock_owner == current->pid) {
8280 btrfs_err_rl(root->fs_info,
8281"tree block %llu owner %llu already locked by pid=%d, extent tree corruption detected",
8282 buf->start, btrfs_header_owner(buf), current->pid);
8283 free_extent_buffer(buf);
8284 return ERR_PTR(-EUCLEAN);
8285 }
8286
Chris Mason65b51a02008-08-01 15:11:20 -04008287 btrfs_set_header_generation(buf, trans->transid);
Chris Mason85d4e462011-07-26 16:11:19 -04008288 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04008289 btrfs_tree_lock(buf);
Daniel Dressler01d58472014-11-21 17:15:07 +09008290 clean_tree_block(trans, root->fs_info, buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05008291 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
Chris Masonb4ce94d2009-02-04 09:25:08 -05008292
8293 btrfs_set_lock_blocking(buf);
David Sterba4db8c522015-12-03 13:06:46 +01008294 set_extent_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05008295
Chris Masond0c803c2008-09-11 16:17:57 -04008296 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Filipe Manana656f30d2014-09-26 12:25:56 +01008297 buf->log_index = root->log_transid % 2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008298 /*
8299 * we allow two log transactions at a time, use different
8300 * EXENT bit to differentiate dirty pages.
8301 */
Filipe Manana656f30d2014-09-26 12:25:56 +01008302 if (buf->log_index == 0)
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008303 set_extent_dirty(&root->dirty_log_pages, buf->start,
8304 buf->start + buf->len - 1, GFP_NOFS);
8305 else
8306 set_extent_new(&root->dirty_log_pages, buf->start,
David Sterba3744dbe2016-04-26 23:54:39 +02008307 buf->start + buf->len - 1);
Chris Masond0c803c2008-09-11 16:17:57 -04008308 } else {
Filipe Manana656f30d2014-09-26 12:25:56 +01008309 buf->log_index = -1;
Chris Masond0c803c2008-09-11 16:17:57 -04008310 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
8311 buf->start + buf->len - 1, GFP_NOFS);
8312 }
Jeff Mahoney64c12922016-06-08 00:36:38 -04008313 trans->dirty = true;
Chris Masonb4ce94d2009-02-04 09:25:08 -05008314 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04008315 return buf;
8316}
8317
Yan, Zhengf0486c62010-05-16 10:46:25 -04008318static struct btrfs_block_rsv *
8319use_block_rsv(struct btrfs_trans_handle *trans,
8320 struct btrfs_root *root, u32 blocksize)
8321{
8322 struct btrfs_block_rsv *block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00008323 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008324 int ret;
Miao Xied88033d2013-05-13 13:55:12 +00008325 bool global_updated = false;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008326
8327 block_rsv = get_block_rsv(trans, root);
8328
Miao Xieb586b322013-05-13 13:55:10 +00008329 if (unlikely(block_rsv->size == 0))
8330 goto try_reserve;
Miao Xied88033d2013-05-13 13:55:12 +00008331again:
Yan, Zhengf0486c62010-05-16 10:46:25 -04008332 ret = block_rsv_use_bytes(block_rsv, blocksize);
8333 if (!ret)
8334 return block_rsv;
8335
Miao Xieb586b322013-05-13 13:55:10 +00008336 if (block_rsv->failfast)
8337 return ERR_PTR(ret);
8338
Miao Xied88033d2013-05-13 13:55:12 +00008339 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
8340 global_updated = true;
8341 update_global_block_rsv(root->fs_info);
8342 goto again;
8343 }
8344
Jeff Mahoney3cdde222016-06-09 21:38:35 -04008345 if (btrfs_test_opt(root->fs_info, ENOSPC_DEBUG)) {
Miao Xieb586b322013-05-13 13:55:10 +00008346 static DEFINE_RATELIMIT_STATE(_rs,
8347 DEFAULT_RATELIMIT_INTERVAL * 10,
8348 /*DEFAULT_RATELIMIT_BURST*/ 1);
8349 if (__ratelimit(&_rs))
8350 WARN(1, KERN_DEBUG
Frank Holtonefe120a2013-12-20 11:37:06 -05008351 "BTRFS: block rsv returned %d\n", ret);
Miao Xieb586b322013-05-13 13:55:10 +00008352 }
8353try_reserve:
8354 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
8355 BTRFS_RESERVE_NO_FLUSH);
8356 if (!ret)
8357 return block_rsv;
8358 /*
8359 * If we couldn't reserve metadata bytes try and use some from
Miao Xie5881cfc2013-05-13 13:55:11 +00008360 * the global reserve if its space type is the same as the global
8361 * reservation.
Miao Xieb586b322013-05-13 13:55:10 +00008362 */
Miao Xie5881cfc2013-05-13 13:55:11 +00008363 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
8364 block_rsv->space_info == global_rsv->space_info) {
Miao Xieb586b322013-05-13 13:55:10 +00008365 ret = block_rsv_use_bytes(global_rsv, blocksize);
8366 if (!ret)
8367 return global_rsv;
8368 }
8369 return ERR_PTR(ret);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008370}
8371
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05008372static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
8373 struct btrfs_block_rsv *block_rsv, u32 blocksize)
Yan, Zhengf0486c62010-05-16 10:46:25 -04008374{
8375 block_rsv_add_bytes(block_rsv, blocksize, 0);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05008376 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008377}
8378
Chris Masonfec577f2007-02-26 10:40:21 -05008379/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04008380 * finds a free extent and does all the dirty work required for allocation
Omar Sandoval67b78592015-02-24 02:47:04 -08008381 * returns the tree buffer or an ERR_PTR on error.
Chris Masonfec577f2007-02-26 10:40:21 -05008382 */
David Sterba4d75f8a2014-06-15 01:54:12 +02008383struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans,
8384 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008385 u64 parent, u64 root_objectid,
8386 struct btrfs_disk_key *key, int level,
Jan Schmidt5581a512012-05-16 17:04:52 +02008387 u64 hint, u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05008388{
Chris Masone2fa7222007-03-12 16:22:34 -04008389 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008390 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04008391 struct extent_buffer *buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08008392 struct btrfs_delayed_extent_op *extent_op;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008393 u64 flags = 0;
8394 int ret;
David Sterba4d75f8a2014-06-15 01:54:12 +02008395 u32 blocksize = root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05008396 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
8397 SKINNY_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008398
David Sterba05653ef2016-07-15 15:23:37 +02008399#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -04008400 if (btrfs_is_testing(root->fs_info)) {
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04008401 buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr,
David Sterbafe864572014-06-15 02:28:42 +02008402 level);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04008403 if (!IS_ERR(buf))
8404 root->alloc_bytenr += blocksize;
8405 return buf;
8406 }
David Sterba05653ef2016-07-15 15:23:37 +02008407#endif
David Sterbafccb84c2014-09-29 23:53:21 +02008408
Yan, Zhengf0486c62010-05-16 10:46:25 -04008409 block_rsv = use_block_rsv(trans, root, blocksize);
8410 if (IS_ERR(block_rsv))
8411 return ERR_CAST(block_rsv);
8412
Wang Xiaoguang18513092016-07-25 15:51:40 +08008413 ret = btrfs_reserve_extent(root, blocksize, blocksize, blocksize,
Miao Xiee570fd22014-06-19 10:42:50 +08008414 empty_size, hint, &ins, 0, 0);
Omar Sandoval67b78592015-02-24 02:47:04 -08008415 if (ret)
8416 goto out_unuse;
Chris Mason55c69072008-01-09 15:55:33 -05008417
David Sterbafe864572014-06-15 02:28:42 +02008418 buf = btrfs_init_new_buffer(trans, root, ins.objectid, level);
Omar Sandoval67b78592015-02-24 02:47:04 -08008419 if (IS_ERR(buf)) {
8420 ret = PTR_ERR(buf);
8421 goto out_free_reserved;
8422 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008423
8424 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
8425 if (parent == 0)
8426 parent = ins.objectid;
8427 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
8428 } else
8429 BUG_ON(parent > 0);
8430
8431 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
Miao Xie78a61842012-11-21 02:21:28 +00008432 extent_op = btrfs_alloc_delayed_extent_op();
Omar Sandoval67b78592015-02-24 02:47:04 -08008433 if (!extent_op) {
8434 ret = -ENOMEM;
8435 goto out_free_buf;
8436 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008437 if (key)
8438 memcpy(&extent_op->key, key, sizeof(extent_op->key));
8439 else
8440 memset(&extent_op->key, 0, sizeof(extent_op->key));
8441 extent_op->flags_to_set = flags;
David Sterba35b3ad52015-11-30 16:51:29 +01008442 extent_op->update_key = skinny_metadata ? false : true;
8443 extent_op->update_flags = true;
8444 extent_op->is_data = false;
Josef Bacikb1c79e02013-05-09 13:49:30 -04008445 extent_op->level = level;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008446
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008447 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
Omar Sandoval67b78592015-02-24 02:47:04 -08008448 ins.objectid, ins.offset,
8449 parent, root_objectid, level,
8450 BTRFS_ADD_DELAYED_EXTENT,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01008451 extent_op);
Omar Sandoval67b78592015-02-24 02:47:04 -08008452 if (ret)
8453 goto out_free_delayed;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008454 }
Chris Masonfec577f2007-02-26 10:40:21 -05008455 return buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08008456
8457out_free_delayed:
8458 btrfs_free_delayed_extent_op(extent_op);
8459out_free_buf:
8460 free_extent_buffer(buf);
8461out_free_reserved:
8462 btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 0);
8463out_unuse:
8464 unuse_block_rsv(root->fs_info, block_rsv, blocksize);
8465 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05008466}
Chris Masona28ec192007-03-06 20:08:01 -05008467
Yan Zheng2c47e6052009-06-27 21:07:35 -04008468struct walk_control {
8469 u64 refs[BTRFS_MAX_LEVEL];
8470 u64 flags[BTRFS_MAX_LEVEL];
8471 struct btrfs_key update_progress;
8472 int stage;
8473 int level;
8474 int shared_level;
8475 int update_ref;
8476 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008477 int reada_slot;
8478 int reada_count;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008479 int for_reloc;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008480};
8481
8482#define DROP_REFERENCE 1
8483#define UPDATE_BACKREF 2
8484
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008485static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
8486 struct btrfs_root *root,
8487 struct walk_control *wc,
8488 struct btrfs_path *path)
8489{
8490 u64 bytenr;
8491 u64 generation;
8492 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008493 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008494 u32 nritems;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008495 struct btrfs_key key;
8496 struct extent_buffer *eb;
8497 int ret;
8498 int slot;
8499 int nread = 0;
8500
8501 if (path->slots[wc->level] < wc->reada_slot) {
8502 wc->reada_count = wc->reada_count * 2 / 3;
8503 wc->reada_count = max(wc->reada_count, 2);
8504 } else {
8505 wc->reada_count = wc->reada_count * 3 / 2;
8506 wc->reada_count = min_t(int, wc->reada_count,
8507 BTRFS_NODEPTRS_PER_BLOCK(root));
8508 }
8509
8510 eb = path->nodes[wc->level];
8511 nritems = btrfs_header_nritems(eb);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008512
8513 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
8514 if (nread >= wc->reada_count)
8515 break;
8516
8517 cond_resched();
8518 bytenr = btrfs_node_blockptr(eb, slot);
8519 generation = btrfs_node_ptr_generation(eb, slot);
8520
8521 if (slot == path->slots[wc->level])
8522 goto reada;
8523
8524 if (wc->stage == UPDATE_BACKREF &&
8525 generation <= root->root_key.offset)
8526 continue;
8527
Yan, Zheng94fcca92009-10-09 09:25:16 -04008528 /* We don't lock the tree block, it's OK to be racy here */
Josef Bacik3173a182013-03-07 14:22:04 -05008529 ret = btrfs_lookup_extent_info(trans, root, bytenr,
8530 wc->level - 1, 1, &refs,
8531 &flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008532 /* We don't care about errors in readahead. */
8533 if (ret < 0)
8534 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008535 BUG_ON(refs == 0);
8536
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008537 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008538 if (refs == 1)
8539 goto reada;
8540
Yan, Zheng94fcca92009-10-09 09:25:16 -04008541 if (wc->level == 1 &&
8542 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8543 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008544 if (!wc->update_ref ||
8545 generation <= root->root_key.offset)
8546 continue;
8547 btrfs_node_key_to_cpu(eb, &key, slot);
8548 ret = btrfs_comp_cpu_keys(&key,
8549 &wc->update_progress);
8550 if (ret < 0)
8551 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008552 } else {
8553 if (wc->level == 1 &&
8554 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8555 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008556 }
8557reada:
David Sterbad3e46fe2014-06-15 02:04:19 +02008558 readahead_tree_block(root, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008559 nread++;
8560 }
8561 wc->reada_slot = slot;
8562}
8563
Mark Fasheh11526512014-07-17 12:39:01 -07008564static int account_leaf_items(struct btrfs_trans_handle *trans,
8565 struct btrfs_root *root,
8566 struct extent_buffer *eb)
8567{
8568 int nr = btrfs_header_nritems(eb);
Mark Fasheh82bd1012015-11-05 14:38:00 -08008569 int i, extent_type, ret;
Mark Fasheh11526512014-07-17 12:39:01 -07008570 struct btrfs_key key;
8571 struct btrfs_file_extent_item *fi;
8572 u64 bytenr, num_bytes;
8573
Mark Fasheh82bd1012015-11-05 14:38:00 -08008574 /* We can be called directly from walk_up_proc() */
Josef Bacikafcdd122016-09-02 15:40:02 -04008575 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &root->fs_info->flags))
Mark Fasheh82bd1012015-11-05 14:38:00 -08008576 return 0;
8577
Mark Fasheh11526512014-07-17 12:39:01 -07008578 for (i = 0; i < nr; i++) {
8579 btrfs_item_key_to_cpu(eb, &key, i);
8580
8581 if (key.type != BTRFS_EXTENT_DATA_KEY)
8582 continue;
8583
8584 fi = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
8585 /* filter out non qgroup-accountable extents */
8586 extent_type = btrfs_file_extent_type(eb, fi);
8587
8588 if (extent_type == BTRFS_FILE_EXTENT_INLINE)
8589 continue;
8590
8591 bytenr = btrfs_file_extent_disk_bytenr(eb, fi);
8592 if (!bytenr)
8593 continue;
8594
8595 num_bytes = btrfs_file_extent_disk_num_bytes(eb, fi);
Mark Fasheh82bd1012015-11-05 14:38:00 -08008596
Qu Wenruocb93b522016-08-15 10:36:50 +08008597 ret = btrfs_qgroup_insert_dirty_extent(trans, root->fs_info,
8598 bytenr, num_bytes, GFP_NOFS);
Mark Fasheh82bd1012015-11-05 14:38:00 -08008599 if (ret)
8600 return ret;
Mark Fasheh11526512014-07-17 12:39:01 -07008601 }
8602 return 0;
8603}
8604
8605/*
8606 * Walk up the tree from the bottom, freeing leaves and any interior
8607 * nodes which have had all slots visited. If a node (leaf or
8608 * interior) is freed, the node above it will have it's slot
8609 * incremented. The root node will never be freed.
8610 *
8611 * At the end of this function, we should have a path which has all
8612 * slots incremented to the next position for a search. If we need to
8613 * read a new node it will be NULL and the node above it will have the
8614 * correct slot selected for a later read.
8615 *
8616 * If we increment the root nodes slot counter past the number of
8617 * elements, 1 is returned to signal completion of the search.
8618 */
8619static int adjust_slots_upwards(struct btrfs_root *root,
8620 struct btrfs_path *path, int root_level)
8621{
8622 int level = 0;
8623 int nr, slot;
8624 struct extent_buffer *eb;
8625
8626 if (root_level == 0)
8627 return 1;
8628
8629 while (level <= root_level) {
8630 eb = path->nodes[level];
8631 nr = btrfs_header_nritems(eb);
8632 path->slots[level]++;
8633 slot = path->slots[level];
8634 if (slot >= nr || level == 0) {
8635 /*
8636 * Don't free the root - we will detect this
8637 * condition after our loop and return a
8638 * positive value for caller to stop walking the tree.
8639 */
8640 if (level != root_level) {
8641 btrfs_tree_unlock_rw(eb, path->locks[level]);
8642 path->locks[level] = 0;
8643
8644 free_extent_buffer(eb);
8645 path->nodes[level] = NULL;
8646 path->slots[level] = 0;
8647 }
8648 } else {
8649 /*
8650 * We have a valid slot to walk back down
8651 * from. Stop here so caller can process these
8652 * new nodes.
8653 */
8654 break;
8655 }
8656
8657 level++;
8658 }
8659
8660 eb = path->nodes[root_level];
8661 if (path->slots[root_level] >= btrfs_header_nritems(eb))
8662 return 1;
8663
8664 return 0;
8665}
8666
8667/*
8668 * root_eb is the subtree root and is locked before this function is called.
8669 */
8670static int account_shared_subtree(struct btrfs_trans_handle *trans,
8671 struct btrfs_root *root,
8672 struct extent_buffer *root_eb,
8673 u64 root_gen,
8674 int root_level)
8675{
8676 int ret = 0;
8677 int level;
8678 struct extent_buffer *eb = root_eb;
8679 struct btrfs_path *path = NULL;
8680
8681 BUG_ON(root_level < 0 || root_level > BTRFS_MAX_LEVEL);
8682 BUG_ON(root_eb == NULL);
8683
Josef Bacikafcdd122016-09-02 15:40:02 -04008684 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &root->fs_info->flags))
Mark Fasheh11526512014-07-17 12:39:01 -07008685 return 0;
8686
8687 if (!extent_buffer_uptodate(root_eb)) {
8688 ret = btrfs_read_buffer(root_eb, root_gen);
8689 if (ret)
8690 goto out;
8691 }
8692
8693 if (root_level == 0) {
8694 ret = account_leaf_items(trans, root, root_eb);
8695 goto out;
8696 }
8697
8698 path = btrfs_alloc_path();
8699 if (!path)
8700 return -ENOMEM;
8701
8702 /*
8703 * Walk down the tree. Missing extent blocks are filled in as
8704 * we go. Metadata is accounted every time we read a new
8705 * extent block.
8706 *
8707 * When we reach a leaf, we account for file extent items in it,
8708 * walk back up the tree (adjusting slot pointers as we go)
8709 * and restart the search process.
8710 */
8711 extent_buffer_get(root_eb); /* For path */
8712 path->nodes[root_level] = root_eb;
8713 path->slots[root_level] = 0;
8714 path->locks[root_level] = 0; /* so release_path doesn't try to unlock */
8715walk_down:
8716 level = root_level;
8717 while (level >= 0) {
8718 if (path->nodes[level] == NULL) {
Mark Fasheh11526512014-07-17 12:39:01 -07008719 int parent_slot;
8720 u64 child_gen;
8721 u64 child_bytenr;
8722
8723 /* We need to get child blockptr/gen from
8724 * parent before we can read it. */
8725 eb = path->nodes[level + 1];
8726 parent_slot = path->slots[level + 1];
8727 child_bytenr = btrfs_node_blockptr(eb, parent_slot);
8728 child_gen = btrfs_node_ptr_generation(eb, parent_slot);
8729
David Sterbace86cd52014-06-15 01:07:32 +02008730 eb = read_tree_block(root, child_bytenr, child_gen);
Liu Bo64c043d2015-05-25 17:30:15 +08008731 if (IS_ERR(eb)) {
8732 ret = PTR_ERR(eb);
8733 goto out;
8734 } else if (!extent_buffer_uptodate(eb)) {
Liu Bo8635eda2015-05-25 17:30:14 +08008735 free_extent_buffer(eb);
Liu Bo64c043d2015-05-25 17:30:15 +08008736 ret = -EIO;
Mark Fasheh11526512014-07-17 12:39:01 -07008737 goto out;
8738 }
8739
8740 path->nodes[level] = eb;
8741 path->slots[level] = 0;
8742
8743 btrfs_tree_read_lock(eb);
8744 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
8745 path->locks[level] = BTRFS_READ_LOCK_BLOCKING;
Mark Fasheh82bd1012015-11-05 14:38:00 -08008746
Qu Wenruocb93b522016-08-15 10:36:50 +08008747 ret = btrfs_qgroup_insert_dirty_extent(trans,
8748 root->fs_info, child_bytenr,
8749 root->nodesize, GFP_NOFS);
Mark Fasheh82bd1012015-11-05 14:38:00 -08008750 if (ret)
8751 goto out;
Mark Fasheh11526512014-07-17 12:39:01 -07008752 }
8753
8754 if (level == 0) {
8755 ret = account_leaf_items(trans, root, path->nodes[level]);
8756 if (ret)
8757 goto out;
8758
8759 /* Nonzero return here means we completed our search */
8760 ret = adjust_slots_upwards(root, path, root_level);
8761 if (ret)
8762 break;
8763
8764 /* Restart search with new slots */
8765 goto walk_down;
8766 }
8767
8768 level--;
8769 }
8770
8771 ret = 0;
8772out:
8773 btrfs_free_path(path);
8774
8775 return ret;
8776}
8777
Chris Mason9aca1d52007-03-13 11:09:37 -04008778/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008779 * helper to process tree block while walking down the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04008780 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04008781 * when wc->stage == UPDATE_BACKREF, this function updates
8782 * back refs for pointers in the block.
8783 *
8784 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04008785 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008786static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
8787 struct btrfs_root *root,
8788 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008789 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04008790{
8791 int level = wc->level;
8792 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04008793 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
8794 int ret;
8795
8796 if (wc->stage == UPDATE_BACKREF &&
8797 btrfs_header_owner(eb) != root->root_key.objectid)
8798 return 1;
8799
8800 /*
8801 * when reference count of tree block is 1, it won't increase
8802 * again. once full backref flag is set, we never clear it.
8803 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04008804 if (lookup_info &&
8805 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
8806 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008807 BUG_ON(!path->locks[level]);
8808 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05008809 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008810 &wc->refs[level],
8811 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008812 BUG_ON(ret == -ENOMEM);
8813 if (ret)
8814 return ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008815 BUG_ON(wc->refs[level] == 0);
8816 }
8817
Yan Zheng2c47e6052009-06-27 21:07:35 -04008818 if (wc->stage == DROP_REFERENCE) {
8819 if (wc->refs[level] > 1)
8820 return 1;
8821
8822 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04008823 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008824 path->locks[level] = 0;
8825 }
8826 return 0;
8827 }
8828
8829 /* wc->stage == UPDATE_BACKREF */
8830 if (!(wc->flags[level] & flag)) {
8831 BUG_ON(!path->locks[level]);
Josef Bacike339a6b2014-07-02 10:54:25 -07008832 ret = btrfs_inc_ref(trans, root, eb, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008833 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07008834 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008835 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008836 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
Josef Bacikb1c79e02013-05-09 13:49:30 -04008837 eb->len, flag,
8838 btrfs_header_level(eb), 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008839 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008840 wc->flags[level] |= flag;
8841 }
8842
8843 /*
8844 * the block is shared by multiple trees, so it's not good to
8845 * keep the tree lock
8846 */
8847 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04008848 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008849 path->locks[level] = 0;
8850 }
8851 return 0;
8852}
8853
8854/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008855 * helper to process tree block pointer.
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008856 *
8857 * when wc->stage == DROP_REFERENCE, this function checks
8858 * reference count of the block pointed to. if the block
8859 * is shared and we need update back refs for the subtree
8860 * rooted at the block, this function changes wc->stage to
8861 * UPDATE_BACKREF. if the block is shared and there is no
8862 * need to update back, this function drops the reference
8863 * to the block.
8864 *
8865 * NOTE: return value 1 means we should stop walking down.
8866 */
8867static noinline int do_walk_down(struct btrfs_trans_handle *trans,
8868 struct btrfs_root *root,
8869 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008870 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008871{
8872 u64 bytenr;
8873 u64 generation;
8874 u64 parent;
8875 u32 blocksize;
8876 struct btrfs_key key;
8877 struct extent_buffer *next;
8878 int level = wc->level;
8879 int reada = 0;
8880 int ret = 0;
Mark Fasheh11526512014-07-17 12:39:01 -07008881 bool need_account = false;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008882
8883 generation = btrfs_node_ptr_generation(path->nodes[level],
8884 path->slots[level]);
8885 /*
8886 * if the lower level block was created before the snapshot
8887 * was created, we know there is no need to update back refs
8888 * for the subtree
8889 */
8890 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04008891 generation <= root->root_key.offset) {
8892 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008893 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008894 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008895
8896 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
David Sterba707e8a02014-06-04 19:22:26 +02008897 blocksize = root->nodesize;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008898
Daniel Dressler01d58472014-11-21 17:15:07 +09008899 next = btrfs_find_tree_block(root->fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008900 if (!next) {
David Sterbaa83fffb2014-06-15 02:39:54 +02008901 next = btrfs_find_create_tree_block(root, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07008902 if (IS_ERR(next))
8903 return PTR_ERR(next);
8904
Josef Bacikb2aaaa32013-07-05 17:05:38 -04008905 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
8906 level - 1);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008907 reada = 1;
8908 }
8909 btrfs_tree_lock(next);
8910 btrfs_set_lock_blocking(next);
8911
Josef Bacik3173a182013-03-07 14:22:04 -05008912 ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008913 &wc->refs[level - 1],
8914 &wc->flags[level - 1]);
Josef Bacik48672682016-09-23 13:23:28 +02008915 if (ret < 0)
8916 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008917
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008918 if (unlikely(wc->refs[level - 1] == 0)) {
8919 btrfs_err(root->fs_info, "Missing references.");
Josef Bacik48672682016-09-23 13:23:28 +02008920 ret = -EIO;
8921 goto out_unlock;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008922 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008923 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008924
Yan, Zheng94fcca92009-10-09 09:25:16 -04008925 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008926 if (wc->refs[level - 1] > 1) {
Mark Fasheh11526512014-07-17 12:39:01 -07008927 need_account = true;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008928 if (level == 1 &&
8929 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8930 goto skip;
8931
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008932 if (!wc->update_ref ||
8933 generation <= root->root_key.offset)
8934 goto skip;
8935
8936 btrfs_node_key_to_cpu(path->nodes[level], &key,
8937 path->slots[level]);
8938 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
8939 if (ret < 0)
8940 goto skip;
8941
8942 wc->stage = UPDATE_BACKREF;
8943 wc->shared_level = level - 1;
8944 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008945 } else {
8946 if (level == 1 &&
8947 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8948 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008949 }
8950
Chris Masonb9fab912012-05-06 07:23:47 -04008951 if (!btrfs_buffer_uptodate(next, generation, 0)) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008952 btrfs_tree_unlock(next);
8953 free_extent_buffer(next);
8954 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008955 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008956 }
8957
8958 if (!next) {
8959 if (reada && level == 1)
8960 reada_walk_down(trans, root, wc, path);
David Sterbace86cd52014-06-15 01:07:32 +02008961 next = read_tree_block(root, bytenr, generation);
Liu Bo64c043d2015-05-25 17:30:15 +08008962 if (IS_ERR(next)) {
8963 return PTR_ERR(next);
8964 } else if (!extent_buffer_uptodate(next)) {
Josef Bacik416bc652013-04-23 14:17:42 -04008965 free_extent_buffer(next);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00008966 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04008967 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008968 btrfs_tree_lock(next);
8969 btrfs_set_lock_blocking(next);
8970 }
8971
8972 level--;
Josef Bacik48672682016-09-23 13:23:28 +02008973 ASSERT(level == btrfs_header_level(next));
8974 if (level != btrfs_header_level(next)) {
8975 btrfs_err(root->fs_info, "mismatched level");
8976 ret = -EIO;
8977 goto out_unlock;
8978 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008979 path->nodes[level] = next;
8980 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008981 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008982 wc->level = level;
8983 if (wc->level == 1)
8984 wc->reada_slot = 0;
8985 return 0;
8986skip:
8987 wc->refs[level - 1] = 0;
8988 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008989 if (wc->stage == DROP_REFERENCE) {
8990 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
8991 parent = path->nodes[level]->start;
8992 } else {
Josef Bacik48672682016-09-23 13:23:28 +02008993 ASSERT(root->root_key.objectid ==
Yan, Zheng94fcca92009-10-09 09:25:16 -04008994 btrfs_header_owner(path->nodes[level]));
Josef Bacik48672682016-09-23 13:23:28 +02008995 if (root->root_key.objectid !=
8996 btrfs_header_owner(path->nodes[level])) {
8997 btrfs_err(root->fs_info,
8998 "mismatched block owner");
8999 ret = -EIO;
9000 goto out_unlock;
9001 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04009002 parent = 0;
9003 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009004
Mark Fasheh11526512014-07-17 12:39:01 -07009005 if (need_account) {
9006 ret = account_shared_subtree(trans, root, next,
9007 generation, level - 1);
9008 if (ret) {
David Sterba94647322015-10-08 11:01:36 +02009009 btrfs_err_rl(root->fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04009010 "Error %d accounting shared subtree. Quota is out of sync, rescan required.",
9011 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07009012 }
9013 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04009014 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01009015 root->root_key.objectid, level - 1, 0);
Josef Bacik48672682016-09-23 13:23:28 +02009016 if (ret)
9017 goto out_unlock;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009018 }
Josef Bacik48672682016-09-23 13:23:28 +02009019
9020 *lookup_info = 1;
9021 ret = 1;
9022
9023out_unlock:
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009024 btrfs_tree_unlock(next);
9025 free_extent_buffer(next);
Josef Bacik48672682016-09-23 13:23:28 +02009026
9027 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009028}
9029
9030/*
Liu Bo2c016dc2012-12-26 15:32:17 +08009031 * helper to process tree block while walking up the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04009032 *
9033 * when wc->stage == DROP_REFERENCE, this function drops
9034 * reference count on the block.
9035 *
9036 * when wc->stage == UPDATE_BACKREF, this function changes
9037 * wc->stage back to DROP_REFERENCE if we changed wc->stage
9038 * to UPDATE_BACKREF previously while processing the block.
9039 *
9040 * NOTE: return value 1 means we should stop walking up.
9041 */
9042static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
9043 struct btrfs_root *root,
9044 struct btrfs_path *path,
9045 struct walk_control *wc)
9046{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009047 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009048 int level = wc->level;
9049 struct extent_buffer *eb = path->nodes[level];
9050 u64 parent = 0;
9051
9052 if (wc->stage == UPDATE_BACKREF) {
9053 BUG_ON(wc->shared_level < level);
9054 if (level < wc->shared_level)
9055 goto out;
9056
Yan Zheng2c47e6052009-06-27 21:07:35 -04009057 ret = find_next_key(path, level + 1, &wc->update_progress);
9058 if (ret > 0)
9059 wc->update_ref = 0;
9060
9061 wc->stage = DROP_REFERENCE;
9062 wc->shared_level = -1;
9063 path->slots[level] = 0;
9064
9065 /*
9066 * check reference count again if the block isn't locked.
9067 * we should start walking down the tree again if reference
9068 * count is one.
9069 */
9070 if (!path->locks[level]) {
9071 BUG_ON(level == 0);
9072 btrfs_tree_lock(eb);
9073 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04009074 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009075
9076 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05009077 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009078 &wc->refs[level],
9079 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009080 if (ret < 0) {
9081 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00009082 path->locks[level] = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009083 return ret;
9084 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009085 BUG_ON(wc->refs[level] == 0);
9086 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04009087 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00009088 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009089 return 1;
9090 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009091 }
9092 }
9093
9094 /* wc->stage == DROP_REFERENCE */
9095 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
9096
9097 if (wc->refs[level] == 1) {
9098 if (level == 0) {
9099 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
Josef Bacike339a6b2014-07-02 10:54:25 -07009100 ret = btrfs_dec_ref(trans, root, eb, 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009101 else
Josef Bacike339a6b2014-07-02 10:54:25 -07009102 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009103 BUG_ON(ret); /* -ENOMEM */
Mark Fasheh11526512014-07-17 12:39:01 -07009104 ret = account_leaf_items(trans, root, eb);
9105 if (ret) {
David Sterba94647322015-10-08 11:01:36 +02009106 btrfs_err_rl(root->fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04009107 "error %d accounting leaf items. Quota is out of sync, rescan required.",
9108 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07009109 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009110 }
9111 /* make block locked assertion in clean_tree_block happy */
9112 if (!path->locks[level] &&
9113 btrfs_header_generation(eb) == trans->transid) {
9114 btrfs_tree_lock(eb);
9115 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04009116 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009117 }
Daniel Dressler01d58472014-11-21 17:15:07 +09009118 clean_tree_block(trans, root->fs_info, eb);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009119 }
9120
9121 if (eb == root->node) {
9122 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
9123 parent = eb->start;
Qu Wenruo20d81802018-08-21 09:42:03 +08009124 else if (root->root_key.objectid != btrfs_header_owner(eb))
9125 goto owner_mismatch;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009126 } else {
9127 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
9128 parent = path->nodes[level + 1]->start;
Qu Wenruo20d81802018-08-21 09:42:03 +08009129 else if (root->root_key.objectid !=
9130 btrfs_header_owner(path->nodes[level + 1]))
9131 goto owner_mismatch;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009132 }
9133
Jan Schmidt5581a512012-05-16 17:04:52 +02009134 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009135out:
9136 wc->refs[level] = 0;
9137 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009138 return 0;
Qu Wenruo20d81802018-08-21 09:42:03 +08009139
9140owner_mismatch:
9141 btrfs_err_rl(root->fs_info, "unexpected tree owner, have %llu expect %llu",
9142 btrfs_header_owner(eb), root->root_key.objectid);
9143 return -EUCLEAN;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009144}
9145
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009146static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
9147 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009148 struct btrfs_path *path,
9149 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04009150{
Yan Zheng2c47e6052009-06-27 21:07:35 -04009151 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04009152 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009153 int ret;
9154
Yan Zheng2c47e6052009-06-27 21:07:35 -04009155 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04009156 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009157 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04009158 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009159
Yan Zheng2c47e6052009-06-27 21:07:35 -04009160 if (level == 0)
9161 break;
9162
Yan, Zheng7a7965f2010-02-01 02:41:17 +00009163 if (path->slots[level] >=
9164 btrfs_header_nritems(path->nodes[level]))
9165 break;
9166
Yan, Zheng94fcca92009-10-09 09:25:16 -04009167 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009168 if (ret > 0) {
9169 path->slots[level]++;
9170 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00009171 } else if (ret < 0)
9172 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009173 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009174 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04009175 return 0;
9176}
9177
Chris Masond3977122009-01-05 21:25:51 -05009178static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05009179 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04009180 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009181 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05009182{
Yan Zheng2c47e6052009-06-27 21:07:35 -04009183 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05009184 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04009185
Yan Zheng2c47e6052009-06-27 21:07:35 -04009186 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
9187 while (level < max_level && path->nodes[level]) {
9188 wc->level = level;
9189 if (path->slots[level] + 1 <
9190 btrfs_header_nritems(path->nodes[level])) {
9191 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05009192 return 0;
9193 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009194 ret = walk_up_proc(trans, root, path, wc);
9195 if (ret > 0)
9196 return 0;
Qu Wenruo20d81802018-08-21 09:42:03 +08009197 if (ret < 0)
9198 return ret;
Chris Masonbd56b302009-02-04 09:27:02 -05009199
Yan Zheng2c47e6052009-06-27 21:07:35 -04009200 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04009201 btrfs_tree_unlock_rw(path->nodes[level],
9202 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009203 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009204 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009205 free_extent_buffer(path->nodes[level]);
9206 path->nodes[level] = NULL;
9207 level++;
Chris Mason20524f02007-03-10 06:35:47 -05009208 }
9209 }
9210 return 1;
9211}
9212
Chris Mason9aca1d52007-03-13 11:09:37 -04009213/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04009214 * drop a subvolume tree.
9215 *
9216 * this function traverses the tree freeing any blocks that only
9217 * referenced by the tree.
9218 *
9219 * when a shared tree block is found. this function decreases its
9220 * reference count by one. if update_ref is true, this function
9221 * also make sure backrefs for the shared block and all lower level
9222 * blocks are properly updated.
David Sterba9d1a2a32013-03-12 15:13:28 +00009223 *
9224 * If called with for_reloc == 0, may exit early with -EAGAIN
Chris Mason9aca1d52007-03-13 11:09:37 -04009225 */
Jeff Mahoney2c536792011-10-03 23:22:41 -04009226int btrfs_drop_snapshot(struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009227 struct btrfs_block_rsv *block_rsv, int update_ref,
9228 int for_reloc)
Chris Mason20524f02007-03-10 06:35:47 -05009229{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009230 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5caf2a02007-04-02 11:20:42 -04009231 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009232 struct btrfs_trans_handle *trans;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009233 struct btrfs_root *tree_root = fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04009234 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009235 struct walk_control *wc;
9236 struct btrfs_key key;
9237 int err = 0;
9238 int ret;
9239 int level;
Josef Bacikd29a9f62013-07-17 19:30:20 -04009240 bool root_dropped = false;
Chris Mason20524f02007-03-10 06:35:47 -05009241
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009242 btrfs_debug(fs_info, "Drop subvolume %llu", root->objectid);
Mark Fasheh11526512014-07-17 12:39:01 -07009243
Chris Mason5caf2a02007-04-02 11:20:42 -04009244 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009245 if (!path) {
9246 err = -ENOMEM;
9247 goto out;
9248 }
Chris Mason20524f02007-03-10 06:35:47 -05009249
Yan Zheng2c47e6052009-06-27 21:07:35 -04009250 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07009251 if (!wc) {
9252 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009253 err = -ENOMEM;
9254 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07009255 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009256
Yan, Zhenga22285a2010-05-16 10:48:46 -04009257 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009258 if (IS_ERR(trans)) {
9259 err = PTR_ERR(trans);
9260 goto out_free;
9261 }
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00009262
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009263 if (block_rsv)
9264 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009265
Chris Mason9f3a7422007-08-07 15:52:19 -04009266 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009267 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009268 path->nodes[level] = btrfs_lock_root_node(root);
9269 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04009270 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009271 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009272 memset(&wc->update_progress, 0,
9273 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04009274 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04009275 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009276 memcpy(&wc->update_progress, &key,
9277 sizeof(wc->update_progress));
9278
Chris Mason6702ed42007-08-07 16:15:09 -04009279 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009280 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04009281 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009282 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
9283 path->lowest_level = 0;
9284 if (ret < 0) {
9285 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009286 goto out_end_trans;
Chris Mason9f3a7422007-08-07 15:52:19 -04009287 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009288 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009289
Chris Mason7d9eb122008-07-08 14:19:17 -04009290 /*
9291 * unlock our path, this is safe because only this
9292 * function is allowed to delete this snapshot
9293 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009294 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04009295
Yan Zheng2c47e6052009-06-27 21:07:35 -04009296 level = btrfs_header_level(root->node);
9297 while (1) {
9298 btrfs_tree_lock(path->nodes[level]);
9299 btrfs_set_lock_blocking(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009300 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009301
9302 ret = btrfs_lookup_extent_info(trans, root,
9303 path->nodes[level]->start,
Josef Bacik3173a182013-03-07 14:22:04 -05009304 level, 1, &wc->refs[level],
Yan Zheng2c47e6052009-06-27 21:07:35 -04009305 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009306 if (ret < 0) {
9307 err = ret;
9308 goto out_end_trans;
9309 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009310 BUG_ON(wc->refs[level] == 0);
9311
9312 if (level == root_item->drop_level)
9313 break;
9314
9315 btrfs_tree_unlock(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009316 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009317 WARN_ON(wc->refs[level] != 1);
9318 level--;
9319 }
9320 }
9321
9322 wc->level = level;
9323 wc->shared_level = -1;
9324 wc->stage = DROP_REFERENCE;
9325 wc->update_ref = update_ref;
9326 wc->keep_locks = 0;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009327 wc->for_reloc = for_reloc;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009328 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009329
9330 while (1) {
David Sterba9d1a2a32013-03-12 15:13:28 +00009331
Yan Zheng2c47e6052009-06-27 21:07:35 -04009332 ret = walk_down_tree(trans, root, path, wc);
9333 if (ret < 0) {
9334 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04009335 break;
9336 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009337
9338 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
9339 if (ret < 0) {
9340 err = ret;
9341 break;
9342 }
9343
9344 if (ret > 0) {
9345 BUG_ON(wc->stage != DROP_REFERENCE);
9346 break;
9347 }
9348
9349 if (wc->stage == DROP_REFERENCE) {
9350 level = wc->level;
9351 btrfs_node_key(path->nodes[level],
9352 &root_item->drop_progress,
9353 path->slots[level]);
9354 root_item->drop_level = level;
9355 }
9356
9357 BUG_ON(wc->level == 0);
Josef Bacik3c8f2422013-07-15 11:57:06 -04009358 if (btrfs_should_end_transaction(trans, tree_root) ||
9359 (!for_reloc && btrfs_need_cleaner_sleep(root))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009360 ret = btrfs_update_root(trans, tree_root,
9361 &root->root_key,
9362 root_item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009363 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009364 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009365 err = ret;
9366 goto out_end_trans;
9367 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009368
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009369 btrfs_end_transaction_throttle(trans, tree_root);
Josef Bacik3c8f2422013-07-15 11:57:06 -04009370 if (!for_reloc && btrfs_need_cleaner_sleep(root)) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009371 btrfs_debug(fs_info,
9372 "drop snapshot early exit");
Josef Bacik3c8f2422013-07-15 11:57:06 -04009373 err = -EAGAIN;
9374 goto out_free;
9375 }
9376
Yan, Zhenga22285a2010-05-16 10:48:46 -04009377 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009378 if (IS_ERR(trans)) {
9379 err = PTR_ERR(trans);
9380 goto out_free;
9381 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009382 if (block_rsv)
9383 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04009384 }
Chris Mason20524f02007-03-10 06:35:47 -05009385 }
David Sterbab3b4aa72011-04-21 01:20:15 +02009386 btrfs_release_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009387 if (err)
9388 goto out_end_trans;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009389
9390 ret = btrfs_del_root(trans, tree_root, &root->root_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009391 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009392 btrfs_abort_transaction(trans, ret);
Jeff Mahoney8974b032017-12-04 13:11:45 -05009393 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009394 goto out_end_trans;
9395 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009396
Yan, Zheng76dda932009-09-21 16:00:26 -04009397 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Miao Xiecb517ea2013-05-15 07:48:19 +00009398 ret = btrfs_find_root(tree_root, &root->root_key, path,
9399 NULL, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009400 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009401 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009402 err = ret;
9403 goto out_end_trans;
9404 } else if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05009405 /* if we fail to delete the orphan item this time
9406 * around, it'll get picked up the next time.
9407 *
9408 * The most common failure here is just -ENOENT.
9409 */
9410 btrfs_del_orphan_item(trans, tree_root,
9411 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04009412 }
9413 }
9414
Miao Xie27cdeb72014-04-02 19:51:05 +08009415 if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) {
Josef Bacik2b9dbef2015-09-15 10:07:04 -04009416 btrfs_add_dropped_root(trans, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009417 } else {
9418 free_extent_buffer(root->node);
9419 free_extent_buffer(root->commit_root);
Miao Xieb0feb9d2013-05-15 07:48:20 +00009420 btrfs_put_fs_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009421 }
Josef Bacikd29a9f62013-07-17 19:30:20 -04009422 root_dropped = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009423out_end_trans:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009424 btrfs_end_transaction_throttle(trans, tree_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009425out_free:
Yan Zheng2c47e6052009-06-27 21:07:35 -04009426 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04009427 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009428out:
Josef Bacikd29a9f62013-07-17 19:30:20 -04009429 /*
9430 * So if we need to stop dropping the snapshot for whatever reason we
9431 * need to make sure to add it back to the dead root list so that we
9432 * keep trying to do the work later. This also cleans up roots if we
9433 * don't have it in the radix (like when we recover after a power fail
9434 * or unmount) so we don't leak memory.
9435 */
Josef Bacikb37b39c2013-07-23 16:57:15 -04009436 if (!for_reloc && root_dropped == false)
Josef Bacikd29a9f62013-07-17 19:30:20 -04009437 btrfs_add_dead_root(root);
Wang Shilong90515e72014-01-07 17:26:58 +08009438 if (err && err != -EAGAIN)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009439 btrfs_handle_fs_error(fs_info, err, NULL);
Jeff Mahoney2c536792011-10-03 23:22:41 -04009440 return err;
Chris Mason20524f02007-03-10 06:35:47 -05009441}
Chris Mason9078a3e2007-04-26 16:46:15 -04009442
Yan Zheng2c47e6052009-06-27 21:07:35 -04009443/*
9444 * drop subtree rooted at tree block 'node'.
9445 *
9446 * NOTE: this function will unlock and release tree block 'node'
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009447 * only used by relocation code
Yan Zheng2c47e6052009-06-27 21:07:35 -04009448 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04009449int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
9450 struct btrfs_root *root,
9451 struct extent_buffer *node,
9452 struct extent_buffer *parent)
9453{
9454 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009455 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009456 int level;
9457 int parent_level;
9458 int ret = 0;
9459 int wret;
9460
Yan Zheng2c47e6052009-06-27 21:07:35 -04009461 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
9462
Yan Zhengf82d02d2008-10-29 14:49:05 -04009463 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009464 if (!path)
9465 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009466
Yan Zheng2c47e6052009-06-27 21:07:35 -04009467 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009468 if (!wc) {
9469 btrfs_free_path(path);
9470 return -ENOMEM;
9471 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009472
Chris Masonb9447ef2009-03-09 11:45:38 -04009473 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009474 parent_level = btrfs_header_level(parent);
9475 extent_buffer_get(parent);
9476 path->nodes[parent_level] = parent;
9477 path->slots[parent_level] = btrfs_header_nritems(parent);
9478
Chris Masonb9447ef2009-03-09 11:45:38 -04009479 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009480 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009481 path->nodes[level] = node;
9482 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009483 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009484
9485 wc->refs[parent_level] = 1;
9486 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
9487 wc->level = level;
9488 wc->shared_level = -1;
9489 wc->stage = DROP_REFERENCE;
9490 wc->update_ref = 0;
9491 wc->keep_locks = 1;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009492 wc->for_reloc = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009493 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009494
9495 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009496 wret = walk_down_tree(trans, root, path, wc);
9497 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04009498 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009499 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009500 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04009501
Yan Zheng2c47e6052009-06-27 21:07:35 -04009502 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009503 if (wret < 0)
9504 ret = wret;
9505 if (wret != 0)
9506 break;
9507 }
9508
Yan Zheng2c47e6052009-06-27 21:07:35 -04009509 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009510 btrfs_free_path(path);
9511 return ret;
9512}
9513
Chris Masonec44a352008-04-28 15:29:52 -04009514static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
9515{
9516 u64 num_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009517 u64 stripped;
Chris Masonec44a352008-04-28 15:29:52 -04009518
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009519 /*
9520 * if restripe for this chunk_type is on pick target profile and
9521 * return, otherwise do the usual balance
9522 */
9523 stripped = get_restripe_target(root->fs_info, flags);
9524 if (stripped)
9525 return extended_to_chunk(stripped);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02009526
Miao Xie95669972014-07-24 11:37:14 +08009527 num_devices = root->fs_info->fs_devices->rw_devices;
Chris Masoncd02dca2010-12-13 14:56:23 -05009528
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009529 stripped = BTRFS_BLOCK_GROUP_RAID0 |
David Woodhouse53b381b2013-01-29 18:40:14 -05009530 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009531 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
9532
Chris Masonec44a352008-04-28 15:29:52 -04009533 if (num_devices == 1) {
9534 stripped |= BTRFS_BLOCK_GROUP_DUP;
9535 stripped = flags & ~stripped;
9536
9537 /* turn raid0 into single device chunks */
9538 if (flags & BTRFS_BLOCK_GROUP_RAID0)
9539 return stripped;
9540
9541 /* turn mirroring into duplication */
9542 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
9543 BTRFS_BLOCK_GROUP_RAID10))
9544 return stripped | BTRFS_BLOCK_GROUP_DUP;
Chris Masonec44a352008-04-28 15:29:52 -04009545 } else {
9546 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04009547 if (flags & stripped)
9548 return flags;
9549
9550 stripped |= BTRFS_BLOCK_GROUP_DUP;
9551 stripped = flags & ~stripped;
9552
9553 /* switch duplicated blocks with raid1 */
9554 if (flags & BTRFS_BLOCK_GROUP_DUP)
9555 return stripped | BTRFS_BLOCK_GROUP_RAID1;
9556
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009557 /* this is drive concat, leave it alone */
Chris Masonec44a352008-04-28 15:29:52 -04009558 }
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009559
Chris Masonec44a352008-04-28 15:29:52 -04009560 return flags;
9561}
9562
Zhaolei868f4012015-08-05 16:43:27 +08009563static int inc_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04009564{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009565 struct btrfs_space_info *sinfo = cache->space_info;
9566 u64 num_bytes;
Miao Xie199c36e2011-07-15 10:34:36 +00009567 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009568 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04009569
Miao Xie199c36e2011-07-15 10:34:36 +00009570 /*
9571 * We need some metadata space and system metadata space for
9572 * allocating chunks in some corner cases until we force to set
9573 * it to be readonly.
9574 */
9575 if ((sinfo->flags &
9576 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
9577 !force)
Byongho Leeee221842015-12-15 01:42:10 +09009578 min_allocable_bytes = SZ_1M;
Miao Xie199c36e2011-07-15 10:34:36 +00009579 else
9580 min_allocable_bytes = 0;
9581
Yan, Zhengf0486c62010-05-16 10:46:25 -04009582 spin_lock(&sinfo->lock);
9583 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00009584
9585 if (cache->ro) {
Zhaolei868f4012015-08-05 16:43:27 +08009586 cache->ro++;
WuBo61cfea92011-07-26 03:30:11 +00009587 ret = 0;
9588 goto out;
9589 }
9590
Yan, Zhengf0486c62010-05-16 10:46:25 -04009591 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
9592 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04009593
Yan, Zhengf0486c62010-05-16 10:46:25 -04009594 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
Josef Bacik37be25b2011-08-05 10:25:38 -04009595 sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes +
9596 min_allocable_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04009597 sinfo->bytes_readonly += num_bytes;
Zhaolei868f4012015-08-05 16:43:27 +08009598 cache->ro++;
Josef Bacik633c0aa2014-10-31 09:49:34 -04009599 list_add_tail(&cache->ro_list, &sinfo->ro_bgs);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009600 ret = 0;
9601 }
WuBo61cfea92011-07-26 03:30:11 +00009602out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04009603 spin_unlock(&cache->lock);
9604 spin_unlock(&sinfo->lock);
9605 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04009606}
9607
Zhaolei868f4012015-08-05 16:43:27 +08009608int btrfs_inc_block_group_ro(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04009609 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009610
9611{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009612 struct btrfs_trans_handle *trans;
9613 u64 alloc_flags;
9614 int ret;
9615
Chris Mason1bbc6212015-04-06 12:46:08 -07009616again:
Josef Bacik7a7eaa42011-04-13 12:54:33 -04009617 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009618 if (IS_ERR(trans))
9619 return PTR_ERR(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009620
Chris Mason1bbc6212015-04-06 12:46:08 -07009621 /*
9622 * we're not allowed to set block groups readonly after the dirty
9623 * block groups cache has started writing. If it already started,
9624 * back off and let this transaction commit
9625 */
9626 mutex_lock(&root->fs_info->ro_block_group_mutex);
Josef Bacik3204d332015-09-24 10:46:10 -04009627 if (test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &trans->transaction->flags)) {
Chris Mason1bbc6212015-04-06 12:46:08 -07009628 u64 transid = trans->transid;
9629
9630 mutex_unlock(&root->fs_info->ro_block_group_mutex);
9631 btrfs_end_transaction(trans, root);
9632
9633 ret = btrfs_wait_for_commit(root, transid);
9634 if (ret)
9635 return ret;
9636 goto again;
9637 }
9638
Chris Mason153c35b2015-05-19 18:54:41 -07009639 /*
9640 * if we are changing raid levels, try to allocate a corresponding
9641 * block group with the new raid level.
9642 */
9643 alloc_flags = update_block_group_flags(root, cache->flags);
9644 if (alloc_flags != cache->flags) {
9645 ret = do_chunk_alloc(trans, root, alloc_flags,
9646 CHUNK_ALLOC_FORCE);
9647 /*
9648 * ENOSPC is allowed here, we may have enough space
9649 * already allocated at the new raid level to
9650 * carry on
9651 */
9652 if (ret == -ENOSPC)
9653 ret = 0;
9654 if (ret < 0)
9655 goto out;
9656 }
Chris Mason1bbc6212015-04-06 12:46:08 -07009657
Zhaolei868f4012015-08-05 16:43:27 +08009658 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009659 if (!ret)
9660 goto out;
9661 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
Josef Bacik698d0082012-09-12 14:08:47 -04009662 ret = do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04009663 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009664 if (ret < 0)
9665 goto out;
Zhaolei868f4012015-08-05 16:43:27 +08009666 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009667out:
Shaohua Li2f081082015-01-09 10:40:15 -08009668 if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
9669 alloc_flags = update_block_group_flags(root, cache->flags);
Filipe Mananaa9629592015-05-18 19:11:40 +01009670 lock_chunks(root->fs_info->chunk_root);
Filipe Manana4617ea32015-06-09 17:48:21 +01009671 check_system_chunk(trans, root, alloc_flags);
Filipe Mananaa9629592015-05-18 19:11:40 +01009672 unlock_chunks(root->fs_info->chunk_root);
Shaohua Li2f081082015-01-09 10:40:15 -08009673 }
Chris Mason1bbc6212015-04-06 12:46:08 -07009674 mutex_unlock(&root->fs_info->ro_block_group_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08009675
Yan, Zhengf0486c62010-05-16 10:46:25 -04009676 btrfs_end_transaction(trans, root);
9677 return ret;
9678}
9679
Chris Masonc87f08c2011-02-16 13:57:04 -05009680int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
9681 struct btrfs_root *root, u64 type)
9682{
9683 u64 alloc_flags = get_alloc_profile(root, type);
Josef Bacik698d0082012-09-12 14:08:47 -04009684 return do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04009685 CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05009686}
9687
Miao Xie6d07bce2011-01-05 10:07:31 +00009688/*
9689 * helper to account the unused space of all the readonly block group in the
Josef Bacik633c0aa2014-10-31 09:49:34 -04009690 * space_info. takes mirrors into account.
Miao Xie6d07bce2011-01-05 10:07:31 +00009691 */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009692u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
Miao Xie6d07bce2011-01-05 10:07:31 +00009693{
9694 struct btrfs_block_group_cache *block_group;
9695 u64 free_bytes = 0;
9696 int factor;
9697
Nicholas D Steeves01327612016-05-19 21:18:45 -04009698 /* It's df, we don't care if it's racy */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009699 if (list_empty(&sinfo->ro_bgs))
9700 return 0;
9701
9702 spin_lock(&sinfo->lock);
9703 list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00009704 spin_lock(&block_group->lock);
9705
9706 if (!block_group->ro) {
9707 spin_unlock(&block_group->lock);
9708 continue;
9709 }
9710
9711 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
9712 BTRFS_BLOCK_GROUP_RAID10 |
9713 BTRFS_BLOCK_GROUP_DUP))
9714 factor = 2;
9715 else
9716 factor = 1;
9717
9718 free_bytes += (block_group->key.offset -
9719 btrfs_block_group_used(&block_group->item)) *
9720 factor;
9721
9722 spin_unlock(&block_group->lock);
9723 }
Miao Xie6d07bce2011-01-05 10:07:31 +00009724 spin_unlock(&sinfo->lock);
9725
9726 return free_bytes;
9727}
9728
Zhaolei868f4012015-08-05 16:43:27 +08009729void btrfs_dec_block_group_ro(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04009730 struct btrfs_block_group_cache *cache)
9731{
9732 struct btrfs_space_info *sinfo = cache->space_info;
9733 u64 num_bytes;
9734
9735 BUG_ON(!cache->ro);
9736
9737 spin_lock(&sinfo->lock);
9738 spin_lock(&cache->lock);
Zhaolei868f4012015-08-05 16:43:27 +08009739 if (!--cache->ro) {
9740 num_bytes = cache->key.offset - cache->reserved -
9741 cache->pinned - cache->bytes_super -
9742 btrfs_block_group_used(&cache->item);
9743 sinfo->bytes_readonly -= num_bytes;
9744 list_del_init(&cache->ro_list);
9745 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009746 spin_unlock(&cache->lock);
9747 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009748}
9749
Josef Bacikba1bf482009-09-11 16:11:19 -04009750/*
9751 * checks to see if its even possible to relocate this block group.
9752 *
9753 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
9754 * ok to go ahead and try.
9755 */
9756int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04009757{
Zheng Yan1a40e232008-09-26 10:09:34 -04009758 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04009759 struct btrfs_space_info *space_info;
9760 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
9761 struct btrfs_device *device;
Josef Bacik6df9a952013-06-27 13:22:46 -04009762 struct btrfs_trans_handle *trans;
liubocdcb7252011-08-03 10:15:25 +00009763 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04009764 u64 dev_min = 1;
9765 u64 dev_nr = 0;
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009766 u64 target;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009767 int debug;
liubocdcb7252011-08-03 10:15:25 +00009768 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04009769 int full = 0;
9770 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05009771
Jeff Mahoney3cdde222016-06-09 21:38:35 -04009772 debug = btrfs_test_opt(root->fs_info, ENOSPC_DEBUG);
Qu Wenruo0305bc22016-03-23 11:38:17 +08009773
Josef Bacikba1bf482009-09-11 16:11:19 -04009774 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04009775
Josef Bacikba1bf482009-09-11 16:11:19 -04009776 /* odd, couldn't find the block group, leave it alone */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009777 if (!block_group) {
9778 if (debug)
9779 btrfs_warn(root->fs_info,
9780 "can't find block group for bytenr %llu",
9781 bytenr);
Josef Bacikba1bf482009-09-11 16:11:19 -04009782 return -1;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009783 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009784
liubocdcb7252011-08-03 10:15:25 +00009785 min_free = btrfs_block_group_used(&block_group->item);
9786
Josef Bacikba1bf482009-09-11 16:11:19 -04009787 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00009788 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04009789 goto out;
Chris Mason323da792008-05-09 11:46:48 -04009790
Josef Bacikba1bf482009-09-11 16:11:19 -04009791 space_info = block_group->space_info;
9792 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04009793
Josef Bacikba1bf482009-09-11 16:11:19 -04009794 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04009795
Josef Bacikba1bf482009-09-11 16:11:19 -04009796 /*
9797 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04009798 * relocate it unless we're able to allocate a new chunk below.
9799 *
9800 * Otherwise, we need to make sure we have room in the space to handle
9801 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04009802 */
Chris Mason7ce618d2009-09-22 14:48:44 -04009803 if ((space_info->total_bytes != block_group->key.offset) &&
liubocdcb7252011-08-03 10:15:25 +00009804 (space_info->bytes_used + space_info->bytes_reserved +
9805 space_info->bytes_pinned + space_info->bytes_readonly +
9806 min_free < space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04009807 spin_unlock(&space_info->lock);
9808 goto out;
9809 }
9810 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009811
Josef Bacikba1bf482009-09-11 16:11:19 -04009812 /*
9813 * ok we don't have enough space, but maybe we have free space on our
9814 * devices to allocate new chunks for relocation, so loop through our
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009815 * alloc devices and guess if we have enough space. if this block
9816 * group is going to be restriped, run checks against the target
9817 * profile instead of the current one.
Josef Bacikba1bf482009-09-11 16:11:19 -04009818 */
9819 ret = -1;
Chris Mason4313b392008-01-03 09:08:48 -05009820
liubocdcb7252011-08-03 10:15:25 +00009821 /*
9822 * index:
9823 * 0: raid10
9824 * 1: raid1
9825 * 2: dup
9826 * 3: raid0
9827 * 4: single
9828 */
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009829 target = get_restripe_target(root->fs_info, block_group->flags);
9830 if (target) {
Liu Bo31e50222012-11-21 14:18:10 +00009831 index = __get_raid_index(extended_to_chunk(target));
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009832 } else {
9833 /*
9834 * this is just a balance, so if we were marked as full
9835 * we know there is no space for a new chunk
9836 */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009837 if (full) {
9838 if (debug)
9839 btrfs_warn(root->fs_info,
9840 "no space to alloc new chunk for block group %llu",
9841 block_group->key.objectid);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009842 goto out;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009843 }
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009844
9845 index = get_block_group_index(block_group);
9846 }
9847
Miao Xiee6ec7162013-01-17 05:38:51 +00009848 if (index == BTRFS_RAID_RAID10) {
liubocdcb7252011-08-03 10:15:25 +00009849 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04009850 /* Divide by 2 */
9851 min_free >>= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009852 } else if (index == BTRFS_RAID_RAID1) {
liubocdcb7252011-08-03 10:15:25 +00009853 dev_min = 2;
Miao Xiee6ec7162013-01-17 05:38:51 +00009854 } else if (index == BTRFS_RAID_DUP) {
Josef Bacik6719db62011-08-20 08:29:51 -04009855 /* Multiply by 2 */
9856 min_free <<= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009857 } else if (index == BTRFS_RAID_RAID0) {
liubocdcb7252011-08-03 10:15:25 +00009858 dev_min = fs_devices->rw_devices;
David Sterba47c57132015-02-20 18:43:47 +01009859 min_free = div64_u64(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00009860 }
9861
Josef Bacik6df9a952013-06-27 13:22:46 -04009862 /* We need to do this so that we can look at pending chunks */
9863 trans = btrfs_join_transaction(root);
9864 if (IS_ERR(trans)) {
9865 ret = PTR_ERR(trans);
9866 goto out;
9867 }
9868
Josef Bacikba1bf482009-09-11 16:11:19 -04009869 mutex_lock(&root->fs_info->chunk_mutex);
9870 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00009871 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04009872
Josef Bacikba1bf482009-09-11 16:11:19 -04009873 /*
9874 * check to make sure we can actually find a chunk with enough
9875 * space to fit our block group in.
9876 */
Stefan Behrens63a212a2012-11-05 18:29:28 +01009877 if (device->total_bytes > device->bytes_used + min_free &&
9878 !device->is_tgtdev_for_dev_replace) {
Josef Bacik6df9a952013-06-27 13:22:46 -04009879 ret = find_free_dev_extent(trans, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00009880 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04009881 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00009882 dev_nr++;
9883
9884 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05009885 break;
liubocdcb7252011-08-03 10:15:25 +00009886
Josef Bacikba1bf482009-09-11 16:11:19 -04009887 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05009888 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009889 }
Qu Wenruo0305bc22016-03-23 11:38:17 +08009890 if (debug && ret == -1)
9891 btrfs_warn(root->fs_info,
9892 "no space to allocate a new chunk for block group %llu",
9893 block_group->key.objectid);
Josef Bacikba1bf482009-09-11 16:11:19 -04009894 mutex_unlock(&root->fs_info->chunk_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04009895 btrfs_end_transaction(trans, root);
Chris Masonedbd8d42007-12-21 16:27:24 -05009896out:
Josef Bacikba1bf482009-09-11 16:11:19 -04009897 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05009898 return ret;
9899}
9900
Christoph Hellwigb2950862008-12-02 09:54:17 -05009901static int find_first_block_group(struct btrfs_root *root,
9902 struct btrfs_path *path, struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04009903{
Chris Mason925baed2008-06-25 16:01:30 -04009904 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04009905 struct btrfs_key found_key;
9906 struct extent_buffer *leaf;
Qu Wenruo7a72f912018-08-01 10:37:16 +08009907 struct btrfs_block_group_item bg;
9908 u64 flags;
Chris Mason0b86a832008-03-24 15:01:56 -04009909 int slot;
9910
9911 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
9912 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009913 goto out;
9914
Chris Masond3977122009-01-05 21:25:51 -05009915 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04009916 slot = path->slots[0];
9917 leaf = path->nodes[0];
9918 if (slot >= btrfs_header_nritems(leaf)) {
9919 ret = btrfs_next_leaf(root, path);
9920 if (ret == 0)
9921 continue;
9922 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009923 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04009924 break;
9925 }
9926 btrfs_item_key_to_cpu(leaf, &found_key, slot);
9927
9928 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04009929 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
Liu Bo6fb37b72016-06-22 18:31:27 -07009930 struct extent_map_tree *em_tree;
9931 struct extent_map *em;
9932
9933 em_tree = &root->fs_info->mapping_tree.map_tree;
9934 read_lock(&em_tree->lock);
9935 em = lookup_extent_mapping(em_tree, found_key.objectid,
9936 found_key.offset);
9937 read_unlock(&em_tree->lock);
9938 if (!em) {
9939 btrfs_err(root->fs_info,
9940 "logical %llu len %llu found bg but no related chunk",
9941 found_key.objectid, found_key.offset);
9942 ret = -ENOENT;
Qu Wenruo7a72f912018-08-01 10:37:16 +08009943 } else if (em->start != found_key.objectid ||
9944 em->len != found_key.offset) {
9945 btrfs_err(root->fs_info,
9946 "block group %llu len %llu mismatch with chunk %llu len %llu",
9947 found_key.objectid, found_key.offset,
9948 em->start, em->len);
9949 ret = -EUCLEAN;
Liu Bo6fb37b72016-06-22 18:31:27 -07009950 } else {
Qu Wenruo7a72f912018-08-01 10:37:16 +08009951 read_extent_buffer(leaf, &bg,
9952 btrfs_item_ptr_offset(leaf, slot),
9953 sizeof(bg));
9954 flags = btrfs_block_group_flags(&bg) &
9955 BTRFS_BLOCK_GROUP_TYPE_MASK;
9956
9957 if (flags != (em->map_lookup->type &
9958 BTRFS_BLOCK_GROUP_TYPE_MASK)) {
9959 btrfs_err(root->fs_info,
9960"block group %llu len %llu type flags 0x%llx mismatch with chunk type flags 0x%llx",
9961 found_key.objectid,
9962 found_key.offset, flags,
9963 (BTRFS_BLOCK_GROUP_TYPE_MASK &
9964 em->map_lookup->type));
9965 ret = -EUCLEAN;
9966 } else {
9967 ret = 0;
9968 }
Liu Bo6fb37b72016-06-22 18:31:27 -07009969 }
Josef Bacik187ee582016-08-18 15:30:06 -04009970 free_extent_map(em);
Chris Mason925baed2008-06-25 16:01:30 -04009971 goto out;
9972 }
Chris Mason0b86a832008-03-24 15:01:56 -04009973 path->slots[0]++;
9974 }
Chris Mason925baed2008-06-25 16:01:30 -04009975out:
Chris Mason0b86a832008-03-24 15:01:56 -04009976 return ret;
9977}
9978
Josef Bacik0af3d002010-06-21 14:48:16 -04009979void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
9980{
9981 struct btrfs_block_group_cache *block_group;
9982 u64 last = 0;
9983
9984 while (1) {
9985 struct inode *inode;
9986
9987 block_group = btrfs_lookup_first_block_group(info, last);
9988 while (block_group) {
Josef Bacikc160dae2018-09-12 10:45:45 -04009989 wait_block_group_cache_done(block_group);
Josef Bacik0af3d002010-06-21 14:48:16 -04009990 spin_lock(&block_group->lock);
9991 if (block_group->iref)
9992 break;
9993 spin_unlock(&block_group->lock);
9994 block_group = next_block_group(info->tree_root,
9995 block_group);
9996 }
9997 if (!block_group) {
9998 if (last == 0)
9999 break;
10000 last = 0;
10001 continue;
10002 }
10003
10004 inode = block_group->inode;
10005 block_group->iref = 0;
10006 block_group->inode = NULL;
10007 spin_unlock(&block_group->lock);
Liu Bof3bca802016-07-20 17:33:44 -070010008 ASSERT(block_group->io_ctl.inode == NULL);
Josef Bacik0af3d002010-06-21 14:48:16 -040010009 iput(inode);
10010 last = block_group->key.objectid + block_group->key.offset;
10011 btrfs_put_block_group(block_group);
10012 }
10013}
10014
Zheng Yan1a40e232008-09-26 10:09:34 -040010015int btrfs_free_block_groups(struct btrfs_fs_info *info)
10016{
10017 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -040010018 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -040010019 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -040010020 struct rb_node *n;
10021
Josef Bacik9e351cc2014-03-13 15:42:13 -040010022 down_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -040010023 while (!list_empty(&info->caching_block_groups)) {
10024 caching_ctl = list_entry(info->caching_block_groups.next,
10025 struct btrfs_caching_control, list);
10026 list_del(&caching_ctl->list);
10027 put_caching_control(caching_ctl);
10028 }
Josef Bacik9e351cc2014-03-13 15:42:13 -040010029 up_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -040010030
Josef Bacik47ab2a62014-09-18 11:20:02 -040010031 spin_lock(&info->unused_bgs_lock);
10032 while (!list_empty(&info->unused_bgs)) {
10033 block_group = list_first_entry(&info->unused_bgs,
10034 struct btrfs_block_group_cache,
10035 bg_list);
10036 list_del_init(&block_group->bg_list);
10037 btrfs_put_block_group(block_group);
10038 }
10039 spin_unlock(&info->unused_bgs_lock);
10040
Zheng Yan1a40e232008-09-26 10:09:34 -040010041 spin_lock(&info->block_group_cache_lock);
10042 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
10043 block_group = rb_entry(n, struct btrfs_block_group_cache,
10044 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -040010045 rb_erase(&block_group->cache_node,
10046 &info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +000010047 RB_CLEAR_NODE(&block_group->cache_node);
Yan Zhengd899e052008-10-30 14:25:28 -040010048 spin_unlock(&info->block_group_cache_lock);
10049
Josef Bacik80eb2342008-10-29 14:49:05 -040010050 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -040010051 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -040010052 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -050010053
Josef Bacik817d52f2009-07-13 21:29:25 -040010054 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -040010055 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -040010056
Josef Bacik3c148742011-02-02 15:53:47 +000010057 /*
10058 * We haven't cached this block group, which means we could
10059 * possibly have excluded extents on this block group.
10060 */
Josef Bacik36cce922013-08-05 11:15:21 -040010061 if (block_group->cached == BTRFS_CACHE_NO ||
10062 block_group->cached == BTRFS_CACHE_ERROR)
Josef Bacik3c148742011-02-02 15:53:47 +000010063 free_excluded_extents(info->extent_root, block_group);
10064
Josef Bacik817d52f2009-07-13 21:29:25 -040010065 btrfs_remove_free_space_cache(block_group);
Liu Bof3bca802016-07-20 17:33:44 -070010066 ASSERT(list_empty(&block_group->dirty_list));
10067 ASSERT(list_empty(&block_group->io_list));
10068 ASSERT(list_empty(&block_group->bg_list));
10069 ASSERT(atomic_read(&block_group->count) == 1);
Josef Bacik11dfe352009-11-13 20:12:59 +000010070 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -040010071
10072 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -040010073 }
10074 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -040010075
10076 /* now that all the block groups are freed, go through and
10077 * free all the space_info structs. This is only called during
10078 * the final stages of unmount, and so we know nobody is
10079 * using them. We call synchronize_rcu() once before we start,
10080 * just to be on the safe side.
10081 */
10082 synchronize_rcu();
10083
Yan, Zheng8929ecfa2010-05-16 10:49:58 -040010084 release_global_block_rsv(info);
10085
Dulshani Gunawardhana67871252013-10-31 10:33:04 +053010086 while (!list_empty(&info->space_info)) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010087 int i;
10088
Chris Mason4184ea72009-03-10 12:39:20 -040010089 space_info = list_entry(info->space_info.next,
10090 struct btrfs_space_info,
10091 list);
Josef Bacikd555b6c2016-03-25 13:25:51 -040010092
10093 /*
10094 * Do not hide this behind enospc_debug, this is actually
10095 * important and indicates a real bug if this happens.
10096 */
10097 if (WARN_ON(space_info->bytes_pinned > 0 ||
David Sterbab069e0c2013-02-08 21:28:17 +000010098 space_info->bytes_reserved > 0 ||
Josef Bacikd555b6c2016-03-25 13:25:51 -040010099 space_info->bytes_may_use > 0))
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -040010100 dump_space_info(info, space_info, 0, 0);
Chris Mason4184ea72009-03-10 12:39:20 -040010101 list_del(&space_info->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010102 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
10103 struct kobject *kobj;
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010104 kobj = space_info->block_group_kobjs[i];
10105 space_info->block_group_kobjs[i] = NULL;
10106 if (kobj) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010107 kobject_del(kobj);
10108 kobject_put(kobj);
10109 }
10110 }
10111 kobject_del(&space_info->kobj);
10112 kobject_put(&space_info->kobj);
Chris Mason4184ea72009-03-10 12:39:20 -040010113 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010114 return 0;
10115}
10116
Yan, Zhengb742bb82010-05-16 10:46:24 -040010117static void __link_block_group(struct btrfs_space_info *space_info,
10118 struct btrfs_block_group_cache *cache)
10119{
10120 int index = get_block_group_index(cache);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -040010121 bool first = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -040010122
10123 down_write(&space_info->groups_sem);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -040010124 if (list_empty(&space_info->block_groups[index]))
10125 first = true;
10126 list_add_tail(&cache->list, &space_info->block_groups[index]);
10127 up_write(&space_info->groups_sem);
10128
10129 if (first) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010130 struct raid_kobject *rkobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010131 int ret;
10132
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010133 rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS);
10134 if (!rkobj)
10135 goto out_err;
10136 rkobj->raid_type = index;
10137 kobject_init(&rkobj->kobj, &btrfs_raid_ktype);
10138 ret = kobject_add(&rkobj->kobj, &space_info->kobj,
10139 "%s", get_raid_name(index));
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010140 if (ret) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010141 kobject_put(&rkobj->kobj);
10142 goto out_err;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010143 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010144 space_info->block_group_kobjs[index] = &rkobj->kobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010145 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010146
10147 return;
10148out_err:
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -040010149 btrfs_warn(cache->fs_info,
10150 "failed to add kobject for block cache, ignoring");
Yan, Zhengb742bb82010-05-16 10:46:24 -040010151}
10152
Miao Xie920e4a52014-01-15 20:00:55 +080010153static struct btrfs_block_group_cache *
10154btrfs_create_block_group_cache(struct btrfs_root *root, u64 start, u64 size)
10155{
10156 struct btrfs_block_group_cache *cache;
10157
10158 cache = kzalloc(sizeof(*cache), GFP_NOFS);
10159 if (!cache)
10160 return NULL;
10161
10162 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
10163 GFP_NOFS);
10164 if (!cache->free_space_ctl) {
10165 kfree(cache);
10166 return NULL;
10167 }
10168
10169 cache->key.objectid = start;
10170 cache->key.offset = size;
10171 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
10172
10173 cache->sectorsize = root->sectorsize;
10174 cache->fs_info = root->fs_info;
10175 cache->full_stripe_len = btrfs_full_stripe_len(root,
10176 &root->fs_info->mapping_tree,
10177 start);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010178 set_free_space_tree_thresholds(cache);
10179
Miao Xie920e4a52014-01-15 20:00:55 +080010180 atomic_set(&cache->count, 1);
10181 spin_lock_init(&cache->lock);
Miao Xiee570fd22014-06-19 10:42:50 +080010182 init_rwsem(&cache->data_rwsem);
Miao Xie920e4a52014-01-15 20:00:55 +080010183 INIT_LIST_HEAD(&cache->list);
10184 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010185 INIT_LIST_HEAD(&cache->bg_list);
Josef Bacik633c0aa2014-10-31 09:49:34 -040010186 INIT_LIST_HEAD(&cache->ro_list);
Josef Bacikce93ec52014-11-17 15:45:48 -050010187 INIT_LIST_HEAD(&cache->dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -070010188 INIT_LIST_HEAD(&cache->io_list);
Miao Xie920e4a52014-01-15 20:00:55 +080010189 btrfs_init_free_space_ctl(cache);
Filipe Manana04216822014-11-27 21:14:15 +000010190 atomic_set(&cache->trimming, 0);
Omar Sandovala5ed9182015-09-29 20:50:35 -070010191 mutex_init(&cache->free_space_lock);
Miao Xie920e4a52014-01-15 20:00:55 +080010192
10193 return cache;
10194}
10195
Qu Wenruo23eb2f42018-08-01 10:37:17 +080010196
10197/*
10198 * Iterate all chunks and verify that each of them has the corresponding block
10199 * group
10200 */
10201static int check_chunk_block_group_mappings(struct btrfs_fs_info *fs_info)
10202{
10203 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
10204 struct extent_map *em;
10205 struct btrfs_block_group_cache *bg;
10206 u64 start = 0;
10207 int ret = 0;
10208
10209 while (1) {
10210 read_lock(&map_tree->map_tree.lock);
10211 /*
10212 * lookup_extent_mapping will return the first extent map
10213 * intersecting the range, so setting @len to 1 is enough to
10214 * get the first chunk.
10215 */
10216 em = lookup_extent_mapping(&map_tree->map_tree, start, 1);
10217 read_unlock(&map_tree->map_tree.lock);
10218 if (!em)
10219 break;
10220
10221 bg = btrfs_lookup_block_group(fs_info, em->start);
10222 if (!bg) {
10223 btrfs_err(fs_info,
10224 "chunk start=%llu len=%llu doesn't have corresponding block group",
10225 em->start, em->len);
10226 ret = -EUCLEAN;
10227 free_extent_map(em);
10228 break;
10229 }
10230 if (bg->key.objectid != em->start ||
10231 bg->key.offset != em->len ||
10232 (bg->flags & BTRFS_BLOCK_GROUP_TYPE_MASK) !=
10233 (em->map_lookup->type & BTRFS_BLOCK_GROUP_TYPE_MASK)) {
10234 btrfs_err(fs_info,
10235"chunk start=%llu len=%llu flags=0x%llx doesn't match block group start=%llu len=%llu flags=0x%llx",
10236 em->start, em->len,
10237 em->map_lookup->type & BTRFS_BLOCK_GROUP_TYPE_MASK,
10238 bg->key.objectid, bg->key.offset,
10239 bg->flags & BTRFS_BLOCK_GROUP_TYPE_MASK);
10240 ret = -EUCLEAN;
10241 free_extent_map(em);
10242 btrfs_put_block_group(bg);
10243 break;
10244 }
10245 start = em->start + em->len;
10246 free_extent_map(em);
10247 btrfs_put_block_group(bg);
10248 }
10249 return ret;
10250}
10251
Chris Mason9078a3e2007-04-26 16:46:15 -040010252int btrfs_read_block_groups(struct btrfs_root *root)
10253{
10254 struct btrfs_path *path;
10255 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -040010256 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -040010257 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -040010258 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -040010259 struct btrfs_key key;
10260 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -040010261 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -040010262 int need_clear = 0;
10263 u64 cache_gen;
Liu Bo49303382016-08-25 18:08:27 -070010264 u64 feature;
10265 int mixed;
10266
10267 feature = btrfs_super_incompat_flags(info->super_copy);
10268 mixed = !!(feature & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS);
Chris Mason96b51792007-10-15 16:15:19 -040010269
Chris Masonbe744172007-05-06 10:15:01 -040010270 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -040010271 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -040010272 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +020010273 key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Chris Mason9078a3e2007-04-26 16:46:15 -040010274 path = btrfs_alloc_path();
10275 if (!path)
10276 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +010010277 path->reada = READA_FORWARD;
Chris Mason9078a3e2007-04-26 16:46:15 -040010278
David Sterba6c417612011-04-13 15:41:04 +020010279 cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
Jeff Mahoney3cdde222016-06-09 21:38:35 -040010280 if (btrfs_test_opt(root->fs_info, SPACE_CACHE) &&
David Sterba6c417612011-04-13 15:41:04 +020010281 btrfs_super_generation(root->fs_info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -040010282 need_clear = 1;
Jeff Mahoney3cdde222016-06-09 21:38:35 -040010283 if (btrfs_test_opt(root->fs_info, CLEAR_CACHE))
Josef Bacik88c2ba32010-09-21 14:21:34 -040010284 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -040010285
Chris Masond3977122009-01-05 21:25:51 -050010286 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -040010287 ret = find_first_block_group(root, path, &key);
Yan, Zhengb742bb82010-05-16 10:46:24 -040010288 if (ret > 0)
10289 break;
Chris Mason0b86a832008-03-24 15:01:56 -040010290 if (ret != 0)
10291 goto error;
Miao Xie920e4a52014-01-15 20:00:55 +080010292
Chris Mason5f39d392007-10-15 16:14:19 -040010293 leaf = path->nodes[0];
10294 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Miao Xie920e4a52014-01-15 20:00:55 +080010295
10296 cache = btrfs_create_block_group_cache(root, found_key.objectid,
10297 found_key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -040010298 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -040010299 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -040010300 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -040010301 }
Josef Bacik96303082009-07-13 21:29:25 -040010302
Liu Bocf7c1ef2012-07-06 03:31:34 -060010303 if (need_clear) {
10304 /*
10305 * When we mount with old space cache, we need to
10306 * set BTRFS_DC_CLEAR and set dirty flag.
10307 *
10308 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
10309 * truncate the old free space cache inode and
10310 * setup a new one.
10311 * b) Setting 'dirty flag' makes sure that we flush
10312 * the new space cache info onto disk.
10313 */
Jeff Mahoney3cdde222016-06-09 21:38:35 -040010314 if (btrfs_test_opt(root->fs_info, SPACE_CACHE))
Josef Bacikce93ec52014-11-17 15:45:48 -050010315 cache->disk_cache_state = BTRFS_DC_CLEAR;
Liu Bocf7c1ef2012-07-06 03:31:34 -060010316 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010317
Chris Mason5f39d392007-10-15 16:14:19 -040010318 read_extent_buffer(leaf, &cache->item,
10319 btrfs_item_ptr_offset(leaf, path->slots[0]),
10320 sizeof(cache->item));
Miao Xie920e4a52014-01-15 20:00:55 +080010321 cache->flags = btrfs_block_group_flags(&cache->item);
Liu Bo49303382016-08-25 18:08:27 -070010322 if (!mixed &&
10323 ((cache->flags & BTRFS_BLOCK_GROUP_METADATA) &&
10324 (cache->flags & BTRFS_BLOCK_GROUP_DATA))) {
10325 btrfs_err(info,
10326"bg %llu is a mixed block group but filesystem hasn't enabled mixed block groups",
10327 cache->key.objectid);
Qu Wenruo615e9f12019-10-10 10:39:26 +080010328 btrfs_put_block_group(cache);
Liu Bo49303382016-08-25 18:08:27 -070010329 ret = -EINVAL;
10330 goto error;
10331 }
Chris Mason0b86a832008-03-24 15:01:56 -040010332
Chris Mason9078a3e2007-04-26 16:46:15 -040010333 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +020010334 btrfs_release_path(path);
Li Zefan34d52cb2011-03-29 13:46:06 +080010335
Josef Bacik817d52f2009-07-13 21:29:25 -040010336 /*
Josef Bacik3c148742011-02-02 15:53:47 +000010337 * We need to exclude the super stripes now so that the space
10338 * info has super bytes accounted for, otherwise we'll think
10339 * we have more space than we actually do.
10340 */
Josef Bacik835d9742013-03-19 12:13:25 -040010341 ret = exclude_super_stripes(root, cache);
10342 if (ret) {
10343 /*
10344 * We may have excluded something, so call this just in
10345 * case.
10346 */
10347 free_excluded_extents(root, cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010348 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010349 goto error;
10350 }
Josef Bacik3c148742011-02-02 15:53:47 +000010351
10352 /*
Josef Bacik817d52f2009-07-13 21:29:25 -040010353 * check for two cases, either we are full, and therefore
10354 * don't need to bother with the caching work since we won't
10355 * find any space, or we are empty, and we can just add all
10356 * the space in and be done with it. This saves us _alot_ of
10357 * time, particularly in the full case.
10358 */
10359 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -040010360 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010361 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik1b2da372009-09-11 16:11:20 -040010362 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010363 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -040010364 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010365 cache->cached = BTRFS_CACHE_FINISHED;
10366 add_new_free_space(cache, root->fs_info,
10367 found_key.objectid,
10368 found_key.objectid +
10369 found_key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -040010370 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010371 }
Chris Mason96b51792007-10-15 16:15:19 -040010372
Josef Bacik8c579fe2013-04-02 12:40:42 -040010373 ret = btrfs_add_block_group_cache(root->fs_info, cache);
10374 if (ret) {
10375 btrfs_remove_free_space_cache(cache);
10376 btrfs_put_block_group(cache);
10377 goto error;
10378 }
10379
Josef Bacikc83f8ef2016-03-25 13:25:52 -040010380 trace_btrfs_add_block_group(root->fs_info, cache, 0);
Chris Mason6324fbf2008-03-24 15:01:59 -040010381 ret = update_space_info(info, cache->flags, found_key.offset,
10382 btrfs_block_group_used(&cache->item),
Josef Bacike40edf22016-03-25 13:25:47 -040010383 cache->bytes_super, &space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010384 if (ret) {
10385 btrfs_remove_free_space_cache(cache);
10386 spin_lock(&info->block_group_cache_lock);
10387 rb_erase(&cache->cache_node,
10388 &info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +000010389 RB_CLEAR_NODE(&cache->cache_node);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010390 spin_unlock(&info->block_group_cache_lock);
10391 btrfs_put_block_group(cache);
10392 goto error;
10393 }
10394
Chris Mason6324fbf2008-03-24 15:01:59 -040010395 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -040010396
Yan, Zhengb742bb82010-05-16 10:46:24 -040010397 __link_block_group(space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010398
Chris Mason75ccf472008-09-30 19:24:06 -040010399 set_avail_alloc_bits(root->fs_info, cache->flags);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010400 if (btrfs_chunk_readonly(root, cache->key.objectid)) {
Zhaolei868f4012015-08-05 16:43:27 +080010401 inc_block_group_ro(cache, 1);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010402 } else if (btrfs_block_group_used(&cache->item) == 0) {
10403 spin_lock(&info->unused_bgs_lock);
10404 /* Should always be true but just in case. */
10405 if (list_empty(&cache->bg_list)) {
10406 btrfs_get_block_group(cache);
10407 list_add_tail(&cache->bg_list,
10408 &info->unused_bgs);
10409 }
10410 spin_unlock(&info->unused_bgs_lock);
10411 }
Chris Mason9078a3e2007-04-26 16:46:15 -040010412 }
Yan, Zhengb742bb82010-05-16 10:46:24 -040010413
10414 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
10415 if (!(get_alloc_profile(root, space_info->flags) &
10416 (BTRFS_BLOCK_GROUP_RAID10 |
10417 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -050010418 BTRFS_BLOCK_GROUP_RAID5 |
10419 BTRFS_BLOCK_GROUP_RAID6 |
Yan, Zhengb742bb82010-05-16 10:46:24 -040010420 BTRFS_BLOCK_GROUP_DUP)))
10421 continue;
10422 /*
10423 * avoid allocating from un-mirrored block group if there are
10424 * mirrored block groups.
10425 */
chandan1095cc02013-07-16 12:28:56 +053010426 list_for_each_entry(cache,
10427 &space_info->block_groups[BTRFS_RAID_RAID0],
10428 list)
Zhaolei868f4012015-08-05 16:43:27 +080010429 inc_block_group_ro(cache, 1);
chandan1095cc02013-07-16 12:28:56 +053010430 list_for_each_entry(cache,
10431 &space_info->block_groups[BTRFS_RAID_SINGLE],
10432 list)
Zhaolei868f4012015-08-05 16:43:27 +080010433 inc_block_group_ro(cache, 1);
Yan, Zhengb742bb82010-05-16 10:46:24 -040010434 }
Yan, Zhengf0486c62010-05-16 10:46:25 -040010435
10436 init_global_block_rsv(info);
Qu Wenruo23eb2f42018-08-01 10:37:17 +080010437 ret = check_chunk_block_group_mappings(info);
Chris Mason0b86a832008-03-24 15:01:56 -040010438error:
Chris Mason9078a3e2007-04-26 16:46:15 -040010439 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -040010440 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -040010441}
Chris Mason6324fbf2008-03-24 15:01:59 -040010442
Josef Bacikea658ba2012-09-11 16:57:25 -040010443void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans,
10444 struct btrfs_root *root)
10445{
Josef Bacik4c7b9a42018-09-28 07:18:02 -040010446 struct btrfs_block_group_cache *block_group;
Josef Bacikea658ba2012-09-11 16:57:25 -040010447 struct btrfs_root *extent_root = root->fs_info->extent_root;
10448 struct btrfs_block_group_item item;
10449 struct btrfs_key key;
10450 int ret = 0;
Filipe Mananad9a05402015-10-03 13:13:13 +010010451 bool can_flush_pending_bgs = trans->can_flush_pending_bgs;
Josef Bacikea658ba2012-09-11 16:57:25 -040010452
Filipe Mananad9a05402015-10-03 13:13:13 +010010453 trans->can_flush_pending_bgs = false;
Josef Bacik4c7b9a42018-09-28 07:18:02 -040010454 while (!list_empty(&trans->new_bgs)) {
10455 block_group = list_first_entry(&trans->new_bgs,
10456 struct btrfs_block_group_cache,
10457 bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -040010458 if (ret)
Filipe Mananac92f6be2014-11-26 15:28:55 +000010459 goto next;
Josef Bacikea658ba2012-09-11 16:57:25 -040010460
10461 spin_lock(&block_group->lock);
10462 memcpy(&item, &block_group->item, sizeof(item));
10463 memcpy(&key, &block_group->key, sizeof(key));
10464 spin_unlock(&block_group->lock);
10465
10466 ret = btrfs_insert_item(trans, extent_root, &key, &item,
10467 sizeof(item));
10468 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -040010469 btrfs_abort_transaction(trans, ret);
Josef Bacik6df9a952013-06-27 13:22:46 -040010470 ret = btrfs_finish_chunk_alloc(trans, extent_root,
10471 key.objectid, key.offset);
10472 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -040010473 btrfs_abort_transaction(trans, ret);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010474 add_block_group_free_space(trans, root->fs_info, block_group);
10475 /* already aborted the transaction if it failed. */
Filipe Mananac92f6be2014-11-26 15:28:55 +000010476next:
10477 list_del_init(&block_group->bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -040010478 }
Filipe Mananad9a05402015-10-03 13:13:13 +010010479 trans->can_flush_pending_bgs = can_flush_pending_bgs;
Josef Bacikea658ba2012-09-11 16:57:25 -040010480}
10481
Chris Mason6324fbf2008-03-24 15:01:59 -040010482int btrfs_make_block_group(struct btrfs_trans_handle *trans,
10483 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -040010484 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -040010485 u64 size)
10486{
10487 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -040010488 struct btrfs_root *extent_root;
10489 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -040010490 extent_root = root->fs_info->extent_root;
Chris Mason6324fbf2008-03-24 15:01:59 -040010491
Miao Xie995946d2014-04-02 19:51:06 +080010492 btrfs_set_log_full_commit(root->fs_info, trans);
Chris Masone02119d2008-09-05 16:13:11 -040010493
Miao Xie920e4a52014-01-15 20:00:55 +080010494 cache = btrfs_create_block_group_cache(root, chunk_offset, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -040010495 if (!cache)
10496 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +080010497
Chris Mason6324fbf2008-03-24 15:01:59 -040010498 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -040010499 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
Chris Mason6324fbf2008-03-24 15:01:59 -040010500 btrfs_set_block_group_flags(&cache->item, type);
10501
Miao Xie920e4a52014-01-15 20:00:55 +080010502 cache->flags = type;
Yan Zheng11833d62009-09-11 16:11:19 -040010503 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010504 cache->cached = BTRFS_CACHE_FINISHED;
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010505 cache->needs_free_space = 1;
Josef Bacik835d9742013-03-19 12:13:25 -040010506 ret = exclude_super_stripes(root, cache);
10507 if (ret) {
10508 /*
10509 * We may have excluded something, so call this just in
10510 * case.
10511 */
10512 free_excluded_extents(root, cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010513 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010514 return ret;
10515 }
Josef Bacik96303082009-07-13 21:29:25 -040010516
Josef Bacik817d52f2009-07-13 21:29:25 -040010517 add_new_free_space(cache, root->fs_info, chunk_offset,
10518 chunk_offset + size);
10519
Yan Zheng11833d62009-09-11 16:11:19 -040010520 free_excluded_extents(root, cache);
10521
Josef Bacikd0bd4562015-09-23 14:54:14 -040010522#ifdef CONFIG_BTRFS_DEBUG
10523 if (btrfs_should_fragment_free_space(root, cache)) {
10524 u64 new_bytes_used = size - bytes_used;
10525
10526 bytes_used += new_bytes_used >> 1;
10527 fragment_free_space(root, cache);
10528 }
10529#endif
Filipe Manana2e6e5182015-05-12 00:28:11 +010010530 /*
10531 * Call to ensure the corresponding space_info object is created and
10532 * assigned to our block group, but don't update its counters just yet.
10533 * We want our bg to be added to the rbtree with its ->space_info set.
10534 */
Josef Bacike40edf22016-03-25 13:25:47 -040010535 ret = update_space_info(root->fs_info, cache->flags, 0, 0, 0,
Filipe Manana2e6e5182015-05-12 00:28:11 +010010536 &cache->space_info);
10537 if (ret) {
10538 btrfs_remove_free_space_cache(cache);
10539 btrfs_put_block_group(cache);
10540 return ret;
10541 }
10542
Josef Bacik8c579fe2013-04-02 12:40:42 -040010543 ret = btrfs_add_block_group_cache(root->fs_info, cache);
10544 if (ret) {
10545 btrfs_remove_free_space_cache(cache);
10546 btrfs_put_block_group(cache);
10547 return ret;
10548 }
10549
Filipe Manana2e6e5182015-05-12 00:28:11 +010010550 /*
10551 * Now that our block group has its ->space_info set and is inserted in
10552 * the rbtree, update the space info's counters.
10553 */
Josef Bacikc83f8ef2016-03-25 13:25:52 -040010554 trace_btrfs_add_block_group(root->fs_info, cache, 1);
Chris Mason6324fbf2008-03-24 15:01:59 -040010555 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -040010556 cache->bytes_super, &cache->space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010557 if (ret) {
10558 btrfs_remove_free_space_cache(cache);
10559 spin_lock(&root->fs_info->block_group_cache_lock);
10560 rb_erase(&cache->cache_node,
10561 &root->fs_info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +000010562 RB_CLEAR_NODE(&cache->cache_node);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010563 spin_unlock(&root->fs_info->block_group_cache_lock);
10564 btrfs_put_block_group(cache);
10565 return ret;
10566 }
Li Zefanc7c144d2011-12-07 10:39:22 +080010567 update_global_block_rsv(root->fs_info);
Josef Bacik1b2da372009-09-11 16:11:20 -040010568
Yan, Zhengb742bb82010-05-16 10:46:24 -040010569 __link_block_group(cache->space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010570
Josef Bacik47ab2a62014-09-18 11:20:02 -040010571 list_add_tail(&cache->bg_list, &trans->new_bgs);
Chris Mason6324fbf2008-03-24 15:01:59 -040010572
Chris Masond18a2c42008-04-04 15:40:00 -040010573 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason6324fbf2008-03-24 15:01:59 -040010574 return 0;
10575}
Zheng Yan1a40e232008-09-26 10:09:34 -040010576
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010577static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
10578{
Ilya Dryomov899c81e2012-03-27 17:09:16 +030010579 u64 extra_flags = chunk_to_extended(flags) &
10580 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010581
Miao Xiede98ced2013-01-29 10:13:12 +000010582 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010583 if (flags & BTRFS_BLOCK_GROUP_DATA)
10584 fs_info->avail_data_alloc_bits &= ~extra_flags;
10585 if (flags & BTRFS_BLOCK_GROUP_METADATA)
10586 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
10587 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
10588 fs_info->avail_system_alloc_bits &= ~extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +000010589 write_sequnlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010590}
10591
Zheng Yan1a40e232008-09-26 10:09:34 -040010592int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
Filipe Manana04216822014-11-27 21:14:15 +000010593 struct btrfs_root *root, u64 group_start,
10594 struct extent_map *em)
Zheng Yan1a40e232008-09-26 10:09:34 -040010595{
10596 struct btrfs_path *path;
10597 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -040010598 struct btrfs_free_cluster *cluster;
Josef Bacik0af3d002010-06-21 14:48:16 -040010599 struct btrfs_root *tree_root = root->fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -040010600 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -040010601 struct inode *inode;
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010602 struct kobject *kobj = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -040010603 int ret;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010604 int index;
Josef Bacik89a55892010-10-14 14:52:27 -040010605 int factor;
Filipe Manana4f69cb92014-11-26 15:28:51 +000010606 struct btrfs_caching_control *caching_ctl = NULL;
Filipe Manana04216822014-11-27 21:14:15 +000010607 bool remove_em;
Zheng Yan1a40e232008-09-26 10:09:34 -040010608
Zheng Yan1a40e232008-09-26 10:09:34 -040010609 root = root->fs_info->extent_root;
10610
10611 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
10612 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -050010613 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -040010614
liubo9f7c43c2011-03-07 02:13:33 +000010615 /*
10616 * Free the reserved super bytes from this block group before
10617 * remove it.
10618 */
10619 free_excluded_extents(root, block_group);
10620
Zheng Yan1a40e232008-09-26 10:09:34 -040010621 memcpy(&key, &block_group->key, sizeof(key));
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010622 index = get_block_group_index(block_group);
Josef Bacik89a55892010-10-14 14:52:27 -040010623 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
10624 BTRFS_BLOCK_GROUP_RAID1 |
10625 BTRFS_BLOCK_GROUP_RAID10))
10626 factor = 2;
10627 else
10628 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -040010629
Chris Mason44fb5512009-06-04 15:34:51 -040010630 /* make sure this block group isn't part of an allocation cluster */
10631 cluster = &root->fs_info->data_alloc_cluster;
10632 spin_lock(&cluster->refill_lock);
10633 btrfs_return_cluster_to_free_space(block_group, cluster);
10634 spin_unlock(&cluster->refill_lock);
10635
10636 /*
10637 * make sure this block group isn't part of a metadata
10638 * allocation cluster
10639 */
10640 cluster = &root->fs_info->meta_alloc_cluster;
10641 spin_lock(&cluster->refill_lock);
10642 btrfs_return_cluster_to_free_space(block_group, cluster);
10643 spin_unlock(&cluster->refill_lock);
10644
Zheng Yan1a40e232008-09-26 10:09:34 -040010645 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -070010646 if (!path) {
10647 ret = -ENOMEM;
10648 goto out;
10649 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010650
Chris Mason1bbc6212015-04-06 12:46:08 -070010651 /*
10652 * get the inode first so any iput calls done for the io_list
10653 * aren't the final iput (no unlinks allowed now)
10654 */
Ilya Dryomov10b2f342011-10-02 13:56:53 +030010655 inode = lookup_free_space_inode(tree_root, block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -070010656
10657 mutex_lock(&trans->transaction->cache_write_mutex);
10658 /*
10659 * make sure our free spache cache IO is done before remove the
10660 * free space inode
10661 */
10662 spin_lock(&trans->transaction->dirty_bgs_lock);
10663 if (!list_empty(&block_group->io_list)) {
10664 list_del_init(&block_group->io_list);
10665
10666 WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode);
10667
10668 spin_unlock(&trans->transaction->dirty_bgs_lock);
10669 btrfs_wait_cache_io(root, trans, block_group,
10670 &block_group->io_ctl, path,
10671 block_group->key.objectid);
10672 btrfs_put_block_group(block_group);
10673 spin_lock(&trans->transaction->dirty_bgs_lock);
10674 }
10675
10676 if (!list_empty(&block_group->dirty_list)) {
10677 list_del_init(&block_group->dirty_list);
10678 btrfs_put_block_group(block_group);
10679 }
10680 spin_unlock(&trans->transaction->dirty_bgs_lock);
10681 mutex_unlock(&trans->transaction->cache_write_mutex);
10682
Josef Bacik0af3d002010-06-21 14:48:16 -040010683 if (!IS_ERR(inode)) {
Tsutomu Itohb5324022011-07-19 07:27:20 +000010684 ret = btrfs_orphan_add(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010685 if (ret) {
10686 btrfs_add_delayed_iput(inode);
10687 goto out;
10688 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010689 clear_nlink(inode);
10690 /* One for the block groups ref */
10691 spin_lock(&block_group->lock);
10692 if (block_group->iref) {
10693 block_group->iref = 0;
10694 block_group->inode = NULL;
10695 spin_unlock(&block_group->lock);
10696 iput(inode);
10697 } else {
10698 spin_unlock(&block_group->lock);
10699 }
10700 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -040010701 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -040010702 }
10703
10704 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
10705 key.offset = block_group->key.objectid;
10706 key.type = 0;
10707
10708 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
10709 if (ret < 0)
10710 goto out;
10711 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +020010712 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010713 if (ret == 0) {
10714 ret = btrfs_del_item(trans, tree_root, path);
10715 if (ret)
10716 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +020010717 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010718 }
10719
Yan Zheng3dfdb932009-01-21 10:49:16 -050010720 spin_lock(&root->fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -040010721 rb_erase(&block_group->cache_node,
10722 &root->fs_info->block_group_cache_tree);
Filipe Manana292cbd52014-11-26 15:28:50 +000010723 RB_CLEAR_NODE(&block_group->cache_node);
Liu Boa1897fd2012-12-27 09:01:23 +000010724
10725 if (root->fs_info->first_logical_byte == block_group->key.objectid)
10726 root->fs_info->first_logical_byte = (u64)-1;
Yan Zheng3dfdb932009-01-21 10:49:16 -050010727 spin_unlock(&root->fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -040010728
Josef Bacik80eb2342008-10-29 14:49:05 -040010729 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -040010730 /*
10731 * we must use list_del_init so people can check to see if they
10732 * are still on the list after taking the semaphore
10733 */
10734 list_del_init(&block_group->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010735 if (list_empty(&block_group->space_info->block_groups[index])) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010736 kobj = block_group->space_info->block_group_kobjs[index];
10737 block_group->space_info->block_group_kobjs[index] = NULL;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010738 clear_avail_alloc_bits(root->fs_info, block_group->flags);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010739 }
Josef Bacik80eb2342008-10-29 14:49:05 -040010740 up_write(&block_group->space_info->groups_sem);
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010741 if (kobj) {
10742 kobject_del(kobj);
10743 kobject_put(kobj);
10744 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010745
Filipe Manana4f69cb92014-11-26 15:28:51 +000010746 if (block_group->has_caching_ctl)
10747 caching_ctl = get_caching_control(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -040010748 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -040010749 wait_block_group_cache_done(block_group);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010750 if (block_group->has_caching_ctl) {
10751 down_write(&root->fs_info->commit_root_sem);
10752 if (!caching_ctl) {
10753 struct btrfs_caching_control *ctl;
10754
10755 list_for_each_entry(ctl,
10756 &root->fs_info->caching_block_groups, list)
10757 if (ctl->block_group == block_group) {
10758 caching_ctl = ctl;
10759 atomic_inc(&caching_ctl->count);
10760 break;
10761 }
10762 }
10763 if (caching_ctl)
10764 list_del_init(&caching_ctl->list);
10765 up_write(&root->fs_info->commit_root_sem);
10766 if (caching_ctl) {
10767 /* Once for the caching bgs list and once for us. */
10768 put_caching_control(caching_ctl);
10769 put_caching_control(caching_ctl);
10770 }
10771 }
Josef Bacik817d52f2009-07-13 21:29:25 -040010772
Josef Bacikce93ec52014-11-17 15:45:48 -050010773 spin_lock(&trans->transaction->dirty_bgs_lock);
10774 if (!list_empty(&block_group->dirty_list)) {
Chris Mason1bbc6212015-04-06 12:46:08 -070010775 WARN_ON(1);
10776 }
10777 if (!list_empty(&block_group->io_list)) {
10778 WARN_ON(1);
Josef Bacikce93ec52014-11-17 15:45:48 -050010779 }
10780 spin_unlock(&trans->transaction->dirty_bgs_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -040010781 btrfs_remove_free_space_cache(block_group);
10782
Yan Zhengc146afa2008-11-12 14:34:12 -050010783 spin_lock(&block_group->space_info->lock);
Filipe Manana75c68e92015-01-16 13:24:40 +000010784 list_del_init(&block_group->ro_list);
Zhao Lei18d018a2015-02-24 20:07:44 +080010785
Jeff Mahoney3cdde222016-06-09 21:38:35 -040010786 if (btrfs_test_opt(root->fs_info, ENOSPC_DEBUG)) {
Zhao Lei18d018a2015-02-24 20:07:44 +080010787 WARN_ON(block_group->space_info->total_bytes
10788 < block_group->key.offset);
10789 WARN_ON(block_group->space_info->bytes_readonly
10790 < block_group->key.offset);
10791 WARN_ON(block_group->space_info->disk_total
10792 < block_group->key.offset * factor);
10793 }
Yan Zhengc146afa2008-11-12 14:34:12 -050010794 block_group->space_info->total_bytes -= block_group->key.offset;
10795 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -040010796 block_group->space_info->disk_total -= block_group->key.offset * factor;
Zhao Lei18d018a2015-02-24 20:07:44 +080010797
Yan Zhengc146afa2008-11-12 14:34:12 -050010798 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -040010799
Josef Bacik0af3d002010-06-21 14:48:16 -040010800 memcpy(&key, &block_group->key, sizeof(key));
10801
Filipe Manana04216822014-11-27 21:14:15 +000010802 lock_chunks(root);
Filipe Manana495e64f2014-12-02 18:07:30 +000010803 if (!list_empty(&em->list)) {
10804 /* We're in the transaction->pending_chunks list. */
10805 free_extent_map(em);
10806 }
Filipe Manana04216822014-11-27 21:14:15 +000010807 spin_lock(&block_group->lock);
10808 block_group->removed = 1;
10809 /*
10810 * At this point trimming can't start on this block group, because we
10811 * removed the block group from the tree fs_info->block_group_cache_tree
10812 * so no one can't find it anymore and even if someone already got this
10813 * block group before we removed it from the rbtree, they have already
10814 * incremented block_group->trimming - if they didn't, they won't find
10815 * any free space entries because we already removed them all when we
10816 * called btrfs_remove_free_space_cache().
10817 *
10818 * And we must not remove the extent map from the fs_info->mapping_tree
10819 * to prevent the same logical address range and physical device space
10820 * ranges from being reused for a new block group. This is because our
10821 * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is
10822 * completely transactionless, so while it is trimming a range the
10823 * currently running transaction might finish and a new one start,
10824 * allowing for new block groups to be created that can reuse the same
10825 * physical device locations unless we take this special care.
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010826 *
10827 * There may also be an implicit trim operation if the file system
10828 * is mounted with -odiscard. The same protections must remain
10829 * in place until the extents have been discarded completely when
10830 * the transaction commit has completed.
Filipe Manana04216822014-11-27 21:14:15 +000010831 */
10832 remove_em = (atomic_read(&block_group->trimming) == 0);
10833 /*
10834 * Make sure a trimmer task always sees the em in the pinned_chunks list
10835 * if it sees block_group->removed == 1 (needs to lock block_group->lock
10836 * before checking block_group->removed).
10837 */
10838 if (!remove_em) {
10839 /*
10840 * Our em might be in trans->transaction->pending_chunks which
10841 * is protected by fs_info->chunk_mutex ([lock|unlock]_chunks),
10842 * and so is the fs_info->pinned_chunks list.
10843 *
10844 * So at this point we must be holding the chunk_mutex to avoid
10845 * any races with chunk allocation (more specifically at
10846 * volumes.c:contains_pending_extent()), to ensure it always
10847 * sees the em, either in the pending_chunks list or in the
10848 * pinned_chunks list.
10849 */
10850 list_move_tail(&em->list, &root->fs_info->pinned_chunks);
10851 }
10852 spin_unlock(&block_group->lock);
Filipe Manana04216822014-11-27 21:14:15 +000010853
10854 if (remove_em) {
10855 struct extent_map_tree *em_tree;
10856
10857 em_tree = &root->fs_info->mapping_tree.map_tree;
10858 write_lock(&em_tree->lock);
Filipe Manana8dbcd102014-12-02 18:07:49 +000010859 /*
10860 * The em might be in the pending_chunks list, so make sure the
10861 * chunk mutex is locked, since remove_extent_mapping() will
10862 * delete us from that list.
10863 */
Filipe Manana04216822014-11-27 21:14:15 +000010864 remove_extent_mapping(em_tree, em);
10865 write_unlock(&em_tree->lock);
10866 /* once for the tree */
10867 free_extent_map(em);
10868 }
10869
Filipe Manana8dbcd102014-12-02 18:07:49 +000010870 unlock_chunks(root);
10871
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010872 ret = remove_block_group_free_space(trans, root->fs_info, block_group);
10873 if (ret)
10874 goto out;
10875
Chris Masonfa9c0d792009-04-03 09:47:43 -040010876 btrfs_put_block_group(block_group);
10877 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -040010878
10879 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
10880 if (ret > 0)
10881 ret = -EIO;
10882 if (ret < 0)
10883 goto out;
10884
10885 ret = btrfs_del_item(trans, root, path);
10886out:
10887 btrfs_free_path(path);
10888 return ret;
10889}
liuboacce9522011-01-06 19:30:25 +080010890
Filipe Manana8eab77f2015-11-13 23:57:16 +000010891struct btrfs_trans_handle *
Filipe Manana7fd01182015-11-13 23:57:17 +000010892btrfs_start_trans_remove_block_group(struct btrfs_fs_info *fs_info,
10893 const u64 chunk_offset)
Filipe Manana8eab77f2015-11-13 23:57:16 +000010894{
Filipe Manana7fd01182015-11-13 23:57:17 +000010895 struct extent_map_tree *em_tree = &fs_info->mapping_tree.map_tree;
10896 struct extent_map *em;
10897 struct map_lookup *map;
10898 unsigned int num_items;
10899
10900 read_lock(&em_tree->lock);
10901 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
10902 read_unlock(&em_tree->lock);
10903 ASSERT(em && em->start == chunk_offset);
10904
Filipe Manana8eab77f2015-11-13 23:57:16 +000010905 /*
Filipe Manana7fd01182015-11-13 23:57:17 +000010906 * We need to reserve 3 + N units from the metadata space info in order
10907 * to remove a block group (done at btrfs_remove_chunk() and at
10908 * btrfs_remove_block_group()), which are used for:
10909 *
Filipe Manana8eab77f2015-11-13 23:57:16 +000010910 * 1 unit for adding the free space inode's orphan (located in the tree
10911 * of tree roots).
Filipe Manana7fd01182015-11-13 23:57:17 +000010912 * 1 unit for deleting the block group item (located in the extent
10913 * tree).
10914 * 1 unit for deleting the free space item (located in tree of tree
10915 * roots).
10916 * N units for deleting N device extent items corresponding to each
10917 * stripe (located in the device tree).
10918 *
10919 * In order to remove a block group we also need to reserve units in the
10920 * system space info in order to update the chunk tree (update one or
10921 * more device items and remove one chunk item), but this is done at
10922 * btrfs_remove_chunk() through a call to check_system_chunk().
Filipe Manana8eab77f2015-11-13 23:57:16 +000010923 */
Jeff Mahoney95617d62015-06-03 10:55:48 -040010924 map = em->map_lookup;
Filipe Manana7fd01182015-11-13 23:57:17 +000010925 num_items = 3 + map->num_stripes;
10926 free_extent_map(em);
10927
Filipe Manana8eab77f2015-11-13 23:57:16 +000010928 return btrfs_start_transaction_fallback_global_rsv(fs_info->extent_root,
Filipe Manana7fd01182015-11-13 23:57:17 +000010929 num_items, 1);
Filipe Manana8eab77f2015-11-13 23:57:16 +000010930}
10931
Josef Bacik47ab2a62014-09-18 11:20:02 -040010932/*
10933 * Process the unused_bgs list and remove any that don't have any allocated
10934 * space inside of them.
10935 */
10936void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info)
10937{
10938 struct btrfs_block_group_cache *block_group;
10939 struct btrfs_space_info *space_info;
10940 struct btrfs_root *root = fs_info->extent_root;
10941 struct btrfs_trans_handle *trans;
10942 int ret = 0;
10943
Josef Bacikafcdd122016-09-02 15:40:02 -040010944 if (!test_bit(BTRFS_FS_OPEN, &fs_info->flags))
Josef Bacik47ab2a62014-09-18 11:20:02 -040010945 return;
10946
10947 spin_lock(&fs_info->unused_bgs_lock);
10948 while (!list_empty(&fs_info->unused_bgs)) {
10949 u64 start, end;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010950 int trimming;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010951
10952 block_group = list_first_entry(&fs_info->unused_bgs,
10953 struct btrfs_block_group_cache,
10954 bg_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010955 list_del_init(&block_group->bg_list);
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010956
10957 space_info = block_group->space_info;
10958
Josef Bacik47ab2a62014-09-18 11:20:02 -040010959 if (ret || btrfs_mixed_space_info(space_info)) {
10960 btrfs_put_block_group(block_group);
10961 continue;
10962 }
10963 spin_unlock(&fs_info->unused_bgs_lock);
10964
Zhao Leid5f2e332015-10-08 18:46:44 +080010965 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Filipe Manana67c5e7d2015-06-11 00:58:53 +010010966
Josef Bacik47ab2a62014-09-18 11:20:02 -040010967 /* Don't want to race with allocators so take the groups_sem */
10968 down_write(&space_info->groups_sem);
10969 spin_lock(&block_group->lock);
Qu Wenruo1249b612018-06-22 12:35:00 +080010970 if (block_group->reserved || block_group->pinned ||
Josef Bacik47ab2a62014-09-18 11:20:02 -040010971 btrfs_block_group_used(&block_group->item) ||
Chris Mason19c4d2f2016-10-10 13:43:31 -070010972 block_group->ro ||
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010973 list_is_singular(&block_group->list)) {
Josef Bacik47ab2a62014-09-18 11:20:02 -040010974 /*
10975 * We want to bail if we made new allocations or have
10976 * outstanding allocations in this block group. We do
10977 * the ro check in case balance is currently acting on
10978 * this block group.
10979 */
10980 spin_unlock(&block_group->lock);
10981 up_write(&space_info->groups_sem);
10982 goto next;
10983 }
10984 spin_unlock(&block_group->lock);
10985
10986 /* We don't want to force the issue, only flip if it's ok. */
Zhaolei868f4012015-08-05 16:43:27 +080010987 ret = inc_block_group_ro(block_group, 0);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010988 up_write(&space_info->groups_sem);
10989 if (ret < 0) {
10990 ret = 0;
10991 goto next;
10992 }
10993
10994 /*
10995 * Want to do this before we do anything else so we can recover
10996 * properly if we fail to join the transaction.
10997 */
Filipe Manana7fd01182015-11-13 23:57:17 +000010998 trans = btrfs_start_trans_remove_block_group(fs_info,
10999 block_group->key.objectid);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011000 if (IS_ERR(trans)) {
Zhaolei868f4012015-08-05 16:43:27 +080011001 btrfs_dec_block_group_ro(root, block_group);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011002 ret = PTR_ERR(trans);
11003 goto next;
11004 }
11005
11006 /*
11007 * We could have pending pinned extents for this block group,
11008 * just delete them, we don't care about them anymore.
11009 */
11010 start = block_group->key.objectid;
11011 end = start + block_group->key.offset - 1;
Filipe Mananad4b450c2015-01-29 19:18:25 +000011012 /*
11013 * Hold the unused_bg_unpin_mutex lock to avoid racing with
11014 * btrfs_finish_extent_commit(). If we are at transaction N,
11015 * another task might be running finish_extent_commit() for the
11016 * previous transaction N - 1, and have seen a range belonging
11017 * to the block group in freed_extents[] before we were able to
11018 * clear the whole block group range from freed_extents[]. This
11019 * means that task can lookup for the block group after we
11020 * unpinned it from freed_extents[] and removed it, leading to
11021 * a BUG_ON() at btrfs_unpin_extent_range().
11022 */
11023 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana758eb512014-11-03 14:08:39 +000011024 ret = clear_extent_bits(&fs_info->freed_extents[0], start, end,
David Sterba91166212016-04-26 23:54:39 +020011025 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000011026 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000011027 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Zhaolei868f4012015-08-05 16:43:27 +080011028 btrfs_dec_block_group_ro(root, block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000011029 goto end_trans;
11030 }
11031 ret = clear_extent_bits(&fs_info->freed_extents[1], start, end,
David Sterba91166212016-04-26 23:54:39 +020011032 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000011033 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000011034 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Zhaolei868f4012015-08-05 16:43:27 +080011035 btrfs_dec_block_group_ro(root, block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000011036 goto end_trans;
11037 }
Filipe Mananad4b450c2015-01-29 19:18:25 +000011038 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011039
11040 /* Reset pinned so btrfs_put_block_group doesn't complain */
Zhao Leic30666d2015-02-25 14:17:20 +080011041 spin_lock(&space_info->lock);
11042 spin_lock(&block_group->lock);
11043
11044 space_info->bytes_pinned -= block_group->pinned;
11045 space_info->bytes_readonly += block_group->pinned;
11046 percpu_counter_add(&space_info->total_bytes_pinned,
11047 -block_group->pinned);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011048 block_group->pinned = 0;
11049
Zhao Leic30666d2015-02-25 14:17:20 +080011050 spin_unlock(&block_group->lock);
11051 spin_unlock(&space_info->lock);
11052
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011053 /* DISCARD can flip during remount */
Jeff Mahoney3cdde222016-06-09 21:38:35 -040011054 trimming = btrfs_test_opt(root->fs_info, DISCARD);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011055
11056 /* Implicit trim during transaction commit. */
11057 if (trimming)
11058 btrfs_get_block_group_trimming(block_group);
11059
Josef Bacik47ab2a62014-09-18 11:20:02 -040011060 /*
11061 * Btrfs_remove_chunk will abort the transaction if things go
11062 * horribly wrong.
11063 */
11064 ret = btrfs_remove_chunk(trans, root,
11065 block_group->key.objectid);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011066
11067 if (ret) {
11068 if (trimming)
11069 btrfs_put_block_group_trimming(block_group);
11070 goto end_trans;
11071 }
11072
11073 /*
11074 * If we're not mounted with -odiscard, we can just forget
11075 * about this block group. Otherwise we'll need to wait
11076 * until transaction commit to do the actual discard.
11077 */
11078 if (trimming) {
Filipe Manana348a0012015-11-27 12:16:16 +000011079 spin_lock(&fs_info->unused_bgs_lock);
11080 /*
11081 * A concurrent scrub might have added us to the list
11082 * fs_info->unused_bgs, so use a list_move operation
11083 * to add the block group to the deleted_bgs list.
11084 */
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011085 list_move(&block_group->bg_list,
11086 &trans->transaction->deleted_bgs);
Filipe Manana348a0012015-11-27 12:16:16 +000011087 spin_unlock(&fs_info->unused_bgs_lock);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011088 btrfs_get_block_group(block_group);
11089 }
Filipe Manana758eb512014-11-03 14:08:39 +000011090end_trans:
Josef Bacik47ab2a62014-09-18 11:20:02 -040011091 btrfs_end_transaction(trans, root);
11092next:
Zhao Leid5f2e332015-10-08 18:46:44 +080011093 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011094 btrfs_put_block_group(block_group);
11095 spin_lock(&fs_info->unused_bgs_lock);
11096 }
11097 spin_unlock(&fs_info->unused_bgs_lock);
11098}
11099
liuboc59021f2011-03-07 02:13:14 +000011100int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
11101{
11102 struct btrfs_space_info *space_info;
liubo1aba86d2011-04-08 08:44:37 +000011103 struct btrfs_super_block *disk_super;
11104 u64 features;
11105 u64 flags;
11106 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +000011107 int ret;
11108
David Sterba6c417612011-04-13 15:41:04 +020011109 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +000011110 if (!btrfs_super_root(disk_super))
Dan Carpenter0dc924c52016-01-13 15:21:17 +030011111 return -EINVAL;
liuboc59021f2011-03-07 02:13:14 +000011112
liubo1aba86d2011-04-08 08:44:37 +000011113 features = btrfs_super_incompat_flags(disk_super);
11114 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
11115 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +000011116
liubo1aba86d2011-04-08 08:44:37 +000011117 flags = BTRFS_BLOCK_GROUP_SYSTEM;
Josef Bacike40edf22016-03-25 13:25:47 -040011118 ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info);
liuboc59021f2011-03-07 02:13:14 +000011119 if (ret)
liubo1aba86d2011-04-08 08:44:37 +000011120 goto out;
liuboc59021f2011-03-07 02:13:14 +000011121
liubo1aba86d2011-04-08 08:44:37 +000011122 if (mixed) {
11123 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
Josef Bacike40edf22016-03-25 13:25:47 -040011124 ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info);
liubo1aba86d2011-04-08 08:44:37 +000011125 } else {
11126 flags = BTRFS_BLOCK_GROUP_METADATA;
Josef Bacike40edf22016-03-25 13:25:47 -040011127 ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info);
liubo1aba86d2011-04-08 08:44:37 +000011128 if (ret)
11129 goto out;
11130
11131 flags = BTRFS_BLOCK_GROUP_DATA;
Josef Bacike40edf22016-03-25 13:25:47 -040011132 ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info);
liubo1aba86d2011-04-08 08:44:37 +000011133 }
11134out:
liuboc59021f2011-03-07 02:13:14 +000011135 return ret;
11136}
11137
liuboacce9522011-01-06 19:30:25 +080011138int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
11139{
Filipe Manana678886b2014-12-07 21:31:47 +000011140 return unpin_extent_range(root, start, end, false);
liuboacce9522011-01-06 19:30:25 +080011141}
11142
Jeff Mahoney499f3772015-06-15 09:41:17 -040011143/*
11144 * It used to be that old block groups would be left around forever.
11145 * Iterating over them would be enough to trim unused space. Since we
11146 * now automatically remove them, we also need to iterate over unallocated
11147 * space.
11148 *
11149 * We don't want a transaction for this since the discard may take a
11150 * substantial amount of time. We don't require that a transaction be
11151 * running, but we do need to take a running transaction into account
11152 * to ensure that we're not discarding chunks that were released in
11153 * the current transaction.
11154 *
11155 * Holding the chunks lock will prevent other threads from allocating
11156 * or releasing chunks, but it won't prevent a running transaction
11157 * from committing and releasing the memory that the pending chunks
11158 * list head uses. For that, we need to take a reference to the
11159 * transaction.
11160 */
11161static int btrfs_trim_free_extents(struct btrfs_device *device,
David Sterbaabc261c2019-05-29 19:25:45 +020011162 u64 minlen, u64 *trimmed)
Jeff Mahoney499f3772015-06-15 09:41:17 -040011163{
David Sterbaabc261c2019-05-29 19:25:45 +020011164 u64 start = 0, len = 0;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011165 int ret;
11166
11167 *trimmed = 0;
11168
Jeff Mahoney391235f2018-09-06 17:18:15 -040011169 /* Discard not supported = nothing to do. */
11170 if (!blk_queue_discard(bdev_get_queue(device->bdev)))
11171 return 0;
11172
Jeff Mahoney499f3772015-06-15 09:41:17 -040011173 /* Not writeable = nothing to do. */
11174 if (!device->writeable)
11175 return 0;
11176
11177 /* No free space = nothing to do. */
11178 if (device->total_bytes <= device->bytes_used)
11179 return 0;
11180
11181 ret = 0;
11182
11183 while (1) {
11184 struct btrfs_fs_info *fs_info = device->dev_root->fs_info;
11185 struct btrfs_transaction *trans;
11186 u64 bytes;
11187
11188 ret = mutex_lock_interruptible(&fs_info->chunk_mutex);
11189 if (ret)
11190 return ret;
11191
11192 down_read(&fs_info->commit_root_sem);
11193
11194 spin_lock(&fs_info->trans_lock);
11195 trans = fs_info->running_transaction;
11196 if (trans)
11197 atomic_inc(&trans->use_count);
11198 spin_unlock(&fs_info->trans_lock);
11199
David Sterbaabc261c2019-05-29 19:25:45 +020011200 ret = find_free_dev_extent_start(trans, device, minlen, start,
11201 &start, &len);
Jeff Mahoney499f3772015-06-15 09:41:17 -040011202 if (trans)
11203 btrfs_put_transaction(trans);
11204
11205 if (ret) {
11206 up_read(&fs_info->commit_root_sem);
11207 mutex_unlock(&fs_info->chunk_mutex);
11208 if (ret == -ENOSPC)
11209 ret = 0;
11210 break;
11211 }
11212
11213 ret = btrfs_issue_discard(device->bdev, start, len, &bytes);
11214 up_read(&fs_info->commit_root_sem);
11215 mutex_unlock(&fs_info->chunk_mutex);
11216
11217 if (ret)
11218 break;
11219
11220 start += len;
11221 *trimmed += bytes;
11222
11223 if (fatal_signal_pending(current)) {
11224 ret = -ERESTARTSYS;
11225 break;
11226 }
11227
11228 cond_resched();
11229 }
11230
11231 return ret;
11232}
11233
Qu Wenruofc43e4c2018-11-20 10:26:36 +080011234/*
11235 * Trim the whole filesystem by:
11236 * 1) trimming the free space in each block group
11237 * 2) trimming the unallocated space on each device
11238 *
11239 * This will also continue trimming even if a block group or device encounters
11240 * an error. The return value will be the last error, or 0 if nothing bad
11241 * happens.
11242 */
Li Dongyangf7039b12011-03-24 10:24:28 +000011243int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range)
11244{
11245 struct btrfs_fs_info *fs_info = root->fs_info;
11246 struct btrfs_block_group_cache *cache = NULL;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011247 struct btrfs_device *device;
11248 struct list_head *devices;
Li Dongyangf7039b12011-03-24 10:24:28 +000011249 u64 group_trimmed;
11250 u64 start;
11251 u64 end;
11252 u64 trimmed = 0;
Qu Wenruofc43e4c2018-11-20 10:26:36 +080011253 u64 bg_failed = 0;
11254 u64 dev_failed = 0;
11255 int bg_ret = 0;
11256 int dev_ret = 0;
Li Dongyangf7039b12011-03-24 10:24:28 +000011257 int ret = 0;
11258
Qu Wenruo4423e072018-11-20 10:26:37 +080011259 cache = btrfs_lookup_first_block_group(fs_info, range->start);
Qu Wenruofc43e4c2018-11-20 10:26:36 +080011260 for (; cache; cache = next_block_group(fs_info->tree_root, cache)) {
Li Dongyangf7039b12011-03-24 10:24:28 +000011261 if (cache->key.objectid >= (range->start + range->len)) {
11262 btrfs_put_block_group(cache);
11263 break;
11264 }
11265
11266 start = max(range->start, cache->key.objectid);
11267 end = min(range->start + range->len,
11268 cache->key.objectid + cache->key.offset);
11269
11270 if (end - start >= range->minlen) {
11271 if (!block_group_cache_done(cache)) {
Liu Bof6373bf2012-12-27 09:01:18 +000011272 ret = cache_block_group(cache, 0);
Josef Bacik1be41b72013-06-12 13:56:06 -040011273 if (ret) {
Qu Wenruofc43e4c2018-11-20 10:26:36 +080011274 bg_failed++;
11275 bg_ret = ret;
11276 continue;
Josef Bacik1be41b72013-06-12 13:56:06 -040011277 }
11278 ret = wait_block_group_cache_done(cache);
11279 if (ret) {
Qu Wenruofc43e4c2018-11-20 10:26:36 +080011280 bg_failed++;
11281 bg_ret = ret;
11282 continue;
Josef Bacik1be41b72013-06-12 13:56:06 -040011283 }
Li Dongyangf7039b12011-03-24 10:24:28 +000011284 }
11285 ret = btrfs_trim_block_group(cache,
11286 &group_trimmed,
11287 start,
11288 end,
11289 range->minlen);
11290
11291 trimmed += group_trimmed;
11292 if (ret) {
Qu Wenruofc43e4c2018-11-20 10:26:36 +080011293 bg_failed++;
11294 bg_ret = ret;
11295 continue;
Li Dongyangf7039b12011-03-24 10:24:28 +000011296 }
11297 }
Li Dongyangf7039b12011-03-24 10:24:28 +000011298 }
11299
Qu Wenruofc43e4c2018-11-20 10:26:36 +080011300 if (bg_failed)
11301 btrfs_warn(fs_info,
11302 "failed to trim %llu block group(s), last error %d",
11303 bg_failed, bg_ret);
11304 mutex_lock(&fs_info->fs_devices->device_list_mutex);
11305 devices = &fs_info->fs_devices->devices;
Jeff Mahoneyd87af982018-09-06 17:18:14 -040011306 list_for_each_entry(device, devices, dev_list) {
David Sterbaabc261c2019-05-29 19:25:45 +020011307 ret = btrfs_trim_free_extents(device, range->minlen,
11308 &group_trimmed);
Qu Wenruofc43e4c2018-11-20 10:26:36 +080011309 if (ret) {
11310 dev_failed++;
11311 dev_ret = ret;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011312 break;
Qu Wenruofc43e4c2018-11-20 10:26:36 +080011313 }
Jeff Mahoney499f3772015-06-15 09:41:17 -040011314
11315 trimmed += group_trimmed;
11316 }
11317 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
11318
Qu Wenruofc43e4c2018-11-20 10:26:36 +080011319 if (dev_failed)
11320 btrfs_warn(fs_info,
11321 "failed to trim %llu device(s), last error %d",
11322 dev_failed, dev_ret);
Li Dongyangf7039b12011-03-24 10:24:28 +000011323 range->len = trimmed;
Qu Wenruofc43e4c2018-11-20 10:26:36 +080011324 if (bg_ret)
11325 return bg_ret;
11326 return dev_ret;
Li Dongyangf7039b12011-03-24 10:24:28 +000011327}
Miao Xie8257b2d2014-03-06 13:38:19 +080011328
11329/*
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011330 * btrfs_{start,end}_write_no_snapshoting() are similar to
11331 * mnt_{want,drop}_write(), they are used to prevent some tasks from writing
11332 * data into the page cache through nocow before the subvolume is snapshoted,
11333 * but flush the data into disk after the snapshot creation, or to prevent
11334 * operations while snapshoting is ongoing and that cause the snapshot to be
11335 * inconsistent (writes followed by expanding truncates for example).
Miao Xie8257b2d2014-03-06 13:38:19 +080011336 */
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011337void btrfs_end_write_no_snapshoting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011338{
11339 percpu_counter_dec(&root->subv_writers->counter);
11340 /*
David Sterbaa83342a2015-02-16 19:36:47 +010011341 * Make sure counter is updated before we wake up waiters.
Miao Xie8257b2d2014-03-06 13:38:19 +080011342 */
11343 smp_mb();
11344 if (waitqueue_active(&root->subv_writers->wait))
11345 wake_up(&root->subv_writers->wait);
11346}
11347
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011348int btrfs_start_write_no_snapshoting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011349{
David Sterbaee39b432014-09-30 01:33:33 +020011350 if (atomic_read(&root->will_be_snapshoted))
Miao Xie8257b2d2014-03-06 13:38:19 +080011351 return 0;
11352
11353 percpu_counter_inc(&root->subv_writers->counter);
11354 /*
11355 * Make sure counter is updated before we check for snapshot creation.
11356 */
11357 smp_mb();
David Sterbaee39b432014-09-30 01:33:33 +020011358 if (atomic_read(&root->will_be_snapshoted)) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011359 btrfs_end_write_no_snapshoting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +080011360 return 0;
11361 }
11362 return 1;
11363}
Zhao Lei0bc19f902016-01-06 18:56:36 +080011364
11365static int wait_snapshoting_atomic_t(atomic_t *a)
11366{
11367 schedule();
11368 return 0;
11369}
11370
11371void btrfs_wait_for_snapshot_creation(struct btrfs_root *root)
11372{
11373 while (true) {
11374 int ret;
11375
11376 ret = btrfs_start_write_no_snapshoting(root);
11377 if (ret)
11378 break;
11379 wait_on_atomic_t(&root->will_be_snapshoted,
11380 wait_snapshoting_atomic_t,
11381 TASK_UNINTERRUPTIBLE);
11382 }
11383}