blob: 78fcc67e7b8c5263669bd50330a8365ccfcff5ae [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 */
David Sterbab159fa22016-11-08 18:09:03 +01001117 memzero_extent_buffer(leaf, (unsigned long)bi, sizeof(*bi));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001118 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 */
Christoph Hellwigcf8cddd2016-10-27 09:27:36 +02002039 ret = btrfs_map_block(root->fs_info, BTRFS_MAP_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);
Miao Xie093486c2012-12-19 08:10:10 +00002540 btrfs_delayed_ref_unlock(locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002541 spin_lock(&delayed_refs->lock);
2542 locked_ref->processing = 0;
Arne Jansend1270cd2011-09-13 15:16:43 +02002543 delayed_refs->num_heads_ready++;
2544 spin_unlock(&delayed_refs->lock);
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;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002590 locked_ref->processing = 0;
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002591 btrfs_debug(fs_info,
2592 "run_delayed_extent_op returned %d",
2593 ret);
Miao Xie093486c2012-12-19 08:10:10 +00002594 btrfs_delayed_ref_unlock(locked_ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002595 return ret;
2596 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002597 continue;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002598 }
Chris Mason56bec292009-03-13 10:10:06 -04002599
Josef Bacikd7df2c72014-01-23 09:21:38 -05002600 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002601 * Need to drop our head ref lock and re-acquire the
Josef Bacikd7df2c72014-01-23 09:21:38 -05002602 * delayed ref lock and then re-check to make sure
2603 * nobody got added.
2604 */
2605 spin_unlock(&locked_ref->lock);
2606 spin_lock(&delayed_refs->lock);
2607 spin_lock(&locked_ref->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002608 if (!list_empty(&locked_ref->ref_list) ||
Josef Bacik573a0752014-03-27 19:41:34 -04002609 locked_ref->extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002610 spin_unlock(&locked_ref->lock);
2611 spin_unlock(&delayed_refs->lock);
2612 continue;
2613 }
2614 ref->in_tree = 0;
2615 delayed_refs->num_heads--;
Liu Boc46effa2013-10-14 12:59:45 +08002616 rb_erase(&locked_ref->href_node,
2617 &delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002618 spin_unlock(&delayed_refs->lock);
2619 } else {
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002620 actual_count++;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002621 ref->in_tree = 0;
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002622 list_del(&ref->list);
Liu Boc46effa2013-10-14 12:59:45 +08002623 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002624 atomic_dec(&delayed_refs->num_entries);
2625
Miao Xie093486c2012-12-19 08:10:10 +00002626 if (!btrfs_delayed_ref_is_head(ref)) {
Arne Jansen22cd2e72012-08-09 00:16:53 -06002627 /*
2628 * when we play the delayed ref, also correct the
2629 * ref_mod on head
2630 */
2631 switch (ref->action) {
2632 case BTRFS_ADD_DELAYED_REF:
2633 case BTRFS_ADD_DELAYED_EXTENT:
2634 locked_ref->node.ref_mod -= ref->ref_mod;
2635 break;
2636 case BTRFS_DROP_DELAYED_REF:
2637 locked_ref->node.ref_mod += ref->ref_mod;
2638 break;
2639 default:
2640 WARN_ON(1);
2641 }
2642 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002643 spin_unlock(&locked_ref->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002644
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002645 ret = run_one_delayed_ref(trans, root, ref, extent_op,
Chris Mason56bec292009-03-13 10:10:06 -04002646 must_insert_reserved);
Chris Mason56bec292009-03-13 10:10:06 -04002647
Miao Xie78a61842012-11-21 02:21:28 +00002648 btrfs_free_delayed_extent_op(extent_op);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002649 if (ret) {
Wang Xiaoguang9d1032c2016-06-20 09:18:52 +08002650 spin_lock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002651 locked_ref->processing = 0;
Wang Xiaoguang9d1032c2016-06-20 09:18:52 +08002652 delayed_refs->num_heads_ready++;
2653 spin_unlock(&delayed_refs->lock);
Miao Xie093486c2012-12-19 08:10:10 +00002654 btrfs_delayed_ref_unlock(locked_ref);
2655 btrfs_put_delayed_ref(ref);
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002656 btrfs_debug(fs_info, "run_one_delayed_ref returned %d",
2657 ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002658 return ret;
2659 }
2660
Miao Xie093486c2012-12-19 08:10:10 +00002661 /*
2662 * If this node is a head, that means all the refs in this head
2663 * have been dealt with, and we will pick the next head to deal
2664 * with, so we must unlock the head and drop it from the cluster
2665 * list before we release it.
2666 */
2667 if (btrfs_delayed_ref_is_head(ref)) {
Josef Bacik12621332015-02-03 07:50:16 -08002668 if (locked_ref->is_data &&
2669 locked_ref->total_ref_mod < 0) {
2670 spin_lock(&delayed_refs->lock);
2671 delayed_refs->pending_csums -= ref->num_bytes;
2672 spin_unlock(&delayed_refs->lock);
2673 }
Miao Xie093486c2012-12-19 08:10:10 +00002674 btrfs_delayed_ref_unlock(locked_ref);
2675 locked_ref = NULL;
2676 }
2677 btrfs_put_delayed_ref(ref);
2678 count++;
Chris Mason1887be62009-03-13 10:11:24 -04002679 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002680 }
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002681
2682 /*
2683 * We don't want to include ref heads since we can have empty ref heads
2684 * and those will drastically skew our runtime down since we just do
2685 * accounting, no actual extent tree updates.
2686 */
2687 if (actual_count > 0) {
2688 u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start));
2689 u64 avg;
2690
2691 /*
2692 * We weigh the current average higher than our current runtime
2693 * to avoid large swings in the average.
2694 */
2695 spin_lock(&delayed_refs->lock);
2696 avg = fs_info->avg_delayed_ref_runtime * 3 + runtime;
David Sterbaf8c269d2015-01-16 17:21:12 +01002697 fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002698 spin_unlock(&delayed_refs->lock);
2699 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002700 return 0;
Chris Masonc3e69d52009-03-13 10:17:05 -04002701}
2702
Arne Jansen709c0482011-09-12 12:22:57 +02002703#ifdef SCRAMBLE_DELAYED_REFS
2704/*
2705 * Normally delayed refs get processed in ascending bytenr order. This
2706 * correlates in most cases to the order added. To expose dependencies on this
2707 * order, we start to process the tree in the middle instead of the beginning
2708 */
2709static u64 find_middle(struct rb_root *root)
2710{
2711 struct rb_node *n = root->rb_node;
2712 struct btrfs_delayed_ref_node *entry;
2713 int alt = 1;
2714 u64 middle;
2715 u64 first = 0, last = 0;
2716
2717 n = rb_first(root);
2718 if (n) {
2719 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2720 first = entry->bytenr;
2721 }
2722 n = rb_last(root);
2723 if (n) {
2724 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2725 last = entry->bytenr;
2726 }
2727 n = root->rb_node;
2728
2729 while (n) {
2730 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2731 WARN_ON(!entry->in_tree);
2732
2733 middle = entry->bytenr;
2734
2735 if (alt)
2736 n = n->rb_left;
2737 else
2738 n = n->rb_right;
2739
2740 alt = 1 - alt;
2741 }
2742 return middle;
2743}
2744#endif
2745
Josef Bacik1be41b72013-06-12 13:56:06 -04002746static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads)
2747{
2748 u64 num_bytes;
2749
2750 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2751 sizeof(struct btrfs_extent_inline_ref));
2752 if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2753 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2754
2755 /*
2756 * 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 -04002757 * closer to what we're really going to want to use.
Josef Bacik1be41b72013-06-12 13:56:06 -04002758 */
David Sterbaf8c269d2015-01-16 17:21:12 +01002759 return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root));
Josef Bacik1be41b72013-06-12 13:56:06 -04002760}
2761
Josef Bacik12621332015-02-03 07:50:16 -08002762/*
2763 * Takes the number of bytes to be csumm'ed and figures out how many leaves it
2764 * would require to store the csums for that many bytes.
2765 */
Chris Mason28f75a02015-02-04 06:59:29 -08002766u64 btrfs_csum_bytes_to_leaves(struct btrfs_root *root, u64 csum_bytes)
Josef Bacik12621332015-02-03 07:50:16 -08002767{
2768 u64 csum_size;
2769 u64 num_csums_per_leaf;
2770 u64 num_csums;
2771
Jeff Mahoney14a1e062016-06-15 10:25:38 -04002772 csum_size = BTRFS_MAX_ITEM_SIZE(root);
Josef Bacik12621332015-02-03 07:50:16 -08002773 num_csums_per_leaf = div64_u64(csum_size,
2774 (u64)btrfs_super_csum_size(root->fs_info->super_copy));
2775 num_csums = div64_u64(csum_bytes, root->sectorsize);
2776 num_csums += num_csums_per_leaf - 1;
2777 num_csums = div64_u64(num_csums, num_csums_per_leaf);
2778 return num_csums;
2779}
2780
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002781int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans,
Josef Bacik1be41b72013-06-12 13:56:06 -04002782 struct btrfs_root *root)
2783{
2784 struct btrfs_block_rsv *global_rsv;
2785 u64 num_heads = trans->transaction->delayed_refs.num_heads_ready;
Josef Bacik12621332015-02-03 07:50:16 -08002786 u64 csum_bytes = trans->transaction->delayed_refs.pending_csums;
Josef Bacikcb723e42015-02-18 08:06:57 -08002787 u64 num_dirty_bgs = trans->transaction->num_dirty_bgs;
2788 u64 num_bytes, num_dirty_bgs_bytes;
Josef Bacik1be41b72013-06-12 13:56:06 -04002789 int ret = 0;
2790
2791 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
2792 num_heads = heads_to_leaves(root, num_heads);
2793 if (num_heads > 1)
David Sterba707e8a02014-06-04 19:22:26 +02002794 num_bytes += (num_heads - 1) * root->nodesize;
Josef Bacik1be41b72013-06-12 13:56:06 -04002795 num_bytes <<= 1;
Chris Mason28f75a02015-02-04 06:59:29 -08002796 num_bytes += btrfs_csum_bytes_to_leaves(root, csum_bytes) * root->nodesize;
Josef Bacikcb723e42015-02-18 08:06:57 -08002797 num_dirty_bgs_bytes = btrfs_calc_trans_metadata_size(root,
2798 num_dirty_bgs);
Josef Bacik1be41b72013-06-12 13:56:06 -04002799 global_rsv = &root->fs_info->global_block_rsv;
2800
2801 /*
2802 * If we can't allocate any more chunks lets make sure we have _lots_ of
2803 * wiggle room since running delayed refs can create more delayed refs.
2804 */
Josef Bacikcb723e42015-02-18 08:06:57 -08002805 if (global_rsv->space_info->full) {
2806 num_dirty_bgs_bytes <<= 1;
Josef Bacik1be41b72013-06-12 13:56:06 -04002807 num_bytes <<= 1;
Josef Bacikcb723e42015-02-18 08:06:57 -08002808 }
Josef Bacik1be41b72013-06-12 13:56:06 -04002809
2810 spin_lock(&global_rsv->lock);
Josef Bacikcb723e42015-02-18 08:06:57 -08002811 if (global_rsv->reserved <= num_bytes + num_dirty_bgs_bytes)
Josef Bacik1be41b72013-06-12 13:56:06 -04002812 ret = 1;
2813 spin_unlock(&global_rsv->lock);
2814 return ret;
2815}
2816
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002817int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans,
2818 struct btrfs_root *root)
2819{
2820 struct btrfs_fs_info *fs_info = root->fs_info;
2821 u64 num_entries =
2822 atomic_read(&trans->transaction->delayed_refs.num_entries);
2823 u64 avg_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002824 u64 val;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002825
2826 smp_mb();
2827 avg_runtime = fs_info->avg_delayed_ref_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002828 val = num_entries * avg_runtime;
Wang Xiaoguangdc1a90c2016-10-26 15:23:01 +08002829 if (val >= NSEC_PER_SEC)
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002830 return 1;
Chris Masona79b7d42014-05-22 16:18:52 -07002831 if (val >= NSEC_PER_SEC / 2)
2832 return 2;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002833
2834 return btrfs_check_space_for_delayed_refs(trans, root);
2835}
2836
Chris Masona79b7d42014-05-22 16:18:52 -07002837struct async_delayed_refs {
2838 struct btrfs_root *root;
Josef Bacik31b96552016-04-11 17:37:40 -04002839 u64 transid;
Chris Masona79b7d42014-05-22 16:18:52 -07002840 int count;
2841 int error;
2842 int sync;
2843 struct completion wait;
2844 struct btrfs_work work;
2845};
2846
2847static void delayed_ref_async_start(struct btrfs_work *work)
2848{
2849 struct async_delayed_refs *async;
2850 struct btrfs_trans_handle *trans;
2851 int ret;
2852
2853 async = container_of(work, struct async_delayed_refs, work);
2854
Chris Mason0f873ec2016-04-27 09:59:38 -04002855 /* if the commit is already started, we don't need to wait here */
2856 if (btrfs_transaction_blocked(async->root->fs_info))
Josef Bacik31b96552016-04-11 17:37:40 -04002857 goto done;
Josef Bacik31b96552016-04-11 17:37:40 -04002858
Chris Mason0f873ec2016-04-27 09:59:38 -04002859 trans = btrfs_join_transaction(async->root);
2860 if (IS_ERR(trans)) {
2861 async->error = PTR_ERR(trans);
Chris Masona79b7d42014-05-22 16:18:52 -07002862 goto done;
2863 }
2864
2865 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002866 * trans->sync means that when we call end_transaction, we won't
Chris Masona79b7d42014-05-22 16:18:52 -07002867 * wait on delayed refs
2868 */
2869 trans->sync = true;
Chris Mason0f873ec2016-04-27 09:59:38 -04002870
2871 /* Don't bother flushing if we got into a different transaction */
2872 if (trans->transid > async->transid)
2873 goto end;
2874
Chris Masona79b7d42014-05-22 16:18:52 -07002875 ret = btrfs_run_delayed_refs(trans, async->root, async->count);
2876 if (ret)
2877 async->error = ret;
Chris Mason0f873ec2016-04-27 09:59:38 -04002878end:
Chris Masona79b7d42014-05-22 16:18:52 -07002879 ret = btrfs_end_transaction(trans, async->root);
2880 if (ret && !async->error)
2881 async->error = ret;
2882done:
2883 if (async->sync)
2884 complete(&async->wait);
2885 else
2886 kfree(async);
2887}
2888
2889int btrfs_async_run_delayed_refs(struct btrfs_root *root,
Josef Bacik31b96552016-04-11 17:37:40 -04002890 unsigned long count, u64 transid, int wait)
Chris Masona79b7d42014-05-22 16:18:52 -07002891{
2892 struct async_delayed_refs *async;
2893 int ret;
2894
2895 async = kmalloc(sizeof(*async), GFP_NOFS);
2896 if (!async)
2897 return -ENOMEM;
2898
2899 async->root = root->fs_info->tree_root;
2900 async->count = count;
2901 async->error = 0;
Josef Bacik31b96552016-04-11 17:37:40 -04002902 async->transid = transid;
Chris Masona79b7d42014-05-22 16:18:52 -07002903 if (wait)
2904 async->sync = 1;
2905 else
2906 async->sync = 0;
2907 init_completion(&async->wait);
2908
Liu Bo9e0af232014-08-15 23:36:53 +08002909 btrfs_init_work(&async->work, btrfs_extent_refs_helper,
2910 delayed_ref_async_start, NULL, NULL);
Chris Masona79b7d42014-05-22 16:18:52 -07002911
2912 btrfs_queue_work(root->fs_info->extent_workers, &async->work);
2913
2914 if (wait) {
2915 wait_for_completion(&async->wait);
2916 ret = async->error;
2917 kfree(async);
2918 return ret;
2919 }
2920 return 0;
2921}
2922
Chris Masonc3e69d52009-03-13 10:17:05 -04002923/*
2924 * this starts processing the delayed reference count updates and
2925 * extent insertions we have queued up so far. count can be
2926 * 0, which means to process everything in the tree at the start
2927 * of the run (but not newly added entries), or it can be some target
2928 * number you'd like to process.
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002929 *
2930 * Returns 0 on success or if called with an aborted transaction
2931 * Returns <0 on error and aborts the transaction
Chris Masonc3e69d52009-03-13 10:17:05 -04002932 */
2933int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2934 struct btrfs_root *root, unsigned long count)
2935{
2936 struct rb_node *node;
2937 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boc46effa2013-10-14 12:59:45 +08002938 struct btrfs_delayed_ref_head *head;
Chris Masonc3e69d52009-03-13 10:17:05 -04002939 int ret;
2940 int run_all = count == (unsigned long)-1;
Filipe Mananad9a05402015-10-03 13:13:13 +01002941 bool can_flush_pending_bgs = trans->can_flush_pending_bgs;
Chris Masonc3e69d52009-03-13 10:17:05 -04002942
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002943 /* We'll clean this up in btrfs_cleanup_transaction */
2944 if (trans->aborted)
2945 return 0;
2946
Josef Bacikafcdd122016-09-02 15:40:02 -04002947 if (test_bit(BTRFS_FS_CREATING_FREE_SPACE_TREE, &root->fs_info->flags))
Chris Mason511711a2015-12-30 07:52:35 -08002948 return 0;
2949
Chris Masonc3e69d52009-03-13 10:17:05 -04002950 if (root == root->fs_info->extent_root)
2951 root = root->fs_info->tree_root;
2952
2953 delayed_refs = &trans->transaction->delayed_refs;
Liu Bo26455d32014-12-17 16:14:09 +08002954 if (count == 0)
Josef Bacikd7df2c72014-01-23 09:21:38 -05002955 count = atomic_read(&delayed_refs->num_entries) * 2;
Chris Masonbb721702013-01-29 18:44:12 -05002956
Chris Masonc3e69d52009-03-13 10:17:05 -04002957again:
Arne Jansen709c0482011-09-12 12:22:57 +02002958#ifdef SCRAMBLE_DELAYED_REFS
2959 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
2960#endif
Filipe Mananad9a05402015-10-03 13:13:13 +01002961 trans->can_flush_pending_bgs = false;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002962 ret = __btrfs_run_delayed_refs(trans, root, count);
2963 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002964 btrfs_abort_transaction(trans, ret);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002965 return ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04002966 }
2967
Chris Mason56bec292009-03-13 10:10:06 -04002968 if (run_all) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002969 if (!list_empty(&trans->new_bgs))
Josef Bacikea658ba2012-09-11 16:57:25 -04002970 btrfs_create_pending_block_groups(trans, root);
Josef Bacikea658ba2012-09-11 16:57:25 -04002971
Josef Bacikd7df2c72014-01-23 09:21:38 -05002972 spin_lock(&delayed_refs->lock);
Liu Boc46effa2013-10-14 12:59:45 +08002973 node = rb_first(&delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002974 if (!node) {
2975 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002976 goto out;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002977 }
Chris Mason56bec292009-03-13 10:10:06 -04002978
2979 while (node) {
Liu Boc46effa2013-10-14 12:59:45 +08002980 head = rb_entry(node, struct btrfs_delayed_ref_head,
2981 href_node);
2982 if (btrfs_delayed_ref_is_head(&head->node)) {
2983 struct btrfs_delayed_ref_node *ref;
Chris Mason56bec292009-03-13 10:10:06 -04002984
Liu Boc46effa2013-10-14 12:59:45 +08002985 ref = &head->node;
Chris Mason56bec292009-03-13 10:10:06 -04002986 atomic_inc(&ref->refs);
2987
2988 spin_unlock(&delayed_refs->lock);
David Sterba8cc33e52011-05-02 15:29:25 +02002989 /*
2990 * Mutex was contended, block until it's
2991 * released and try again
2992 */
Chris Mason56bec292009-03-13 10:10:06 -04002993 mutex_lock(&head->mutex);
2994 mutex_unlock(&head->mutex);
2995
2996 btrfs_put_delayed_ref(ref);
Chris Mason1887be62009-03-13 10:11:24 -04002997 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002998 goto again;
Liu Boc46effa2013-10-14 12:59:45 +08002999 } else {
3000 WARN_ON(1);
Chris Mason56bec292009-03-13 10:10:06 -04003001 }
3002 node = rb_next(node);
3003 }
3004 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003005 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04003006 goto again;
3007 }
Chris Mason54aa1f42007-06-22 14:16:25 -04003008out:
Jan Schmidtedf39272012-06-28 18:04:55 +02003009 assert_qgroups_uptodate(trans);
Filipe Mananad9a05402015-10-03 13:13:13 +01003010 trans->can_flush_pending_bgs = can_flush_pending_bgs;
Chris Masona28ec192007-03-06 20:08:01 -05003011 return 0;
3012}
3013
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003014int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
3015 struct btrfs_root *root,
3016 u64 bytenr, u64 num_bytes, u64 flags,
Josef Bacikb1c79e02013-05-09 13:49:30 -04003017 int level, int is_data)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003018{
3019 struct btrfs_delayed_extent_op *extent_op;
3020 int ret;
3021
Miao Xie78a61842012-11-21 02:21:28 +00003022 extent_op = btrfs_alloc_delayed_extent_op();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003023 if (!extent_op)
3024 return -ENOMEM;
3025
3026 extent_op->flags_to_set = flags;
David Sterba35b3ad52015-11-30 16:51:29 +01003027 extent_op->update_flags = true;
3028 extent_op->update_key = false;
3029 extent_op->is_data = is_data ? true : false;
Josef Bacikb1c79e02013-05-09 13:49:30 -04003030 extent_op->level = level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003031
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003032 ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr,
3033 num_bytes, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003034 if (ret)
Miao Xie78a61842012-11-21 02:21:28 +00003035 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003036 return ret;
3037}
3038
3039static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
3040 struct btrfs_root *root,
3041 struct btrfs_path *path,
3042 u64 objectid, u64 offset, u64 bytenr)
3043{
3044 struct btrfs_delayed_ref_head *head;
3045 struct btrfs_delayed_ref_node *ref;
3046 struct btrfs_delayed_data_ref *data_ref;
3047 struct btrfs_delayed_ref_root *delayed_refs;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003048 int ret = 0;
3049
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003050 delayed_refs = &trans->transaction->delayed_refs;
3051 spin_lock(&delayed_refs->lock);
3052 head = btrfs_find_delayed_ref_head(trans, bytenr);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003053 if (!head) {
3054 spin_unlock(&delayed_refs->lock);
3055 return 0;
3056 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003057
3058 if (!mutex_trylock(&head->mutex)) {
3059 atomic_inc(&head->node.refs);
3060 spin_unlock(&delayed_refs->lock);
3061
David Sterbab3b4aa72011-04-21 01:20:15 +02003062 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003063
David Sterba8cc33e52011-05-02 15:29:25 +02003064 /*
3065 * Mutex was contended, block until it's released and let
3066 * caller try again
3067 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003068 mutex_lock(&head->mutex);
3069 mutex_unlock(&head->mutex);
3070 btrfs_put_delayed_ref(&head->node);
3071 return -EAGAIN;
3072 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003073 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003074
3075 spin_lock(&head->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08003076 list_for_each_entry(ref, &head->ref_list, list) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05003077 /* If it's a shared ref we know a cross reference exists */
3078 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) {
3079 ret = 1;
3080 break;
3081 }
3082
3083 data_ref = btrfs_delayed_node_to_data_ref(ref);
3084
3085 /*
3086 * If our ref doesn't match the one we're currently looking at
3087 * then we have a cross reference.
3088 */
3089 if (data_ref->root != root->root_key.objectid ||
3090 data_ref->objectid != objectid ||
3091 data_ref->offset != offset) {
3092 ret = 1;
3093 break;
3094 }
3095 }
3096 spin_unlock(&head->lock);
3097 mutex_unlock(&head->mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003098 return ret;
3099}
3100
3101static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
3102 struct btrfs_root *root,
3103 struct btrfs_path *path,
3104 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05003105{
3106 struct btrfs_root *extent_root = root->fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04003107 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003108 struct btrfs_extent_data_ref *ref;
3109 struct btrfs_extent_inline_ref *iref;
3110 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05003111 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003112 u32 item_size;
Yan Zhengf321e492008-07-30 09:26:11 -04003113 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05003114
Chris Masonbe20aa92007-12-17 20:14:01 -05003115 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04003116 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04003117 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05003118
Chris Masonbe20aa92007-12-17 20:14:01 -05003119 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
3120 if (ret < 0)
3121 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003122 BUG_ON(ret == 0); /* Corruption */
Yan Zheng80ff3852008-10-30 14:20:02 -04003123
3124 ret = -ENOENT;
3125 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04003126 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003127
Zheng Yan31840ae2008-09-23 13:14:14 -04003128 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04003129 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003130 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05003131
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003132 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05003133 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003134
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003135 ret = 1;
3136 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
3137#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
3138 if (item_size < sizeof(*ei)) {
3139 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
3140 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003141 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003142#endif
3143 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
3144
3145 if (item_size != sizeof(*ei) +
3146 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
3147 goto out;
3148
3149 if (btrfs_extent_generation(leaf, ei) <=
3150 btrfs_root_last_snapshot(&root->root_item))
3151 goto out;
3152
3153 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
3154 if (btrfs_extent_inline_ref_type(leaf, iref) !=
3155 BTRFS_EXTENT_DATA_REF_KEY)
3156 goto out;
3157
3158 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
3159 if (btrfs_extent_refs(leaf, ei) !=
3160 btrfs_extent_data_ref_count(leaf, ref) ||
3161 btrfs_extent_data_ref_root(leaf, ref) !=
3162 root->root_key.objectid ||
3163 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
3164 btrfs_extent_data_ref_offset(leaf, ref) != offset)
3165 goto out;
3166
Yan Zhengf321e492008-07-30 09:26:11 -04003167 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05003168out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003169 return ret;
3170}
3171
3172int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
3173 struct btrfs_root *root,
3174 u64 objectid, u64 offset, u64 bytenr)
3175{
3176 struct btrfs_path *path;
3177 int ret;
3178 int ret2;
3179
3180 path = btrfs_alloc_path();
3181 if (!path)
3182 return -ENOENT;
3183
3184 do {
3185 ret = check_committed_ref(trans, root, path, objectid,
3186 offset, bytenr);
3187 if (ret && ret != -ENOENT)
3188 goto out;
3189
3190 ret2 = check_delayed_ref(trans, root, path, objectid,
3191 offset, bytenr);
3192 } while (ret2 == -EAGAIN);
3193
3194 if (ret2 && ret2 != -ENOENT) {
3195 ret = ret2;
3196 goto out;
3197 }
3198
3199 if (ret != -ENOENT || ret2 != -ENOENT)
3200 ret = 0;
3201out:
Yan Zhengf321e492008-07-30 09:26:11 -04003202 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003203 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3204 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04003205 return ret;
3206}
3207
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003208static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05003209 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003210 struct extent_buffer *buf,
Josef Bacike339a6b2014-07-02 10:54:25 -07003211 int full_backref, int inc)
Zheng Yan31840ae2008-09-23 13:14:14 -04003212{
3213 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003214 u64 num_bytes;
3215 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003216 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04003217 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04003218 struct btrfs_key key;
3219 struct btrfs_file_extent_item *fi;
3220 int i;
3221 int level;
3222 int ret = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04003223 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003224 u64, u64, u64, u64, u64, u64);
Zheng Yan31840ae2008-09-23 13:14:14 -04003225
David Sterbafccb84c2014-09-29 23:53:21 +02003226
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -04003227 if (btrfs_is_testing(root->fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04003228 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02003229
Zheng Yan31840ae2008-09-23 13:14:14 -04003230 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04003231 nritems = btrfs_header_nritems(buf);
3232 level = btrfs_header_level(buf);
3233
Miao Xie27cdeb72014-04-02 19:51:05 +08003234 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003235 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05003236
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003237 if (inc)
3238 process_func = btrfs_inc_extent_ref;
3239 else
3240 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003241
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003242 if (full_backref)
3243 parent = buf->start;
3244 else
3245 parent = 0;
3246
Zheng Yan31840ae2008-09-23 13:14:14 -04003247 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04003248 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003249 btrfs_item_key_to_cpu(buf, &key, i);
David Sterba962a2982014-06-04 18:41:45 +02003250 if (key.type != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04003251 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003252 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04003253 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003254 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04003255 BTRFS_FILE_EXTENT_INLINE)
3256 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003257 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3258 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04003259 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003260
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003261 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3262 key.offset -= btrfs_file_extent_offset(buf, fi);
3263 ret = process_func(trans, root, bytenr, num_bytes,
3264 parent, ref_root, key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003265 key.offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003266 if (ret)
3267 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05003268 } else {
3269 bytenr = btrfs_node_blockptr(buf, i);
David Sterba707e8a02014-06-04 19:22:26 +02003270 num_bytes = root->nodesize;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003271 ret = process_func(trans, root, bytenr, num_bytes,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003272 parent, ref_root, level - 1, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003273 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04003274 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04003275 }
3276 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003277 return 0;
3278fail:
Chris Mason54aa1f42007-06-22 14:16:25 -04003279 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05003280}
3281
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003282int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003283 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04003284{
Josef Bacike339a6b2014-07-02 10:54:25 -07003285 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003286}
Zheng Yan31840ae2008-09-23 13:14:14 -04003287
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003288int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003289 struct extent_buffer *buf, int full_backref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003290{
Josef Bacike339a6b2014-07-02 10:54:25 -07003291 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003292}
3293
Chris Mason9078a3e2007-04-26 16:46:15 -04003294static int write_one_cache_group(struct btrfs_trans_handle *trans,
3295 struct btrfs_root *root,
3296 struct btrfs_path *path,
3297 struct btrfs_block_group_cache *cache)
3298{
3299 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003300 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003301 unsigned long bi;
3302 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04003303
Chris Mason9078a3e2007-04-26 16:46:15 -04003304 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003305 if (ret) {
3306 if (ret > 0)
3307 ret = -ENOENT;
Chris Mason54aa1f42007-06-22 14:16:25 -04003308 goto fail;
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003309 }
Chris Mason5f39d392007-10-15 16:14:19 -04003310
3311 leaf = path->nodes[0];
3312 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3313 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3314 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -04003315fail:
Filipe Manana24b89d02015-04-25 18:31:05 +01003316 btrfs_release_path(path);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003317 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003318
3319}
3320
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003321static struct btrfs_block_group_cache *
3322next_block_group(struct btrfs_root *root,
3323 struct btrfs_block_group_cache *cache)
3324{
3325 struct rb_node *node;
Filipe Manana292cbd52014-11-26 15:28:50 +00003326
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003327 spin_lock(&root->fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003328
3329 /* If our block group was removed, we need a full search. */
3330 if (RB_EMPTY_NODE(&cache->cache_node)) {
3331 const u64 next_bytenr = cache->key.objectid + cache->key.offset;
3332
3333 spin_unlock(&root->fs_info->block_group_cache_lock);
3334 btrfs_put_block_group(cache);
3335 cache = btrfs_lookup_first_block_group(root->fs_info,
3336 next_bytenr);
3337 return cache;
3338 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003339 node = rb_next(&cache->cache_node);
3340 btrfs_put_block_group(cache);
3341 if (node) {
3342 cache = rb_entry(node, struct btrfs_block_group_cache,
3343 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00003344 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003345 } else
3346 cache = NULL;
3347 spin_unlock(&root->fs_info->block_group_cache_lock);
3348 return cache;
3349}
3350
Josef Bacik0af3d002010-06-21 14:48:16 -04003351static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3352 struct btrfs_trans_handle *trans,
3353 struct btrfs_path *path)
3354{
3355 struct btrfs_root *root = block_group->fs_info->tree_root;
3356 struct inode *inode = NULL;
3357 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05003358 int dcs = BTRFS_DC_ERROR;
David Sterbaf8c269d2015-01-16 17:21:12 +01003359 u64 num_pages = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003360 int retries = 0;
3361 int ret = 0;
3362
3363 /*
3364 * If this block group is smaller than 100 megs don't bother caching the
3365 * block group.
3366 */
Byongho Leeee221842015-12-15 01:42:10 +09003367 if (block_group->key.offset < (100 * SZ_1M)) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003368 spin_lock(&block_group->lock);
3369 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3370 spin_unlock(&block_group->lock);
3371 return 0;
3372 }
3373
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003374 if (trans->aborted)
3375 return 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003376again:
3377 inode = lookup_free_space_inode(root, block_group, path);
3378 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3379 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02003380 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003381 goto out;
3382 }
3383
3384 if (IS_ERR(inode)) {
3385 BUG_ON(retries);
3386 retries++;
3387
3388 if (block_group->ro)
3389 goto out_free;
3390
3391 ret = create_free_space_inode(root, trans, block_group, path);
3392 if (ret)
3393 goto out_free;
3394 goto again;
3395 }
3396
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003397 /* We've already setup this transaction, go ahead and exit */
3398 if (block_group->cache_generation == trans->transid &&
3399 i_size_read(inode)) {
3400 dcs = BTRFS_DC_SETUP;
3401 goto out_put;
3402 }
3403
Josef Bacik0af3d002010-06-21 14:48:16 -04003404 /*
3405 * We want to set the generation to 0, that way if anything goes wrong
3406 * from here on out we know not to trust this cache when we load up next
3407 * time.
3408 */
3409 BTRFS_I(inode)->generation = 0;
3410 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003411 if (ret) {
3412 /*
3413 * So theoretically we could recover from this, simply set the
3414 * super cache generation to 0 so we know to invalidate the
3415 * cache, but then we'd have to keep track of the block groups
3416 * that fail this way so we know we _have_ to reset this cache
3417 * before the next commit or risk reading stale cache. So to
3418 * limit our exposure to horrible edge cases lets just abort the
3419 * transaction, this only happens in really bad situations
3420 * anyway.
3421 */
Jeff Mahoney66642832016-06-10 18:19:25 -04003422 btrfs_abort_transaction(trans, ret);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003423 goto out_put;
3424 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003425 WARN_ON(ret);
3426
3427 if (i_size_read(inode) > 0) {
Miao Xie7b61cd92013-05-13 13:55:09 +00003428 ret = btrfs_check_trunc_cache_free_space(root,
3429 &root->fs_info->global_block_rsv);
3430 if (ret)
3431 goto out_put;
3432
Chris Mason1bbc6212015-04-06 12:46:08 -07003433 ret = btrfs_truncate_free_space_cache(root, trans, NULL, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003434 if (ret)
3435 goto out_put;
3436 }
3437
3438 spin_lock(&block_group->lock);
Liu Bocf7c1ef2012-07-06 03:31:34 -06003439 if (block_group->cached != BTRFS_CACHE_FINISHED ||
Jeff Mahoney3cdde222016-06-09 21:38:35 -04003440 !btrfs_test_opt(root->fs_info, SPACE_CACHE)) {
Liu Bocf7c1ef2012-07-06 03:31:34 -06003441 /*
3442 * don't bother trying to write stuff out _if_
3443 * a) we're not cached,
3444 * b) we're with nospace_cache mount option.
3445 */
Josef Bacik2b209822010-12-03 13:17:53 -05003446 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04003447 spin_unlock(&block_group->lock);
3448 goto out_put;
3449 }
3450 spin_unlock(&block_group->lock);
3451
Josef Bacik6fc823b2012-08-06 13:46:38 -06003452 /*
Josef Bacik2968b1f2015-10-01 12:55:18 -04003453 * We hit an ENOSPC when setting up the cache in this transaction, just
3454 * skip doing the setup, we've already cleared the cache so we're safe.
3455 */
3456 if (test_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags)) {
3457 ret = -ENOSPC;
3458 goto out_put;
3459 }
3460
3461 /*
Josef Bacik6fc823b2012-08-06 13:46:38 -06003462 * Try to preallocate enough space based on how big the block group is.
3463 * Keep in mind this has to include any pinned space which could end up
3464 * taking up quite a bit since it's not folded into the other space
3465 * cache.
3466 */
Byongho Leeee221842015-12-15 01:42:10 +09003467 num_pages = div_u64(block_group->key.offset, SZ_256M);
Josef Bacik0af3d002010-06-21 14:48:16 -04003468 if (!num_pages)
3469 num_pages = 1;
3470
Josef Bacik0af3d002010-06-21 14:48:16 -04003471 num_pages *= 16;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003472 num_pages *= PAGE_SIZE;
Josef Bacik0af3d002010-06-21 14:48:16 -04003473
Qu Wenruo7cf5b972015-09-08 17:25:55 +08003474 ret = btrfs_check_data_free_space(inode, 0, num_pages);
Josef Bacik0af3d002010-06-21 14:48:16 -04003475 if (ret)
3476 goto out_put;
3477
3478 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3479 num_pages, num_pages,
3480 &alloc_hint);
Josef Bacik2968b1f2015-10-01 12:55:18 -04003481 /*
3482 * Our cache requires contiguous chunks so that we don't modify a bunch
3483 * of metadata or split extents when writing the cache out, which means
3484 * we can enospc if we are heavily fragmented in addition to just normal
3485 * out of space conditions. So if we hit this just skip setting up any
3486 * other block groups for this transaction, maybe we'll unpin enough
3487 * space the next time around.
3488 */
Josef Bacik2b209822010-12-03 13:17:53 -05003489 if (!ret)
3490 dcs = BTRFS_DC_SETUP;
Josef Bacik2968b1f2015-10-01 12:55:18 -04003491 else if (ret == -ENOSPC)
3492 set_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags);
Josef Bacikc09544e2011-08-30 10:19:10 -04003493
Josef Bacik0af3d002010-06-21 14:48:16 -04003494out_put:
3495 iput(inode);
3496out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02003497 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003498out:
3499 spin_lock(&block_group->lock);
Josef Bacike65cbb92011-12-13 16:04:54 -05003500 if (!ret && dcs == BTRFS_DC_SETUP)
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003501 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05003502 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04003503 spin_unlock(&block_group->lock);
3504
3505 return ret;
3506}
3507
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003508int btrfs_setup_space_cache(struct btrfs_trans_handle *trans,
3509 struct btrfs_root *root)
3510{
3511 struct btrfs_block_group_cache *cache, *tmp;
3512 struct btrfs_transaction *cur_trans = trans->transaction;
3513 struct btrfs_path *path;
3514
3515 if (list_empty(&cur_trans->dirty_bgs) ||
Jeff Mahoney3cdde222016-06-09 21:38:35 -04003516 !btrfs_test_opt(root->fs_info, SPACE_CACHE))
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003517 return 0;
3518
3519 path = btrfs_alloc_path();
3520 if (!path)
3521 return -ENOMEM;
3522
3523 /* Could add new block groups, use _safe just in case */
3524 list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs,
3525 dirty_list) {
3526 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3527 cache_save_setup(cache, trans, path);
3528 }
3529
3530 btrfs_free_path(path);
3531 return 0;
3532}
3533
Chris Mason1bbc6212015-04-06 12:46:08 -07003534/*
3535 * transaction commit does final block group cache writeback during a
3536 * critical section where nothing is allowed to change the FS. This is
3537 * required in order for the cache to actually match the block group,
3538 * but can introduce a lot of latency into the commit.
3539 *
3540 * So, btrfs_start_dirty_block_groups is here to kick off block group
3541 * cache IO. There's a chance we'll have to redo some of it if the
3542 * block group changes again during the commit, but it greatly reduces
3543 * the commit latency by getting rid of the easy block groups while
3544 * we're still allowing others to join the commit.
3545 */
3546int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans,
3547 struct btrfs_root *root)
3548{
3549 struct btrfs_block_group_cache *cache;
3550 struct btrfs_transaction *cur_trans = trans->transaction;
3551 int ret = 0;
3552 int should_put;
3553 struct btrfs_path *path = NULL;
3554 LIST_HEAD(dirty);
3555 struct list_head *io = &cur_trans->io_bgs;
3556 int num_started = 0;
3557 int loops = 0;
3558
3559 spin_lock(&cur_trans->dirty_bgs_lock);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003560 if (list_empty(&cur_trans->dirty_bgs)) {
3561 spin_unlock(&cur_trans->dirty_bgs_lock);
3562 return 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003563 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003564 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Chris Mason1bbc6212015-04-06 12:46:08 -07003565 spin_unlock(&cur_trans->dirty_bgs_lock);
3566
3567again:
Chris Mason1bbc6212015-04-06 12:46:08 -07003568 /*
3569 * make sure all the block groups on our dirty list actually
3570 * exist
3571 */
3572 btrfs_create_pending_block_groups(trans, root);
3573
3574 if (!path) {
3575 path = btrfs_alloc_path();
3576 if (!path)
3577 return -ENOMEM;
3578 }
3579
Filipe Mananab58d1a92015-04-25 18:29:16 +01003580 /*
3581 * cache_write_mutex is here only to save us from balance or automatic
3582 * removal of empty block groups deleting this block group while we are
3583 * writing out the cache
3584 */
3585 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003586 while (!list_empty(&dirty)) {
3587 cache = list_first_entry(&dirty,
3588 struct btrfs_block_group_cache,
3589 dirty_list);
Chris Mason1bbc6212015-04-06 12:46:08 -07003590 /*
3591 * this can happen if something re-dirties a block
3592 * group that is already under IO. Just wait for it to
3593 * finish and then do it all again
3594 */
3595 if (!list_empty(&cache->io_list)) {
3596 list_del_init(&cache->io_list);
3597 btrfs_wait_cache_io(root, trans, cache,
3598 &cache->io_ctl, path,
3599 cache->key.objectid);
3600 btrfs_put_block_group(cache);
3601 }
3602
3603
3604 /*
3605 * btrfs_wait_cache_io uses the cache->dirty_list to decide
3606 * if it should update the cache_state. Don't delete
3607 * until after we wait.
3608 *
3609 * Since we're not running in the commit critical section
3610 * we need the dirty_bgs_lock to protect from update_block_group
3611 */
3612 spin_lock(&cur_trans->dirty_bgs_lock);
3613 list_del_init(&cache->dirty_list);
3614 spin_unlock(&cur_trans->dirty_bgs_lock);
3615
3616 should_put = 1;
3617
3618 cache_save_setup(cache, trans, path);
3619
3620 if (cache->disk_cache_state == BTRFS_DC_SETUP) {
3621 cache->io_ctl.inode = NULL;
3622 ret = btrfs_write_out_cache(root, trans, cache, path);
3623 if (ret == 0 && cache->io_ctl.inode) {
3624 num_started++;
3625 should_put = 0;
3626
3627 /*
3628 * the cache_write_mutex is protecting
3629 * the io_list
3630 */
3631 list_add_tail(&cache->io_list, io);
3632 } else {
3633 /*
3634 * if we failed to write the cache, the
3635 * generation will be bad and life goes on
3636 */
3637 ret = 0;
3638 }
3639 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003640 if (!ret) {
Chris Mason1bbc6212015-04-06 12:46:08 -07003641 ret = write_one_cache_group(trans, root, path, cache);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003642 /*
3643 * Our block group might still be attached to the list
3644 * of new block groups in the transaction handle of some
3645 * other task (struct btrfs_trans_handle->new_bgs). This
3646 * means its block group item isn't yet in the extent
3647 * tree. If this happens ignore the error, as we will
3648 * try again later in the critical section of the
3649 * transaction commit.
3650 */
3651 if (ret == -ENOENT) {
3652 ret = 0;
3653 spin_lock(&cur_trans->dirty_bgs_lock);
3654 if (list_empty(&cache->dirty_list)) {
3655 list_add_tail(&cache->dirty_list,
3656 &cur_trans->dirty_bgs);
3657 btrfs_get_block_group(cache);
3658 }
3659 spin_unlock(&cur_trans->dirty_bgs_lock);
3660 } else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003661 btrfs_abort_transaction(trans, ret);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003662 }
3663 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003664
3665 /* if its not on the io list, we need to put the block group */
3666 if (should_put)
3667 btrfs_put_block_group(cache);
3668
3669 if (ret)
3670 break;
Filipe Mananab58d1a92015-04-25 18:29:16 +01003671
3672 /*
3673 * Avoid blocking other tasks for too long. It might even save
3674 * us from writing caches for block groups that are going to be
3675 * removed.
3676 */
3677 mutex_unlock(&trans->transaction->cache_write_mutex);
3678 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003679 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003680 mutex_unlock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003681
3682 /*
3683 * go through delayed refs for all the stuff we've just kicked off
3684 * and then loop back (just once)
3685 */
3686 ret = btrfs_run_delayed_refs(trans, root, 0);
3687 if (!ret && loops == 0) {
3688 loops++;
3689 spin_lock(&cur_trans->dirty_bgs_lock);
3690 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003691 /*
3692 * dirty_bgs_lock protects us from concurrent block group
3693 * deletes too (not just cache_write_mutex).
3694 */
3695 if (!list_empty(&dirty)) {
3696 spin_unlock(&cur_trans->dirty_bgs_lock);
3697 goto again;
3698 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003699 spin_unlock(&cur_trans->dirty_bgs_lock);
Liu Boc79a1752016-07-20 17:44:12 -07003700 } else if (ret < 0) {
3701 btrfs_cleanup_dirty_bgs(cur_trans, root);
Chris Mason1bbc6212015-04-06 12:46:08 -07003702 }
3703
3704 btrfs_free_path(path);
3705 return ret;
3706}
3707
Chris Mason96b51792007-10-15 16:15:19 -04003708int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
3709 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04003710{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003711 struct btrfs_block_group_cache *cache;
Josef Bacikce93ec52014-11-17 15:45:48 -05003712 struct btrfs_transaction *cur_trans = trans->transaction;
3713 int ret = 0;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003714 int should_put;
Chris Mason9078a3e2007-04-26 16:46:15 -04003715 struct btrfs_path *path;
Chris Mason1bbc6212015-04-06 12:46:08 -07003716 struct list_head *io = &cur_trans->io_bgs;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003717 int num_started = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003718
3719 path = btrfs_alloc_path();
3720 if (!path)
3721 return -ENOMEM;
3722
Josef Bacikce93ec52014-11-17 15:45:48 -05003723 /*
Filipe Mananae44081e2015-12-18 03:02:48 +00003724 * Even though we are in the critical section of the transaction commit,
3725 * we can still have concurrent tasks adding elements to this
3726 * transaction's list of dirty block groups. These tasks correspond to
3727 * endio free space workers started when writeback finishes for a
3728 * space cache, which run inode.c:btrfs_finish_ordered_io(), and can
3729 * allocate new block groups as a result of COWing nodes of the root
3730 * tree when updating the free space inode. The writeback for the space
3731 * caches is triggered by an earlier call to
3732 * btrfs_start_dirty_block_groups() and iterations of the following
3733 * loop.
3734 * Also we want to do the cache_save_setup first and then run the
Josef Bacikce93ec52014-11-17 15:45:48 -05003735 * delayed refs to make sure we have the best chance at doing this all
3736 * in one shot.
3737 */
Filipe Mananae44081e2015-12-18 03:02:48 +00003738 spin_lock(&cur_trans->dirty_bgs_lock);
Josef Bacikce93ec52014-11-17 15:45:48 -05003739 while (!list_empty(&cur_trans->dirty_bgs)) {
3740 cache = list_first_entry(&cur_trans->dirty_bgs,
3741 struct btrfs_block_group_cache,
3742 dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003743
3744 /*
3745 * this can happen if cache_save_setup re-dirties a block
3746 * group that is already under IO. Just wait for it to
3747 * finish and then do it all again
3748 */
3749 if (!list_empty(&cache->io_list)) {
Filipe Mananae44081e2015-12-18 03:02:48 +00003750 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003751 list_del_init(&cache->io_list);
3752 btrfs_wait_cache_io(root, trans, cache,
3753 &cache->io_ctl, path,
3754 cache->key.objectid);
3755 btrfs_put_block_group(cache);
Filipe Mananae44081e2015-12-18 03:02:48 +00003756 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003757 }
3758
Chris Mason1bbc6212015-04-06 12:46:08 -07003759 /*
3760 * don't remove from the dirty list until after we've waited
3761 * on any pending IO
3762 */
Josef Bacikce93ec52014-11-17 15:45:48 -05003763 list_del_init(&cache->dirty_list);
Filipe Mananae44081e2015-12-18 03:02:48 +00003764 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003765 should_put = 1;
3766
Chris Mason1bbc6212015-04-06 12:46:08 -07003767 cache_save_setup(cache, trans, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003768
Josef Bacikce93ec52014-11-17 15:45:48 -05003769 if (!ret)
Chris Masonc9dc4c62015-04-04 17:14:42 -07003770 ret = btrfs_run_delayed_refs(trans, root, (unsigned long) -1);
3771
3772 if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) {
3773 cache->io_ctl.inode = NULL;
3774 ret = btrfs_write_out_cache(root, trans, cache, path);
3775 if (ret == 0 && cache->io_ctl.inode) {
3776 num_started++;
3777 should_put = 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003778 list_add_tail(&cache->io_list, io);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003779 } else {
3780 /*
3781 * if we failed to write the cache, the
3782 * generation will be bad and life goes on
3783 */
3784 ret = 0;
3785 }
3786 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003787 if (!ret) {
Josef Bacikce93ec52014-11-17 15:45:48 -05003788 ret = write_one_cache_group(trans, root, path, cache);
Filipe Manana2bc0bb52015-12-30 02:42:30 +00003789 /*
3790 * One of the free space endio workers might have
3791 * created a new block group while updating a free space
3792 * cache's inode (at inode.c:btrfs_finish_ordered_io())
3793 * and hasn't released its transaction handle yet, in
3794 * which case the new block group is still attached to
3795 * its transaction handle and its creation has not
3796 * finished yet (no block group item in the extent tree
3797 * yet, etc). If this is the case, wait for all free
3798 * space endio workers to finish and retry. This is a
3799 * a very rare case so no need for a more efficient and
3800 * complex approach.
3801 */
3802 if (ret == -ENOENT) {
3803 wait_event(cur_trans->writer_wait,
3804 atomic_read(&cur_trans->num_writers) == 1);
3805 ret = write_one_cache_group(trans, root, path,
3806 cache);
3807 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003808 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003809 btrfs_abort_transaction(trans, ret);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003810 }
Chris Masonc9dc4c62015-04-04 17:14:42 -07003811
3812 /* if its not on the io list, we need to put the block group */
3813 if (should_put)
3814 btrfs_put_block_group(cache);
Filipe Mananae44081e2015-12-18 03:02:48 +00003815 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003816 }
Filipe Mananae44081e2015-12-18 03:02:48 +00003817 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003818
Chris Mason1bbc6212015-04-06 12:46:08 -07003819 while (!list_empty(io)) {
3820 cache = list_first_entry(io, struct btrfs_block_group_cache,
Chris Masonc9dc4c62015-04-04 17:14:42 -07003821 io_list);
3822 list_del_init(&cache->io_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003823 btrfs_wait_cache_io(root, trans, cache,
3824 &cache->io_ctl, path, cache->key.objectid);
Josef Bacik0af3d002010-06-21 14:48:16 -04003825 btrfs_put_block_group(cache);
3826 }
3827
Chris Mason9078a3e2007-04-26 16:46:15 -04003828 btrfs_free_path(path);
Josef Bacikce93ec52014-11-17 15:45:48 -05003829 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003830}
3831
Yan Zhengd2fb3432008-12-11 16:30:39 -05003832int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
3833{
3834 struct btrfs_block_group_cache *block_group;
3835 int readonly = 0;
3836
3837 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
3838 if (!block_group || block_group->ro)
3839 readonly = 1;
3840 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04003841 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003842 return readonly;
3843}
3844
Filipe Mananaf78c4362016-05-09 13:15:41 +01003845bool btrfs_inc_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3846{
3847 struct btrfs_block_group_cache *bg;
3848 bool ret = true;
3849
3850 bg = btrfs_lookup_block_group(fs_info, bytenr);
3851 if (!bg)
3852 return false;
3853
3854 spin_lock(&bg->lock);
3855 if (bg->ro)
3856 ret = false;
3857 else
3858 atomic_inc(&bg->nocow_writers);
3859 spin_unlock(&bg->lock);
3860
3861 /* no put on block group, done by btrfs_dec_nocow_writers */
3862 if (!ret)
3863 btrfs_put_block_group(bg);
3864
3865 return ret;
3866
3867}
3868
3869void btrfs_dec_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3870{
3871 struct btrfs_block_group_cache *bg;
3872
3873 bg = btrfs_lookup_block_group(fs_info, bytenr);
3874 ASSERT(bg);
3875 if (atomic_dec_and_test(&bg->nocow_writers))
3876 wake_up_atomic_t(&bg->nocow_writers);
3877 /*
3878 * Once for our lookup and once for the lookup done by a previous call
3879 * to btrfs_inc_nocow_writers()
3880 */
3881 btrfs_put_block_group(bg);
3882 btrfs_put_block_group(bg);
3883}
3884
3885static int btrfs_wait_nocow_writers_atomic_t(atomic_t *a)
3886{
3887 schedule();
3888 return 0;
3889}
3890
3891void btrfs_wait_nocow_writers(struct btrfs_block_group_cache *bg)
3892{
3893 wait_on_atomic_t(&bg->nocow_writers,
3894 btrfs_wait_nocow_writers_atomic_t,
3895 TASK_UNINTERRUPTIBLE);
3896}
3897
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003898static const char *alloc_name(u64 flags)
3899{
3900 switch (flags) {
3901 case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA:
3902 return "mixed";
3903 case BTRFS_BLOCK_GROUP_METADATA:
3904 return "metadata";
3905 case BTRFS_BLOCK_GROUP_DATA:
3906 return "data";
3907 case BTRFS_BLOCK_GROUP_SYSTEM:
3908 return "system";
3909 default:
3910 WARN_ON(1);
3911 return "invalid-combination";
3912 };
3913}
3914
Chris Mason593060d2008-03-25 16:50:33 -04003915static int update_space_info(struct btrfs_fs_info *info, u64 flags,
3916 u64 total_bytes, u64 bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -04003917 u64 bytes_readonly,
Chris Mason593060d2008-03-25 16:50:33 -04003918 struct btrfs_space_info **space_info)
3919{
3920 struct btrfs_space_info *found;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003921 int i;
3922 int factor;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003923 int ret;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003924
3925 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
3926 BTRFS_BLOCK_GROUP_RAID10))
3927 factor = 2;
3928 else
3929 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04003930
3931 found = __find_space_info(info, flags);
3932 if (found) {
Josef Bacik25179202008-10-29 14:49:05 -04003933 spin_lock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003934 found->total_bytes += total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003935 found->disk_total += total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003936 found->bytes_used += bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003937 found->disk_used += bytes_used * factor;
Josef Bacike40edf22016-03-25 13:25:47 -04003938 found->bytes_readonly += bytes_readonly;
Filipe Manana2e6e5182015-05-12 00:28:11 +01003939 if (total_bytes > 0)
3940 found->full = 0;
Josef Bacik957780e2016-05-17 13:30:55 -04003941 space_info_add_new_bytes(info, found, total_bytes -
3942 bytes_used - bytes_readonly);
Josef Bacik25179202008-10-29 14:49:05 -04003943 spin_unlock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003944 *space_info = found;
3945 return 0;
3946 }
Yan Zhengc146afa2008-11-12 14:34:12 -05003947 found = kzalloc(sizeof(*found), GFP_NOFS);
Chris Mason593060d2008-03-25 16:50:33 -04003948 if (!found)
3949 return -ENOMEM;
3950
Tejun Heo908c7f12014-09-08 09:51:29 +09003951 ret = percpu_counter_init(&found->total_bytes_pinned, 0, GFP_KERNEL);
Josef Bacikb150a4f2013-06-19 15:00:04 -04003952 if (ret) {
3953 kfree(found);
3954 return ret;
3955 }
3956
Jeff Mahoneyc1895442014-05-27 12:59:57 -04003957 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
Yan, Zhengb742bb82010-05-16 10:46:24 -04003958 INIT_LIST_HEAD(&found->block_groups[i]);
Josef Bacik80eb2342008-10-29 14:49:05 -04003959 init_rwsem(&found->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003960 spin_lock_init(&found->lock);
Ilya Dryomov52ba6922012-01-16 22:04:47 +02003961 found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
Chris Mason593060d2008-03-25 16:50:33 -04003962 found->total_bytes = total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003963 found->disk_total = total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003964 found->bytes_used = bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003965 found->disk_used = bytes_used * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003966 found->bytes_pinned = 0;
Zheng Yane8569812008-09-26 10:05:48 -04003967 found->bytes_reserved = 0;
Josef Bacike40edf22016-03-25 13:25:47 -04003968 found->bytes_readonly = bytes_readonly;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003969 found->bytes_may_use = 0;
Filipe Manana6af3e3a2015-09-07 10:41:12 +01003970 found->full = 0;
Josef Bacik4f4db212015-09-29 11:40:47 -04003971 found->max_extent_size = 0;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003972 found->force_alloc = CHUNK_ALLOC_NO_FORCE;
Josef Bacik6d741192011-04-11 20:20:11 -04003973 found->chunk_alloc = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003974 found->flush = 0;
3975 init_waitqueue_head(&found->wait);
Josef Bacik633c0aa2014-10-31 09:49:34 -04003976 INIT_LIST_HEAD(&found->ro_bgs);
Josef Bacik957780e2016-05-17 13:30:55 -04003977 INIT_LIST_HEAD(&found->tickets);
3978 INIT_LIST_HEAD(&found->priority_tickets);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003979
3980 ret = kobject_init_and_add(&found->kobj, &space_info_ktype,
3981 info->space_info_kobj, "%s",
3982 alloc_name(found->flags));
3983 if (ret) {
3984 kfree(found);
3985 return ret;
3986 }
3987
Chris Mason593060d2008-03-25 16:50:33 -04003988 *space_info = found;
Chris Mason4184ea72009-03-10 12:39:20 -04003989 list_add_rcu(&found->list, &info->space_info);
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003990 if (flags & BTRFS_BLOCK_GROUP_DATA)
3991 info->data_sinfo = found;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003992
3993 return ret;
Chris Mason593060d2008-03-25 16:50:33 -04003994}
3995
Chris Mason8790d502008-04-03 16:29:03 -04003996static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3997{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003998 u64 extra_flags = chunk_to_extended(flags) &
3999 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004000
Miao Xiede98ced2013-01-29 10:13:12 +00004001 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004002 if (flags & BTRFS_BLOCK_GROUP_DATA)
4003 fs_info->avail_data_alloc_bits |= extra_flags;
4004 if (flags & BTRFS_BLOCK_GROUP_METADATA)
4005 fs_info->avail_metadata_alloc_bits |= extra_flags;
4006 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
4007 fs_info->avail_system_alloc_bits |= extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004008 write_sequnlock(&fs_info->profiles_lock);
Chris Mason8790d502008-04-03 16:29:03 -04004009}
Chris Mason593060d2008-03-25 16:50:33 -04004010
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004011/*
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004012 * returns target flags in extended format or 0 if restripe for this
4013 * chunk_type is not in progress
Ilya Dryomovc6664b42012-04-12 16:03:56 -04004014 *
4015 * should be called with either volume_mutex or balance_lock held
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004016 */
4017static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
4018{
4019 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4020 u64 target = 0;
4021
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004022 if (!bctl)
4023 return 0;
4024
4025 if (flags & BTRFS_BLOCK_GROUP_DATA &&
4026 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4027 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
4028 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
4029 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4030 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
4031 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
4032 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4033 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
4034 }
4035
4036 return target;
4037}
4038
4039/*
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004040 * @flags: available profiles in extended format (see ctree.h)
4041 *
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004042 * Returns reduced profile in chunk format. If profile changing is in
4043 * progress (either running or paused) picks the target profile (if it's
4044 * already available), otherwise falls back to plain reducing.
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004045 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00004046static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04004047{
Miao Xie95669972014-07-24 11:37:14 +08004048 u64 num_devices = root->fs_info->fs_devices->rw_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004049 u64 target;
Zhao Lei9c170b22015-09-15 21:08:08 +08004050 u64 raid_type;
4051 u64 allowed = 0;
Chris Masona061fc82008-05-07 11:43:44 -04004052
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004053 /*
4054 * see if restripe for this chunk_type is in progress, if so
4055 * try to reduce to the target profile
4056 */
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004057 spin_lock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004058 target = get_restripe_target(root->fs_info, flags);
4059 if (target) {
4060 /* pick target profile only if it's already available */
4061 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004062 spin_unlock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004063 return extended_to_chunk(target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004064 }
4065 }
4066 spin_unlock(&root->fs_info->balance_lock);
4067
David Woodhouse53b381b2013-01-29 18:40:14 -05004068 /* First, mask out the RAID levels which aren't possible */
Zhao Lei9c170b22015-09-15 21:08:08 +08004069 for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) {
4070 if (num_devices >= btrfs_raid_array[raid_type].devs_min)
4071 allowed |= btrfs_raid_group[raid_type];
4072 }
4073 allowed &= flags;
Chris Masona061fc82008-05-07 11:43:44 -04004074
Zhao Lei9c170b22015-09-15 21:08:08 +08004075 if (allowed & BTRFS_BLOCK_GROUP_RAID6)
4076 allowed = BTRFS_BLOCK_GROUP_RAID6;
4077 else if (allowed & BTRFS_BLOCK_GROUP_RAID5)
4078 allowed = BTRFS_BLOCK_GROUP_RAID5;
4079 else if (allowed & BTRFS_BLOCK_GROUP_RAID10)
4080 allowed = BTRFS_BLOCK_GROUP_RAID10;
4081 else if (allowed & BTRFS_BLOCK_GROUP_RAID1)
4082 allowed = BTRFS_BLOCK_GROUP_RAID1;
4083 else if (allowed & BTRFS_BLOCK_GROUP_RAID0)
4084 allowed = BTRFS_BLOCK_GROUP_RAID0;
Chris Masonec44a352008-04-28 15:29:52 -04004085
Zhao Lei9c170b22015-09-15 21:08:08 +08004086 flags &= ~BTRFS_BLOCK_GROUP_PROFILE_MASK;
Chris Masonec44a352008-04-28 15:29:52 -04004087
Zhao Lei9c170b22015-09-15 21:08:08 +08004088 return extended_to_chunk(flags | allowed);
Chris Masonec44a352008-04-28 15:29:52 -04004089}
4090
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004091static u64 get_alloc_profile(struct btrfs_root *root, u64 orig_flags)
Josef Bacik6a632092009-02-20 11:00:09 -05004092{
Miao Xiede98ced2013-01-29 10:13:12 +00004093 unsigned seq;
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004094 u64 flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004095
4096 do {
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004097 flags = orig_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004098 seq = read_seqbegin(&root->fs_info->profiles_lock);
4099
4100 if (flags & BTRFS_BLOCK_GROUP_DATA)
4101 flags |= root->fs_info->avail_data_alloc_bits;
4102 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
4103 flags |= root->fs_info->avail_system_alloc_bits;
4104 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
4105 flags |= root->fs_info->avail_metadata_alloc_bits;
4106 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02004107
Yan, Zhengb742bb82010-05-16 10:46:24 -04004108 return btrfs_reduce_alloc_profile(root, flags);
4109}
Josef Bacik6a632092009-02-20 11:00:09 -05004110
Miao Xie6d07bce2011-01-05 10:07:31 +00004111u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
Yan, Zhengb742bb82010-05-16 10:46:24 -04004112{
4113 u64 flags;
David Woodhouse53b381b2013-01-29 18:40:14 -05004114 u64 ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004115
Yan, Zhengb742bb82010-05-16 10:46:24 -04004116 if (data)
4117 flags = BTRFS_BLOCK_GROUP_DATA;
4118 else if (root == root->fs_info->chunk_root)
4119 flags = BTRFS_BLOCK_GROUP_SYSTEM;
4120 else
4121 flags = BTRFS_BLOCK_GROUP_METADATA;
4122
David Woodhouse53b381b2013-01-29 18:40:14 -05004123 ret = get_alloc_profile(root, flags);
4124 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004125}
4126
Qu Wenruo4ceff072015-09-08 17:22:42 +08004127int btrfs_alloc_data_chunk_ondemand(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05004128{
4129 struct btrfs_space_info *data_sinfo;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004130 struct btrfs_root *root = BTRFS_I(inode)->root;
Li Zefanb4d7c3c2012-07-09 20:21:07 -06004131 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacikab6e24102010-03-19 14:38:13 +00004132 u64 used;
Zhao Lei94b947b2015-02-14 13:23:45 +08004133 int ret = 0;
Zhao Leic99f1b02015-03-02 19:32:20 +08004134 int need_commit = 2;
4135 int have_pinned_space;
Josef Bacik6a632092009-02-20 11:00:09 -05004136
4137 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00004138 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05004139
Miao Xie9dced182013-10-25 17:33:36 +08004140 if (btrfs_is_free_space_inode(inode)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004141 need_commit = 0;
Miao Xie9dced182013-10-25 17:33:36 +08004142 ASSERT(current->journal_info);
Josef Bacik0af3d002010-06-21 14:48:16 -04004143 }
4144
Li Zefanb4d7c3c2012-07-09 20:21:07 -06004145 data_sinfo = fs_info->data_sinfo;
Chris Mason33b4d472009-09-22 14:45:50 -04004146 if (!data_sinfo)
4147 goto alloc;
4148
Josef Bacik6a632092009-02-20 11:00:09 -05004149again:
4150 /* make sure we have enough space to handle the data first */
4151 spin_lock(&data_sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004152 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
4153 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
4154 data_sinfo->bytes_may_use;
Josef Bacikab6e24102010-03-19 14:38:13 +00004155
4156 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004157 struct btrfs_trans_handle *trans;
4158
Josef Bacik6a632092009-02-20 11:00:09 -05004159 /*
4160 * if we don't have enough free bytes in this space then we need
4161 * to alloc a new chunk.
4162 */
Zhao Leib9fd47c2015-02-09 14:40:20 +08004163 if (!data_sinfo->full) {
Josef Bacik6a632092009-02-20 11:00:09 -05004164 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05004165
Chris Mason0e4f8f82011-04-15 16:05:44 -04004166 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05004167 spin_unlock(&data_sinfo->lock);
Chris Mason33b4d472009-09-22 14:45:50 -04004168alloc:
Josef Bacik6a632092009-02-20 11:00:09 -05004169 alloc_target = btrfs_get_alloc_profile(root, 1);
Miao Xie9dced182013-10-25 17:33:36 +08004170 /*
4171 * It is ugly that we don't call nolock join
4172 * transaction for the free space inode case here.
4173 * But it is safe because we only do the data space
4174 * reservation for the free space cache in the
4175 * transaction context, the common join transaction
4176 * just increase the counter of the current transaction
4177 * handler, doesn't try to acquire the trans_lock of
4178 * the fs.
4179 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004180 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004181 if (IS_ERR(trans))
4182 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05004183
4184 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0e4f8f82011-04-15 16:05:44 -04004185 alloc_target,
4186 CHUNK_ALLOC_NO_FORCE);
Josef Bacik6a632092009-02-20 11:00:09 -05004187 btrfs_end_transaction(trans, root);
Miao Xied52a5b52011-01-05 10:07:18 +00004188 if (ret < 0) {
4189 if (ret != -ENOSPC)
4190 return ret;
Zhao Leic99f1b02015-03-02 19:32:20 +08004191 else {
4192 have_pinned_space = 1;
Miao Xied52a5b52011-01-05 10:07:18 +00004193 goto commit_trans;
Zhao Leic99f1b02015-03-02 19:32:20 +08004194 }
Miao Xied52a5b52011-01-05 10:07:18 +00004195 }
Chris Mason33b4d472009-09-22 14:45:50 -04004196
Li Zefanb4d7c3c2012-07-09 20:21:07 -06004197 if (!data_sinfo)
4198 data_sinfo = fs_info->data_sinfo;
4199
Josef Bacik6a632092009-02-20 11:00:09 -05004200 goto again;
4201 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004202
4203 /*
Josef Bacikb150a4f2013-06-19 15:00:04 -04004204 * If we don't have enough pinned space to deal with this
Zhao Lei94b947b2015-02-14 13:23:45 +08004205 * allocation, and no removed chunk in current transaction,
4206 * don't bother committing the transaction.
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004207 */
Zhao Leic99f1b02015-03-02 19:32:20 +08004208 have_pinned_space = percpu_counter_compare(
4209 &data_sinfo->total_bytes_pinned,
4210 used + bytes - data_sinfo->total_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05004211 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004212
4213 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00004214commit_trans:
Zhao Leic99f1b02015-03-02 19:32:20 +08004215 if (need_commit &&
Josef Bacika4abeea2011-04-11 17:25:13 -04004216 !atomic_read(&root->fs_info->open_ioctl_trans)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004217 need_commit--;
Josef Bacikb150a4f2013-06-19 15:00:04 -04004218
Zhao Leie1746e82015-12-01 18:39:40 +08004219 if (need_commit > 0) {
4220 btrfs_start_delalloc_roots(fs_info, 0, -1);
Filipe Manana578def72016-04-26 15:36:38 +01004221 btrfs_wait_ordered_roots(fs_info, -1, 0, (u64)-1);
Zhao Leie1746e82015-12-01 18:39:40 +08004222 }
Zhao Lei9a4e7272015-04-09 12:34:43 +08004223
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004224 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004225 if (IS_ERR(trans))
4226 return PTR_ERR(trans);
Zhao Leic99f1b02015-03-02 19:32:20 +08004227 if (have_pinned_space >= 0 ||
Josef Bacik3204d332015-09-24 10:46:10 -04004228 test_bit(BTRFS_TRANS_HAVE_FREE_BGS,
4229 &trans->transaction->flags) ||
Zhao Leic99f1b02015-03-02 19:32:20 +08004230 need_commit > 0) {
Zhao Lei94b947b2015-02-14 13:23:45 +08004231 ret = btrfs_commit_transaction(trans, root);
4232 if (ret)
4233 return ret;
Zhao Leid7c15172015-02-26 10:49:20 +08004234 /*
Filipe Mananac2d6cb12016-01-15 11:05:12 +00004235 * The cleaner kthread might still be doing iput
4236 * operations. Wait for it to finish so that
4237 * more space is released.
Zhao Leid7c15172015-02-26 10:49:20 +08004238 */
Filipe Mananac2d6cb12016-01-15 11:05:12 +00004239 mutex_lock(&root->fs_info->cleaner_delayed_iput_mutex);
4240 mutex_unlock(&root->fs_info->cleaner_delayed_iput_mutex);
Zhao Lei94b947b2015-02-14 13:23:45 +08004241 goto again;
4242 } else {
4243 btrfs_end_transaction(trans, root);
4244 }
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004245 }
4246
Jeff Mahoneycab45e22013-10-16 16:27:01 -04004247 trace_btrfs_space_reservation(root->fs_info,
4248 "space_info:enospc",
4249 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004250 return -ENOSPC;
4251 }
4252 data_sinfo->bytes_may_use += bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004253 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004254 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004255 spin_unlock(&data_sinfo->lock);
4256
Dongsheng Yang237c0e92014-12-29 06:23:05 -05004257 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004258}
4259
4260/*
Qu Wenruo4ceff072015-09-08 17:22:42 +08004261 * New check_data_free_space() with ability for precious data reservation
4262 * Will replace old btrfs_check_data_free_space(), but for patch split,
4263 * add a new function first and then replace it.
4264 */
Qu Wenruo7cf5b972015-09-08 17:25:55 +08004265int btrfs_check_data_free_space(struct inode *inode, u64 start, u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004266{
4267 struct btrfs_root *root = BTRFS_I(inode)->root;
4268 int ret;
4269
4270 /* align the range */
4271 len = round_up(start + len, root->sectorsize) -
4272 round_down(start, root->sectorsize);
4273 start = round_down(start, root->sectorsize);
4274
4275 ret = btrfs_alloc_data_chunk_ondemand(inode, len);
4276 if (ret < 0)
4277 return ret;
4278
Josef Bacik1e5ec2e2016-09-15 14:57:48 -04004279 /* Use new btrfs_qgroup_reserve_data to reserve precious data space. */
Qu Wenruo4ceff072015-09-08 17:22:42 +08004280 ret = btrfs_qgroup_reserve_data(inode, start, len);
Josef Bacik1e5ec2e2016-09-15 14:57:48 -04004281 if (ret)
4282 btrfs_free_reserved_data_space_noquota(inode, start, len);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004283 return ret;
4284}
4285
4286/*
Qu Wenruo4ceff072015-09-08 17:22:42 +08004287 * Called if we need to clear a data reservation for this inode
4288 * Normally in a error case.
4289 *
Qu Wenruo51773be2015-10-08 18:19:37 +08004290 * This one will *NOT* use accurate qgroup reserved space API, just for case
4291 * which we can't sleep and is sure it won't affect qgroup reserved space.
4292 * Like clear_bit_hook().
Qu Wenruo4ceff072015-09-08 17:22:42 +08004293 */
Qu Wenruo51773be2015-10-08 18:19:37 +08004294void btrfs_free_reserved_data_space_noquota(struct inode *inode, u64 start,
4295 u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004296{
4297 struct btrfs_root *root = BTRFS_I(inode)->root;
4298 struct btrfs_space_info *data_sinfo;
4299
4300 /* Make sure the range is aligned to sectorsize */
4301 len = round_up(start + len, root->sectorsize) -
4302 round_down(start, root->sectorsize);
4303 start = round_down(start, root->sectorsize);
4304
Qu Wenruo4ceff072015-09-08 17:22:42 +08004305 data_sinfo = root->fs_info->data_sinfo;
4306 spin_lock(&data_sinfo->lock);
4307 if (WARN_ON(data_sinfo->bytes_may_use < len))
4308 data_sinfo->bytes_may_use = 0;
4309 else
4310 data_sinfo->bytes_may_use -= len;
4311 trace_btrfs_space_reservation(root->fs_info, "space_info",
4312 data_sinfo->flags, len, 0);
4313 spin_unlock(&data_sinfo->lock);
4314}
4315
Qu Wenruo51773be2015-10-08 18:19:37 +08004316/*
4317 * Called if we need to clear a data reservation for this inode
4318 * Normally in a error case.
4319 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04004320 * This one will handle the per-inode data rsv map for accurate reserved
Qu Wenruo51773be2015-10-08 18:19:37 +08004321 * space framework.
4322 */
4323void btrfs_free_reserved_data_space(struct inode *inode, u64 start, u64 len)
4324{
4325 btrfs_free_reserved_data_space_noquota(inode, start, len);
4326 btrfs_qgroup_free_data(inode, start, len);
4327}
4328
Josef Bacik97e728d2009-04-21 17:40:57 -04004329static void force_metadata_allocation(struct btrfs_fs_info *info)
4330{
4331 struct list_head *head = &info->space_info;
4332 struct btrfs_space_info *found;
4333
4334 rcu_read_lock();
4335 list_for_each_entry_rcu(found, head, list) {
4336 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004337 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04004338 }
4339 rcu_read_unlock();
4340}
4341
Miao Xie3c76cd82013-04-25 10:12:38 +00004342static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
4343{
4344 return (global->size << 1);
4345}
4346
Chris Masone5bc2452010-10-26 13:37:56 -04004347static int should_alloc_chunk(struct btrfs_root *root,
Josef Bacik698d0082012-09-12 14:08:47 -04004348 struct btrfs_space_info *sinfo, int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04004349{
Josef Bacikfb25e912011-07-26 17:00:46 -04004350 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zheng424499d2010-05-16 10:46:25 -04004351 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
Chris Mason0e4f8f82011-04-15 16:05:44 -04004352 u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved;
Chris Masone5bc2452010-10-26 13:37:56 -04004353 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04004354
Chris Mason0e4f8f82011-04-15 16:05:44 -04004355 if (force == CHUNK_ALLOC_FORCE)
4356 return 1;
4357
4358 /*
Josef Bacikfb25e912011-07-26 17:00:46 -04004359 * We need to take into account the global rsv because for all intents
4360 * and purposes it's used space. Don't worry about locking the
4361 * global_rsv, it doesn't change except when the transaction commits.
4362 */
Josef Bacik54338b52012-08-14 16:20:52 -04004363 if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA)
Miao Xie3c76cd82013-04-25 10:12:38 +00004364 num_allocated += calc_global_rsv_need_space(global_rsv);
Josef Bacikfb25e912011-07-26 17:00:46 -04004365
4366 /*
Chris Mason0e4f8f82011-04-15 16:05:44 -04004367 * in limited mode, we want to have some free space up to
4368 * about 1% of the FS size.
4369 */
4370 if (force == CHUNK_ALLOC_LIMITED) {
David Sterba6c417612011-04-13 15:41:04 +02004371 thresh = btrfs_super_total_bytes(root->fs_info->super_copy);
Byongho Leeee221842015-12-15 01:42:10 +09004372 thresh = max_t(u64, SZ_64M, div_factor_fine(thresh, 1));
Chris Mason0e4f8f82011-04-15 16:05:44 -04004373
4374 if (num_bytes - num_allocated < thresh)
4375 return 1;
4376 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004377
Byongho Leeee221842015-12-15 01:42:10 +09004378 if (num_allocated + SZ_2M < div_factor(num_bytes, 8))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04004379 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04004380 return 1;
4381}
4382
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004383static u64 get_profile_num_devs(struct btrfs_root *root, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004384{
4385 u64 num_dev;
4386
David Woodhouse53b381b2013-01-29 18:40:14 -05004387 if (type & (BTRFS_BLOCK_GROUP_RAID10 |
4388 BTRFS_BLOCK_GROUP_RAID0 |
4389 BTRFS_BLOCK_GROUP_RAID5 |
4390 BTRFS_BLOCK_GROUP_RAID6))
Liu Bo15d1ff82012-03-29 09:57:44 -04004391 num_dev = root->fs_info->fs_devices->rw_devices;
4392 else if (type & BTRFS_BLOCK_GROUP_RAID1)
4393 num_dev = 2;
4394 else
4395 num_dev = 1; /* DUP or single */
4396
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004397 return num_dev;
Liu Bo15d1ff82012-03-29 09:57:44 -04004398}
4399
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004400/*
4401 * If @is_allocation is true, reserve space in the system space info necessary
4402 * for allocating a chunk, otherwise if it's false, reserve space necessary for
4403 * removing a chunk.
4404 */
4405void check_system_chunk(struct btrfs_trans_handle *trans,
4406 struct btrfs_root *root,
Filipe Manana4617ea32015-06-09 17:48:21 +01004407 u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004408{
4409 struct btrfs_space_info *info;
4410 u64 left;
4411 u64 thresh;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004412 int ret = 0;
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004413 u64 num_devs;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004414
4415 /*
4416 * Needed because we can end up allocating a system chunk and for an
4417 * atomic and race free space reservation in the chunk block reserve.
4418 */
4419 ASSERT(mutex_is_locked(&root->fs_info->chunk_mutex));
Liu Bo15d1ff82012-03-29 09:57:44 -04004420
4421 info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4422 spin_lock(&info->lock);
4423 left = info->total_bytes - info->bytes_used - info->bytes_pinned -
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004424 info->bytes_reserved - info->bytes_readonly -
4425 info->bytes_may_use;
Liu Bo15d1ff82012-03-29 09:57:44 -04004426 spin_unlock(&info->lock);
4427
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004428 num_devs = get_profile_num_devs(root, type);
4429
4430 /* num_devs device items to update and 1 chunk item to add or remove */
Filipe Manana4617ea32015-06-09 17:48:21 +01004431 thresh = btrfs_calc_trunc_metadata_size(root, num_devs) +
4432 btrfs_calc_trans_metadata_size(root, 1);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004433
Jeff Mahoney3cdde222016-06-09 21:38:35 -04004434 if (left < thresh && btrfs_test_opt(root->fs_info, ENOSPC_DEBUG)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00004435 btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu",
4436 left, thresh, type);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04004437 dump_space_info(root->fs_info, info, 0, 0);
Liu Bo15d1ff82012-03-29 09:57:44 -04004438 }
4439
4440 if (left < thresh) {
4441 u64 flags;
4442
4443 flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0);
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004444 /*
4445 * Ignore failure to create system chunk. We might end up not
4446 * needing it, as we might not need to COW all nodes/leafs from
4447 * the paths we visit in the chunk tree (they were already COWed
4448 * or created in the current transaction for example).
4449 */
4450 ret = btrfs_alloc_chunk(trans, root, flags);
4451 }
4452
4453 if (!ret) {
4454 ret = btrfs_block_rsv_add(root->fs_info->chunk_root,
4455 &root->fs_info->chunk_block_rsv,
4456 thresh, BTRFS_RESERVE_NO_FLUSH);
4457 if (!ret)
4458 trans->chunk_bytes_reserved += thresh;
Liu Bo15d1ff82012-03-29 09:57:44 -04004459 }
4460}
4461
Liu Bo28b737f2016-07-29 11:09:50 -07004462/*
4463 * If force is CHUNK_ALLOC_FORCE:
4464 * - return 1 if it successfully allocates a chunk,
4465 * - return errors including -ENOSPC otherwise.
4466 * If force is NOT CHUNK_ALLOC_FORCE:
4467 * - return 0 if it doesn't need to allocate a new chunk,
4468 * - return 1 if it successfully allocates a chunk,
4469 * - return errors including -ENOSPC otherwise.
4470 */
Chris Mason6324fbf2008-03-24 15:01:59 -04004471static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Josef Bacik698d0082012-09-12 14:08:47 -04004472 struct btrfs_root *extent_root, u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04004473{
4474 struct btrfs_space_info *space_info;
Josef Bacik97e728d2009-04-21 17:40:57 -04004475 struct btrfs_fs_info *fs_info = extent_root->fs_info;
Josef Bacik6d741192011-04-11 20:20:11 -04004476 int wait_for_alloc = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05004477 int ret = 0;
4478
Josef Bacikc6b305a2012-12-18 09:16:16 -05004479 /* Don't re-enter if we're already allocating a chunk */
4480 if (trans->allocating_chunk)
4481 return -ENOSPC;
4482
Chris Mason6324fbf2008-03-24 15:01:59 -04004483 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04004484 if (!space_info) {
4485 ret = update_space_info(extent_root->fs_info, flags,
Josef Bacike40edf22016-03-25 13:25:47 -04004486 0, 0, 0, &space_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004487 BUG_ON(ret); /* -ENOMEM */
Chris Mason593060d2008-03-25 16:50:33 -04004488 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004489 BUG_ON(!space_info); /* Logic error */
Chris Mason6324fbf2008-03-24 15:01:59 -04004490
Josef Bacik6d741192011-04-11 20:20:11 -04004491again:
Josef Bacik25179202008-10-29 14:49:05 -04004492 spin_lock(&space_info->lock);
Miao Xie9e622d62012-01-26 15:01:12 -05004493 if (force < space_info->force_alloc)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004494 force = space_info->force_alloc;
Josef Bacik25179202008-10-29 14:49:05 -04004495 if (space_info->full) {
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01004496 if (should_alloc_chunk(extent_root, space_info, force))
4497 ret = -ENOSPC;
4498 else
4499 ret = 0;
Josef Bacik25179202008-10-29 14:49:05 -04004500 spin_unlock(&space_info->lock);
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01004501 return ret;
Josef Bacik25179202008-10-29 14:49:05 -04004502 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004503
Josef Bacik698d0082012-09-12 14:08:47 -04004504 if (!should_alloc_chunk(extent_root, space_info, force)) {
Josef Bacik25179202008-10-29 14:49:05 -04004505 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04004506 return 0;
4507 } else if (space_info->chunk_alloc) {
4508 wait_for_alloc = 1;
4509 } else {
4510 space_info->chunk_alloc = 1;
Josef Bacik25179202008-10-29 14:49:05 -04004511 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004512
Josef Bacik25179202008-10-29 14:49:05 -04004513 spin_unlock(&space_info->lock);
4514
Josef Bacik6d741192011-04-11 20:20:11 -04004515 mutex_lock(&fs_info->chunk_mutex);
4516
4517 /*
4518 * The chunk_mutex is held throughout the entirety of a chunk
4519 * allocation, so once we've acquired the chunk_mutex we know that the
4520 * other guy is done and we need to recheck and see if we should
4521 * allocate.
4522 */
4523 if (wait_for_alloc) {
4524 mutex_unlock(&fs_info->chunk_mutex);
4525 wait_for_alloc = 0;
4526 goto again;
4527 }
4528
Josef Bacikc6b305a2012-12-18 09:16:16 -05004529 trans->allocating_chunk = true;
4530
Josef Bacik97e728d2009-04-21 17:40:57 -04004531 /*
Josef Bacik67377732010-09-16 16:19:09 -04004532 * If we have mixed data/metadata chunks we want to make sure we keep
4533 * allocating mixed chunks instead of individual chunks.
4534 */
4535 if (btrfs_mixed_space_info(space_info))
4536 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
4537
4538 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04004539 * if we're doing a data chunk, go ahead and make sure that
4540 * we keep a reasonable number of metadata chunks allocated in the
4541 * FS as well.
4542 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04004543 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04004544 fs_info->data_chunk_allocations++;
4545 if (!(fs_info->data_chunk_allocations %
4546 fs_info->metadata_ratio))
4547 force_metadata_allocation(fs_info);
4548 }
4549
Liu Bo15d1ff82012-03-29 09:57:44 -04004550 /*
4551 * Check if we have enough space in SYSTEM chunk because we may need
4552 * to update devices.
4553 */
Filipe Manana4617ea32015-06-09 17:48:21 +01004554 check_system_chunk(trans, extent_root, flags);
Liu Bo15d1ff82012-03-29 09:57:44 -04004555
Yan Zheng2b820322008-11-17 21:11:30 -05004556 ret = btrfs_alloc_chunk(trans, extent_root, flags);
Josef Bacikc6b305a2012-12-18 09:16:16 -05004557 trans->allocating_chunk = false;
Mark Fasheh92b8e8972011-07-12 10:57:59 -07004558
Josef Bacik9ed74f22009-09-11 16:12:44 -04004559 spin_lock(&space_info->lock);
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004560 if (ret < 0 && ret != -ENOSPC)
4561 goto out;
Chris Masond3977122009-01-05 21:25:51 -05004562 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04004563 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04004564 else
4565 ret = 1;
Josef Bacik6d741192011-04-11 20:20:11 -04004566
Chris Mason0e4f8f82011-04-15 16:05:44 -04004567 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004568out:
Josef Bacik6d741192011-04-11 20:20:11 -04004569 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004570 spin_unlock(&space_info->lock);
Dan Carpentera25c75d2012-04-18 09:59:29 +03004571 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana00d80e32015-07-20 14:56:20 +01004572 /*
4573 * When we allocate a new chunk we reserve space in the chunk block
4574 * reserve to make sure we can COW nodes/leafs in the chunk tree or
4575 * add new nodes/leafs to it if we end up needing to do it when
4576 * inserting the chunk item and updating device items as part of the
4577 * second phase of chunk allocation, performed by
4578 * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a
4579 * large number of new block groups to create in our transaction
4580 * handle's new_bgs list to avoid exhausting the chunk block reserve
4581 * in extreme cases - like having a single transaction create many new
4582 * block groups when starting to write out the free space caches of all
4583 * the block groups that were made dirty during the lifetime of the
4584 * transaction.
4585 */
Filipe Mananad9a05402015-10-03 13:13:13 +01004586 if (trans->can_flush_pending_bgs &&
Byongho Leeee221842015-12-15 01:42:10 +09004587 trans->chunk_bytes_reserved >= (u64)SZ_2M) {
Jeff Mahoney64b63582016-06-20 17:23:41 -04004588 btrfs_create_pending_block_groups(trans, extent_root);
Filipe Manana00d80e32015-07-20 14:56:20 +01004589 btrfs_trans_release_chunk_metadata(trans);
4590 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04004591 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04004592}
4593
Josef Bacika80c8dc2012-09-06 16:59:33 -04004594static int can_overcommit(struct btrfs_root *root,
4595 struct btrfs_space_info *space_info, u64 bytes,
Miao Xie08e007d2012-10-16 11:33:38 +00004596 enum btrfs_reserve_flush_enum flush)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004597{
Josef Bacik957780e2016-05-17 13:30:55 -04004598 struct btrfs_block_rsv *global_rsv;
4599 u64 profile;
Miao Xie3c76cd82013-04-25 10:12:38 +00004600 u64 space_size;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004601 u64 avail;
4602 u64 used;
4603
Josef Bacik957780e2016-05-17 13:30:55 -04004604 /* Don't overcommit when in mixed mode. */
4605 if (space_info->flags & BTRFS_BLOCK_GROUP_DATA)
4606 return 0;
4607
4608 BUG_ON(root->fs_info == NULL);
4609 global_rsv = &root->fs_info->global_block_rsv;
4610 profile = btrfs_get_alloc_profile(root, 0);
Josef Bacika80c8dc2012-09-06 16:59:33 -04004611 used = space_info->bytes_used + space_info->bytes_reserved +
Josef Bacik96f1bb52013-01-30 17:02:51 -05004612 space_info->bytes_pinned + space_info->bytes_readonly;
4613
Josef Bacik96f1bb52013-01-30 17:02:51 -05004614 /*
4615 * We only want to allow over committing if we have lots of actual space
4616 * free, but if we don't have enough space to handle the global reserve
4617 * space then we could end up having a real enospc problem when trying
4618 * to allocate a chunk or some other such important allocation.
4619 */
Miao Xie3c76cd82013-04-25 10:12:38 +00004620 spin_lock(&global_rsv->lock);
4621 space_size = calc_global_rsv_need_space(global_rsv);
4622 spin_unlock(&global_rsv->lock);
4623 if (used + space_size >= space_info->total_bytes)
Josef Bacik96f1bb52013-01-30 17:02:51 -05004624 return 0;
4625
4626 used += space_info->bytes_may_use;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004627
4628 spin_lock(&root->fs_info->free_chunk_lock);
4629 avail = root->fs_info->free_chunk_space;
4630 spin_unlock(&root->fs_info->free_chunk_lock);
4631
4632 /*
4633 * If we have dup, raid1 or raid10 then only half of the free
David Woodhouse53b381b2013-01-29 18:40:14 -05004634 * space is actually useable. For raid56, the space info used
4635 * doesn't include the parity drive, so we don't have to
4636 * change the math
Josef Bacika80c8dc2012-09-06 16:59:33 -04004637 */
4638 if (profile & (BTRFS_BLOCK_GROUP_DUP |
4639 BTRFS_BLOCK_GROUP_RAID1 |
4640 BTRFS_BLOCK_GROUP_RAID10))
4641 avail >>= 1;
4642
4643 /*
Miao Xie561c2942012-10-16 11:32:18 +00004644 * If we aren't flushing all things, let us overcommit up to
4645 * 1/2th of the space. If we can flush, don't let us overcommit
4646 * too much, let it overcommit up to 1/8 of the space.
Josef Bacika80c8dc2012-09-06 16:59:33 -04004647 */
Miao Xie08e007d2012-10-16 11:33:38 +00004648 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacik14575ae2013-09-17 10:48:00 -04004649 avail >>= 3;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004650 else
Josef Bacik14575ae2013-09-17 10:48:00 -04004651 avail >>= 1;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004652
Josef Bacik14575ae2013-09-17 10:48:00 -04004653 if (used + bytes < space_info->total_bytes + avail)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004654 return 1;
4655 return 0;
4656}
4657
Eric Sandeen48a3b632013-04-25 20:41:01 +00004658static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root,
Miao Xie6c255e62014-03-06 13:55:01 +08004659 unsigned long nr_pages, int nr_items)
Miao Xieda633a42012-12-20 11:19:09 +00004660{
4661 struct super_block *sb = root->fs_info->sb;
Miao Xieda633a42012-12-20 11:19:09 +00004662
Josef Bacik925a6ef2013-06-20 12:31:27 -04004663 if (down_read_trylock(&sb->s_umount)) {
4664 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
4665 up_read(&sb->s_umount);
4666 } else {
Miao Xieda633a42012-12-20 11:19:09 +00004667 /*
4668 * We needn't worry the filesystem going from r/w to r/o though
4669 * we don't acquire ->s_umount mutex, because the filesystem
4670 * should guarantee the delalloc inodes list be empty after
4671 * the filesystem is readonly(all dirty pages are written to
4672 * the disk).
4673 */
Miao Xie6c255e62014-03-06 13:55:01 +08004674 btrfs_start_delalloc_roots(root->fs_info, 0, nr_items);
Josef Bacik98ad69c2013-04-04 11:55:49 -04004675 if (!current->journal_info)
Filipe Manana578def72016-04-26 15:36:38 +01004676 btrfs_wait_ordered_roots(root->fs_info, nr_items,
4677 0, (u64)-1);
Miao Xieda633a42012-12-20 11:19:09 +00004678 }
4679}
4680
Miao Xie18cd8ea2013-11-04 23:13:22 +08004681static inline int calc_reclaim_items_nr(struct btrfs_root *root, u64 to_reclaim)
4682{
4683 u64 bytes;
4684 int nr;
4685
4686 bytes = btrfs_calc_trans_metadata_size(root, 1);
4687 nr = (int)div64_u64(to_reclaim, bytes);
4688 if (!nr)
4689 nr = 1;
4690 return nr;
4691}
4692
Byongho Leeee221842015-12-15 01:42:10 +09004693#define EXTENT_SIZE_PER_ITEM SZ_256K
Miao Xiec61a16a2013-11-04 23:13:23 +08004694
Yan, Zheng5da9d012010-05-16 10:46:25 -04004695/*
4696 * shrink metadata reservation for delalloc
4697 */
Josef Bacikf4c738c2012-07-02 17:10:51 -04004698static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig,
4699 bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04004700{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004701 struct btrfs_block_rsv *block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004702 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04004703 struct btrfs_trans_handle *trans;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004704 u64 delalloc_bytes;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004705 u64 max_reclaim;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004706 long time_left;
Miao Xied3ee29e32013-11-04 23:13:20 +08004707 unsigned long nr_pages;
4708 int loops;
Miao Xieb0244192013-11-04 23:13:25 +08004709 int items;
Miao Xie08e007d2012-10-16 11:33:38 +00004710 enum btrfs_reserve_flush_enum flush;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004711
Miao Xiec61a16a2013-11-04 23:13:23 +08004712 /* Calc the number of the pages we need flush for space reservation */
Miao Xieb0244192013-11-04 23:13:25 +08004713 items = calc_reclaim_items_nr(root, to_reclaim);
Adam Borowski8eb0dfd2016-05-08 15:08:00 +02004714 to_reclaim = (u64)items * EXTENT_SIZE_PER_ITEM;
Miao Xiec61a16a2013-11-04 23:13:23 +08004715
Josef Bacik663350a2011-11-03 22:54:25 -04004716 trans = (struct btrfs_trans_handle *)current->journal_info;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004717 block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004718 space_info = block_rsv->space_info;
Chris Masonbf9022e2010-10-26 13:40:45 -04004719
Miao Xie963d6782013-01-29 10:10:51 +00004720 delalloc_bytes = percpu_counter_sum_positive(
4721 &root->fs_info->delalloc_bytes);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004722 if (delalloc_bytes == 0) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004723 if (trans)
Josef Bacikf4c738c2012-07-02 17:10:51 -04004724 return;
Miao Xie38c135a2013-11-04 23:13:21 +08004725 if (wait_ordered)
Filipe Manana578def72016-04-26 15:36:38 +01004726 btrfs_wait_ordered_roots(root->fs_info, items,
4727 0, (u64)-1);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004728 return;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004729 }
4730
Miao Xied3ee29e32013-11-04 23:13:20 +08004731 loops = 0;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004732 while (delalloc_bytes && loops < 3) {
4733 max_reclaim = min(delalloc_bytes, to_reclaim);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004734 nr_pages = max_reclaim >> PAGE_SHIFT;
Miao Xie6c255e62014-03-06 13:55:01 +08004735 btrfs_writeback_inodes_sb_nr(root, nr_pages, items);
Josef Bacikdea31f52012-09-06 16:47:00 -04004736 /*
4737 * We need to wait for the async pages to actually start before
4738 * we do anything.
4739 */
Miao Xie9f3a0742013-11-04 23:13:24 +08004740 max_reclaim = atomic_read(&root->fs_info->async_delalloc_pages);
4741 if (!max_reclaim)
4742 goto skip_async;
Josef Bacikdea31f52012-09-06 16:47:00 -04004743
Miao Xie9f3a0742013-11-04 23:13:24 +08004744 if (max_reclaim <= nr_pages)
4745 max_reclaim = 0;
4746 else
4747 max_reclaim -= nr_pages;
4748
4749 wait_event(root->fs_info->async_submit_wait,
4750 atomic_read(&root->fs_info->async_delalloc_pages) <=
4751 (int)max_reclaim);
4752skip_async:
Miao Xie08e007d2012-10-16 11:33:38 +00004753 if (!trans)
4754 flush = BTRFS_RESERVE_FLUSH_ALL;
4755 else
4756 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacik0019f102010-10-15 15:18:40 -04004757 spin_lock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00004758 if (can_overcommit(root, space_info, orig, flush)) {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004759 spin_unlock(&space_info->lock);
4760 break;
4761 }
Josef Bacik957780e2016-05-17 13:30:55 -04004762 if (list_empty(&space_info->tickets) &&
4763 list_empty(&space_info->priority_tickets)) {
4764 spin_unlock(&space_info->lock);
4765 break;
4766 }
Josef Bacik0019f102010-10-15 15:18:40 -04004767 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004768
Chris Mason36e39c42011-03-12 07:08:42 -05004769 loops++;
Josef Bacikf104d042011-10-14 13:56:58 -04004770 if (wait_ordered && !trans) {
Filipe Manana578def72016-04-26 15:36:38 +01004771 btrfs_wait_ordered_roots(root->fs_info, items,
4772 0, (u64)-1);
Josef Bacikf104d042011-10-14 13:56:58 -04004773 } else {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004774 time_left = schedule_timeout_killable(1);
Josef Bacikf104d042011-10-14 13:56:58 -04004775 if (time_left)
4776 break;
4777 }
Miao Xie963d6782013-01-29 10:10:51 +00004778 delalloc_bytes = percpu_counter_sum_positive(
4779 &root->fs_info->delalloc_bytes);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004780 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04004781}
4782
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004783/**
Josef Bacik663350a2011-11-03 22:54:25 -04004784 * maybe_commit_transaction - possibly commit the transaction if its ok to
4785 * @root - the root we're allocating for
4786 * @bytes - the number of bytes we want to reserve
4787 * @force - force the commit
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004788 *
Josef Bacik663350a2011-11-03 22:54:25 -04004789 * This will check to make sure that committing the transaction will actually
4790 * get us somewhere and then commit the transaction if it does. Otherwise it
4791 * will return -ENOSPC.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004792 */
Josef Bacik663350a2011-11-03 22:54:25 -04004793static int may_commit_transaction(struct btrfs_root *root,
4794 struct btrfs_space_info *space_info,
4795 u64 bytes, int force)
4796{
4797 struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv;
4798 struct btrfs_trans_handle *trans;
4799
4800 trans = (struct btrfs_trans_handle *)current->journal_info;
4801 if (trans)
4802 return -EAGAIN;
4803
4804 if (force)
4805 goto commit;
4806
4807 /* See if there is enough pinned space to make this reservation */
Josef Bacikb150a4f2013-06-19 15:00:04 -04004808 if (percpu_counter_compare(&space_info->total_bytes_pinned,
Miao Xie0424c542014-03-06 13:54:59 +08004809 bytes) >= 0)
Josef Bacik663350a2011-11-03 22:54:25 -04004810 goto commit;
Josef Bacik663350a2011-11-03 22:54:25 -04004811
4812 /*
4813 * See if there is some space in the delayed insertion reservation for
4814 * this reservation.
4815 */
4816 if (space_info != delayed_rsv->space_info)
4817 return -ENOSPC;
4818
4819 spin_lock(&delayed_rsv->lock);
Josef Bacikb150a4f2013-06-19 15:00:04 -04004820 if (percpu_counter_compare(&space_info->total_bytes_pinned,
4821 bytes - delayed_rsv->size) >= 0) {
Josef Bacik663350a2011-11-03 22:54:25 -04004822 spin_unlock(&delayed_rsv->lock);
4823 return -ENOSPC;
4824 }
4825 spin_unlock(&delayed_rsv->lock);
4826
4827commit:
4828 trans = btrfs_join_transaction(root);
4829 if (IS_ERR(trans))
4830 return -ENOSPC;
4831
4832 return btrfs_commit_transaction(trans, root);
4833}
4834
Josef Bacik957780e2016-05-17 13:30:55 -04004835struct reserve_ticket {
4836 u64 bytes;
4837 int error;
4838 struct list_head list;
4839 wait_queue_head_t wait;
Josef Bacik96c3f432012-06-21 14:05:49 -04004840};
4841
4842static int flush_space(struct btrfs_root *root,
4843 struct btrfs_space_info *space_info, u64 num_bytes,
4844 u64 orig_bytes, int state)
4845{
4846 struct btrfs_trans_handle *trans;
4847 int nr;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004848 int ret = 0;
Josef Bacik96c3f432012-06-21 14:05:49 -04004849
4850 switch (state) {
Josef Bacik96c3f432012-06-21 14:05:49 -04004851 case FLUSH_DELAYED_ITEMS_NR:
4852 case FLUSH_DELAYED_ITEMS:
Miao Xie18cd8ea2013-11-04 23:13:22 +08004853 if (state == FLUSH_DELAYED_ITEMS_NR)
4854 nr = calc_reclaim_items_nr(root, num_bytes) * 2;
4855 else
Josef Bacik96c3f432012-06-21 14:05:49 -04004856 nr = -1;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004857
Josef Bacik96c3f432012-06-21 14:05:49 -04004858 trans = btrfs_join_transaction(root);
4859 if (IS_ERR(trans)) {
4860 ret = PTR_ERR(trans);
4861 break;
4862 }
4863 ret = btrfs_run_delayed_items_nr(trans, root, nr);
4864 btrfs_end_transaction(trans, root);
4865 break;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004866 case FLUSH_DELALLOC:
4867 case FLUSH_DELALLOC_WAIT:
Miao Xie24af7dd2014-03-06 13:55:00 +08004868 shrink_delalloc(root, num_bytes * 2, orig_bytes,
Josef Bacik67b0fd62012-09-24 13:42:00 -04004869 state == FLUSH_DELALLOC_WAIT);
4870 break;
Josef Bacikea658ba2012-09-11 16:57:25 -04004871 case ALLOC_CHUNK:
4872 trans = btrfs_join_transaction(root);
4873 if (IS_ERR(trans)) {
4874 ret = PTR_ERR(trans);
4875 break;
4876 }
4877 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Josef Bacikea658ba2012-09-11 16:57:25 -04004878 btrfs_get_alloc_profile(root, 0),
4879 CHUNK_ALLOC_NO_FORCE);
4880 btrfs_end_transaction(trans, root);
Alex Lyakaseecba892015-12-06 12:32:31 +02004881 if (ret > 0 || ret == -ENOSPC)
Josef Bacikea658ba2012-09-11 16:57:25 -04004882 ret = 0;
4883 break;
Josef Bacik96c3f432012-06-21 14:05:49 -04004884 case COMMIT_TRANS:
4885 ret = may_commit_transaction(root, space_info, orig_bytes, 0);
4886 break;
4887 default:
4888 ret = -ENOSPC;
4889 break;
4890 }
4891
Josef Bacikf376df22016-03-25 13:25:56 -04004892 trace_btrfs_flush_space(root->fs_info, space_info->flags, num_bytes,
4893 orig_bytes, state, ret);
Josef Bacik96c3f432012-06-21 14:05:49 -04004894 return ret;
4895}
Miao Xie21c7e752014-05-13 17:29:04 -07004896
4897static inline u64
4898btrfs_calc_reclaim_metadata_size(struct btrfs_root *root,
4899 struct btrfs_space_info *space_info)
4900{
Josef Bacik957780e2016-05-17 13:30:55 -04004901 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07004902 u64 used;
4903 u64 expected;
Josef Bacik957780e2016-05-17 13:30:55 -04004904 u64 to_reclaim = 0;
Miao Xie21c7e752014-05-13 17:29:04 -07004905
Josef Bacik957780e2016-05-17 13:30:55 -04004906 list_for_each_entry(ticket, &space_info->tickets, list)
4907 to_reclaim += ticket->bytes;
4908 list_for_each_entry(ticket, &space_info->priority_tickets, list)
4909 to_reclaim += ticket->bytes;
4910 if (to_reclaim)
4911 return to_reclaim;
Miao Xie21c7e752014-05-13 17:29:04 -07004912
Wang Xiaoguange0af2482016-08-31 19:46:16 +08004913 to_reclaim = min_t(u64, num_online_cpus() * SZ_1M, SZ_16M);
4914 if (can_overcommit(root, space_info, to_reclaim,
4915 BTRFS_RESERVE_FLUSH_ALL))
4916 return 0;
4917
Miao Xie21c7e752014-05-13 17:29:04 -07004918 used = space_info->bytes_used + space_info->bytes_reserved +
4919 space_info->bytes_pinned + space_info->bytes_readonly +
4920 space_info->bytes_may_use;
Byongho Leeee221842015-12-15 01:42:10 +09004921 if (can_overcommit(root, space_info, SZ_1M, BTRFS_RESERVE_FLUSH_ALL))
Miao Xie21c7e752014-05-13 17:29:04 -07004922 expected = div_factor_fine(space_info->total_bytes, 95);
4923 else
4924 expected = div_factor_fine(space_info->total_bytes, 90);
4925
4926 if (used > expected)
4927 to_reclaim = used - expected;
4928 else
4929 to_reclaim = 0;
4930 to_reclaim = min(to_reclaim, space_info->bytes_may_use +
4931 space_info->bytes_reserved);
Miao Xie21c7e752014-05-13 17:29:04 -07004932 return to_reclaim;
4933}
4934
4935static inline int need_do_async_reclaim(struct btrfs_space_info *space_info,
Josef Bacik87241c22016-04-25 09:58:18 -04004936 struct btrfs_root *root, u64 used)
Miao Xie21c7e752014-05-13 17:29:04 -07004937{
Josef Bacik365c5312015-02-18 13:58:15 -08004938 u64 thresh = div_factor_fine(space_info->total_bytes, 98);
4939
4940 /* If we're just plain full then async reclaim just slows us down. */
Josef Bacikbaee8792016-01-26 09:35:38 -05004941 if ((space_info->bytes_used + space_info->bytes_reserved) >= thresh)
Josef Bacik365c5312015-02-18 13:58:15 -08004942 return 0;
4943
Josef Bacik87241c22016-04-25 09:58:18 -04004944 if (!btrfs_calc_reclaim_metadata_size(root, space_info))
Liu Bo25ce4592014-09-10 12:58:50 +08004945 return 0;
Liu Bo25ce4592014-09-10 12:58:50 +08004946
Josef Bacik87241c22016-04-25 09:58:18 -04004947 return (used >= thresh && !btrfs_fs_closing(root->fs_info) &&
4948 !test_bit(BTRFS_FS_STATE_REMOUNTING,
4949 &root->fs_info->fs_state));
Miao Xie21c7e752014-05-13 17:29:04 -07004950}
4951
Josef Bacik957780e2016-05-17 13:30:55 -04004952static void wake_all_tickets(struct list_head *head)
Miao Xie21c7e752014-05-13 17:29:04 -07004953{
Josef Bacik957780e2016-05-17 13:30:55 -04004954 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07004955
Josef Bacik957780e2016-05-17 13:30:55 -04004956 while (!list_empty(head)) {
4957 ticket = list_first_entry(head, struct reserve_ticket, list);
4958 list_del_init(&ticket->list);
4959 ticket->error = -ENOSPC;
4960 wake_up(&ticket->wait);
Miao Xie21c7e752014-05-13 17:29:04 -07004961 }
Miao Xie21c7e752014-05-13 17:29:04 -07004962}
4963
Josef Bacik957780e2016-05-17 13:30:55 -04004964/*
4965 * This is for normal flushers, we can wait all goddamned day if we want to. We
4966 * will loop and continuously try to flush as long as we are making progress.
4967 * We count progress as clearing off tickets each time we have to loop.
4968 */
Miao Xie21c7e752014-05-13 17:29:04 -07004969static void btrfs_async_reclaim_metadata_space(struct work_struct *work)
4970{
4971 struct btrfs_fs_info *fs_info;
4972 struct btrfs_space_info *space_info;
4973 u64 to_reclaim;
4974 int flush_state;
Josef Bacik957780e2016-05-17 13:30:55 -04004975 int commit_cycles = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08004976 u64 last_tickets_id;
Miao Xie21c7e752014-05-13 17:29:04 -07004977
4978 fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work);
4979 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4980
Josef Bacik957780e2016-05-17 13:30:55 -04004981 spin_lock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07004982 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root,
4983 space_info);
Josef Bacik957780e2016-05-17 13:30:55 -04004984 if (!to_reclaim) {
4985 space_info->flush = 0;
4986 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07004987 return;
Josef Bacik957780e2016-05-17 13:30:55 -04004988 }
Wang Xiaoguangce129652016-09-02 10:58:46 +08004989 last_tickets_id = space_info->tickets_id;
Josef Bacik957780e2016-05-17 13:30:55 -04004990 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07004991
4992 flush_state = FLUSH_DELAYED_ITEMS_NR;
4993 do {
Josef Bacik957780e2016-05-17 13:30:55 -04004994 struct reserve_ticket *ticket;
4995 int ret;
4996
4997 ret = flush_space(fs_info->fs_root, space_info, to_reclaim,
Miao Xie21c7e752014-05-13 17:29:04 -07004998 to_reclaim, flush_state);
Josef Bacik957780e2016-05-17 13:30:55 -04004999 spin_lock(&space_info->lock);
5000 if (list_empty(&space_info->tickets)) {
5001 space_info->flush = 0;
5002 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07005003 return;
Josef Bacik957780e2016-05-17 13:30:55 -04005004 }
5005 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root,
5006 space_info);
5007 ticket = list_first_entry(&space_info->tickets,
5008 struct reserve_ticket, list);
Wang Xiaoguangce129652016-09-02 10:58:46 +08005009 if (last_tickets_id == space_info->tickets_id) {
Josef Bacik957780e2016-05-17 13:30:55 -04005010 flush_state++;
5011 } else {
Wang Xiaoguangce129652016-09-02 10:58:46 +08005012 last_tickets_id = space_info->tickets_id;
Josef Bacik957780e2016-05-17 13:30:55 -04005013 flush_state = FLUSH_DELAYED_ITEMS_NR;
5014 if (commit_cycles)
5015 commit_cycles--;
5016 }
5017
5018 if (flush_state > COMMIT_TRANS) {
5019 commit_cycles++;
5020 if (commit_cycles > 2) {
5021 wake_all_tickets(&space_info->tickets);
5022 space_info->flush = 0;
5023 } else {
5024 flush_state = FLUSH_DELAYED_ITEMS_NR;
5025 }
5026 }
5027 spin_unlock(&space_info->lock);
5028 } while (flush_state <= COMMIT_TRANS);
Miao Xie21c7e752014-05-13 17:29:04 -07005029}
5030
5031void btrfs_init_async_reclaim_work(struct work_struct *work)
5032{
5033 INIT_WORK(work, btrfs_async_reclaim_metadata_space);
5034}
5035
Josef Bacik957780e2016-05-17 13:30:55 -04005036static void priority_reclaim_metadata_space(struct btrfs_fs_info *fs_info,
5037 struct btrfs_space_info *space_info,
5038 struct reserve_ticket *ticket)
5039{
5040 u64 to_reclaim;
5041 int flush_state = FLUSH_DELAYED_ITEMS_NR;
5042
5043 spin_lock(&space_info->lock);
5044 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root,
5045 space_info);
5046 if (!to_reclaim) {
5047 spin_unlock(&space_info->lock);
5048 return;
5049 }
5050 spin_unlock(&space_info->lock);
5051
5052 do {
5053 flush_space(fs_info->fs_root, space_info, to_reclaim,
5054 to_reclaim, flush_state);
5055 flush_state++;
5056 spin_lock(&space_info->lock);
5057 if (ticket->bytes == 0) {
5058 spin_unlock(&space_info->lock);
5059 return;
5060 }
5061 spin_unlock(&space_info->lock);
5062
5063 /*
5064 * Priority flushers can't wait on delalloc without
5065 * deadlocking.
5066 */
5067 if (flush_state == FLUSH_DELALLOC ||
5068 flush_state == FLUSH_DELALLOC_WAIT)
5069 flush_state = ALLOC_CHUNK;
5070 } while (flush_state < COMMIT_TRANS);
5071}
5072
5073static int wait_reserve_ticket(struct btrfs_fs_info *fs_info,
5074 struct btrfs_space_info *space_info,
5075 struct reserve_ticket *ticket, u64 orig_bytes)
5076
5077{
5078 DEFINE_WAIT(wait);
5079 int ret = 0;
5080
5081 spin_lock(&space_info->lock);
5082 while (ticket->bytes > 0 && ticket->error == 0) {
5083 ret = prepare_to_wait_event(&ticket->wait, &wait, TASK_KILLABLE);
5084 if (ret) {
5085 ret = -EINTR;
5086 break;
5087 }
5088 spin_unlock(&space_info->lock);
5089
5090 schedule();
5091
5092 finish_wait(&ticket->wait, &wait);
5093 spin_lock(&space_info->lock);
5094 }
5095 if (!ret)
5096 ret = ticket->error;
5097 if (!list_empty(&ticket->list))
5098 list_del_init(&ticket->list);
5099 if (ticket->bytes && ticket->bytes < orig_bytes) {
5100 u64 num_bytes = orig_bytes - ticket->bytes;
5101 space_info->bytes_may_use -= num_bytes;
5102 trace_btrfs_space_reservation(fs_info, "space_info",
5103 space_info->flags, num_bytes, 0);
5104 }
5105 spin_unlock(&space_info->lock);
5106
5107 return ret;
5108}
5109
Josef Bacik663350a2011-11-03 22:54:25 -04005110/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005111 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5112 * @root - the root we're allocating for
Josef Bacik957780e2016-05-17 13:30:55 -04005113 * @space_info - the space info we want to allocate from
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005114 * @orig_bytes - the number of bytes we want
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04005115 * @flush - whether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005116 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04005117 * This will reserve orig_bytes number of bytes from the space info associated
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005118 * with the block_rsv. If there is not enough space it will make an attempt to
5119 * flush out space to make room. It will do this by flushing delalloc if
5120 * possible or committing the transaction. If flush is 0 then no attempts to
5121 * regain reservations will be made and this will fail if there is not enough
5122 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005123 */
Josef Bacik957780e2016-05-17 13:30:55 -04005124static int __reserve_metadata_bytes(struct btrfs_root *root,
5125 struct btrfs_space_info *space_info,
5126 u64 orig_bytes,
5127 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005128{
Josef Bacik957780e2016-05-17 13:30:55 -04005129 struct reserve_ticket ticket;
Josef Bacik2bf64752011-09-26 17:12:22 -04005130 u64 used;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005131 int ret = 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005132
Josef Bacik957780e2016-05-17 13:30:55 -04005133 ASSERT(orig_bytes);
Josef Bacik8ca17f02016-05-27 13:24:13 -04005134 ASSERT(!current->journal_info || flush != BTRFS_RESERVE_FLUSH_ALL);
5135
Yan, Zhengf0486c62010-05-16 10:46:25 -04005136 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04005137 ret = -ENOSPC;
Josef Bacik2bf64752011-09-26 17:12:22 -04005138 used = space_info->bytes_used + space_info->bytes_reserved +
5139 space_info->bytes_pinned + space_info->bytes_readonly +
5140 space_info->bytes_may_use;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005141
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005142 /*
Josef Bacik957780e2016-05-17 13:30:55 -04005143 * If we have enough space then hooray, make our reservation and carry
5144 * on. If not see if we can overcommit, and if we can, hooray carry on.
5145 * If not things get more complicated.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005146 */
Josef Bacik957780e2016-05-17 13:30:55 -04005147 if (used + orig_bytes <= space_info->total_bytes) {
5148 space_info->bytes_may_use += orig_bytes;
5149 trace_btrfs_space_reservation(root->fs_info, "space_info",
5150 space_info->flags, orig_bytes,
5151 1);
5152 ret = 0;
5153 } else if (can_overcommit(root, space_info, orig_bytes, flush)) {
Josef Bacik44734ed2012-09-28 16:04:19 -04005154 space_info->bytes_may_use += orig_bytes;
5155 trace_btrfs_space_reservation(root->fs_info, "space_info",
5156 space_info->flags, orig_bytes,
5157 1);
5158 ret = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04005159 }
5160
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005161 /*
Josef Bacik957780e2016-05-17 13:30:55 -04005162 * If we couldn't make a reservation then setup our reservation ticket
5163 * and kick the async worker if it's not already running.
Miao Xie08e007d2012-10-16 11:33:38 +00005164 *
Josef Bacik957780e2016-05-17 13:30:55 -04005165 * If we are a priority flusher then we just need to add our ticket to
5166 * the list and we will do our own flushing further down.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005167 */
Josef Bacik72bcd992012-12-18 15:16:34 -05005168 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
Josef Bacik957780e2016-05-17 13:30:55 -04005169 ticket.bytes = orig_bytes;
5170 ticket.error = 0;
5171 init_waitqueue_head(&ticket.wait);
5172 if (flush == BTRFS_RESERVE_FLUSH_ALL) {
5173 list_add_tail(&ticket.list, &space_info->tickets);
5174 if (!space_info->flush) {
5175 space_info->flush = 1;
Josef Bacikf376df22016-03-25 13:25:56 -04005176 trace_btrfs_trigger_flush(root->fs_info,
5177 space_info->flags,
5178 orig_bytes, flush,
5179 "enospc");
Josef Bacik957780e2016-05-17 13:30:55 -04005180 queue_work(system_unbound_wq,
5181 &root->fs_info->async_reclaim_work);
5182 }
5183 } else {
5184 list_add_tail(&ticket.list,
5185 &space_info->priority_tickets);
5186 }
Miao Xie21c7e752014-05-13 17:29:04 -07005187 } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
5188 used += orig_bytes;
Josef Bacikf6acfd52014-09-18 11:27:17 -04005189 /*
5190 * We will do the space reservation dance during log replay,
5191 * which means we won't have fs_info->fs_root set, so don't do
5192 * the async reclaim as we will panic.
5193 */
Josef Bacikafcdd122016-09-02 15:40:02 -04005194 if (!test_bit(BTRFS_FS_LOG_RECOVERING, &root->fs_info->flags) &&
Josef Bacik87241c22016-04-25 09:58:18 -04005195 need_do_async_reclaim(space_info, root, used) &&
Josef Bacikf376df22016-03-25 13:25:56 -04005196 !work_busy(&root->fs_info->async_reclaim_work)) {
5197 trace_btrfs_trigger_flush(root->fs_info,
5198 space_info->flags,
5199 orig_bytes, flush,
5200 "preempt");
Miao Xie21c7e752014-05-13 17:29:04 -07005201 queue_work(system_unbound_wq,
5202 &root->fs_info->async_reclaim_work);
Josef Bacikf376df22016-03-25 13:25:56 -04005203 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005204 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005205 spin_unlock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00005206 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
Josef Bacik957780e2016-05-17 13:30:55 -04005207 return ret;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005208
Josef Bacik957780e2016-05-17 13:30:55 -04005209 if (flush == BTRFS_RESERVE_FLUSH_ALL)
5210 return wait_reserve_ticket(root->fs_info, space_info, &ticket,
5211 orig_bytes);
Miao Xie08e007d2012-10-16 11:33:38 +00005212
Josef Bacik957780e2016-05-17 13:30:55 -04005213 ret = 0;
5214 priority_reclaim_metadata_space(root->fs_info, space_info, &ticket);
5215 spin_lock(&space_info->lock);
5216 if (ticket.bytes) {
5217 if (ticket.bytes < orig_bytes) {
5218 u64 num_bytes = orig_bytes - ticket.bytes;
5219 space_info->bytes_may_use -= num_bytes;
5220 trace_btrfs_space_reservation(root->fs_info,
5221 "space_info", space_info->flags,
5222 num_bytes, 0);
Miao Xie08e007d2012-10-16 11:33:38 +00005223
Josef Bacik957780e2016-05-17 13:30:55 -04005224 }
5225 list_del_init(&ticket.list);
5226 ret = -ENOSPC;
5227 }
5228 spin_unlock(&space_info->lock);
5229 ASSERT(list_empty(&ticket.list));
5230 return ret;
5231}
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005232
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005233/**
5234 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5235 * @root - the root we're allocating for
5236 * @block_rsv - the block_rsv we're allocating for
5237 * @orig_bytes - the number of bytes we want
5238 * @flush - whether or not we can flush to make our reservation
5239 *
Josef Bacik957780e2016-05-17 13:30:55 -04005240 * This will reserve orgi_bytes number of bytes from the space info associated
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005241 * with the block_rsv. If there is not enough space it will make an attempt to
5242 * flush out space to make room. It will do this by flushing delalloc if
5243 * possible or committing the transaction. If flush is 0 then no attempts to
5244 * regain reservations will be made and this will fail if there is not enough
5245 * space already.
5246 */
5247static int reserve_metadata_bytes(struct btrfs_root *root,
5248 struct btrfs_block_rsv *block_rsv,
5249 u64 orig_bytes,
5250 enum btrfs_reserve_flush_enum flush)
5251{
Josef Bacik957780e2016-05-17 13:30:55 -04005252 int ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005253
Josef Bacik957780e2016-05-17 13:30:55 -04005254 ret = __reserve_metadata_bytes(root, block_rsv->space_info, orig_bytes,
5255 flush);
Josef Bacik5d803662013-02-07 16:06:02 -05005256 if (ret == -ENOSPC &&
5257 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
5258 struct btrfs_block_rsv *global_rsv =
5259 &root->fs_info->global_block_rsv;
5260
5261 if (block_rsv != global_rsv &&
5262 !block_rsv_use_bytes(global_rsv, orig_bytes))
5263 ret = 0;
5264 }
Jeff Mahoneycab45e22013-10-16 16:27:01 -04005265 if (ret == -ENOSPC)
5266 trace_btrfs_space_reservation(root->fs_info,
5267 "space_info:enospc",
Josef Bacik957780e2016-05-17 13:30:55 -04005268 block_rsv->space_info->flags,
5269 orig_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005270 return ret;
5271}
5272
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005273static struct btrfs_block_rsv *get_block_rsv(
5274 const struct btrfs_trans_handle *trans,
5275 const struct btrfs_root *root)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005276{
Josef Bacik4c13d752011-08-30 11:31:29 -04005277 struct btrfs_block_rsv *block_rsv = NULL;
5278
Alexandru Moisee9cf4392015-09-09 00:18:50 +00005279 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
5280 (root == root->fs_info->csum_root && trans->adding_csums) ||
5281 (root == root->fs_info->uuid_root))
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02005282 block_rsv = trans->block_rsv;
5283
Josef Bacik4c13d752011-08-30 11:31:29 -04005284 if (!block_rsv)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005285 block_rsv = root->block_rsv;
5286
5287 if (!block_rsv)
5288 block_rsv = &root->fs_info->empty_block_rsv;
5289
5290 return block_rsv;
5291}
5292
5293static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
5294 u64 num_bytes)
5295{
5296 int ret = -ENOSPC;
5297 spin_lock(&block_rsv->lock);
5298 if (block_rsv->reserved >= num_bytes) {
5299 block_rsv->reserved -= num_bytes;
5300 if (block_rsv->reserved < block_rsv->size)
5301 block_rsv->full = 0;
5302 ret = 0;
5303 }
5304 spin_unlock(&block_rsv->lock);
5305 return ret;
5306}
5307
5308static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
5309 u64 num_bytes, int update_size)
5310{
5311 spin_lock(&block_rsv->lock);
5312 block_rsv->reserved += num_bytes;
5313 if (update_size)
5314 block_rsv->size += num_bytes;
5315 else if (block_rsv->reserved >= block_rsv->size)
5316 block_rsv->full = 1;
5317 spin_unlock(&block_rsv->lock);
5318}
5319
Josef Bacikd52be812013-05-29 14:54:47 -04005320int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
5321 struct btrfs_block_rsv *dest, u64 num_bytes,
5322 int min_factor)
5323{
5324 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5325 u64 min_bytes;
5326
5327 if (global_rsv->space_info != dest->space_info)
5328 return -ENOSPC;
5329
5330 spin_lock(&global_rsv->lock);
5331 min_bytes = div_factor(global_rsv->size, min_factor);
5332 if (global_rsv->reserved < min_bytes + num_bytes) {
5333 spin_unlock(&global_rsv->lock);
5334 return -ENOSPC;
5335 }
5336 global_rsv->reserved -= num_bytes;
5337 if (global_rsv->reserved < global_rsv->size)
5338 global_rsv->full = 0;
5339 spin_unlock(&global_rsv->lock);
5340
5341 block_rsv_add_bytes(dest, num_bytes, 1);
5342 return 0;
5343}
5344
Josef Bacik957780e2016-05-17 13:30:55 -04005345/*
5346 * This is for space we already have accounted in space_info->bytes_may_use, so
5347 * basically when we're returning space from block_rsv's.
5348 */
5349static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info,
5350 struct btrfs_space_info *space_info,
5351 u64 num_bytes)
5352{
5353 struct reserve_ticket *ticket;
5354 struct list_head *head;
5355 u64 used;
5356 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_NO_FLUSH;
5357 bool check_overcommit = false;
5358
5359 spin_lock(&space_info->lock);
5360 head = &space_info->priority_tickets;
5361
5362 /*
5363 * If we are over our limit then we need to check and see if we can
5364 * overcommit, and if we can't then we just need to free up our space
5365 * and not satisfy any requests.
5366 */
5367 used = space_info->bytes_used + space_info->bytes_reserved +
5368 space_info->bytes_pinned + space_info->bytes_readonly +
5369 space_info->bytes_may_use;
5370 if (used - num_bytes >= space_info->total_bytes)
5371 check_overcommit = true;
5372again:
5373 while (!list_empty(head) && num_bytes) {
5374 ticket = list_first_entry(head, struct reserve_ticket,
5375 list);
5376 /*
5377 * We use 0 bytes because this space is already reserved, so
5378 * adding the ticket space would be a double count.
5379 */
5380 if (check_overcommit &&
5381 !can_overcommit(fs_info->extent_root, space_info, 0,
5382 flush))
5383 break;
5384 if (num_bytes >= ticket->bytes) {
5385 list_del_init(&ticket->list);
5386 num_bytes -= ticket->bytes;
5387 ticket->bytes = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005388 space_info->tickets_id++;
Josef Bacik957780e2016-05-17 13:30:55 -04005389 wake_up(&ticket->wait);
5390 } else {
5391 ticket->bytes -= num_bytes;
5392 num_bytes = 0;
5393 }
5394 }
5395
5396 if (num_bytes && head == &space_info->priority_tickets) {
5397 head = &space_info->tickets;
5398 flush = BTRFS_RESERVE_FLUSH_ALL;
5399 goto again;
5400 }
5401 space_info->bytes_may_use -= num_bytes;
5402 trace_btrfs_space_reservation(fs_info, "space_info",
5403 space_info->flags, num_bytes, 0);
5404 spin_unlock(&space_info->lock);
5405}
5406
5407/*
5408 * This is for newly allocated space that isn't accounted in
5409 * space_info->bytes_may_use yet. So if we allocate a chunk or unpin an extent
5410 * we use this helper.
5411 */
5412static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
5413 struct btrfs_space_info *space_info,
5414 u64 num_bytes)
5415{
5416 struct reserve_ticket *ticket;
5417 struct list_head *head = &space_info->priority_tickets;
5418
5419again:
5420 while (!list_empty(head) && num_bytes) {
5421 ticket = list_first_entry(head, struct reserve_ticket,
5422 list);
5423 if (num_bytes >= ticket->bytes) {
5424 trace_btrfs_space_reservation(fs_info, "space_info",
5425 space_info->flags,
5426 ticket->bytes, 1);
5427 list_del_init(&ticket->list);
5428 num_bytes -= ticket->bytes;
5429 space_info->bytes_may_use += ticket->bytes;
5430 ticket->bytes = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005431 space_info->tickets_id++;
Josef Bacik957780e2016-05-17 13:30:55 -04005432 wake_up(&ticket->wait);
5433 } else {
5434 trace_btrfs_space_reservation(fs_info, "space_info",
5435 space_info->flags,
5436 num_bytes, 1);
5437 space_info->bytes_may_use += num_bytes;
5438 ticket->bytes -= num_bytes;
5439 num_bytes = 0;
5440 }
5441 }
5442
5443 if (num_bytes && head == &space_info->priority_tickets) {
5444 head = &space_info->tickets;
5445 goto again;
5446 }
5447}
5448
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005449static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
5450 struct btrfs_block_rsv *block_rsv,
David Sterba62a45b62011-04-20 15:52:26 +02005451 struct btrfs_block_rsv *dest, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005452{
5453 struct btrfs_space_info *space_info = block_rsv->space_info;
5454
5455 spin_lock(&block_rsv->lock);
5456 if (num_bytes == (u64)-1)
5457 num_bytes = block_rsv->size;
5458 block_rsv->size -= num_bytes;
5459 if (block_rsv->reserved >= block_rsv->size) {
5460 num_bytes = block_rsv->reserved - block_rsv->size;
5461 block_rsv->reserved = block_rsv->size;
5462 block_rsv->full = 1;
5463 } else {
5464 num_bytes = 0;
5465 }
5466 spin_unlock(&block_rsv->lock);
5467
5468 if (num_bytes > 0) {
5469 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00005470 spin_lock(&dest->lock);
5471 if (!dest->full) {
5472 u64 bytes_to_add;
5473
5474 bytes_to_add = dest->size - dest->reserved;
5475 bytes_to_add = min(num_bytes, bytes_to_add);
5476 dest->reserved += bytes_to_add;
5477 if (dest->reserved >= dest->size)
5478 dest->full = 1;
5479 num_bytes -= bytes_to_add;
5480 }
5481 spin_unlock(&dest->lock);
5482 }
Josef Bacik957780e2016-05-17 13:30:55 -04005483 if (num_bytes)
5484 space_info_add_old_bytes(fs_info, space_info,
5485 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005486 }
5487}
5488
Josef Bacik25d609f2016-03-25 13:25:48 -04005489int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src,
5490 struct btrfs_block_rsv *dst, u64 num_bytes,
5491 int update_size)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005492{
5493 int ret;
5494
5495 ret = block_rsv_use_bytes(src, num_bytes);
5496 if (ret)
5497 return ret;
5498
Josef Bacik25d609f2016-03-25 13:25:48 -04005499 block_rsv_add_bytes(dst, num_bytes, update_size);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005500 return 0;
5501}
5502
Miao Xie66d8f3d2012-09-06 04:02:28 -06005503void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005504{
5505 memset(rsv, 0, sizeof(*rsv));
5506 spin_lock_init(&rsv->lock);
Miao Xie66d8f3d2012-09-06 04:02:28 -06005507 rsv->type = type;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005508}
5509
Miao Xie66d8f3d2012-09-06 04:02:28 -06005510struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root,
5511 unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005512{
5513 struct btrfs_block_rsv *block_rsv;
5514 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005515
5516 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
5517 if (!block_rsv)
5518 return NULL;
5519
Miao Xie66d8f3d2012-09-06 04:02:28 -06005520 btrfs_init_block_rsv(block_rsv, type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005521 block_rsv->space_info = __find_space_info(fs_info,
5522 BTRFS_BLOCK_GROUP_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005523 return block_rsv;
5524}
5525
5526void btrfs_free_block_rsv(struct btrfs_root *root,
5527 struct btrfs_block_rsv *rsv)
5528{
Josef Bacik2aaa6652012-08-29 14:27:18 -04005529 if (!rsv)
5530 return;
Josef Bacikdabdb642011-08-08 12:50:18 -04005531 btrfs_block_rsv_release(root, rsv, (u64)-1);
5532 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005533}
5534
Chris Masoncdfb0802015-04-06 18:17:00 -07005535void __btrfs_free_block_rsv(struct btrfs_block_rsv *rsv)
5536{
5537 kfree(rsv);
5538}
5539
Miao Xie08e007d2012-10-16 11:33:38 +00005540int btrfs_block_rsv_add(struct btrfs_root *root,
5541 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
5542 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005543{
5544 int ret;
5545
5546 if (num_bytes == 0)
5547 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005548
Miao Xie61b520a2011-11-10 20:45:05 -05005549 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005550 if (!ret) {
5551 block_rsv_add_bytes(block_rsv, num_bytes, 1);
5552 return 0;
5553 }
5554
Yan, Zhengf0486c62010-05-16 10:46:25 -04005555 return ret;
5556}
5557
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005558int btrfs_block_rsv_check(struct btrfs_root *root,
Josef Bacik36ba0222011-10-18 12:15:48 -04005559 struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005560{
5561 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005562 int ret = -ENOSPC;
5563
5564 if (!block_rsv)
5565 return 0;
5566
5567 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04005568 num_bytes = div_factor(block_rsv->size, min_factor);
5569 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005570 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005571 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005572
Josef Bacik36ba0222011-10-18 12:15:48 -04005573 return ret;
5574}
5575
Miao Xie08e007d2012-10-16 11:33:38 +00005576int btrfs_block_rsv_refill(struct btrfs_root *root,
5577 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
5578 enum btrfs_reserve_flush_enum flush)
Josef Bacik36ba0222011-10-18 12:15:48 -04005579{
5580 u64 num_bytes = 0;
5581 int ret = -ENOSPC;
5582
5583 if (!block_rsv)
5584 return 0;
5585
5586 spin_lock(&block_rsv->lock);
5587 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04005588 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005589 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04005590 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04005591 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005592 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04005593
Yan, Zhengf0486c62010-05-16 10:46:25 -04005594 if (!ret)
5595 return 0;
5596
Miao Xieaa38a712011-11-18 17:43:00 +08005597 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Josef Bacikdabdb642011-08-08 12:50:18 -04005598 if (!ret) {
5599 block_rsv_add_bytes(block_rsv, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005600 return 0;
5601 }
5602
Josef Bacik13553e52011-08-08 13:33:21 -04005603 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005604}
5605
Yan, Zhengf0486c62010-05-16 10:46:25 -04005606void btrfs_block_rsv_release(struct btrfs_root *root,
5607 struct btrfs_block_rsv *block_rsv,
5608 u64 num_bytes)
5609{
5610 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Liu Bo17504582013-12-29 21:44:50 +08005611 if (global_rsv == block_rsv ||
Yan, Zhengf0486c62010-05-16 10:46:25 -04005612 block_rsv->space_info != global_rsv->space_info)
5613 global_rsv = NULL;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005614 block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv,
5615 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005616}
5617
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005618static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
5619{
5620 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
5621 struct btrfs_space_info *sinfo = block_rsv->space_info;
5622 u64 num_bytes;
5623
Josef Bacikae2e4722016-05-27 12:58:35 -04005624 /*
5625 * The global block rsv is based on the size of the extent tree, the
5626 * checksum tree and the root tree. If the fs is empty we want to set
5627 * it to a minimal amount for safety.
5628 */
5629 num_bytes = btrfs_root_used(&fs_info->extent_root->root_item) +
5630 btrfs_root_used(&fs_info->csum_root->root_item) +
5631 btrfs_root_used(&fs_info->tree_root->root_item);
5632 num_bytes = max_t(u64, num_bytes, SZ_16M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005633
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005634 spin_lock(&sinfo->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005635 spin_lock(&block_rsv->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005636
Byongho Leeee221842015-12-15 01:42:10 +09005637 block_rsv->size = min_t(u64, num_bytes, SZ_512M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005638
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005639 if (block_rsv->reserved < block_rsv->size) {
5640 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
5641 sinfo->bytes_reserved + sinfo->bytes_readonly +
5642 sinfo->bytes_may_use;
5643 if (sinfo->total_bytes > num_bytes) {
5644 num_bytes = sinfo->total_bytes - num_bytes;
5645 num_bytes = min(num_bytes,
5646 block_rsv->size - block_rsv->reserved);
5647 block_rsv->reserved += num_bytes;
5648 sinfo->bytes_may_use += num_bytes;
5649 trace_btrfs_space_reservation(fs_info, "space_info",
5650 sinfo->flags, num_bytes,
5651 1);
5652 }
5653 } else if (block_rsv->reserved > block_rsv->size) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005654 num_bytes = block_rsv->reserved - block_rsv->size;
Josef Bacikfb25e912011-07-26 17:00:46 -04005655 sinfo->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005656 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04005657 sinfo->flags, num_bytes, 0);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005658 block_rsv->reserved = block_rsv->size;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005659 }
David Sterba182608c2011-05-05 13:13:16 +02005660
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005661 if (block_rsv->reserved == block_rsv->size)
5662 block_rsv->full = 1;
5663 else
5664 block_rsv->full = 0;
5665
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005666 spin_unlock(&block_rsv->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005667 spin_unlock(&sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005668}
5669
Yan, Zhengf0486c62010-05-16 10:46:25 -04005670static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
5671{
5672 struct btrfs_space_info *space_info;
5673
5674 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
5675 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005676
5677 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005678 fs_info->global_block_rsv.space_info = space_info;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005679 fs_info->delalloc_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005680 fs_info->trans_block_rsv.space_info = space_info;
5681 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04005682 fs_info->delayed_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005683
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005684 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
5685 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
5686 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
5687 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Stefan Behrens3a6cad92013-05-16 14:48:19 +00005688 if (fs_info->quota_root)
5689 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005690 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005691
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005692 update_global_block_rsv(fs_info);
5693}
5694
5695static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
5696{
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005697 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
5698 (u64)-1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005699 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
5700 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
5701 WARN_ON(fs_info->trans_block_rsv.size > 0);
5702 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
5703 WARN_ON(fs_info->chunk_block_rsv.size > 0);
5704 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04005705 WARN_ON(fs_info->delayed_block_rsv.size > 0);
5706 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04005707}
5708
Yan, Zhenga22285a2010-05-16 10:48:46 -04005709void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
5710 struct btrfs_root *root)
5711{
Josef Bacik0e721102012-06-26 16:13:18 -04005712 if (!trans->block_rsv)
5713 return;
5714
Yan, Zhenga22285a2010-05-16 10:48:46 -04005715 if (!trans->bytes_reserved)
5716 return;
5717
Chris Masone77266e2012-02-24 10:39:05 -05005718 trace_btrfs_space_reservation(root->fs_info, "transaction",
Liu Bo2bcc0322012-03-29 09:57:44 -04005719 trans->transid, trans->bytes_reserved, 0);
Josef Bacikb24e03d2011-10-14 14:40:17 -04005720 btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005721 trans->bytes_reserved = 0;
5722}
5723
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005724/*
5725 * To be called after all the new block groups attached to the transaction
5726 * handle have been created (btrfs_create_pending_block_groups()).
5727 */
5728void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
5729{
Jeff Mahoney64b63582016-06-20 17:23:41 -04005730 struct btrfs_fs_info *fs_info = trans->fs_info;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005731
5732 if (!trans->chunk_bytes_reserved)
5733 return;
5734
5735 WARN_ON_ONCE(!list_empty(&trans->new_bgs));
5736
5737 block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL,
5738 trans->chunk_bytes_reserved);
5739 trans->chunk_bytes_reserved = 0;
5740}
5741
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005742/* Can only return 0 or -ENOSPC */
Yan, Zhengd68fc572010-05-16 10:49:58 -04005743int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
5744 struct inode *inode)
5745{
5746 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik40acc3ee2016-05-27 13:01:08 -04005747 /*
5748 * We always use trans->block_rsv here as we will have reserved space
5749 * for our orphan when starting the transaction, using get_block_rsv()
5750 * here will sometimes make us choose the wrong block rsv as we could be
5751 * doing a reloc inode for a non refcounted root.
5752 */
5753 struct btrfs_block_rsv *src_rsv = trans->block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04005754 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
5755
5756 /*
Josef Bacikfcb80c22011-05-03 10:40:22 -04005757 * We need to hold space in order to delete our orphan item once we've
5758 * added it, so this takes the reservation so we can release it later
5759 * when we are truly done with the orphan item.
Yan, Zhengd68fc572010-05-16 10:49:58 -04005760 */
Chris Masonff5714c2011-05-28 07:00:39 -04005761 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005762 trace_btrfs_space_reservation(root->fs_info, "orphan",
5763 btrfs_ino(inode), num_bytes, 1);
Josef Bacik25d609f2016-03-25 13:25:48 -04005764 return btrfs_block_rsv_migrate(src_rsv, dst_rsv, num_bytes, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04005765}
5766
5767void btrfs_orphan_release_metadata(struct inode *inode)
5768{
5769 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonff5714c2011-05-28 07:00:39 -04005770 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005771 trace_btrfs_space_reservation(root->fs_info, "orphan",
5772 btrfs_ino(inode), num_bytes, 0);
Yan, Zhengd68fc572010-05-16 10:49:58 -04005773 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
5774}
5775
Miao Xied5c12072013-02-28 10:04:33 +00005776/*
5777 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
5778 * root: the root of the parent directory
5779 * rsv: block reservation
5780 * items: the number of items that we need do reservation
5781 * qgroup_reserved: used to return the reserved size in qgroup
5782 *
5783 * This function is used to reserve the space for snapshot/subvolume
5784 * creation and deletion. Those operations are different with the
5785 * common file/directory operations, they change two fs/file trees
5786 * and root tree, the number of items that the qgroup reserves is
5787 * different with the free space reservation. So we can not use
Nicholas D Steeves01327612016-05-19 21:18:45 -04005788 * the space reservation mechanism in start_transaction().
Miao Xied5c12072013-02-28 10:04:33 +00005789 */
5790int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
5791 struct btrfs_block_rsv *rsv,
5792 int items,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005793 u64 *qgroup_reserved,
5794 bool use_global_rsv)
Yan, Zhenga22285a2010-05-16 10:48:46 -04005795{
Miao Xied5c12072013-02-28 10:04:33 +00005796 u64 num_bytes;
5797 int ret;
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005798 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Miao Xied5c12072013-02-28 10:04:33 +00005799
Josef Bacikafcdd122016-09-02 15:40:02 -04005800 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &root->fs_info->flags)) {
Miao Xied5c12072013-02-28 10:04:33 +00005801 /* One for parent inode, two for dir entries */
David Sterba707e8a02014-06-04 19:22:26 +02005802 num_bytes = 3 * root->nodesize;
Qu Wenruo71741092015-09-08 17:22:41 +08005803 ret = btrfs_qgroup_reserve_meta(root, num_bytes);
Miao Xied5c12072013-02-28 10:04:33 +00005804 if (ret)
5805 return ret;
5806 } else {
5807 num_bytes = 0;
5808 }
5809
5810 *qgroup_reserved = num_bytes;
5811
5812 num_bytes = btrfs_calc_trans_metadata_size(root, items);
5813 rsv->space_info = __find_space_info(root->fs_info,
5814 BTRFS_BLOCK_GROUP_METADATA);
5815 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
5816 BTRFS_RESERVE_FLUSH_ALL);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005817
5818 if (ret == -ENOSPC && use_global_rsv)
Josef Bacik25d609f2016-03-25 13:25:48 -04005819 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes, 1);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005820
Qu Wenruo71741092015-09-08 17:22:41 +08005821 if (ret && *qgroup_reserved)
5822 btrfs_qgroup_free_meta(root, *qgroup_reserved);
Miao Xied5c12072013-02-28 10:04:33 +00005823
5824 return ret;
5825}
5826
5827void btrfs_subvolume_release_metadata(struct btrfs_root *root,
5828 struct btrfs_block_rsv *rsv,
5829 u64 qgroup_reserved)
5830{
5831 btrfs_block_rsv_release(root, rsv, (u64)-1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005832}
5833
Josef Bacik7709cde2011-08-04 10:25:02 -04005834/**
5835 * drop_outstanding_extent - drop an outstanding extent
5836 * @inode: the inode we're dropping the extent for
Nicholas D Steeves01327612016-05-19 21:18:45 -04005837 * @num_bytes: the number of bytes we're releasing.
Josef Bacik7709cde2011-08-04 10:25:02 -04005838 *
5839 * This is called when we are freeing up an outstanding extent, either called
5840 * after an error or after an extent is written. This will return the number of
5841 * reserved extents that need to be freed. This must be called with
5842 * BTRFS_I(inode)->lock held.
5843 */
Josef Bacikdcab6a32015-02-11 15:08:59 -05005844static unsigned drop_outstanding_extent(struct inode *inode, u64 num_bytes)
Josef Bacik9e0baf62011-07-15 15:16:44 +00005845{
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005846 unsigned drop_inode_space = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005847 unsigned dropped_extents = 0;
Josef Bacikdcab6a32015-02-11 15:08:59 -05005848 unsigned num_extents = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005849
Josef Bacikdcab6a32015-02-11 15:08:59 -05005850 num_extents = (unsigned)div64_u64(num_bytes +
5851 BTRFS_MAX_EXTENT_SIZE - 1,
5852 BTRFS_MAX_EXTENT_SIZE);
5853 ASSERT(num_extents);
5854 ASSERT(BTRFS_I(inode)->outstanding_extents >= num_extents);
5855 BTRFS_I(inode)->outstanding_extents -= num_extents;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005856
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005857 if (BTRFS_I(inode)->outstanding_extents == 0 &&
Josef Bacik72ac3c02012-05-23 14:13:11 -04005858 test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5859 &BTRFS_I(inode)->runtime_flags))
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005860 drop_inode_space = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005861
Josef Bacik9e0baf62011-07-15 15:16:44 +00005862 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005863 * If we have more or the same amount of outstanding extents than we have
Josef Bacik9e0baf62011-07-15 15:16:44 +00005864 * reserved then we need to leave the reserved extents count alone.
5865 */
5866 if (BTRFS_I(inode)->outstanding_extents >=
5867 BTRFS_I(inode)->reserved_extents)
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005868 return drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005869
5870 dropped_extents = BTRFS_I(inode)->reserved_extents -
5871 BTRFS_I(inode)->outstanding_extents;
5872 BTRFS_I(inode)->reserved_extents -= dropped_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005873 return dropped_extents + drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005874}
5875
Josef Bacik7709cde2011-08-04 10:25:02 -04005876/**
Nicholas D Steeves01327612016-05-19 21:18:45 -04005877 * calc_csum_metadata_size - return the amount of metadata space that must be
5878 * reserved/freed for the given bytes.
Josef Bacik7709cde2011-08-04 10:25:02 -04005879 * @inode: the inode we're manipulating
5880 * @num_bytes: the number of bytes in question
5881 * @reserve: 1 if we are reserving space, 0 if we are freeing space
5882 *
5883 * This adjusts the number of csum_bytes in the inode and then returns the
5884 * correct amount of metadata that must either be reserved or freed. We
5885 * calculate how many checksums we can fit into one leaf and then divide the
5886 * number of bytes that will need to be checksumed by this value to figure out
5887 * how many checksums will be required. If we are adding bytes then the number
5888 * may go up and we will return the number of additional bytes that must be
5889 * reserved. If it is going down we will return the number of bytes that must
5890 * be freed.
5891 *
5892 * This must be called with BTRFS_I(inode)->lock held.
5893 */
5894static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes,
5895 int reserve)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005896{
Josef Bacik7709cde2011-08-04 10:25:02 -04005897 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik12621332015-02-03 07:50:16 -08005898 u64 old_csums, num_csums;
Josef Bacik7709cde2011-08-04 10:25:02 -04005899
5900 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM &&
5901 BTRFS_I(inode)->csum_bytes == 0)
5902 return 0;
5903
Chris Mason28f75a02015-02-04 06:59:29 -08005904 old_csums = btrfs_csum_bytes_to_leaves(root, BTRFS_I(inode)->csum_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04005905 if (reserve)
5906 BTRFS_I(inode)->csum_bytes += num_bytes;
5907 else
5908 BTRFS_I(inode)->csum_bytes -= num_bytes;
Chris Mason28f75a02015-02-04 06:59:29 -08005909 num_csums = btrfs_csum_bytes_to_leaves(root, BTRFS_I(inode)->csum_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04005910
5911 /* No change, no need to reserve more */
5912 if (old_csums == num_csums)
5913 return 0;
5914
5915 if (reserve)
5916 return btrfs_calc_trans_metadata_size(root,
5917 num_csums - old_csums);
5918
5919 return btrfs_calc_trans_metadata_size(root, old_csums - num_csums);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005920}
5921
5922int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
5923{
5924 struct btrfs_root *root = BTRFS_I(inode)->root;
5925 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005926 u64 to_reserve = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05005927 u64 csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005928 unsigned nr_extents = 0;
Miao Xie08e007d2012-10-16 11:33:38 +00005929 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
Jan Schmidteb6b88d2013-01-27 23:26:00 -07005930 int ret = 0;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005931 bool delalloc_lock = true;
Wang Shilong88e081bf2013-03-01 11:36:01 +00005932 u64 to_free = 0;
5933 unsigned dropped;
Josef Bacik48c3d482016-03-25 13:25:49 -04005934 bool release_extra = false;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005935
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005936 /* If we are a free space inode we need to not flush since we will be in
5937 * the middle of a transaction commit. We also don't need the delalloc
5938 * mutex since we won't race with anybody. We need this mostly to make
5939 * lockdep shut its filthy mouth.
Josef Bacikbac357dc2016-07-20 16:48:45 -07005940 *
5941 * If we have a transaction open (can happen if we call truncate_block
5942 * from truncate), then we need FLUSH_LIMIT so we don't deadlock.
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005943 */
5944 if (btrfs_is_free_space_inode(inode)) {
Miao Xie08e007d2012-10-16 11:33:38 +00005945 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005946 delalloc_lock = false;
Josef Bacikbac357dc2016-07-20 16:48:45 -07005947 } else if (current->journal_info) {
5948 flush = BTRFS_RESERVE_FLUSH_LIMIT;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005949 }
Josef Bacikc09544e2011-08-30 10:19:10 -04005950
Miao Xie08e007d2012-10-16 11:33:38 +00005951 if (flush != BTRFS_RESERVE_NO_FLUSH &&
5952 btrfs_transaction_in_commit(root->fs_info))
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005953 schedule_timeout(1);
5954
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005955 if (delalloc_lock)
5956 mutex_lock(&BTRFS_I(inode)->delalloc_mutex);
5957
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005958 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005959
Josef Bacik9e0baf62011-07-15 15:16:44 +00005960 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik6a41dd02015-03-13 15:12:23 -04005961 nr_extents = (unsigned)div64_u64(num_bytes +
5962 BTRFS_MAX_EXTENT_SIZE - 1,
5963 BTRFS_MAX_EXTENT_SIZE);
5964 BTRFS_I(inode)->outstanding_extents += nr_extents;
Josef Bacik57a45ced2011-01-25 16:30:38 -05005965
Josef Bacik48c3d482016-03-25 13:25:49 -04005966 nr_extents = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005967 if (BTRFS_I(inode)->outstanding_extents >
Josef Bacik660d3f62011-12-09 11:18:51 -05005968 BTRFS_I(inode)->reserved_extents)
Josef Bacik48c3d482016-03-25 13:25:49 -04005969 nr_extents += BTRFS_I(inode)->outstanding_extents -
Josef Bacik9e0baf62011-07-15 15:16:44 +00005970 BTRFS_I(inode)->reserved_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005971
Josef Bacik48c3d482016-03-25 13:25:49 -04005972 /* We always want to reserve a slot for updating the inode. */
5973 to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents + 1);
Josef Bacik7709cde2011-08-04 10:25:02 -04005974 to_reserve += calc_csum_metadata_size(inode, num_bytes, 1);
Josef Bacik660d3f62011-12-09 11:18:51 -05005975 csum_bytes = BTRFS_I(inode)->csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005976 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05005977
Josef Bacikafcdd122016-09-02 15:40:02 -04005978 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &root->fs_info->flags)) {
Qu Wenruo71741092015-09-08 17:22:41 +08005979 ret = btrfs_qgroup_reserve_meta(root,
5980 nr_extents * root->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005981 if (ret)
5982 goto out_fail;
Wang Shilonga9870c02013-03-01 11:33:01 +00005983 }
Arne Jansenc5567232011-09-14 15:44:05 +02005984
Josef Bacik48c3d482016-03-25 13:25:49 -04005985 ret = btrfs_block_rsv_add(root, block_rsv, to_reserve, flush);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005986 if (unlikely(ret)) {
Qu Wenruo71741092015-09-08 17:22:41 +08005987 btrfs_qgroup_free_meta(root, nr_extents * root->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005988 goto out_fail;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005989 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005990
Josef Bacik660d3f62011-12-09 11:18:51 -05005991 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik48c3d482016-03-25 13:25:49 -04005992 if (test_and_set_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
Josef Bacikf485c9e2016-03-25 13:25:55 -04005993 &BTRFS_I(inode)->runtime_flags)) {
5994 to_reserve -= btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik48c3d482016-03-25 13:25:49 -04005995 release_extra = true;
Josef Bacik660d3f62011-12-09 11:18:51 -05005996 }
5997 BTRFS_I(inode)->reserved_extents += nr_extents;
5998 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005999
6000 if (delalloc_lock)
6001 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
Josef Bacik660d3f62011-12-09 11:18:51 -05006002
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006003 if (to_reserve)
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05306004 trace_btrfs_space_reservation(root->fs_info, "delalloc",
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006005 btrfs_ino(inode), to_reserve, 1);
Josef Bacik48c3d482016-03-25 13:25:49 -04006006 if (release_extra)
6007 btrfs_block_rsv_release(root, block_rsv,
6008 btrfs_calc_trans_metadata_size(root,
6009 1));
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006010 return 0;
Wang Shilong88e081bf2013-03-01 11:36:01 +00006011
6012out_fail:
6013 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacikdcab6a32015-02-11 15:08:59 -05006014 dropped = drop_outstanding_extent(inode, num_bytes);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006015 /*
6016 * If the inodes csum_bytes is the same as the original
6017 * csum_bytes then we know we haven't raced with any free()ers
6018 * so we can just reduce our inodes csum bytes and carry on.
Wang Shilong88e081bf2013-03-01 11:36:01 +00006019 */
Josef Bacikf4881bc2013-03-25 16:03:35 -04006020 if (BTRFS_I(inode)->csum_bytes == csum_bytes) {
Wang Shilong88e081bf2013-03-01 11:36:01 +00006021 calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacikf4881bc2013-03-25 16:03:35 -04006022 } else {
6023 u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes;
6024 u64 bytes;
6025
6026 /*
6027 * This is tricky, but first we need to figure out how much we
Nicholas D Steeves01327612016-05-19 21:18:45 -04006028 * freed from any free-ers that occurred during this
Josef Bacikf4881bc2013-03-25 16:03:35 -04006029 * reservation, so we reset ->csum_bytes to the csum_bytes
6030 * before we dropped our lock, and then call the free for the
6031 * number of bytes that were freed while we were trying our
6032 * reservation.
6033 */
6034 bytes = csum_bytes - BTRFS_I(inode)->csum_bytes;
6035 BTRFS_I(inode)->csum_bytes = csum_bytes;
6036 to_free = calc_csum_metadata_size(inode, bytes, 0);
6037
6038
6039 /*
6040 * Now we need to see how much we would have freed had we not
6041 * been making this reservation and our ->csum_bytes were not
6042 * artificially inflated.
6043 */
6044 BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes;
6045 bytes = csum_bytes - orig_csum_bytes;
6046 bytes = calc_csum_metadata_size(inode, bytes, 0);
6047
6048 /*
6049 * Now reset ->csum_bytes to what it should be. If bytes is
Nicholas D Steeves01327612016-05-19 21:18:45 -04006050 * more than to_free then we would have freed more space had we
Josef Bacikf4881bc2013-03-25 16:03:35 -04006051 * not had an artificially high ->csum_bytes, so we need to free
6052 * the remainder. If bytes is the same or less then we don't
6053 * need to do anything, the other free-ers did the correct
6054 * thing.
6055 */
6056 BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes;
6057 if (bytes > to_free)
6058 to_free = bytes - to_free;
6059 else
6060 to_free = 0;
6061 }
Wang Shilong88e081bf2013-03-01 11:36:01 +00006062 spin_unlock(&BTRFS_I(inode)->lock);
Dongsheng Yange2d1f922015-02-06 10:26:52 -05006063 if (dropped)
Wang Shilong88e081bf2013-03-01 11:36:01 +00006064 to_free += btrfs_calc_trans_metadata_size(root, dropped);
6065
6066 if (to_free) {
6067 btrfs_block_rsv_release(root, block_rsv, to_free);
6068 trace_btrfs_space_reservation(root->fs_info, "delalloc",
6069 btrfs_ino(inode), to_free, 0);
6070 }
6071 if (delalloc_lock)
6072 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
6073 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006074}
6075
Josef Bacik7709cde2011-08-04 10:25:02 -04006076/**
6077 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
6078 * @inode: the inode to release the reservation for
6079 * @num_bytes: the number of bytes we're releasing
6080 *
6081 * This will release the metadata reservation for an inode. This can be called
6082 * once we complete IO for a given set of bytes to release their metadata
6083 * reservations.
6084 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006085void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
6086{
6087 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik9e0baf62011-07-15 15:16:44 +00006088 u64 to_free = 0;
6089 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006090
6091 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik7709cde2011-08-04 10:25:02 -04006092 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacikdcab6a32015-02-11 15:08:59 -05006093 dropped = drop_outstanding_extent(inode, num_bytes);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006094
Miao Xie09348562013-02-07 10:12:07 +00006095 if (num_bytes)
6096 to_free = calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacik7709cde2011-08-04 10:25:02 -04006097 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00006098 if (dropped > 0)
6099 to_free += btrfs_calc_trans_metadata_size(root, dropped);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006100
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -04006101 if (btrfs_is_testing(root->fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04006102 return;
6103
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006104 trace_btrfs_space_reservation(root->fs_info, "delalloc",
6105 btrfs_ino(inode), to_free, 0);
Arne Jansenc5567232011-09-14 15:44:05 +02006106
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006107 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
6108 to_free);
6109}
6110
Josef Bacik7709cde2011-08-04 10:25:02 -04006111/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006112 * btrfs_delalloc_reserve_space - reserve data and metadata space for
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006113 * delalloc
6114 * @inode: inode we're writing to
6115 * @start: start range we are writing to
6116 * @len: how long the range we are writing to
6117 *
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006118 * This will do the following things
6119 *
6120 * o reserve space in data space info for num bytes
6121 * and reserve precious corresponding qgroup space
6122 * (Done in check_data_free_space)
6123 *
6124 * o reserve space for metadata space, based on the number of outstanding
6125 * extents and how much csums will be needed
6126 * also reserve metadata space in a per root over-reserve method.
6127 * o add to the inodes->delalloc_bytes
6128 * o add it to the fs_info's delalloc inodes list.
6129 * (Above 3 all done in delalloc_reserve_metadata)
6130 *
6131 * Return 0 for success
6132 * Return <0 for error(-ENOSPC or -EQUOT)
6133 */
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006134int btrfs_delalloc_reserve_space(struct inode *inode, u64 start, u64 len)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006135{
6136 int ret;
6137
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006138 ret = btrfs_check_data_free_space(inode, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006139 if (ret < 0)
6140 return ret;
6141 ret = btrfs_delalloc_reserve_metadata(inode, len);
6142 if (ret < 0)
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006143 btrfs_free_reserved_data_space(inode, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006144 return ret;
6145}
6146
6147/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006148 * btrfs_delalloc_release_space - release data and metadata space for delalloc
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006149 * @inode: inode we're releasing space for
6150 * @start: start position of the space already reserved
6151 * @len: the len of the space already reserved
6152 *
6153 * This must be matched with a call to btrfs_delalloc_reserve_space. This is
6154 * called in the case that we don't need the metadata AND data reservations
6155 * anymore. So if there is an error or we insert an inline extent.
6156 *
6157 * This function will release the metadata space that was not used and will
6158 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
6159 * list if there are no delalloc bytes left.
6160 * Also it will handle the qgroup reserved space.
6161 */
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006162void btrfs_delalloc_release_space(struct inode *inode, u64 start, u64 len)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006163{
6164 btrfs_delalloc_release_metadata(inode, len);
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006165 btrfs_free_reserved_data_space(inode, start, len);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006166}
6167
Josef Bacikce93ec52014-11-17 15:45:48 -05006168static int update_block_group(struct btrfs_trans_handle *trans,
6169 struct btrfs_root *root, u64 bytenr,
6170 u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04006171{
Josef Bacik0af3d002010-06-21 14:48:16 -04006172 struct btrfs_block_group_cache *cache = NULL;
Chris Mason9078a3e2007-04-26 16:46:15 -04006173 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04006174 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006175 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04006176 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04006177 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04006178
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006179 /* block accounting for super block */
Miao Xieeb73c1b2013-05-15 07:48:22 +00006180 spin_lock(&info->delalloc_root_lock);
David Sterba6c417612011-04-13 15:41:04 +02006181 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006182 if (alloc)
6183 old_val += num_bytes;
6184 else
6185 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02006186 btrfs_set_super_bytes_used(info->super_copy, old_val);
Miao Xieeb73c1b2013-05-15 07:48:22 +00006187 spin_unlock(&info->delalloc_root_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006188
Chris Masond3977122009-01-05 21:25:51 -05006189 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04006190 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05006191 if (!cache)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006192 return -ENOENT;
Yan, Zhengb742bb82010-05-16 10:46:24 -04006193 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
6194 BTRFS_BLOCK_GROUP_RAID1 |
6195 BTRFS_BLOCK_GROUP_RAID10))
6196 factor = 2;
6197 else
6198 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04006199 /*
6200 * If this block group has free space cache written out, we
6201 * need to make sure to load it if we are removing space. This
6202 * is because we need the unpinning stage to actually add the
6203 * space back to the block group, otherwise we will leak space.
6204 */
6205 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Liu Bof6373bf2012-12-27 09:01:18 +00006206 cache_block_group(cache, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04006207
Chris Masondb945352007-10-15 16:15:53 -04006208 byte_in_group = bytenr - cache->key.objectid;
6209 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04006210
Josef Bacik25179202008-10-29 14:49:05 -04006211 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04006212 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04006213
Jeff Mahoney3cdde222016-06-09 21:38:35 -04006214 if (btrfs_test_opt(root->fs_info, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04006215 cache->disk_cache_state < BTRFS_DC_CLEAR)
6216 cache->disk_cache_state = BTRFS_DC_CLEAR;
6217
Chris Mason9078a3e2007-04-26 16:46:15 -04006218 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04006219 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04006220 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04006221 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006222 btrfs_set_block_group_used(&cache->item, old_val);
6223 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006224 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04006225 cache->space_info->bytes_used += num_bytes;
6226 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04006227 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006228 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04006229 } else {
Chris Masondb945352007-10-15 16:15:53 -04006230 old_val -= num_bytes;
Filipe Mananaae0ab002014-11-26 15:28:52 +00006231 btrfs_set_block_group_used(&cache->item, old_val);
6232 cache->pinned += num_bytes;
6233 cache->space_info->bytes_pinned += num_bytes;
6234 cache->space_info->bytes_used -= num_bytes;
6235 cache->space_info->disk_used -= num_bytes * factor;
6236 spin_unlock(&cache->lock);
6237 spin_unlock(&cache->space_info->lock);
Josef Bacik47ab2a62014-09-18 11:20:02 -04006238
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006239 trace_btrfs_space_reservation(root->fs_info, "pinned",
6240 cache->space_info->flags,
6241 num_bytes, 1);
Filipe Mananaae0ab002014-11-26 15:28:52 +00006242 set_extent_dirty(info->pinned_extents,
6243 bytenr, bytenr + num_bytes - 1,
6244 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04006245 }
Chris Mason1bbc6212015-04-06 12:46:08 -07006246
6247 spin_lock(&trans->transaction->dirty_bgs_lock);
6248 if (list_empty(&cache->dirty_list)) {
6249 list_add_tail(&cache->dirty_list,
6250 &trans->transaction->dirty_bgs);
6251 trans->transaction->num_dirty_bgs++;
6252 btrfs_get_block_group(cache);
6253 }
6254 spin_unlock(&trans->transaction->dirty_bgs_lock);
6255
Filipe Manana036a9342015-11-23 15:25:16 +00006256 /*
6257 * No longer have used bytes in this block group, queue it for
6258 * deletion. We do this after adding the block group to the
6259 * dirty list to avoid races between cleaner kthread and space
6260 * cache writeout.
6261 */
6262 if (!alloc && old_val == 0) {
6263 spin_lock(&info->unused_bgs_lock);
6264 if (list_empty(&cache->bg_list)) {
6265 btrfs_get_block_group(cache);
6266 list_add_tail(&cache->bg_list,
6267 &info->unused_bgs);
6268 }
6269 spin_unlock(&info->unused_bgs_lock);
6270 }
6271
Chris Masonfa9c0d792009-04-03 09:47:43 -04006272 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04006273 total -= num_bytes;
6274 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006275 }
6276 return 0;
6277}
Chris Mason6324fbf2008-03-24 15:01:59 -04006278
Chris Masona061fc82008-05-07 11:43:44 -04006279static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
6280{
Josef Bacik0f9dd462008-09-23 13:14:11 -04006281 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05006282 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006283
Liu Boa1897fd2012-12-27 09:01:23 +00006284 spin_lock(&root->fs_info->block_group_cache_lock);
6285 bytenr = root->fs_info->first_logical_byte;
6286 spin_unlock(&root->fs_info->block_group_cache_lock);
6287
6288 if (bytenr < (u64)-1)
6289 return bytenr;
6290
Josef Bacik0f9dd462008-09-23 13:14:11 -04006291 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
6292 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04006293 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006294
Yan Zhengd2fb3432008-12-11 16:30:39 -05006295 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006296 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05006297
6298 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04006299}
6300
Yan, Zhengf0486c62010-05-16 10:46:25 -04006301static int pin_down_extent(struct btrfs_root *root,
6302 struct btrfs_block_group_cache *cache,
6303 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05006304{
Yan Zheng11833d62009-09-11 16:11:19 -04006305 spin_lock(&cache->space_info->lock);
6306 spin_lock(&cache->lock);
6307 cache->pinned += num_bytes;
6308 cache->space_info->bytes_pinned += num_bytes;
6309 if (reserved) {
6310 cache->reserved -= num_bytes;
6311 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05006312 }
Yan Zheng11833d62009-09-11 16:11:19 -04006313 spin_unlock(&cache->lock);
6314 spin_unlock(&cache->space_info->lock);
6315
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006316 trace_btrfs_space_reservation(root->fs_info, "pinned",
6317 cache->space_info->flags, num_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006318 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
6319 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Yan324ae4d2007-11-16 14:57:08 -05006320 return 0;
6321}
Chris Mason9078a3e2007-04-26 16:46:15 -04006322
Yan, Zhengf0486c62010-05-16 10:46:25 -04006323/*
6324 * this function must be called within transaction
6325 */
6326int btrfs_pin_extent(struct btrfs_root *root,
6327 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04006328{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006329 struct btrfs_block_group_cache *cache;
6330
6331 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006332 BUG_ON(!cache); /* Logic error */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006333
6334 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
6335
6336 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04006337 return 0;
6338}
Zheng Yane8569812008-09-26 10:05:48 -04006339
Yan, Zhengf0486c62010-05-16 10:46:25 -04006340/*
Chris Masone688b7252011-10-31 20:52:39 -04006341 * this function must be called within transaction
Yan, Zhengf0486c62010-05-16 10:46:25 -04006342 */
Liu Bodcfac412012-12-27 09:01:20 +00006343int btrfs_pin_extent_for_log_replay(struct btrfs_root *root,
Chris Masone688b7252011-10-31 20:52:39 -04006344 u64 bytenr, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006345{
Chris Masone688b7252011-10-31 20:52:39 -04006346 struct btrfs_block_group_cache *cache;
Josef Bacikb50c6e22013-04-25 15:55:30 -04006347 int ret;
Chris Masone688b7252011-10-31 20:52:39 -04006348
6349 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006350 if (!cache)
6351 return -EINVAL;
Chris Masone688b7252011-10-31 20:52:39 -04006352
6353 /*
6354 * pull in the free space cache (if any) so that our pin
6355 * removes the free space from the cache. We have load_only set
6356 * to one because the slow code to read in the free extents does check
6357 * the pinned extents.
6358 */
Liu Bof6373bf2012-12-27 09:01:18 +00006359 cache_block_group(cache, 1);
Chris Masone688b7252011-10-31 20:52:39 -04006360
6361 pin_down_extent(root, cache, bytenr, num_bytes, 0);
6362
6363 /* remove us from the free space cache (if we're there at all) */
Josef Bacikb50c6e22013-04-25 15:55:30 -04006364 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
Chris Masone688b7252011-10-31 20:52:39 -04006365 btrfs_put_block_group(cache);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006366 return ret;
Chris Masone688b7252011-10-31 20:52:39 -04006367}
6368
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006369static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes)
6370{
6371 int ret;
6372 struct btrfs_block_group_cache *block_group;
6373 struct btrfs_caching_control *caching_ctl;
6374
6375 block_group = btrfs_lookup_block_group(root->fs_info, start);
6376 if (!block_group)
6377 return -EINVAL;
6378
6379 cache_block_group(block_group, 0);
6380 caching_ctl = get_caching_control(block_group);
6381
6382 if (!caching_ctl) {
6383 /* Logic error */
6384 BUG_ON(!block_group_cache_done(block_group));
6385 ret = btrfs_remove_free_space(block_group, start, num_bytes);
6386 } else {
6387 mutex_lock(&caching_ctl->mutex);
6388
6389 if (start >= caching_ctl->progress) {
6390 ret = add_excluded_extent(root, start, num_bytes);
6391 } else if (start + num_bytes <= caching_ctl->progress) {
6392 ret = btrfs_remove_free_space(block_group,
6393 start, num_bytes);
6394 } else {
6395 num_bytes = caching_ctl->progress - start;
6396 ret = btrfs_remove_free_space(block_group,
6397 start, num_bytes);
6398 if (ret)
6399 goto out_lock;
6400
6401 num_bytes = (start + num_bytes) -
6402 caching_ctl->progress;
6403 start = caching_ctl->progress;
6404 ret = add_excluded_extent(root, start, num_bytes);
6405 }
6406out_lock:
6407 mutex_unlock(&caching_ctl->mutex);
6408 put_caching_control(caching_ctl);
6409 }
6410 btrfs_put_block_group(block_group);
6411 return ret;
6412}
6413
6414int btrfs_exclude_logged_extents(struct btrfs_root *log,
6415 struct extent_buffer *eb)
6416{
6417 struct btrfs_file_extent_item *item;
6418 struct btrfs_key key;
6419 int found_type;
6420 int i;
6421
6422 if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS))
6423 return 0;
6424
6425 for (i = 0; i < btrfs_header_nritems(eb); i++) {
6426 btrfs_item_key_to_cpu(eb, &key, i);
6427 if (key.type != BTRFS_EXTENT_DATA_KEY)
6428 continue;
6429 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
6430 found_type = btrfs_file_extent_type(eb, item);
6431 if (found_type == BTRFS_FILE_EXTENT_INLINE)
6432 continue;
6433 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
6434 continue;
6435 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
6436 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
6437 __exclude_logged_extent(log, key.objectid, key.offset);
6438 }
6439
6440 return 0;
6441}
6442
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006443static void
6444btrfs_inc_block_group_reservations(struct btrfs_block_group_cache *bg)
6445{
6446 atomic_inc(&bg->reservations);
6447}
6448
6449void btrfs_dec_block_group_reservations(struct btrfs_fs_info *fs_info,
6450 const u64 start)
6451{
6452 struct btrfs_block_group_cache *bg;
6453
6454 bg = btrfs_lookup_block_group(fs_info, start);
6455 ASSERT(bg);
6456 if (atomic_dec_and_test(&bg->reservations))
6457 wake_up_atomic_t(&bg->reservations);
6458 btrfs_put_block_group(bg);
6459}
6460
6461static int btrfs_wait_bg_reservations_atomic_t(atomic_t *a)
6462{
6463 schedule();
6464 return 0;
6465}
6466
6467void btrfs_wait_block_group_reservations(struct btrfs_block_group_cache *bg)
6468{
6469 struct btrfs_space_info *space_info = bg->space_info;
6470
6471 ASSERT(bg->ro);
6472
6473 if (!(bg->flags & BTRFS_BLOCK_GROUP_DATA))
6474 return;
6475
6476 /*
6477 * Our block group is read only but before we set it to read only,
6478 * some task might have had allocated an extent from it already, but it
6479 * has not yet created a respective ordered extent (and added it to a
6480 * root's list of ordered extents).
6481 * Therefore wait for any task currently allocating extents, since the
6482 * block group's reservations counter is incremented while a read lock
6483 * on the groups' semaphore is held and decremented after releasing
6484 * the read access on that semaphore and creating the ordered extent.
6485 */
6486 down_write(&space_info->groups_sem);
6487 up_write(&space_info->groups_sem);
6488
6489 wait_on_atomic_t(&bg->reservations,
6490 btrfs_wait_bg_reservations_atomic_t,
6491 TASK_UNINTERRUPTIBLE);
6492}
6493
Josef Bacikfb25e912011-07-26 17:00:46 -04006494/**
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006495 * btrfs_add_reserved_bytes - update the block_group and space info counters
Josef Bacikfb25e912011-07-26 17:00:46 -04006496 * @cache: The cache we are manipulating
Wang Xiaoguang18513092016-07-25 15:51:40 +08006497 * @ram_bytes: The number of bytes of file content, and will be same to
6498 * @num_bytes except for the compress path.
Josef Bacikfb25e912011-07-26 17:00:46 -04006499 * @num_bytes: The number of bytes in question
Miao Xiee570fd22014-06-19 10:42:50 +08006500 * @delalloc: The blocks are allocated for the delalloc write
Josef Bacikfb25e912011-07-26 17:00:46 -04006501 *
Xiaoguang Wang745699e2016-09-23 12:38:50 +08006502 * This is called by the allocator when it reserves space. If this is a
6503 * reservation and the block group has become read only we cannot make the
6504 * reservation and return -EAGAIN, otherwise this function always succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04006505 */
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006506static int btrfs_add_reserved_bytes(struct btrfs_block_group_cache *cache,
Wang Xiaoguang18513092016-07-25 15:51:40 +08006507 u64 ram_bytes, u64 num_bytes, int delalloc)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006508{
Josef Bacikfb25e912011-07-26 17:00:46 -04006509 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006510 int ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006511
Josef Bacikfb25e912011-07-26 17:00:46 -04006512 spin_lock(&space_info->lock);
6513 spin_lock(&cache->lock);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006514 if (cache->ro) {
6515 ret = -EAGAIN;
Josef Bacikfb25e912011-07-26 17:00:46 -04006516 } else {
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006517 cache->reserved += num_bytes;
6518 space_info->bytes_reserved += num_bytes;
Miao Xiee570fd22014-06-19 10:42:50 +08006519
Wang Xiaoguang18513092016-07-25 15:51:40 +08006520 trace_btrfs_space_reservation(cache->fs_info,
6521 "space_info", space_info->flags,
6522 ram_bytes, 0);
6523 space_info->bytes_may_use -= ram_bytes;
Miao Xiee570fd22014-06-19 10:42:50 +08006524 if (delalloc)
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006525 cache->delalloc_bytes += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006526 }
Josef Bacikfb25e912011-07-26 17:00:46 -04006527 spin_unlock(&cache->lock);
6528 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006529 return ret;
6530}
6531
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006532/**
6533 * btrfs_free_reserved_bytes - update the block_group and space info counters
6534 * @cache: The cache we are manipulating
6535 * @num_bytes: The number of bytes in question
6536 * @delalloc: The blocks are allocated for the delalloc write
6537 *
6538 * This is called by somebody who is freeing space that was never actually used
6539 * on disk. For example if you reserve some space for a new leaf in transaction
6540 * A and before transaction A commits you free that leaf, you call this with
6541 * reserve set to 0 in order to clear the reservation.
6542 */
6543
6544static int btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache,
6545 u64 num_bytes, int delalloc)
6546{
6547 struct btrfs_space_info *space_info = cache->space_info;
6548 int ret = 0;
6549
6550 spin_lock(&space_info->lock);
6551 spin_lock(&cache->lock);
6552 if (cache->ro)
6553 space_info->bytes_readonly += num_bytes;
6554 cache->reserved -= num_bytes;
6555 space_info->bytes_reserved -= num_bytes;
6556
6557 if (delalloc)
6558 cache->delalloc_bytes -= num_bytes;
6559 spin_unlock(&cache->lock);
6560 spin_unlock(&space_info->lock);
6561 return ret;
6562}
Jeff Mahoney143bede2012-03-01 14:56:26 +01006563void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04006564 struct btrfs_root *root)
6565{
6566 struct btrfs_fs_info *fs_info = root->fs_info;
6567 struct btrfs_caching_control *next;
6568 struct btrfs_caching_control *caching_ctl;
6569 struct btrfs_block_group_cache *cache;
6570
Josef Bacik9e351cc2014-03-13 15:42:13 -04006571 down_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04006572
6573 list_for_each_entry_safe(caching_ctl, next,
6574 &fs_info->caching_block_groups, list) {
6575 cache = caching_ctl->block_group;
6576 if (block_group_cache_done(cache)) {
6577 cache->last_byte_to_unpin = (u64)-1;
6578 list_del_init(&caching_ctl->list);
6579 put_caching_control(caching_ctl);
6580 } else {
6581 cache->last_byte_to_unpin = caching_ctl->progress;
6582 }
6583 }
6584
6585 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6586 fs_info->pinned_extents = &fs_info->freed_extents[1];
6587 else
6588 fs_info->pinned_extents = &fs_info->freed_extents[0];
6589
Josef Bacik9e351cc2014-03-13 15:42:13 -04006590 up_write(&fs_info->commit_root_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006591
6592 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04006593}
6594
Josef Bacikc759c4e2015-10-02 15:25:10 -04006595/*
6596 * Returns the free cluster for the given space info and sets empty_cluster to
6597 * what it should be based on the mount options.
6598 */
6599static struct btrfs_free_cluster *
6600fetch_cluster_info(struct btrfs_root *root, struct btrfs_space_info *space_info,
6601 u64 *empty_cluster)
6602{
6603 struct btrfs_free_cluster *ret = NULL;
Jeff Mahoney3cdde222016-06-09 21:38:35 -04006604 bool ssd = btrfs_test_opt(root->fs_info, SSD);
Josef Bacikc759c4e2015-10-02 15:25:10 -04006605
6606 *empty_cluster = 0;
6607 if (btrfs_mixed_space_info(space_info))
6608 return ret;
6609
6610 if (ssd)
Byongho Leeee221842015-12-15 01:42:10 +09006611 *empty_cluster = SZ_2M;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006612 if (space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
6613 ret = &root->fs_info->meta_alloc_cluster;
6614 if (!ssd)
Byongho Leeee221842015-12-15 01:42:10 +09006615 *empty_cluster = SZ_64K;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006616 } else if ((space_info->flags & BTRFS_BLOCK_GROUP_DATA) && ssd) {
6617 ret = &root->fs_info->data_alloc_cluster;
6618 }
6619
6620 return ret;
6621}
6622
Filipe Manana678886b2014-12-07 21:31:47 +00006623static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end,
6624 const bool return_free_space)
Yan Zheng11833d62009-09-11 16:11:19 -04006625{
6626 struct btrfs_fs_info *fs_info = root->fs_info;
6627 struct btrfs_block_group_cache *cache = NULL;
Josef Bacik7b398f82012-10-22 15:52:28 -04006628 struct btrfs_space_info *space_info;
6629 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006630 struct btrfs_free_cluster *cluster = NULL;
Yan Zheng11833d62009-09-11 16:11:19 -04006631 u64 len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006632 u64 total_unpinned = 0;
6633 u64 empty_cluster = 0;
Josef Bacik7b398f82012-10-22 15:52:28 -04006634 bool readonly;
Yan Zheng11833d62009-09-11 16:11:19 -04006635
6636 while (start <= end) {
Josef Bacik7b398f82012-10-22 15:52:28 -04006637 readonly = false;
Yan Zheng11833d62009-09-11 16:11:19 -04006638 if (!cache ||
6639 start >= cache->key.objectid + cache->key.offset) {
6640 if (cache)
6641 btrfs_put_block_group(cache);
Josef Bacikc759c4e2015-10-02 15:25:10 -04006642 total_unpinned = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006643 cache = btrfs_lookup_block_group(fs_info, start);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006644 BUG_ON(!cache); /* Logic error */
Josef Bacikc759c4e2015-10-02 15:25:10 -04006645
6646 cluster = fetch_cluster_info(root,
6647 cache->space_info,
6648 &empty_cluster);
6649 empty_cluster <<= 1;
Yan Zheng11833d62009-09-11 16:11:19 -04006650 }
6651
6652 len = cache->key.objectid + cache->key.offset - start;
6653 len = min(len, end + 1 - start);
6654
6655 if (start < cache->last_byte_to_unpin) {
6656 len = min(len, cache->last_byte_to_unpin - start);
Filipe Manana678886b2014-12-07 21:31:47 +00006657 if (return_free_space)
6658 btrfs_add_free_space(cache, start, len);
Yan Zheng11833d62009-09-11 16:11:19 -04006659 }
Josef Bacik25179202008-10-29 14:49:05 -04006660
Yan, Zhengf0486c62010-05-16 10:46:25 -04006661 start += len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006662 total_unpinned += len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006663 space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006664
Josef Bacikc759c4e2015-10-02 15:25:10 -04006665 /*
6666 * If this space cluster has been marked as fragmented and we've
6667 * unpinned enough in this block group to potentially allow a
6668 * cluster to be created inside of it go ahead and clear the
6669 * fragmented check.
6670 */
6671 if (cluster && cluster->fragmented &&
6672 total_unpinned > empty_cluster) {
6673 spin_lock(&cluster->lock);
6674 cluster->fragmented = 0;
6675 spin_unlock(&cluster->lock);
6676 }
6677
Josef Bacik7b398f82012-10-22 15:52:28 -04006678 spin_lock(&space_info->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006679 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006680 cache->pinned -= len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006681 space_info->bytes_pinned -= len;
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006682
6683 trace_btrfs_space_reservation(fs_info, "pinned",
6684 space_info->flags, len, 0);
Josef Bacik4f4db212015-09-29 11:40:47 -04006685 space_info->max_extent_size = 0;
Liu Bod288db52014-07-02 16:58:01 +08006686 percpu_counter_add(&space_info->total_bytes_pinned, -len);
Josef Bacik7b398f82012-10-22 15:52:28 -04006687 if (cache->ro) {
6688 space_info->bytes_readonly += len;
6689 readonly = true;
6690 }
Josef Bacik25179202008-10-29 14:49:05 -04006691 spin_unlock(&cache->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006692 if (!readonly && return_free_space &&
6693 global_rsv->space_info == space_info) {
6694 u64 to_add = len;
6695 WARN_ON(!return_free_space);
Josef Bacik7b398f82012-10-22 15:52:28 -04006696 spin_lock(&global_rsv->lock);
6697 if (!global_rsv->full) {
Josef Bacik957780e2016-05-17 13:30:55 -04006698 to_add = min(len, global_rsv->size -
6699 global_rsv->reserved);
6700 global_rsv->reserved += to_add;
6701 space_info->bytes_may_use += to_add;
Josef Bacik7b398f82012-10-22 15:52:28 -04006702 if (global_rsv->reserved >= global_rsv->size)
6703 global_rsv->full = 1;
Josef Bacik957780e2016-05-17 13:30:55 -04006704 trace_btrfs_space_reservation(fs_info,
6705 "space_info",
6706 space_info->flags,
6707 to_add, 1);
6708 len -= to_add;
Josef Bacik7b398f82012-10-22 15:52:28 -04006709 }
6710 spin_unlock(&global_rsv->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006711 /* Add to any tickets we may have */
6712 if (len)
6713 space_info_add_new_bytes(fs_info, space_info,
6714 len);
Josef Bacik7b398f82012-10-22 15:52:28 -04006715 }
6716 spin_unlock(&space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006717 }
6718
6719 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006720 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04006721 return 0;
6722}
6723
6724int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04006725 struct btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -05006726{
Yan Zheng11833d62009-09-11 16:11:19 -04006727 struct btrfs_fs_info *fs_info = root->fs_info;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006728 struct btrfs_block_group_cache *block_group, *tmp;
6729 struct list_head *deleted_bgs;
Yan Zheng11833d62009-09-11 16:11:19 -04006730 struct extent_io_tree *unpin;
Chris Mason1a5bc162007-10-15 16:15:26 -04006731 u64 start;
6732 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05006733 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05006734
Yan Zheng11833d62009-09-11 16:11:19 -04006735 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6736 unpin = &fs_info->freed_extents[1];
6737 else
6738 unpin = &fs_info->freed_extents[0];
6739
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006740 while (!trans->aborted) {
Filipe Mananad4b450c2015-01-29 19:18:25 +00006741 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Chris Mason1a5bc162007-10-15 16:15:26 -04006742 ret = find_first_extent_bit(unpin, 0, &start, &end,
Josef Bacike6138872012-09-27 17:07:30 -04006743 EXTENT_DIRTY, NULL);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006744 if (ret) {
6745 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05006746 break;
Filipe Mananad4b450c2015-01-29 19:18:25 +00006747 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05006748
Jeff Mahoney3cdde222016-06-09 21:38:35 -04006749 if (btrfs_test_opt(root->fs_info, DISCARD))
Li Dongyang5378e602011-03-24 10:24:27 +00006750 ret = btrfs_discard_extent(root, start,
6751 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05006752
David Sterbaaf6f8f62016-04-26 23:54:39 +02006753 clear_extent_dirty(unpin, start, end);
Filipe Manana678886b2014-12-07 21:31:47 +00006754 unpin_extent_range(root, start, end, true);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006755 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masonb9473432009-03-13 11:00:37 -04006756 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05006757 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006758
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006759 /*
6760 * Transaction is finished. We don't need the lock anymore. We
6761 * do need to clean up the block groups in case of a transaction
6762 * abort.
6763 */
6764 deleted_bgs = &trans->transaction->deleted_bgs;
6765 list_for_each_entry_safe(block_group, tmp, deleted_bgs, bg_list) {
6766 u64 trimmed = 0;
6767
6768 ret = -EROFS;
6769 if (!trans->aborted)
6770 ret = btrfs_discard_extent(root,
6771 block_group->key.objectid,
6772 block_group->key.offset,
6773 &trimmed);
6774
6775 list_del_init(&block_group->bg_list);
6776 btrfs_put_block_group_trimming(block_group);
6777 btrfs_put_block_group(block_group);
6778
6779 if (ret) {
6780 const char *errstr = btrfs_decode_error(ret);
6781 btrfs_warn(fs_info,
6782 "Discard failed while removing blockgroup: errno=%d %s\n",
6783 ret, errstr);
6784 }
6785 }
6786
Chris Masone20d96d2007-03-22 12:13:20 -04006787 return 0;
6788}
6789
Josef Bacikb150a4f2013-06-19 15:00:04 -04006790static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes,
6791 u64 owner, u64 root_objectid)
6792{
6793 struct btrfs_space_info *space_info;
6794 u64 flags;
6795
6796 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
6797 if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID)
6798 flags = BTRFS_BLOCK_GROUP_SYSTEM;
6799 else
6800 flags = BTRFS_BLOCK_GROUP_METADATA;
6801 } else {
6802 flags = BTRFS_BLOCK_GROUP_DATA;
6803 }
6804
6805 space_info = __find_space_info(fs_info, flags);
6806 BUG_ON(!space_info); /* Logic bug */
6807 percpu_counter_add(&space_info->total_bytes_pinned, num_bytes);
6808}
6809
6810
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006811static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
6812 struct btrfs_root *root,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006813 struct btrfs_delayed_ref_node *node, u64 parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006814 u64 root_objectid, u64 owner_objectid,
6815 u64 owner_offset, int refs_to_drop,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006816 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05006817{
Chris Masone2fa7222007-03-12 16:22:34 -04006818 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006819 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04006820 struct btrfs_fs_info *info = root->fs_info;
6821 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04006822 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006823 struct btrfs_extent_item *ei;
6824 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05006825 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006826 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05006827 int extent_slot = 0;
6828 int found_extent = 0;
6829 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006830 u32 item_size;
6831 u64 refs;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006832 u64 bytenr = node->bytenr;
6833 u64 num_bytes = node->num_bytes;
Josef Bacikfcebe452014-05-13 17:30:47 -07006834 int last_ref = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05006835 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
6836 SKINNY_METADATA);
Chris Mason037e6392007-03-07 11:50:24 -05006837
Chris Mason5caf2a02007-04-02 11:20:42 -04006838 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04006839 if (!path)
6840 return -ENOMEM;
6841
David Sterbae4058b52015-11-27 16:31:35 +01006842 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04006843 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006844
6845 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
6846 BUG_ON(!is_data && refs_to_drop != 1);
6847
Josef Bacik3173a182013-03-07 14:22:04 -05006848 if (is_data)
6849 skinny_metadata = 0;
6850
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006851 ret = lookup_extent_backref(trans, extent_root, path, &iref,
6852 bytenr, num_bytes, parent,
6853 root_objectid, owner_objectid,
6854 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05006855 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05006856 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006857 while (extent_slot >= 0) {
6858 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05006859 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006860 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05006861 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006862 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
6863 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05006864 found_extent = 1;
6865 break;
6866 }
Josef Bacik3173a182013-03-07 14:22:04 -05006867 if (key.type == BTRFS_METADATA_ITEM_KEY &&
6868 key.offset == owner_objectid) {
6869 found_extent = 1;
6870 break;
6871 }
Chris Mason952fcca2008-02-18 16:33:44 -05006872 if (path->slots[0] - extent_slot > 5)
6873 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006874 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05006875 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006876#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6877 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
6878 if (found_extent && item_size < sizeof(*ei))
6879 found_extent = 0;
6880#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04006881 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006882 BUG_ON(iref);
Chris Mason56bec292009-03-13 10:10:06 -04006883 ret = remove_extent_backref(trans, extent_root, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006884 NULL, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07006885 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06006886 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006887 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006888 goto out;
6889 }
David Sterbab3b4aa72011-04-21 01:20:15 +02006890 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04006891 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006892
6893 key.objectid = bytenr;
6894 key.type = BTRFS_EXTENT_ITEM_KEY;
6895 key.offset = num_bytes;
6896
Josef Bacik3173a182013-03-07 14:22:04 -05006897 if (!is_data && skinny_metadata) {
6898 key.type = BTRFS_METADATA_ITEM_KEY;
6899 key.offset = owner_objectid;
6900 }
6901
Zheng Yan31840ae2008-09-23 13:14:14 -04006902 ret = btrfs_search_slot(trans, extent_root,
6903 &key, path, -1, 1);
Josef Bacik3173a182013-03-07 14:22:04 -05006904 if (ret > 0 && skinny_metadata && path->slots[0]) {
6905 /*
6906 * Couldn't find our skinny metadata item,
6907 * see if we have ye olde extent item.
6908 */
6909 path->slots[0]--;
6910 btrfs_item_key_to_cpu(path->nodes[0], &key,
6911 path->slots[0]);
6912 if (key.objectid == bytenr &&
6913 key.type == BTRFS_EXTENT_ITEM_KEY &&
6914 key.offset == num_bytes)
6915 ret = 0;
6916 }
6917
6918 if (ret > 0 && skinny_metadata) {
6919 skinny_metadata = false;
Filipe Manana9ce49a02014-04-24 15:15:28 +01006920 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05006921 key.type = BTRFS_EXTENT_ITEM_KEY;
6922 key.offset = num_bytes;
6923 btrfs_release_path(path);
6924 ret = btrfs_search_slot(trans, extent_root,
6925 &key, path, -1, 1);
6926 }
6927
Josef Bacikf3465ca2008-11-12 14:19:50 -05006928 if (ret) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006929 btrfs_err(info,
6930 "umm, got %d back from search, was looking for %llu",
6931 ret, bytenr);
Josef Bacikb783e622011-07-13 15:03:50 +00006932 if (ret > 0)
6933 btrfs_print_leaf(extent_root,
6934 path->nodes[0]);
Josef Bacikf3465ca2008-11-12 14:19:50 -05006935 }
David Sterba005d6422012-09-18 07:52:32 -06006936 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006937 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006938 goto out;
6939 }
Zheng Yan31840ae2008-09-23 13:14:14 -04006940 extent_slot = path->slots[0];
6941 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306942 } else if (WARN_ON(ret == -ENOENT)) {
Chris Mason7bb86312007-12-11 09:25:06 -05006943 btrfs_print_leaf(extent_root, path->nodes[0]);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006944 btrfs_err(info,
6945 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006946 bytenr, parent, root_objectid, owner_objectid,
6947 owner_offset);
Jeff Mahoney66642832016-06-10 18:19:25 -04006948 btrfs_abort_transaction(trans, ret);
Josef Bacikc4a050b2014-03-14 16:36:53 -04006949 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006950 } else {
Jeff Mahoney66642832016-06-10 18:19:25 -04006951 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006952 goto out;
Chris Mason7bb86312007-12-11 09:25:06 -05006953 }
Chris Mason5f39d392007-10-15 16:14:19 -04006954
6955 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006956 item_size = btrfs_item_size_nr(leaf, extent_slot);
6957#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6958 if (item_size < sizeof(*ei)) {
6959 BUG_ON(found_extent || extent_slot != path->slots[0]);
6960 ret = convert_extent_item_v0(trans, extent_root, path,
6961 owner_objectid, 0);
David Sterba005d6422012-09-18 07:52:32 -06006962 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006963 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006964 goto out;
6965 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006966
David Sterbab3b4aa72011-04-21 01:20:15 +02006967 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006968 path->leave_spinning = 1;
6969
6970 key.objectid = bytenr;
6971 key.type = BTRFS_EXTENT_ITEM_KEY;
6972 key.offset = num_bytes;
6973
6974 ret = btrfs_search_slot(trans, extent_root, &key, path,
6975 -1, 1);
6976 if (ret) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006977 btrfs_err(info,
6978 "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006979 ret, bytenr);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006980 btrfs_print_leaf(extent_root, path->nodes[0]);
6981 }
David Sterba005d6422012-09-18 07:52:32 -06006982 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006983 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006984 goto out;
6985 }
6986
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006987 extent_slot = path->slots[0];
6988 leaf = path->nodes[0];
6989 item_size = btrfs_item_size_nr(leaf, extent_slot);
6990 }
6991#endif
6992 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05006993 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04006994 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05006995 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
6996 key.type == BTRFS_EXTENT_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006997 struct btrfs_tree_block_info *bi;
6998 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
6999 bi = (struct btrfs_tree_block_info *)(ei + 1);
7000 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05007001 }
7002
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007003 refs = btrfs_extent_refs(leaf, ei);
Josef Bacik32b02532013-04-24 16:38:50 -04007004 if (refs < refs_to_drop) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04007005 btrfs_err(info,
7006 "trying to drop %d refs but we only have %Lu for bytenr %Lu",
7007 refs_to_drop, refs, bytenr);
Josef Bacik32b02532013-04-24 16:38:50 -04007008 ret = -EINVAL;
Jeff Mahoney66642832016-06-10 18:19:25 -04007009 btrfs_abort_transaction(trans, ret);
Josef Bacik32b02532013-04-24 16:38:50 -04007010 goto out;
7011 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007012 refs -= refs_to_drop;
7013
7014 if (refs > 0) {
7015 if (extent_op)
7016 __run_delayed_extent_op(extent_op, leaf, ei);
7017 /*
7018 * In the case of inline back ref, reference count will
7019 * be updated by remove_extent_backref
7020 */
7021 if (iref) {
7022 BUG_ON(!found_extent);
7023 } else {
7024 btrfs_set_extent_refs(leaf, ei, refs);
7025 btrfs_mark_buffer_dirty(leaf);
7026 }
7027 if (found_extent) {
7028 ret = remove_extent_backref(trans, extent_root, path,
7029 iref, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07007030 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06007031 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007032 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007033 goto out;
7034 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007035 }
Josef Bacikb150a4f2013-06-19 15:00:04 -04007036 add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid,
7037 root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007038 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007039 if (found_extent) {
7040 BUG_ON(is_data && refs_to_drop !=
Zhaolei9ed0dea2015-08-06 22:16:24 +08007041 extent_data_ref_count(path, iref));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007042 if (iref) {
7043 BUG_ON(path->slots[0] != extent_slot);
7044 } else {
7045 BUG_ON(path->slots[0] != extent_slot + 1);
7046 path->slots[0] = extent_slot;
7047 num_to_del = 2;
7048 }
Chris Mason78fae272007-03-25 11:35:08 -04007049 }
Chris Masonb9473432009-03-13 11:00:37 -04007050
Josef Bacikfcebe452014-05-13 17:30:47 -07007051 last_ref = 1;
Chris Mason952fcca2008-02-18 16:33:44 -05007052 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
7053 num_to_del);
David Sterba005d6422012-09-18 07:52:32 -06007054 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007055 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007056 goto out;
7057 }
David Sterbab3b4aa72011-04-21 01:20:15 +02007058 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01007059
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007060 if (is_data) {
Chris Mason459931e2008-12-10 09:10:46 -05007061 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
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 }
Chris Mason459931e2008-12-10 09:10:46 -05007066 }
7067
Omar Sandoval1e144fb2015-09-29 20:50:37 -07007068 ret = add_to_free_space_tree(trans, root->fs_info, bytenr,
7069 num_bytes);
7070 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007071 btrfs_abort_transaction(trans, ret);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07007072 goto out;
7073 }
7074
Josef Bacikce93ec52014-11-17 15:45:48 -05007075 ret = update_block_group(trans, root, bytenr, num_bytes, 0);
David Sterba005d6422012-09-18 07:52:32 -06007076 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007077 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007078 goto out;
7079 }
Chris Masona28ec192007-03-06 20:08:01 -05007080 }
Josef Bacikfcebe452014-05-13 17:30:47 -07007081 btrfs_release_path(path);
7082
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007083out:
Chris Mason5caf2a02007-04-02 11:20:42 -04007084 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05007085 return ret;
7086}
7087
7088/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04007089 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04007090 * delayed ref for that extent as well. This searches the delayed ref tree for
7091 * a given extent, and if there are no other delayed refs to be processed, it
7092 * removes it from the tree.
7093 */
7094static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
7095 struct btrfs_root *root, u64 bytenr)
7096{
7097 struct btrfs_delayed_ref_head *head;
7098 struct btrfs_delayed_ref_root *delayed_refs;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007099 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04007100
7101 delayed_refs = &trans->transaction->delayed_refs;
7102 spin_lock(&delayed_refs->lock);
7103 head = btrfs_find_delayed_ref_head(trans, bytenr);
7104 if (!head)
Chris Masoncf93da72014-01-29 07:02:40 -08007105 goto out_delayed_unlock;
Chris Mason1887be62009-03-13 10:11:24 -04007106
Josef Bacikd7df2c72014-01-23 09:21:38 -05007107 spin_lock(&head->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08007108 if (!list_empty(&head->ref_list))
Chris Mason1887be62009-03-13 10:11:24 -04007109 goto out;
7110
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007111 if (head->extent_op) {
7112 if (!head->must_insert_reserved)
7113 goto out;
Miao Xie78a61842012-11-21 02:21:28 +00007114 btrfs_free_delayed_extent_op(head->extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007115 head->extent_op = NULL;
7116 }
7117
Chris Mason1887be62009-03-13 10:11:24 -04007118 /*
7119 * waiting for the lock here would deadlock. If someone else has it
7120 * locked they are already in the process of dropping it anyway
7121 */
7122 if (!mutex_trylock(&head->mutex))
7123 goto out;
7124
7125 /*
7126 * at this point we have a head with no other entries. Go
7127 * ahead and process it.
7128 */
7129 head->node.in_tree = 0;
Liu Boc46effa2013-10-14 12:59:45 +08007130 rb_erase(&head->href_node, &delayed_refs->href_root);
Chris Masonc3e69d52009-03-13 10:17:05 -04007131
Josef Bacikd7df2c72014-01-23 09:21:38 -05007132 atomic_dec(&delayed_refs->num_entries);
Chris Mason1887be62009-03-13 10:11:24 -04007133
7134 /*
7135 * we don't take a ref on the node because we're removing it from the
7136 * tree, so we just steal the ref the tree was holding.
7137 */
Chris Masonc3e69d52009-03-13 10:17:05 -04007138 delayed_refs->num_heads--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05007139 if (head->processing == 0)
Chris Masonc3e69d52009-03-13 10:17:05 -04007140 delayed_refs->num_heads_ready--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05007141 head->processing = 0;
7142 spin_unlock(&head->lock);
Chris Mason1887be62009-03-13 10:11:24 -04007143 spin_unlock(&delayed_refs->lock);
7144
Yan, Zhengf0486c62010-05-16 10:46:25 -04007145 BUG_ON(head->extent_op);
7146 if (head->must_insert_reserved)
7147 ret = 1;
7148
7149 mutex_unlock(&head->mutex);
Chris Mason1887be62009-03-13 10:11:24 -04007150 btrfs_put_delayed_ref(&head->node);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007151 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04007152out:
Josef Bacikd7df2c72014-01-23 09:21:38 -05007153 spin_unlock(&head->lock);
Chris Masoncf93da72014-01-29 07:02:40 -08007154
7155out_delayed_unlock:
Chris Mason1887be62009-03-13 10:11:24 -04007156 spin_unlock(&delayed_refs->lock);
7157 return 0;
7158}
7159
Yan, Zhengf0486c62010-05-16 10:46:25 -04007160void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
7161 struct btrfs_root *root,
7162 struct extent_buffer *buf,
Jan Schmidt5581a512012-05-16 17:04:52 +02007163 u64 parent, int last_ref)
Yan, Zhengf0486c62010-05-16 10:46:25 -04007164{
Josef Bacikb150a4f2013-06-19 15:00:04 -04007165 int pin = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007166 int ret;
7167
7168 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007169 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
7170 buf->start, buf->len,
7171 parent, root->root_key.objectid,
7172 btrfs_header_level(buf),
Filipe Mananab06c4bf2015-10-23 07:52:54 +01007173 BTRFS_DROP_DELAYED_REF, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007174 BUG_ON(ret); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007175 }
7176
7177 if (!last_ref)
7178 return;
7179
Yan, Zhengf0486c62010-05-16 10:46:25 -04007180 if (btrfs_header_generation(buf) == trans->transid) {
Filipe Manana62198722015-01-06 20:18:45 +00007181 struct btrfs_block_group_cache *cache;
7182
Yan, Zhengf0486c62010-05-16 10:46:25 -04007183 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
7184 ret = check_ref_cleanup(trans, root, buf->start);
7185 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04007186 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007187 }
7188
Filipe Manana62198722015-01-06 20:18:45 +00007189 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
7190
Yan, Zhengf0486c62010-05-16 10:46:25 -04007191 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
7192 pin_down_extent(root, cache, buf->start, buf->len, 1);
Filipe Manana62198722015-01-06 20:18:45 +00007193 btrfs_put_block_group(cache);
Josef Bacik37be25b2011-08-05 10:25:38 -04007194 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007195 }
7196
7197 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
7198
7199 btrfs_add_free_space(cache, buf->start, buf->len);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08007200 btrfs_free_reserved_bytes(cache, buf->len, 0);
Filipe Manana62198722015-01-06 20:18:45 +00007201 btrfs_put_block_group(cache);
Josef Bacik0be5dc62013-10-07 15:18:52 -04007202 trace_btrfs_reserved_extent_free(root, buf->start, buf->len);
Josef Bacikb150a4f2013-06-19 15:00:04 -04007203 pin = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007204 }
7205out:
Josef Bacikb150a4f2013-06-19 15:00:04 -04007206 if (pin)
7207 add_pinned_bytes(root->fs_info, buf->len,
7208 btrfs_header_level(buf),
7209 root->root_key.objectid);
7210
Josef Bacika826d6d2011-03-16 13:42:43 -04007211 /*
7212 * Deleting the buffer, clear the corrupt flag since it doesn't matter
7213 * anymore.
7214 */
7215 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007216}
7217
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007218/* Can return -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007219int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root,
7220 u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01007221 u64 owner, u64 offset)
Chris Mason925baed2008-06-25 16:01:30 -04007222{
7223 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007224 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason925baed2008-06-25 16:01:30 -04007225
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -04007226 if (btrfs_is_testing(fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04007227 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02007228
Josef Bacikb150a4f2013-06-19 15:00:04 -04007229 add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid);
7230
Chris Mason56bec292009-03-13 10:10:06 -04007231 /*
7232 * tree log blocks never actually go into the extent allocation
7233 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04007234 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007235 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
7236 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04007237 /* unlocks the pinned mutex */
Yan Zheng11833d62009-09-11 16:11:19 -04007238 btrfs_pin_extent(root, bytenr, num_bytes, 1);
Chris Mason56bec292009-03-13 10:10:06 -04007239 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007240 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007241 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
7242 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007243 parent, root_objectid, (int)owner,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01007244 BTRFS_DROP_DELAYED_REF, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007245 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007246 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
7247 num_bytes,
7248 parent, root_objectid, owner,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08007249 offset, 0,
7250 BTRFS_DROP_DELAYED_REF, NULL);
Chris Mason56bec292009-03-13 10:10:06 -04007251 }
Chris Mason925baed2008-06-25 16:01:30 -04007252 return ret;
7253}
7254
Chris Masonfec577f2007-02-26 10:40:21 -05007255/*
Josef Bacik817d52f2009-07-13 21:29:25 -04007256 * when we wait for progress in the block group caching, its because
7257 * our allocation attempt failed at least once. So, we must sleep
7258 * and let some progress happen before we try again.
7259 *
7260 * This function will sleep at least once waiting for new free space to
7261 * show up, and then it will check the block group free space numbers
7262 * for our min num_bytes. Another option is to have it go ahead
7263 * and look in the rbtree for a free extent of a given size, but this
7264 * is a good start.
Josef Bacik36cce922013-08-05 11:15:21 -04007265 *
7266 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
7267 * any of the information in this block group.
Josef Bacik817d52f2009-07-13 21:29:25 -04007268 */
Josef Bacik36cce922013-08-05 11:15:21 -04007269static noinline void
Josef Bacik817d52f2009-07-13 21:29:25 -04007270wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
7271 u64 num_bytes)
7272{
Yan Zheng11833d62009-09-11 16:11:19 -04007273 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04007274
Yan Zheng11833d62009-09-11 16:11:19 -04007275 caching_ctl = get_caching_control(cache);
7276 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007277 return;
Josef Bacik817d52f2009-07-13 21:29:25 -04007278
Yan Zheng11833d62009-09-11 16:11:19 -04007279 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08007280 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04007281
7282 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -04007283}
7284
7285static noinline int
7286wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
7287{
7288 struct btrfs_caching_control *caching_ctl;
Josef Bacik36cce922013-08-05 11:15:21 -04007289 int ret = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007290
7291 caching_ctl = get_caching_control(cache);
7292 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007293 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007294
7295 wait_event(caching_ctl->wait, block_group_cache_done(cache));
Josef Bacik36cce922013-08-05 11:15:21 -04007296 if (cache->cached == BTRFS_CACHE_ERROR)
7297 ret = -EIO;
Yan Zheng11833d62009-09-11 16:11:19 -04007298 put_caching_control(caching_ctl);
Josef Bacik36cce922013-08-05 11:15:21 -04007299 return ret;
Josef Bacik817d52f2009-07-13 21:29:25 -04007300}
7301
Liu Bo31e50222012-11-21 14:18:10 +00007302int __get_raid_index(u64 flags)
Yan, Zhengb742bb82010-05-16 10:46:24 -04007303{
Ilya Dryomov7738a532012-03-27 17:09:17 +03007304 if (flags & BTRFS_BLOCK_GROUP_RAID10)
Miao Xiee6ec7162013-01-17 05:38:51 +00007305 return BTRFS_RAID_RAID10;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007306 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
Miao Xiee6ec7162013-01-17 05:38:51 +00007307 return BTRFS_RAID_RAID1;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007308 else if (flags & BTRFS_BLOCK_GROUP_DUP)
Miao Xiee6ec7162013-01-17 05:38:51 +00007309 return BTRFS_RAID_DUP;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007310 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
Miao Xiee6ec7162013-01-17 05:38:51 +00007311 return BTRFS_RAID_RAID0;
David Woodhouse53b381b2013-01-29 18:40:14 -05007312 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
Chris Masone942f882013-02-20 14:06:05 -05007313 return BTRFS_RAID_RAID5;
David Woodhouse53b381b2013-01-29 18:40:14 -05007314 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
Chris Masone942f882013-02-20 14:06:05 -05007315 return BTRFS_RAID_RAID6;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007316
Chris Masone942f882013-02-20 14:06:05 -05007317 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
Yan, Zhengb742bb82010-05-16 10:46:24 -04007318}
7319
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04007320int get_block_group_index(struct btrfs_block_group_cache *cache)
Ilya Dryomov7738a532012-03-27 17:09:17 +03007321{
Liu Bo31e50222012-11-21 14:18:10 +00007322 return __get_raid_index(cache->flags);
Ilya Dryomov7738a532012-03-27 17:09:17 +03007323}
7324
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04007325static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = {
7326 [BTRFS_RAID_RAID10] = "raid10",
7327 [BTRFS_RAID_RAID1] = "raid1",
7328 [BTRFS_RAID_DUP] = "dup",
7329 [BTRFS_RAID_RAID0] = "raid0",
7330 [BTRFS_RAID_SINGLE] = "single",
7331 [BTRFS_RAID_RAID5] = "raid5",
7332 [BTRFS_RAID_RAID6] = "raid6",
7333};
7334
Jeff Mahoney1b8e5df2013-11-20 16:50:23 -05007335static const char *get_raid_name(enum btrfs_raid_types type)
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04007336{
7337 if (type >= BTRFS_NR_RAID_TYPES)
7338 return NULL;
7339
7340 return btrfs_raid_type_names[type];
7341}
7342
Josef Bacik817d52f2009-07-13 21:29:25 -04007343enum btrfs_loop_type {
Josef Bacik285ff5a2012-01-13 15:27:45 -05007344 LOOP_CACHING_NOWAIT = 0,
7345 LOOP_CACHING_WAIT = 1,
7346 LOOP_ALLOC_CHUNK = 2,
7347 LOOP_NO_EMPTY_SIZE = 3,
Josef Bacik817d52f2009-07-13 21:29:25 -04007348};
7349
Miao Xiee570fd22014-06-19 10:42:50 +08007350static inline void
7351btrfs_lock_block_group(struct btrfs_block_group_cache *cache,
7352 int delalloc)
7353{
7354 if (delalloc)
7355 down_read(&cache->data_rwsem);
7356}
7357
7358static inline void
7359btrfs_grab_block_group(struct btrfs_block_group_cache *cache,
7360 int delalloc)
7361{
7362 btrfs_get_block_group(cache);
7363 if (delalloc)
7364 down_read(&cache->data_rwsem);
7365}
7366
7367static struct btrfs_block_group_cache *
7368btrfs_lock_cluster(struct btrfs_block_group_cache *block_group,
7369 struct btrfs_free_cluster *cluster,
7370 int delalloc)
7371{
Sudip Mukherjee89771cc2016-02-16 13:32:47 +05307372 struct btrfs_block_group_cache *used_bg = NULL;
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007373
Miao Xiee570fd22014-06-19 10:42:50 +08007374 spin_lock(&cluster->refill_lock);
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007375 while (1) {
7376 used_bg = cluster->block_group;
7377 if (!used_bg)
7378 return NULL;
7379
7380 if (used_bg == block_group)
7381 return used_bg;
7382
7383 btrfs_get_block_group(used_bg);
7384
7385 if (!delalloc)
7386 return used_bg;
7387
7388 if (down_read_trylock(&used_bg->data_rwsem))
7389 return used_bg;
7390
7391 spin_unlock(&cluster->refill_lock);
7392
7393 down_read(&used_bg->data_rwsem);
7394
7395 spin_lock(&cluster->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08007396 if (used_bg == cluster->block_group)
7397 return used_bg;
7398
7399 up_read(&used_bg->data_rwsem);
7400 btrfs_put_block_group(used_bg);
7401 }
Miao Xiee570fd22014-06-19 10:42:50 +08007402}
7403
7404static inline void
7405btrfs_release_block_group(struct btrfs_block_group_cache *cache,
7406 int delalloc)
7407{
7408 if (delalloc)
7409 up_read(&cache->data_rwsem);
7410 btrfs_put_block_group(cache);
7411}
7412
Josef Bacik817d52f2009-07-13 21:29:25 -04007413/*
Chris Masonfec577f2007-02-26 10:40:21 -05007414 * walks the btree of allocated extents and find a hole of a given size.
7415 * The key ins is changed to record the hole:
Miao Xiea4820392013-09-09 13:19:42 +08007416 * ins->objectid == start position
Chris Mason62e27492007-03-15 12:56:47 -04007417 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Miao Xiea4820392013-09-09 13:19:42 +08007418 * ins->offset == the size of the hole.
Chris Masonfec577f2007-02-26 10:40:21 -05007419 * Any available blocks before search_start are skipped.
Miao Xiea4820392013-09-09 13:19:42 +08007420 *
7421 * If there is no suitable free space, we will record the max size of
7422 * the free space extent currently.
Chris Masonfec577f2007-02-26 10:40:21 -05007423 */
Josef Bacik00361582013-08-14 14:02:47 -04007424static noinline int find_free_extent(struct btrfs_root *orig_root,
Wang Xiaoguang18513092016-07-25 15:51:40 +08007425 u64 ram_bytes, u64 num_bytes, u64 empty_size,
7426 u64 hint_byte, struct btrfs_key *ins,
7427 u64 flags, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05007428{
Josef Bacik80eb2342008-10-29 14:49:05 -04007429 int ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05007430 struct btrfs_root *root = orig_root->fs_info->extent_root;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007431 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04007432 struct btrfs_block_group_cache *block_group = NULL;
Josef Bacik81c9ad22012-01-18 10:56:06 -05007433 u64 search_start = 0;
Miao Xiea4820392013-09-09 13:19:42 +08007434 u64 max_extent_size = 0;
Josef Bacikc759c4e2015-10-02 15:25:10 -04007435 u64 empty_cluster = 0;
Josef Bacik80eb2342008-10-29 14:49:05 -04007436 struct btrfs_space_info *space_info;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007437 int loop = 0;
David Sterbab6919a52013-04-29 13:39:40 +00007438 int index = __get_raid_index(flags);
Josef Bacik0a243252009-09-11 16:11:20 -04007439 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007440 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04007441 bool use_cluster = true;
Miao Xie60d2adb2011-09-09 17:34:35 +08007442 bool have_caching_bg = false;
chandan13a0db52015-11-02 13:59:46 +05307443 bool orig_have_caching_bg = false;
Josef Bacika5e681d2015-10-01 14:54:10 -04007444 bool full_search = false;
Chris Masonfec577f2007-02-26 10:40:21 -05007445
Chris Masondb945352007-10-15 16:15:53 -04007446 WARN_ON(num_bytes < root->sectorsize);
David Sterba962a2982014-06-04 18:41:45 +02007447 ins->type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacik80eb2342008-10-29 14:49:05 -04007448 ins->objectid = 0;
7449 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04007450
David Sterbab6919a52013-04-29 13:39:40 +00007451 trace_find_free_extent(orig_root, num_bytes, empty_size, flags);
Josef Bacik3f7de032011-11-10 08:29:20 -05007452
David Sterbab6919a52013-04-29 13:39:40 +00007453 space_info = __find_space_info(root->fs_info, flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007454 if (!space_info) {
David Sterbab6919a52013-04-29 13:39:40 +00007455 btrfs_err(root->fs_info, "No space info for %llu", flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007456 return -ENOSPC;
7457 }
Josef Bacik2552d172009-04-03 10:14:19 -04007458
Josef Bacik67377732010-09-16 16:19:09 -04007459 /*
Josef Bacik4f4db212015-09-29 11:40:47 -04007460 * If our free space is heavily fragmented we may not be able to make
7461 * big contiguous allocations, so instead of doing the expensive search
7462 * for free space, simply return ENOSPC with our max_extent_size so we
7463 * can go ahead and search for a more manageable chunk.
7464 *
7465 * If our max_extent_size is large enough for our allocation simply
7466 * disable clustering since we will likely not be able to find enough
7467 * space to create a cluster and induce latency trying.
Josef Bacik67377732010-09-16 16:19:09 -04007468 */
Josef Bacik4f4db212015-09-29 11:40:47 -04007469 if (unlikely(space_info->max_extent_size)) {
7470 spin_lock(&space_info->lock);
7471 if (space_info->max_extent_size &&
7472 num_bytes > space_info->max_extent_size) {
7473 ins->offset = space_info->max_extent_size;
7474 spin_unlock(&space_info->lock);
7475 return -ENOSPC;
7476 } else if (space_info->max_extent_size) {
7477 use_cluster = false;
7478 }
7479 spin_unlock(&space_info->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007480 }
7481
Josef Bacikc759c4e2015-10-02 15:25:10 -04007482 last_ptr = fetch_cluster_info(orig_root, space_info, &empty_cluster);
Chris Mason239b14b2008-03-24 15:02:07 -04007483 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007484 spin_lock(&last_ptr->lock);
7485 if (last_ptr->block_group)
7486 hint_byte = last_ptr->window_start;
Josef Bacikc759c4e2015-10-02 15:25:10 -04007487 if (last_ptr->fragmented) {
7488 /*
7489 * We still set window_start so we can keep track of the
7490 * last place we found an allocation to try and save
7491 * some time.
7492 */
7493 hint_byte = last_ptr->window_start;
7494 use_cluster = false;
7495 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007496 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007497 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007498
Chris Masona061fc82008-05-07 11:43:44 -04007499 search_start = max(search_start, first_logical_byte(root, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04007500 search_start = max(search_start, hint_byte);
Josef Bacik2552d172009-04-03 10:14:19 -04007501 if (search_start == hint_byte) {
Josef Bacik2552d172009-04-03 10:14:19 -04007502 block_group = btrfs_lookup_block_group(root->fs_info,
7503 search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04007504 /*
7505 * we don't want to use the block group if it doesn't match our
7506 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05007507 *
7508 * However if we are re-searching with an ideal block group
7509 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04007510 */
David Sterbab6919a52013-04-29 13:39:40 +00007511 if (block_group && block_group_bits(block_group, flags) &&
Josef Bacik285ff5a2012-01-13 15:27:45 -05007512 block_group->cached != BTRFS_CACHE_NO) {
Josef Bacik2552d172009-04-03 10:14:19 -04007513 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04007514 if (list_empty(&block_group->list) ||
7515 block_group->ro) {
7516 /*
7517 * someone is removing this block group,
7518 * we can't jump into the have_block_group
7519 * target because our list pointers are not
7520 * valid
7521 */
7522 btrfs_put_block_group(block_group);
7523 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05007524 } else {
Yan, Zhengb742bb82010-05-16 10:46:24 -04007525 index = get_block_group_index(block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08007526 btrfs_lock_block_group(block_group, delalloc);
Chris Mason44fb5512009-06-04 15:34:51 -04007527 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05007528 }
Josef Bacik2552d172009-04-03 10:14:19 -04007529 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007530 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04007531 }
Chris Mason42e70e72008-11-07 18:17:11 -05007532 }
Josef Bacik2552d172009-04-03 10:14:19 -04007533search:
Miao Xie60d2adb2011-09-09 17:34:35 +08007534 have_caching_bg = false;
Josef Bacika5e681d2015-10-01 14:54:10 -04007535 if (index == 0 || index == __get_raid_index(flags))
7536 full_search = true;
Josef Bacik80eb2342008-10-29 14:49:05 -04007537 down_read(&space_info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04007538 list_for_each_entry(block_group, &space_info->block_groups[index],
7539 list) {
Josef Bacik6226cb02009-04-03 10:14:18 -04007540 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04007541 int cached;
Chris Mason8a1413a2008-11-10 16:13:54 -05007542
Miao Xiee570fd22014-06-19 10:42:50 +08007543 btrfs_grab_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007544 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05007545
Chris Mason83a50de2010-12-13 15:06:46 -05007546 /*
7547 * this can happen if we end up cycling through all the
7548 * raid types, but we want to make sure we only allocate
7549 * for the proper type.
7550 */
David Sterbab6919a52013-04-29 13:39:40 +00007551 if (!block_group_bits(block_group, flags)) {
Chris Mason83a50de2010-12-13 15:06:46 -05007552 u64 extra = BTRFS_BLOCK_GROUP_DUP |
7553 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05007554 BTRFS_BLOCK_GROUP_RAID5 |
7555 BTRFS_BLOCK_GROUP_RAID6 |
Chris Mason83a50de2010-12-13 15:06:46 -05007556 BTRFS_BLOCK_GROUP_RAID10;
7557
7558 /*
7559 * if they asked for extra copies and this block group
7560 * doesn't provide them, bail. This does allow us to
7561 * fill raid0 from raid1.
7562 */
David Sterbab6919a52013-04-29 13:39:40 +00007563 if ((flags & extra) && !(block_group->flags & extra))
Chris Mason83a50de2010-12-13 15:06:46 -05007564 goto loop;
7565 }
7566
Josef Bacik2552d172009-04-03 10:14:19 -04007567have_block_group:
Josef Bacik291c7d22011-11-14 13:52:14 -05007568 cached = block_group_cache_done(block_group);
7569 if (unlikely(!cached)) {
Josef Bacika5e681d2015-10-01 14:54:10 -04007570 have_caching_bg = true;
Liu Bof6373bf2012-12-27 09:01:18 +00007571 ret = cache_block_group(block_group, 0);
Chris Mason1d4284b2012-03-28 20:31:37 -04007572 BUG_ON(ret < 0);
7573 ret = 0;
Josef Bacikea6a4782008-11-20 12:16:16 -05007574 }
7575
Josef Bacik36cce922013-08-05 11:15:21 -04007576 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
7577 goto loop;
Josef Bacikea6a4782008-11-20 12:16:16 -05007578 if (unlikely(block_group->ro))
Josef Bacik2552d172009-04-03 10:14:19 -04007579 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007580
Josef Bacik0a243252009-09-11 16:11:20 -04007581 /*
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007582 * Ok we want to try and use the cluster allocator, so
7583 * lets look there
Josef Bacik0a243252009-09-11 16:11:20 -04007584 */
Josef Bacikc759c4e2015-10-02 15:25:10 -04007585 if (last_ptr && use_cluster) {
Miao Xie215a63d2014-01-15 20:00:56 +08007586 struct btrfs_block_group_cache *used_block_group;
Chris Mason8de972b2013-01-04 15:39:43 -05007587 unsigned long aligned_cluster;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007588 /*
7589 * the refill lock keeps out other
7590 * people trying to start a new cluster
7591 */
Miao Xiee570fd22014-06-19 10:42:50 +08007592 used_block_group = btrfs_lock_cluster(block_group,
7593 last_ptr,
7594 delalloc);
7595 if (!used_block_group)
Chris Mason44fb5512009-06-04 15:34:51 -04007596 goto refill_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -04007597
Miao Xiee570fd22014-06-19 10:42:50 +08007598 if (used_block_group != block_group &&
7599 (used_block_group->ro ||
7600 !block_group_bits(used_block_group, flags)))
7601 goto release_cluster;
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05007602
7603 offset = btrfs_alloc_from_cluster(used_block_group,
Miao Xiea4820392013-09-09 13:19:42 +08007604 last_ptr,
7605 num_bytes,
7606 used_block_group->key.objectid,
7607 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007608 if (offset) {
7609 /* we have a block, we're done */
7610 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05007611 trace_btrfs_reserve_extent_cluster(root,
Miao Xie89d43462014-01-15 20:00:57 +08007612 used_block_group,
7613 search_start, num_bytes);
Miao Xie215a63d2014-01-15 20:00:56 +08007614 if (used_block_group != block_group) {
Miao Xiee570fd22014-06-19 10:42:50 +08007615 btrfs_release_block_group(block_group,
7616 delalloc);
Miao Xie215a63d2014-01-15 20:00:56 +08007617 block_group = used_block_group;
7618 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007619 goto checks;
7620 }
7621
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05007622 WARN_ON(last_ptr->block_group != used_block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08007623release_cluster:
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007624 /* If we are on LOOP_NO_EMPTY_SIZE, we can't
7625 * set up a new clusters, so lets just skip it
7626 * and let the allocator find whatever block
7627 * it can find. If we reach this point, we
7628 * will have tried the cluster allocator
7629 * plenty of times and not have found
7630 * anything, so we are likely way too
7631 * fragmented for the clustering stuff to find
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007632 * anything.
7633 *
7634 * However, if the cluster is taken from the
7635 * current block group, release the cluster
7636 * first, so that we stand a better chance of
7637 * succeeding in the unclustered
7638 * allocation. */
7639 if (loop >= LOOP_NO_EMPTY_SIZE &&
Miao Xiee570fd22014-06-19 10:42:50 +08007640 used_block_group != block_group) {
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007641 spin_unlock(&last_ptr->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08007642 btrfs_release_block_group(used_block_group,
7643 delalloc);
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007644 goto unclustered_alloc;
7645 }
7646
Chris Masonfa9c0d792009-04-03 09:47:43 -04007647 /*
7648 * this cluster didn't work out, free it and
7649 * start over
7650 */
7651 btrfs_return_cluster_to_free_space(NULL, last_ptr);
7652
Miao Xiee570fd22014-06-19 10:42:50 +08007653 if (used_block_group != block_group)
7654 btrfs_release_block_group(used_block_group,
7655 delalloc);
7656refill_cluster:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007657 if (loop >= LOOP_NO_EMPTY_SIZE) {
7658 spin_unlock(&last_ptr->refill_lock);
7659 goto unclustered_alloc;
7660 }
7661
Chris Mason8de972b2013-01-04 15:39:43 -05007662 aligned_cluster = max_t(unsigned long,
7663 empty_cluster + empty_size,
7664 block_group->full_stripe_len);
7665
Chris Masonfa9c0d792009-04-03 09:47:43 -04007666 /* allocate a cluster in this block group */
Josef Bacik00361582013-08-14 14:02:47 -04007667 ret = btrfs_find_space_cluster(root, block_group,
7668 last_ptr, search_start,
7669 num_bytes,
7670 aligned_cluster);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007671 if (ret == 0) {
7672 /*
7673 * now pull our allocation out of this
7674 * cluster
7675 */
7676 offset = btrfs_alloc_from_cluster(block_group,
Miao Xiea4820392013-09-09 13:19:42 +08007677 last_ptr,
7678 num_bytes,
7679 search_start,
7680 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007681 if (offset) {
7682 /* we found one, proceed */
7683 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05007684 trace_btrfs_reserve_extent_cluster(root,
7685 block_group, search_start,
7686 num_bytes);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007687 goto checks;
7688 }
Josef Bacik0a243252009-09-11 16:11:20 -04007689 } else if (!cached && loop > LOOP_CACHING_NOWAIT
7690 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04007691 spin_unlock(&last_ptr->refill_lock);
7692
Josef Bacik0a243252009-09-11 16:11:20 -04007693 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04007694 wait_block_group_cache_progress(block_group,
7695 num_bytes + empty_cluster + empty_size);
7696 goto have_block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007697 }
Josef Bacik817d52f2009-07-13 21:29:25 -04007698
Chris Masonfa9c0d792009-04-03 09:47:43 -04007699 /*
7700 * at this point we either didn't find a cluster
7701 * or we weren't able to allocate a block from our
7702 * cluster. Free the cluster we've been trying
7703 * to use, and go to the next block group
7704 */
Josef Bacik0a243252009-09-11 16:11:20 -04007705 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007706 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04007707 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007708 }
7709
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007710unclustered_alloc:
Josef Bacikc759c4e2015-10-02 15:25:10 -04007711 /*
7712 * We are doing an unclustered alloc, set the fragmented flag so
7713 * we don't bother trying to setup a cluster again until we get
7714 * more space.
7715 */
7716 if (unlikely(last_ptr)) {
7717 spin_lock(&last_ptr->lock);
7718 last_ptr->fragmented = 1;
7719 spin_unlock(&last_ptr->lock);
7720 }
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007721 spin_lock(&block_group->free_space_ctl->tree_lock);
7722 if (cached &&
7723 block_group->free_space_ctl->free_space <
7724 num_bytes + empty_cluster + empty_size) {
Miao Xiea4820392013-09-09 13:19:42 +08007725 if (block_group->free_space_ctl->free_space >
7726 max_extent_size)
7727 max_extent_size =
7728 block_group->free_space_ctl->free_space;
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007729 spin_unlock(&block_group->free_space_ctl->tree_lock);
7730 goto loop;
7731 }
7732 spin_unlock(&block_group->free_space_ctl->tree_lock);
7733
Josef Bacik6226cb02009-04-03 10:14:18 -04007734 offset = btrfs_find_space_for_alloc(block_group, search_start,
Miao Xiea4820392013-09-09 13:19:42 +08007735 num_bytes, empty_size,
7736 &max_extent_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007737 /*
7738 * If we didn't find a chunk, and we haven't failed on this
7739 * block group before, and this block group is in the middle of
7740 * caching and we are ok with waiting, then go ahead and wait
7741 * for progress to be made, and set failed_alloc to true.
7742 *
7743 * If failed_alloc is true then we've already waited on this
7744 * block group once and should move on to the next block group.
7745 */
7746 if (!offset && !failed_alloc && !cached &&
7747 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04007748 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007749 num_bytes + empty_size);
7750 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04007751 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007752 } else if (!offset) {
7753 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04007754 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007755checks:
David Sterba4e54b172014-06-05 01:39:19 +02007756 search_start = ALIGN(offset, root->stripesize);
Chris Masone37c9e62007-05-09 20:13:14 -04007757
Josef Bacik2552d172009-04-03 10:14:19 -04007758 /* move on to the next group */
7759 if (search_start + num_bytes >
Miao Xie215a63d2014-01-15 20:00:56 +08007760 block_group->key.objectid + block_group->key.offset) {
7761 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04007762 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04007763 }
Josef Bacik80eb2342008-10-29 14:49:05 -04007764
Josef Bacik6226cb02009-04-03 10:14:18 -04007765 if (offset < search_start)
Miao Xie215a63d2014-01-15 20:00:56 +08007766 btrfs_add_free_space(block_group, offset,
Josef Bacik6226cb02009-04-03 10:14:18 -04007767 search_start - offset);
7768 BUG_ON(offset > search_start);
7769
Wang Xiaoguang18513092016-07-25 15:51:40 +08007770 ret = btrfs_add_reserved_bytes(block_group, ram_bytes,
7771 num_bytes, delalloc);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007772 if (ret == -EAGAIN) {
Miao Xie215a63d2014-01-15 20:00:56 +08007773 btrfs_add_free_space(block_group, offset, num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007774 goto loop;
7775 }
Filipe Manana9cfa3e32016-04-26 15:39:32 +01007776 btrfs_inc_block_group_reservations(block_group);
Yan Zheng11833d62009-09-11 16:11:19 -04007777
Josef Bacik2552d172009-04-03 10:14:19 -04007778 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007779 ins->objectid = search_start;
7780 ins->offset = num_bytes;
7781
Josef Bacik3f7de032011-11-10 08:29:20 -05007782 trace_btrfs_reserve_extent(orig_root, block_group,
7783 search_start, num_bytes);
Miao Xiee570fd22014-06-19 10:42:50 +08007784 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007785 break;
7786loop:
Josef Bacik0a243252009-09-11 16:11:20 -04007787 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007788 failed_alloc = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04007789 BUG_ON(index != get_block_group_index(block_group));
Miao Xiee570fd22014-06-19 10:42:50 +08007790 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007791 }
7792 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05007793
chandan13a0db52015-11-02 13:59:46 +05307794 if ((loop == LOOP_CACHING_NOWAIT) && have_caching_bg
7795 && !orig_have_caching_bg)
7796 orig_have_caching_bg = true;
7797
Miao Xie60d2adb2011-09-09 17:34:35 +08007798 if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg)
7799 goto search;
7800
Yan, Zhengb742bb82010-05-16 10:46:24 -04007801 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
7802 goto search;
7803
Josef Bacik285ff5a2012-01-13 15:27:45 -05007804 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05007805 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
7806 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04007807 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
7808 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
7809 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
7810 * again
Chris Masonfa9c0d792009-04-03 09:47:43 -04007811 */
Josef Bacik723bda22011-05-27 16:11:38 -04007812 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) {
Yan, Zhengb742bb82010-05-16 10:46:24 -04007813 index = 0;
Josef Bacika5e681d2015-10-01 14:54:10 -04007814 if (loop == LOOP_CACHING_NOWAIT) {
7815 /*
7816 * We want to skip the LOOP_CACHING_WAIT step if we
Nicholas D Steeves01327612016-05-19 21:18:45 -04007817 * don't have any uncached bgs and we've already done a
Josef Bacika5e681d2015-10-01 14:54:10 -04007818 * full search through.
7819 */
chandan13a0db52015-11-02 13:59:46 +05307820 if (orig_have_caching_bg || !full_search)
Josef Bacika5e681d2015-10-01 14:54:10 -04007821 loop = LOOP_CACHING_WAIT;
7822 else
7823 loop = LOOP_ALLOC_CHUNK;
7824 } else {
7825 loop++;
7826 }
7827
Josef Bacik817d52f2009-07-13 21:29:25 -04007828 if (loop == LOOP_ALLOC_CHUNK) {
Josef Bacik00361582013-08-14 14:02:47 -04007829 struct btrfs_trans_handle *trans;
Wang Shilongf017f152014-03-13 13:19:47 +08007830 int exist = 0;
Josef Bacik00361582013-08-14 14:02:47 -04007831
Wang Shilongf017f152014-03-13 13:19:47 +08007832 trans = current->journal_info;
7833 if (trans)
7834 exist = 1;
7835 else
7836 trans = btrfs_join_transaction(root);
7837
Josef Bacik00361582013-08-14 14:02:47 -04007838 if (IS_ERR(trans)) {
7839 ret = PTR_ERR(trans);
7840 goto out;
7841 }
7842
David Sterbab6919a52013-04-29 13:39:40 +00007843 ret = do_chunk_alloc(trans, root, flags,
Josef Bacikea658ba2012-09-11 16:57:25 -04007844 CHUNK_ALLOC_FORCE);
Josef Bacika5e681d2015-10-01 14:54:10 -04007845
7846 /*
7847 * If we can't allocate a new chunk we've already looped
7848 * through at least once, move on to the NO_EMPTY_SIZE
7849 * case.
7850 */
7851 if (ret == -ENOSPC)
7852 loop = LOOP_NO_EMPTY_SIZE;
7853
Josef Bacikea658ba2012-09-11 16:57:25 -04007854 /*
7855 * Do not bail out on ENOSPC since we
7856 * can do more things.
7857 */
Josef Bacik00361582013-08-14 14:02:47 -04007858 if (ret < 0 && ret != -ENOSPC)
Jeff Mahoney66642832016-06-10 18:19:25 -04007859 btrfs_abort_transaction(trans, ret);
Josef Bacik00361582013-08-14 14:02:47 -04007860 else
7861 ret = 0;
Wang Shilongf017f152014-03-13 13:19:47 +08007862 if (!exist)
7863 btrfs_end_transaction(trans, root);
Josef Bacik00361582013-08-14 14:02:47 -04007864 if (ret)
Josef Bacikea658ba2012-09-11 16:57:25 -04007865 goto out;
Josef Bacik723bda22011-05-27 16:11:38 -04007866 }
7867
7868 if (loop == LOOP_NO_EMPTY_SIZE) {
Josef Bacika5e681d2015-10-01 14:54:10 -04007869 /*
7870 * Don't loop again if we already have no empty_size and
7871 * no empty_cluster.
7872 */
7873 if (empty_size == 0 &&
7874 empty_cluster == 0) {
7875 ret = -ENOSPC;
7876 goto out;
7877 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007878 empty_size = 0;
7879 empty_cluster = 0;
7880 }
Chris Mason42e70e72008-11-07 18:17:11 -05007881
Josef Bacik723bda22011-05-27 16:11:38 -04007882 goto search;
Josef Bacik2552d172009-04-03 10:14:19 -04007883 } else if (!ins->objectid) {
7884 ret = -ENOSPC;
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04007885 } else if (ins->objectid) {
Josef Bacikc759c4e2015-10-02 15:25:10 -04007886 if (!use_cluster && last_ptr) {
7887 spin_lock(&last_ptr->lock);
7888 last_ptr->window_start = ins->objectid;
7889 spin_unlock(&last_ptr->lock);
7890 }
Josef Bacik2552d172009-04-03 10:14:19 -04007891 ret = 0;
7892 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007893out:
Josef Bacik4f4db212015-09-29 11:40:47 -04007894 if (ret == -ENOSPC) {
7895 spin_lock(&space_info->lock);
7896 space_info->max_extent_size = max_extent_size;
7897 spin_unlock(&space_info->lock);
Miao Xiea4820392013-09-09 13:19:42 +08007898 ins->offset = max_extent_size;
Josef Bacik4f4db212015-09-29 11:40:47 -04007899 }
Chris Mason0f70abe2007-02-28 16:46:22 -05007900 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05007901}
Chris Masonec44a352008-04-28 15:29:52 -04007902
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007903static void dump_space_info(struct btrfs_fs_info *fs_info,
7904 struct btrfs_space_info *info, u64 bytes,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007905 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04007906{
7907 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb82010-05-16 10:46:24 -04007908 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007909
Josef Bacik9ed74f22009-09-11 16:12:44 -04007910 spin_lock(&info->lock);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007911 btrfs_info(fs_info, "space_info %llu has %llu free, is %sfull",
7912 info->flags,
7913 info->total_bytes - info->bytes_used - info->bytes_pinned -
7914 info->bytes_reserved - info->bytes_readonly -
7915 info->bytes_may_use, (info->full) ? "" : "not ");
7916 btrfs_info(fs_info,
7917 "space_info total=%llu, used=%llu, pinned=%llu, reserved=%llu, may_use=%llu, readonly=%llu",
7918 info->total_bytes, info->bytes_used, info->bytes_pinned,
7919 info->bytes_reserved, info->bytes_may_use,
7920 info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007921 spin_unlock(&info->lock);
7922
7923 if (!dump_block_groups)
7924 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007925
Josef Bacik80eb2342008-10-29 14:49:05 -04007926 down_read(&info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04007927again:
7928 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04007929 spin_lock(&cache->lock);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007930 btrfs_info(fs_info,
7931 "block group %llu has %llu bytes, %llu used %llu pinned %llu reserved %s",
7932 cache->key.objectid, cache->key.offset,
7933 btrfs_block_group_used(&cache->item), cache->pinned,
7934 cache->reserved, cache->ro ? "[readonly]" : "");
Josef Bacik0f9dd462008-09-23 13:14:11 -04007935 btrfs_dump_free_space(cache, bytes);
7936 spin_unlock(&cache->lock);
7937 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04007938 if (++index < BTRFS_NR_RAID_TYPES)
7939 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04007940 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04007941}
Zheng Yane8569812008-09-26 10:05:48 -04007942
Wang Xiaoguang18513092016-07-25 15:51:40 +08007943int btrfs_reserve_extent(struct btrfs_root *root, u64 ram_bytes,
Yan Zheng11833d62009-09-11 16:11:19 -04007944 u64 num_bytes, u64 min_alloc_size,
7945 u64 empty_size, u64 hint_byte,
Miao Xiee570fd22014-06-19 10:42:50 +08007946 struct btrfs_key *ins, int is_data, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05007947{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007948 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik36af4e02015-09-25 16:13:11 -04007949 bool final_tried = num_bytes == min_alloc_size;
David Sterbab6919a52013-04-29 13:39:40 +00007950 u64 flags;
Chris Masonfec577f2007-02-26 10:40:21 -05007951 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04007952
David Sterbab6919a52013-04-29 13:39:40 +00007953 flags = btrfs_get_alloc_profile(root, is_data);
Chris Mason98d20f62008-04-14 09:46:10 -04007954again:
Chris Masondb945352007-10-15 16:15:53 -04007955 WARN_ON(num_bytes < root->sectorsize);
Wang Xiaoguang18513092016-07-25 15:51:40 +08007956 ret = find_free_extent(root, ram_bytes, num_bytes, empty_size,
7957 hint_byte, ins, flags, delalloc);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01007958 if (!ret && !is_data) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007959 btrfs_dec_block_group_reservations(fs_info, ins->objectid);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01007960 } else if (ret == -ENOSPC) {
Miao Xiea4820392013-09-09 13:19:42 +08007961 if (!final_tried && ins->offset) {
7962 num_bytes = min(num_bytes >> 1, ins->offset);
Zach Brown24542bf2012-11-16 00:04:43 +00007963 num_bytes = round_down(num_bytes, root->sectorsize);
Miao Xie9e622d62012-01-26 15:01:12 -05007964 num_bytes = max(num_bytes, min_alloc_size);
Wang Xiaoguang18513092016-07-25 15:51:40 +08007965 ram_bytes = num_bytes;
Miao Xie9e622d62012-01-26 15:01:12 -05007966 if (num_bytes == min_alloc_size)
7967 final_tried = true;
7968 goto again;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007969 } else if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Miao Xie9e622d62012-01-26 15:01:12 -05007970 struct btrfs_space_info *sinfo;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007971
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007972 sinfo = __find_space_info(fs_info, flags);
Jeff Mahoney5d163e02016-09-20 10:05:00 -04007973 btrfs_err(root->fs_info,
7974 "allocation failed flags %llu, wanted %llu",
7975 flags, num_bytes);
Jeff Mahoney53804282012-03-01 14:56:28 +01007976 if (sinfo)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007977 dump_space_info(fs_info, sinfo, num_bytes, 1);
Miao Xie9e622d62012-01-26 15:01:12 -05007978 }
Chris Mason925baed2008-06-25 16:01:30 -04007979 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04007980
7981 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007982}
7983
Chris Masone688b7252011-10-31 20:52:39 -04007984static int __btrfs_free_reserved_extent(struct btrfs_root *root,
Miao Xiee570fd22014-06-19 10:42:50 +08007985 u64 start, u64 len,
7986 int pin, int delalloc)
Chris Mason65b51a02008-08-01 15:11:20 -04007987{
Josef Bacik0f9dd462008-09-23 13:14:11 -04007988 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05007989 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007990
Josef Bacik0f9dd462008-09-23 13:14:11 -04007991 cache = btrfs_lookup_block_group(root->fs_info, start);
7992 if (!cache) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007993 btrfs_err(root->fs_info, "Unable to find block group for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007994 start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04007995 return -ENOSPC;
7996 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05007997
Chris Masone688b7252011-10-31 20:52:39 -04007998 if (pin)
7999 pin_down_extent(root, cache, start, len, 1);
8000 else {
Jeff Mahoney3cdde222016-06-09 21:38:35 -04008001 if (btrfs_test_opt(root->fs_info, DISCARD))
Filipe Mananadcc82f42015-03-23 14:07:40 +00008002 ret = btrfs_discard_extent(root, start, len, NULL);
Chris Masone688b7252011-10-31 20:52:39 -04008003 btrfs_add_free_space(cache, start, len);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08008004 btrfs_free_reserved_bytes(cache, len, delalloc);
Josef Bacik31bada72016-03-25 13:25:58 -04008005 trace_btrfs_reserved_extent_free(root, start, len);
Chris Masone688b7252011-10-31 20:52:39 -04008006 }
Dongsheng Yang31193212014-12-12 16:44:35 +08008007
Chris Masonfa9c0d792009-04-03 09:47:43 -04008008 btrfs_put_block_group(cache);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008009 return ret;
8010}
8011
Chris Masone688b7252011-10-31 20:52:39 -04008012int btrfs_free_reserved_extent(struct btrfs_root *root,
Miao Xiee570fd22014-06-19 10:42:50 +08008013 u64 start, u64 len, int delalloc)
Chris Masone688b7252011-10-31 20:52:39 -04008014{
Miao Xiee570fd22014-06-19 10:42:50 +08008015 return __btrfs_free_reserved_extent(root, start, len, 0, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04008016}
8017
8018int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root,
8019 u64 start, u64 len)
8020{
Miao Xiee570fd22014-06-19 10:42:50 +08008021 return __btrfs_free_reserved_extent(root, start, len, 1, 0);
Chris Masone688b7252011-10-31 20:52:39 -04008022}
8023
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008024static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
8025 struct btrfs_root *root,
8026 u64 parent, u64 root_objectid,
8027 u64 flags, u64 owner, u64 offset,
8028 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008029{
8030 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008031 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008032 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008033 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008034 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008035 struct extent_buffer *leaf;
8036 int type;
8037 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04008038
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008039 if (parent > 0)
8040 type = BTRFS_SHARED_DATA_REF_KEY;
8041 else
8042 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04008043
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008044 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05008045
8046 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00008047 if (!path)
8048 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05008049
Chris Masonb9473432009-03-13 11:00:37 -04008050 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008051 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
8052 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008053 if (ret) {
8054 btrfs_free_path(path);
8055 return ret;
8056 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04008057
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008058 leaf = path->nodes[0];
8059 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05008060 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008061 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
8062 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8063 btrfs_set_extent_flags(leaf, extent_item,
8064 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05008065
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008066 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
8067 btrfs_set_extent_inline_ref_type(leaf, iref, type);
8068 if (parent > 0) {
8069 struct btrfs_shared_data_ref *ref;
8070 ref = (struct btrfs_shared_data_ref *)(iref + 1);
8071 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
8072 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
8073 } else {
8074 struct btrfs_extent_data_ref *ref;
8075 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
8076 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
8077 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
8078 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
8079 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
8080 }
Chris Mason47e4bb92008-02-01 14:51:59 -05008081
8082 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05008083 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04008084
Omar Sandoval1e144fb2015-09-29 20:50:37 -07008085 ret = remove_from_free_space_tree(trans, fs_info, ins->objectid,
8086 ins->offset);
8087 if (ret)
8088 return ret;
8089
Josef Bacikce93ec52014-11-17 15:45:48 -05008090 ret = update_block_group(trans, root, ins->objectid, ins->offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008091 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008092 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02008093 ins->objectid, ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05008094 BUG();
8095 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04008096 trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008097 return ret;
8098}
8099
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008100static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
8101 struct btrfs_root *root,
8102 u64 parent, u64 root_objectid,
8103 u64 flags, struct btrfs_disk_key *key,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01008104 int level, struct btrfs_key *ins)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008105{
8106 int ret;
8107 struct btrfs_fs_info *fs_info = root->fs_info;
8108 struct btrfs_extent_item *extent_item;
8109 struct btrfs_tree_block_info *block_info;
8110 struct btrfs_extent_inline_ref *iref;
8111 struct btrfs_path *path;
8112 struct extent_buffer *leaf;
Josef Bacik3173a182013-03-07 14:22:04 -05008113 u32 size = sizeof(*extent_item) + sizeof(*iref);
Josef Bacikfcebe452014-05-13 17:30:47 -07008114 u64 num_bytes = ins->offset;
Josef Bacik3173a182013-03-07 14:22:04 -05008115 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
8116 SKINNY_METADATA);
8117
8118 if (!skinny_metadata)
8119 size += sizeof(*block_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008120
8121 path = btrfs_alloc_path();
Josef Bacik857cc2f2013-10-07 15:21:08 -04008122 if (!path) {
8123 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
David Sterba707e8a02014-06-04 19:22:26 +02008124 root->nodesize);
Mark Fashehd8926bb2011-07-13 10:38:47 -07008125 return -ENOMEM;
Josef Bacik857cc2f2013-10-07 15:21:08 -04008126 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008127
8128 path->leave_spinning = 1;
8129 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
8130 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008131 if (ret) {
Chris Masondd825252015-04-01 08:36:05 -07008132 btrfs_free_path(path);
Josef Bacik857cc2f2013-10-07 15:21:08 -04008133 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
David Sterba707e8a02014-06-04 19:22:26 +02008134 root->nodesize);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008135 return ret;
8136 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008137
8138 leaf = path->nodes[0];
8139 extent_item = btrfs_item_ptr(leaf, path->slots[0],
8140 struct btrfs_extent_item);
8141 btrfs_set_extent_refs(leaf, extent_item, 1);
8142 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8143 btrfs_set_extent_flags(leaf, extent_item,
8144 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008145
Josef Bacik3173a182013-03-07 14:22:04 -05008146 if (skinny_metadata) {
8147 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
David Sterba707e8a02014-06-04 19:22:26 +02008148 num_bytes = root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05008149 } else {
8150 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
8151 btrfs_set_tree_block_key(leaf, block_info, key);
8152 btrfs_set_tree_block_level(leaf, block_info, level);
8153 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
8154 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008155
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008156 if (parent > 0) {
8157 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
8158 btrfs_set_extent_inline_ref_type(leaf, iref,
8159 BTRFS_SHARED_BLOCK_REF_KEY);
8160 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
8161 } else {
8162 btrfs_set_extent_inline_ref_type(leaf, iref,
8163 BTRFS_TREE_BLOCK_REF_KEY);
8164 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
8165 }
8166
8167 btrfs_mark_buffer_dirty(leaf);
8168 btrfs_free_path(path);
8169
Omar Sandoval1e144fb2015-09-29 20:50:37 -07008170 ret = remove_from_free_space_tree(trans, fs_info, ins->objectid,
8171 num_bytes);
8172 if (ret)
8173 return ret;
8174
Josef Bacikce93ec52014-11-17 15:45:48 -05008175 ret = update_block_group(trans, root, ins->objectid, root->nodesize,
8176 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008177 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008178 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02008179 ins->objectid, ins->offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008180 BUG();
8181 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04008182
David Sterba707e8a02014-06-04 19:22:26 +02008183 trace_btrfs_reserved_extent_alloc(root, ins->objectid, root->nodesize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008184 return ret;
8185}
8186
8187int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
8188 struct btrfs_root *root,
8189 u64 root_objectid, u64 owner,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08008190 u64 offset, u64 ram_bytes,
8191 struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008192{
8193 int ret;
Chris Mason1c2308f82008-09-23 13:14:13 -04008194
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008195 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04008196
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008197 ret = btrfs_add_delayed_data_ref(root->fs_info, trans, ins->objectid,
8198 ins->offset, 0,
8199 root_objectid, owner, offset,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08008200 ram_bytes, BTRFS_ADD_DELAYED_EXTENT,
8201 NULL);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008202 return ret;
8203}
Chris Masone02119d2008-09-05 16:13:11 -04008204
8205/*
8206 * this is used by the tree logging recovery code. It records that
8207 * an extent has been allocated and makes sure to clear the free
8208 * space cache bits as well
8209 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008210int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
8211 struct btrfs_root *root,
8212 u64 root_objectid, u64 owner, u64 offset,
8213 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04008214{
8215 int ret;
8216 struct btrfs_block_group_cache *block_group;
Wang Xiaoguanged7a6942016-08-26 11:33:14 +08008217 struct btrfs_space_info *space_info;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008218
8219 /*
8220 * Mixed block groups will exclude before processing the log so we only
Nicholas D Steeves01327612016-05-19 21:18:45 -04008221 * need to do the exclude dance if this fs isn't mixed.
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008222 */
8223 if (!btrfs_fs_incompat(root->fs_info, MIXED_GROUPS)) {
8224 ret = __exclude_logged_extent(root, ins->objectid, ins->offset);
8225 if (ret)
8226 return ret;
8227 }
Chris Masone02119d2008-09-05 16:13:11 -04008228
Chris Masone02119d2008-09-05 16:13:11 -04008229 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008230 if (!block_group)
8231 return -EINVAL;
Yan Zheng11833d62009-09-11 16:11:19 -04008232
Wang Xiaoguanged7a6942016-08-26 11:33:14 +08008233 space_info = block_group->space_info;
8234 spin_lock(&space_info->lock);
8235 spin_lock(&block_group->lock);
8236 space_info->bytes_reserved += ins->offset;
8237 block_group->reserved += ins->offset;
8238 spin_unlock(&block_group->lock);
8239 spin_unlock(&space_info->lock);
8240
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008241 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
8242 0, owner, offset, ins, 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04008243 btrfs_put_block_group(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04008244 return ret;
8245}
8246
Eric Sandeen48a3b632013-04-25 20:41:01 +00008247static struct extent_buffer *
8248btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
David Sterbafe864572014-06-15 02:28:42 +02008249 u64 bytenr, int level)
Chris Mason65b51a02008-08-01 15:11:20 -04008250{
8251 struct extent_buffer *buf;
8252
David Sterbaa83fffb2014-06-15 02:39:54 +02008253 buf = btrfs_find_create_tree_block(root, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07008254 if (IS_ERR(buf))
8255 return buf;
8256
Chris Mason65b51a02008-08-01 15:11:20 -04008257 btrfs_set_header_generation(buf, trans->transid);
Chris Mason85d4e462011-07-26 16:11:19 -04008258 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04008259 btrfs_tree_lock(buf);
Daniel Dressler01d58472014-11-21 17:15:07 +09008260 clean_tree_block(trans, root->fs_info, buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05008261 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
Chris Masonb4ce94d2009-02-04 09:25:08 -05008262
8263 btrfs_set_lock_blocking(buf);
David Sterba4db8c522015-12-03 13:06:46 +01008264 set_extent_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05008265
Chris Masond0c803c2008-09-11 16:17:57 -04008266 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Filipe Manana656f30d2014-09-26 12:25:56 +01008267 buf->log_index = root->log_transid % 2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008268 /*
8269 * we allow two log transactions at a time, use different
8270 * EXENT bit to differentiate dirty pages.
8271 */
Filipe Manana656f30d2014-09-26 12:25:56 +01008272 if (buf->log_index == 0)
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008273 set_extent_dirty(&root->dirty_log_pages, buf->start,
8274 buf->start + buf->len - 1, GFP_NOFS);
8275 else
8276 set_extent_new(&root->dirty_log_pages, buf->start,
David Sterba3744dbe2016-04-26 23:54:39 +02008277 buf->start + buf->len - 1);
Chris Masond0c803c2008-09-11 16:17:57 -04008278 } else {
Filipe Manana656f30d2014-09-26 12:25:56 +01008279 buf->log_index = -1;
Chris Masond0c803c2008-09-11 16:17:57 -04008280 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
8281 buf->start + buf->len - 1, GFP_NOFS);
8282 }
Jeff Mahoney64c12922016-06-08 00:36:38 -04008283 trans->dirty = true;
Chris Masonb4ce94d2009-02-04 09:25:08 -05008284 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04008285 return buf;
8286}
8287
Yan, Zhengf0486c62010-05-16 10:46:25 -04008288static struct btrfs_block_rsv *
8289use_block_rsv(struct btrfs_trans_handle *trans,
8290 struct btrfs_root *root, u32 blocksize)
8291{
8292 struct btrfs_block_rsv *block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00008293 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008294 int ret;
Miao Xied88033d2013-05-13 13:55:12 +00008295 bool global_updated = false;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008296
8297 block_rsv = get_block_rsv(trans, root);
8298
Miao Xieb586b322013-05-13 13:55:10 +00008299 if (unlikely(block_rsv->size == 0))
8300 goto try_reserve;
Miao Xied88033d2013-05-13 13:55:12 +00008301again:
Yan, Zhengf0486c62010-05-16 10:46:25 -04008302 ret = block_rsv_use_bytes(block_rsv, blocksize);
8303 if (!ret)
8304 return block_rsv;
8305
Miao Xieb586b322013-05-13 13:55:10 +00008306 if (block_rsv->failfast)
8307 return ERR_PTR(ret);
8308
Miao Xied88033d2013-05-13 13:55:12 +00008309 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
8310 global_updated = true;
8311 update_global_block_rsv(root->fs_info);
8312 goto again;
8313 }
8314
Jeff Mahoney3cdde222016-06-09 21:38:35 -04008315 if (btrfs_test_opt(root->fs_info, ENOSPC_DEBUG)) {
Miao Xieb586b322013-05-13 13:55:10 +00008316 static DEFINE_RATELIMIT_STATE(_rs,
8317 DEFAULT_RATELIMIT_INTERVAL * 10,
8318 /*DEFAULT_RATELIMIT_BURST*/ 1);
8319 if (__ratelimit(&_rs))
8320 WARN(1, KERN_DEBUG
Frank Holtonefe120a2013-12-20 11:37:06 -05008321 "BTRFS: block rsv returned %d\n", ret);
Miao Xieb586b322013-05-13 13:55:10 +00008322 }
8323try_reserve:
8324 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
8325 BTRFS_RESERVE_NO_FLUSH);
8326 if (!ret)
8327 return block_rsv;
8328 /*
8329 * If we couldn't reserve metadata bytes try and use some from
Miao Xie5881cfc2013-05-13 13:55:11 +00008330 * the global reserve if its space type is the same as the global
8331 * reservation.
Miao Xieb586b322013-05-13 13:55:10 +00008332 */
Miao Xie5881cfc2013-05-13 13:55:11 +00008333 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
8334 block_rsv->space_info == global_rsv->space_info) {
Miao Xieb586b322013-05-13 13:55:10 +00008335 ret = block_rsv_use_bytes(global_rsv, blocksize);
8336 if (!ret)
8337 return global_rsv;
8338 }
8339 return ERR_PTR(ret);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008340}
8341
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05008342static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
8343 struct btrfs_block_rsv *block_rsv, u32 blocksize)
Yan, Zhengf0486c62010-05-16 10:46:25 -04008344{
8345 block_rsv_add_bytes(block_rsv, blocksize, 0);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05008346 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008347}
8348
Chris Masonfec577f2007-02-26 10:40:21 -05008349/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04008350 * finds a free extent and does all the dirty work required for allocation
Omar Sandoval67b78592015-02-24 02:47:04 -08008351 * returns the tree buffer or an ERR_PTR on error.
Chris Masonfec577f2007-02-26 10:40:21 -05008352 */
David Sterba4d75f8a2014-06-15 01:54:12 +02008353struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans,
8354 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008355 u64 parent, u64 root_objectid,
8356 struct btrfs_disk_key *key, int level,
Jan Schmidt5581a512012-05-16 17:04:52 +02008357 u64 hint, u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05008358{
Chris Masone2fa7222007-03-12 16:22:34 -04008359 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008360 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04008361 struct extent_buffer *buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08008362 struct btrfs_delayed_extent_op *extent_op;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008363 u64 flags = 0;
8364 int ret;
David Sterba4d75f8a2014-06-15 01:54:12 +02008365 u32 blocksize = root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05008366 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
8367 SKINNY_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008368
David Sterba05653ef2016-07-15 15:23:37 +02008369#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -04008370 if (btrfs_is_testing(root->fs_info)) {
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04008371 buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr,
David Sterbafe864572014-06-15 02:28:42 +02008372 level);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04008373 if (!IS_ERR(buf))
8374 root->alloc_bytenr += blocksize;
8375 return buf;
8376 }
David Sterba05653ef2016-07-15 15:23:37 +02008377#endif
David Sterbafccb84c2014-09-29 23:53:21 +02008378
Yan, Zhengf0486c62010-05-16 10:46:25 -04008379 block_rsv = use_block_rsv(trans, root, blocksize);
8380 if (IS_ERR(block_rsv))
8381 return ERR_CAST(block_rsv);
8382
Wang Xiaoguang18513092016-07-25 15:51:40 +08008383 ret = btrfs_reserve_extent(root, blocksize, blocksize, blocksize,
Miao Xiee570fd22014-06-19 10:42:50 +08008384 empty_size, hint, &ins, 0, 0);
Omar Sandoval67b78592015-02-24 02:47:04 -08008385 if (ret)
8386 goto out_unuse;
Chris Mason55c69072008-01-09 15:55:33 -05008387
David Sterbafe864572014-06-15 02:28:42 +02008388 buf = btrfs_init_new_buffer(trans, root, ins.objectid, level);
Omar Sandoval67b78592015-02-24 02:47:04 -08008389 if (IS_ERR(buf)) {
8390 ret = PTR_ERR(buf);
8391 goto out_free_reserved;
8392 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008393
8394 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
8395 if (parent == 0)
8396 parent = ins.objectid;
8397 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
8398 } else
8399 BUG_ON(parent > 0);
8400
8401 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
Miao Xie78a61842012-11-21 02:21:28 +00008402 extent_op = btrfs_alloc_delayed_extent_op();
Omar Sandoval67b78592015-02-24 02:47:04 -08008403 if (!extent_op) {
8404 ret = -ENOMEM;
8405 goto out_free_buf;
8406 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008407 if (key)
8408 memcpy(&extent_op->key, key, sizeof(extent_op->key));
8409 else
8410 memset(&extent_op->key, 0, sizeof(extent_op->key));
8411 extent_op->flags_to_set = flags;
David Sterba35b3ad52015-11-30 16:51:29 +01008412 extent_op->update_key = skinny_metadata ? false : true;
8413 extent_op->update_flags = true;
8414 extent_op->is_data = false;
Josef Bacikb1c79e02013-05-09 13:49:30 -04008415 extent_op->level = level;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008416
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008417 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
Omar Sandoval67b78592015-02-24 02:47:04 -08008418 ins.objectid, ins.offset,
8419 parent, root_objectid, level,
8420 BTRFS_ADD_DELAYED_EXTENT,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01008421 extent_op);
Omar Sandoval67b78592015-02-24 02:47:04 -08008422 if (ret)
8423 goto out_free_delayed;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008424 }
Chris Masonfec577f2007-02-26 10:40:21 -05008425 return buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08008426
8427out_free_delayed:
8428 btrfs_free_delayed_extent_op(extent_op);
8429out_free_buf:
8430 free_extent_buffer(buf);
8431out_free_reserved:
8432 btrfs_free_reserved_extent(root, ins.objectid, ins.offset, 0);
8433out_unuse:
8434 unuse_block_rsv(root->fs_info, block_rsv, blocksize);
8435 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05008436}
Chris Masona28ec192007-03-06 20:08:01 -05008437
Yan Zheng2c47e6052009-06-27 21:07:35 -04008438struct walk_control {
8439 u64 refs[BTRFS_MAX_LEVEL];
8440 u64 flags[BTRFS_MAX_LEVEL];
8441 struct btrfs_key update_progress;
8442 int stage;
8443 int level;
8444 int shared_level;
8445 int update_ref;
8446 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008447 int reada_slot;
8448 int reada_count;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008449 int for_reloc;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008450};
8451
8452#define DROP_REFERENCE 1
8453#define UPDATE_BACKREF 2
8454
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008455static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
8456 struct btrfs_root *root,
8457 struct walk_control *wc,
8458 struct btrfs_path *path)
8459{
8460 u64 bytenr;
8461 u64 generation;
8462 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008463 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008464 u32 nritems;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008465 struct btrfs_key key;
8466 struct extent_buffer *eb;
8467 int ret;
8468 int slot;
8469 int nread = 0;
8470
8471 if (path->slots[wc->level] < wc->reada_slot) {
8472 wc->reada_count = wc->reada_count * 2 / 3;
8473 wc->reada_count = max(wc->reada_count, 2);
8474 } else {
8475 wc->reada_count = wc->reada_count * 3 / 2;
8476 wc->reada_count = min_t(int, wc->reada_count,
8477 BTRFS_NODEPTRS_PER_BLOCK(root));
8478 }
8479
8480 eb = path->nodes[wc->level];
8481 nritems = btrfs_header_nritems(eb);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008482
8483 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
8484 if (nread >= wc->reada_count)
8485 break;
8486
8487 cond_resched();
8488 bytenr = btrfs_node_blockptr(eb, slot);
8489 generation = btrfs_node_ptr_generation(eb, slot);
8490
8491 if (slot == path->slots[wc->level])
8492 goto reada;
8493
8494 if (wc->stage == UPDATE_BACKREF &&
8495 generation <= root->root_key.offset)
8496 continue;
8497
Yan, Zheng94fcca92009-10-09 09:25:16 -04008498 /* We don't lock the tree block, it's OK to be racy here */
Josef Bacik3173a182013-03-07 14:22:04 -05008499 ret = btrfs_lookup_extent_info(trans, root, bytenr,
8500 wc->level - 1, 1, &refs,
8501 &flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008502 /* We don't care about errors in readahead. */
8503 if (ret < 0)
8504 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008505 BUG_ON(refs == 0);
8506
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008507 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008508 if (refs == 1)
8509 goto reada;
8510
Yan, Zheng94fcca92009-10-09 09:25:16 -04008511 if (wc->level == 1 &&
8512 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8513 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008514 if (!wc->update_ref ||
8515 generation <= root->root_key.offset)
8516 continue;
8517 btrfs_node_key_to_cpu(eb, &key, slot);
8518 ret = btrfs_comp_cpu_keys(&key,
8519 &wc->update_progress);
8520 if (ret < 0)
8521 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008522 } else {
8523 if (wc->level == 1 &&
8524 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8525 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008526 }
8527reada:
David Sterbad3e46fe2014-06-15 02:04:19 +02008528 readahead_tree_block(root, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008529 nread++;
8530 }
8531 wc->reada_slot = slot;
8532}
8533
Mark Fasheh11526512014-07-17 12:39:01 -07008534static int account_leaf_items(struct btrfs_trans_handle *trans,
8535 struct btrfs_root *root,
8536 struct extent_buffer *eb)
8537{
8538 int nr = btrfs_header_nritems(eb);
Mark Fasheh82bd1012015-11-05 14:38:00 -08008539 int i, extent_type, ret;
Mark Fasheh11526512014-07-17 12:39:01 -07008540 struct btrfs_key key;
8541 struct btrfs_file_extent_item *fi;
8542 u64 bytenr, num_bytes;
8543
Mark Fasheh82bd1012015-11-05 14:38:00 -08008544 /* We can be called directly from walk_up_proc() */
Josef Bacikafcdd122016-09-02 15:40:02 -04008545 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &root->fs_info->flags))
Mark Fasheh82bd1012015-11-05 14:38:00 -08008546 return 0;
8547
Mark Fasheh11526512014-07-17 12:39:01 -07008548 for (i = 0; i < nr; i++) {
8549 btrfs_item_key_to_cpu(eb, &key, i);
8550
8551 if (key.type != BTRFS_EXTENT_DATA_KEY)
8552 continue;
8553
8554 fi = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
8555 /* filter out non qgroup-accountable extents */
8556 extent_type = btrfs_file_extent_type(eb, fi);
8557
8558 if (extent_type == BTRFS_FILE_EXTENT_INLINE)
8559 continue;
8560
8561 bytenr = btrfs_file_extent_disk_bytenr(eb, fi);
8562 if (!bytenr)
8563 continue;
8564
8565 num_bytes = btrfs_file_extent_disk_num_bytes(eb, fi);
Mark Fasheh82bd1012015-11-05 14:38:00 -08008566
Qu Wenruocb93b522016-08-15 10:36:50 +08008567 ret = btrfs_qgroup_insert_dirty_extent(trans, root->fs_info,
8568 bytenr, num_bytes, GFP_NOFS);
Mark Fasheh82bd1012015-11-05 14:38:00 -08008569 if (ret)
8570 return ret;
Mark Fasheh11526512014-07-17 12:39:01 -07008571 }
8572 return 0;
8573}
8574
8575/*
8576 * Walk up the tree from the bottom, freeing leaves and any interior
8577 * nodes which have had all slots visited. If a node (leaf or
8578 * interior) is freed, the node above it will have it's slot
8579 * incremented. The root node will never be freed.
8580 *
8581 * At the end of this function, we should have a path which has all
8582 * slots incremented to the next position for a search. If we need to
8583 * read a new node it will be NULL and the node above it will have the
8584 * correct slot selected for a later read.
8585 *
8586 * If we increment the root nodes slot counter past the number of
8587 * elements, 1 is returned to signal completion of the search.
8588 */
8589static int adjust_slots_upwards(struct btrfs_root *root,
8590 struct btrfs_path *path, int root_level)
8591{
8592 int level = 0;
8593 int nr, slot;
8594 struct extent_buffer *eb;
8595
8596 if (root_level == 0)
8597 return 1;
8598
8599 while (level <= root_level) {
8600 eb = path->nodes[level];
8601 nr = btrfs_header_nritems(eb);
8602 path->slots[level]++;
8603 slot = path->slots[level];
8604 if (slot >= nr || level == 0) {
8605 /*
8606 * Don't free the root - we will detect this
8607 * condition after our loop and return a
8608 * positive value for caller to stop walking the tree.
8609 */
8610 if (level != root_level) {
8611 btrfs_tree_unlock_rw(eb, path->locks[level]);
8612 path->locks[level] = 0;
8613
8614 free_extent_buffer(eb);
8615 path->nodes[level] = NULL;
8616 path->slots[level] = 0;
8617 }
8618 } else {
8619 /*
8620 * We have a valid slot to walk back down
8621 * from. Stop here so caller can process these
8622 * new nodes.
8623 */
8624 break;
8625 }
8626
8627 level++;
8628 }
8629
8630 eb = path->nodes[root_level];
8631 if (path->slots[root_level] >= btrfs_header_nritems(eb))
8632 return 1;
8633
8634 return 0;
8635}
8636
8637/*
8638 * root_eb is the subtree root and is locked before this function is called.
8639 */
8640static int account_shared_subtree(struct btrfs_trans_handle *trans,
8641 struct btrfs_root *root,
8642 struct extent_buffer *root_eb,
8643 u64 root_gen,
8644 int root_level)
8645{
8646 int ret = 0;
8647 int level;
8648 struct extent_buffer *eb = root_eb;
8649 struct btrfs_path *path = NULL;
8650
8651 BUG_ON(root_level < 0 || root_level > BTRFS_MAX_LEVEL);
8652 BUG_ON(root_eb == NULL);
8653
Josef Bacikafcdd122016-09-02 15:40:02 -04008654 if (!test_bit(BTRFS_FS_QUOTA_ENABLED, &root->fs_info->flags))
Mark Fasheh11526512014-07-17 12:39:01 -07008655 return 0;
8656
8657 if (!extent_buffer_uptodate(root_eb)) {
8658 ret = btrfs_read_buffer(root_eb, root_gen);
8659 if (ret)
8660 goto out;
8661 }
8662
8663 if (root_level == 0) {
8664 ret = account_leaf_items(trans, root, root_eb);
8665 goto out;
8666 }
8667
8668 path = btrfs_alloc_path();
8669 if (!path)
8670 return -ENOMEM;
8671
8672 /*
8673 * Walk down the tree. Missing extent blocks are filled in as
8674 * we go. Metadata is accounted every time we read a new
8675 * extent block.
8676 *
8677 * When we reach a leaf, we account for file extent items in it,
8678 * walk back up the tree (adjusting slot pointers as we go)
8679 * and restart the search process.
8680 */
8681 extent_buffer_get(root_eb); /* For path */
8682 path->nodes[root_level] = root_eb;
8683 path->slots[root_level] = 0;
8684 path->locks[root_level] = 0; /* so release_path doesn't try to unlock */
8685walk_down:
8686 level = root_level;
8687 while (level >= 0) {
8688 if (path->nodes[level] == NULL) {
Mark Fasheh11526512014-07-17 12:39:01 -07008689 int parent_slot;
8690 u64 child_gen;
8691 u64 child_bytenr;
8692
8693 /* We need to get child blockptr/gen from
8694 * parent before we can read it. */
8695 eb = path->nodes[level + 1];
8696 parent_slot = path->slots[level + 1];
8697 child_bytenr = btrfs_node_blockptr(eb, parent_slot);
8698 child_gen = btrfs_node_ptr_generation(eb, parent_slot);
8699
David Sterbace86cd52014-06-15 01:07:32 +02008700 eb = read_tree_block(root, child_bytenr, child_gen);
Liu Bo64c043d2015-05-25 17:30:15 +08008701 if (IS_ERR(eb)) {
8702 ret = PTR_ERR(eb);
8703 goto out;
8704 } else if (!extent_buffer_uptodate(eb)) {
Liu Bo8635eda2015-05-25 17:30:14 +08008705 free_extent_buffer(eb);
Liu Bo64c043d2015-05-25 17:30:15 +08008706 ret = -EIO;
Mark Fasheh11526512014-07-17 12:39:01 -07008707 goto out;
8708 }
8709
8710 path->nodes[level] = eb;
8711 path->slots[level] = 0;
8712
8713 btrfs_tree_read_lock(eb);
8714 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
8715 path->locks[level] = BTRFS_READ_LOCK_BLOCKING;
Mark Fasheh82bd1012015-11-05 14:38:00 -08008716
Qu Wenruocb93b522016-08-15 10:36:50 +08008717 ret = btrfs_qgroup_insert_dirty_extent(trans,
8718 root->fs_info, child_bytenr,
8719 root->nodesize, GFP_NOFS);
Mark Fasheh82bd1012015-11-05 14:38:00 -08008720 if (ret)
8721 goto out;
Mark Fasheh11526512014-07-17 12:39:01 -07008722 }
8723
8724 if (level == 0) {
8725 ret = account_leaf_items(trans, root, path->nodes[level]);
8726 if (ret)
8727 goto out;
8728
8729 /* Nonzero return here means we completed our search */
8730 ret = adjust_slots_upwards(root, path, root_level);
8731 if (ret)
8732 break;
8733
8734 /* Restart search with new slots */
8735 goto walk_down;
8736 }
8737
8738 level--;
8739 }
8740
8741 ret = 0;
8742out:
8743 btrfs_free_path(path);
8744
8745 return ret;
8746}
8747
Chris Mason9aca1d52007-03-13 11:09:37 -04008748/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008749 * helper to process tree block while walking down the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04008750 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04008751 * when wc->stage == UPDATE_BACKREF, this function updates
8752 * back refs for pointers in the block.
8753 *
8754 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04008755 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008756static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
8757 struct btrfs_root *root,
8758 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008759 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04008760{
8761 int level = wc->level;
8762 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04008763 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
8764 int ret;
8765
8766 if (wc->stage == UPDATE_BACKREF &&
8767 btrfs_header_owner(eb) != root->root_key.objectid)
8768 return 1;
8769
8770 /*
8771 * when reference count of tree block is 1, it won't increase
8772 * again. once full backref flag is set, we never clear it.
8773 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04008774 if (lookup_info &&
8775 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
8776 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008777 BUG_ON(!path->locks[level]);
8778 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05008779 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008780 &wc->refs[level],
8781 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008782 BUG_ON(ret == -ENOMEM);
8783 if (ret)
8784 return ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008785 BUG_ON(wc->refs[level] == 0);
8786 }
8787
Yan Zheng2c47e6052009-06-27 21:07:35 -04008788 if (wc->stage == DROP_REFERENCE) {
8789 if (wc->refs[level] > 1)
8790 return 1;
8791
8792 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04008793 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008794 path->locks[level] = 0;
8795 }
8796 return 0;
8797 }
8798
8799 /* wc->stage == UPDATE_BACKREF */
8800 if (!(wc->flags[level] & flag)) {
8801 BUG_ON(!path->locks[level]);
Josef Bacike339a6b2014-07-02 10:54:25 -07008802 ret = btrfs_inc_ref(trans, root, eb, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008803 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07008804 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008805 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008806 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
Josef Bacikb1c79e02013-05-09 13:49:30 -04008807 eb->len, flag,
8808 btrfs_header_level(eb), 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008809 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008810 wc->flags[level] |= flag;
8811 }
8812
8813 /*
8814 * the block is shared by multiple trees, so it's not good to
8815 * keep the tree lock
8816 */
8817 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04008818 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008819 path->locks[level] = 0;
8820 }
8821 return 0;
8822}
8823
8824/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008825 * helper to process tree block pointer.
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008826 *
8827 * when wc->stage == DROP_REFERENCE, this function checks
8828 * reference count of the block pointed to. if the block
8829 * is shared and we need update back refs for the subtree
8830 * rooted at the block, this function changes wc->stage to
8831 * UPDATE_BACKREF. if the block is shared and there is no
8832 * need to update back, this function drops the reference
8833 * to the block.
8834 *
8835 * NOTE: return value 1 means we should stop walking down.
8836 */
8837static noinline int do_walk_down(struct btrfs_trans_handle *trans,
8838 struct btrfs_root *root,
8839 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008840 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008841{
8842 u64 bytenr;
8843 u64 generation;
8844 u64 parent;
8845 u32 blocksize;
8846 struct btrfs_key key;
8847 struct extent_buffer *next;
8848 int level = wc->level;
8849 int reada = 0;
8850 int ret = 0;
Mark Fasheh11526512014-07-17 12:39:01 -07008851 bool need_account = false;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008852
8853 generation = btrfs_node_ptr_generation(path->nodes[level],
8854 path->slots[level]);
8855 /*
8856 * if the lower level block was created before the snapshot
8857 * was created, we know there is no need to update back refs
8858 * for the subtree
8859 */
8860 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04008861 generation <= root->root_key.offset) {
8862 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008863 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008864 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008865
8866 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
David Sterba707e8a02014-06-04 19:22:26 +02008867 blocksize = root->nodesize;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008868
David Sterba62d1f9f2016-11-08 23:21:05 +01008869 next = find_extent_buffer(root->fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008870 if (!next) {
David Sterbaa83fffb2014-06-15 02:39:54 +02008871 next = btrfs_find_create_tree_block(root, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07008872 if (IS_ERR(next))
8873 return PTR_ERR(next);
8874
Josef Bacikb2aaaa32013-07-05 17:05:38 -04008875 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
8876 level - 1);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008877 reada = 1;
8878 }
8879 btrfs_tree_lock(next);
8880 btrfs_set_lock_blocking(next);
8881
Josef Bacik3173a182013-03-07 14:22:04 -05008882 ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008883 &wc->refs[level - 1],
8884 &wc->flags[level - 1]);
Josef Bacik48672682016-09-23 13:23:28 +02008885 if (ret < 0)
8886 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008887
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008888 if (unlikely(wc->refs[level - 1] == 0)) {
8889 btrfs_err(root->fs_info, "Missing references.");
Josef Bacik48672682016-09-23 13:23:28 +02008890 ret = -EIO;
8891 goto out_unlock;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008892 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008893 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008894
Yan, Zheng94fcca92009-10-09 09:25:16 -04008895 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008896 if (wc->refs[level - 1] > 1) {
Mark Fasheh11526512014-07-17 12:39:01 -07008897 need_account = true;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008898 if (level == 1 &&
8899 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8900 goto skip;
8901
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008902 if (!wc->update_ref ||
8903 generation <= root->root_key.offset)
8904 goto skip;
8905
8906 btrfs_node_key_to_cpu(path->nodes[level], &key,
8907 path->slots[level]);
8908 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
8909 if (ret < 0)
8910 goto skip;
8911
8912 wc->stage = UPDATE_BACKREF;
8913 wc->shared_level = level - 1;
8914 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008915 } else {
8916 if (level == 1 &&
8917 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8918 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008919 }
8920
Chris Masonb9fab912012-05-06 07:23:47 -04008921 if (!btrfs_buffer_uptodate(next, generation, 0)) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008922 btrfs_tree_unlock(next);
8923 free_extent_buffer(next);
8924 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008925 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008926 }
8927
8928 if (!next) {
8929 if (reada && level == 1)
8930 reada_walk_down(trans, root, wc, path);
David Sterbace86cd52014-06-15 01:07:32 +02008931 next = read_tree_block(root, bytenr, generation);
Liu Bo64c043d2015-05-25 17:30:15 +08008932 if (IS_ERR(next)) {
8933 return PTR_ERR(next);
8934 } else if (!extent_buffer_uptodate(next)) {
Josef Bacik416bc652013-04-23 14:17:42 -04008935 free_extent_buffer(next);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00008936 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04008937 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008938 btrfs_tree_lock(next);
8939 btrfs_set_lock_blocking(next);
8940 }
8941
8942 level--;
Josef Bacik48672682016-09-23 13:23:28 +02008943 ASSERT(level == btrfs_header_level(next));
8944 if (level != btrfs_header_level(next)) {
8945 btrfs_err(root->fs_info, "mismatched level");
8946 ret = -EIO;
8947 goto out_unlock;
8948 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008949 path->nodes[level] = next;
8950 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008951 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008952 wc->level = level;
8953 if (wc->level == 1)
8954 wc->reada_slot = 0;
8955 return 0;
8956skip:
8957 wc->refs[level - 1] = 0;
8958 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008959 if (wc->stage == DROP_REFERENCE) {
8960 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
8961 parent = path->nodes[level]->start;
8962 } else {
Josef Bacik48672682016-09-23 13:23:28 +02008963 ASSERT(root->root_key.objectid ==
Yan, Zheng94fcca92009-10-09 09:25:16 -04008964 btrfs_header_owner(path->nodes[level]));
Josef Bacik48672682016-09-23 13:23:28 +02008965 if (root->root_key.objectid !=
8966 btrfs_header_owner(path->nodes[level])) {
8967 btrfs_err(root->fs_info,
8968 "mismatched block owner");
8969 ret = -EIO;
8970 goto out_unlock;
8971 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008972 parent = 0;
8973 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008974
Mark Fasheh11526512014-07-17 12:39:01 -07008975 if (need_account) {
8976 ret = account_shared_subtree(trans, root, next,
8977 generation, level - 1);
8978 if (ret) {
David Sterba94647322015-10-08 11:01:36 +02008979 btrfs_err_rl(root->fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04008980 "Error %d accounting shared subtree. Quota is out of sync, rescan required.",
8981 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07008982 }
8983 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008984 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01008985 root->root_key.objectid, level - 1, 0);
Josef Bacik48672682016-09-23 13:23:28 +02008986 if (ret)
8987 goto out_unlock;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008988 }
Josef Bacik48672682016-09-23 13:23:28 +02008989
8990 *lookup_info = 1;
8991 ret = 1;
8992
8993out_unlock:
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008994 btrfs_tree_unlock(next);
8995 free_extent_buffer(next);
Josef Bacik48672682016-09-23 13:23:28 +02008996
8997 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008998}
8999
9000/*
Liu Bo2c016dc2012-12-26 15:32:17 +08009001 * helper to process tree block while walking up the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04009002 *
9003 * when wc->stage == DROP_REFERENCE, this function drops
9004 * reference count on the block.
9005 *
9006 * when wc->stage == UPDATE_BACKREF, this function changes
9007 * wc->stage back to DROP_REFERENCE if we changed wc->stage
9008 * to UPDATE_BACKREF previously while processing the block.
9009 *
9010 * NOTE: return value 1 means we should stop walking up.
9011 */
9012static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
9013 struct btrfs_root *root,
9014 struct btrfs_path *path,
9015 struct walk_control *wc)
9016{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009017 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009018 int level = wc->level;
9019 struct extent_buffer *eb = path->nodes[level];
9020 u64 parent = 0;
9021
9022 if (wc->stage == UPDATE_BACKREF) {
9023 BUG_ON(wc->shared_level < level);
9024 if (level < wc->shared_level)
9025 goto out;
9026
Yan Zheng2c47e6052009-06-27 21:07:35 -04009027 ret = find_next_key(path, level + 1, &wc->update_progress);
9028 if (ret > 0)
9029 wc->update_ref = 0;
9030
9031 wc->stage = DROP_REFERENCE;
9032 wc->shared_level = -1;
9033 path->slots[level] = 0;
9034
9035 /*
9036 * check reference count again if the block isn't locked.
9037 * we should start walking down the tree again if reference
9038 * count is one.
9039 */
9040 if (!path->locks[level]) {
9041 BUG_ON(level == 0);
9042 btrfs_tree_lock(eb);
9043 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04009044 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009045
9046 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05009047 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009048 &wc->refs[level],
9049 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009050 if (ret < 0) {
9051 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00009052 path->locks[level] = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009053 return ret;
9054 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009055 BUG_ON(wc->refs[level] == 0);
9056 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04009057 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00009058 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009059 return 1;
9060 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009061 }
9062 }
9063
9064 /* wc->stage == DROP_REFERENCE */
9065 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
9066
9067 if (wc->refs[level] == 1) {
9068 if (level == 0) {
9069 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
Josef Bacike339a6b2014-07-02 10:54:25 -07009070 ret = btrfs_dec_ref(trans, root, eb, 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009071 else
Josef Bacike339a6b2014-07-02 10:54:25 -07009072 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009073 BUG_ON(ret); /* -ENOMEM */
Mark Fasheh11526512014-07-17 12:39:01 -07009074 ret = account_leaf_items(trans, root, eb);
9075 if (ret) {
David Sterba94647322015-10-08 11:01:36 +02009076 btrfs_err_rl(root->fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04009077 "error %d accounting leaf items. Quota is out of sync, rescan required.",
9078 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07009079 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009080 }
9081 /* make block locked assertion in clean_tree_block happy */
9082 if (!path->locks[level] &&
9083 btrfs_header_generation(eb) == trans->transid) {
9084 btrfs_tree_lock(eb);
9085 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04009086 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009087 }
Daniel Dressler01d58472014-11-21 17:15:07 +09009088 clean_tree_block(trans, root->fs_info, eb);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009089 }
9090
9091 if (eb == root->node) {
9092 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
9093 parent = eb->start;
9094 else
9095 BUG_ON(root->root_key.objectid !=
9096 btrfs_header_owner(eb));
9097 } else {
9098 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
9099 parent = path->nodes[level + 1]->start;
9100 else
9101 BUG_ON(root->root_key.objectid !=
9102 btrfs_header_owner(path->nodes[level + 1]));
9103 }
9104
Jan Schmidt5581a512012-05-16 17:04:52 +02009105 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009106out:
9107 wc->refs[level] = 0;
9108 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009109 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009110}
9111
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009112static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
9113 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009114 struct btrfs_path *path,
9115 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04009116{
Yan Zheng2c47e6052009-06-27 21:07:35 -04009117 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04009118 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009119 int ret;
9120
Yan Zheng2c47e6052009-06-27 21:07:35 -04009121 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04009122 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009123 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04009124 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009125
Yan Zheng2c47e6052009-06-27 21:07:35 -04009126 if (level == 0)
9127 break;
9128
Yan, Zheng7a7965f2010-02-01 02:41:17 +00009129 if (path->slots[level] >=
9130 btrfs_header_nritems(path->nodes[level]))
9131 break;
9132
Yan, Zheng94fcca92009-10-09 09:25:16 -04009133 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009134 if (ret > 0) {
9135 path->slots[level]++;
9136 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00009137 } else if (ret < 0)
9138 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009139 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009140 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04009141 return 0;
9142}
9143
Chris Masond3977122009-01-05 21:25:51 -05009144static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05009145 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04009146 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009147 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05009148{
Yan Zheng2c47e6052009-06-27 21:07:35 -04009149 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05009150 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04009151
Yan Zheng2c47e6052009-06-27 21:07:35 -04009152 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
9153 while (level < max_level && path->nodes[level]) {
9154 wc->level = level;
9155 if (path->slots[level] + 1 <
9156 btrfs_header_nritems(path->nodes[level])) {
9157 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05009158 return 0;
9159 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009160 ret = walk_up_proc(trans, root, path, wc);
9161 if (ret > 0)
9162 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05009163
Yan Zheng2c47e6052009-06-27 21:07:35 -04009164 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04009165 btrfs_tree_unlock_rw(path->nodes[level],
9166 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009167 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009168 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009169 free_extent_buffer(path->nodes[level]);
9170 path->nodes[level] = NULL;
9171 level++;
Chris Mason20524f02007-03-10 06:35:47 -05009172 }
9173 }
9174 return 1;
9175}
9176
Chris Mason9aca1d52007-03-13 11:09:37 -04009177/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04009178 * drop a subvolume tree.
9179 *
9180 * this function traverses the tree freeing any blocks that only
9181 * referenced by the tree.
9182 *
9183 * when a shared tree block is found. this function decreases its
9184 * reference count by one. if update_ref is true, this function
9185 * also make sure backrefs for the shared block and all lower level
9186 * blocks are properly updated.
David Sterba9d1a2a32013-03-12 15:13:28 +00009187 *
9188 * If called with for_reloc == 0, may exit early with -EAGAIN
Chris Mason9aca1d52007-03-13 11:09:37 -04009189 */
Jeff Mahoney2c536792011-10-03 23:22:41 -04009190int btrfs_drop_snapshot(struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009191 struct btrfs_block_rsv *block_rsv, int update_ref,
9192 int for_reloc)
Chris Mason20524f02007-03-10 06:35:47 -05009193{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009194 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5caf2a02007-04-02 11:20:42 -04009195 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009196 struct btrfs_trans_handle *trans;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009197 struct btrfs_root *tree_root = fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04009198 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009199 struct walk_control *wc;
9200 struct btrfs_key key;
9201 int err = 0;
9202 int ret;
9203 int level;
Josef Bacikd29a9f62013-07-17 19:30:20 -04009204 bool root_dropped = false;
Chris Mason20524f02007-03-10 06:35:47 -05009205
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009206 btrfs_debug(fs_info, "Drop subvolume %llu", root->objectid);
Mark Fasheh11526512014-07-17 12:39:01 -07009207
Chris Mason5caf2a02007-04-02 11:20:42 -04009208 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009209 if (!path) {
9210 err = -ENOMEM;
9211 goto out;
9212 }
Chris Mason20524f02007-03-10 06:35:47 -05009213
Yan Zheng2c47e6052009-06-27 21:07:35 -04009214 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07009215 if (!wc) {
9216 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009217 err = -ENOMEM;
9218 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07009219 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009220
Yan, Zhenga22285a2010-05-16 10:48:46 -04009221 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009222 if (IS_ERR(trans)) {
9223 err = PTR_ERR(trans);
9224 goto out_free;
9225 }
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00009226
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009227 if (block_rsv)
9228 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009229
Chris Mason9f3a7422007-08-07 15:52:19 -04009230 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009231 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009232 path->nodes[level] = btrfs_lock_root_node(root);
9233 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04009234 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009235 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009236 memset(&wc->update_progress, 0,
9237 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04009238 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04009239 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009240 memcpy(&wc->update_progress, &key,
9241 sizeof(wc->update_progress));
9242
Chris Mason6702ed42007-08-07 16:15:09 -04009243 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009244 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04009245 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009246 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
9247 path->lowest_level = 0;
9248 if (ret < 0) {
9249 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009250 goto out_end_trans;
Chris Mason9f3a7422007-08-07 15:52:19 -04009251 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009252 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009253
Chris Mason7d9eb122008-07-08 14:19:17 -04009254 /*
9255 * unlock our path, this is safe because only this
9256 * function is allowed to delete this snapshot
9257 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009258 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04009259
Yan Zheng2c47e6052009-06-27 21:07:35 -04009260 level = btrfs_header_level(root->node);
9261 while (1) {
9262 btrfs_tree_lock(path->nodes[level]);
9263 btrfs_set_lock_blocking(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009264 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009265
9266 ret = btrfs_lookup_extent_info(trans, root,
9267 path->nodes[level]->start,
Josef Bacik3173a182013-03-07 14:22:04 -05009268 level, 1, &wc->refs[level],
Yan Zheng2c47e6052009-06-27 21:07:35 -04009269 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009270 if (ret < 0) {
9271 err = ret;
9272 goto out_end_trans;
9273 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009274 BUG_ON(wc->refs[level] == 0);
9275
9276 if (level == root_item->drop_level)
9277 break;
9278
9279 btrfs_tree_unlock(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009280 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009281 WARN_ON(wc->refs[level] != 1);
9282 level--;
9283 }
9284 }
9285
9286 wc->level = level;
9287 wc->shared_level = -1;
9288 wc->stage = DROP_REFERENCE;
9289 wc->update_ref = update_ref;
9290 wc->keep_locks = 0;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009291 wc->for_reloc = for_reloc;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009292 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009293
9294 while (1) {
David Sterba9d1a2a32013-03-12 15:13:28 +00009295
Yan Zheng2c47e6052009-06-27 21:07:35 -04009296 ret = walk_down_tree(trans, root, path, wc);
9297 if (ret < 0) {
9298 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04009299 break;
9300 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009301
9302 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
9303 if (ret < 0) {
9304 err = ret;
9305 break;
9306 }
9307
9308 if (ret > 0) {
9309 BUG_ON(wc->stage != DROP_REFERENCE);
9310 break;
9311 }
9312
9313 if (wc->stage == DROP_REFERENCE) {
9314 level = wc->level;
9315 btrfs_node_key(path->nodes[level],
9316 &root_item->drop_progress,
9317 path->slots[level]);
9318 root_item->drop_level = level;
9319 }
9320
9321 BUG_ON(wc->level == 0);
Josef Bacik3c8f2422013-07-15 11:57:06 -04009322 if (btrfs_should_end_transaction(trans, tree_root) ||
9323 (!for_reloc && btrfs_need_cleaner_sleep(root))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009324 ret = btrfs_update_root(trans, tree_root,
9325 &root->root_key,
9326 root_item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009327 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009328 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009329 err = ret;
9330 goto out_end_trans;
9331 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009332
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009333 btrfs_end_transaction_throttle(trans, tree_root);
Josef Bacik3c8f2422013-07-15 11:57:06 -04009334 if (!for_reloc && btrfs_need_cleaner_sleep(root)) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009335 btrfs_debug(fs_info,
9336 "drop snapshot early exit");
Josef Bacik3c8f2422013-07-15 11:57:06 -04009337 err = -EAGAIN;
9338 goto out_free;
9339 }
9340
Yan, Zhenga22285a2010-05-16 10:48:46 -04009341 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009342 if (IS_ERR(trans)) {
9343 err = PTR_ERR(trans);
9344 goto out_free;
9345 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009346 if (block_rsv)
9347 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04009348 }
Chris Mason20524f02007-03-10 06:35:47 -05009349 }
David Sterbab3b4aa72011-04-21 01:20:15 +02009350 btrfs_release_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009351 if (err)
9352 goto out_end_trans;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009353
9354 ret = btrfs_del_root(trans, tree_root, &root->root_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009355 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009356 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009357 goto out_end_trans;
9358 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009359
Yan, Zheng76dda932009-09-21 16:00:26 -04009360 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Miao Xiecb517ea2013-05-15 07:48:19 +00009361 ret = btrfs_find_root(tree_root, &root->root_key, path,
9362 NULL, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009363 if (ret < 0) {
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 } else if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05009368 /* if we fail to delete the orphan item this time
9369 * around, it'll get picked up the next time.
9370 *
9371 * The most common failure here is just -ENOENT.
9372 */
9373 btrfs_del_orphan_item(trans, tree_root,
9374 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04009375 }
9376 }
9377
Miao Xie27cdeb72014-04-02 19:51:05 +08009378 if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) {
Josef Bacik2b9dbef2015-09-15 10:07:04 -04009379 btrfs_add_dropped_root(trans, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009380 } else {
9381 free_extent_buffer(root->node);
9382 free_extent_buffer(root->commit_root);
Miao Xieb0feb9d2013-05-15 07:48:20 +00009383 btrfs_put_fs_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009384 }
Josef Bacikd29a9f62013-07-17 19:30:20 -04009385 root_dropped = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009386out_end_trans:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009387 btrfs_end_transaction_throttle(trans, tree_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009388out_free:
Yan Zheng2c47e6052009-06-27 21:07:35 -04009389 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04009390 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009391out:
Josef Bacikd29a9f62013-07-17 19:30:20 -04009392 /*
9393 * So if we need to stop dropping the snapshot for whatever reason we
9394 * need to make sure to add it back to the dead root list so that we
9395 * keep trying to do the work later. This also cleans up roots if we
9396 * don't have it in the radix (like when we recover after a power fail
9397 * or unmount) so we don't leak memory.
9398 */
Josef Bacikb37b39c2013-07-23 16:57:15 -04009399 if (!for_reloc && root_dropped == false)
Josef Bacikd29a9f62013-07-17 19:30:20 -04009400 btrfs_add_dead_root(root);
Wang Shilong90515e72014-01-07 17:26:58 +08009401 if (err && err != -EAGAIN)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009402 btrfs_handle_fs_error(fs_info, err, NULL);
Jeff Mahoney2c536792011-10-03 23:22:41 -04009403 return err;
Chris Mason20524f02007-03-10 06:35:47 -05009404}
Chris Mason9078a3e2007-04-26 16:46:15 -04009405
Yan Zheng2c47e6052009-06-27 21:07:35 -04009406/*
9407 * drop subtree rooted at tree block 'node'.
9408 *
9409 * NOTE: this function will unlock and release tree block 'node'
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009410 * only used by relocation code
Yan Zheng2c47e6052009-06-27 21:07:35 -04009411 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04009412int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
9413 struct btrfs_root *root,
9414 struct extent_buffer *node,
9415 struct extent_buffer *parent)
9416{
9417 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009418 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009419 int level;
9420 int parent_level;
9421 int ret = 0;
9422 int wret;
9423
Yan Zheng2c47e6052009-06-27 21:07:35 -04009424 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
9425
Yan Zhengf82d02d2008-10-29 14:49:05 -04009426 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009427 if (!path)
9428 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009429
Yan Zheng2c47e6052009-06-27 21:07:35 -04009430 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009431 if (!wc) {
9432 btrfs_free_path(path);
9433 return -ENOMEM;
9434 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009435
Chris Masonb9447ef2009-03-09 11:45:38 -04009436 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009437 parent_level = btrfs_header_level(parent);
9438 extent_buffer_get(parent);
9439 path->nodes[parent_level] = parent;
9440 path->slots[parent_level] = btrfs_header_nritems(parent);
9441
Chris Masonb9447ef2009-03-09 11:45:38 -04009442 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009443 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009444 path->nodes[level] = node;
9445 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009446 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009447
9448 wc->refs[parent_level] = 1;
9449 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
9450 wc->level = level;
9451 wc->shared_level = -1;
9452 wc->stage = DROP_REFERENCE;
9453 wc->update_ref = 0;
9454 wc->keep_locks = 1;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009455 wc->for_reloc = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009456 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009457
9458 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009459 wret = walk_down_tree(trans, root, path, wc);
9460 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04009461 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009462 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009463 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04009464
Yan Zheng2c47e6052009-06-27 21:07:35 -04009465 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009466 if (wret < 0)
9467 ret = wret;
9468 if (wret != 0)
9469 break;
9470 }
9471
Yan Zheng2c47e6052009-06-27 21:07:35 -04009472 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009473 btrfs_free_path(path);
9474 return ret;
9475}
9476
Chris Masonec44a352008-04-28 15:29:52 -04009477static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
9478{
9479 u64 num_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009480 u64 stripped;
Chris Masonec44a352008-04-28 15:29:52 -04009481
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009482 /*
9483 * if restripe for this chunk_type is on pick target profile and
9484 * return, otherwise do the usual balance
9485 */
9486 stripped = get_restripe_target(root->fs_info, flags);
9487 if (stripped)
9488 return extended_to_chunk(stripped);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02009489
Miao Xie95669972014-07-24 11:37:14 +08009490 num_devices = root->fs_info->fs_devices->rw_devices;
Chris Masoncd02dca2010-12-13 14:56:23 -05009491
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009492 stripped = BTRFS_BLOCK_GROUP_RAID0 |
David Woodhouse53b381b2013-01-29 18:40:14 -05009493 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009494 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
9495
Chris Masonec44a352008-04-28 15:29:52 -04009496 if (num_devices == 1) {
9497 stripped |= BTRFS_BLOCK_GROUP_DUP;
9498 stripped = flags & ~stripped;
9499
9500 /* turn raid0 into single device chunks */
9501 if (flags & BTRFS_BLOCK_GROUP_RAID0)
9502 return stripped;
9503
9504 /* turn mirroring into duplication */
9505 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
9506 BTRFS_BLOCK_GROUP_RAID10))
9507 return stripped | BTRFS_BLOCK_GROUP_DUP;
Chris Masonec44a352008-04-28 15:29:52 -04009508 } else {
9509 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04009510 if (flags & stripped)
9511 return flags;
9512
9513 stripped |= BTRFS_BLOCK_GROUP_DUP;
9514 stripped = flags & ~stripped;
9515
9516 /* switch duplicated blocks with raid1 */
9517 if (flags & BTRFS_BLOCK_GROUP_DUP)
9518 return stripped | BTRFS_BLOCK_GROUP_RAID1;
9519
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009520 /* this is drive concat, leave it alone */
Chris Masonec44a352008-04-28 15:29:52 -04009521 }
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009522
Chris Masonec44a352008-04-28 15:29:52 -04009523 return flags;
9524}
9525
Zhaolei868f4012015-08-05 16:43:27 +08009526static int inc_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04009527{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009528 struct btrfs_space_info *sinfo = cache->space_info;
9529 u64 num_bytes;
Miao Xie199c36e2011-07-15 10:34:36 +00009530 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009531 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04009532
Miao Xie199c36e2011-07-15 10:34:36 +00009533 /*
9534 * We need some metadata space and system metadata space for
9535 * allocating chunks in some corner cases until we force to set
9536 * it to be readonly.
9537 */
9538 if ((sinfo->flags &
9539 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
9540 !force)
Byongho Leeee221842015-12-15 01:42:10 +09009541 min_allocable_bytes = SZ_1M;
Miao Xie199c36e2011-07-15 10:34:36 +00009542 else
9543 min_allocable_bytes = 0;
9544
Yan, Zhengf0486c62010-05-16 10:46:25 -04009545 spin_lock(&sinfo->lock);
9546 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00009547
9548 if (cache->ro) {
Zhaolei868f4012015-08-05 16:43:27 +08009549 cache->ro++;
WuBo61cfea92011-07-26 03:30:11 +00009550 ret = 0;
9551 goto out;
9552 }
9553
Yan, Zhengf0486c62010-05-16 10:46:25 -04009554 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
9555 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04009556
Yan, Zhengf0486c62010-05-16 10:46:25 -04009557 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
Josef Bacik37be25b2011-08-05 10:25:38 -04009558 sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes +
9559 min_allocable_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04009560 sinfo->bytes_readonly += num_bytes;
Zhaolei868f4012015-08-05 16:43:27 +08009561 cache->ro++;
Josef Bacik633c0aa2014-10-31 09:49:34 -04009562 list_add_tail(&cache->ro_list, &sinfo->ro_bgs);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009563 ret = 0;
9564 }
WuBo61cfea92011-07-26 03:30:11 +00009565out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04009566 spin_unlock(&cache->lock);
9567 spin_unlock(&sinfo->lock);
9568 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04009569}
9570
Zhaolei868f4012015-08-05 16:43:27 +08009571int btrfs_inc_block_group_ro(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04009572 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009573
9574{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009575 struct btrfs_trans_handle *trans;
9576 u64 alloc_flags;
9577 int ret;
9578
Chris Mason1bbc6212015-04-06 12:46:08 -07009579again:
Josef Bacik7a7eaa42011-04-13 12:54:33 -04009580 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009581 if (IS_ERR(trans))
9582 return PTR_ERR(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009583
Chris Mason1bbc6212015-04-06 12:46:08 -07009584 /*
9585 * we're not allowed to set block groups readonly after the dirty
9586 * block groups cache has started writing. If it already started,
9587 * back off and let this transaction commit
9588 */
9589 mutex_lock(&root->fs_info->ro_block_group_mutex);
Josef Bacik3204d332015-09-24 10:46:10 -04009590 if (test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &trans->transaction->flags)) {
Chris Mason1bbc6212015-04-06 12:46:08 -07009591 u64 transid = trans->transid;
9592
9593 mutex_unlock(&root->fs_info->ro_block_group_mutex);
9594 btrfs_end_transaction(trans, root);
9595
9596 ret = btrfs_wait_for_commit(root, transid);
9597 if (ret)
9598 return ret;
9599 goto again;
9600 }
9601
Chris Mason153c35b2015-05-19 18:54:41 -07009602 /*
9603 * if we are changing raid levels, try to allocate a corresponding
9604 * block group with the new raid level.
9605 */
9606 alloc_flags = update_block_group_flags(root, cache->flags);
9607 if (alloc_flags != cache->flags) {
9608 ret = do_chunk_alloc(trans, root, alloc_flags,
9609 CHUNK_ALLOC_FORCE);
9610 /*
9611 * ENOSPC is allowed here, we may have enough space
9612 * already allocated at the new raid level to
9613 * carry on
9614 */
9615 if (ret == -ENOSPC)
9616 ret = 0;
9617 if (ret < 0)
9618 goto out;
9619 }
Chris Mason1bbc6212015-04-06 12:46:08 -07009620
Zhaolei868f4012015-08-05 16:43:27 +08009621 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009622 if (!ret)
9623 goto out;
9624 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
Josef Bacik698d0082012-09-12 14:08:47 -04009625 ret = do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04009626 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009627 if (ret < 0)
9628 goto out;
Zhaolei868f4012015-08-05 16:43:27 +08009629 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009630out:
Shaohua Li2f081082015-01-09 10:40:15 -08009631 if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
9632 alloc_flags = update_block_group_flags(root, cache->flags);
Filipe Mananaa9629592015-05-18 19:11:40 +01009633 lock_chunks(root->fs_info->chunk_root);
Filipe Manana4617ea32015-06-09 17:48:21 +01009634 check_system_chunk(trans, root, alloc_flags);
Filipe Mananaa9629592015-05-18 19:11:40 +01009635 unlock_chunks(root->fs_info->chunk_root);
Shaohua Li2f081082015-01-09 10:40:15 -08009636 }
Chris Mason1bbc6212015-04-06 12:46:08 -07009637 mutex_unlock(&root->fs_info->ro_block_group_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08009638
Yan, Zhengf0486c62010-05-16 10:46:25 -04009639 btrfs_end_transaction(trans, root);
9640 return ret;
9641}
9642
Chris Masonc87f08c2011-02-16 13:57:04 -05009643int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
9644 struct btrfs_root *root, u64 type)
9645{
9646 u64 alloc_flags = get_alloc_profile(root, type);
Josef Bacik698d0082012-09-12 14:08:47 -04009647 return do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04009648 CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05009649}
9650
Miao Xie6d07bce2011-01-05 10:07:31 +00009651/*
9652 * helper to account the unused space of all the readonly block group in the
Josef Bacik633c0aa2014-10-31 09:49:34 -04009653 * space_info. takes mirrors into account.
Miao Xie6d07bce2011-01-05 10:07:31 +00009654 */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009655u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
Miao Xie6d07bce2011-01-05 10:07:31 +00009656{
9657 struct btrfs_block_group_cache *block_group;
9658 u64 free_bytes = 0;
9659 int factor;
9660
Nicholas D Steeves01327612016-05-19 21:18:45 -04009661 /* It's df, we don't care if it's racy */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009662 if (list_empty(&sinfo->ro_bgs))
9663 return 0;
9664
9665 spin_lock(&sinfo->lock);
9666 list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00009667 spin_lock(&block_group->lock);
9668
9669 if (!block_group->ro) {
9670 spin_unlock(&block_group->lock);
9671 continue;
9672 }
9673
9674 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
9675 BTRFS_BLOCK_GROUP_RAID10 |
9676 BTRFS_BLOCK_GROUP_DUP))
9677 factor = 2;
9678 else
9679 factor = 1;
9680
9681 free_bytes += (block_group->key.offset -
9682 btrfs_block_group_used(&block_group->item)) *
9683 factor;
9684
9685 spin_unlock(&block_group->lock);
9686 }
Miao Xie6d07bce2011-01-05 10:07:31 +00009687 spin_unlock(&sinfo->lock);
9688
9689 return free_bytes;
9690}
9691
Zhaolei868f4012015-08-05 16:43:27 +08009692void btrfs_dec_block_group_ro(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04009693 struct btrfs_block_group_cache *cache)
9694{
9695 struct btrfs_space_info *sinfo = cache->space_info;
9696 u64 num_bytes;
9697
9698 BUG_ON(!cache->ro);
9699
9700 spin_lock(&sinfo->lock);
9701 spin_lock(&cache->lock);
Zhaolei868f4012015-08-05 16:43:27 +08009702 if (!--cache->ro) {
9703 num_bytes = cache->key.offset - cache->reserved -
9704 cache->pinned - cache->bytes_super -
9705 btrfs_block_group_used(&cache->item);
9706 sinfo->bytes_readonly -= num_bytes;
9707 list_del_init(&cache->ro_list);
9708 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009709 spin_unlock(&cache->lock);
9710 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009711}
9712
Josef Bacikba1bf482009-09-11 16:11:19 -04009713/*
9714 * checks to see if its even possible to relocate this block group.
9715 *
9716 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
9717 * ok to go ahead and try.
9718 */
9719int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04009720{
Zheng Yan1a40e232008-09-26 10:09:34 -04009721 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04009722 struct btrfs_space_info *space_info;
9723 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
9724 struct btrfs_device *device;
Josef Bacik6df9a952013-06-27 13:22:46 -04009725 struct btrfs_trans_handle *trans;
liubocdcb7252011-08-03 10:15:25 +00009726 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04009727 u64 dev_min = 1;
9728 u64 dev_nr = 0;
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009729 u64 target;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009730 int debug;
liubocdcb7252011-08-03 10:15:25 +00009731 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04009732 int full = 0;
9733 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05009734
Jeff Mahoney3cdde222016-06-09 21:38:35 -04009735 debug = btrfs_test_opt(root->fs_info, ENOSPC_DEBUG);
Qu Wenruo0305bc22016-03-23 11:38:17 +08009736
Josef Bacikba1bf482009-09-11 16:11:19 -04009737 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04009738
Josef Bacikba1bf482009-09-11 16:11:19 -04009739 /* odd, couldn't find the block group, leave it alone */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009740 if (!block_group) {
9741 if (debug)
9742 btrfs_warn(root->fs_info,
9743 "can't find block group for bytenr %llu",
9744 bytenr);
Josef Bacikba1bf482009-09-11 16:11:19 -04009745 return -1;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009746 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009747
liubocdcb7252011-08-03 10:15:25 +00009748 min_free = btrfs_block_group_used(&block_group->item);
9749
Josef Bacikba1bf482009-09-11 16:11:19 -04009750 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00009751 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04009752 goto out;
Chris Mason323da792008-05-09 11:46:48 -04009753
Josef Bacikba1bf482009-09-11 16:11:19 -04009754 space_info = block_group->space_info;
9755 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04009756
Josef Bacikba1bf482009-09-11 16:11:19 -04009757 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04009758
Josef Bacikba1bf482009-09-11 16:11:19 -04009759 /*
9760 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04009761 * relocate it unless we're able to allocate a new chunk below.
9762 *
9763 * Otherwise, we need to make sure we have room in the space to handle
9764 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04009765 */
Chris Mason7ce618d2009-09-22 14:48:44 -04009766 if ((space_info->total_bytes != block_group->key.offset) &&
liubocdcb7252011-08-03 10:15:25 +00009767 (space_info->bytes_used + space_info->bytes_reserved +
9768 space_info->bytes_pinned + space_info->bytes_readonly +
9769 min_free < space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04009770 spin_unlock(&space_info->lock);
9771 goto out;
9772 }
9773 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009774
Josef Bacikba1bf482009-09-11 16:11:19 -04009775 /*
9776 * ok we don't have enough space, but maybe we have free space on our
9777 * devices to allocate new chunks for relocation, so loop through our
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009778 * alloc devices and guess if we have enough space. if this block
9779 * group is going to be restriped, run checks against the target
9780 * profile instead of the current one.
Josef Bacikba1bf482009-09-11 16:11:19 -04009781 */
9782 ret = -1;
Chris Mason4313b392008-01-03 09:08:48 -05009783
liubocdcb7252011-08-03 10:15:25 +00009784 /*
9785 * index:
9786 * 0: raid10
9787 * 1: raid1
9788 * 2: dup
9789 * 3: raid0
9790 * 4: single
9791 */
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009792 target = get_restripe_target(root->fs_info, block_group->flags);
9793 if (target) {
Liu Bo31e50222012-11-21 14:18:10 +00009794 index = __get_raid_index(extended_to_chunk(target));
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009795 } else {
9796 /*
9797 * this is just a balance, so if we were marked as full
9798 * we know there is no space for a new chunk
9799 */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009800 if (full) {
9801 if (debug)
9802 btrfs_warn(root->fs_info,
9803 "no space to alloc new chunk for block group %llu",
9804 block_group->key.objectid);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009805 goto out;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009806 }
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009807
9808 index = get_block_group_index(block_group);
9809 }
9810
Miao Xiee6ec7162013-01-17 05:38:51 +00009811 if (index == BTRFS_RAID_RAID10) {
liubocdcb7252011-08-03 10:15:25 +00009812 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04009813 /* Divide by 2 */
9814 min_free >>= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009815 } else if (index == BTRFS_RAID_RAID1) {
liubocdcb7252011-08-03 10:15:25 +00009816 dev_min = 2;
Miao Xiee6ec7162013-01-17 05:38:51 +00009817 } else if (index == BTRFS_RAID_DUP) {
Josef Bacik6719db62011-08-20 08:29:51 -04009818 /* Multiply by 2 */
9819 min_free <<= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009820 } else if (index == BTRFS_RAID_RAID0) {
liubocdcb7252011-08-03 10:15:25 +00009821 dev_min = fs_devices->rw_devices;
David Sterba47c57132015-02-20 18:43:47 +01009822 min_free = div64_u64(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00009823 }
9824
Josef Bacik6df9a952013-06-27 13:22:46 -04009825 /* We need to do this so that we can look at pending chunks */
9826 trans = btrfs_join_transaction(root);
9827 if (IS_ERR(trans)) {
9828 ret = PTR_ERR(trans);
9829 goto out;
9830 }
9831
Josef Bacikba1bf482009-09-11 16:11:19 -04009832 mutex_lock(&root->fs_info->chunk_mutex);
9833 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00009834 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04009835
Josef Bacikba1bf482009-09-11 16:11:19 -04009836 /*
9837 * check to make sure we can actually find a chunk with enough
9838 * space to fit our block group in.
9839 */
Stefan Behrens63a212a2012-11-05 18:29:28 +01009840 if (device->total_bytes > device->bytes_used + min_free &&
9841 !device->is_tgtdev_for_dev_replace) {
Josef Bacik6df9a952013-06-27 13:22:46 -04009842 ret = find_free_dev_extent(trans, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00009843 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04009844 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00009845 dev_nr++;
9846
9847 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05009848 break;
liubocdcb7252011-08-03 10:15:25 +00009849
Josef Bacikba1bf482009-09-11 16:11:19 -04009850 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05009851 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009852 }
Qu Wenruo0305bc22016-03-23 11:38:17 +08009853 if (debug && ret == -1)
9854 btrfs_warn(root->fs_info,
9855 "no space to allocate a new chunk for block group %llu",
9856 block_group->key.objectid);
Josef Bacikba1bf482009-09-11 16:11:19 -04009857 mutex_unlock(&root->fs_info->chunk_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04009858 btrfs_end_transaction(trans, root);
Chris Masonedbd8d42007-12-21 16:27:24 -05009859out:
Josef Bacikba1bf482009-09-11 16:11:19 -04009860 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05009861 return ret;
9862}
9863
Christoph Hellwigb2950862008-12-02 09:54:17 -05009864static int find_first_block_group(struct btrfs_root *root,
9865 struct btrfs_path *path, struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04009866{
Chris Mason925baed2008-06-25 16:01:30 -04009867 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04009868 struct btrfs_key found_key;
9869 struct extent_buffer *leaf;
9870 int slot;
9871
9872 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
9873 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009874 goto out;
9875
Chris Masond3977122009-01-05 21:25:51 -05009876 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04009877 slot = path->slots[0];
9878 leaf = path->nodes[0];
9879 if (slot >= btrfs_header_nritems(leaf)) {
9880 ret = btrfs_next_leaf(root, path);
9881 if (ret == 0)
9882 continue;
9883 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009884 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04009885 break;
9886 }
9887 btrfs_item_key_to_cpu(leaf, &found_key, slot);
9888
9889 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04009890 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
Liu Bo6fb37b72016-06-22 18:31:27 -07009891 struct extent_map_tree *em_tree;
9892 struct extent_map *em;
9893
9894 em_tree = &root->fs_info->mapping_tree.map_tree;
9895 read_lock(&em_tree->lock);
9896 em = lookup_extent_mapping(em_tree, found_key.objectid,
9897 found_key.offset);
9898 read_unlock(&em_tree->lock);
9899 if (!em) {
9900 btrfs_err(root->fs_info,
9901 "logical %llu len %llu found bg but no related chunk",
9902 found_key.objectid, found_key.offset);
9903 ret = -ENOENT;
9904 } else {
9905 ret = 0;
9906 }
Josef Bacik187ee582016-08-18 15:30:06 -04009907 free_extent_map(em);
Chris Mason925baed2008-06-25 16:01:30 -04009908 goto out;
9909 }
Chris Mason0b86a832008-03-24 15:01:56 -04009910 path->slots[0]++;
9911 }
Chris Mason925baed2008-06-25 16:01:30 -04009912out:
Chris Mason0b86a832008-03-24 15:01:56 -04009913 return ret;
9914}
9915
Josef Bacik0af3d002010-06-21 14:48:16 -04009916void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
9917{
9918 struct btrfs_block_group_cache *block_group;
9919 u64 last = 0;
9920
9921 while (1) {
9922 struct inode *inode;
9923
9924 block_group = btrfs_lookup_first_block_group(info, last);
9925 while (block_group) {
9926 spin_lock(&block_group->lock);
9927 if (block_group->iref)
9928 break;
9929 spin_unlock(&block_group->lock);
9930 block_group = next_block_group(info->tree_root,
9931 block_group);
9932 }
9933 if (!block_group) {
9934 if (last == 0)
9935 break;
9936 last = 0;
9937 continue;
9938 }
9939
9940 inode = block_group->inode;
9941 block_group->iref = 0;
9942 block_group->inode = NULL;
9943 spin_unlock(&block_group->lock);
Liu Bof3bca802016-07-20 17:33:44 -07009944 ASSERT(block_group->io_ctl.inode == NULL);
Josef Bacik0af3d002010-06-21 14:48:16 -04009945 iput(inode);
9946 last = block_group->key.objectid + block_group->key.offset;
9947 btrfs_put_block_group(block_group);
9948 }
9949}
9950
Zheng Yan1a40e232008-09-26 10:09:34 -04009951int btrfs_free_block_groups(struct btrfs_fs_info *info)
9952{
9953 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04009954 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04009955 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04009956 struct rb_node *n;
9957
Josef Bacik9e351cc2014-03-13 15:42:13 -04009958 down_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04009959 while (!list_empty(&info->caching_block_groups)) {
9960 caching_ctl = list_entry(info->caching_block_groups.next,
9961 struct btrfs_caching_control, list);
9962 list_del(&caching_ctl->list);
9963 put_caching_control(caching_ctl);
9964 }
Josef Bacik9e351cc2014-03-13 15:42:13 -04009965 up_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04009966
Josef Bacik47ab2a62014-09-18 11:20:02 -04009967 spin_lock(&info->unused_bgs_lock);
9968 while (!list_empty(&info->unused_bgs)) {
9969 block_group = list_first_entry(&info->unused_bgs,
9970 struct btrfs_block_group_cache,
9971 bg_list);
9972 list_del_init(&block_group->bg_list);
9973 btrfs_put_block_group(block_group);
9974 }
9975 spin_unlock(&info->unused_bgs_lock);
9976
Zheng Yan1a40e232008-09-26 10:09:34 -04009977 spin_lock(&info->block_group_cache_lock);
9978 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
9979 block_group = rb_entry(n, struct btrfs_block_group_cache,
9980 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04009981 rb_erase(&block_group->cache_node,
9982 &info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +00009983 RB_CLEAR_NODE(&block_group->cache_node);
Yan Zhengd899e052008-10-30 14:25:28 -04009984 spin_unlock(&info->block_group_cache_lock);
9985
Josef Bacik80eb2342008-10-29 14:49:05 -04009986 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04009987 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04009988 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05009989
Josef Bacik817d52f2009-07-13 21:29:25 -04009990 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04009991 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04009992
Josef Bacik3c148742011-02-02 15:53:47 +00009993 /*
9994 * We haven't cached this block group, which means we could
9995 * possibly have excluded extents on this block group.
9996 */
Josef Bacik36cce922013-08-05 11:15:21 -04009997 if (block_group->cached == BTRFS_CACHE_NO ||
9998 block_group->cached == BTRFS_CACHE_ERROR)
Josef Bacik3c148742011-02-02 15:53:47 +00009999 free_excluded_extents(info->extent_root, block_group);
10000
Josef Bacik817d52f2009-07-13 21:29:25 -040010001 btrfs_remove_free_space_cache(block_group);
Liu Bof3bca802016-07-20 17:33:44 -070010002 ASSERT(list_empty(&block_group->dirty_list));
10003 ASSERT(list_empty(&block_group->io_list));
10004 ASSERT(list_empty(&block_group->bg_list));
10005 ASSERT(atomic_read(&block_group->count) == 1);
Josef Bacik11dfe352009-11-13 20:12:59 +000010006 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -040010007
10008 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -040010009 }
10010 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -040010011
10012 /* now that all the block groups are freed, go through and
10013 * free all the space_info structs. This is only called during
10014 * the final stages of unmount, and so we know nobody is
10015 * using them. We call synchronize_rcu() once before we start,
10016 * just to be on the safe side.
10017 */
10018 synchronize_rcu();
10019
Yan, Zheng8929ecfa2010-05-16 10:49:58 -040010020 release_global_block_rsv(info);
10021
Dulshani Gunawardhana67871252013-10-31 10:33:04 +053010022 while (!list_empty(&info->space_info)) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010023 int i;
10024
Chris Mason4184ea72009-03-10 12:39:20 -040010025 space_info = list_entry(info->space_info.next,
10026 struct btrfs_space_info,
10027 list);
Josef Bacikd555b6c2016-03-25 13:25:51 -040010028
10029 /*
10030 * Do not hide this behind enospc_debug, this is actually
10031 * important and indicates a real bug if this happens.
10032 */
10033 if (WARN_ON(space_info->bytes_pinned > 0 ||
David Sterbab069e0c2013-02-08 21:28:17 +000010034 space_info->bytes_reserved > 0 ||
Josef Bacikd555b6c2016-03-25 13:25:51 -040010035 space_info->bytes_may_use > 0))
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -040010036 dump_space_info(info, space_info, 0, 0);
Chris Mason4184ea72009-03-10 12:39:20 -040010037 list_del(&space_info->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010038 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
10039 struct kobject *kobj;
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010040 kobj = space_info->block_group_kobjs[i];
10041 space_info->block_group_kobjs[i] = NULL;
10042 if (kobj) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010043 kobject_del(kobj);
10044 kobject_put(kobj);
10045 }
10046 }
10047 kobject_del(&space_info->kobj);
10048 kobject_put(&space_info->kobj);
Chris Mason4184ea72009-03-10 12:39:20 -040010049 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010050 return 0;
10051}
10052
Yan, Zhengb742bb82010-05-16 10:46:24 -040010053static void __link_block_group(struct btrfs_space_info *space_info,
10054 struct btrfs_block_group_cache *cache)
10055{
10056 int index = get_block_group_index(cache);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -040010057 bool first = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -040010058
10059 down_write(&space_info->groups_sem);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -040010060 if (list_empty(&space_info->block_groups[index]))
10061 first = true;
10062 list_add_tail(&cache->list, &space_info->block_groups[index]);
10063 up_write(&space_info->groups_sem);
10064
10065 if (first) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010066 struct raid_kobject *rkobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010067 int ret;
10068
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010069 rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS);
10070 if (!rkobj)
10071 goto out_err;
10072 rkobj->raid_type = index;
10073 kobject_init(&rkobj->kobj, &btrfs_raid_ktype);
10074 ret = kobject_add(&rkobj->kobj, &space_info->kobj,
10075 "%s", get_raid_name(index));
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010076 if (ret) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010077 kobject_put(&rkobj->kobj);
10078 goto out_err;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010079 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010080 space_info->block_group_kobjs[index] = &rkobj->kobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010081 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010082
10083 return;
10084out_err:
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -040010085 btrfs_warn(cache->fs_info,
10086 "failed to add kobject for block cache, ignoring");
Yan, Zhengb742bb82010-05-16 10:46:24 -040010087}
10088
Miao Xie920e4a52014-01-15 20:00:55 +080010089static struct btrfs_block_group_cache *
10090btrfs_create_block_group_cache(struct btrfs_root *root, u64 start, u64 size)
10091{
10092 struct btrfs_block_group_cache *cache;
10093
10094 cache = kzalloc(sizeof(*cache), GFP_NOFS);
10095 if (!cache)
10096 return NULL;
10097
10098 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
10099 GFP_NOFS);
10100 if (!cache->free_space_ctl) {
10101 kfree(cache);
10102 return NULL;
10103 }
10104
10105 cache->key.objectid = start;
10106 cache->key.offset = size;
10107 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
10108
10109 cache->sectorsize = root->sectorsize;
10110 cache->fs_info = root->fs_info;
10111 cache->full_stripe_len = btrfs_full_stripe_len(root,
10112 &root->fs_info->mapping_tree,
10113 start);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010114 set_free_space_tree_thresholds(cache);
10115
Miao Xie920e4a52014-01-15 20:00:55 +080010116 atomic_set(&cache->count, 1);
10117 spin_lock_init(&cache->lock);
Miao Xiee570fd22014-06-19 10:42:50 +080010118 init_rwsem(&cache->data_rwsem);
Miao Xie920e4a52014-01-15 20:00:55 +080010119 INIT_LIST_HEAD(&cache->list);
10120 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010121 INIT_LIST_HEAD(&cache->bg_list);
Josef Bacik633c0aa2014-10-31 09:49:34 -040010122 INIT_LIST_HEAD(&cache->ro_list);
Josef Bacikce93ec52014-11-17 15:45:48 -050010123 INIT_LIST_HEAD(&cache->dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -070010124 INIT_LIST_HEAD(&cache->io_list);
Miao Xie920e4a52014-01-15 20:00:55 +080010125 btrfs_init_free_space_ctl(cache);
Filipe Manana04216822014-11-27 21:14:15 +000010126 atomic_set(&cache->trimming, 0);
Omar Sandovala5ed9182015-09-29 20:50:35 -070010127 mutex_init(&cache->free_space_lock);
Miao Xie920e4a52014-01-15 20:00:55 +080010128
10129 return cache;
10130}
10131
Chris Mason9078a3e2007-04-26 16:46:15 -040010132int btrfs_read_block_groups(struct btrfs_root *root)
10133{
10134 struct btrfs_path *path;
10135 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -040010136 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -040010137 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -040010138 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -040010139 struct btrfs_key key;
10140 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -040010141 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -040010142 int need_clear = 0;
10143 u64 cache_gen;
Liu Bo49303382016-08-25 18:08:27 -070010144 u64 feature;
10145 int mixed;
10146
10147 feature = btrfs_super_incompat_flags(info->super_copy);
10148 mixed = !!(feature & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS);
Chris Mason96b51792007-10-15 16:15:19 -040010149
Chris Masonbe744172007-05-06 10:15:01 -040010150 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -040010151 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -040010152 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +020010153 key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Chris Mason9078a3e2007-04-26 16:46:15 -040010154 path = btrfs_alloc_path();
10155 if (!path)
10156 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +010010157 path->reada = READA_FORWARD;
Chris Mason9078a3e2007-04-26 16:46:15 -040010158
David Sterba6c417612011-04-13 15:41:04 +020010159 cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
Jeff Mahoney3cdde222016-06-09 21:38:35 -040010160 if (btrfs_test_opt(root->fs_info, SPACE_CACHE) &&
David Sterba6c417612011-04-13 15:41:04 +020010161 btrfs_super_generation(root->fs_info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -040010162 need_clear = 1;
Jeff Mahoney3cdde222016-06-09 21:38:35 -040010163 if (btrfs_test_opt(root->fs_info, CLEAR_CACHE))
Josef Bacik88c2ba32010-09-21 14:21:34 -040010164 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -040010165
Chris Masond3977122009-01-05 21:25:51 -050010166 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -040010167 ret = find_first_block_group(root, path, &key);
Yan, Zhengb742bb82010-05-16 10:46:24 -040010168 if (ret > 0)
10169 break;
Chris Mason0b86a832008-03-24 15:01:56 -040010170 if (ret != 0)
10171 goto error;
Miao Xie920e4a52014-01-15 20:00:55 +080010172
Chris Mason5f39d392007-10-15 16:14:19 -040010173 leaf = path->nodes[0];
10174 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Miao Xie920e4a52014-01-15 20:00:55 +080010175
10176 cache = btrfs_create_block_group_cache(root, found_key.objectid,
10177 found_key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -040010178 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -040010179 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -040010180 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -040010181 }
Josef Bacik96303082009-07-13 21:29:25 -040010182
Liu Bocf7c1ef2012-07-06 03:31:34 -060010183 if (need_clear) {
10184 /*
10185 * When we mount with old space cache, we need to
10186 * set BTRFS_DC_CLEAR and set dirty flag.
10187 *
10188 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
10189 * truncate the old free space cache inode and
10190 * setup a new one.
10191 * b) Setting 'dirty flag' makes sure that we flush
10192 * the new space cache info onto disk.
10193 */
Jeff Mahoney3cdde222016-06-09 21:38:35 -040010194 if (btrfs_test_opt(root->fs_info, SPACE_CACHE))
Josef Bacikce93ec52014-11-17 15:45:48 -050010195 cache->disk_cache_state = BTRFS_DC_CLEAR;
Liu Bocf7c1ef2012-07-06 03:31:34 -060010196 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010197
Chris Mason5f39d392007-10-15 16:14:19 -040010198 read_extent_buffer(leaf, &cache->item,
10199 btrfs_item_ptr_offset(leaf, path->slots[0]),
10200 sizeof(cache->item));
Miao Xie920e4a52014-01-15 20:00:55 +080010201 cache->flags = btrfs_block_group_flags(&cache->item);
Liu Bo49303382016-08-25 18:08:27 -070010202 if (!mixed &&
10203 ((cache->flags & BTRFS_BLOCK_GROUP_METADATA) &&
10204 (cache->flags & BTRFS_BLOCK_GROUP_DATA))) {
10205 btrfs_err(info,
10206"bg %llu is a mixed block group but filesystem hasn't enabled mixed block groups",
10207 cache->key.objectid);
10208 ret = -EINVAL;
10209 goto error;
10210 }
Chris Mason0b86a832008-03-24 15:01:56 -040010211
Chris Mason9078a3e2007-04-26 16:46:15 -040010212 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +020010213 btrfs_release_path(path);
Li Zefan34d52cb2011-03-29 13:46:06 +080010214
Josef Bacik817d52f2009-07-13 21:29:25 -040010215 /*
Josef Bacik3c148742011-02-02 15:53:47 +000010216 * We need to exclude the super stripes now so that the space
10217 * info has super bytes accounted for, otherwise we'll think
10218 * we have more space than we actually do.
10219 */
Josef Bacik835d9742013-03-19 12:13:25 -040010220 ret = exclude_super_stripes(root, cache);
10221 if (ret) {
10222 /*
10223 * We may have excluded something, so call this just in
10224 * case.
10225 */
10226 free_excluded_extents(root, cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010227 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010228 goto error;
10229 }
Josef Bacik3c148742011-02-02 15:53:47 +000010230
10231 /*
Josef Bacik817d52f2009-07-13 21:29:25 -040010232 * check for two cases, either we are full, and therefore
10233 * don't need to bother with the caching work since we won't
10234 * find any space, or we are empty, and we can just add all
10235 * the space in and be done with it. This saves us _alot_ of
10236 * time, particularly in the full case.
10237 */
10238 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -040010239 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010240 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik1b2da372009-09-11 16:11:20 -040010241 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010242 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -040010243 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010244 cache->cached = BTRFS_CACHE_FINISHED;
10245 add_new_free_space(cache, root->fs_info,
10246 found_key.objectid,
10247 found_key.objectid +
10248 found_key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -040010249 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010250 }
Chris Mason96b51792007-10-15 16:15:19 -040010251
Josef Bacik8c579fe2013-04-02 12:40:42 -040010252 ret = btrfs_add_block_group_cache(root->fs_info, cache);
10253 if (ret) {
10254 btrfs_remove_free_space_cache(cache);
10255 btrfs_put_block_group(cache);
10256 goto error;
10257 }
10258
Josef Bacikc83f8ef2016-03-25 13:25:52 -040010259 trace_btrfs_add_block_group(root->fs_info, cache, 0);
Chris Mason6324fbf2008-03-24 15:01:59 -040010260 ret = update_space_info(info, cache->flags, found_key.offset,
10261 btrfs_block_group_used(&cache->item),
Josef Bacike40edf22016-03-25 13:25:47 -040010262 cache->bytes_super, &space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010263 if (ret) {
10264 btrfs_remove_free_space_cache(cache);
10265 spin_lock(&info->block_group_cache_lock);
10266 rb_erase(&cache->cache_node,
10267 &info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +000010268 RB_CLEAR_NODE(&cache->cache_node);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010269 spin_unlock(&info->block_group_cache_lock);
10270 btrfs_put_block_group(cache);
10271 goto error;
10272 }
10273
Chris Mason6324fbf2008-03-24 15:01:59 -040010274 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -040010275
Yan, Zhengb742bb82010-05-16 10:46:24 -040010276 __link_block_group(space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010277
Chris Mason75ccf472008-09-30 19:24:06 -040010278 set_avail_alloc_bits(root->fs_info, cache->flags);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010279 if (btrfs_chunk_readonly(root, cache->key.objectid)) {
Zhaolei868f4012015-08-05 16:43:27 +080010280 inc_block_group_ro(cache, 1);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010281 } else if (btrfs_block_group_used(&cache->item) == 0) {
10282 spin_lock(&info->unused_bgs_lock);
10283 /* Should always be true but just in case. */
10284 if (list_empty(&cache->bg_list)) {
10285 btrfs_get_block_group(cache);
10286 list_add_tail(&cache->bg_list,
10287 &info->unused_bgs);
10288 }
10289 spin_unlock(&info->unused_bgs_lock);
10290 }
Chris Mason9078a3e2007-04-26 16:46:15 -040010291 }
Yan, Zhengb742bb82010-05-16 10:46:24 -040010292
10293 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
10294 if (!(get_alloc_profile(root, space_info->flags) &
10295 (BTRFS_BLOCK_GROUP_RAID10 |
10296 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -050010297 BTRFS_BLOCK_GROUP_RAID5 |
10298 BTRFS_BLOCK_GROUP_RAID6 |
Yan, Zhengb742bb82010-05-16 10:46:24 -040010299 BTRFS_BLOCK_GROUP_DUP)))
10300 continue;
10301 /*
10302 * avoid allocating from un-mirrored block group if there are
10303 * mirrored block groups.
10304 */
chandan1095cc02013-07-16 12:28:56 +053010305 list_for_each_entry(cache,
10306 &space_info->block_groups[BTRFS_RAID_RAID0],
10307 list)
Zhaolei868f4012015-08-05 16:43:27 +080010308 inc_block_group_ro(cache, 1);
chandan1095cc02013-07-16 12:28:56 +053010309 list_for_each_entry(cache,
10310 &space_info->block_groups[BTRFS_RAID_SINGLE],
10311 list)
Zhaolei868f4012015-08-05 16:43:27 +080010312 inc_block_group_ro(cache, 1);
Yan, Zhengb742bb82010-05-16 10:46:24 -040010313 }
Yan, Zhengf0486c62010-05-16 10:46:25 -040010314
10315 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -040010316 ret = 0;
10317error:
Chris Mason9078a3e2007-04-26 16:46:15 -040010318 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -040010319 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -040010320}
Chris Mason6324fbf2008-03-24 15:01:59 -040010321
Josef Bacikea658ba2012-09-11 16:57:25 -040010322void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans,
10323 struct btrfs_root *root)
10324{
10325 struct btrfs_block_group_cache *block_group, *tmp;
10326 struct btrfs_root *extent_root = root->fs_info->extent_root;
10327 struct btrfs_block_group_item item;
10328 struct btrfs_key key;
10329 int ret = 0;
Filipe Mananad9a05402015-10-03 13:13:13 +010010330 bool can_flush_pending_bgs = trans->can_flush_pending_bgs;
Josef Bacikea658ba2012-09-11 16:57:25 -040010331
Filipe Mananad9a05402015-10-03 13:13:13 +010010332 trans->can_flush_pending_bgs = false;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010333 list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) {
Josef Bacikea658ba2012-09-11 16:57:25 -040010334 if (ret)
Filipe Mananac92f6be2014-11-26 15:28:55 +000010335 goto next;
Josef Bacikea658ba2012-09-11 16:57:25 -040010336
10337 spin_lock(&block_group->lock);
10338 memcpy(&item, &block_group->item, sizeof(item));
10339 memcpy(&key, &block_group->key, sizeof(key));
10340 spin_unlock(&block_group->lock);
10341
10342 ret = btrfs_insert_item(trans, extent_root, &key, &item,
10343 sizeof(item));
10344 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -040010345 btrfs_abort_transaction(trans, ret);
Josef Bacik6df9a952013-06-27 13:22:46 -040010346 ret = btrfs_finish_chunk_alloc(trans, extent_root,
10347 key.objectid, key.offset);
10348 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -040010349 btrfs_abort_transaction(trans, ret);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010350 add_block_group_free_space(trans, root->fs_info, block_group);
10351 /* already aborted the transaction if it failed. */
Filipe Mananac92f6be2014-11-26 15:28:55 +000010352next:
10353 list_del_init(&block_group->bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -040010354 }
Filipe Mananad9a05402015-10-03 13:13:13 +010010355 trans->can_flush_pending_bgs = can_flush_pending_bgs;
Josef Bacikea658ba2012-09-11 16:57:25 -040010356}
10357
Chris Mason6324fbf2008-03-24 15:01:59 -040010358int btrfs_make_block_group(struct btrfs_trans_handle *trans,
10359 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -040010360 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -040010361 u64 size)
10362{
10363 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -040010364 struct btrfs_root *extent_root;
10365 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -040010366 extent_root = root->fs_info->extent_root;
Chris Mason6324fbf2008-03-24 15:01:59 -040010367
Miao Xie995946d2014-04-02 19:51:06 +080010368 btrfs_set_log_full_commit(root->fs_info, trans);
Chris Masone02119d2008-09-05 16:13:11 -040010369
Miao Xie920e4a52014-01-15 20:00:55 +080010370 cache = btrfs_create_block_group_cache(root, chunk_offset, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -040010371 if (!cache)
10372 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +080010373
Chris Mason6324fbf2008-03-24 15:01:59 -040010374 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -040010375 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
Chris Mason6324fbf2008-03-24 15:01:59 -040010376 btrfs_set_block_group_flags(&cache->item, type);
10377
Miao Xie920e4a52014-01-15 20:00:55 +080010378 cache->flags = type;
Yan Zheng11833d62009-09-11 16:11:19 -040010379 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010380 cache->cached = BTRFS_CACHE_FINISHED;
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010381 cache->needs_free_space = 1;
Josef Bacik835d9742013-03-19 12:13:25 -040010382 ret = exclude_super_stripes(root, cache);
10383 if (ret) {
10384 /*
10385 * We may have excluded something, so call this just in
10386 * case.
10387 */
10388 free_excluded_extents(root, cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010389 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010390 return ret;
10391 }
Josef Bacik96303082009-07-13 21:29:25 -040010392
Josef Bacik817d52f2009-07-13 21:29:25 -040010393 add_new_free_space(cache, root->fs_info, chunk_offset,
10394 chunk_offset + size);
10395
Yan Zheng11833d62009-09-11 16:11:19 -040010396 free_excluded_extents(root, cache);
10397
Josef Bacikd0bd4562015-09-23 14:54:14 -040010398#ifdef CONFIG_BTRFS_DEBUG
10399 if (btrfs_should_fragment_free_space(root, cache)) {
10400 u64 new_bytes_used = size - bytes_used;
10401
10402 bytes_used += new_bytes_used >> 1;
10403 fragment_free_space(root, cache);
10404 }
10405#endif
Filipe Manana2e6e5182015-05-12 00:28:11 +010010406 /*
10407 * Call to ensure the corresponding space_info object is created and
10408 * assigned to our block group, but don't update its counters just yet.
10409 * We want our bg to be added to the rbtree with its ->space_info set.
10410 */
Josef Bacike40edf22016-03-25 13:25:47 -040010411 ret = update_space_info(root->fs_info, cache->flags, 0, 0, 0,
Filipe Manana2e6e5182015-05-12 00:28:11 +010010412 &cache->space_info);
10413 if (ret) {
10414 btrfs_remove_free_space_cache(cache);
10415 btrfs_put_block_group(cache);
10416 return ret;
10417 }
10418
Josef Bacik8c579fe2013-04-02 12:40:42 -040010419 ret = btrfs_add_block_group_cache(root->fs_info, cache);
10420 if (ret) {
10421 btrfs_remove_free_space_cache(cache);
10422 btrfs_put_block_group(cache);
10423 return ret;
10424 }
10425
Filipe Manana2e6e5182015-05-12 00:28:11 +010010426 /*
10427 * Now that our block group has its ->space_info set and is inserted in
10428 * the rbtree, update the space info's counters.
10429 */
Josef Bacikc83f8ef2016-03-25 13:25:52 -040010430 trace_btrfs_add_block_group(root->fs_info, cache, 1);
Chris Mason6324fbf2008-03-24 15:01:59 -040010431 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -040010432 cache->bytes_super, &cache->space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010433 if (ret) {
10434 btrfs_remove_free_space_cache(cache);
10435 spin_lock(&root->fs_info->block_group_cache_lock);
10436 rb_erase(&cache->cache_node,
10437 &root->fs_info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +000010438 RB_CLEAR_NODE(&cache->cache_node);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010439 spin_unlock(&root->fs_info->block_group_cache_lock);
10440 btrfs_put_block_group(cache);
10441 return ret;
10442 }
Li Zefanc7c144d2011-12-07 10:39:22 +080010443 update_global_block_rsv(root->fs_info);
Josef Bacik1b2da372009-09-11 16:11:20 -040010444
Yan, Zhengb742bb82010-05-16 10:46:24 -040010445 __link_block_group(cache->space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010446
Josef Bacik47ab2a62014-09-18 11:20:02 -040010447 list_add_tail(&cache->bg_list, &trans->new_bgs);
Chris Mason6324fbf2008-03-24 15:01:59 -040010448
Chris Masond18a2c42008-04-04 15:40:00 -040010449 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason6324fbf2008-03-24 15:01:59 -040010450 return 0;
10451}
Zheng Yan1a40e232008-09-26 10:09:34 -040010452
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010453static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
10454{
Ilya Dryomov899c81e2012-03-27 17:09:16 +030010455 u64 extra_flags = chunk_to_extended(flags) &
10456 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010457
Miao Xiede98ced2013-01-29 10:13:12 +000010458 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010459 if (flags & BTRFS_BLOCK_GROUP_DATA)
10460 fs_info->avail_data_alloc_bits &= ~extra_flags;
10461 if (flags & BTRFS_BLOCK_GROUP_METADATA)
10462 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
10463 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
10464 fs_info->avail_system_alloc_bits &= ~extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +000010465 write_sequnlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010466}
10467
Zheng Yan1a40e232008-09-26 10:09:34 -040010468int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
Filipe Manana04216822014-11-27 21:14:15 +000010469 struct btrfs_root *root, u64 group_start,
10470 struct extent_map *em)
Zheng Yan1a40e232008-09-26 10:09:34 -040010471{
10472 struct btrfs_path *path;
10473 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -040010474 struct btrfs_free_cluster *cluster;
Josef Bacik0af3d002010-06-21 14:48:16 -040010475 struct btrfs_root *tree_root = root->fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -040010476 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -040010477 struct inode *inode;
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010478 struct kobject *kobj = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -040010479 int ret;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010480 int index;
Josef Bacik89a55892010-10-14 14:52:27 -040010481 int factor;
Filipe Manana4f69cb92014-11-26 15:28:51 +000010482 struct btrfs_caching_control *caching_ctl = NULL;
Filipe Manana04216822014-11-27 21:14:15 +000010483 bool remove_em;
Zheng Yan1a40e232008-09-26 10:09:34 -040010484
Zheng Yan1a40e232008-09-26 10:09:34 -040010485 root = root->fs_info->extent_root;
10486
10487 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
10488 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -050010489 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -040010490
liubo9f7c43c2011-03-07 02:13:33 +000010491 /*
10492 * Free the reserved super bytes from this block group before
10493 * remove it.
10494 */
10495 free_excluded_extents(root, block_group);
10496
Zheng Yan1a40e232008-09-26 10:09:34 -040010497 memcpy(&key, &block_group->key, sizeof(key));
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010498 index = get_block_group_index(block_group);
Josef Bacik89a55892010-10-14 14:52:27 -040010499 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
10500 BTRFS_BLOCK_GROUP_RAID1 |
10501 BTRFS_BLOCK_GROUP_RAID10))
10502 factor = 2;
10503 else
10504 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -040010505
Chris Mason44fb5512009-06-04 15:34:51 -040010506 /* make sure this block group isn't part of an allocation cluster */
10507 cluster = &root->fs_info->data_alloc_cluster;
10508 spin_lock(&cluster->refill_lock);
10509 btrfs_return_cluster_to_free_space(block_group, cluster);
10510 spin_unlock(&cluster->refill_lock);
10511
10512 /*
10513 * make sure this block group isn't part of a metadata
10514 * allocation cluster
10515 */
10516 cluster = &root->fs_info->meta_alloc_cluster;
10517 spin_lock(&cluster->refill_lock);
10518 btrfs_return_cluster_to_free_space(block_group, cluster);
10519 spin_unlock(&cluster->refill_lock);
10520
Zheng Yan1a40e232008-09-26 10:09:34 -040010521 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -070010522 if (!path) {
10523 ret = -ENOMEM;
10524 goto out;
10525 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010526
Chris Mason1bbc6212015-04-06 12:46:08 -070010527 /*
10528 * get the inode first so any iput calls done for the io_list
10529 * aren't the final iput (no unlinks allowed now)
10530 */
Ilya Dryomov10b2f342011-10-02 13:56:53 +030010531 inode = lookup_free_space_inode(tree_root, block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -070010532
10533 mutex_lock(&trans->transaction->cache_write_mutex);
10534 /*
10535 * make sure our free spache cache IO is done before remove the
10536 * free space inode
10537 */
10538 spin_lock(&trans->transaction->dirty_bgs_lock);
10539 if (!list_empty(&block_group->io_list)) {
10540 list_del_init(&block_group->io_list);
10541
10542 WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode);
10543
10544 spin_unlock(&trans->transaction->dirty_bgs_lock);
10545 btrfs_wait_cache_io(root, trans, block_group,
10546 &block_group->io_ctl, path,
10547 block_group->key.objectid);
10548 btrfs_put_block_group(block_group);
10549 spin_lock(&trans->transaction->dirty_bgs_lock);
10550 }
10551
10552 if (!list_empty(&block_group->dirty_list)) {
10553 list_del_init(&block_group->dirty_list);
10554 btrfs_put_block_group(block_group);
10555 }
10556 spin_unlock(&trans->transaction->dirty_bgs_lock);
10557 mutex_unlock(&trans->transaction->cache_write_mutex);
10558
Josef Bacik0af3d002010-06-21 14:48:16 -040010559 if (!IS_ERR(inode)) {
Tsutomu Itohb5324022011-07-19 07:27:20 +000010560 ret = btrfs_orphan_add(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010561 if (ret) {
10562 btrfs_add_delayed_iput(inode);
10563 goto out;
10564 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010565 clear_nlink(inode);
10566 /* One for the block groups ref */
10567 spin_lock(&block_group->lock);
10568 if (block_group->iref) {
10569 block_group->iref = 0;
10570 block_group->inode = NULL;
10571 spin_unlock(&block_group->lock);
10572 iput(inode);
10573 } else {
10574 spin_unlock(&block_group->lock);
10575 }
10576 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -040010577 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -040010578 }
10579
10580 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
10581 key.offset = block_group->key.objectid;
10582 key.type = 0;
10583
10584 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
10585 if (ret < 0)
10586 goto out;
10587 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +020010588 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010589 if (ret == 0) {
10590 ret = btrfs_del_item(trans, tree_root, path);
10591 if (ret)
10592 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +020010593 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010594 }
10595
Yan Zheng3dfdb932009-01-21 10:49:16 -050010596 spin_lock(&root->fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -040010597 rb_erase(&block_group->cache_node,
10598 &root->fs_info->block_group_cache_tree);
Filipe Manana292cbd52014-11-26 15:28:50 +000010599 RB_CLEAR_NODE(&block_group->cache_node);
Liu Boa1897fd2012-12-27 09:01:23 +000010600
10601 if (root->fs_info->first_logical_byte == block_group->key.objectid)
10602 root->fs_info->first_logical_byte = (u64)-1;
Yan Zheng3dfdb932009-01-21 10:49:16 -050010603 spin_unlock(&root->fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -040010604
Josef Bacik80eb2342008-10-29 14:49:05 -040010605 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -040010606 /*
10607 * we must use list_del_init so people can check to see if they
10608 * are still on the list after taking the semaphore
10609 */
10610 list_del_init(&block_group->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010611 if (list_empty(&block_group->space_info->block_groups[index])) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010612 kobj = block_group->space_info->block_group_kobjs[index];
10613 block_group->space_info->block_group_kobjs[index] = NULL;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010614 clear_avail_alloc_bits(root->fs_info, block_group->flags);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010615 }
Josef Bacik80eb2342008-10-29 14:49:05 -040010616 up_write(&block_group->space_info->groups_sem);
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010617 if (kobj) {
10618 kobject_del(kobj);
10619 kobject_put(kobj);
10620 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010621
Filipe Manana4f69cb92014-11-26 15:28:51 +000010622 if (block_group->has_caching_ctl)
10623 caching_ctl = get_caching_control(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -040010624 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -040010625 wait_block_group_cache_done(block_group);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010626 if (block_group->has_caching_ctl) {
10627 down_write(&root->fs_info->commit_root_sem);
10628 if (!caching_ctl) {
10629 struct btrfs_caching_control *ctl;
10630
10631 list_for_each_entry(ctl,
10632 &root->fs_info->caching_block_groups, list)
10633 if (ctl->block_group == block_group) {
10634 caching_ctl = ctl;
10635 atomic_inc(&caching_ctl->count);
10636 break;
10637 }
10638 }
10639 if (caching_ctl)
10640 list_del_init(&caching_ctl->list);
10641 up_write(&root->fs_info->commit_root_sem);
10642 if (caching_ctl) {
10643 /* Once for the caching bgs list and once for us. */
10644 put_caching_control(caching_ctl);
10645 put_caching_control(caching_ctl);
10646 }
10647 }
Josef Bacik817d52f2009-07-13 21:29:25 -040010648
Josef Bacikce93ec52014-11-17 15:45:48 -050010649 spin_lock(&trans->transaction->dirty_bgs_lock);
10650 if (!list_empty(&block_group->dirty_list)) {
Chris Mason1bbc6212015-04-06 12:46:08 -070010651 WARN_ON(1);
10652 }
10653 if (!list_empty(&block_group->io_list)) {
10654 WARN_ON(1);
Josef Bacikce93ec52014-11-17 15:45:48 -050010655 }
10656 spin_unlock(&trans->transaction->dirty_bgs_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -040010657 btrfs_remove_free_space_cache(block_group);
10658
Yan Zhengc146afa2008-11-12 14:34:12 -050010659 spin_lock(&block_group->space_info->lock);
Filipe Manana75c68e92015-01-16 13:24:40 +000010660 list_del_init(&block_group->ro_list);
Zhao Lei18d018a2015-02-24 20:07:44 +080010661
Jeff Mahoney3cdde222016-06-09 21:38:35 -040010662 if (btrfs_test_opt(root->fs_info, ENOSPC_DEBUG)) {
Zhao Lei18d018a2015-02-24 20:07:44 +080010663 WARN_ON(block_group->space_info->total_bytes
10664 < block_group->key.offset);
10665 WARN_ON(block_group->space_info->bytes_readonly
10666 < block_group->key.offset);
10667 WARN_ON(block_group->space_info->disk_total
10668 < block_group->key.offset * factor);
10669 }
Yan Zhengc146afa2008-11-12 14:34:12 -050010670 block_group->space_info->total_bytes -= block_group->key.offset;
10671 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -040010672 block_group->space_info->disk_total -= block_group->key.offset * factor;
Zhao Lei18d018a2015-02-24 20:07:44 +080010673
Yan Zhengc146afa2008-11-12 14:34:12 -050010674 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -040010675
Josef Bacik0af3d002010-06-21 14:48:16 -040010676 memcpy(&key, &block_group->key, sizeof(key));
10677
Filipe Manana04216822014-11-27 21:14:15 +000010678 lock_chunks(root);
Filipe Manana495e64f2014-12-02 18:07:30 +000010679 if (!list_empty(&em->list)) {
10680 /* We're in the transaction->pending_chunks list. */
10681 free_extent_map(em);
10682 }
Filipe Manana04216822014-11-27 21:14:15 +000010683 spin_lock(&block_group->lock);
10684 block_group->removed = 1;
10685 /*
10686 * At this point trimming can't start on this block group, because we
10687 * removed the block group from the tree fs_info->block_group_cache_tree
10688 * so no one can't find it anymore and even if someone already got this
10689 * block group before we removed it from the rbtree, they have already
10690 * incremented block_group->trimming - if they didn't, they won't find
10691 * any free space entries because we already removed them all when we
10692 * called btrfs_remove_free_space_cache().
10693 *
10694 * And we must not remove the extent map from the fs_info->mapping_tree
10695 * to prevent the same logical address range and physical device space
10696 * ranges from being reused for a new block group. This is because our
10697 * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is
10698 * completely transactionless, so while it is trimming a range the
10699 * currently running transaction might finish and a new one start,
10700 * allowing for new block groups to be created that can reuse the same
10701 * physical device locations unless we take this special care.
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010702 *
10703 * There may also be an implicit trim operation if the file system
10704 * is mounted with -odiscard. The same protections must remain
10705 * in place until the extents have been discarded completely when
10706 * the transaction commit has completed.
Filipe Manana04216822014-11-27 21:14:15 +000010707 */
10708 remove_em = (atomic_read(&block_group->trimming) == 0);
10709 /*
10710 * Make sure a trimmer task always sees the em in the pinned_chunks list
10711 * if it sees block_group->removed == 1 (needs to lock block_group->lock
10712 * before checking block_group->removed).
10713 */
10714 if (!remove_em) {
10715 /*
10716 * Our em might be in trans->transaction->pending_chunks which
10717 * is protected by fs_info->chunk_mutex ([lock|unlock]_chunks),
10718 * and so is the fs_info->pinned_chunks list.
10719 *
10720 * So at this point we must be holding the chunk_mutex to avoid
10721 * any races with chunk allocation (more specifically at
10722 * volumes.c:contains_pending_extent()), to ensure it always
10723 * sees the em, either in the pending_chunks list or in the
10724 * pinned_chunks list.
10725 */
10726 list_move_tail(&em->list, &root->fs_info->pinned_chunks);
10727 }
10728 spin_unlock(&block_group->lock);
Filipe Manana04216822014-11-27 21:14:15 +000010729
10730 if (remove_em) {
10731 struct extent_map_tree *em_tree;
10732
10733 em_tree = &root->fs_info->mapping_tree.map_tree;
10734 write_lock(&em_tree->lock);
Filipe Manana8dbcd102014-12-02 18:07:49 +000010735 /*
10736 * The em might be in the pending_chunks list, so make sure the
10737 * chunk mutex is locked, since remove_extent_mapping() will
10738 * delete us from that list.
10739 */
Filipe Manana04216822014-11-27 21:14:15 +000010740 remove_extent_mapping(em_tree, em);
10741 write_unlock(&em_tree->lock);
10742 /* once for the tree */
10743 free_extent_map(em);
10744 }
10745
Filipe Manana8dbcd102014-12-02 18:07:49 +000010746 unlock_chunks(root);
10747
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010748 ret = remove_block_group_free_space(trans, root->fs_info, block_group);
10749 if (ret)
10750 goto out;
10751
Chris Masonfa9c0d792009-04-03 09:47:43 -040010752 btrfs_put_block_group(block_group);
10753 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -040010754
10755 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
10756 if (ret > 0)
10757 ret = -EIO;
10758 if (ret < 0)
10759 goto out;
10760
10761 ret = btrfs_del_item(trans, root, path);
10762out:
10763 btrfs_free_path(path);
10764 return ret;
10765}
liuboacce9522011-01-06 19:30:25 +080010766
Filipe Manana8eab77f2015-11-13 23:57:16 +000010767struct btrfs_trans_handle *
Filipe Manana7fd01182015-11-13 23:57:17 +000010768btrfs_start_trans_remove_block_group(struct btrfs_fs_info *fs_info,
10769 const u64 chunk_offset)
Filipe Manana8eab77f2015-11-13 23:57:16 +000010770{
Filipe Manana7fd01182015-11-13 23:57:17 +000010771 struct extent_map_tree *em_tree = &fs_info->mapping_tree.map_tree;
10772 struct extent_map *em;
10773 struct map_lookup *map;
10774 unsigned int num_items;
10775
10776 read_lock(&em_tree->lock);
10777 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
10778 read_unlock(&em_tree->lock);
10779 ASSERT(em && em->start == chunk_offset);
10780
Filipe Manana8eab77f2015-11-13 23:57:16 +000010781 /*
Filipe Manana7fd01182015-11-13 23:57:17 +000010782 * We need to reserve 3 + N units from the metadata space info in order
10783 * to remove a block group (done at btrfs_remove_chunk() and at
10784 * btrfs_remove_block_group()), which are used for:
10785 *
Filipe Manana8eab77f2015-11-13 23:57:16 +000010786 * 1 unit for adding the free space inode's orphan (located in the tree
10787 * of tree roots).
Filipe Manana7fd01182015-11-13 23:57:17 +000010788 * 1 unit for deleting the block group item (located in the extent
10789 * tree).
10790 * 1 unit for deleting the free space item (located in tree of tree
10791 * roots).
10792 * N units for deleting N device extent items corresponding to each
10793 * stripe (located in the device tree).
10794 *
10795 * In order to remove a block group we also need to reserve units in the
10796 * system space info in order to update the chunk tree (update one or
10797 * more device items and remove one chunk item), but this is done at
10798 * btrfs_remove_chunk() through a call to check_system_chunk().
Filipe Manana8eab77f2015-11-13 23:57:16 +000010799 */
Jeff Mahoney95617d62015-06-03 10:55:48 -040010800 map = em->map_lookup;
Filipe Manana7fd01182015-11-13 23:57:17 +000010801 num_items = 3 + map->num_stripes;
10802 free_extent_map(em);
10803
Filipe Manana8eab77f2015-11-13 23:57:16 +000010804 return btrfs_start_transaction_fallback_global_rsv(fs_info->extent_root,
Filipe Manana7fd01182015-11-13 23:57:17 +000010805 num_items, 1);
Filipe Manana8eab77f2015-11-13 23:57:16 +000010806}
10807
Josef Bacik47ab2a62014-09-18 11:20:02 -040010808/*
10809 * Process the unused_bgs list and remove any that don't have any allocated
10810 * space inside of them.
10811 */
10812void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info)
10813{
10814 struct btrfs_block_group_cache *block_group;
10815 struct btrfs_space_info *space_info;
10816 struct btrfs_root *root = fs_info->extent_root;
10817 struct btrfs_trans_handle *trans;
10818 int ret = 0;
10819
Josef Bacikafcdd122016-09-02 15:40:02 -040010820 if (!test_bit(BTRFS_FS_OPEN, &fs_info->flags))
Josef Bacik47ab2a62014-09-18 11:20:02 -040010821 return;
10822
10823 spin_lock(&fs_info->unused_bgs_lock);
10824 while (!list_empty(&fs_info->unused_bgs)) {
10825 u64 start, end;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010826 int trimming;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010827
10828 block_group = list_first_entry(&fs_info->unused_bgs,
10829 struct btrfs_block_group_cache,
10830 bg_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010831 list_del_init(&block_group->bg_list);
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010832
10833 space_info = block_group->space_info;
10834
Josef Bacik47ab2a62014-09-18 11:20:02 -040010835 if (ret || btrfs_mixed_space_info(space_info)) {
10836 btrfs_put_block_group(block_group);
10837 continue;
10838 }
10839 spin_unlock(&fs_info->unused_bgs_lock);
10840
Zhao Leid5f2e332015-10-08 18:46:44 +080010841 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Filipe Manana67c5e7d2015-06-11 00:58:53 +010010842
Josef Bacik47ab2a62014-09-18 11:20:02 -040010843 /* Don't want to race with allocators so take the groups_sem */
10844 down_write(&space_info->groups_sem);
10845 spin_lock(&block_group->lock);
10846 if (block_group->reserved ||
10847 btrfs_block_group_used(&block_group->item) ||
Chris Mason19c4d2f2016-10-10 13:43:31 -070010848 block_group->ro ||
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010849 list_is_singular(&block_group->list)) {
Josef Bacik47ab2a62014-09-18 11:20:02 -040010850 /*
10851 * We want to bail if we made new allocations or have
10852 * outstanding allocations in this block group. We do
10853 * the ro check in case balance is currently acting on
10854 * this block group.
10855 */
10856 spin_unlock(&block_group->lock);
10857 up_write(&space_info->groups_sem);
10858 goto next;
10859 }
10860 spin_unlock(&block_group->lock);
10861
10862 /* We don't want to force the issue, only flip if it's ok. */
Zhaolei868f4012015-08-05 16:43:27 +080010863 ret = inc_block_group_ro(block_group, 0);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010864 up_write(&space_info->groups_sem);
10865 if (ret < 0) {
10866 ret = 0;
10867 goto next;
10868 }
10869
10870 /*
10871 * Want to do this before we do anything else so we can recover
10872 * properly if we fail to join the transaction.
10873 */
Filipe Manana7fd01182015-11-13 23:57:17 +000010874 trans = btrfs_start_trans_remove_block_group(fs_info,
10875 block_group->key.objectid);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010876 if (IS_ERR(trans)) {
Zhaolei868f4012015-08-05 16:43:27 +080010877 btrfs_dec_block_group_ro(root, block_group);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010878 ret = PTR_ERR(trans);
10879 goto next;
10880 }
10881
10882 /*
10883 * We could have pending pinned extents for this block group,
10884 * just delete them, we don't care about them anymore.
10885 */
10886 start = block_group->key.objectid;
10887 end = start + block_group->key.offset - 1;
Filipe Mananad4b450c2015-01-29 19:18:25 +000010888 /*
10889 * Hold the unused_bg_unpin_mutex lock to avoid racing with
10890 * btrfs_finish_extent_commit(). If we are at transaction N,
10891 * another task might be running finish_extent_commit() for the
10892 * previous transaction N - 1, and have seen a range belonging
10893 * to the block group in freed_extents[] before we were able to
10894 * clear the whole block group range from freed_extents[]. This
10895 * means that task can lookup for the block group after we
10896 * unpinned it from freed_extents[] and removed it, leading to
10897 * a BUG_ON() at btrfs_unpin_extent_range().
10898 */
10899 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana758eb512014-11-03 14:08:39 +000010900 ret = clear_extent_bits(&fs_info->freed_extents[0], start, end,
David Sterba91166212016-04-26 23:54:39 +020010901 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000010902 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000010903 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Zhaolei868f4012015-08-05 16:43:27 +080010904 btrfs_dec_block_group_ro(root, block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000010905 goto end_trans;
10906 }
10907 ret = clear_extent_bits(&fs_info->freed_extents[1], start, end,
David Sterba91166212016-04-26 23:54:39 +020010908 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000010909 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000010910 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Zhaolei868f4012015-08-05 16:43:27 +080010911 btrfs_dec_block_group_ro(root, block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000010912 goto end_trans;
10913 }
Filipe Mananad4b450c2015-01-29 19:18:25 +000010914 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010915
10916 /* Reset pinned so btrfs_put_block_group doesn't complain */
Zhao Leic30666d2015-02-25 14:17:20 +080010917 spin_lock(&space_info->lock);
10918 spin_lock(&block_group->lock);
10919
10920 space_info->bytes_pinned -= block_group->pinned;
10921 space_info->bytes_readonly += block_group->pinned;
10922 percpu_counter_add(&space_info->total_bytes_pinned,
10923 -block_group->pinned);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010924 block_group->pinned = 0;
10925
Zhao Leic30666d2015-02-25 14:17:20 +080010926 spin_unlock(&block_group->lock);
10927 spin_unlock(&space_info->lock);
10928
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010929 /* DISCARD can flip during remount */
Jeff Mahoney3cdde222016-06-09 21:38:35 -040010930 trimming = btrfs_test_opt(root->fs_info, DISCARD);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010931
10932 /* Implicit trim during transaction commit. */
10933 if (trimming)
10934 btrfs_get_block_group_trimming(block_group);
10935
Josef Bacik47ab2a62014-09-18 11:20:02 -040010936 /*
10937 * Btrfs_remove_chunk will abort the transaction if things go
10938 * horribly wrong.
10939 */
10940 ret = btrfs_remove_chunk(trans, root,
10941 block_group->key.objectid);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010942
10943 if (ret) {
10944 if (trimming)
10945 btrfs_put_block_group_trimming(block_group);
10946 goto end_trans;
10947 }
10948
10949 /*
10950 * If we're not mounted with -odiscard, we can just forget
10951 * about this block group. Otherwise we'll need to wait
10952 * until transaction commit to do the actual discard.
10953 */
10954 if (trimming) {
Filipe Manana348a0012015-11-27 12:16:16 +000010955 spin_lock(&fs_info->unused_bgs_lock);
10956 /*
10957 * A concurrent scrub might have added us to the list
10958 * fs_info->unused_bgs, so use a list_move operation
10959 * to add the block group to the deleted_bgs list.
10960 */
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010961 list_move(&block_group->bg_list,
10962 &trans->transaction->deleted_bgs);
Filipe Manana348a0012015-11-27 12:16:16 +000010963 spin_unlock(&fs_info->unused_bgs_lock);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010964 btrfs_get_block_group(block_group);
10965 }
Filipe Manana758eb512014-11-03 14:08:39 +000010966end_trans:
Josef Bacik47ab2a62014-09-18 11:20:02 -040010967 btrfs_end_transaction(trans, root);
10968next:
Zhao Leid5f2e332015-10-08 18:46:44 +080010969 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010970 btrfs_put_block_group(block_group);
10971 spin_lock(&fs_info->unused_bgs_lock);
10972 }
10973 spin_unlock(&fs_info->unused_bgs_lock);
10974}
10975
liuboc59021f2011-03-07 02:13:14 +000010976int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
10977{
10978 struct btrfs_space_info *space_info;
liubo1aba86d2011-04-08 08:44:37 +000010979 struct btrfs_super_block *disk_super;
10980 u64 features;
10981 u64 flags;
10982 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +000010983 int ret;
10984
David Sterba6c417612011-04-13 15:41:04 +020010985 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +000010986 if (!btrfs_super_root(disk_super))
Dan Carpenter0dc924c52016-01-13 15:21:17 +030010987 return -EINVAL;
liuboc59021f2011-03-07 02:13:14 +000010988
liubo1aba86d2011-04-08 08:44:37 +000010989 features = btrfs_super_incompat_flags(disk_super);
10990 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
10991 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +000010992
liubo1aba86d2011-04-08 08:44:37 +000010993 flags = BTRFS_BLOCK_GROUP_SYSTEM;
Josef Bacike40edf22016-03-25 13:25:47 -040010994 ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info);
liuboc59021f2011-03-07 02:13:14 +000010995 if (ret)
liubo1aba86d2011-04-08 08:44:37 +000010996 goto out;
liuboc59021f2011-03-07 02:13:14 +000010997
liubo1aba86d2011-04-08 08:44:37 +000010998 if (mixed) {
10999 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
Josef Bacike40edf22016-03-25 13:25:47 -040011000 ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info);
liubo1aba86d2011-04-08 08:44:37 +000011001 } else {
11002 flags = BTRFS_BLOCK_GROUP_METADATA;
Josef Bacike40edf22016-03-25 13:25:47 -040011003 ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info);
liubo1aba86d2011-04-08 08:44:37 +000011004 if (ret)
11005 goto out;
11006
11007 flags = BTRFS_BLOCK_GROUP_DATA;
Josef Bacike40edf22016-03-25 13:25:47 -040011008 ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info);
liubo1aba86d2011-04-08 08:44:37 +000011009 }
11010out:
liuboc59021f2011-03-07 02:13:14 +000011011 return ret;
11012}
11013
liuboacce9522011-01-06 19:30:25 +080011014int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
11015{
Filipe Manana678886b2014-12-07 21:31:47 +000011016 return unpin_extent_range(root, start, end, false);
liuboacce9522011-01-06 19:30:25 +080011017}
11018
Jeff Mahoney499f3772015-06-15 09:41:17 -040011019/*
11020 * It used to be that old block groups would be left around forever.
11021 * Iterating over them would be enough to trim unused space. Since we
11022 * now automatically remove them, we also need to iterate over unallocated
11023 * space.
11024 *
11025 * We don't want a transaction for this since the discard may take a
11026 * substantial amount of time. We don't require that a transaction be
11027 * running, but we do need to take a running transaction into account
11028 * to ensure that we're not discarding chunks that were released in
11029 * the current transaction.
11030 *
11031 * Holding the chunks lock will prevent other threads from allocating
11032 * or releasing chunks, but it won't prevent a running transaction
11033 * from committing and releasing the memory that the pending chunks
11034 * list head uses. For that, we need to take a reference to the
11035 * transaction.
11036 */
11037static int btrfs_trim_free_extents(struct btrfs_device *device,
11038 u64 minlen, u64 *trimmed)
11039{
11040 u64 start = 0, len = 0;
11041 int ret;
11042
11043 *trimmed = 0;
11044
11045 /* Not writeable = nothing to do. */
11046 if (!device->writeable)
11047 return 0;
11048
11049 /* No free space = nothing to do. */
11050 if (device->total_bytes <= device->bytes_used)
11051 return 0;
11052
11053 ret = 0;
11054
11055 while (1) {
11056 struct btrfs_fs_info *fs_info = device->dev_root->fs_info;
11057 struct btrfs_transaction *trans;
11058 u64 bytes;
11059
11060 ret = mutex_lock_interruptible(&fs_info->chunk_mutex);
11061 if (ret)
11062 return ret;
11063
11064 down_read(&fs_info->commit_root_sem);
11065
11066 spin_lock(&fs_info->trans_lock);
11067 trans = fs_info->running_transaction;
11068 if (trans)
11069 atomic_inc(&trans->use_count);
11070 spin_unlock(&fs_info->trans_lock);
11071
11072 ret = find_free_dev_extent_start(trans, device, minlen, start,
11073 &start, &len);
11074 if (trans)
11075 btrfs_put_transaction(trans);
11076
11077 if (ret) {
11078 up_read(&fs_info->commit_root_sem);
11079 mutex_unlock(&fs_info->chunk_mutex);
11080 if (ret == -ENOSPC)
11081 ret = 0;
11082 break;
11083 }
11084
11085 ret = btrfs_issue_discard(device->bdev, start, len, &bytes);
11086 up_read(&fs_info->commit_root_sem);
11087 mutex_unlock(&fs_info->chunk_mutex);
11088
11089 if (ret)
11090 break;
11091
11092 start += len;
11093 *trimmed += bytes;
11094
11095 if (fatal_signal_pending(current)) {
11096 ret = -ERESTARTSYS;
11097 break;
11098 }
11099
11100 cond_resched();
11101 }
11102
11103 return ret;
11104}
11105
Li Dongyangf7039b12011-03-24 10:24:28 +000011106int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range)
11107{
11108 struct btrfs_fs_info *fs_info = root->fs_info;
11109 struct btrfs_block_group_cache *cache = NULL;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011110 struct btrfs_device *device;
11111 struct list_head *devices;
Li Dongyangf7039b12011-03-24 10:24:28 +000011112 u64 group_trimmed;
11113 u64 start;
11114 u64 end;
11115 u64 trimmed = 0;
Liu Bo2cac13e2012-02-09 18:17:41 +080011116 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +000011117 int ret = 0;
11118
Liu Bo2cac13e2012-02-09 18:17:41 +080011119 /*
11120 * try to trim all FS space, our block group may start from non-zero.
11121 */
11122 if (range->len == total_bytes)
11123 cache = btrfs_lookup_first_block_group(fs_info, range->start);
11124 else
11125 cache = btrfs_lookup_block_group(fs_info, range->start);
Li Dongyangf7039b12011-03-24 10:24:28 +000011126
11127 while (cache) {
11128 if (cache->key.objectid >= (range->start + range->len)) {
11129 btrfs_put_block_group(cache);
11130 break;
11131 }
11132
11133 start = max(range->start, cache->key.objectid);
11134 end = min(range->start + range->len,
11135 cache->key.objectid + cache->key.offset);
11136
11137 if (end - start >= range->minlen) {
11138 if (!block_group_cache_done(cache)) {
Liu Bof6373bf2012-12-27 09:01:18 +000011139 ret = cache_block_group(cache, 0);
Josef Bacik1be41b72013-06-12 13:56:06 -040011140 if (ret) {
11141 btrfs_put_block_group(cache);
11142 break;
11143 }
11144 ret = wait_block_group_cache_done(cache);
11145 if (ret) {
11146 btrfs_put_block_group(cache);
11147 break;
11148 }
Li Dongyangf7039b12011-03-24 10:24:28 +000011149 }
11150 ret = btrfs_trim_block_group(cache,
11151 &group_trimmed,
11152 start,
11153 end,
11154 range->minlen);
11155
11156 trimmed += group_trimmed;
11157 if (ret) {
11158 btrfs_put_block_group(cache);
11159 break;
11160 }
11161 }
11162
11163 cache = next_block_group(fs_info->tree_root, cache);
11164 }
11165
Jeff Mahoney499f3772015-06-15 09:41:17 -040011166 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
11167 devices = &root->fs_info->fs_devices->alloc_list;
11168 list_for_each_entry(device, devices, dev_alloc_list) {
11169 ret = btrfs_trim_free_extents(device, range->minlen,
11170 &group_trimmed);
11171 if (ret)
11172 break;
11173
11174 trimmed += group_trimmed;
11175 }
11176 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
11177
Li Dongyangf7039b12011-03-24 10:24:28 +000011178 range->len = trimmed;
11179 return ret;
11180}
Miao Xie8257b2d2014-03-06 13:38:19 +080011181
11182/*
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011183 * btrfs_{start,end}_write_no_snapshoting() are similar to
11184 * mnt_{want,drop}_write(), they are used to prevent some tasks from writing
11185 * data into the page cache through nocow before the subvolume is snapshoted,
11186 * but flush the data into disk after the snapshot creation, or to prevent
11187 * operations while snapshoting is ongoing and that cause the snapshot to be
11188 * inconsistent (writes followed by expanding truncates for example).
Miao Xie8257b2d2014-03-06 13:38:19 +080011189 */
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011190void btrfs_end_write_no_snapshoting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011191{
11192 percpu_counter_dec(&root->subv_writers->counter);
11193 /*
David Sterbaa83342a2015-02-16 19:36:47 +010011194 * Make sure counter is updated before we wake up waiters.
Miao Xie8257b2d2014-03-06 13:38:19 +080011195 */
11196 smp_mb();
11197 if (waitqueue_active(&root->subv_writers->wait))
11198 wake_up(&root->subv_writers->wait);
11199}
11200
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011201int btrfs_start_write_no_snapshoting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011202{
David Sterbaee39b432014-09-30 01:33:33 +020011203 if (atomic_read(&root->will_be_snapshoted))
Miao Xie8257b2d2014-03-06 13:38:19 +080011204 return 0;
11205
11206 percpu_counter_inc(&root->subv_writers->counter);
11207 /*
11208 * Make sure counter is updated before we check for snapshot creation.
11209 */
11210 smp_mb();
David Sterbaee39b432014-09-30 01:33:33 +020011211 if (atomic_read(&root->will_be_snapshoted)) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011212 btrfs_end_write_no_snapshoting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +080011213 return 0;
11214 }
11215 return 1;
11216}
Zhao Lei0bc19f902016-01-06 18:56:36 +080011217
11218static int wait_snapshoting_atomic_t(atomic_t *a)
11219{
11220 schedule();
11221 return 0;
11222}
11223
11224void btrfs_wait_for_snapshot_creation(struct btrfs_root *root)
11225{
11226 while (true) {
11227 int ret;
11228
11229 ret = btrfs_start_write_no_snapshoting(root);
11230 if (ret)
11231 break;
11232 wait_on_atomic_t(&root->will_be_snapshoted,
11233 wait_snapshoting_atomic_t,
11234 TASK_UNINTERRUPTIBLE);
11235 }
11236}