blob: 665da8f66ff18ae5260f892b60a4bafb4fe323fa [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);
Josef Bacik9ed74f22009-09-11 16:12:44 -040090static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
91 int dump_block_groups);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +080092static int btrfs_add_reserved_bytes(struct btrfs_block_group_cache *cache,
Wang Xiaoguang18513092016-07-25 15:51:40 +080093 u64 ram_bytes, u64 num_bytes, int delalloc);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +080094static int btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache,
95 u64 num_bytes, int delalloc);
Josef Bacik5d803662013-02-07 16:06:02 -050096static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
97 u64 num_bytes);
Eric Sandeen48a3b632013-04-25 20:41:01 +000098int btrfs_pin_extent(struct btrfs_root *root,
99 u64 bytenr, u64 num_bytes, int reserved);
Josef Bacik957780e2016-05-17 13:30:55 -0400100static int __reserve_metadata_bytes(struct btrfs_root *root,
101 struct btrfs_space_info *space_info,
102 u64 orig_bytes,
103 enum btrfs_reserve_flush_enum flush);
104static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
105 struct btrfs_space_info *space_info,
106 u64 num_bytes);
107static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info,
108 struct btrfs_space_info *space_info,
109 u64 num_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -0500110
Josef Bacik817d52f2009-07-13 21:29:25 -0400111static noinline int
112block_group_cache_done(struct btrfs_block_group_cache *cache)
113{
114 smp_mb();
Josef Bacik36cce922013-08-05 11:15:21 -0400115 return cache->cached == BTRFS_CACHE_FINISHED ||
116 cache->cached == BTRFS_CACHE_ERROR;
Josef Bacik817d52f2009-07-13 21:29:25 -0400117}
118
Josef Bacik0f9dd462008-09-23 13:14:11 -0400119static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
120{
121 return (cache->flags & bits) == bits;
122}
123
Filipe Manana758f2df2015-11-19 11:45:48 +0000124void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
Josef Bacik11dfe352009-11-13 20:12:59 +0000125{
126 atomic_inc(&cache->count);
127}
128
129void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
130{
Yan, Zhengf0486c62010-05-16 10:46:25 -0400131 if (atomic_dec_and_test(&cache->count)) {
132 WARN_ON(cache->pinned > 0);
133 WARN_ON(cache->reserved > 0);
Li Zefan34d52cb2011-03-29 13:46:06 +0800134 kfree(cache->free_space_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000135 kfree(cache);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400136 }
Josef Bacik11dfe352009-11-13 20:12:59 +0000137}
138
Josef Bacik0f9dd462008-09-23 13:14:11 -0400139/*
140 * this adds the block group to the fs_info rb tree for the block group
141 * cache
142 */
Christoph Hellwigb2950862008-12-02 09:54:17 -0500143static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400144 struct btrfs_block_group_cache *block_group)
145{
146 struct rb_node **p;
147 struct rb_node *parent = NULL;
148 struct btrfs_block_group_cache *cache;
149
150 spin_lock(&info->block_group_cache_lock);
151 p = &info->block_group_cache_tree.rb_node;
152
153 while (*p) {
154 parent = *p;
155 cache = rb_entry(parent, struct btrfs_block_group_cache,
156 cache_node);
157 if (block_group->key.objectid < cache->key.objectid) {
158 p = &(*p)->rb_left;
159 } else if (block_group->key.objectid > cache->key.objectid) {
160 p = &(*p)->rb_right;
161 } else {
162 spin_unlock(&info->block_group_cache_lock);
163 return -EEXIST;
164 }
165 }
166
167 rb_link_node(&block_group->cache_node, parent, p);
168 rb_insert_color(&block_group->cache_node,
169 &info->block_group_cache_tree);
Liu Boa1897fd2012-12-27 09:01:23 +0000170
171 if (info->first_logical_byte > block_group->key.objectid)
172 info->first_logical_byte = block_group->key.objectid;
173
Josef Bacik0f9dd462008-09-23 13:14:11 -0400174 spin_unlock(&info->block_group_cache_lock);
175
176 return 0;
177}
178
179/*
180 * This will return the block group at or after bytenr if contains is 0, else
181 * it will return the block group that contains the bytenr
182 */
183static struct btrfs_block_group_cache *
184block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
185 int contains)
186{
187 struct btrfs_block_group_cache *cache, *ret = NULL;
188 struct rb_node *n;
189 u64 end, start;
190
191 spin_lock(&info->block_group_cache_lock);
192 n = info->block_group_cache_tree.rb_node;
193
194 while (n) {
195 cache = rb_entry(n, struct btrfs_block_group_cache,
196 cache_node);
197 end = cache->key.objectid + cache->key.offset - 1;
198 start = cache->key.objectid;
199
200 if (bytenr < start) {
201 if (!contains && (!ret || start < ret->key.objectid))
202 ret = cache;
203 n = n->rb_left;
204 } else if (bytenr > start) {
205 if (contains && bytenr <= end) {
206 ret = cache;
207 break;
208 }
209 n = n->rb_right;
210 } else {
211 ret = cache;
212 break;
213 }
214 }
Liu Boa1897fd2012-12-27 09:01:23 +0000215 if (ret) {
Josef Bacik11dfe352009-11-13 20:12:59 +0000216 btrfs_get_block_group(ret);
Liu Boa1897fd2012-12-27 09:01:23 +0000217 if (bytenr == 0 && info->first_logical_byte > ret->key.objectid)
218 info->first_logical_byte = ret->key.objectid;
219 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400220 spin_unlock(&info->block_group_cache_lock);
221
222 return ret;
223}
224
Yan Zheng11833d62009-09-11 16:11:19 -0400225static int add_excluded_extent(struct btrfs_root *root,
226 u64 start, u64 num_bytes)
Josef Bacik817d52f2009-07-13 21:29:25 -0400227{
Yan Zheng11833d62009-09-11 16:11:19 -0400228 u64 end = start + num_bytes - 1;
229 set_extent_bits(&root->fs_info->freed_extents[0],
David Sterbaceeb0ae2016-04-26 23:54:39 +0200230 start, end, EXTENT_UPTODATE);
Yan Zheng11833d62009-09-11 16:11:19 -0400231 set_extent_bits(&root->fs_info->freed_extents[1],
David Sterbaceeb0ae2016-04-26 23:54:39 +0200232 start, end, EXTENT_UPTODATE);
Yan Zheng11833d62009-09-11 16:11:19 -0400233 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400234}
235
Yan Zheng11833d62009-09-11 16:11:19 -0400236static void free_excluded_extents(struct btrfs_root *root,
237 struct btrfs_block_group_cache *cache)
Josef Bacik817d52f2009-07-13 21:29:25 -0400238{
Yan Zheng11833d62009-09-11 16:11:19 -0400239 u64 start, end;
240
241 start = cache->key.objectid;
242 end = start + cache->key.offset - 1;
243
244 clear_extent_bits(&root->fs_info->freed_extents[0],
David Sterba91166212016-04-26 23:54:39 +0200245 start, end, EXTENT_UPTODATE);
Yan Zheng11833d62009-09-11 16:11:19 -0400246 clear_extent_bits(&root->fs_info->freed_extents[1],
David Sterba91166212016-04-26 23:54:39 +0200247 start, end, EXTENT_UPTODATE);
Yan Zheng11833d62009-09-11 16:11:19 -0400248}
249
250static int exclude_super_stripes(struct btrfs_root *root,
251 struct btrfs_block_group_cache *cache)
252{
Josef Bacik817d52f2009-07-13 21:29:25 -0400253 u64 bytenr;
254 u64 *logical;
255 int stripe_len;
256 int i, nr, ret;
257
Yan, Zheng06b23312009-11-26 09:31:11 +0000258 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
259 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
260 cache->bytes_super += stripe_len;
261 ret = add_excluded_extent(root, cache->key.objectid,
262 stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400263 if (ret)
264 return ret;
Yan, Zheng06b23312009-11-26 09:31:11 +0000265 }
266
Josef Bacik817d52f2009-07-13 21:29:25 -0400267 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
268 bytenr = btrfs_sb_offset(i);
269 ret = btrfs_rmap_block(&root->fs_info->mapping_tree,
270 cache->key.objectid, bytenr,
271 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{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400733 struct btrfs_block_group_cache *cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400734
Josef Bacik0f9dd462008-09-23 13:14:11 -0400735 cache = block_group_cache_tree_search(info, bytenr, 0);
Chris Mason0ef3e662008-05-24 14:04:53 -0400736
Josef Bacik0f9dd462008-09-23 13:14:11 -0400737 return cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400738}
739
Josef Bacik0f9dd462008-09-23 13:14:11 -0400740/*
Sankar P9f556842009-05-14 13:52:22 -0400741 * return the block group that contains the given bytenr
Josef Bacik0f9dd462008-09-23 13:14:11 -0400742 */
Chris Masond3977122009-01-05 21:25:51 -0500743struct btrfs_block_group_cache *btrfs_lookup_block_group(
744 struct btrfs_fs_info *info,
745 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400746{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400747 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -0400748
Josef Bacik0f9dd462008-09-23 13:14:11 -0400749 cache = block_group_cache_tree_search(info, bytenr, 1);
Chris Mason96b51792007-10-15 16:15:19 -0400750
Josef Bacik0f9dd462008-09-23 13:14:11 -0400751 return cache;
Chris Masonbe744172007-05-06 10:15:01 -0400752}
Chris Mason0b86a832008-03-24 15:01:56 -0400753
Josef Bacik0f9dd462008-09-23 13:14:11 -0400754static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
755 u64 flags)
Chris Mason6324fbf2008-03-24 15:01:59 -0400756{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400757 struct list_head *head = &info->space_info;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400758 struct btrfs_space_info *found;
Chris Mason4184ea72009-03-10 12:39:20 -0400759
Ilya Dryomov52ba6922012-01-16 22:04:47 +0200760 flags &= BTRFS_BLOCK_GROUP_TYPE_MASK;
Yan, Zhengb742bb82010-05-16 10:46:24 -0400761
Chris Mason4184ea72009-03-10 12:39:20 -0400762 rcu_read_lock();
763 list_for_each_entry_rcu(found, head, list) {
Josef Bacik67377732010-09-16 16:19:09 -0400764 if (found->flags & flags) {
Chris Mason4184ea72009-03-10 12:39:20 -0400765 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400766 return found;
Chris Mason4184ea72009-03-10 12:39:20 -0400767 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400768 }
Chris Mason4184ea72009-03-10 12:39:20 -0400769 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400770 return NULL;
Chris Mason6324fbf2008-03-24 15:01:59 -0400771}
772
Chris Mason4184ea72009-03-10 12:39:20 -0400773/*
774 * after adding space to the filesystem, we need to clear the full flags
775 * on all the space infos.
776 */
777void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
778{
779 struct list_head *head = &info->space_info;
780 struct btrfs_space_info *found;
781
782 rcu_read_lock();
783 list_for_each_entry_rcu(found, head, list)
784 found->full = 0;
785 rcu_read_unlock();
786}
787
Filipe Manana1a4ed8f2014-10-27 10:44:24 +0000788/* simple helper to search for an existing data extent at a given offset */
789int btrfs_lookup_data_extent(struct btrfs_root *root, u64 start, u64 len)
Chris Masone02119d2008-09-05 16:13:11 -0400790{
791 int ret;
792 struct btrfs_key key;
Zheng Yan31840ae2008-09-23 13:14:14 -0400793 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -0400794
Zheng Yan31840ae2008-09-23 13:14:14 -0400795 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700796 if (!path)
797 return -ENOMEM;
798
Chris Masone02119d2008-09-05 16:13:11 -0400799 key.objectid = start;
800 key.offset = len;
Josef Bacik3173a182013-03-07 14:22:04 -0500801 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -0400802 ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path,
803 0, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400804 btrfs_free_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -0500805 return ret;
806}
807
Chris Masond8d5f3e2007-12-11 12:42:00 -0500808/*
Josef Bacik3173a182013-03-07 14:22:04 -0500809 * helper function to lookup reference count and flags of a tree block.
Yan, Zhenga22285a2010-05-16 10:48:46 -0400810 *
811 * the head node for delayed ref is used to store the sum of all the
812 * reference count modifications queued up in the rbtree. the head
813 * node may also store the extent flags to set. This way you can check
814 * to see what the reference count and extent flags would be if all of
815 * the delayed refs are not processed.
816 */
817int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
818 struct btrfs_root *root, u64 bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -0500819 u64 offset, int metadata, u64 *refs, u64 *flags)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400820{
821 struct btrfs_delayed_ref_head *head;
822 struct btrfs_delayed_ref_root *delayed_refs;
823 struct btrfs_path *path;
824 struct btrfs_extent_item *ei;
825 struct extent_buffer *leaf;
826 struct btrfs_key key;
827 u32 item_size;
828 u64 num_refs;
829 u64 extent_flags;
830 int ret;
831
Josef Bacik3173a182013-03-07 14:22:04 -0500832 /*
833 * If we don't have skinny metadata, don't bother doing anything
834 * different
835 */
836 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) {
David Sterba707e8a02014-06-04 19:22:26 +0200837 offset = root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500838 metadata = 0;
839 }
840
Yan, Zhenga22285a2010-05-16 10:48:46 -0400841 path = btrfs_alloc_path();
842 if (!path)
843 return -ENOMEM;
844
Yan, Zhenga22285a2010-05-16 10:48:46 -0400845 if (!trans) {
846 path->skip_locking = 1;
847 path->search_commit_root = 1;
848 }
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000849
850search_again:
851 key.objectid = bytenr;
852 key.offset = offset;
853 if (metadata)
854 key.type = BTRFS_METADATA_ITEM_KEY;
855 else
856 key.type = BTRFS_EXTENT_ITEM_KEY;
857
Yan, Zhenga22285a2010-05-16 10:48:46 -0400858 ret = btrfs_search_slot(trans, root->fs_info->extent_root,
859 &key, path, 0, 0);
860 if (ret < 0)
861 goto out_free;
862
Josef Bacik3173a182013-03-07 14:22:04 -0500863 if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) {
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100864 if (path->slots[0]) {
865 path->slots[0]--;
866 btrfs_item_key_to_cpu(path->nodes[0], &key,
867 path->slots[0]);
868 if (key.objectid == bytenr &&
869 key.type == BTRFS_EXTENT_ITEM_KEY &&
David Sterba707e8a02014-06-04 19:22:26 +0200870 key.offset == root->nodesize)
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100871 ret = 0;
872 }
Josef Bacik3173a182013-03-07 14:22:04 -0500873 }
874
Yan, Zhenga22285a2010-05-16 10:48:46 -0400875 if (ret == 0) {
876 leaf = path->nodes[0];
877 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
878 if (item_size >= sizeof(*ei)) {
879 ei = btrfs_item_ptr(leaf, path->slots[0],
880 struct btrfs_extent_item);
881 num_refs = btrfs_extent_refs(leaf, ei);
882 extent_flags = btrfs_extent_flags(leaf, ei);
883 } else {
884#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
885 struct btrfs_extent_item_v0 *ei0;
886 BUG_ON(item_size != sizeof(*ei0));
887 ei0 = btrfs_item_ptr(leaf, path->slots[0],
888 struct btrfs_extent_item_v0);
889 num_refs = btrfs_extent_refs_v0(leaf, ei0);
890 /* FIXME: this isn't correct for data */
891 extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
892#else
893 BUG();
894#endif
895 }
896 BUG_ON(num_refs == 0);
897 } else {
898 num_refs = 0;
899 extent_flags = 0;
900 ret = 0;
901 }
902
903 if (!trans)
904 goto out;
905
906 delayed_refs = &trans->transaction->delayed_refs;
907 spin_lock(&delayed_refs->lock);
908 head = btrfs_find_delayed_ref_head(trans, bytenr);
909 if (head) {
910 if (!mutex_trylock(&head->mutex)) {
911 atomic_inc(&head->node.refs);
912 spin_unlock(&delayed_refs->lock);
913
David Sterbab3b4aa72011-04-21 01:20:15 +0200914 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400915
David Sterba8cc33e52011-05-02 15:29:25 +0200916 /*
917 * Mutex was contended, block until it's released and try
918 * again
919 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400920 mutex_lock(&head->mutex);
921 mutex_unlock(&head->mutex);
922 btrfs_put_delayed_ref(&head->node);
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000923 goto search_again;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400924 }
Josef Bacikd7df2c72014-01-23 09:21:38 -0500925 spin_lock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400926 if (head->extent_op && head->extent_op->update_flags)
927 extent_flags |= head->extent_op->flags_to_set;
928 else
929 BUG_ON(num_refs == 0);
930
931 num_refs += head->node.ref_mod;
Josef Bacikd7df2c72014-01-23 09:21:38 -0500932 spin_unlock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400933 mutex_unlock(&head->mutex);
934 }
935 spin_unlock(&delayed_refs->lock);
936out:
937 WARN_ON(num_refs == 0);
938 if (refs)
939 *refs = num_refs;
940 if (flags)
941 *flags = extent_flags;
942out_free:
943 btrfs_free_path(path);
944 return ret;
945}
946
947/*
Chris Masond8d5f3e2007-12-11 12:42:00 -0500948 * Back reference rules. Back refs have three main goals:
949 *
950 * 1) differentiate between all holders of references to an extent so that
951 * when a reference is dropped we can make sure it was a valid reference
952 * before freeing the extent.
953 *
954 * 2) Provide enough information to quickly find the holders of an extent
955 * if we notice a given block is corrupted or bad.
956 *
957 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
958 * maintenance. This is actually the same as #2, but with a slightly
959 * different use case.
960 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400961 * There are two kinds of back refs. The implicit back refs is optimized
962 * for pointers in non-shared tree blocks. For a given pointer in a block,
963 * back refs of this kind provide information about the block's owner tree
964 * and the pointer's key. These information allow us to find the block by
965 * b-tree searching. The full back refs is for pointers in tree blocks not
966 * referenced by their owner trees. The location of tree block is recorded
967 * in the back refs. Actually the full back refs is generic, and can be
968 * used in all cases the implicit back refs is used. The major shortcoming
969 * of the full back refs is its overhead. Every time a tree block gets
970 * COWed, we have to update back refs entry for all pointers in it.
971 *
972 * For a newly allocated tree block, we use implicit back refs for
973 * pointers in it. This means most tree related operations only involve
974 * implicit back refs. For a tree block created in old transaction, the
975 * only way to drop a reference to it is COW it. So we can detect the
976 * event that tree block loses its owner tree's reference and do the
977 * back refs conversion.
978 *
Nicholas D Steeves01327612016-05-19 21:18:45 -0400979 * When a tree block is COWed through a tree, there are four cases:
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400980 *
981 * The reference count of the block is one and the tree is the block's
982 * owner tree. Nothing to do in this case.
983 *
984 * The reference count of the block is one and the tree is not the
985 * block's owner tree. In this case, full back refs is used for pointers
986 * in the block. Remove these full back refs, add implicit back refs for
987 * every pointers in the new block.
988 *
989 * The reference count of the block is greater than one and the tree is
990 * the block's owner tree. In this case, implicit back refs is used for
991 * pointers in the block. Add full back refs for every pointers in the
992 * block, increase lower level extents' reference counts. The original
993 * implicit back refs are entailed to the new block.
994 *
995 * The reference count of the block is greater than one and the tree is
996 * not the block's owner tree. Add implicit back refs for every pointer in
997 * the new block, increase lower level extents' reference count.
998 *
999 * Back Reference Key composing:
1000 *
1001 * The key objectid corresponds to the first byte in the extent,
1002 * The key type is used to differentiate between types of back refs.
1003 * There are different meanings of the key offset for different types
1004 * of back refs.
1005 *
Chris Masond8d5f3e2007-12-11 12:42:00 -05001006 * File extents can be referenced by:
1007 *
1008 * - multiple snapshots, subvolumes, or different generations in one subvol
Zheng Yan31840ae2008-09-23 13:14:14 -04001009 * - different files inside a single subvolume
Chris Masond8d5f3e2007-12-11 12:42:00 -05001010 * - different offsets inside a file (bookend extents in file.c)
1011 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001012 * The extent ref structure for the implicit back refs has fields for:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001013 *
1014 * - Objectid of the subvolume root
Chris Masond8d5f3e2007-12-11 12:42:00 -05001015 * - objectid of the file holding the reference
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001016 * - original offset in the file
1017 * - how many bookend extents
Zheng Yan31840ae2008-09-23 13:14:14 -04001018 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001019 * The key offset for the implicit back refs is hash of the first
1020 * three fields.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001021 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001022 * The extent ref structure for the full back refs has field for:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001023 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001024 * - number of pointers in the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -05001025 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001026 * The key offset for the implicit back refs is the first byte of
1027 * the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -05001028 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001029 * When a file extent is allocated, The implicit back refs is used.
1030 * the fields are filled in:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001031 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001032 * (root_key.objectid, inode objectid, offset in file, 1)
1033 *
1034 * When a file extent is removed file truncation, we find the
1035 * corresponding implicit back refs and check the following fields:
1036 *
1037 * (btrfs_header_owner(leaf), inode objectid, offset in file)
Chris Masond8d5f3e2007-12-11 12:42:00 -05001038 *
1039 * Btree extents can be referenced by:
1040 *
1041 * - Different subvolumes
Chris Masond8d5f3e2007-12-11 12:42:00 -05001042 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001043 * Both the implicit back refs and the full back refs for tree blocks
1044 * only consist of key. The key offset for the implicit back refs is
1045 * objectid of block's owner tree. The key offset for the full back refs
1046 * is the first byte of parent block.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001047 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001048 * When implicit back refs is used, information about the lowest key and
1049 * level of the tree block are required. These information are stored in
1050 * tree block info structure.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001051 */
Zheng Yan31840ae2008-09-23 13:14:14 -04001052
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001053#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1054static int convert_extent_item_v0(struct btrfs_trans_handle *trans,
1055 struct btrfs_root *root,
1056 struct btrfs_path *path,
1057 u64 owner, u32 extra_size)
Chris Mason74493f72007-12-11 09:25:06 -05001058{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001059 struct btrfs_extent_item *item;
1060 struct btrfs_extent_item_v0 *ei0;
1061 struct btrfs_extent_ref_v0 *ref0;
1062 struct btrfs_tree_block_info *bi;
Zheng Yan31840ae2008-09-23 13:14:14 -04001063 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001064 struct btrfs_key key;
1065 struct btrfs_key found_key;
1066 u32 new_size = sizeof(*item);
1067 u64 refs;
Chris Mason74493f72007-12-11 09:25:06 -05001068 int ret;
1069
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001070 leaf = path->nodes[0];
1071 BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0));
Chris Mason74493f72007-12-11 09:25:06 -05001072
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001073 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1074 ei0 = btrfs_item_ptr(leaf, path->slots[0],
1075 struct btrfs_extent_item_v0);
1076 refs = btrfs_extent_refs_v0(leaf, ei0);
1077
1078 if (owner == (u64)-1) {
1079 while (1) {
1080 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1081 ret = btrfs_next_leaf(root, path);
1082 if (ret < 0)
1083 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001084 BUG_ON(ret > 0); /* Corruption */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001085 leaf = path->nodes[0];
1086 }
1087 btrfs_item_key_to_cpu(leaf, &found_key,
1088 path->slots[0]);
1089 BUG_ON(key.objectid != found_key.objectid);
1090 if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) {
1091 path->slots[0]++;
1092 continue;
1093 }
1094 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1095 struct btrfs_extent_ref_v0);
1096 owner = btrfs_ref_objectid_v0(leaf, ref0);
1097 break;
1098 }
1099 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001100 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001101
1102 if (owner < BTRFS_FIRST_FREE_OBJECTID)
1103 new_size += sizeof(*bi);
1104
1105 new_size -= sizeof(*ei0);
1106 ret = btrfs_search_slot(trans, root, &key, path,
1107 new_size + extra_size, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04001108 if (ret < 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001109 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001110 BUG_ON(ret); /* Corruption */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001111
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00001112 btrfs_extend_item(root, path, new_size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001113
1114 leaf = path->nodes[0];
1115 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1116 btrfs_set_extent_refs(leaf, item, refs);
1117 /* FIXME: get real generation */
1118 btrfs_set_extent_generation(leaf, item, 0);
1119 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1120 btrfs_set_extent_flags(leaf, item,
1121 BTRFS_EXTENT_FLAG_TREE_BLOCK |
1122 BTRFS_BLOCK_FLAG_FULL_BACKREF);
1123 bi = (struct btrfs_tree_block_info *)(item + 1);
1124 /* FIXME: get first key of the block */
1125 memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi));
1126 btrfs_set_tree_block_level(leaf, bi, (int)owner);
1127 } else {
1128 btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA);
1129 }
1130 btrfs_mark_buffer_dirty(leaf);
1131 return 0;
1132}
1133#endif
1134
1135static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
1136{
1137 u32 high_crc = ~(u32)0;
1138 u32 low_crc = ~(u32)0;
1139 __le64 lenum;
1140
1141 lenum = cpu_to_le64(root_objectid);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001142 high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001143 lenum = cpu_to_le64(owner);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001144 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001145 lenum = cpu_to_le64(offset);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001146 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001147
1148 return ((u64)high_crc << 31) ^ (u64)low_crc;
1149}
1150
1151static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
1152 struct btrfs_extent_data_ref *ref)
1153{
1154 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
1155 btrfs_extent_data_ref_objectid(leaf, ref),
1156 btrfs_extent_data_ref_offset(leaf, ref));
1157}
1158
1159static int match_extent_data_ref(struct extent_buffer *leaf,
1160 struct btrfs_extent_data_ref *ref,
1161 u64 root_objectid, u64 owner, u64 offset)
1162{
1163 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
1164 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
1165 btrfs_extent_data_ref_offset(leaf, ref) != offset)
1166 return 0;
1167 return 1;
1168}
1169
1170static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
1171 struct btrfs_root *root,
1172 struct btrfs_path *path,
1173 u64 bytenr, u64 parent,
1174 u64 root_objectid,
1175 u64 owner, u64 offset)
1176{
1177 struct btrfs_key key;
1178 struct btrfs_extent_data_ref *ref;
1179 struct extent_buffer *leaf;
1180 u32 nritems;
1181 int ret;
1182 int recow;
1183 int err = -ENOENT;
1184
1185 key.objectid = bytenr;
1186 if (parent) {
1187 key.type = BTRFS_SHARED_DATA_REF_KEY;
1188 key.offset = parent;
1189 } else {
1190 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1191 key.offset = hash_extent_data_ref(root_objectid,
1192 owner, offset);
1193 }
1194again:
1195 recow = 0;
1196 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1197 if (ret < 0) {
1198 err = ret;
1199 goto fail;
1200 }
1201
1202 if (parent) {
1203 if (!ret)
1204 return 0;
1205#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1206 key.type = BTRFS_EXTENT_REF_V0_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02001207 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001208 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1209 if (ret < 0) {
1210 err = ret;
1211 goto fail;
1212 }
1213 if (!ret)
1214 return 0;
1215#endif
1216 goto fail;
Zheng Yan31840ae2008-09-23 13:14:14 -04001217 }
1218
1219 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001220 nritems = btrfs_header_nritems(leaf);
1221 while (1) {
1222 if (path->slots[0] >= nritems) {
1223 ret = btrfs_next_leaf(root, path);
1224 if (ret < 0)
1225 err = ret;
1226 if (ret)
1227 goto fail;
1228
1229 leaf = path->nodes[0];
1230 nritems = btrfs_header_nritems(leaf);
1231 recow = 1;
1232 }
1233
1234 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1235 if (key.objectid != bytenr ||
1236 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1237 goto fail;
1238
1239 ref = btrfs_item_ptr(leaf, path->slots[0],
1240 struct btrfs_extent_data_ref);
1241
1242 if (match_extent_data_ref(leaf, ref, root_objectid,
1243 owner, offset)) {
1244 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001245 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001246 goto again;
1247 }
1248 err = 0;
1249 break;
1250 }
1251 path->slots[0]++;
Zheng Yan31840ae2008-09-23 13:14:14 -04001252 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001253fail:
1254 return err;
Zheng Yan31840ae2008-09-23 13:14:14 -04001255}
1256
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001257static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
1258 struct btrfs_root *root,
1259 struct btrfs_path *path,
1260 u64 bytenr, u64 parent,
1261 u64 root_objectid, u64 owner,
1262 u64 offset, int refs_to_add)
Zheng Yan31840ae2008-09-23 13:14:14 -04001263{
1264 struct btrfs_key key;
1265 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001266 u32 size;
Zheng Yan31840ae2008-09-23 13:14:14 -04001267 u32 num_refs;
1268 int ret;
1269
1270 key.objectid = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001271 if (parent) {
1272 key.type = BTRFS_SHARED_DATA_REF_KEY;
1273 key.offset = parent;
1274 size = sizeof(struct btrfs_shared_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001275 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001276 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1277 key.offset = hash_extent_data_ref(root_objectid,
1278 owner, offset);
1279 size = sizeof(struct btrfs_extent_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001280 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001281
1282 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1283 if (ret && ret != -EEXIST)
1284 goto fail;
1285
1286 leaf = path->nodes[0];
1287 if (parent) {
1288 struct btrfs_shared_data_ref *ref;
1289 ref = btrfs_item_ptr(leaf, path->slots[0],
1290 struct btrfs_shared_data_ref);
1291 if (ret == 0) {
1292 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1293 } else {
1294 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1295 num_refs += refs_to_add;
1296 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
1297 }
1298 } else {
1299 struct btrfs_extent_data_ref *ref;
1300 while (ret == -EEXIST) {
1301 ref = btrfs_item_ptr(leaf, path->slots[0],
1302 struct btrfs_extent_data_ref);
1303 if (match_extent_data_ref(leaf, ref, root_objectid,
1304 owner, offset))
1305 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02001306 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001307 key.offset++;
1308 ret = btrfs_insert_empty_item(trans, root, path, &key,
1309 size);
1310 if (ret && ret != -EEXIST)
1311 goto fail;
1312
1313 leaf = path->nodes[0];
1314 }
1315 ref = btrfs_item_ptr(leaf, path->slots[0],
1316 struct btrfs_extent_data_ref);
1317 if (ret == 0) {
1318 btrfs_set_extent_data_ref_root(leaf, ref,
1319 root_objectid);
1320 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1321 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1322 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1323 } else {
1324 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1325 num_refs += refs_to_add;
1326 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
1327 }
1328 }
1329 btrfs_mark_buffer_dirty(leaf);
1330 ret = 0;
1331fail:
David Sterbab3b4aa72011-04-21 01:20:15 +02001332 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05001333 return ret;
Chris Mason74493f72007-12-11 09:25:06 -05001334}
1335
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001336static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
1337 struct btrfs_root *root,
1338 struct btrfs_path *path,
Josef Bacikfcebe452014-05-13 17:30:47 -07001339 int refs_to_drop, int *last_ref)
Zheng Yan31840ae2008-09-23 13:14:14 -04001340{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001341 struct btrfs_key key;
1342 struct btrfs_extent_data_ref *ref1 = NULL;
1343 struct btrfs_shared_data_ref *ref2 = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -04001344 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001345 u32 num_refs = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04001346 int ret = 0;
1347
1348 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001349 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1350
1351 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1352 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1353 struct btrfs_extent_data_ref);
1354 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1355 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1356 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1357 struct btrfs_shared_data_ref);
1358 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1359#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1360 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1361 struct btrfs_extent_ref_v0 *ref0;
1362 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1363 struct btrfs_extent_ref_v0);
1364 num_refs = btrfs_ref_count_v0(leaf, ref0);
1365#endif
1366 } else {
1367 BUG();
1368 }
1369
Chris Mason56bec292009-03-13 10:10:06 -04001370 BUG_ON(num_refs < refs_to_drop);
1371 num_refs -= refs_to_drop;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001372
Zheng Yan31840ae2008-09-23 13:14:14 -04001373 if (num_refs == 0) {
1374 ret = btrfs_del_item(trans, root, path);
Josef Bacikfcebe452014-05-13 17:30:47 -07001375 *last_ref = 1;
Zheng Yan31840ae2008-09-23 13:14:14 -04001376 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001377 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1378 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1379 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1380 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
1381#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1382 else {
1383 struct btrfs_extent_ref_v0 *ref0;
1384 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1385 struct btrfs_extent_ref_v0);
1386 btrfs_set_ref_count_v0(leaf, ref0, num_refs);
1387 }
1388#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04001389 btrfs_mark_buffer_dirty(leaf);
1390 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001391 return ret;
1392}
1393
Zhaolei9ed0dea2015-08-06 22:16:24 +08001394static noinline u32 extent_data_ref_count(struct btrfs_path *path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001395 struct btrfs_extent_inline_ref *iref)
1396{
1397 struct btrfs_key key;
1398 struct extent_buffer *leaf;
1399 struct btrfs_extent_data_ref *ref1;
1400 struct btrfs_shared_data_ref *ref2;
1401 u32 num_refs = 0;
1402
1403 leaf = path->nodes[0];
1404 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1405 if (iref) {
1406 if (btrfs_extent_inline_ref_type(leaf, iref) ==
1407 BTRFS_EXTENT_DATA_REF_KEY) {
1408 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1409 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1410 } else {
1411 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1412 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1413 }
1414 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1415 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1416 struct btrfs_extent_data_ref);
1417 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1418 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1419 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1420 struct btrfs_shared_data_ref);
1421 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1422#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1423 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1424 struct btrfs_extent_ref_v0 *ref0;
1425 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1426 struct btrfs_extent_ref_v0);
1427 num_refs = btrfs_ref_count_v0(leaf, ref0);
1428#endif
1429 } else {
1430 WARN_ON(1);
1431 }
1432 return num_refs;
1433}
1434
1435static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
1436 struct btrfs_root *root,
1437 struct btrfs_path *path,
1438 u64 bytenr, u64 parent,
1439 u64 root_objectid)
1440{
1441 struct btrfs_key key;
1442 int ret;
1443
1444 key.objectid = bytenr;
1445 if (parent) {
1446 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1447 key.offset = parent;
1448 } else {
1449 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1450 key.offset = root_objectid;
1451 }
1452
1453 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1454 if (ret > 0)
1455 ret = -ENOENT;
1456#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1457 if (ret == -ENOENT && parent) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001458 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001459 key.type = BTRFS_EXTENT_REF_V0_KEY;
1460 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1461 if (ret > 0)
1462 ret = -ENOENT;
1463 }
1464#endif
1465 return ret;
1466}
1467
1468static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
1469 struct btrfs_root *root,
1470 struct btrfs_path *path,
1471 u64 bytenr, u64 parent,
1472 u64 root_objectid)
1473{
1474 struct btrfs_key key;
1475 int ret;
1476
1477 key.objectid = bytenr;
1478 if (parent) {
1479 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1480 key.offset = parent;
1481 } else {
1482 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1483 key.offset = root_objectid;
1484 }
1485
1486 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
David Sterbab3b4aa72011-04-21 01:20:15 +02001487 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04001488 return ret;
1489}
1490
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001491static inline int extent_ref_type(u64 parent, u64 owner)
1492{
1493 int type;
1494 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1495 if (parent > 0)
1496 type = BTRFS_SHARED_BLOCK_REF_KEY;
1497 else
1498 type = BTRFS_TREE_BLOCK_REF_KEY;
1499 } else {
1500 if (parent > 0)
1501 type = BTRFS_SHARED_DATA_REF_KEY;
1502 else
1503 type = BTRFS_EXTENT_DATA_REF_KEY;
1504 }
1505 return type;
1506}
1507
Yan Zheng2c47e6052009-06-27 21:07:35 -04001508static int find_next_key(struct btrfs_path *path, int level,
1509 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001510
1511{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001512 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001513 if (!path->nodes[level])
1514 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001515 if (path->slots[level] + 1 >=
1516 btrfs_header_nritems(path->nodes[level]))
1517 continue;
1518 if (level == 0)
1519 btrfs_item_key_to_cpu(path->nodes[level], key,
1520 path->slots[level] + 1);
1521 else
1522 btrfs_node_key_to_cpu(path->nodes[level], key,
1523 path->slots[level] + 1);
1524 return 0;
1525 }
1526 return 1;
1527}
1528
1529/*
1530 * look for inline back ref. if back ref is found, *ref_ret is set
1531 * to the address of inline back ref, and 0 is returned.
1532 *
1533 * if back ref isn't found, *ref_ret is set to the address where it
1534 * should be inserted, and -ENOENT is returned.
1535 *
1536 * if insert is true and there are too many inline back refs, the path
1537 * points to the extent item, and -EAGAIN is returned.
1538 *
1539 * NOTE: inline back refs are ordered in the same way that back ref
1540 * items in the tree are ordered.
1541 */
1542static noinline_for_stack
1543int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
1544 struct btrfs_root *root,
1545 struct btrfs_path *path,
1546 struct btrfs_extent_inline_ref **ref_ret,
1547 u64 bytenr, u64 num_bytes,
1548 u64 parent, u64 root_objectid,
1549 u64 owner, u64 offset, int insert)
1550{
1551 struct btrfs_key key;
1552 struct extent_buffer *leaf;
1553 struct btrfs_extent_item *ei;
1554 struct btrfs_extent_inline_ref *iref;
1555 u64 flags;
1556 u64 item_size;
1557 unsigned long ptr;
1558 unsigned long end;
1559 int extra_size;
1560 int type;
1561 int want;
1562 int ret;
1563 int err = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05001564 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
1565 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001566
1567 key.objectid = bytenr;
1568 key.type = BTRFS_EXTENT_ITEM_KEY;
1569 key.offset = num_bytes;
1570
1571 want = extent_ref_type(parent, owner);
1572 if (insert) {
1573 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001574 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001575 } else
1576 extra_size = -1;
Josef Bacik3173a182013-03-07 14:22:04 -05001577
1578 /*
1579 * Owner is our parent level, so we can just add one to get the level
1580 * for the block we are interested in.
1581 */
1582 if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) {
1583 key.type = BTRFS_METADATA_ITEM_KEY;
1584 key.offset = owner;
1585 }
1586
1587again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001588 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1589 if (ret < 0) {
1590 err = ret;
1591 goto out;
1592 }
Josef Bacik3173a182013-03-07 14:22:04 -05001593
1594 /*
1595 * We may be a newly converted file system which still has the old fat
1596 * extent entries for metadata, so try and see if we have one of those.
1597 */
1598 if (ret > 0 && skinny_metadata) {
1599 skinny_metadata = false;
1600 if (path->slots[0]) {
1601 path->slots[0]--;
1602 btrfs_item_key_to_cpu(path->nodes[0], &key,
1603 path->slots[0]);
1604 if (key.objectid == bytenr &&
1605 key.type == BTRFS_EXTENT_ITEM_KEY &&
1606 key.offset == num_bytes)
1607 ret = 0;
1608 }
1609 if (ret) {
Filipe Manana9ce49a02014-04-24 15:15:28 +01001610 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05001611 key.type = BTRFS_EXTENT_ITEM_KEY;
1612 key.offset = num_bytes;
1613 btrfs_release_path(path);
1614 goto again;
1615 }
1616 }
1617
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001618 if (ret && !insert) {
1619 err = -ENOENT;
1620 goto out;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301621 } else if (WARN_ON(ret)) {
Josef Bacik492104c2013-03-08 15:41:02 -05001622 err = -EIO;
Josef Bacik492104c2013-03-08 15:41:02 -05001623 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001624 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001625
1626 leaf = path->nodes[0];
1627 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1628#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1629 if (item_size < sizeof(*ei)) {
1630 if (!insert) {
1631 err = -ENOENT;
1632 goto out;
1633 }
1634 ret = convert_extent_item_v0(trans, root, path, owner,
1635 extra_size);
1636 if (ret < 0) {
1637 err = ret;
1638 goto out;
1639 }
1640 leaf = path->nodes[0];
1641 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1642 }
1643#endif
1644 BUG_ON(item_size < sizeof(*ei));
1645
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001646 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1647 flags = btrfs_extent_flags(leaf, ei);
1648
1649 ptr = (unsigned long)(ei + 1);
1650 end = (unsigned long)ei + item_size;
1651
Josef Bacik3173a182013-03-07 14:22:04 -05001652 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001653 ptr += sizeof(struct btrfs_tree_block_info);
1654 BUG_ON(ptr > end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001655 }
1656
1657 err = -ENOENT;
1658 while (1) {
1659 if (ptr >= end) {
1660 WARN_ON(ptr > end);
1661 break;
1662 }
1663 iref = (struct btrfs_extent_inline_ref *)ptr;
1664 type = btrfs_extent_inline_ref_type(leaf, iref);
1665 if (want < type)
1666 break;
1667 if (want > type) {
1668 ptr += btrfs_extent_inline_ref_size(type);
1669 continue;
1670 }
1671
1672 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1673 struct btrfs_extent_data_ref *dref;
1674 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1675 if (match_extent_data_ref(leaf, dref, root_objectid,
1676 owner, offset)) {
1677 err = 0;
1678 break;
1679 }
1680 if (hash_extent_data_ref_item(leaf, dref) <
1681 hash_extent_data_ref(root_objectid, owner, offset))
1682 break;
1683 } else {
1684 u64 ref_offset;
1685 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1686 if (parent > 0) {
1687 if (parent == ref_offset) {
1688 err = 0;
1689 break;
1690 }
1691 if (ref_offset < parent)
1692 break;
1693 } else {
1694 if (root_objectid == ref_offset) {
1695 err = 0;
1696 break;
1697 }
1698 if (ref_offset < root_objectid)
1699 break;
1700 }
1701 }
1702 ptr += btrfs_extent_inline_ref_size(type);
1703 }
1704 if (err == -ENOENT && insert) {
1705 if (item_size + extra_size >=
1706 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1707 err = -EAGAIN;
1708 goto out;
1709 }
1710 /*
1711 * To add new inline back ref, we have to make sure
1712 * there is no corresponding back ref item.
1713 * For simplicity, we just do not add new inline back
1714 * ref if there is any kind of item for this block
1715 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001716 if (find_next_key(path, 0, &key) == 0 &&
1717 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001718 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001719 err = -EAGAIN;
1720 goto out;
1721 }
1722 }
1723 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1724out:
Yan Zheng85d41982009-06-11 08:51:10 -04001725 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001726 path->keep_locks = 0;
1727 btrfs_unlock_up_safe(path, 1);
1728 }
1729 return err;
1730}
1731
1732/*
1733 * helper to add new inline back ref
1734 */
1735static noinline_for_stack
Tsutomu Itohfd279fa2013-04-16 05:19:11 +00001736void setup_inline_extent_backref(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001737 struct btrfs_path *path,
1738 struct btrfs_extent_inline_ref *iref,
1739 u64 parent, u64 root_objectid,
1740 u64 owner, u64 offset, int refs_to_add,
1741 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001742{
1743 struct extent_buffer *leaf;
1744 struct btrfs_extent_item *ei;
1745 unsigned long ptr;
1746 unsigned long end;
1747 unsigned long item_offset;
1748 u64 refs;
1749 int size;
1750 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001751
1752 leaf = path->nodes[0];
1753 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1754 item_offset = (unsigned long)iref - (unsigned long)ei;
1755
1756 type = extent_ref_type(parent, owner);
1757 size = btrfs_extent_inline_ref_size(type);
1758
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00001759 btrfs_extend_item(root, path, size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001760
1761 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1762 refs = btrfs_extent_refs(leaf, ei);
1763 refs += refs_to_add;
1764 btrfs_set_extent_refs(leaf, ei, refs);
1765 if (extent_op)
1766 __run_delayed_extent_op(extent_op, leaf, ei);
1767
1768 ptr = (unsigned long)ei + item_offset;
1769 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1770 if (ptr < end - size)
1771 memmove_extent_buffer(leaf, ptr + size, ptr,
1772 end - size - ptr);
1773
1774 iref = (struct btrfs_extent_inline_ref *)ptr;
1775 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1776 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1777 struct btrfs_extent_data_ref *dref;
1778 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1779 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1780 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1781 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1782 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1783 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1784 struct btrfs_shared_data_ref *sref;
1785 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1786 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1787 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1788 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1789 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1790 } else {
1791 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1792 }
1793 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001794}
1795
1796static int lookup_extent_backref(struct btrfs_trans_handle *trans,
1797 struct btrfs_root *root,
1798 struct btrfs_path *path,
1799 struct btrfs_extent_inline_ref **ref_ret,
1800 u64 bytenr, u64 num_bytes, u64 parent,
1801 u64 root_objectid, u64 owner, u64 offset)
1802{
1803 int ret;
1804
1805 ret = lookup_inline_extent_backref(trans, root, path, ref_ret,
1806 bytenr, num_bytes, parent,
1807 root_objectid, owner, offset, 0);
1808 if (ret != -ENOENT)
1809 return ret;
1810
David Sterbab3b4aa72011-04-21 01:20:15 +02001811 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001812 *ref_ret = NULL;
1813
1814 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1815 ret = lookup_tree_block_ref(trans, root, path, bytenr, parent,
1816 root_objectid);
1817 } else {
1818 ret = lookup_extent_data_ref(trans, root, path, bytenr, parent,
1819 root_objectid, owner, offset);
1820 }
1821 return ret;
1822}
1823
1824/*
1825 * helper to update/remove inline back ref
1826 */
1827static noinline_for_stack
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001828void update_inline_extent_backref(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001829 struct btrfs_path *path,
1830 struct btrfs_extent_inline_ref *iref,
1831 int refs_to_mod,
Josef Bacikfcebe452014-05-13 17:30:47 -07001832 struct btrfs_delayed_extent_op *extent_op,
1833 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001834{
1835 struct extent_buffer *leaf;
1836 struct btrfs_extent_item *ei;
1837 struct btrfs_extent_data_ref *dref = NULL;
1838 struct btrfs_shared_data_ref *sref = NULL;
1839 unsigned long ptr;
1840 unsigned long end;
1841 u32 item_size;
1842 int size;
1843 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001844 u64 refs;
1845
1846 leaf = path->nodes[0];
1847 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1848 refs = btrfs_extent_refs(leaf, ei);
1849 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1850 refs += refs_to_mod;
1851 btrfs_set_extent_refs(leaf, ei, refs);
1852 if (extent_op)
1853 __run_delayed_extent_op(extent_op, leaf, ei);
1854
1855 type = btrfs_extent_inline_ref_type(leaf, iref);
1856
1857 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1858 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1859 refs = btrfs_extent_data_ref_count(leaf, dref);
1860 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1861 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1862 refs = btrfs_shared_data_ref_count(leaf, sref);
1863 } else {
1864 refs = 1;
1865 BUG_ON(refs_to_mod != -1);
1866 }
1867
1868 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1869 refs += refs_to_mod;
1870
1871 if (refs > 0) {
1872 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1873 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1874 else
1875 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1876 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001877 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001878 size = btrfs_extent_inline_ref_size(type);
1879 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1880 ptr = (unsigned long)iref;
1881 end = (unsigned long)ei + item_size;
1882 if (ptr + size < end)
1883 memmove_extent_buffer(leaf, ptr, ptr + size,
1884 end - ptr - size);
1885 item_size -= size;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001886 btrfs_truncate_item(root, path, item_size, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001887 }
1888 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001889}
1890
1891static noinline_for_stack
1892int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
1893 struct btrfs_root *root,
1894 struct btrfs_path *path,
1895 u64 bytenr, u64 num_bytes, u64 parent,
1896 u64 root_objectid, u64 owner,
1897 u64 offset, int refs_to_add,
1898 struct btrfs_delayed_extent_op *extent_op)
1899{
1900 struct btrfs_extent_inline_ref *iref;
1901 int ret;
1902
1903 ret = lookup_inline_extent_backref(trans, root, path, &iref,
1904 bytenr, num_bytes, parent,
1905 root_objectid, owner, offset, 1);
1906 if (ret == 0) {
1907 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001908 update_inline_extent_backref(root, path, iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001909 refs_to_add, extent_op, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001910 } else if (ret == -ENOENT) {
Tsutomu Itohfd279fa2013-04-16 05:19:11 +00001911 setup_inline_extent_backref(root, path, iref, parent,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001912 root_objectid, owner, offset,
1913 refs_to_add, extent_op);
1914 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001915 }
1916 return ret;
1917}
1918
1919static int insert_extent_backref(struct btrfs_trans_handle *trans,
1920 struct btrfs_root *root,
1921 struct btrfs_path *path,
1922 u64 bytenr, u64 parent, u64 root_objectid,
1923 u64 owner, u64 offset, int refs_to_add)
1924{
1925 int ret;
1926 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1927 BUG_ON(refs_to_add != 1);
1928 ret = insert_tree_block_ref(trans, root, path, bytenr,
1929 parent, root_objectid);
1930 } else {
1931 ret = insert_extent_data_ref(trans, root, path, bytenr,
1932 parent, root_objectid,
1933 owner, offset, refs_to_add);
1934 }
1935 return ret;
1936}
1937
1938static int remove_extent_backref(struct btrfs_trans_handle *trans,
1939 struct btrfs_root *root,
1940 struct btrfs_path *path,
1941 struct btrfs_extent_inline_ref *iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001942 int refs_to_drop, int is_data, int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001943{
Jeff Mahoney143bede2012-03-01 14:56:26 +01001944 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001945
1946 BUG_ON(!is_data && refs_to_drop != 1);
1947 if (iref) {
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001948 update_inline_extent_backref(root, path, iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001949 -refs_to_drop, NULL, last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001950 } else if (is_data) {
Josef Bacikfcebe452014-05-13 17:30:47 -07001951 ret = remove_extent_data_ref(trans, root, path, refs_to_drop,
1952 last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001953 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001954 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001955 ret = btrfs_del_item(trans, root, path);
1956 }
1957 return ret;
1958}
1959
Jeff Mahoney86557862015-06-15 09:41:16 -04001960#define in_range(b, first, len) ((b) >= (first) && (b) < (first) + (len))
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001961static int btrfs_issue_discard(struct block_device *bdev, u64 start, u64 len,
1962 u64 *discarded_bytes)
Chris Mason15916de2008-11-19 21:17:22 -05001963{
Jeff Mahoney86557862015-06-15 09:41:16 -04001964 int j, ret = 0;
1965 u64 bytes_left, end;
Jeff Mahoney4d89d372015-06-15 09:41:15 -04001966 u64 aligned_start = ALIGN(start, 1 << 9);
1967
1968 if (WARN_ON(start != aligned_start)) {
1969 len -= aligned_start - start;
1970 len = round_down(len, 1 << 9);
1971 start = aligned_start;
1972 }
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001973
1974 *discarded_bytes = 0;
Jeff Mahoney86557862015-06-15 09:41:16 -04001975
1976 if (!len)
1977 return 0;
1978
1979 end = start + len;
1980 bytes_left = len;
1981
1982 /* Skip any superblocks on this device. */
1983 for (j = 0; j < BTRFS_SUPER_MIRROR_MAX; j++) {
1984 u64 sb_start = btrfs_sb_offset(j);
1985 u64 sb_end = sb_start + BTRFS_SUPER_INFO_SIZE;
1986 u64 size = sb_start - start;
1987
1988 if (!in_range(sb_start, start, bytes_left) &&
1989 !in_range(sb_end, start, bytes_left) &&
1990 !in_range(start, sb_start, BTRFS_SUPER_INFO_SIZE))
1991 continue;
1992
1993 /*
1994 * Superblock spans beginning of range. Adjust start and
1995 * try again.
1996 */
1997 if (sb_start <= start) {
1998 start += sb_end - start;
1999 if (start > end) {
2000 bytes_left = 0;
2001 break;
2002 }
2003 bytes_left = end - start;
2004 continue;
2005 }
2006
2007 if (size) {
2008 ret = blkdev_issue_discard(bdev, start >> 9, size >> 9,
2009 GFP_NOFS, 0);
2010 if (!ret)
2011 *discarded_bytes += size;
2012 else if (ret != -EOPNOTSUPP)
2013 return ret;
2014 }
2015
2016 start = sb_end;
2017 if (start > end) {
2018 bytes_left = 0;
2019 break;
2020 }
2021 bytes_left = end - start;
2022 }
2023
2024 if (bytes_left) {
2025 ret = blkdev_issue_discard(bdev, start >> 9, bytes_left >> 9,
Jeff Mahoney4d89d372015-06-15 09:41:15 -04002026 GFP_NOFS, 0);
2027 if (!ret)
Jeff Mahoney86557862015-06-15 09:41:16 -04002028 *discarded_bytes += bytes_left;
Jeff Mahoney4d89d372015-06-15 09:41:15 -04002029 }
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002030 return ret;
Chris Mason15916de2008-11-19 21:17:22 -05002031}
Chris Mason15916de2008-11-19 21:17:22 -05002032
Filipe Manana1edb647b2014-12-08 14:01:12 +00002033int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr,
2034 u64 num_bytes, u64 *actual_bytes)
Liu Hui1f3c79a2009-01-05 15:57:51 -05002035{
Liu Hui1f3c79a2009-01-05 15:57:51 -05002036 int ret;
Li Dongyang5378e602011-03-24 10:24:27 +00002037 u64 discarded_bytes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02002038 struct btrfs_bio *bbio = NULL;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002039
Christoph Hellwige244a0a2009-10-14 09:24:59 -04002040
Filipe Manana29992412016-05-27 17:42:05 +01002041 /*
2042 * Avoid races with device replace and make sure our bbio has devices
2043 * associated to its stripes that don't go away while we are discarding.
2044 */
2045 btrfs_bio_counter_inc_blocked(root->fs_info);
Liu Hui1f3c79a2009-01-05 15:57:51 -05002046 /* Tell the block device(s) that the sectors can be discarded */
Mike Christieb3d3fa52016-06-05 14:31:53 -05002047 ret = btrfs_map_block(root->fs_info, REQ_OP_DISCARD,
Jan Schmidta1d3c472011-08-04 17:15:33 +02002048 bytenr, &num_bytes, &bbio, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002049 /* Error condition is -ENOMEM */
Liu Hui1f3c79a2009-01-05 15:57:51 -05002050 if (!ret) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02002051 struct btrfs_bio_stripe *stripe = bbio->stripes;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002052 int i;
2053
Liu Hui1f3c79a2009-01-05 15:57:51 -05002054
Jan Schmidta1d3c472011-08-04 17:15:33 +02002055 for (i = 0; i < bbio->num_stripes; i++, stripe++) {
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002056 u64 bytes;
Josef Bacikd5e20032011-08-04 14:52:27 +00002057 if (!stripe->dev->can_discard)
2058 continue;
2059
Li Dongyang5378e602011-03-24 10:24:27 +00002060 ret = btrfs_issue_discard(stripe->dev->bdev,
2061 stripe->physical,
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002062 stripe->length,
2063 &bytes);
Li Dongyang5378e602011-03-24 10:24:27 +00002064 if (!ret)
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002065 discarded_bytes += bytes;
Li Dongyang5378e602011-03-24 10:24:27 +00002066 else if (ret != -EOPNOTSUPP)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002067 break; /* Logic errors or -ENOMEM, or -EIO but I don't know how that could happen JDM */
Josef Bacikd5e20032011-08-04 14:52:27 +00002068
2069 /*
2070 * Just in case we get back EOPNOTSUPP for some reason,
2071 * just ignore the return value so we don't screw up
2072 * people calling discard_extent.
2073 */
2074 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002075 }
Zhao Lei6e9606d2015-01-20 15:11:34 +08002076 btrfs_put_bbio(bbio);
Liu Hui1f3c79a2009-01-05 15:57:51 -05002077 }
Filipe Manana29992412016-05-27 17:42:05 +01002078 btrfs_bio_counter_dec(root->fs_info);
Li Dongyang5378e602011-03-24 10:24:27 +00002079
2080 if (actual_bytes)
2081 *actual_bytes = discarded_bytes;
2082
Liu Hui1f3c79a2009-01-05 15:57:51 -05002083
David Woodhouse53b381b2013-01-29 18:40:14 -05002084 if (ret == -EOPNOTSUPP)
2085 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002086 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002087}
2088
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002089/* Can return -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002090int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
2091 struct btrfs_root *root,
2092 u64 bytenr, u64 num_bytes, u64 parent,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002093 u64 root_objectid, u64 owner, u64 offset)
Zheng Yan31840ae2008-09-23 13:14:14 -04002094{
2095 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002096 struct btrfs_fs_info *fs_info = root->fs_info;
2097
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002098 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
2099 root_objectid == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04002100
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002101 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002102 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
2103 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002104 parent, root_objectid, (int)owner,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002105 BTRFS_ADD_DELAYED_REF, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002106 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002107 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08002108 num_bytes, parent, root_objectid,
2109 owner, offset, 0,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002110 BTRFS_ADD_DELAYED_REF, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002111 }
Zheng Yan31840ae2008-09-23 13:14:14 -04002112 return ret;
2113}
2114
Chris Mason925baed2008-06-25 16:01:30 -04002115static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002116 struct btrfs_root *root,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002117 struct btrfs_delayed_ref_node *node,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002118 u64 parent, u64 root_objectid,
2119 u64 owner, u64 offset, int refs_to_add,
2120 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04002121{
Josef Bacikfcebe452014-05-13 17:30:47 -07002122 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5caf2a02007-04-02 11:20:42 -04002123 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002124 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04002125 struct btrfs_extent_item *item;
Josef Bacikfcebe452014-05-13 17:30:47 -07002126 struct btrfs_key key;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002127 u64 bytenr = node->bytenr;
2128 u64 num_bytes = node->num_bytes;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002129 u64 refs;
2130 int ret;
Chris Mason037e6392007-03-07 11:50:24 -05002131
Chris Mason5caf2a02007-04-02 11:20:42 -04002132 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002133 if (!path)
2134 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04002135
David Sterbae4058b52015-11-27 16:31:35 +01002136 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04002137 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002138 /* this will setup the path even if it fails to insert the back ref */
Josef Bacikfcebe452014-05-13 17:30:47 -07002139 ret = insert_inline_extent_backref(trans, fs_info->extent_root, path,
2140 bytenr, num_bytes, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002141 root_objectid, owner, offset,
2142 refs_to_add, extent_op);
Qu Wenruo0ed47922015-04-16 16:55:08 +08002143 if ((ret < 0 && ret != -EAGAIN) || !ret)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002144 goto out;
Josef Bacikfcebe452014-05-13 17:30:47 -07002145
2146 /*
2147 * Ok we had -EAGAIN which means we didn't have space to insert and
2148 * inline extent ref, so just update the reference count and add a
2149 * normal backref.
2150 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002151 leaf = path->nodes[0];
Josef Bacikfcebe452014-05-13 17:30:47 -07002152 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002153 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2154 refs = btrfs_extent_refs(leaf, item);
2155 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
2156 if (extent_op)
2157 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04002158
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002159 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002160 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05002161
David Sterbae4058b52015-11-27 16:31:35 +01002162 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04002163 path->leave_spinning = 1;
Chris Mason56bec292009-03-13 10:10:06 -04002164 /* now insert the actual backref */
Zheng Yan31840ae2008-09-23 13:14:14 -04002165 ret = insert_extent_backref(trans, root->fs_info->extent_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002166 path, bytenr, parent, root_objectid,
2167 owner, offset, refs_to_add);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002168 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04002169 btrfs_abort_transaction(trans, ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002170out:
Chris Mason74493f72007-12-11 09:25:06 -05002171 btrfs_free_path(path);
Liu Bo30d133f2013-10-11 16:30:23 +08002172 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002173}
2174
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002175static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
2176 struct btrfs_root *root,
2177 struct btrfs_delayed_ref_node *node,
2178 struct btrfs_delayed_extent_op *extent_op,
2179 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04002180{
Chris Mason56bec292009-03-13 10:10:06 -04002181 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002182 struct btrfs_delayed_data_ref *ref;
2183 struct btrfs_key ins;
2184 u64 parent = 0;
2185 u64 ref_root = 0;
2186 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002187
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002188 ins.objectid = node->bytenr;
2189 ins.offset = node->num_bytes;
2190 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04002191
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002192 ref = btrfs_delayed_node_to_data_ref(node);
Jeff Mahoneybc074522016-06-09 17:27:55 -04002193 trace_run_delayed_data_ref(root->fs_info, node, ref, node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002194
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002195 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
2196 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002197 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002198
2199 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002200 if (extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002201 flags |= extent_op->flags_to_set;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002202 ret = alloc_reserved_file_extent(trans, root,
2203 parent, ref_root, flags,
2204 ref->objectid, ref->offset,
2205 &ins, node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002206 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002207 ret = __btrfs_inc_extent_ref(trans, root, node, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002208 ref_root, ref->objectid,
2209 ref->offset, node->ref_mod,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002210 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002211 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002212 ret = __btrfs_free_extent(trans, root, node, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002213 ref_root, ref->objectid,
2214 ref->offset, node->ref_mod,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002215 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002216 } else {
2217 BUG();
2218 }
Chris Mason56bec292009-03-13 10:10:06 -04002219 return ret;
2220}
2221
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002222static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
2223 struct extent_buffer *leaf,
2224 struct btrfs_extent_item *ei)
2225{
2226 u64 flags = btrfs_extent_flags(leaf, ei);
2227 if (extent_op->update_flags) {
2228 flags |= extent_op->flags_to_set;
2229 btrfs_set_extent_flags(leaf, ei, flags);
2230 }
2231
2232 if (extent_op->update_key) {
2233 struct btrfs_tree_block_info *bi;
2234 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
2235 bi = (struct btrfs_tree_block_info *)(ei + 1);
2236 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
2237 }
2238}
2239
2240static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
2241 struct btrfs_root *root,
2242 struct btrfs_delayed_ref_node *node,
2243 struct btrfs_delayed_extent_op *extent_op)
2244{
2245 struct btrfs_key key;
2246 struct btrfs_path *path;
2247 struct btrfs_extent_item *ei;
2248 struct extent_buffer *leaf;
2249 u32 item_size;
2250 int ret;
2251 int err = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002252 int metadata = !extent_op->is_data;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002253
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002254 if (trans->aborted)
2255 return 0;
2256
Josef Bacik3173a182013-03-07 14:22:04 -05002257 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2258 metadata = 0;
2259
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002260 path = btrfs_alloc_path();
2261 if (!path)
2262 return -ENOMEM;
2263
2264 key.objectid = node->bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002265
Josef Bacik3173a182013-03-07 14:22:04 -05002266 if (metadata) {
Josef Bacik3173a182013-03-07 14:22:04 -05002267 key.type = BTRFS_METADATA_ITEM_KEY;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002268 key.offset = extent_op->level;
Josef Bacik3173a182013-03-07 14:22:04 -05002269 } else {
2270 key.type = BTRFS_EXTENT_ITEM_KEY;
2271 key.offset = node->num_bytes;
2272 }
2273
2274again:
David Sterbae4058b52015-11-27 16:31:35 +01002275 path->reada = READA_FORWARD;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002276 path->leave_spinning = 1;
2277 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key,
2278 path, 0, 1);
2279 if (ret < 0) {
2280 err = ret;
2281 goto out;
2282 }
2283 if (ret > 0) {
Josef Bacik3173a182013-03-07 14:22:04 -05002284 if (metadata) {
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002285 if (path->slots[0] > 0) {
2286 path->slots[0]--;
2287 btrfs_item_key_to_cpu(path->nodes[0], &key,
2288 path->slots[0]);
2289 if (key.objectid == node->bytenr &&
2290 key.type == BTRFS_EXTENT_ITEM_KEY &&
2291 key.offset == node->num_bytes)
2292 ret = 0;
2293 }
2294 if (ret > 0) {
2295 btrfs_release_path(path);
2296 metadata = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002297
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002298 key.objectid = node->bytenr;
2299 key.offset = node->num_bytes;
2300 key.type = BTRFS_EXTENT_ITEM_KEY;
2301 goto again;
2302 }
2303 } else {
2304 err = -EIO;
2305 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05002306 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002307 }
2308
2309 leaf = path->nodes[0];
2310 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2311#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2312 if (item_size < sizeof(*ei)) {
2313 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
2314 path, (u64)-1, 0);
2315 if (ret < 0) {
2316 err = ret;
2317 goto out;
2318 }
2319 leaf = path->nodes[0];
2320 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2321 }
2322#endif
2323 BUG_ON(item_size < sizeof(*ei));
2324 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2325 __run_delayed_extent_op(extent_op, leaf, ei);
2326
2327 btrfs_mark_buffer_dirty(leaf);
2328out:
2329 btrfs_free_path(path);
2330 return err;
2331}
2332
2333static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
2334 struct btrfs_root *root,
2335 struct btrfs_delayed_ref_node *node,
2336 struct btrfs_delayed_extent_op *extent_op,
2337 int insert_reserved)
2338{
2339 int ret = 0;
2340 struct btrfs_delayed_tree_ref *ref;
2341 struct btrfs_key ins;
2342 u64 parent = 0;
2343 u64 ref_root = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002344 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
2345 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002346
2347 ref = btrfs_delayed_node_to_tree_ref(node);
Jeff Mahoneybc074522016-06-09 17:27:55 -04002348 trace_run_delayed_tree_ref(root->fs_info, node, ref, node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002349
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002350 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2351 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002352 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002353
Josef Bacik3173a182013-03-07 14:22:04 -05002354 ins.objectid = node->bytenr;
2355 if (skinny_metadata) {
2356 ins.offset = ref->level;
2357 ins.type = BTRFS_METADATA_ITEM_KEY;
2358 } else {
2359 ins.offset = node->num_bytes;
2360 ins.type = BTRFS_EXTENT_ITEM_KEY;
2361 }
2362
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002363 BUG_ON(node->ref_mod != 1);
2364 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002365 BUG_ON(!extent_op || !extent_op->update_flags);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002366 ret = alloc_reserved_tree_block(trans, root,
2367 parent, ref_root,
2368 extent_op->flags_to_set,
2369 &extent_op->key,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002370 ref->level, &ins);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002371 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002372 ret = __btrfs_inc_extent_ref(trans, root, node,
2373 parent, ref_root,
2374 ref->level, 0, 1,
Josef Bacikfcebe452014-05-13 17:30:47 -07002375 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002376 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002377 ret = __btrfs_free_extent(trans, root, node,
2378 parent, ref_root,
2379 ref->level, 0, 1, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002380 } else {
2381 BUG();
2382 }
2383 return ret;
2384}
2385
Chris Mason56bec292009-03-13 10:10:06 -04002386/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002387static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
2388 struct btrfs_root *root,
2389 struct btrfs_delayed_ref_node *node,
2390 struct btrfs_delayed_extent_op *extent_op,
2391 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002392{
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002393 int ret = 0;
2394
Josef Bacik857cc2f2013-10-07 15:21:08 -04002395 if (trans->aborted) {
2396 if (insert_reserved)
2397 btrfs_pin_extent(root, node->bytenr,
2398 node->num_bytes, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002399 return 0;
Josef Bacik857cc2f2013-10-07 15:21:08 -04002400 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002401
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002402 if (btrfs_delayed_ref_is_head(node)) {
Chris Mason56bec292009-03-13 10:10:06 -04002403 struct btrfs_delayed_ref_head *head;
2404 /*
2405 * we've hit the end of the chain and we were supposed
2406 * to insert this extent into the tree. But, it got
2407 * deleted before we ever needed to insert it, so all
2408 * we have to do is clean up the accounting
2409 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002410 BUG_ON(extent_op);
2411 head = btrfs_delayed_node_to_head(node);
Jeff Mahoneybc074522016-06-09 17:27:55 -04002412 trace_run_delayed_ref_head(root->fs_info, node, head,
2413 node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002414
Chris Mason56bec292009-03-13 10:10:06 -04002415 if (insert_reserved) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04002416 btrfs_pin_extent(root, node->bytenr,
2417 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002418 if (head->is_data) {
2419 ret = btrfs_del_csums(trans, root,
2420 node->bytenr,
2421 node->num_bytes);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002422 }
Chris Mason56bec292009-03-13 10:10:06 -04002423 }
Qu Wenruo297d7502015-09-08 17:08:37 +08002424
2425 /* Also free its reserved qgroup space */
2426 btrfs_qgroup_free_delayed_ref(root->fs_info,
2427 head->qgroup_ref_root,
2428 head->qgroup_reserved);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002429 return ret;
Chris Mason56bec292009-03-13 10:10:06 -04002430 }
Josef Bacikeb099672009-02-12 09:27:38 -05002431
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002432 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2433 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2434 ret = run_delayed_tree_ref(trans, root, node, extent_op,
2435 insert_reserved);
2436 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2437 node->type == BTRFS_SHARED_DATA_REF_KEY)
2438 ret = run_delayed_data_ref(trans, root, node, extent_op,
2439 insert_reserved);
2440 else
2441 BUG();
2442 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002443}
2444
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002445static inline struct btrfs_delayed_ref_node *
Chris Mason56bec292009-03-13 10:10:06 -04002446select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002447{
Filipe Mananacffc3372015-07-09 13:13:44 +01002448 struct btrfs_delayed_ref_node *ref;
2449
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002450 if (list_empty(&head->ref_list))
2451 return NULL;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002452
Filipe Mananacffc3372015-07-09 13:13:44 +01002453 /*
2454 * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first.
2455 * This is to prevent a ref count from going down to zero, which deletes
2456 * the extent item from the extent tree, when there still are references
2457 * to add, which would fail because they would not find the extent item.
2458 */
2459 list_for_each_entry(ref, &head->ref_list, list) {
2460 if (ref->action == BTRFS_ADD_DELAYED_REF)
2461 return ref;
2462 }
2463
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002464 return list_entry(head->ref_list.next, struct btrfs_delayed_ref_node,
2465 list);
Chris Mason56bec292009-03-13 10:10:06 -04002466}
2467
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002468/*
2469 * Returns 0 on success or if called with an already aborted transaction.
2470 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2471 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002472static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2473 struct btrfs_root *root,
2474 unsigned long nr)
Chris Mason56bec292009-03-13 10:10:06 -04002475{
Chris Mason56bec292009-03-13 10:10:06 -04002476 struct btrfs_delayed_ref_root *delayed_refs;
2477 struct btrfs_delayed_ref_node *ref;
2478 struct btrfs_delayed_ref_head *locked_ref = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002479 struct btrfs_delayed_extent_op *extent_op;
Jan Schmidt097b8a72012-06-21 11:08:04 +02002480 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002481 ktime_t start = ktime_get();
Chris Mason56bec292009-03-13 10:10:06 -04002482 int ret;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002483 unsigned long count = 0;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002484 unsigned long actual_count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002485 int must_insert_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002486
2487 delayed_refs = &trans->transaction->delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002488 while (1) {
2489 if (!locked_ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002490 if (count >= nr)
Chris Mason56bec292009-03-13 10:10:06 -04002491 break;
Chris Mason56bec292009-03-13 10:10:06 -04002492
Josef Bacikd7df2c72014-01-23 09:21:38 -05002493 spin_lock(&delayed_refs->lock);
2494 locked_ref = btrfs_select_ref_head(trans);
2495 if (!locked_ref) {
2496 spin_unlock(&delayed_refs->lock);
2497 break;
2498 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002499
2500 /* grab the lock that says we are going to process
2501 * all the refs for this head */
2502 ret = btrfs_delayed_ref_lock(trans, locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002503 spin_unlock(&delayed_refs->lock);
Chris Masonc3e69d52009-03-13 10:17:05 -04002504 /*
2505 * we may have dropped the spin lock to get the head
2506 * mutex lock, and that might have given someone else
2507 * time to free the head. If that's true, it has been
2508 * removed from our list and we can move on.
2509 */
2510 if (ret == -EAGAIN) {
2511 locked_ref = NULL;
2512 count++;
2513 continue;
Chris Mason56bec292009-03-13 10:10:06 -04002514 }
2515 }
2516
Filipe Manana2c3cf7d2015-10-22 09:47:34 +01002517 /*
2518 * We need to try and merge add/drops of the same ref since we
2519 * can run into issues with relocate dropping the implicit ref
2520 * and then it being added back again before the drop can
2521 * finish. If we merged anything we need to re-loop so we can
2522 * get a good ref.
2523 * Or we can get node references of the same type that weren't
2524 * merged when created due to bumps in the tree mod seq, and
2525 * we need to merge them to prevent adding an inline extent
2526 * backref before dropping it (triggering a BUG_ON at
2527 * insert_inline_extent_backref()).
2528 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002529 spin_lock(&locked_ref->lock);
Filipe Manana2c3cf7d2015-10-22 09:47:34 +01002530 btrfs_merge_delayed_refs(trans, fs_info, delayed_refs,
2531 locked_ref);
Josef Bacikae1e2062012-08-07 16:00:32 -04002532
2533 /*
Arne Jansend1270cd2011-09-13 15:16:43 +02002534 * locked_ref is the head node, so we have to go one
2535 * node back for any delayed ref updates
2536 */
2537 ref = select_delayed_ref(locked_ref);
2538
2539 if (ref && ref->seq &&
Jan Schmidt097b8a72012-06-21 11:08:04 +02002540 btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002541 spin_unlock(&locked_ref->lock);
Miao Xie093486c2012-12-19 08:10:10 +00002542 btrfs_delayed_ref_unlock(locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002543 spin_lock(&delayed_refs->lock);
2544 locked_ref->processing = 0;
Arne Jansend1270cd2011-09-13 15:16:43 +02002545 delayed_refs->num_heads_ready++;
2546 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002547 locked_ref = NULL;
Arne Jansend1270cd2011-09-13 15:16:43 +02002548 cond_resched();
Josef Bacik27a377d2014-02-07 13:57:59 -05002549 count++;
Arne Jansend1270cd2011-09-13 15:16:43 +02002550 continue;
2551 }
2552
2553 /*
Chris Mason56bec292009-03-13 10:10:06 -04002554 * record the must insert reserved flag before we
2555 * drop the spin lock.
2556 */
2557 must_insert_reserved = locked_ref->must_insert_reserved;
2558 locked_ref->must_insert_reserved = 0;
2559
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002560 extent_op = locked_ref->extent_op;
2561 locked_ref->extent_op = NULL;
2562
Chris Mason56bec292009-03-13 10:10:06 -04002563 if (!ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002564
2565
Chris Mason56bec292009-03-13 10:10:06 -04002566 /* All delayed refs have been processed, Go ahead
2567 * and send the head node to run_one_delayed_ref,
2568 * so that any accounting fixes can happen
2569 */
2570 ref = &locked_ref->node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002571
2572 if (extent_op && must_insert_reserved) {
Miao Xie78a61842012-11-21 02:21:28 +00002573 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002574 extent_op = NULL;
2575 }
2576
2577 if (extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002578 spin_unlock(&locked_ref->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002579 ret = run_delayed_extent_op(trans, root,
2580 ref, extent_op);
Miao Xie78a61842012-11-21 02:21:28 +00002581 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002582
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002583 if (ret) {
Josef Bacik857cc2f2013-10-07 15:21:08 -04002584 /*
2585 * Need to reset must_insert_reserved if
2586 * there was an error so the abort stuff
2587 * can cleanup the reserved space
2588 * properly.
2589 */
2590 if (must_insert_reserved)
2591 locked_ref->must_insert_reserved = 1;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002592 locked_ref->processing = 0;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002593 btrfs_debug(fs_info, "run_delayed_extent_op returned %d", 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) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002650 locked_ref->processing = 0;
Miao Xie093486c2012-12-19 08:10:10 +00002651 btrfs_delayed_ref_unlock(locked_ref);
2652 btrfs_put_delayed_ref(ref);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002653 btrfs_debug(fs_info, "run_one_delayed_ref returned %d", ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002654 return ret;
2655 }
2656
Miao Xie093486c2012-12-19 08:10:10 +00002657 /*
2658 * If this node is a head, that means all the refs in this head
2659 * have been dealt with, and we will pick the next head to deal
2660 * with, so we must unlock the head and drop it from the cluster
2661 * list before we release it.
2662 */
2663 if (btrfs_delayed_ref_is_head(ref)) {
Josef Bacik12621332015-02-03 07:50:16 -08002664 if (locked_ref->is_data &&
2665 locked_ref->total_ref_mod < 0) {
2666 spin_lock(&delayed_refs->lock);
2667 delayed_refs->pending_csums -= ref->num_bytes;
2668 spin_unlock(&delayed_refs->lock);
2669 }
Miao Xie093486c2012-12-19 08:10:10 +00002670 btrfs_delayed_ref_unlock(locked_ref);
2671 locked_ref = NULL;
2672 }
2673 btrfs_put_delayed_ref(ref);
2674 count++;
Chris Mason1887be62009-03-13 10:11:24 -04002675 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002676 }
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002677
2678 /*
2679 * We don't want to include ref heads since we can have empty ref heads
2680 * and those will drastically skew our runtime down since we just do
2681 * accounting, no actual extent tree updates.
2682 */
2683 if (actual_count > 0) {
2684 u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start));
2685 u64 avg;
2686
2687 /*
2688 * We weigh the current average higher than our current runtime
2689 * to avoid large swings in the average.
2690 */
2691 spin_lock(&delayed_refs->lock);
2692 avg = fs_info->avg_delayed_ref_runtime * 3 + runtime;
David Sterbaf8c269d2015-01-16 17:21:12 +01002693 fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002694 spin_unlock(&delayed_refs->lock);
2695 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002696 return 0;
Chris Masonc3e69d52009-03-13 10:17:05 -04002697}
2698
Arne Jansen709c0482011-09-12 12:22:57 +02002699#ifdef SCRAMBLE_DELAYED_REFS
2700/*
2701 * Normally delayed refs get processed in ascending bytenr order. This
2702 * correlates in most cases to the order added. To expose dependencies on this
2703 * order, we start to process the tree in the middle instead of the beginning
2704 */
2705static u64 find_middle(struct rb_root *root)
2706{
2707 struct rb_node *n = root->rb_node;
2708 struct btrfs_delayed_ref_node *entry;
2709 int alt = 1;
2710 u64 middle;
2711 u64 first = 0, last = 0;
2712
2713 n = rb_first(root);
2714 if (n) {
2715 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2716 first = entry->bytenr;
2717 }
2718 n = rb_last(root);
2719 if (n) {
2720 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2721 last = entry->bytenr;
2722 }
2723 n = root->rb_node;
2724
2725 while (n) {
2726 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2727 WARN_ON(!entry->in_tree);
2728
2729 middle = entry->bytenr;
2730
2731 if (alt)
2732 n = n->rb_left;
2733 else
2734 n = n->rb_right;
2735
2736 alt = 1 - alt;
2737 }
2738 return middle;
2739}
2740#endif
2741
Josef Bacik1be41b72013-06-12 13:56:06 -04002742static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads)
2743{
2744 u64 num_bytes;
2745
2746 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2747 sizeof(struct btrfs_extent_inline_ref));
2748 if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2749 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2750
2751 /*
2752 * 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 -04002753 * closer to what we're really going to want to use.
Josef Bacik1be41b72013-06-12 13:56:06 -04002754 */
David Sterbaf8c269d2015-01-16 17:21:12 +01002755 return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root));
Josef Bacik1be41b72013-06-12 13:56:06 -04002756}
2757
Josef Bacik12621332015-02-03 07:50:16 -08002758/*
2759 * Takes the number of bytes to be csumm'ed and figures out how many leaves it
2760 * would require to store the csums for that many bytes.
2761 */
Chris Mason28f75a02015-02-04 06:59:29 -08002762u64 btrfs_csum_bytes_to_leaves(struct btrfs_root *root, u64 csum_bytes)
Josef Bacik12621332015-02-03 07:50:16 -08002763{
2764 u64 csum_size;
2765 u64 num_csums_per_leaf;
2766 u64 num_csums;
2767
Jeff Mahoney14a1e062016-06-15 10:25:38 -04002768 csum_size = BTRFS_MAX_ITEM_SIZE(root);
Josef Bacik12621332015-02-03 07:50:16 -08002769 num_csums_per_leaf = div64_u64(csum_size,
2770 (u64)btrfs_super_csum_size(root->fs_info->super_copy));
2771 num_csums = div64_u64(csum_bytes, root->sectorsize);
2772 num_csums += num_csums_per_leaf - 1;
2773 num_csums = div64_u64(num_csums, num_csums_per_leaf);
2774 return num_csums;
2775}
2776
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002777int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans,
Josef Bacik1be41b72013-06-12 13:56:06 -04002778 struct btrfs_root *root)
2779{
2780 struct btrfs_block_rsv *global_rsv;
2781 u64 num_heads = trans->transaction->delayed_refs.num_heads_ready;
Josef Bacik12621332015-02-03 07:50:16 -08002782 u64 csum_bytes = trans->transaction->delayed_refs.pending_csums;
Josef Bacikcb723e42015-02-18 08:06:57 -08002783 u64 num_dirty_bgs = trans->transaction->num_dirty_bgs;
2784 u64 num_bytes, num_dirty_bgs_bytes;
Josef Bacik1be41b72013-06-12 13:56:06 -04002785 int ret = 0;
2786
2787 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
2788 num_heads = heads_to_leaves(root, num_heads);
2789 if (num_heads > 1)
David Sterba707e8a02014-06-04 19:22:26 +02002790 num_bytes += (num_heads - 1) * root->nodesize;
Josef Bacik1be41b72013-06-12 13:56:06 -04002791 num_bytes <<= 1;
Chris Mason28f75a02015-02-04 06:59:29 -08002792 num_bytes += btrfs_csum_bytes_to_leaves(root, csum_bytes) * root->nodesize;
Josef Bacikcb723e42015-02-18 08:06:57 -08002793 num_dirty_bgs_bytes = btrfs_calc_trans_metadata_size(root,
2794 num_dirty_bgs);
Josef Bacik1be41b72013-06-12 13:56:06 -04002795 global_rsv = &root->fs_info->global_block_rsv;
2796
2797 /*
2798 * If we can't allocate any more chunks lets make sure we have _lots_ of
2799 * wiggle room since running delayed refs can create more delayed refs.
2800 */
Josef Bacikcb723e42015-02-18 08:06:57 -08002801 if (global_rsv->space_info->full) {
2802 num_dirty_bgs_bytes <<= 1;
Josef Bacik1be41b72013-06-12 13:56:06 -04002803 num_bytes <<= 1;
Josef Bacikcb723e42015-02-18 08:06:57 -08002804 }
Josef Bacik1be41b72013-06-12 13:56:06 -04002805
2806 spin_lock(&global_rsv->lock);
Josef Bacikcb723e42015-02-18 08:06:57 -08002807 if (global_rsv->reserved <= num_bytes + num_dirty_bgs_bytes)
Josef Bacik1be41b72013-06-12 13:56:06 -04002808 ret = 1;
2809 spin_unlock(&global_rsv->lock);
2810 return ret;
2811}
2812
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002813int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans,
2814 struct btrfs_root *root)
2815{
2816 struct btrfs_fs_info *fs_info = root->fs_info;
2817 u64 num_entries =
2818 atomic_read(&trans->transaction->delayed_refs.num_entries);
2819 u64 avg_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002820 u64 val;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002821
2822 smp_mb();
2823 avg_runtime = fs_info->avg_delayed_ref_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002824 val = num_entries * avg_runtime;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002825 if (num_entries * avg_runtime >= NSEC_PER_SEC)
2826 return 1;
Chris Masona79b7d42014-05-22 16:18:52 -07002827 if (val >= NSEC_PER_SEC / 2)
2828 return 2;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002829
2830 return btrfs_check_space_for_delayed_refs(trans, root);
2831}
2832
Chris Masona79b7d42014-05-22 16:18:52 -07002833struct async_delayed_refs {
2834 struct btrfs_root *root;
Josef Bacik31b96552016-04-11 17:37:40 -04002835 u64 transid;
Chris Masona79b7d42014-05-22 16:18:52 -07002836 int count;
2837 int error;
2838 int sync;
2839 struct completion wait;
2840 struct btrfs_work work;
2841};
2842
2843static void delayed_ref_async_start(struct btrfs_work *work)
2844{
2845 struct async_delayed_refs *async;
2846 struct btrfs_trans_handle *trans;
2847 int ret;
2848
2849 async = container_of(work, struct async_delayed_refs, work);
2850
Chris Mason0f873ec2016-04-27 09:59:38 -04002851 /* if the commit is already started, we don't need to wait here */
2852 if (btrfs_transaction_blocked(async->root->fs_info))
Josef Bacik31b96552016-04-11 17:37:40 -04002853 goto done;
Josef Bacik31b96552016-04-11 17:37:40 -04002854
Chris Mason0f873ec2016-04-27 09:59:38 -04002855 trans = btrfs_join_transaction(async->root);
2856 if (IS_ERR(trans)) {
2857 async->error = PTR_ERR(trans);
Chris Masona79b7d42014-05-22 16:18:52 -07002858 goto done;
2859 }
2860
2861 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002862 * trans->sync means that when we call end_transaction, we won't
Chris Masona79b7d42014-05-22 16:18:52 -07002863 * wait on delayed refs
2864 */
2865 trans->sync = true;
Chris Mason0f873ec2016-04-27 09:59:38 -04002866
2867 /* Don't bother flushing if we got into a different transaction */
2868 if (trans->transid > async->transid)
2869 goto end;
2870
Chris Masona79b7d42014-05-22 16:18:52 -07002871 ret = btrfs_run_delayed_refs(trans, async->root, async->count);
2872 if (ret)
2873 async->error = ret;
Chris Mason0f873ec2016-04-27 09:59:38 -04002874end:
Chris Masona79b7d42014-05-22 16:18:52 -07002875 ret = btrfs_end_transaction(trans, async->root);
2876 if (ret && !async->error)
2877 async->error = ret;
2878done:
2879 if (async->sync)
2880 complete(&async->wait);
2881 else
2882 kfree(async);
2883}
2884
2885int btrfs_async_run_delayed_refs(struct btrfs_root *root,
Josef Bacik31b96552016-04-11 17:37:40 -04002886 unsigned long count, u64 transid, int wait)
Chris Masona79b7d42014-05-22 16:18:52 -07002887{
2888 struct async_delayed_refs *async;
2889 int ret;
2890
2891 async = kmalloc(sizeof(*async), GFP_NOFS);
2892 if (!async)
2893 return -ENOMEM;
2894
2895 async->root = root->fs_info->tree_root;
2896 async->count = count;
2897 async->error = 0;
Josef Bacik31b96552016-04-11 17:37:40 -04002898 async->transid = transid;
Chris Masona79b7d42014-05-22 16:18:52 -07002899 if (wait)
2900 async->sync = 1;
2901 else
2902 async->sync = 0;
2903 init_completion(&async->wait);
2904
Liu Bo9e0af232014-08-15 23:36:53 +08002905 btrfs_init_work(&async->work, btrfs_extent_refs_helper,
2906 delayed_ref_async_start, NULL, NULL);
Chris Masona79b7d42014-05-22 16:18:52 -07002907
2908 btrfs_queue_work(root->fs_info->extent_workers, &async->work);
2909
2910 if (wait) {
2911 wait_for_completion(&async->wait);
2912 ret = async->error;
2913 kfree(async);
2914 return ret;
2915 }
2916 return 0;
2917}
2918
Chris Masonc3e69d52009-03-13 10:17:05 -04002919/*
2920 * this starts processing the delayed reference count updates and
2921 * extent insertions we have queued up so far. count can be
2922 * 0, which means to process everything in the tree at the start
2923 * of the run (but not newly added entries), or it can be some target
2924 * number you'd like to process.
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002925 *
2926 * Returns 0 on success or if called with an aborted transaction
2927 * Returns <0 on error and aborts the transaction
Chris Masonc3e69d52009-03-13 10:17:05 -04002928 */
2929int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2930 struct btrfs_root *root, unsigned long count)
2931{
2932 struct rb_node *node;
2933 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boc46effa2013-10-14 12:59:45 +08002934 struct btrfs_delayed_ref_head *head;
Chris Masonc3e69d52009-03-13 10:17:05 -04002935 int ret;
2936 int run_all = count == (unsigned long)-1;
Filipe Mananad9a05402015-10-03 13:13:13 +01002937 bool can_flush_pending_bgs = trans->can_flush_pending_bgs;
Chris Masonc3e69d52009-03-13 10:17:05 -04002938
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002939 /* We'll clean this up in btrfs_cleanup_transaction */
2940 if (trans->aborted)
2941 return 0;
2942
Chris Mason511711a2015-12-30 07:52:35 -08002943 if (root->fs_info->creating_free_space_tree)
2944 return 0;
2945
Chris Masonc3e69d52009-03-13 10:17:05 -04002946 if (root == root->fs_info->extent_root)
2947 root = root->fs_info->tree_root;
2948
2949 delayed_refs = &trans->transaction->delayed_refs;
Liu Bo26455d32014-12-17 16:14:09 +08002950 if (count == 0)
Josef Bacikd7df2c72014-01-23 09:21:38 -05002951 count = atomic_read(&delayed_refs->num_entries) * 2;
Chris Masonbb721702013-01-29 18:44:12 -05002952
Chris Masonc3e69d52009-03-13 10:17:05 -04002953again:
Arne Jansen709c0482011-09-12 12:22:57 +02002954#ifdef SCRAMBLE_DELAYED_REFS
2955 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
2956#endif
Filipe Mananad9a05402015-10-03 13:13:13 +01002957 trans->can_flush_pending_bgs = false;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002958 ret = __btrfs_run_delayed_refs(trans, root, count);
2959 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002960 btrfs_abort_transaction(trans, ret);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002961 return ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04002962 }
2963
Chris Mason56bec292009-03-13 10:10:06 -04002964 if (run_all) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002965 if (!list_empty(&trans->new_bgs))
Josef Bacikea658ba2012-09-11 16:57:25 -04002966 btrfs_create_pending_block_groups(trans, root);
Josef Bacikea658ba2012-09-11 16:57:25 -04002967
Josef Bacikd7df2c72014-01-23 09:21:38 -05002968 spin_lock(&delayed_refs->lock);
Liu Boc46effa2013-10-14 12:59:45 +08002969 node = rb_first(&delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002970 if (!node) {
2971 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002972 goto out;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002973 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002974 count = (unsigned long)-1;
Chris Mason56bec292009-03-13 10:10:06 -04002975
2976 while (node) {
Liu Boc46effa2013-10-14 12:59:45 +08002977 head = rb_entry(node, struct btrfs_delayed_ref_head,
2978 href_node);
2979 if (btrfs_delayed_ref_is_head(&head->node)) {
2980 struct btrfs_delayed_ref_node *ref;
Chris Mason56bec292009-03-13 10:10:06 -04002981
Liu Boc46effa2013-10-14 12:59:45 +08002982 ref = &head->node;
Chris Mason56bec292009-03-13 10:10:06 -04002983 atomic_inc(&ref->refs);
2984
2985 spin_unlock(&delayed_refs->lock);
David Sterba8cc33e52011-05-02 15:29:25 +02002986 /*
2987 * Mutex was contended, block until it's
2988 * released and try again
2989 */
Chris Mason56bec292009-03-13 10:10:06 -04002990 mutex_lock(&head->mutex);
2991 mutex_unlock(&head->mutex);
2992
2993 btrfs_put_delayed_ref(ref);
Chris Mason1887be62009-03-13 10:11:24 -04002994 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002995 goto again;
Liu Boc46effa2013-10-14 12:59:45 +08002996 } else {
2997 WARN_ON(1);
Chris Mason56bec292009-03-13 10:10:06 -04002998 }
2999 node = rb_next(node);
3000 }
3001 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003002 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04003003 goto again;
3004 }
Chris Mason54aa1f42007-06-22 14:16:25 -04003005out:
Jan Schmidtedf39272012-06-28 18:04:55 +02003006 assert_qgroups_uptodate(trans);
Filipe Mananad9a05402015-10-03 13:13:13 +01003007 trans->can_flush_pending_bgs = can_flush_pending_bgs;
Chris Masona28ec192007-03-06 20:08:01 -05003008 return 0;
3009}
3010
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003011int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
3012 struct btrfs_root *root,
3013 u64 bytenr, u64 num_bytes, u64 flags,
Josef Bacikb1c79e02013-05-09 13:49:30 -04003014 int level, int is_data)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003015{
3016 struct btrfs_delayed_extent_op *extent_op;
3017 int ret;
3018
Miao Xie78a61842012-11-21 02:21:28 +00003019 extent_op = btrfs_alloc_delayed_extent_op();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003020 if (!extent_op)
3021 return -ENOMEM;
3022
3023 extent_op->flags_to_set = flags;
David Sterba35b3ad52015-11-30 16:51:29 +01003024 extent_op->update_flags = true;
3025 extent_op->update_key = false;
3026 extent_op->is_data = is_data ? true : false;
Josef Bacikb1c79e02013-05-09 13:49:30 -04003027 extent_op->level = level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003028
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003029 ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr,
3030 num_bytes, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003031 if (ret)
Miao Xie78a61842012-11-21 02:21:28 +00003032 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003033 return ret;
3034}
3035
3036static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
3037 struct btrfs_root *root,
3038 struct btrfs_path *path,
3039 u64 objectid, u64 offset, u64 bytenr)
3040{
3041 struct btrfs_delayed_ref_head *head;
3042 struct btrfs_delayed_ref_node *ref;
3043 struct btrfs_delayed_data_ref *data_ref;
3044 struct btrfs_delayed_ref_root *delayed_refs;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003045 int ret = 0;
3046
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003047 delayed_refs = &trans->transaction->delayed_refs;
3048 spin_lock(&delayed_refs->lock);
3049 head = btrfs_find_delayed_ref_head(trans, bytenr);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003050 if (!head) {
3051 spin_unlock(&delayed_refs->lock);
3052 return 0;
3053 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003054
3055 if (!mutex_trylock(&head->mutex)) {
3056 atomic_inc(&head->node.refs);
3057 spin_unlock(&delayed_refs->lock);
3058
David Sterbab3b4aa72011-04-21 01:20:15 +02003059 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003060
David Sterba8cc33e52011-05-02 15:29:25 +02003061 /*
3062 * Mutex was contended, block until it's released and let
3063 * caller try again
3064 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003065 mutex_lock(&head->mutex);
3066 mutex_unlock(&head->mutex);
3067 btrfs_put_delayed_ref(&head->node);
3068 return -EAGAIN;
3069 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003070 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003071
3072 spin_lock(&head->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08003073 list_for_each_entry(ref, &head->ref_list, list) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05003074 /* If it's a shared ref we know a cross reference exists */
3075 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) {
3076 ret = 1;
3077 break;
3078 }
3079
3080 data_ref = btrfs_delayed_node_to_data_ref(ref);
3081
3082 /*
3083 * If our ref doesn't match the one we're currently looking at
3084 * then we have a cross reference.
3085 */
3086 if (data_ref->root != root->root_key.objectid ||
3087 data_ref->objectid != objectid ||
3088 data_ref->offset != offset) {
3089 ret = 1;
3090 break;
3091 }
3092 }
3093 spin_unlock(&head->lock);
3094 mutex_unlock(&head->mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003095 return ret;
3096}
3097
3098static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
3099 struct btrfs_root *root,
3100 struct btrfs_path *path,
3101 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05003102{
3103 struct btrfs_root *extent_root = root->fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04003104 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003105 struct btrfs_extent_data_ref *ref;
3106 struct btrfs_extent_inline_ref *iref;
3107 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05003108 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003109 u32 item_size;
Yan Zhengf321e492008-07-30 09:26:11 -04003110 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05003111
Chris Masonbe20aa92007-12-17 20:14:01 -05003112 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04003113 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04003114 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05003115
Chris Masonbe20aa92007-12-17 20:14:01 -05003116 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
3117 if (ret < 0)
3118 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003119 BUG_ON(ret == 0); /* Corruption */
Yan Zheng80ff3852008-10-30 14:20:02 -04003120
3121 ret = -ENOENT;
3122 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04003123 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003124
Zheng Yan31840ae2008-09-23 13:14:14 -04003125 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04003126 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003127 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05003128
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003129 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05003130 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003131
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003132 ret = 1;
3133 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
3134#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
3135 if (item_size < sizeof(*ei)) {
3136 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
3137 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003138 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003139#endif
3140 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
3141
3142 if (item_size != sizeof(*ei) +
3143 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
3144 goto out;
3145
3146 if (btrfs_extent_generation(leaf, ei) <=
3147 btrfs_root_last_snapshot(&root->root_item))
3148 goto out;
3149
3150 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
3151 if (btrfs_extent_inline_ref_type(leaf, iref) !=
3152 BTRFS_EXTENT_DATA_REF_KEY)
3153 goto out;
3154
3155 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
3156 if (btrfs_extent_refs(leaf, ei) !=
3157 btrfs_extent_data_ref_count(leaf, ref) ||
3158 btrfs_extent_data_ref_root(leaf, ref) !=
3159 root->root_key.objectid ||
3160 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
3161 btrfs_extent_data_ref_offset(leaf, ref) != offset)
3162 goto out;
3163
Yan Zhengf321e492008-07-30 09:26:11 -04003164 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05003165out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003166 return ret;
3167}
3168
3169int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
3170 struct btrfs_root *root,
3171 u64 objectid, u64 offset, u64 bytenr)
3172{
3173 struct btrfs_path *path;
3174 int ret;
3175 int ret2;
3176
3177 path = btrfs_alloc_path();
3178 if (!path)
3179 return -ENOENT;
3180
3181 do {
3182 ret = check_committed_ref(trans, root, path, objectid,
3183 offset, bytenr);
3184 if (ret && ret != -ENOENT)
3185 goto out;
3186
3187 ret2 = check_delayed_ref(trans, root, path, objectid,
3188 offset, bytenr);
3189 } while (ret2 == -EAGAIN);
3190
3191 if (ret2 && ret2 != -ENOENT) {
3192 ret = ret2;
3193 goto out;
3194 }
3195
3196 if (ret != -ENOENT || ret2 != -ENOENT)
3197 ret = 0;
3198out:
Yan Zhengf321e492008-07-30 09:26:11 -04003199 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003200 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3201 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04003202 return ret;
3203}
3204
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003205static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05003206 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003207 struct extent_buffer *buf,
Josef Bacike339a6b2014-07-02 10:54:25 -07003208 int full_backref, int inc)
Zheng Yan31840ae2008-09-23 13:14:14 -04003209{
3210 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003211 u64 num_bytes;
3212 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003213 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04003214 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04003215 struct btrfs_key key;
3216 struct btrfs_file_extent_item *fi;
3217 int i;
3218 int level;
3219 int ret = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04003220 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003221 u64, u64, u64, u64, u64, u64);
Zheng Yan31840ae2008-09-23 13:14:14 -04003222
David Sterbafccb84c2014-09-29 23:53:21 +02003223
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -04003224 if (btrfs_is_testing(root->fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04003225 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02003226
Zheng Yan31840ae2008-09-23 13:14:14 -04003227 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04003228 nritems = btrfs_header_nritems(buf);
3229 level = btrfs_header_level(buf);
3230
Miao Xie27cdeb72014-04-02 19:51:05 +08003231 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003232 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05003233
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003234 if (inc)
3235 process_func = btrfs_inc_extent_ref;
3236 else
3237 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003238
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003239 if (full_backref)
3240 parent = buf->start;
3241 else
3242 parent = 0;
3243
Zheng Yan31840ae2008-09-23 13:14:14 -04003244 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04003245 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003246 btrfs_item_key_to_cpu(buf, &key, i);
David Sterba962a2982014-06-04 18:41:45 +02003247 if (key.type != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04003248 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003249 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04003250 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003251 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04003252 BTRFS_FILE_EXTENT_INLINE)
3253 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003254 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3255 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04003256 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003257
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003258 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3259 key.offset -= btrfs_file_extent_offset(buf, fi);
3260 ret = process_func(trans, root, bytenr, num_bytes,
3261 parent, ref_root, key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003262 key.offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003263 if (ret)
3264 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05003265 } else {
3266 bytenr = btrfs_node_blockptr(buf, i);
David Sterba707e8a02014-06-04 19:22:26 +02003267 num_bytes = root->nodesize;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003268 ret = process_func(trans, root, bytenr, num_bytes,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003269 parent, ref_root, level - 1, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003270 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04003271 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04003272 }
3273 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003274 return 0;
3275fail:
Chris Mason54aa1f42007-06-22 14:16:25 -04003276 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05003277}
3278
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003279int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003280 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04003281{
Josef Bacike339a6b2014-07-02 10:54:25 -07003282 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003283}
Zheng Yan31840ae2008-09-23 13:14:14 -04003284
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003285int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003286 struct extent_buffer *buf, int full_backref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003287{
Josef Bacike339a6b2014-07-02 10:54:25 -07003288 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003289}
3290
Chris Mason9078a3e2007-04-26 16:46:15 -04003291static int write_one_cache_group(struct btrfs_trans_handle *trans,
3292 struct btrfs_root *root,
3293 struct btrfs_path *path,
3294 struct btrfs_block_group_cache *cache)
3295{
3296 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003297 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003298 unsigned long bi;
3299 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04003300
Chris Mason9078a3e2007-04-26 16:46:15 -04003301 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003302 if (ret) {
3303 if (ret > 0)
3304 ret = -ENOENT;
Chris Mason54aa1f42007-06-22 14:16:25 -04003305 goto fail;
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003306 }
Chris Mason5f39d392007-10-15 16:14:19 -04003307
3308 leaf = path->nodes[0];
3309 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3310 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3311 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -04003312fail:
Filipe Manana24b89d02015-04-25 18:31:05 +01003313 btrfs_release_path(path);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003314 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003315
3316}
3317
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003318static struct btrfs_block_group_cache *
3319next_block_group(struct btrfs_root *root,
3320 struct btrfs_block_group_cache *cache)
3321{
3322 struct rb_node *node;
Filipe Manana292cbd52014-11-26 15:28:50 +00003323
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003324 spin_lock(&root->fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003325
3326 /* If our block group was removed, we need a full search. */
3327 if (RB_EMPTY_NODE(&cache->cache_node)) {
3328 const u64 next_bytenr = cache->key.objectid + cache->key.offset;
3329
3330 spin_unlock(&root->fs_info->block_group_cache_lock);
3331 btrfs_put_block_group(cache);
3332 cache = btrfs_lookup_first_block_group(root->fs_info,
3333 next_bytenr);
3334 return cache;
3335 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003336 node = rb_next(&cache->cache_node);
3337 btrfs_put_block_group(cache);
3338 if (node) {
3339 cache = rb_entry(node, struct btrfs_block_group_cache,
3340 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00003341 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003342 } else
3343 cache = NULL;
3344 spin_unlock(&root->fs_info->block_group_cache_lock);
3345 return cache;
3346}
3347
Josef Bacik0af3d002010-06-21 14:48:16 -04003348static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3349 struct btrfs_trans_handle *trans,
3350 struct btrfs_path *path)
3351{
3352 struct btrfs_root *root = block_group->fs_info->tree_root;
3353 struct inode *inode = NULL;
3354 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05003355 int dcs = BTRFS_DC_ERROR;
David Sterbaf8c269d2015-01-16 17:21:12 +01003356 u64 num_pages = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003357 int retries = 0;
3358 int ret = 0;
3359
3360 /*
3361 * If this block group is smaller than 100 megs don't bother caching the
3362 * block group.
3363 */
Byongho Leeee221842015-12-15 01:42:10 +09003364 if (block_group->key.offset < (100 * SZ_1M)) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003365 spin_lock(&block_group->lock);
3366 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3367 spin_unlock(&block_group->lock);
3368 return 0;
3369 }
3370
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003371 if (trans->aborted)
3372 return 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003373again:
3374 inode = lookup_free_space_inode(root, block_group, path);
3375 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3376 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02003377 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003378 goto out;
3379 }
3380
3381 if (IS_ERR(inode)) {
3382 BUG_ON(retries);
3383 retries++;
3384
3385 if (block_group->ro)
3386 goto out_free;
3387
3388 ret = create_free_space_inode(root, trans, block_group, path);
3389 if (ret)
3390 goto out_free;
3391 goto again;
3392 }
3393
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003394 /* We've already setup this transaction, go ahead and exit */
3395 if (block_group->cache_generation == trans->transid &&
3396 i_size_read(inode)) {
3397 dcs = BTRFS_DC_SETUP;
3398 goto out_put;
3399 }
3400
Josef Bacik0af3d002010-06-21 14:48:16 -04003401 /*
3402 * We want to set the generation to 0, that way if anything goes wrong
3403 * from here on out we know not to trust this cache when we load up next
3404 * time.
3405 */
3406 BTRFS_I(inode)->generation = 0;
3407 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003408 if (ret) {
3409 /*
3410 * So theoretically we could recover from this, simply set the
3411 * super cache generation to 0 so we know to invalidate the
3412 * cache, but then we'd have to keep track of the block groups
3413 * that fail this way so we know we _have_ to reset this cache
3414 * before the next commit or risk reading stale cache. So to
3415 * limit our exposure to horrible edge cases lets just abort the
3416 * transaction, this only happens in really bad situations
3417 * anyway.
3418 */
Jeff Mahoney66642832016-06-10 18:19:25 -04003419 btrfs_abort_transaction(trans, ret);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003420 goto out_put;
3421 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003422 WARN_ON(ret);
3423
3424 if (i_size_read(inode) > 0) {
Miao Xie7b61cd92013-05-13 13:55:09 +00003425 ret = btrfs_check_trunc_cache_free_space(root,
3426 &root->fs_info->global_block_rsv);
3427 if (ret)
3428 goto out_put;
3429
Chris Mason1bbc6212015-04-06 12:46:08 -07003430 ret = btrfs_truncate_free_space_cache(root, trans, NULL, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003431 if (ret)
3432 goto out_put;
3433 }
3434
3435 spin_lock(&block_group->lock);
Liu Bocf7c1ef2012-07-06 03:31:34 -06003436 if (block_group->cached != BTRFS_CACHE_FINISHED ||
Jeff Mahoney3cdde222016-06-09 21:38:35 -04003437 !btrfs_test_opt(root->fs_info, SPACE_CACHE)) {
Liu Bocf7c1ef2012-07-06 03:31:34 -06003438 /*
3439 * don't bother trying to write stuff out _if_
3440 * a) we're not cached,
3441 * b) we're with nospace_cache mount option.
3442 */
Josef Bacik2b209822010-12-03 13:17:53 -05003443 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04003444 spin_unlock(&block_group->lock);
3445 goto out_put;
3446 }
3447 spin_unlock(&block_group->lock);
3448
Josef Bacik6fc823b2012-08-06 13:46:38 -06003449 /*
Josef Bacik2968b1f2015-10-01 12:55:18 -04003450 * We hit an ENOSPC when setting up the cache in this transaction, just
3451 * skip doing the setup, we've already cleared the cache so we're safe.
3452 */
3453 if (test_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags)) {
3454 ret = -ENOSPC;
3455 goto out_put;
3456 }
3457
3458 /*
Josef Bacik6fc823b2012-08-06 13:46:38 -06003459 * Try to preallocate enough space based on how big the block group is.
3460 * Keep in mind this has to include any pinned space which could end up
3461 * taking up quite a bit since it's not folded into the other space
3462 * cache.
3463 */
Byongho Leeee221842015-12-15 01:42:10 +09003464 num_pages = div_u64(block_group->key.offset, SZ_256M);
Josef Bacik0af3d002010-06-21 14:48:16 -04003465 if (!num_pages)
3466 num_pages = 1;
3467
Josef Bacik0af3d002010-06-21 14:48:16 -04003468 num_pages *= 16;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003469 num_pages *= PAGE_SIZE;
Josef Bacik0af3d002010-06-21 14:48:16 -04003470
Qu Wenruo7cf5b972015-09-08 17:25:55 +08003471 ret = btrfs_check_data_free_space(inode, 0, num_pages);
Josef Bacik0af3d002010-06-21 14:48:16 -04003472 if (ret)
3473 goto out_put;
3474
3475 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3476 num_pages, num_pages,
3477 &alloc_hint);
Josef Bacik2968b1f2015-10-01 12:55:18 -04003478 /*
3479 * Our cache requires contiguous chunks so that we don't modify a bunch
3480 * of metadata or split extents when writing the cache out, which means
3481 * we can enospc if we are heavily fragmented in addition to just normal
3482 * out of space conditions. So if we hit this just skip setting up any
3483 * other block groups for this transaction, maybe we'll unpin enough
3484 * space the next time around.
3485 */
Josef Bacik2b209822010-12-03 13:17:53 -05003486 if (!ret)
3487 dcs = BTRFS_DC_SETUP;
Josef Bacik2968b1f2015-10-01 12:55:18 -04003488 else if (ret == -ENOSPC)
3489 set_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags);
Josef Bacikc09544e2011-08-30 10:19:10 -04003490
Josef Bacik0af3d002010-06-21 14:48:16 -04003491out_put:
3492 iput(inode);
3493out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02003494 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003495out:
3496 spin_lock(&block_group->lock);
Josef Bacike65cbb92011-12-13 16:04:54 -05003497 if (!ret && dcs == BTRFS_DC_SETUP)
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003498 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05003499 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04003500 spin_unlock(&block_group->lock);
3501
3502 return ret;
3503}
3504
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003505int btrfs_setup_space_cache(struct btrfs_trans_handle *trans,
3506 struct btrfs_root *root)
3507{
3508 struct btrfs_block_group_cache *cache, *tmp;
3509 struct btrfs_transaction *cur_trans = trans->transaction;
3510 struct btrfs_path *path;
3511
3512 if (list_empty(&cur_trans->dirty_bgs) ||
Jeff Mahoney3cdde222016-06-09 21:38:35 -04003513 !btrfs_test_opt(root->fs_info, SPACE_CACHE))
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003514 return 0;
3515
3516 path = btrfs_alloc_path();
3517 if (!path)
3518 return -ENOMEM;
3519
3520 /* Could add new block groups, use _safe just in case */
3521 list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs,
3522 dirty_list) {
3523 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3524 cache_save_setup(cache, trans, path);
3525 }
3526
3527 btrfs_free_path(path);
3528 return 0;
3529}
3530
Chris Mason1bbc6212015-04-06 12:46:08 -07003531/*
3532 * transaction commit does final block group cache writeback during a
3533 * critical section where nothing is allowed to change the FS. This is
3534 * required in order for the cache to actually match the block group,
3535 * but can introduce a lot of latency into the commit.
3536 *
3537 * So, btrfs_start_dirty_block_groups is here to kick off block group
3538 * cache IO. There's a chance we'll have to redo some of it if the
3539 * block group changes again during the commit, but it greatly reduces
3540 * the commit latency by getting rid of the easy block groups while
3541 * we're still allowing others to join the commit.
3542 */
3543int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans,
3544 struct btrfs_root *root)
3545{
3546 struct btrfs_block_group_cache *cache;
3547 struct btrfs_transaction *cur_trans = trans->transaction;
3548 int ret = 0;
3549 int should_put;
3550 struct btrfs_path *path = NULL;
3551 LIST_HEAD(dirty);
3552 struct list_head *io = &cur_trans->io_bgs;
3553 int num_started = 0;
3554 int loops = 0;
3555
3556 spin_lock(&cur_trans->dirty_bgs_lock);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003557 if (list_empty(&cur_trans->dirty_bgs)) {
3558 spin_unlock(&cur_trans->dirty_bgs_lock);
3559 return 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003560 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003561 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Chris Mason1bbc6212015-04-06 12:46:08 -07003562 spin_unlock(&cur_trans->dirty_bgs_lock);
3563
3564again:
Chris Mason1bbc6212015-04-06 12:46:08 -07003565 /*
3566 * make sure all the block groups on our dirty list actually
3567 * exist
3568 */
3569 btrfs_create_pending_block_groups(trans, root);
3570
3571 if (!path) {
3572 path = btrfs_alloc_path();
3573 if (!path)
3574 return -ENOMEM;
3575 }
3576
Filipe Mananab58d1a92015-04-25 18:29:16 +01003577 /*
3578 * cache_write_mutex is here only to save us from balance or automatic
3579 * removal of empty block groups deleting this block group while we are
3580 * writing out the cache
3581 */
3582 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003583 while (!list_empty(&dirty)) {
3584 cache = list_first_entry(&dirty,
3585 struct btrfs_block_group_cache,
3586 dirty_list);
Chris Mason1bbc6212015-04-06 12:46:08 -07003587 /*
3588 * this can happen if something re-dirties a block
3589 * group that is already under IO. Just wait for it to
3590 * finish and then do it all again
3591 */
3592 if (!list_empty(&cache->io_list)) {
3593 list_del_init(&cache->io_list);
3594 btrfs_wait_cache_io(root, trans, cache,
3595 &cache->io_ctl, path,
3596 cache->key.objectid);
3597 btrfs_put_block_group(cache);
3598 }
3599
3600
3601 /*
3602 * btrfs_wait_cache_io uses the cache->dirty_list to decide
3603 * if it should update the cache_state. Don't delete
3604 * until after we wait.
3605 *
3606 * Since we're not running in the commit critical section
3607 * we need the dirty_bgs_lock to protect from update_block_group
3608 */
3609 spin_lock(&cur_trans->dirty_bgs_lock);
3610 list_del_init(&cache->dirty_list);
3611 spin_unlock(&cur_trans->dirty_bgs_lock);
3612
3613 should_put = 1;
3614
3615 cache_save_setup(cache, trans, path);
3616
3617 if (cache->disk_cache_state == BTRFS_DC_SETUP) {
3618 cache->io_ctl.inode = NULL;
3619 ret = btrfs_write_out_cache(root, trans, cache, path);
3620 if (ret == 0 && cache->io_ctl.inode) {
3621 num_started++;
3622 should_put = 0;
3623
3624 /*
3625 * the cache_write_mutex is protecting
3626 * the io_list
3627 */
3628 list_add_tail(&cache->io_list, io);
3629 } else {
3630 /*
3631 * if we failed to write the cache, the
3632 * generation will be bad and life goes on
3633 */
3634 ret = 0;
3635 }
3636 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003637 if (!ret) {
Chris Mason1bbc6212015-04-06 12:46:08 -07003638 ret = write_one_cache_group(trans, root, path, cache);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003639 /*
3640 * Our block group might still be attached to the list
3641 * of new block groups in the transaction handle of some
3642 * other task (struct btrfs_trans_handle->new_bgs). This
3643 * means its block group item isn't yet in the extent
3644 * tree. If this happens ignore the error, as we will
3645 * try again later in the critical section of the
3646 * transaction commit.
3647 */
3648 if (ret == -ENOENT) {
3649 ret = 0;
3650 spin_lock(&cur_trans->dirty_bgs_lock);
3651 if (list_empty(&cache->dirty_list)) {
3652 list_add_tail(&cache->dirty_list,
3653 &cur_trans->dirty_bgs);
3654 btrfs_get_block_group(cache);
3655 }
3656 spin_unlock(&cur_trans->dirty_bgs_lock);
3657 } else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003658 btrfs_abort_transaction(trans, ret);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003659 }
3660 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003661
3662 /* if its not on the io list, we need to put the block group */
3663 if (should_put)
3664 btrfs_put_block_group(cache);
3665
3666 if (ret)
3667 break;
Filipe Mananab58d1a92015-04-25 18:29:16 +01003668
3669 /*
3670 * Avoid blocking other tasks for too long. It might even save
3671 * us from writing caches for block groups that are going to be
3672 * removed.
3673 */
3674 mutex_unlock(&trans->transaction->cache_write_mutex);
3675 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003676 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003677 mutex_unlock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003678
3679 /*
3680 * go through delayed refs for all the stuff we've just kicked off
3681 * and then loop back (just once)
3682 */
3683 ret = btrfs_run_delayed_refs(trans, root, 0);
3684 if (!ret && loops == 0) {
3685 loops++;
3686 spin_lock(&cur_trans->dirty_bgs_lock);
3687 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003688 /*
3689 * dirty_bgs_lock protects us from concurrent block group
3690 * deletes too (not just cache_write_mutex).
3691 */
3692 if (!list_empty(&dirty)) {
3693 spin_unlock(&cur_trans->dirty_bgs_lock);
3694 goto again;
3695 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003696 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Mason1bbc6212015-04-06 12:46:08 -07003697 }
3698
3699 btrfs_free_path(path);
3700 return ret;
3701}
3702
Chris Mason96b51792007-10-15 16:15:19 -04003703int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
3704 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04003705{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003706 struct btrfs_block_group_cache *cache;
Josef Bacikce93ec52014-11-17 15:45:48 -05003707 struct btrfs_transaction *cur_trans = trans->transaction;
3708 int ret = 0;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003709 int should_put;
Chris Mason9078a3e2007-04-26 16:46:15 -04003710 struct btrfs_path *path;
Chris Mason1bbc6212015-04-06 12:46:08 -07003711 struct list_head *io = &cur_trans->io_bgs;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003712 int num_started = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003713
3714 path = btrfs_alloc_path();
3715 if (!path)
3716 return -ENOMEM;
3717
Josef Bacikce93ec52014-11-17 15:45:48 -05003718 /*
Filipe Mananae44081e2015-12-18 03:02:48 +00003719 * Even though we are in the critical section of the transaction commit,
3720 * we can still have concurrent tasks adding elements to this
3721 * transaction's list of dirty block groups. These tasks correspond to
3722 * endio free space workers started when writeback finishes for a
3723 * space cache, which run inode.c:btrfs_finish_ordered_io(), and can
3724 * allocate new block groups as a result of COWing nodes of the root
3725 * tree when updating the free space inode. The writeback for the space
3726 * caches is triggered by an earlier call to
3727 * btrfs_start_dirty_block_groups() and iterations of the following
3728 * loop.
3729 * Also we want to do the cache_save_setup first and then run the
Josef Bacikce93ec52014-11-17 15:45:48 -05003730 * delayed refs to make sure we have the best chance at doing this all
3731 * in one shot.
3732 */
Filipe Mananae44081e2015-12-18 03:02:48 +00003733 spin_lock(&cur_trans->dirty_bgs_lock);
Josef Bacikce93ec52014-11-17 15:45:48 -05003734 while (!list_empty(&cur_trans->dirty_bgs)) {
3735 cache = list_first_entry(&cur_trans->dirty_bgs,
3736 struct btrfs_block_group_cache,
3737 dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003738
3739 /*
3740 * this can happen if cache_save_setup re-dirties a block
3741 * group that is already under IO. Just wait for it to
3742 * finish and then do it all again
3743 */
3744 if (!list_empty(&cache->io_list)) {
Filipe Mananae44081e2015-12-18 03:02:48 +00003745 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003746 list_del_init(&cache->io_list);
3747 btrfs_wait_cache_io(root, trans, cache,
3748 &cache->io_ctl, path,
3749 cache->key.objectid);
3750 btrfs_put_block_group(cache);
Filipe Mananae44081e2015-12-18 03:02:48 +00003751 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003752 }
3753
Chris Mason1bbc6212015-04-06 12:46:08 -07003754 /*
3755 * don't remove from the dirty list until after we've waited
3756 * on any pending IO
3757 */
Josef Bacikce93ec52014-11-17 15:45:48 -05003758 list_del_init(&cache->dirty_list);
Filipe Mananae44081e2015-12-18 03:02:48 +00003759 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003760 should_put = 1;
3761
Chris Mason1bbc6212015-04-06 12:46:08 -07003762 cache_save_setup(cache, trans, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003763
Josef Bacikce93ec52014-11-17 15:45:48 -05003764 if (!ret)
Chris Masonc9dc4c62015-04-04 17:14:42 -07003765 ret = btrfs_run_delayed_refs(trans, root, (unsigned long) -1);
3766
3767 if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) {
3768 cache->io_ctl.inode = NULL;
3769 ret = btrfs_write_out_cache(root, trans, cache, path);
3770 if (ret == 0 && cache->io_ctl.inode) {
3771 num_started++;
3772 should_put = 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003773 list_add_tail(&cache->io_list, io);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003774 } else {
3775 /*
3776 * if we failed to write the cache, the
3777 * generation will be bad and life goes on
3778 */
3779 ret = 0;
3780 }
3781 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003782 if (!ret) {
Josef Bacikce93ec52014-11-17 15:45:48 -05003783 ret = write_one_cache_group(trans, root, path, cache);
Filipe Manana2bc0bb52015-12-30 02:42:30 +00003784 /*
3785 * One of the free space endio workers might have
3786 * created a new block group while updating a free space
3787 * cache's inode (at inode.c:btrfs_finish_ordered_io())
3788 * and hasn't released its transaction handle yet, in
3789 * which case the new block group is still attached to
3790 * its transaction handle and its creation has not
3791 * finished yet (no block group item in the extent tree
3792 * yet, etc). If this is the case, wait for all free
3793 * space endio workers to finish and retry. This is a
3794 * a very rare case so no need for a more efficient and
3795 * complex approach.
3796 */
3797 if (ret == -ENOENT) {
3798 wait_event(cur_trans->writer_wait,
3799 atomic_read(&cur_trans->num_writers) == 1);
3800 ret = write_one_cache_group(trans, root, path,
3801 cache);
3802 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003803 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003804 btrfs_abort_transaction(trans, ret);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003805 }
Chris Masonc9dc4c62015-04-04 17:14:42 -07003806
3807 /* if its not on the io list, we need to put the block group */
3808 if (should_put)
3809 btrfs_put_block_group(cache);
Filipe Mananae44081e2015-12-18 03:02:48 +00003810 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003811 }
Filipe Mananae44081e2015-12-18 03:02:48 +00003812 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003813
Chris Mason1bbc6212015-04-06 12:46:08 -07003814 while (!list_empty(io)) {
3815 cache = list_first_entry(io, struct btrfs_block_group_cache,
Chris Masonc9dc4c62015-04-04 17:14:42 -07003816 io_list);
3817 list_del_init(&cache->io_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003818 btrfs_wait_cache_io(root, trans, cache,
3819 &cache->io_ctl, path, cache->key.objectid);
Josef Bacik0af3d002010-06-21 14:48:16 -04003820 btrfs_put_block_group(cache);
3821 }
3822
Chris Mason9078a3e2007-04-26 16:46:15 -04003823 btrfs_free_path(path);
Josef Bacikce93ec52014-11-17 15:45:48 -05003824 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003825}
3826
Yan Zhengd2fb3432008-12-11 16:30:39 -05003827int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
3828{
3829 struct btrfs_block_group_cache *block_group;
3830 int readonly = 0;
3831
3832 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
3833 if (!block_group || block_group->ro)
3834 readonly = 1;
3835 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04003836 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003837 return readonly;
3838}
3839
Filipe Mananaf78c4362016-05-09 13:15:41 +01003840bool btrfs_inc_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3841{
3842 struct btrfs_block_group_cache *bg;
3843 bool ret = true;
3844
3845 bg = btrfs_lookup_block_group(fs_info, bytenr);
3846 if (!bg)
3847 return false;
3848
3849 spin_lock(&bg->lock);
3850 if (bg->ro)
3851 ret = false;
3852 else
3853 atomic_inc(&bg->nocow_writers);
3854 spin_unlock(&bg->lock);
3855
3856 /* no put on block group, done by btrfs_dec_nocow_writers */
3857 if (!ret)
3858 btrfs_put_block_group(bg);
3859
3860 return ret;
3861
3862}
3863
3864void btrfs_dec_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3865{
3866 struct btrfs_block_group_cache *bg;
3867
3868 bg = btrfs_lookup_block_group(fs_info, bytenr);
3869 ASSERT(bg);
3870 if (atomic_dec_and_test(&bg->nocow_writers))
3871 wake_up_atomic_t(&bg->nocow_writers);
3872 /*
3873 * Once for our lookup and once for the lookup done by a previous call
3874 * to btrfs_inc_nocow_writers()
3875 */
3876 btrfs_put_block_group(bg);
3877 btrfs_put_block_group(bg);
3878}
3879
3880static int btrfs_wait_nocow_writers_atomic_t(atomic_t *a)
3881{
3882 schedule();
3883 return 0;
3884}
3885
3886void btrfs_wait_nocow_writers(struct btrfs_block_group_cache *bg)
3887{
3888 wait_on_atomic_t(&bg->nocow_writers,
3889 btrfs_wait_nocow_writers_atomic_t,
3890 TASK_UNINTERRUPTIBLE);
3891}
3892
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003893static const char *alloc_name(u64 flags)
3894{
3895 switch (flags) {
3896 case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA:
3897 return "mixed";
3898 case BTRFS_BLOCK_GROUP_METADATA:
3899 return "metadata";
3900 case BTRFS_BLOCK_GROUP_DATA:
3901 return "data";
3902 case BTRFS_BLOCK_GROUP_SYSTEM:
3903 return "system";
3904 default:
3905 WARN_ON(1);
3906 return "invalid-combination";
3907 };
3908}
3909
Chris Mason593060d2008-03-25 16:50:33 -04003910static int update_space_info(struct btrfs_fs_info *info, u64 flags,
3911 u64 total_bytes, u64 bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -04003912 u64 bytes_readonly,
Chris Mason593060d2008-03-25 16:50:33 -04003913 struct btrfs_space_info **space_info)
3914{
3915 struct btrfs_space_info *found;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003916 int i;
3917 int factor;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003918 int ret;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003919
3920 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
3921 BTRFS_BLOCK_GROUP_RAID10))
3922 factor = 2;
3923 else
3924 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04003925
3926 found = __find_space_info(info, flags);
3927 if (found) {
Josef Bacik25179202008-10-29 14:49:05 -04003928 spin_lock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003929 found->total_bytes += total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003930 found->disk_total += total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003931 found->bytes_used += bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003932 found->disk_used += bytes_used * factor;
Josef Bacike40edf22016-03-25 13:25:47 -04003933 found->bytes_readonly += bytes_readonly;
Filipe Manana2e6e5182015-05-12 00:28:11 +01003934 if (total_bytes > 0)
3935 found->full = 0;
Josef Bacik957780e2016-05-17 13:30:55 -04003936 space_info_add_new_bytes(info, found, total_bytes -
3937 bytes_used - bytes_readonly);
Josef Bacik25179202008-10-29 14:49:05 -04003938 spin_unlock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003939 *space_info = found;
3940 return 0;
3941 }
Yan Zhengc146afa2008-11-12 14:34:12 -05003942 found = kzalloc(sizeof(*found), GFP_NOFS);
Chris Mason593060d2008-03-25 16:50:33 -04003943 if (!found)
3944 return -ENOMEM;
3945
Tejun Heo908c7f12014-09-08 09:51:29 +09003946 ret = percpu_counter_init(&found->total_bytes_pinned, 0, GFP_KERNEL);
Josef Bacikb150a4f2013-06-19 15:00:04 -04003947 if (ret) {
3948 kfree(found);
3949 return ret;
3950 }
3951
Jeff Mahoneyc1895442014-05-27 12:59:57 -04003952 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
Yan, Zhengb742bb82010-05-16 10:46:24 -04003953 INIT_LIST_HEAD(&found->block_groups[i]);
Josef Bacik80eb2342008-10-29 14:49:05 -04003954 init_rwsem(&found->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003955 spin_lock_init(&found->lock);
Ilya Dryomov52ba6922012-01-16 22:04:47 +02003956 found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
Chris Mason593060d2008-03-25 16:50:33 -04003957 found->total_bytes = total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003958 found->disk_total = total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003959 found->bytes_used = bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003960 found->disk_used = bytes_used * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003961 found->bytes_pinned = 0;
Zheng Yane8569812008-09-26 10:05:48 -04003962 found->bytes_reserved = 0;
Josef Bacike40edf22016-03-25 13:25:47 -04003963 found->bytes_readonly = bytes_readonly;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003964 found->bytes_may_use = 0;
Filipe Manana6af3e3a2015-09-07 10:41:12 +01003965 found->full = 0;
Josef Bacik4f4db212015-09-29 11:40:47 -04003966 found->max_extent_size = 0;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003967 found->force_alloc = CHUNK_ALLOC_NO_FORCE;
Josef Bacik6d741192011-04-11 20:20:11 -04003968 found->chunk_alloc = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003969 found->flush = 0;
3970 init_waitqueue_head(&found->wait);
Josef Bacik633c0aa2014-10-31 09:49:34 -04003971 INIT_LIST_HEAD(&found->ro_bgs);
Josef Bacik957780e2016-05-17 13:30:55 -04003972 INIT_LIST_HEAD(&found->tickets);
3973 INIT_LIST_HEAD(&found->priority_tickets);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003974
3975 ret = kobject_init_and_add(&found->kobj, &space_info_ktype,
3976 info->space_info_kobj, "%s",
3977 alloc_name(found->flags));
3978 if (ret) {
3979 kfree(found);
3980 return ret;
3981 }
3982
Chris Mason593060d2008-03-25 16:50:33 -04003983 *space_info = found;
Chris Mason4184ea72009-03-10 12:39:20 -04003984 list_add_rcu(&found->list, &info->space_info);
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003985 if (flags & BTRFS_BLOCK_GROUP_DATA)
3986 info->data_sinfo = found;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003987
3988 return ret;
Chris Mason593060d2008-03-25 16:50:33 -04003989}
3990
Chris Mason8790d502008-04-03 16:29:03 -04003991static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3992{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003993 u64 extra_flags = chunk_to_extended(flags) &
3994 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003995
Miao Xiede98ced2013-01-29 10:13:12 +00003996 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003997 if (flags & BTRFS_BLOCK_GROUP_DATA)
3998 fs_info->avail_data_alloc_bits |= extra_flags;
3999 if (flags & BTRFS_BLOCK_GROUP_METADATA)
4000 fs_info->avail_metadata_alloc_bits |= extra_flags;
4001 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
4002 fs_info->avail_system_alloc_bits |= extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004003 write_sequnlock(&fs_info->profiles_lock);
Chris Mason8790d502008-04-03 16:29:03 -04004004}
Chris Mason593060d2008-03-25 16:50:33 -04004005
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004006/*
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004007 * returns target flags in extended format or 0 if restripe for this
4008 * chunk_type is not in progress
Ilya Dryomovc6664b42012-04-12 16:03:56 -04004009 *
4010 * should be called with either volume_mutex or balance_lock held
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004011 */
4012static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
4013{
4014 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4015 u64 target = 0;
4016
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004017 if (!bctl)
4018 return 0;
4019
4020 if (flags & BTRFS_BLOCK_GROUP_DATA &&
4021 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4022 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
4023 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
4024 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4025 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
4026 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
4027 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4028 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
4029 }
4030
4031 return target;
4032}
4033
4034/*
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004035 * @flags: available profiles in extended format (see ctree.h)
4036 *
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004037 * Returns reduced profile in chunk format. If profile changing is in
4038 * progress (either running or paused) picks the target profile (if it's
4039 * already available), otherwise falls back to plain reducing.
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004040 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00004041static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04004042{
Miao Xie95669972014-07-24 11:37:14 +08004043 u64 num_devices = root->fs_info->fs_devices->rw_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004044 u64 target;
Zhao Lei9c170b22015-09-15 21:08:08 +08004045 u64 raid_type;
4046 u64 allowed = 0;
Chris Masona061fc82008-05-07 11:43:44 -04004047
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004048 /*
4049 * see if restripe for this chunk_type is in progress, if so
4050 * try to reduce to the target profile
4051 */
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004052 spin_lock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004053 target = get_restripe_target(root->fs_info, flags);
4054 if (target) {
4055 /* pick target profile only if it's already available */
4056 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004057 spin_unlock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004058 return extended_to_chunk(target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004059 }
4060 }
4061 spin_unlock(&root->fs_info->balance_lock);
4062
David Woodhouse53b381b2013-01-29 18:40:14 -05004063 /* First, mask out the RAID levels which aren't possible */
Zhao Lei9c170b22015-09-15 21:08:08 +08004064 for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) {
4065 if (num_devices >= btrfs_raid_array[raid_type].devs_min)
4066 allowed |= btrfs_raid_group[raid_type];
4067 }
4068 allowed &= flags;
Chris Masona061fc82008-05-07 11:43:44 -04004069
Zhao Lei9c170b22015-09-15 21:08:08 +08004070 if (allowed & BTRFS_BLOCK_GROUP_RAID6)
4071 allowed = BTRFS_BLOCK_GROUP_RAID6;
4072 else if (allowed & BTRFS_BLOCK_GROUP_RAID5)
4073 allowed = BTRFS_BLOCK_GROUP_RAID5;
4074 else if (allowed & BTRFS_BLOCK_GROUP_RAID10)
4075 allowed = BTRFS_BLOCK_GROUP_RAID10;
4076 else if (allowed & BTRFS_BLOCK_GROUP_RAID1)
4077 allowed = BTRFS_BLOCK_GROUP_RAID1;
4078 else if (allowed & BTRFS_BLOCK_GROUP_RAID0)
4079 allowed = BTRFS_BLOCK_GROUP_RAID0;
Chris Masonec44a352008-04-28 15:29:52 -04004080
Zhao Lei9c170b22015-09-15 21:08:08 +08004081 flags &= ~BTRFS_BLOCK_GROUP_PROFILE_MASK;
Chris Masonec44a352008-04-28 15:29:52 -04004082
Zhao Lei9c170b22015-09-15 21:08:08 +08004083 return extended_to_chunk(flags | allowed);
Chris Masonec44a352008-04-28 15:29:52 -04004084}
4085
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004086static u64 get_alloc_profile(struct btrfs_root *root, u64 orig_flags)
Josef Bacik6a632092009-02-20 11:00:09 -05004087{
Miao Xiede98ced2013-01-29 10:13:12 +00004088 unsigned seq;
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004089 u64 flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004090
4091 do {
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004092 flags = orig_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004093 seq = read_seqbegin(&root->fs_info->profiles_lock);
4094
4095 if (flags & BTRFS_BLOCK_GROUP_DATA)
4096 flags |= root->fs_info->avail_data_alloc_bits;
4097 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
4098 flags |= root->fs_info->avail_system_alloc_bits;
4099 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
4100 flags |= root->fs_info->avail_metadata_alloc_bits;
4101 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02004102
Yan, Zhengb742bb82010-05-16 10:46:24 -04004103 return btrfs_reduce_alloc_profile(root, flags);
4104}
Josef Bacik6a632092009-02-20 11:00:09 -05004105
Miao Xie6d07bce2011-01-05 10:07:31 +00004106u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
Yan, Zhengb742bb82010-05-16 10:46:24 -04004107{
4108 u64 flags;
David Woodhouse53b381b2013-01-29 18:40:14 -05004109 u64 ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004110
Yan, Zhengb742bb82010-05-16 10:46:24 -04004111 if (data)
4112 flags = BTRFS_BLOCK_GROUP_DATA;
4113 else if (root == root->fs_info->chunk_root)
4114 flags = BTRFS_BLOCK_GROUP_SYSTEM;
4115 else
4116 flags = BTRFS_BLOCK_GROUP_METADATA;
4117
David Woodhouse53b381b2013-01-29 18:40:14 -05004118 ret = get_alloc_profile(root, flags);
4119 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004120}
4121
Qu Wenruo4ceff072015-09-08 17:22:42 +08004122int btrfs_alloc_data_chunk_ondemand(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05004123{
4124 struct btrfs_space_info *data_sinfo;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004125 struct btrfs_root *root = BTRFS_I(inode)->root;
Li Zefanb4d7c3c2012-07-09 20:21:07 -06004126 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacikab6e24102010-03-19 14:38:13 +00004127 u64 used;
Zhao Lei94b947b2015-02-14 13:23:45 +08004128 int ret = 0;
Zhao Leic99f1b02015-03-02 19:32:20 +08004129 int need_commit = 2;
4130 int have_pinned_space;
Josef Bacik6a632092009-02-20 11:00:09 -05004131
4132 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00004133 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05004134
Miao Xie9dced182013-10-25 17:33:36 +08004135 if (btrfs_is_free_space_inode(inode)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004136 need_commit = 0;
Miao Xie9dced182013-10-25 17:33:36 +08004137 ASSERT(current->journal_info);
Josef Bacik0af3d002010-06-21 14:48:16 -04004138 }
4139
Li Zefanb4d7c3c2012-07-09 20:21:07 -06004140 data_sinfo = fs_info->data_sinfo;
Chris Mason33b4d472009-09-22 14:45:50 -04004141 if (!data_sinfo)
4142 goto alloc;
4143
Josef Bacik6a632092009-02-20 11:00:09 -05004144again:
4145 /* make sure we have enough space to handle the data first */
4146 spin_lock(&data_sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004147 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
4148 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
4149 data_sinfo->bytes_may_use;
Josef Bacikab6e24102010-03-19 14:38:13 +00004150
4151 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004152 struct btrfs_trans_handle *trans;
4153
Josef Bacik6a632092009-02-20 11:00:09 -05004154 /*
4155 * if we don't have enough free bytes in this space then we need
4156 * to alloc a new chunk.
4157 */
Zhao Leib9fd47c2015-02-09 14:40:20 +08004158 if (!data_sinfo->full) {
Josef Bacik6a632092009-02-20 11:00:09 -05004159 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05004160
Chris Mason0e4f8f82011-04-15 16:05:44 -04004161 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05004162 spin_unlock(&data_sinfo->lock);
Chris Mason33b4d472009-09-22 14:45:50 -04004163alloc:
Josef Bacik6a632092009-02-20 11:00:09 -05004164 alloc_target = btrfs_get_alloc_profile(root, 1);
Miao Xie9dced182013-10-25 17:33:36 +08004165 /*
4166 * It is ugly that we don't call nolock join
4167 * transaction for the free space inode case here.
4168 * But it is safe because we only do the data space
4169 * reservation for the free space cache in the
4170 * transaction context, the common join transaction
4171 * just increase the counter of the current transaction
4172 * handler, doesn't try to acquire the trans_lock of
4173 * the fs.
4174 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004175 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004176 if (IS_ERR(trans))
4177 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05004178
4179 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0e4f8f82011-04-15 16:05:44 -04004180 alloc_target,
4181 CHUNK_ALLOC_NO_FORCE);
Josef Bacik6a632092009-02-20 11:00:09 -05004182 btrfs_end_transaction(trans, root);
Miao Xied52a5b52011-01-05 10:07:18 +00004183 if (ret < 0) {
4184 if (ret != -ENOSPC)
4185 return ret;
Zhao Leic99f1b02015-03-02 19:32:20 +08004186 else {
4187 have_pinned_space = 1;
Miao Xied52a5b52011-01-05 10:07:18 +00004188 goto commit_trans;
Zhao Leic99f1b02015-03-02 19:32:20 +08004189 }
Miao Xied52a5b52011-01-05 10:07:18 +00004190 }
Chris Mason33b4d472009-09-22 14:45:50 -04004191
Li Zefanb4d7c3c2012-07-09 20:21:07 -06004192 if (!data_sinfo)
4193 data_sinfo = fs_info->data_sinfo;
4194
Josef Bacik6a632092009-02-20 11:00:09 -05004195 goto again;
4196 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004197
4198 /*
Josef Bacikb150a4f2013-06-19 15:00:04 -04004199 * If we don't have enough pinned space to deal with this
Zhao Lei94b947b2015-02-14 13:23:45 +08004200 * allocation, and no removed chunk in current transaction,
4201 * don't bother committing the transaction.
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004202 */
Zhao Leic99f1b02015-03-02 19:32:20 +08004203 have_pinned_space = percpu_counter_compare(
4204 &data_sinfo->total_bytes_pinned,
4205 used + bytes - data_sinfo->total_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05004206 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004207
4208 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00004209commit_trans:
Zhao Leic99f1b02015-03-02 19:32:20 +08004210 if (need_commit &&
Josef Bacika4abeea2011-04-11 17:25:13 -04004211 !atomic_read(&root->fs_info->open_ioctl_trans)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004212 need_commit--;
Josef Bacikb150a4f2013-06-19 15:00:04 -04004213
Zhao Leie1746e82015-12-01 18:39:40 +08004214 if (need_commit > 0) {
4215 btrfs_start_delalloc_roots(fs_info, 0, -1);
Filipe Manana578def72016-04-26 15:36:38 +01004216 btrfs_wait_ordered_roots(fs_info, -1, 0, (u64)-1);
Zhao Leie1746e82015-12-01 18:39:40 +08004217 }
Zhao Lei9a4e7272015-04-09 12:34:43 +08004218
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004219 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004220 if (IS_ERR(trans))
4221 return PTR_ERR(trans);
Zhao Leic99f1b02015-03-02 19:32:20 +08004222 if (have_pinned_space >= 0 ||
Josef Bacik3204d332015-09-24 10:46:10 -04004223 test_bit(BTRFS_TRANS_HAVE_FREE_BGS,
4224 &trans->transaction->flags) ||
Zhao Leic99f1b02015-03-02 19:32:20 +08004225 need_commit > 0) {
Zhao Lei94b947b2015-02-14 13:23:45 +08004226 ret = btrfs_commit_transaction(trans, root);
4227 if (ret)
4228 return ret;
Zhao Leid7c15172015-02-26 10:49:20 +08004229 /*
Filipe Mananac2d6cb12016-01-15 11:05:12 +00004230 * The cleaner kthread might still be doing iput
4231 * operations. Wait for it to finish so that
4232 * more space is released.
Zhao Leid7c15172015-02-26 10:49:20 +08004233 */
Filipe Mananac2d6cb12016-01-15 11:05:12 +00004234 mutex_lock(&root->fs_info->cleaner_delayed_iput_mutex);
4235 mutex_unlock(&root->fs_info->cleaner_delayed_iput_mutex);
Zhao Lei94b947b2015-02-14 13:23:45 +08004236 goto again;
4237 } else {
4238 btrfs_end_transaction(trans, root);
4239 }
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004240 }
4241
Jeff Mahoneycab45e22013-10-16 16:27:01 -04004242 trace_btrfs_space_reservation(root->fs_info,
4243 "space_info:enospc",
4244 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004245 return -ENOSPC;
4246 }
4247 data_sinfo->bytes_may_use += bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004248 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004249 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004250 spin_unlock(&data_sinfo->lock);
4251
Dongsheng Yang237c0e92014-12-29 06:23:05 -05004252 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004253}
4254
4255/*
Qu Wenruo4ceff072015-09-08 17:22:42 +08004256 * New check_data_free_space() with ability for precious data reservation
4257 * Will replace old btrfs_check_data_free_space(), but for patch split,
4258 * add a new function first and then replace it.
4259 */
Qu Wenruo7cf5b972015-09-08 17:25:55 +08004260int btrfs_check_data_free_space(struct inode *inode, u64 start, u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004261{
4262 struct btrfs_root *root = BTRFS_I(inode)->root;
4263 int ret;
4264
4265 /* align the range */
4266 len = round_up(start + len, root->sectorsize) -
4267 round_down(start, root->sectorsize);
4268 start = round_down(start, root->sectorsize);
4269
4270 ret = btrfs_alloc_data_chunk_ondemand(inode, len);
4271 if (ret < 0)
4272 return ret;
4273
Josef Bacik1e5ec2e2016-09-15 14:57:48 -04004274 /* Use new btrfs_qgroup_reserve_data to reserve precious data space. */
Qu Wenruo4ceff072015-09-08 17:22:42 +08004275 ret = btrfs_qgroup_reserve_data(inode, start, len);
Josef Bacik1e5ec2e2016-09-15 14:57:48 -04004276 if (ret)
4277 btrfs_free_reserved_data_space_noquota(inode, start, len);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004278 return ret;
4279}
4280
4281/*
Qu Wenruo4ceff072015-09-08 17:22:42 +08004282 * Called if we need to clear a data reservation for this inode
4283 * Normally in a error case.
4284 *
Qu Wenruo51773be2015-10-08 18:19:37 +08004285 * This one will *NOT* use accurate qgroup reserved space API, just for case
4286 * which we can't sleep and is sure it won't affect qgroup reserved space.
4287 * Like clear_bit_hook().
Qu Wenruo4ceff072015-09-08 17:22:42 +08004288 */
Qu Wenruo51773be2015-10-08 18:19:37 +08004289void btrfs_free_reserved_data_space_noquota(struct inode *inode, u64 start,
4290 u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004291{
4292 struct btrfs_root *root = BTRFS_I(inode)->root;
4293 struct btrfs_space_info *data_sinfo;
4294
4295 /* Make sure the range is aligned to sectorsize */
4296 len = round_up(start + len, root->sectorsize) -
4297 round_down(start, root->sectorsize);
4298 start = round_down(start, root->sectorsize);
4299
Qu Wenruo4ceff072015-09-08 17:22:42 +08004300 data_sinfo = root->fs_info->data_sinfo;
4301 spin_lock(&data_sinfo->lock);
4302 if (WARN_ON(data_sinfo->bytes_may_use < len))
4303 data_sinfo->bytes_may_use = 0;
4304 else
4305 data_sinfo->bytes_may_use -= len;
4306 trace_btrfs_space_reservation(root->fs_info, "space_info",
4307 data_sinfo->flags, len, 0);
4308 spin_unlock(&data_sinfo->lock);
4309}
4310
Qu Wenruo51773be2015-10-08 18:19:37 +08004311/*
4312 * Called if we need to clear a data reservation for this inode
4313 * Normally in a error case.
4314 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04004315 * This one will handle the per-inode data rsv map for accurate reserved
Qu Wenruo51773be2015-10-08 18:19:37 +08004316 * space framework.
4317 */
4318void btrfs_free_reserved_data_space(struct inode *inode, u64 start, u64 len)
4319{
4320 btrfs_free_reserved_data_space_noquota(inode, start, len);
4321 btrfs_qgroup_free_data(inode, start, len);
4322}
4323
Josef Bacik97e728d2009-04-21 17:40:57 -04004324static void force_metadata_allocation(struct btrfs_fs_info *info)
4325{
4326 struct list_head *head = &info->space_info;
4327 struct btrfs_space_info *found;
4328
4329 rcu_read_lock();
4330 list_for_each_entry_rcu(found, head, list) {
4331 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004332 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04004333 }
4334 rcu_read_unlock();
4335}
4336
Miao Xie3c76cd82013-04-25 10:12:38 +00004337static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
4338{
4339 return (global->size << 1);
4340}
4341
Chris Masone5bc2452010-10-26 13:37:56 -04004342static int should_alloc_chunk(struct btrfs_root *root,
Josef Bacik698d0082012-09-12 14:08:47 -04004343 struct btrfs_space_info *sinfo, int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04004344{
Josef Bacikfb25e912011-07-26 17:00:46 -04004345 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zheng424499d2010-05-16 10:46:25 -04004346 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
Chris Mason0e4f8f82011-04-15 16:05:44 -04004347 u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved;
Chris Masone5bc2452010-10-26 13:37:56 -04004348 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04004349
Chris Mason0e4f8f82011-04-15 16:05:44 -04004350 if (force == CHUNK_ALLOC_FORCE)
4351 return 1;
4352
4353 /*
Josef Bacikfb25e912011-07-26 17:00:46 -04004354 * We need to take into account the global rsv because for all intents
4355 * and purposes it's used space. Don't worry about locking the
4356 * global_rsv, it doesn't change except when the transaction commits.
4357 */
Josef Bacik54338b52012-08-14 16:20:52 -04004358 if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA)
Miao Xie3c76cd82013-04-25 10:12:38 +00004359 num_allocated += calc_global_rsv_need_space(global_rsv);
Josef Bacikfb25e912011-07-26 17:00:46 -04004360
4361 /*
Chris Mason0e4f8f82011-04-15 16:05:44 -04004362 * in limited mode, we want to have some free space up to
4363 * about 1% of the FS size.
4364 */
4365 if (force == CHUNK_ALLOC_LIMITED) {
David Sterba6c417612011-04-13 15:41:04 +02004366 thresh = btrfs_super_total_bytes(root->fs_info->super_copy);
Byongho Leeee221842015-12-15 01:42:10 +09004367 thresh = max_t(u64, SZ_64M, div_factor_fine(thresh, 1));
Chris Mason0e4f8f82011-04-15 16:05:44 -04004368
4369 if (num_bytes - num_allocated < thresh)
4370 return 1;
4371 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004372
Byongho Leeee221842015-12-15 01:42:10 +09004373 if (num_allocated + SZ_2M < div_factor(num_bytes, 8))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04004374 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04004375 return 1;
4376}
4377
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004378static u64 get_profile_num_devs(struct btrfs_root *root, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004379{
4380 u64 num_dev;
4381
David Woodhouse53b381b2013-01-29 18:40:14 -05004382 if (type & (BTRFS_BLOCK_GROUP_RAID10 |
4383 BTRFS_BLOCK_GROUP_RAID0 |
4384 BTRFS_BLOCK_GROUP_RAID5 |
4385 BTRFS_BLOCK_GROUP_RAID6))
Liu Bo15d1ff82012-03-29 09:57:44 -04004386 num_dev = root->fs_info->fs_devices->rw_devices;
4387 else if (type & BTRFS_BLOCK_GROUP_RAID1)
4388 num_dev = 2;
4389 else
4390 num_dev = 1; /* DUP or single */
4391
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004392 return num_dev;
Liu Bo15d1ff82012-03-29 09:57:44 -04004393}
4394
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004395/*
4396 * If @is_allocation is true, reserve space in the system space info necessary
4397 * for allocating a chunk, otherwise if it's false, reserve space necessary for
4398 * removing a chunk.
4399 */
4400void check_system_chunk(struct btrfs_trans_handle *trans,
4401 struct btrfs_root *root,
Filipe Manana4617ea32015-06-09 17:48:21 +01004402 u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004403{
4404 struct btrfs_space_info *info;
4405 u64 left;
4406 u64 thresh;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004407 int ret = 0;
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004408 u64 num_devs;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004409
4410 /*
4411 * Needed because we can end up allocating a system chunk and for an
4412 * atomic and race free space reservation in the chunk block reserve.
4413 */
4414 ASSERT(mutex_is_locked(&root->fs_info->chunk_mutex));
Liu Bo15d1ff82012-03-29 09:57:44 -04004415
4416 info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4417 spin_lock(&info->lock);
4418 left = info->total_bytes - info->bytes_used - info->bytes_pinned -
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004419 info->bytes_reserved - info->bytes_readonly -
4420 info->bytes_may_use;
Liu Bo15d1ff82012-03-29 09:57:44 -04004421 spin_unlock(&info->lock);
4422
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004423 num_devs = get_profile_num_devs(root, type);
4424
4425 /* num_devs device items to update and 1 chunk item to add or remove */
Filipe Manana4617ea32015-06-09 17:48:21 +01004426 thresh = btrfs_calc_trunc_metadata_size(root, num_devs) +
4427 btrfs_calc_trans_metadata_size(root, 1);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004428
Jeff Mahoney3cdde222016-06-09 21:38:35 -04004429 if (left < thresh && btrfs_test_opt(root->fs_info, ENOSPC_DEBUG)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00004430 btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu",
4431 left, thresh, type);
Liu Bo15d1ff82012-03-29 09:57:44 -04004432 dump_space_info(info, 0, 0);
4433 }
4434
4435 if (left < thresh) {
4436 u64 flags;
4437
4438 flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0);
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004439 /*
4440 * Ignore failure to create system chunk. We might end up not
4441 * needing it, as we might not need to COW all nodes/leafs from
4442 * the paths we visit in the chunk tree (they were already COWed
4443 * or created in the current transaction for example).
4444 */
4445 ret = btrfs_alloc_chunk(trans, root, flags);
4446 }
4447
4448 if (!ret) {
4449 ret = btrfs_block_rsv_add(root->fs_info->chunk_root,
4450 &root->fs_info->chunk_block_rsv,
4451 thresh, BTRFS_RESERVE_NO_FLUSH);
4452 if (!ret)
4453 trans->chunk_bytes_reserved += thresh;
Liu Bo15d1ff82012-03-29 09:57:44 -04004454 }
4455}
4456
Liu Bo28b737f2016-07-29 11:09:50 -07004457/*
4458 * If force is CHUNK_ALLOC_FORCE:
4459 * - return 1 if it successfully allocates a chunk,
4460 * - return errors including -ENOSPC otherwise.
4461 * If force is NOT CHUNK_ALLOC_FORCE:
4462 * - return 0 if it doesn't need to allocate a new chunk,
4463 * - return 1 if it successfully allocates a chunk,
4464 * - return errors including -ENOSPC otherwise.
4465 */
Chris Mason6324fbf2008-03-24 15:01:59 -04004466static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Josef Bacik698d0082012-09-12 14:08:47 -04004467 struct btrfs_root *extent_root, u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04004468{
4469 struct btrfs_space_info *space_info;
Josef Bacik97e728d2009-04-21 17:40:57 -04004470 struct btrfs_fs_info *fs_info = extent_root->fs_info;
Josef Bacik6d741192011-04-11 20:20:11 -04004471 int wait_for_alloc = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05004472 int ret = 0;
4473
Josef Bacikc6b305a2012-12-18 09:16:16 -05004474 /* Don't re-enter if we're already allocating a chunk */
4475 if (trans->allocating_chunk)
4476 return -ENOSPC;
4477
Chris Mason6324fbf2008-03-24 15:01:59 -04004478 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04004479 if (!space_info) {
4480 ret = update_space_info(extent_root->fs_info, flags,
Josef Bacike40edf22016-03-25 13:25:47 -04004481 0, 0, 0, &space_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004482 BUG_ON(ret); /* -ENOMEM */
Chris Mason593060d2008-03-25 16:50:33 -04004483 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004484 BUG_ON(!space_info); /* Logic error */
Chris Mason6324fbf2008-03-24 15:01:59 -04004485
Josef Bacik6d741192011-04-11 20:20:11 -04004486again:
Josef Bacik25179202008-10-29 14:49:05 -04004487 spin_lock(&space_info->lock);
Miao Xie9e622d62012-01-26 15:01:12 -05004488 if (force < space_info->force_alloc)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004489 force = space_info->force_alloc;
Josef Bacik25179202008-10-29 14:49:05 -04004490 if (space_info->full) {
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01004491 if (should_alloc_chunk(extent_root, space_info, force))
4492 ret = -ENOSPC;
4493 else
4494 ret = 0;
Josef Bacik25179202008-10-29 14:49:05 -04004495 spin_unlock(&space_info->lock);
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01004496 return ret;
Josef Bacik25179202008-10-29 14:49:05 -04004497 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004498
Josef Bacik698d0082012-09-12 14:08:47 -04004499 if (!should_alloc_chunk(extent_root, space_info, force)) {
Josef Bacik25179202008-10-29 14:49:05 -04004500 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04004501 return 0;
4502 } else if (space_info->chunk_alloc) {
4503 wait_for_alloc = 1;
4504 } else {
4505 space_info->chunk_alloc = 1;
Josef Bacik25179202008-10-29 14:49:05 -04004506 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004507
Josef Bacik25179202008-10-29 14:49:05 -04004508 spin_unlock(&space_info->lock);
4509
Josef Bacik6d741192011-04-11 20:20:11 -04004510 mutex_lock(&fs_info->chunk_mutex);
4511
4512 /*
4513 * The chunk_mutex is held throughout the entirety of a chunk
4514 * allocation, so once we've acquired the chunk_mutex we know that the
4515 * other guy is done and we need to recheck and see if we should
4516 * allocate.
4517 */
4518 if (wait_for_alloc) {
4519 mutex_unlock(&fs_info->chunk_mutex);
4520 wait_for_alloc = 0;
4521 goto again;
4522 }
4523
Josef Bacikc6b305a2012-12-18 09:16:16 -05004524 trans->allocating_chunk = true;
4525
Josef Bacik97e728d2009-04-21 17:40:57 -04004526 /*
Josef Bacik67377732010-09-16 16:19:09 -04004527 * If we have mixed data/metadata chunks we want to make sure we keep
4528 * allocating mixed chunks instead of individual chunks.
4529 */
4530 if (btrfs_mixed_space_info(space_info))
4531 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
4532
4533 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04004534 * if we're doing a data chunk, go ahead and make sure that
4535 * we keep a reasonable number of metadata chunks allocated in the
4536 * FS as well.
4537 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04004538 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04004539 fs_info->data_chunk_allocations++;
4540 if (!(fs_info->data_chunk_allocations %
4541 fs_info->metadata_ratio))
4542 force_metadata_allocation(fs_info);
4543 }
4544
Liu Bo15d1ff82012-03-29 09:57:44 -04004545 /*
4546 * Check if we have enough space in SYSTEM chunk because we may need
4547 * to update devices.
4548 */
Filipe Manana4617ea32015-06-09 17:48:21 +01004549 check_system_chunk(trans, extent_root, flags);
Liu Bo15d1ff82012-03-29 09:57:44 -04004550
Yan Zheng2b820322008-11-17 21:11:30 -05004551 ret = btrfs_alloc_chunk(trans, extent_root, flags);
Josef Bacikc6b305a2012-12-18 09:16:16 -05004552 trans->allocating_chunk = false;
Mark Fasheh92b8e8972011-07-12 10:57:59 -07004553
Josef Bacik9ed74f22009-09-11 16:12:44 -04004554 spin_lock(&space_info->lock);
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004555 if (ret < 0 && ret != -ENOSPC)
4556 goto out;
Chris Masond3977122009-01-05 21:25:51 -05004557 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04004558 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04004559 else
4560 ret = 1;
Josef Bacik6d741192011-04-11 20:20:11 -04004561
Chris Mason0e4f8f82011-04-15 16:05:44 -04004562 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004563out:
Josef Bacik6d741192011-04-11 20:20:11 -04004564 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004565 spin_unlock(&space_info->lock);
Dan Carpentera25c75d2012-04-18 09:59:29 +03004566 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana00d80e32015-07-20 14:56:20 +01004567 /*
4568 * When we allocate a new chunk we reserve space in the chunk block
4569 * reserve to make sure we can COW nodes/leafs in the chunk tree or
4570 * add new nodes/leafs to it if we end up needing to do it when
4571 * inserting the chunk item and updating device items as part of the
4572 * second phase of chunk allocation, performed by
4573 * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a
4574 * large number of new block groups to create in our transaction
4575 * handle's new_bgs list to avoid exhausting the chunk block reserve
4576 * in extreme cases - like having a single transaction create many new
4577 * block groups when starting to write out the free space caches of all
4578 * the block groups that were made dirty during the lifetime of the
4579 * transaction.
4580 */
Filipe Mananad9a05402015-10-03 13:13:13 +01004581 if (trans->can_flush_pending_bgs &&
Byongho Leeee221842015-12-15 01:42:10 +09004582 trans->chunk_bytes_reserved >= (u64)SZ_2M) {
Jeff Mahoney64b63582016-06-20 17:23:41 -04004583 btrfs_create_pending_block_groups(trans, extent_root);
Filipe Manana00d80e32015-07-20 14:56:20 +01004584 btrfs_trans_release_chunk_metadata(trans);
4585 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04004586 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04004587}
4588
Josef Bacika80c8dc2012-09-06 16:59:33 -04004589static int can_overcommit(struct btrfs_root *root,
4590 struct btrfs_space_info *space_info, u64 bytes,
Miao Xie08e007d2012-10-16 11:33:38 +00004591 enum btrfs_reserve_flush_enum flush)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004592{
Josef Bacik957780e2016-05-17 13:30:55 -04004593 struct btrfs_block_rsv *global_rsv;
4594 u64 profile;
Miao Xie3c76cd82013-04-25 10:12:38 +00004595 u64 space_size;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004596 u64 avail;
4597 u64 used;
4598
Josef Bacik957780e2016-05-17 13:30:55 -04004599 /* Don't overcommit when in mixed mode. */
4600 if (space_info->flags & BTRFS_BLOCK_GROUP_DATA)
4601 return 0;
4602
4603 BUG_ON(root->fs_info == NULL);
4604 global_rsv = &root->fs_info->global_block_rsv;
4605 profile = btrfs_get_alloc_profile(root, 0);
Josef Bacika80c8dc2012-09-06 16:59:33 -04004606 used = space_info->bytes_used + space_info->bytes_reserved +
Josef Bacik96f1bb52013-01-30 17:02:51 -05004607 space_info->bytes_pinned + space_info->bytes_readonly;
4608
Josef Bacik96f1bb52013-01-30 17:02:51 -05004609 /*
4610 * We only want to allow over committing if we have lots of actual space
4611 * free, but if we don't have enough space to handle the global reserve
4612 * space then we could end up having a real enospc problem when trying
4613 * to allocate a chunk or some other such important allocation.
4614 */
Miao Xie3c76cd82013-04-25 10:12:38 +00004615 spin_lock(&global_rsv->lock);
4616 space_size = calc_global_rsv_need_space(global_rsv);
4617 spin_unlock(&global_rsv->lock);
4618 if (used + space_size >= space_info->total_bytes)
Josef Bacik96f1bb52013-01-30 17:02:51 -05004619 return 0;
4620
4621 used += space_info->bytes_may_use;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004622
4623 spin_lock(&root->fs_info->free_chunk_lock);
4624 avail = root->fs_info->free_chunk_space;
4625 spin_unlock(&root->fs_info->free_chunk_lock);
4626
4627 /*
4628 * If we have dup, raid1 or raid10 then only half of the free
David Woodhouse53b381b2013-01-29 18:40:14 -05004629 * space is actually useable. For raid56, the space info used
4630 * doesn't include the parity drive, so we don't have to
4631 * change the math
Josef Bacika80c8dc2012-09-06 16:59:33 -04004632 */
4633 if (profile & (BTRFS_BLOCK_GROUP_DUP |
4634 BTRFS_BLOCK_GROUP_RAID1 |
4635 BTRFS_BLOCK_GROUP_RAID10))
4636 avail >>= 1;
4637
4638 /*
Miao Xie561c2942012-10-16 11:32:18 +00004639 * If we aren't flushing all things, let us overcommit up to
4640 * 1/2th of the space. If we can flush, don't let us overcommit
4641 * too much, let it overcommit up to 1/8 of the space.
Josef Bacika80c8dc2012-09-06 16:59:33 -04004642 */
Miao Xie08e007d2012-10-16 11:33:38 +00004643 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacik14575ae2013-09-17 10:48:00 -04004644 avail >>= 3;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004645 else
Josef Bacik14575ae2013-09-17 10:48:00 -04004646 avail >>= 1;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004647
Josef Bacik14575ae2013-09-17 10:48:00 -04004648 if (used + bytes < space_info->total_bytes + avail)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004649 return 1;
4650 return 0;
4651}
4652
Eric Sandeen48a3b632013-04-25 20:41:01 +00004653static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root,
Miao Xie6c255e62014-03-06 13:55:01 +08004654 unsigned long nr_pages, int nr_items)
Miao Xieda633a42012-12-20 11:19:09 +00004655{
4656 struct super_block *sb = root->fs_info->sb;
Miao Xieda633a42012-12-20 11:19:09 +00004657
Josef Bacik925a6ef2013-06-20 12:31:27 -04004658 if (down_read_trylock(&sb->s_umount)) {
4659 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
4660 up_read(&sb->s_umount);
4661 } else {
Miao Xieda633a42012-12-20 11:19:09 +00004662 /*
4663 * We needn't worry the filesystem going from r/w to r/o though
4664 * we don't acquire ->s_umount mutex, because the filesystem
4665 * should guarantee the delalloc inodes list be empty after
4666 * the filesystem is readonly(all dirty pages are written to
4667 * the disk).
4668 */
Miao Xie6c255e62014-03-06 13:55:01 +08004669 btrfs_start_delalloc_roots(root->fs_info, 0, nr_items);
Josef Bacik98ad69c2013-04-04 11:55:49 -04004670 if (!current->journal_info)
Filipe Manana578def72016-04-26 15:36:38 +01004671 btrfs_wait_ordered_roots(root->fs_info, nr_items,
4672 0, (u64)-1);
Miao Xieda633a42012-12-20 11:19:09 +00004673 }
4674}
4675
Miao Xie18cd8ea2013-11-04 23:13:22 +08004676static inline int calc_reclaim_items_nr(struct btrfs_root *root, u64 to_reclaim)
4677{
4678 u64 bytes;
4679 int nr;
4680
4681 bytes = btrfs_calc_trans_metadata_size(root, 1);
4682 nr = (int)div64_u64(to_reclaim, bytes);
4683 if (!nr)
4684 nr = 1;
4685 return nr;
4686}
4687
Byongho Leeee221842015-12-15 01:42:10 +09004688#define EXTENT_SIZE_PER_ITEM SZ_256K
Miao Xiec61a16a2013-11-04 23:13:23 +08004689
Yan, Zheng5da9d012010-05-16 10:46:25 -04004690/*
4691 * shrink metadata reservation for delalloc
4692 */
Josef Bacikf4c738c2012-07-02 17:10:51 -04004693static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig,
4694 bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04004695{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004696 struct btrfs_block_rsv *block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004697 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04004698 struct btrfs_trans_handle *trans;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004699 u64 delalloc_bytes;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004700 u64 max_reclaim;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004701 long time_left;
Miao Xied3ee29e2013-11-04 23:13:20 +08004702 unsigned long nr_pages;
4703 int loops;
Miao Xieb0244192013-11-04 23:13:25 +08004704 int items;
Miao Xie08e007d2012-10-16 11:33:38 +00004705 enum btrfs_reserve_flush_enum flush;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004706
Miao Xiec61a16a2013-11-04 23:13:23 +08004707 /* Calc the number of the pages we need flush for space reservation */
Miao Xieb0244192013-11-04 23:13:25 +08004708 items = calc_reclaim_items_nr(root, to_reclaim);
Adam Borowski8eb0dfd2016-05-08 15:08:00 +02004709 to_reclaim = (u64)items * EXTENT_SIZE_PER_ITEM;
Miao Xiec61a16a2013-11-04 23:13:23 +08004710
Josef Bacik663350a2011-11-03 22:54:25 -04004711 trans = (struct btrfs_trans_handle *)current->journal_info;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004712 block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004713 space_info = block_rsv->space_info;
Chris Masonbf9022e2010-10-26 13:40:45 -04004714
Miao Xie963d6782013-01-29 10:10:51 +00004715 delalloc_bytes = percpu_counter_sum_positive(
4716 &root->fs_info->delalloc_bytes);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004717 if (delalloc_bytes == 0) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004718 if (trans)
Josef Bacikf4c738c2012-07-02 17:10:51 -04004719 return;
Miao Xie38c135a2013-11-04 23:13:21 +08004720 if (wait_ordered)
Filipe Manana578def72016-04-26 15:36:38 +01004721 btrfs_wait_ordered_roots(root->fs_info, items,
4722 0, (u64)-1);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004723 return;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004724 }
4725
Miao Xied3ee29e2013-11-04 23:13:20 +08004726 loops = 0;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004727 while (delalloc_bytes && loops < 3) {
4728 max_reclaim = min(delalloc_bytes, to_reclaim);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004729 nr_pages = max_reclaim >> PAGE_SHIFT;
Miao Xie6c255e62014-03-06 13:55:01 +08004730 btrfs_writeback_inodes_sb_nr(root, nr_pages, items);
Josef Bacikdea31f52012-09-06 16:47:00 -04004731 /*
4732 * We need to wait for the async pages to actually start before
4733 * we do anything.
4734 */
Miao Xie9f3a0742013-11-04 23:13:24 +08004735 max_reclaim = atomic_read(&root->fs_info->async_delalloc_pages);
4736 if (!max_reclaim)
4737 goto skip_async;
Josef Bacikdea31f52012-09-06 16:47:00 -04004738
Miao Xie9f3a0742013-11-04 23:13:24 +08004739 if (max_reclaim <= nr_pages)
4740 max_reclaim = 0;
4741 else
4742 max_reclaim -= nr_pages;
4743
4744 wait_event(root->fs_info->async_submit_wait,
4745 atomic_read(&root->fs_info->async_delalloc_pages) <=
4746 (int)max_reclaim);
4747skip_async:
Miao Xie08e007d2012-10-16 11:33:38 +00004748 if (!trans)
4749 flush = BTRFS_RESERVE_FLUSH_ALL;
4750 else
4751 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacik0019f102010-10-15 15:18:40 -04004752 spin_lock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00004753 if (can_overcommit(root, space_info, orig, flush)) {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004754 spin_unlock(&space_info->lock);
4755 break;
4756 }
Josef Bacik957780e2016-05-17 13:30:55 -04004757 if (list_empty(&space_info->tickets) &&
4758 list_empty(&space_info->priority_tickets)) {
4759 spin_unlock(&space_info->lock);
4760 break;
4761 }
Josef Bacik0019f102010-10-15 15:18:40 -04004762 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004763
Chris Mason36e39c42011-03-12 07:08:42 -05004764 loops++;
Josef Bacikf104d042011-10-14 13:56:58 -04004765 if (wait_ordered && !trans) {
Filipe Manana578def72016-04-26 15:36:38 +01004766 btrfs_wait_ordered_roots(root->fs_info, items,
4767 0, (u64)-1);
Josef Bacikf104d042011-10-14 13:56:58 -04004768 } else {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004769 time_left = schedule_timeout_killable(1);
Josef Bacikf104d042011-10-14 13:56:58 -04004770 if (time_left)
4771 break;
4772 }
Miao Xie963d6782013-01-29 10:10:51 +00004773 delalloc_bytes = percpu_counter_sum_positive(
4774 &root->fs_info->delalloc_bytes);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004775 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04004776}
4777
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004778/**
Josef Bacik663350a2011-11-03 22:54:25 -04004779 * maybe_commit_transaction - possibly commit the transaction if its ok to
4780 * @root - the root we're allocating for
4781 * @bytes - the number of bytes we want to reserve
4782 * @force - force the commit
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004783 *
Josef Bacik663350a2011-11-03 22:54:25 -04004784 * This will check to make sure that committing the transaction will actually
4785 * get us somewhere and then commit the transaction if it does. Otherwise it
4786 * will return -ENOSPC.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004787 */
Josef Bacik663350a2011-11-03 22:54:25 -04004788static int may_commit_transaction(struct btrfs_root *root,
4789 struct btrfs_space_info *space_info,
4790 u64 bytes, int force)
4791{
4792 struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv;
4793 struct btrfs_trans_handle *trans;
4794
4795 trans = (struct btrfs_trans_handle *)current->journal_info;
4796 if (trans)
4797 return -EAGAIN;
4798
4799 if (force)
4800 goto commit;
4801
4802 /* See if there is enough pinned space to make this reservation */
Josef Bacikb150a4f2013-06-19 15:00:04 -04004803 if (percpu_counter_compare(&space_info->total_bytes_pinned,
Miao Xie0424c542014-03-06 13:54:59 +08004804 bytes) >= 0)
Josef Bacik663350a2011-11-03 22:54:25 -04004805 goto commit;
Josef Bacik663350a2011-11-03 22:54:25 -04004806
4807 /*
4808 * See if there is some space in the delayed insertion reservation for
4809 * this reservation.
4810 */
4811 if (space_info != delayed_rsv->space_info)
4812 return -ENOSPC;
4813
4814 spin_lock(&delayed_rsv->lock);
Josef Bacikb150a4f2013-06-19 15:00:04 -04004815 if (percpu_counter_compare(&space_info->total_bytes_pinned,
4816 bytes - delayed_rsv->size) >= 0) {
Josef Bacik663350a2011-11-03 22:54:25 -04004817 spin_unlock(&delayed_rsv->lock);
4818 return -ENOSPC;
4819 }
4820 spin_unlock(&delayed_rsv->lock);
4821
4822commit:
4823 trans = btrfs_join_transaction(root);
4824 if (IS_ERR(trans))
4825 return -ENOSPC;
4826
4827 return btrfs_commit_transaction(trans, root);
4828}
4829
Josef Bacik957780e2016-05-17 13:30:55 -04004830struct reserve_ticket {
4831 u64 bytes;
4832 int error;
4833 struct list_head list;
4834 wait_queue_head_t wait;
Josef Bacik96c3f432012-06-21 14:05:49 -04004835};
4836
4837static int flush_space(struct btrfs_root *root,
4838 struct btrfs_space_info *space_info, u64 num_bytes,
4839 u64 orig_bytes, int state)
4840{
4841 struct btrfs_trans_handle *trans;
4842 int nr;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004843 int ret = 0;
Josef Bacik96c3f432012-06-21 14:05:49 -04004844
4845 switch (state) {
Josef Bacik96c3f432012-06-21 14:05:49 -04004846 case FLUSH_DELAYED_ITEMS_NR:
4847 case FLUSH_DELAYED_ITEMS:
Miao Xie18cd8ea2013-11-04 23:13:22 +08004848 if (state == FLUSH_DELAYED_ITEMS_NR)
4849 nr = calc_reclaim_items_nr(root, num_bytes) * 2;
4850 else
Josef Bacik96c3f432012-06-21 14:05:49 -04004851 nr = -1;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004852
Josef Bacik96c3f432012-06-21 14:05:49 -04004853 trans = btrfs_join_transaction(root);
4854 if (IS_ERR(trans)) {
4855 ret = PTR_ERR(trans);
4856 break;
4857 }
4858 ret = btrfs_run_delayed_items_nr(trans, root, nr);
4859 btrfs_end_transaction(trans, root);
4860 break;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004861 case FLUSH_DELALLOC:
4862 case FLUSH_DELALLOC_WAIT:
Miao Xie24af7dd2014-03-06 13:55:00 +08004863 shrink_delalloc(root, num_bytes * 2, orig_bytes,
Josef Bacik67b0fd62012-09-24 13:42:00 -04004864 state == FLUSH_DELALLOC_WAIT);
4865 break;
Josef Bacikea658ba2012-09-11 16:57:25 -04004866 case ALLOC_CHUNK:
4867 trans = btrfs_join_transaction(root);
4868 if (IS_ERR(trans)) {
4869 ret = PTR_ERR(trans);
4870 break;
4871 }
4872 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Josef Bacikea658ba2012-09-11 16:57:25 -04004873 btrfs_get_alloc_profile(root, 0),
4874 CHUNK_ALLOC_NO_FORCE);
4875 btrfs_end_transaction(trans, root);
Alex Lyakaseecba892015-12-06 12:32:31 +02004876 if (ret > 0 || ret == -ENOSPC)
Josef Bacikea658ba2012-09-11 16:57:25 -04004877 ret = 0;
4878 break;
Josef Bacik96c3f432012-06-21 14:05:49 -04004879 case COMMIT_TRANS:
4880 ret = may_commit_transaction(root, space_info, orig_bytes, 0);
4881 break;
4882 default:
4883 ret = -ENOSPC;
4884 break;
4885 }
4886
Josef Bacikf376df22016-03-25 13:25:56 -04004887 trace_btrfs_flush_space(root->fs_info, space_info->flags, num_bytes,
4888 orig_bytes, state, ret);
Josef Bacik96c3f432012-06-21 14:05:49 -04004889 return ret;
4890}
Miao Xie21c7e752014-05-13 17:29:04 -07004891
4892static inline u64
4893btrfs_calc_reclaim_metadata_size(struct btrfs_root *root,
4894 struct btrfs_space_info *space_info)
4895{
Josef Bacik957780e2016-05-17 13:30:55 -04004896 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07004897 u64 used;
4898 u64 expected;
Josef Bacik957780e2016-05-17 13:30:55 -04004899 u64 to_reclaim = 0;
Miao Xie21c7e752014-05-13 17:29:04 -07004900
Josef Bacik957780e2016-05-17 13:30:55 -04004901 list_for_each_entry(ticket, &space_info->tickets, list)
4902 to_reclaim += ticket->bytes;
4903 list_for_each_entry(ticket, &space_info->priority_tickets, list)
4904 to_reclaim += ticket->bytes;
4905 if (to_reclaim)
4906 return to_reclaim;
Miao Xie21c7e752014-05-13 17:29:04 -07004907
Wang Xiaoguange0af2482016-08-31 19:46:16 +08004908 to_reclaim = min_t(u64, num_online_cpus() * SZ_1M, SZ_16M);
4909 if (can_overcommit(root, space_info, to_reclaim,
4910 BTRFS_RESERVE_FLUSH_ALL))
4911 return 0;
4912
Miao Xie21c7e752014-05-13 17:29:04 -07004913 used = space_info->bytes_used + space_info->bytes_reserved +
4914 space_info->bytes_pinned + space_info->bytes_readonly +
4915 space_info->bytes_may_use;
Byongho Leeee221842015-12-15 01:42:10 +09004916 if (can_overcommit(root, space_info, SZ_1M, BTRFS_RESERVE_FLUSH_ALL))
Miao Xie21c7e752014-05-13 17:29:04 -07004917 expected = div_factor_fine(space_info->total_bytes, 95);
4918 else
4919 expected = div_factor_fine(space_info->total_bytes, 90);
4920
4921 if (used > expected)
4922 to_reclaim = used - expected;
4923 else
4924 to_reclaim = 0;
4925 to_reclaim = min(to_reclaim, space_info->bytes_may_use +
4926 space_info->bytes_reserved);
Miao Xie21c7e752014-05-13 17:29:04 -07004927 return to_reclaim;
4928}
4929
4930static inline int need_do_async_reclaim(struct btrfs_space_info *space_info,
Josef Bacik87241c22016-04-25 09:58:18 -04004931 struct btrfs_root *root, u64 used)
Miao Xie21c7e752014-05-13 17:29:04 -07004932{
Josef Bacik365c5312015-02-18 13:58:15 -08004933 u64 thresh = div_factor_fine(space_info->total_bytes, 98);
4934
4935 /* If we're just plain full then async reclaim just slows us down. */
Josef Bacikbaee8792016-01-26 09:35:38 -05004936 if ((space_info->bytes_used + space_info->bytes_reserved) >= thresh)
Josef Bacik365c5312015-02-18 13:58:15 -08004937 return 0;
4938
Josef Bacik87241c22016-04-25 09:58:18 -04004939 if (!btrfs_calc_reclaim_metadata_size(root, space_info))
Liu Bo25ce4592014-09-10 12:58:50 +08004940 return 0;
Liu Bo25ce4592014-09-10 12:58:50 +08004941
Josef Bacik87241c22016-04-25 09:58:18 -04004942 return (used >= thresh && !btrfs_fs_closing(root->fs_info) &&
4943 !test_bit(BTRFS_FS_STATE_REMOUNTING,
4944 &root->fs_info->fs_state));
Miao Xie21c7e752014-05-13 17:29:04 -07004945}
4946
Josef Bacik957780e2016-05-17 13:30:55 -04004947static void wake_all_tickets(struct list_head *head)
Miao Xie21c7e752014-05-13 17:29:04 -07004948{
Josef Bacik957780e2016-05-17 13:30:55 -04004949 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07004950
Josef Bacik957780e2016-05-17 13:30:55 -04004951 while (!list_empty(head)) {
4952 ticket = list_first_entry(head, struct reserve_ticket, list);
4953 list_del_init(&ticket->list);
4954 ticket->error = -ENOSPC;
4955 wake_up(&ticket->wait);
Miao Xie21c7e752014-05-13 17:29:04 -07004956 }
Miao Xie21c7e752014-05-13 17:29:04 -07004957}
4958
Josef Bacik957780e2016-05-17 13:30:55 -04004959/*
4960 * This is for normal flushers, we can wait all goddamned day if we want to. We
4961 * will loop and continuously try to flush as long as we are making progress.
4962 * We count progress as clearing off tickets each time we have to loop.
4963 */
Miao Xie21c7e752014-05-13 17:29:04 -07004964static void btrfs_async_reclaim_metadata_space(struct work_struct *work)
4965{
4966 struct btrfs_fs_info *fs_info;
4967 struct btrfs_space_info *space_info;
4968 u64 to_reclaim;
4969 int flush_state;
Josef Bacik957780e2016-05-17 13:30:55 -04004970 int commit_cycles = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08004971 u64 last_tickets_id;
Miao Xie21c7e752014-05-13 17:29:04 -07004972
4973 fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work);
4974 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4975
Josef Bacik957780e2016-05-17 13:30:55 -04004976 spin_lock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07004977 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root,
4978 space_info);
Josef Bacik957780e2016-05-17 13:30:55 -04004979 if (!to_reclaim) {
4980 space_info->flush = 0;
4981 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07004982 return;
Josef Bacik957780e2016-05-17 13:30:55 -04004983 }
Wang Xiaoguangce129652016-09-02 10:58:46 +08004984 last_tickets_id = space_info->tickets_id;
Josef Bacik957780e2016-05-17 13:30:55 -04004985 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07004986
4987 flush_state = FLUSH_DELAYED_ITEMS_NR;
4988 do {
Josef Bacik957780e2016-05-17 13:30:55 -04004989 struct reserve_ticket *ticket;
4990 int ret;
4991
4992 ret = flush_space(fs_info->fs_root, space_info, to_reclaim,
Miao Xie21c7e752014-05-13 17:29:04 -07004993 to_reclaim, flush_state);
Josef Bacik957780e2016-05-17 13:30:55 -04004994 spin_lock(&space_info->lock);
4995 if (list_empty(&space_info->tickets)) {
4996 space_info->flush = 0;
4997 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07004998 return;
Josef Bacik957780e2016-05-17 13:30:55 -04004999 }
5000 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root,
5001 space_info);
5002 ticket = list_first_entry(&space_info->tickets,
5003 struct reserve_ticket, list);
Wang Xiaoguangce129652016-09-02 10:58:46 +08005004 if (last_tickets_id == space_info->tickets_id) {
Josef Bacik957780e2016-05-17 13:30:55 -04005005 flush_state++;
5006 } else {
Wang Xiaoguangce129652016-09-02 10:58:46 +08005007 last_tickets_id = space_info->tickets_id;
Josef Bacik957780e2016-05-17 13:30:55 -04005008 flush_state = FLUSH_DELAYED_ITEMS_NR;
5009 if (commit_cycles)
5010 commit_cycles--;
5011 }
5012
5013 if (flush_state > COMMIT_TRANS) {
5014 commit_cycles++;
5015 if (commit_cycles > 2) {
5016 wake_all_tickets(&space_info->tickets);
5017 space_info->flush = 0;
5018 } else {
5019 flush_state = FLUSH_DELAYED_ITEMS_NR;
5020 }
5021 }
5022 spin_unlock(&space_info->lock);
5023 } while (flush_state <= COMMIT_TRANS);
Miao Xie21c7e752014-05-13 17:29:04 -07005024}
5025
5026void btrfs_init_async_reclaim_work(struct work_struct *work)
5027{
5028 INIT_WORK(work, btrfs_async_reclaim_metadata_space);
5029}
5030
Josef Bacik957780e2016-05-17 13:30:55 -04005031static void priority_reclaim_metadata_space(struct btrfs_fs_info *fs_info,
5032 struct btrfs_space_info *space_info,
5033 struct reserve_ticket *ticket)
5034{
5035 u64 to_reclaim;
5036 int flush_state = FLUSH_DELAYED_ITEMS_NR;
5037
5038 spin_lock(&space_info->lock);
5039 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root,
5040 space_info);
5041 if (!to_reclaim) {
5042 spin_unlock(&space_info->lock);
5043 return;
5044 }
5045 spin_unlock(&space_info->lock);
5046
5047 do {
5048 flush_space(fs_info->fs_root, space_info, to_reclaim,
5049 to_reclaim, flush_state);
5050 flush_state++;
5051 spin_lock(&space_info->lock);
5052 if (ticket->bytes == 0) {
5053 spin_unlock(&space_info->lock);
5054 return;
5055 }
5056 spin_unlock(&space_info->lock);
5057
5058 /*
5059 * Priority flushers can't wait on delalloc without
5060 * deadlocking.
5061 */
5062 if (flush_state == FLUSH_DELALLOC ||
5063 flush_state == FLUSH_DELALLOC_WAIT)
5064 flush_state = ALLOC_CHUNK;
5065 } while (flush_state < COMMIT_TRANS);
5066}
5067
5068static int wait_reserve_ticket(struct btrfs_fs_info *fs_info,
5069 struct btrfs_space_info *space_info,
5070 struct reserve_ticket *ticket, u64 orig_bytes)
5071
5072{
5073 DEFINE_WAIT(wait);
5074 int ret = 0;
5075
5076 spin_lock(&space_info->lock);
5077 while (ticket->bytes > 0 && ticket->error == 0) {
5078 ret = prepare_to_wait_event(&ticket->wait, &wait, TASK_KILLABLE);
5079 if (ret) {
5080 ret = -EINTR;
5081 break;
5082 }
5083 spin_unlock(&space_info->lock);
5084
5085 schedule();
5086
5087 finish_wait(&ticket->wait, &wait);
5088 spin_lock(&space_info->lock);
5089 }
5090 if (!ret)
5091 ret = ticket->error;
5092 if (!list_empty(&ticket->list))
5093 list_del_init(&ticket->list);
5094 if (ticket->bytes && ticket->bytes < orig_bytes) {
5095 u64 num_bytes = orig_bytes - ticket->bytes;
5096 space_info->bytes_may_use -= num_bytes;
5097 trace_btrfs_space_reservation(fs_info, "space_info",
5098 space_info->flags, num_bytes, 0);
5099 }
5100 spin_unlock(&space_info->lock);
5101
5102 return ret;
5103}
5104
Josef Bacik663350a2011-11-03 22:54:25 -04005105/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005106 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5107 * @root - the root we're allocating for
Josef Bacik957780e2016-05-17 13:30:55 -04005108 * @space_info - the space info we want to allocate from
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005109 * @orig_bytes - the number of bytes we want
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04005110 * @flush - whether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005111 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04005112 * This will reserve orig_bytes number of bytes from the space info associated
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005113 * with the block_rsv. If there is not enough space it will make an attempt to
5114 * flush out space to make room. It will do this by flushing delalloc if
5115 * possible or committing the transaction. If flush is 0 then no attempts to
5116 * regain reservations will be made and this will fail if there is not enough
5117 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005118 */
Josef Bacik957780e2016-05-17 13:30:55 -04005119static int __reserve_metadata_bytes(struct btrfs_root *root,
5120 struct btrfs_space_info *space_info,
5121 u64 orig_bytes,
5122 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005123{
Josef Bacik957780e2016-05-17 13:30:55 -04005124 struct reserve_ticket ticket;
Josef Bacik2bf64752011-09-26 17:12:22 -04005125 u64 used;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005126 int ret = 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005127
Josef Bacik957780e2016-05-17 13:30:55 -04005128 ASSERT(orig_bytes);
Josef Bacik8ca17f02016-05-27 13:24:13 -04005129 ASSERT(!current->journal_info || flush != BTRFS_RESERVE_FLUSH_ALL);
5130
Yan, Zhengf0486c62010-05-16 10:46:25 -04005131 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04005132 ret = -ENOSPC;
Josef Bacik2bf64752011-09-26 17:12:22 -04005133 used = space_info->bytes_used + space_info->bytes_reserved +
5134 space_info->bytes_pinned + space_info->bytes_readonly +
5135 space_info->bytes_may_use;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005136
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005137 /*
Josef Bacik957780e2016-05-17 13:30:55 -04005138 * If we have enough space then hooray, make our reservation and carry
5139 * on. If not see if we can overcommit, and if we can, hooray carry on.
5140 * If not things get more complicated.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005141 */
Josef Bacik957780e2016-05-17 13:30:55 -04005142 if (used + orig_bytes <= space_info->total_bytes) {
5143 space_info->bytes_may_use += orig_bytes;
5144 trace_btrfs_space_reservation(root->fs_info, "space_info",
5145 space_info->flags, orig_bytes,
5146 1);
5147 ret = 0;
5148 } else if (can_overcommit(root, space_info, orig_bytes, flush)) {
Josef Bacik44734ed2012-09-28 16:04:19 -04005149 space_info->bytes_may_use += orig_bytes;
5150 trace_btrfs_space_reservation(root->fs_info, "space_info",
5151 space_info->flags, orig_bytes,
5152 1);
5153 ret = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04005154 }
5155
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005156 /*
Josef Bacik957780e2016-05-17 13:30:55 -04005157 * If we couldn't make a reservation then setup our reservation ticket
5158 * and kick the async worker if it's not already running.
Miao Xie08e007d2012-10-16 11:33:38 +00005159 *
Josef Bacik957780e2016-05-17 13:30:55 -04005160 * If we are a priority flusher then we just need to add our ticket to
5161 * the list and we will do our own flushing further down.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005162 */
Josef Bacik72bcd992012-12-18 15:16:34 -05005163 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
Josef Bacik957780e2016-05-17 13:30:55 -04005164 ticket.bytes = orig_bytes;
5165 ticket.error = 0;
5166 init_waitqueue_head(&ticket.wait);
5167 if (flush == BTRFS_RESERVE_FLUSH_ALL) {
5168 list_add_tail(&ticket.list, &space_info->tickets);
5169 if (!space_info->flush) {
5170 space_info->flush = 1;
Josef Bacikf376df22016-03-25 13:25:56 -04005171 trace_btrfs_trigger_flush(root->fs_info,
5172 space_info->flags,
5173 orig_bytes, flush,
5174 "enospc");
Josef Bacik957780e2016-05-17 13:30:55 -04005175 queue_work(system_unbound_wq,
5176 &root->fs_info->async_reclaim_work);
5177 }
5178 } else {
5179 list_add_tail(&ticket.list,
5180 &space_info->priority_tickets);
5181 }
Miao Xie21c7e752014-05-13 17:29:04 -07005182 } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
5183 used += orig_bytes;
Josef Bacikf6acfd52014-09-18 11:27:17 -04005184 /*
5185 * We will do the space reservation dance during log replay,
5186 * which means we won't have fs_info->fs_root set, so don't do
5187 * the async reclaim as we will panic.
5188 */
5189 if (!root->fs_info->log_root_recovering &&
Josef Bacik87241c22016-04-25 09:58:18 -04005190 need_do_async_reclaim(space_info, root, used) &&
Josef Bacikf376df22016-03-25 13:25:56 -04005191 !work_busy(&root->fs_info->async_reclaim_work)) {
5192 trace_btrfs_trigger_flush(root->fs_info,
5193 space_info->flags,
5194 orig_bytes, flush,
5195 "preempt");
Miao Xie21c7e752014-05-13 17:29:04 -07005196 queue_work(system_unbound_wq,
5197 &root->fs_info->async_reclaim_work);
Josef Bacikf376df22016-03-25 13:25:56 -04005198 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005199 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005200 spin_unlock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00005201 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
Josef Bacik957780e2016-05-17 13:30:55 -04005202 return ret;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005203
Josef Bacik957780e2016-05-17 13:30:55 -04005204 if (flush == BTRFS_RESERVE_FLUSH_ALL)
5205 return wait_reserve_ticket(root->fs_info, space_info, &ticket,
5206 orig_bytes);
Miao Xie08e007d2012-10-16 11:33:38 +00005207
Josef Bacik957780e2016-05-17 13:30:55 -04005208 ret = 0;
5209 priority_reclaim_metadata_space(root->fs_info, space_info, &ticket);
5210 spin_lock(&space_info->lock);
5211 if (ticket.bytes) {
5212 if (ticket.bytes < orig_bytes) {
5213 u64 num_bytes = orig_bytes - ticket.bytes;
5214 space_info->bytes_may_use -= num_bytes;
5215 trace_btrfs_space_reservation(root->fs_info,
5216 "space_info", space_info->flags,
5217 num_bytes, 0);
Miao Xie08e007d2012-10-16 11:33:38 +00005218
Josef Bacik957780e2016-05-17 13:30:55 -04005219 }
5220 list_del_init(&ticket.list);
5221 ret = -ENOSPC;
5222 }
5223 spin_unlock(&space_info->lock);
5224 ASSERT(list_empty(&ticket.list));
5225 return ret;
5226}
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005227
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005228/**
5229 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5230 * @root - the root we're allocating for
5231 * @block_rsv - the block_rsv we're allocating for
5232 * @orig_bytes - the number of bytes we want
5233 * @flush - whether or not we can flush to make our reservation
5234 *
Josef Bacik957780e2016-05-17 13:30:55 -04005235 * This will reserve orgi_bytes number of bytes from the space info associated
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005236 * with the block_rsv. If there is not enough space it will make an attempt to
5237 * flush out space to make room. It will do this by flushing delalloc if
5238 * possible or committing the transaction. If flush is 0 then no attempts to
5239 * regain reservations will be made and this will fail if there is not enough
5240 * space already.
5241 */
5242static int reserve_metadata_bytes(struct btrfs_root *root,
5243 struct btrfs_block_rsv *block_rsv,
5244 u64 orig_bytes,
5245 enum btrfs_reserve_flush_enum flush)
5246{
Josef Bacik957780e2016-05-17 13:30:55 -04005247 int ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005248
Josef Bacik957780e2016-05-17 13:30:55 -04005249 ret = __reserve_metadata_bytes(root, block_rsv->space_info, orig_bytes,
5250 flush);
Josef Bacik5d803662013-02-07 16:06:02 -05005251 if (ret == -ENOSPC &&
5252 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
5253 struct btrfs_block_rsv *global_rsv =
5254 &root->fs_info->global_block_rsv;
5255
5256 if (block_rsv != global_rsv &&
5257 !block_rsv_use_bytes(global_rsv, orig_bytes))
5258 ret = 0;
5259 }
Jeff Mahoneycab45e22013-10-16 16:27:01 -04005260 if (ret == -ENOSPC)
5261 trace_btrfs_space_reservation(root->fs_info,
5262 "space_info:enospc",
Josef Bacik957780e2016-05-17 13:30:55 -04005263 block_rsv->space_info->flags,
5264 orig_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005265 return ret;
5266}
5267
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005268static struct btrfs_block_rsv *get_block_rsv(
5269 const struct btrfs_trans_handle *trans,
5270 const struct btrfs_root *root)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005271{
Josef Bacik4c13d752011-08-30 11:31:29 -04005272 struct btrfs_block_rsv *block_rsv = NULL;
5273
Alexandru Moisee9cf4392015-09-09 00:18:50 +00005274 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
5275 (root == root->fs_info->csum_root && trans->adding_csums) ||
5276 (root == root->fs_info->uuid_root))
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02005277 block_rsv = trans->block_rsv;
5278
Josef Bacik4c13d752011-08-30 11:31:29 -04005279 if (!block_rsv)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005280 block_rsv = root->block_rsv;
5281
5282 if (!block_rsv)
5283 block_rsv = &root->fs_info->empty_block_rsv;
5284
5285 return block_rsv;
5286}
5287
5288static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
5289 u64 num_bytes)
5290{
5291 int ret = -ENOSPC;
5292 spin_lock(&block_rsv->lock);
5293 if (block_rsv->reserved >= num_bytes) {
5294 block_rsv->reserved -= num_bytes;
5295 if (block_rsv->reserved < block_rsv->size)
5296 block_rsv->full = 0;
5297 ret = 0;
5298 }
5299 spin_unlock(&block_rsv->lock);
5300 return ret;
5301}
5302
5303static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
5304 u64 num_bytes, int update_size)
5305{
5306 spin_lock(&block_rsv->lock);
5307 block_rsv->reserved += num_bytes;
5308 if (update_size)
5309 block_rsv->size += num_bytes;
5310 else if (block_rsv->reserved >= block_rsv->size)
5311 block_rsv->full = 1;
5312 spin_unlock(&block_rsv->lock);
5313}
5314
Josef Bacikd52be812013-05-29 14:54:47 -04005315int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
5316 struct btrfs_block_rsv *dest, u64 num_bytes,
5317 int min_factor)
5318{
5319 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5320 u64 min_bytes;
5321
5322 if (global_rsv->space_info != dest->space_info)
5323 return -ENOSPC;
5324
5325 spin_lock(&global_rsv->lock);
5326 min_bytes = div_factor(global_rsv->size, min_factor);
5327 if (global_rsv->reserved < min_bytes + num_bytes) {
5328 spin_unlock(&global_rsv->lock);
5329 return -ENOSPC;
5330 }
5331 global_rsv->reserved -= num_bytes;
5332 if (global_rsv->reserved < global_rsv->size)
5333 global_rsv->full = 0;
5334 spin_unlock(&global_rsv->lock);
5335
5336 block_rsv_add_bytes(dest, num_bytes, 1);
5337 return 0;
5338}
5339
Josef Bacik957780e2016-05-17 13:30:55 -04005340/*
5341 * This is for space we already have accounted in space_info->bytes_may_use, so
5342 * basically when we're returning space from block_rsv's.
5343 */
5344static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info,
5345 struct btrfs_space_info *space_info,
5346 u64 num_bytes)
5347{
5348 struct reserve_ticket *ticket;
5349 struct list_head *head;
5350 u64 used;
5351 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_NO_FLUSH;
5352 bool check_overcommit = false;
5353
5354 spin_lock(&space_info->lock);
5355 head = &space_info->priority_tickets;
5356
5357 /*
5358 * If we are over our limit then we need to check and see if we can
5359 * overcommit, and if we can't then we just need to free up our space
5360 * and not satisfy any requests.
5361 */
5362 used = space_info->bytes_used + space_info->bytes_reserved +
5363 space_info->bytes_pinned + space_info->bytes_readonly +
5364 space_info->bytes_may_use;
5365 if (used - num_bytes >= space_info->total_bytes)
5366 check_overcommit = true;
5367again:
5368 while (!list_empty(head) && num_bytes) {
5369 ticket = list_first_entry(head, struct reserve_ticket,
5370 list);
5371 /*
5372 * We use 0 bytes because this space is already reserved, so
5373 * adding the ticket space would be a double count.
5374 */
5375 if (check_overcommit &&
5376 !can_overcommit(fs_info->extent_root, space_info, 0,
5377 flush))
5378 break;
5379 if (num_bytes >= ticket->bytes) {
5380 list_del_init(&ticket->list);
5381 num_bytes -= ticket->bytes;
5382 ticket->bytes = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005383 space_info->tickets_id++;
Josef Bacik957780e2016-05-17 13:30:55 -04005384 wake_up(&ticket->wait);
5385 } else {
5386 ticket->bytes -= num_bytes;
5387 num_bytes = 0;
5388 }
5389 }
5390
5391 if (num_bytes && head == &space_info->priority_tickets) {
5392 head = &space_info->tickets;
5393 flush = BTRFS_RESERVE_FLUSH_ALL;
5394 goto again;
5395 }
5396 space_info->bytes_may_use -= num_bytes;
5397 trace_btrfs_space_reservation(fs_info, "space_info",
5398 space_info->flags, num_bytes, 0);
5399 spin_unlock(&space_info->lock);
5400}
5401
5402/*
5403 * This is for newly allocated space that isn't accounted in
5404 * space_info->bytes_may_use yet. So if we allocate a chunk or unpin an extent
5405 * we use this helper.
5406 */
5407static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
5408 struct btrfs_space_info *space_info,
5409 u64 num_bytes)
5410{
5411 struct reserve_ticket *ticket;
5412 struct list_head *head = &space_info->priority_tickets;
5413
5414again:
5415 while (!list_empty(head) && num_bytes) {
5416 ticket = list_first_entry(head, struct reserve_ticket,
5417 list);
5418 if (num_bytes >= ticket->bytes) {
5419 trace_btrfs_space_reservation(fs_info, "space_info",
5420 space_info->flags,
5421 ticket->bytes, 1);
5422 list_del_init(&ticket->list);
5423 num_bytes -= ticket->bytes;
5424 space_info->bytes_may_use += ticket->bytes;
5425 ticket->bytes = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005426 space_info->tickets_id++;
Josef Bacik957780e2016-05-17 13:30:55 -04005427 wake_up(&ticket->wait);
5428 } else {
5429 trace_btrfs_space_reservation(fs_info, "space_info",
5430 space_info->flags,
5431 num_bytes, 1);
5432 space_info->bytes_may_use += num_bytes;
5433 ticket->bytes -= num_bytes;
5434 num_bytes = 0;
5435 }
5436 }
5437
5438 if (num_bytes && head == &space_info->priority_tickets) {
5439 head = &space_info->tickets;
5440 goto again;
5441 }
5442}
5443
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005444static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
5445 struct btrfs_block_rsv *block_rsv,
David Sterba62a45b62011-04-20 15:52:26 +02005446 struct btrfs_block_rsv *dest, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005447{
5448 struct btrfs_space_info *space_info = block_rsv->space_info;
5449
5450 spin_lock(&block_rsv->lock);
5451 if (num_bytes == (u64)-1)
5452 num_bytes = block_rsv->size;
5453 block_rsv->size -= num_bytes;
5454 if (block_rsv->reserved >= block_rsv->size) {
5455 num_bytes = block_rsv->reserved - block_rsv->size;
5456 block_rsv->reserved = block_rsv->size;
5457 block_rsv->full = 1;
5458 } else {
5459 num_bytes = 0;
5460 }
5461 spin_unlock(&block_rsv->lock);
5462
5463 if (num_bytes > 0) {
5464 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00005465 spin_lock(&dest->lock);
5466 if (!dest->full) {
5467 u64 bytes_to_add;
5468
5469 bytes_to_add = dest->size - dest->reserved;
5470 bytes_to_add = min(num_bytes, bytes_to_add);
5471 dest->reserved += bytes_to_add;
5472 if (dest->reserved >= dest->size)
5473 dest->full = 1;
5474 num_bytes -= bytes_to_add;
5475 }
5476 spin_unlock(&dest->lock);
5477 }
Josef Bacik957780e2016-05-17 13:30:55 -04005478 if (num_bytes)
5479 space_info_add_old_bytes(fs_info, space_info,
5480 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005481 }
5482}
5483
Josef Bacik25d609f2016-03-25 13:25:48 -04005484int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src,
5485 struct btrfs_block_rsv *dst, u64 num_bytes,
5486 int update_size)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005487{
5488 int ret;
5489
5490 ret = block_rsv_use_bytes(src, num_bytes);
5491 if (ret)
5492 return ret;
5493
Josef Bacik25d609f2016-03-25 13:25:48 -04005494 block_rsv_add_bytes(dst, num_bytes, update_size);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005495 return 0;
5496}
5497
Miao Xie66d8f3d2012-09-06 04:02:28 -06005498void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005499{
5500 memset(rsv, 0, sizeof(*rsv));
5501 spin_lock_init(&rsv->lock);
Miao Xie66d8f3d2012-09-06 04:02:28 -06005502 rsv->type = type;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005503}
5504
Miao Xie66d8f3d2012-09-06 04:02:28 -06005505struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root,
5506 unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005507{
5508 struct btrfs_block_rsv *block_rsv;
5509 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005510
5511 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
5512 if (!block_rsv)
5513 return NULL;
5514
Miao Xie66d8f3d2012-09-06 04:02:28 -06005515 btrfs_init_block_rsv(block_rsv, type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005516 block_rsv->space_info = __find_space_info(fs_info,
5517 BTRFS_BLOCK_GROUP_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005518 return block_rsv;
5519}
5520
5521void btrfs_free_block_rsv(struct btrfs_root *root,
5522 struct btrfs_block_rsv *rsv)
5523{
Josef Bacik2aaa6652012-08-29 14:27:18 -04005524 if (!rsv)
5525 return;
Josef Bacikdabdb642011-08-08 12:50:18 -04005526 btrfs_block_rsv_release(root, rsv, (u64)-1);
5527 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005528}
5529
Chris Masoncdfb0802015-04-06 18:17:00 -07005530void __btrfs_free_block_rsv(struct btrfs_block_rsv *rsv)
5531{
5532 kfree(rsv);
5533}
5534
Miao Xie08e007d2012-10-16 11:33:38 +00005535int btrfs_block_rsv_add(struct btrfs_root *root,
5536 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
5537 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005538{
5539 int ret;
5540
5541 if (num_bytes == 0)
5542 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005543
Miao Xie61b520a2011-11-10 20:45:05 -05005544 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005545 if (!ret) {
5546 block_rsv_add_bytes(block_rsv, num_bytes, 1);
5547 return 0;
5548 }
5549
Yan, Zhengf0486c62010-05-16 10:46:25 -04005550 return ret;
5551}
5552
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005553int btrfs_block_rsv_check(struct btrfs_root *root,
Josef Bacik36ba0222011-10-18 12:15:48 -04005554 struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005555{
5556 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005557 int ret = -ENOSPC;
5558
5559 if (!block_rsv)
5560 return 0;
5561
5562 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04005563 num_bytes = div_factor(block_rsv->size, min_factor);
5564 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005565 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005566 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005567
Josef Bacik36ba0222011-10-18 12:15:48 -04005568 return ret;
5569}
5570
Miao Xie08e007d2012-10-16 11:33:38 +00005571int btrfs_block_rsv_refill(struct btrfs_root *root,
5572 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
5573 enum btrfs_reserve_flush_enum flush)
Josef Bacik36ba0222011-10-18 12:15:48 -04005574{
5575 u64 num_bytes = 0;
5576 int ret = -ENOSPC;
5577
5578 if (!block_rsv)
5579 return 0;
5580
5581 spin_lock(&block_rsv->lock);
5582 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04005583 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005584 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04005585 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04005586 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005587 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04005588
Yan, Zhengf0486c62010-05-16 10:46:25 -04005589 if (!ret)
5590 return 0;
5591
Miao Xieaa38a712011-11-18 17:43:00 +08005592 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Josef Bacikdabdb642011-08-08 12:50:18 -04005593 if (!ret) {
5594 block_rsv_add_bytes(block_rsv, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005595 return 0;
5596 }
5597
Josef Bacik13553e52011-08-08 13:33:21 -04005598 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005599}
5600
Yan, Zhengf0486c62010-05-16 10:46:25 -04005601void btrfs_block_rsv_release(struct btrfs_root *root,
5602 struct btrfs_block_rsv *block_rsv,
5603 u64 num_bytes)
5604{
5605 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Liu Bo17504582013-12-29 21:44:50 +08005606 if (global_rsv == block_rsv ||
Yan, Zhengf0486c62010-05-16 10:46:25 -04005607 block_rsv->space_info != global_rsv->space_info)
5608 global_rsv = NULL;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005609 block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv,
5610 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005611}
5612
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005613static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
5614{
5615 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
5616 struct btrfs_space_info *sinfo = block_rsv->space_info;
5617 u64 num_bytes;
5618
Josef Bacikae2e4722016-05-27 12:58:35 -04005619 /*
5620 * The global block rsv is based on the size of the extent tree, the
5621 * checksum tree and the root tree. If the fs is empty we want to set
5622 * it to a minimal amount for safety.
5623 */
5624 num_bytes = btrfs_root_used(&fs_info->extent_root->root_item) +
5625 btrfs_root_used(&fs_info->csum_root->root_item) +
5626 btrfs_root_used(&fs_info->tree_root->root_item);
5627 num_bytes = max_t(u64, num_bytes, SZ_16M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005628
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005629 spin_lock(&sinfo->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005630 spin_lock(&block_rsv->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005631
Byongho Leeee221842015-12-15 01:42:10 +09005632 block_rsv->size = min_t(u64, num_bytes, SZ_512M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005633
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005634 if (block_rsv->reserved < block_rsv->size) {
5635 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
5636 sinfo->bytes_reserved + sinfo->bytes_readonly +
5637 sinfo->bytes_may_use;
5638 if (sinfo->total_bytes > num_bytes) {
5639 num_bytes = sinfo->total_bytes - num_bytes;
5640 num_bytes = min(num_bytes,
5641 block_rsv->size - block_rsv->reserved);
5642 block_rsv->reserved += num_bytes;
5643 sinfo->bytes_may_use += num_bytes;
5644 trace_btrfs_space_reservation(fs_info, "space_info",
5645 sinfo->flags, num_bytes,
5646 1);
5647 }
5648 } else if (block_rsv->reserved > block_rsv->size) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005649 num_bytes = block_rsv->reserved - block_rsv->size;
Josef Bacikfb25e912011-07-26 17:00:46 -04005650 sinfo->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005651 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04005652 sinfo->flags, num_bytes, 0);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005653 block_rsv->reserved = block_rsv->size;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005654 }
David Sterba182608c2011-05-05 13:13:16 +02005655
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005656 if (block_rsv->reserved == block_rsv->size)
5657 block_rsv->full = 1;
5658 else
5659 block_rsv->full = 0;
5660
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005661 spin_unlock(&block_rsv->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005662 spin_unlock(&sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005663}
5664
Yan, Zhengf0486c62010-05-16 10:46:25 -04005665static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
5666{
5667 struct btrfs_space_info *space_info;
5668
5669 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
5670 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005671
5672 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005673 fs_info->global_block_rsv.space_info = space_info;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005674 fs_info->delalloc_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005675 fs_info->trans_block_rsv.space_info = space_info;
5676 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04005677 fs_info->delayed_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005678
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005679 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
5680 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
5681 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
5682 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Stefan Behrens3a6cad92013-05-16 14:48:19 +00005683 if (fs_info->quota_root)
5684 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005685 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005686
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005687 update_global_block_rsv(fs_info);
5688}
5689
5690static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
5691{
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005692 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
5693 (u64)-1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005694 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
5695 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
5696 WARN_ON(fs_info->trans_block_rsv.size > 0);
5697 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
5698 WARN_ON(fs_info->chunk_block_rsv.size > 0);
5699 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04005700 WARN_ON(fs_info->delayed_block_rsv.size > 0);
5701 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04005702}
5703
Yan, Zhenga22285a2010-05-16 10:48:46 -04005704void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
5705 struct btrfs_root *root)
5706{
Josef Bacik0e721102012-06-26 16:13:18 -04005707 if (!trans->block_rsv)
5708 return;
5709
Yan, Zhenga22285a2010-05-16 10:48:46 -04005710 if (!trans->bytes_reserved)
5711 return;
5712
Chris Masone77266e2012-02-24 10:39:05 -05005713 trace_btrfs_space_reservation(root->fs_info, "transaction",
Liu Bo2bcc0322012-03-29 09:57:44 -04005714 trans->transid, trans->bytes_reserved, 0);
Josef Bacikb24e03d2011-10-14 14:40:17 -04005715 btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005716 trans->bytes_reserved = 0;
5717}
5718
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005719/*
5720 * To be called after all the new block groups attached to the transaction
5721 * handle have been created (btrfs_create_pending_block_groups()).
5722 */
5723void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
5724{
Jeff Mahoney64b63582016-06-20 17:23:41 -04005725 struct btrfs_fs_info *fs_info = trans->fs_info;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005726
5727 if (!trans->chunk_bytes_reserved)
5728 return;
5729
5730 WARN_ON_ONCE(!list_empty(&trans->new_bgs));
5731
5732 block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL,
5733 trans->chunk_bytes_reserved);
5734 trans->chunk_bytes_reserved = 0;
5735}
5736
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005737/* Can only return 0 or -ENOSPC */
Yan, Zhengd68fc572010-05-16 10:49:58 -04005738int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
5739 struct inode *inode)
5740{
5741 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik40acc3e2016-05-27 13:01:08 -04005742 /*
5743 * We always use trans->block_rsv here as we will have reserved space
5744 * for our orphan when starting the transaction, using get_block_rsv()
5745 * here will sometimes make us choose the wrong block rsv as we could be
5746 * doing a reloc inode for a non refcounted root.
5747 */
5748 struct btrfs_block_rsv *src_rsv = trans->block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04005749 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
5750
5751 /*
Josef Bacikfcb80c22011-05-03 10:40:22 -04005752 * We need to hold space in order to delete our orphan item once we've
5753 * added it, so this takes the reservation so we can release it later
5754 * when we are truly done with the orphan item.
Yan, Zhengd68fc572010-05-16 10:49:58 -04005755 */
Chris Masonff5714c2011-05-28 07:00:39 -04005756 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005757 trace_btrfs_space_reservation(root->fs_info, "orphan",
5758 btrfs_ino(inode), num_bytes, 1);
Josef Bacik25d609f2016-03-25 13:25:48 -04005759 return btrfs_block_rsv_migrate(src_rsv, dst_rsv, num_bytes, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04005760}
5761
5762void btrfs_orphan_release_metadata(struct inode *inode)
5763{
5764 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonff5714c2011-05-28 07:00:39 -04005765 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005766 trace_btrfs_space_reservation(root->fs_info, "orphan",
5767 btrfs_ino(inode), num_bytes, 0);
Yan, Zhengd68fc572010-05-16 10:49:58 -04005768 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
5769}
5770
Miao Xied5c12072013-02-28 10:04:33 +00005771/*
5772 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
5773 * root: the root of the parent directory
5774 * rsv: block reservation
5775 * items: the number of items that we need do reservation
5776 * qgroup_reserved: used to return the reserved size in qgroup
5777 *
5778 * This function is used to reserve the space for snapshot/subvolume
5779 * creation and deletion. Those operations are different with the
5780 * common file/directory operations, they change two fs/file trees
5781 * and root tree, the number of items that the qgroup reserves is
5782 * different with the free space reservation. So we can not use
Nicholas D Steeves01327612016-05-19 21:18:45 -04005783 * the space reservation mechanism in start_transaction().
Miao Xied5c12072013-02-28 10:04:33 +00005784 */
5785int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
5786 struct btrfs_block_rsv *rsv,
5787 int items,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005788 u64 *qgroup_reserved,
5789 bool use_global_rsv)
Yan, Zhenga22285a2010-05-16 10:48:46 -04005790{
Miao Xied5c12072013-02-28 10:04:33 +00005791 u64 num_bytes;
5792 int ret;
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005793 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Miao Xied5c12072013-02-28 10:04:33 +00005794
5795 if (root->fs_info->quota_enabled) {
5796 /* One for parent inode, two for dir entries */
David Sterba707e8a02014-06-04 19:22:26 +02005797 num_bytes = 3 * root->nodesize;
Qu Wenruo71741092015-09-08 17:22:41 +08005798 ret = btrfs_qgroup_reserve_meta(root, num_bytes);
Miao Xied5c12072013-02-28 10:04:33 +00005799 if (ret)
5800 return ret;
5801 } else {
5802 num_bytes = 0;
5803 }
5804
5805 *qgroup_reserved = num_bytes;
5806
5807 num_bytes = btrfs_calc_trans_metadata_size(root, items);
5808 rsv->space_info = __find_space_info(root->fs_info,
5809 BTRFS_BLOCK_GROUP_METADATA);
5810 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
5811 BTRFS_RESERVE_FLUSH_ALL);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005812
5813 if (ret == -ENOSPC && use_global_rsv)
Josef Bacik25d609f2016-03-25 13:25:48 -04005814 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes, 1);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005815
Qu Wenruo71741092015-09-08 17:22:41 +08005816 if (ret && *qgroup_reserved)
5817 btrfs_qgroup_free_meta(root, *qgroup_reserved);
Miao Xied5c12072013-02-28 10:04:33 +00005818
5819 return ret;
5820}
5821
5822void btrfs_subvolume_release_metadata(struct btrfs_root *root,
5823 struct btrfs_block_rsv *rsv,
5824 u64 qgroup_reserved)
5825{
5826 btrfs_block_rsv_release(root, rsv, (u64)-1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005827}
5828
Josef Bacik7709cde2011-08-04 10:25:02 -04005829/**
5830 * drop_outstanding_extent - drop an outstanding extent
5831 * @inode: the inode we're dropping the extent for
Nicholas D Steeves01327612016-05-19 21:18:45 -04005832 * @num_bytes: the number of bytes we're releasing.
Josef Bacik7709cde2011-08-04 10:25:02 -04005833 *
5834 * This is called when we are freeing up an outstanding extent, either called
5835 * after an error or after an extent is written. This will return the number of
5836 * reserved extents that need to be freed. This must be called with
5837 * BTRFS_I(inode)->lock held.
5838 */
Josef Bacikdcab6a32015-02-11 15:08:59 -05005839static unsigned drop_outstanding_extent(struct inode *inode, u64 num_bytes)
Josef Bacik9e0baf62011-07-15 15:16:44 +00005840{
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005841 unsigned drop_inode_space = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005842 unsigned dropped_extents = 0;
Josef Bacikdcab6a32015-02-11 15:08:59 -05005843 unsigned num_extents = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005844
Josef Bacikdcab6a32015-02-11 15:08:59 -05005845 num_extents = (unsigned)div64_u64(num_bytes +
5846 BTRFS_MAX_EXTENT_SIZE - 1,
5847 BTRFS_MAX_EXTENT_SIZE);
5848 ASSERT(num_extents);
5849 ASSERT(BTRFS_I(inode)->outstanding_extents >= num_extents);
5850 BTRFS_I(inode)->outstanding_extents -= num_extents;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005851
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005852 if (BTRFS_I(inode)->outstanding_extents == 0 &&
Josef Bacik72ac3c02012-05-23 14:13:11 -04005853 test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5854 &BTRFS_I(inode)->runtime_flags))
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005855 drop_inode_space = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005856
Josef Bacik9e0baf62011-07-15 15:16:44 +00005857 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005858 * If we have more or the same amount of outstanding extents than we have
Josef Bacik9e0baf62011-07-15 15:16:44 +00005859 * reserved then we need to leave the reserved extents count alone.
5860 */
5861 if (BTRFS_I(inode)->outstanding_extents >=
5862 BTRFS_I(inode)->reserved_extents)
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005863 return drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005864
5865 dropped_extents = BTRFS_I(inode)->reserved_extents -
5866 BTRFS_I(inode)->outstanding_extents;
5867 BTRFS_I(inode)->reserved_extents -= dropped_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005868 return dropped_extents + drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005869}
5870
Josef Bacik7709cde2011-08-04 10:25:02 -04005871/**
Nicholas D Steeves01327612016-05-19 21:18:45 -04005872 * calc_csum_metadata_size - return the amount of metadata space that must be
5873 * reserved/freed for the given bytes.
Josef Bacik7709cde2011-08-04 10:25:02 -04005874 * @inode: the inode we're manipulating
5875 * @num_bytes: the number of bytes in question
5876 * @reserve: 1 if we are reserving space, 0 if we are freeing space
5877 *
5878 * This adjusts the number of csum_bytes in the inode and then returns the
5879 * correct amount of metadata that must either be reserved or freed. We
5880 * calculate how many checksums we can fit into one leaf and then divide the
5881 * number of bytes that will need to be checksumed by this value to figure out
5882 * how many checksums will be required. If we are adding bytes then the number
5883 * may go up and we will return the number of additional bytes that must be
5884 * reserved. If it is going down we will return the number of bytes that must
5885 * be freed.
5886 *
5887 * This must be called with BTRFS_I(inode)->lock held.
5888 */
5889static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes,
5890 int reserve)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005891{
Josef Bacik7709cde2011-08-04 10:25:02 -04005892 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik12621332015-02-03 07:50:16 -08005893 u64 old_csums, num_csums;
Josef Bacik7709cde2011-08-04 10:25:02 -04005894
5895 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM &&
5896 BTRFS_I(inode)->csum_bytes == 0)
5897 return 0;
5898
Chris Mason28f75a02015-02-04 06:59:29 -08005899 old_csums = btrfs_csum_bytes_to_leaves(root, BTRFS_I(inode)->csum_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04005900 if (reserve)
5901 BTRFS_I(inode)->csum_bytes += num_bytes;
5902 else
5903 BTRFS_I(inode)->csum_bytes -= num_bytes;
Chris Mason28f75a02015-02-04 06:59:29 -08005904 num_csums = btrfs_csum_bytes_to_leaves(root, BTRFS_I(inode)->csum_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04005905
5906 /* No change, no need to reserve more */
5907 if (old_csums == num_csums)
5908 return 0;
5909
5910 if (reserve)
5911 return btrfs_calc_trans_metadata_size(root,
5912 num_csums - old_csums);
5913
5914 return btrfs_calc_trans_metadata_size(root, old_csums - num_csums);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005915}
5916
5917int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
5918{
5919 struct btrfs_root *root = BTRFS_I(inode)->root;
5920 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005921 u64 to_reserve = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05005922 u64 csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005923 unsigned nr_extents = 0;
Miao Xie08e007d2012-10-16 11:33:38 +00005924 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
Jan Schmidteb6b88d2013-01-27 23:26:00 -07005925 int ret = 0;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005926 bool delalloc_lock = true;
Wang Shilong88e081bf2013-03-01 11:36:01 +00005927 u64 to_free = 0;
5928 unsigned dropped;
Josef Bacik48c3d482016-03-25 13:25:49 -04005929 bool release_extra = false;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005930
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005931 /* If we are a free space inode we need to not flush since we will be in
5932 * the middle of a transaction commit. We also don't need the delalloc
5933 * mutex since we won't race with anybody. We need this mostly to make
5934 * lockdep shut its filthy mouth.
Josef Bacikbac357dc2016-07-20 16:48:45 -07005935 *
5936 * If we have a transaction open (can happen if we call truncate_block
5937 * from truncate), then we need FLUSH_LIMIT so we don't deadlock.
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005938 */
5939 if (btrfs_is_free_space_inode(inode)) {
Miao Xie08e007d2012-10-16 11:33:38 +00005940 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005941 delalloc_lock = false;
Josef Bacikbac357dc2016-07-20 16:48:45 -07005942 } else if (current->journal_info) {
5943 flush = BTRFS_RESERVE_FLUSH_LIMIT;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005944 }
Josef Bacikc09544e2011-08-30 10:19:10 -04005945
Miao Xie08e007d2012-10-16 11:33:38 +00005946 if (flush != BTRFS_RESERVE_NO_FLUSH &&
5947 btrfs_transaction_in_commit(root->fs_info))
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005948 schedule_timeout(1);
5949
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005950 if (delalloc_lock)
5951 mutex_lock(&BTRFS_I(inode)->delalloc_mutex);
5952
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005953 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005954
Josef Bacik9e0baf62011-07-15 15:16:44 +00005955 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik6a41dd02015-03-13 15:12:23 -04005956 nr_extents = (unsigned)div64_u64(num_bytes +
5957 BTRFS_MAX_EXTENT_SIZE - 1,
5958 BTRFS_MAX_EXTENT_SIZE);
5959 BTRFS_I(inode)->outstanding_extents += nr_extents;
Josef Bacik57a45ced2011-01-25 16:30:38 -05005960
Josef Bacik48c3d482016-03-25 13:25:49 -04005961 nr_extents = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005962 if (BTRFS_I(inode)->outstanding_extents >
Josef Bacik660d3f62011-12-09 11:18:51 -05005963 BTRFS_I(inode)->reserved_extents)
Josef Bacik48c3d482016-03-25 13:25:49 -04005964 nr_extents += BTRFS_I(inode)->outstanding_extents -
Josef Bacik9e0baf62011-07-15 15:16:44 +00005965 BTRFS_I(inode)->reserved_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005966
Josef Bacik48c3d482016-03-25 13:25:49 -04005967 /* We always want to reserve a slot for updating the inode. */
5968 to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents + 1);
Josef Bacik7709cde2011-08-04 10:25:02 -04005969 to_reserve += calc_csum_metadata_size(inode, num_bytes, 1);
Josef Bacik660d3f62011-12-09 11:18:51 -05005970 csum_bytes = BTRFS_I(inode)->csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005971 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05005972
Wang Shilong88e081bf2013-03-01 11:36:01 +00005973 if (root->fs_info->quota_enabled) {
Qu Wenruo71741092015-09-08 17:22:41 +08005974 ret = btrfs_qgroup_reserve_meta(root,
5975 nr_extents * root->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005976 if (ret)
5977 goto out_fail;
Wang Shilonga9870c02013-03-01 11:33:01 +00005978 }
Arne Jansenc5567232011-09-14 15:44:05 +02005979
Josef Bacik48c3d482016-03-25 13:25:49 -04005980 ret = btrfs_block_rsv_add(root, block_rsv, to_reserve, flush);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005981 if (unlikely(ret)) {
Qu Wenruo71741092015-09-08 17:22:41 +08005982 btrfs_qgroup_free_meta(root, nr_extents * root->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005983 goto out_fail;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005984 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005985
Josef Bacik660d3f62011-12-09 11:18:51 -05005986 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik48c3d482016-03-25 13:25:49 -04005987 if (test_and_set_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
Josef Bacikf485c9e2016-03-25 13:25:55 -04005988 &BTRFS_I(inode)->runtime_flags)) {
5989 to_reserve -= btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik48c3d482016-03-25 13:25:49 -04005990 release_extra = true;
Josef Bacik660d3f62011-12-09 11:18:51 -05005991 }
5992 BTRFS_I(inode)->reserved_extents += nr_extents;
5993 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005994
5995 if (delalloc_lock)
5996 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
Josef Bacik660d3f62011-12-09 11:18:51 -05005997
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005998 if (to_reserve)
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05305999 trace_btrfs_space_reservation(root->fs_info, "delalloc",
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006000 btrfs_ino(inode), to_reserve, 1);
Josef Bacik48c3d482016-03-25 13:25:49 -04006001 if (release_extra)
6002 btrfs_block_rsv_release(root, block_rsv,
6003 btrfs_calc_trans_metadata_size(root,
6004 1));
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006005 return 0;
Wang Shilong88e081bf2013-03-01 11:36:01 +00006006
6007out_fail:
6008 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacikdcab6a32015-02-11 15:08:59 -05006009 dropped = drop_outstanding_extent(inode, num_bytes);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006010 /*
6011 * If the inodes csum_bytes is the same as the original
6012 * csum_bytes then we know we haven't raced with any free()ers
6013 * so we can just reduce our inodes csum bytes and carry on.
Wang Shilong88e081bf2013-03-01 11:36:01 +00006014 */
Josef Bacikf4881bc2013-03-25 16:03:35 -04006015 if (BTRFS_I(inode)->csum_bytes == csum_bytes) {
Wang Shilong88e081bf2013-03-01 11:36:01 +00006016 calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacikf4881bc2013-03-25 16:03:35 -04006017 } else {
6018 u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes;
6019 u64 bytes;
6020
6021 /*
6022 * This is tricky, but first we need to figure out how much we
Nicholas D Steeves01327612016-05-19 21:18:45 -04006023 * freed from any free-ers that occurred during this
Josef Bacikf4881bc2013-03-25 16:03:35 -04006024 * reservation, so we reset ->csum_bytes to the csum_bytes
6025 * before we dropped our lock, and then call the free for the
6026 * number of bytes that were freed while we were trying our
6027 * reservation.
6028 */
6029 bytes = csum_bytes - BTRFS_I(inode)->csum_bytes;
6030 BTRFS_I(inode)->csum_bytes = csum_bytes;
6031 to_free = calc_csum_metadata_size(inode, bytes, 0);
6032
6033
6034 /*
6035 * Now we need to see how much we would have freed had we not
6036 * been making this reservation and our ->csum_bytes were not
6037 * artificially inflated.
6038 */
6039 BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes;
6040 bytes = csum_bytes - orig_csum_bytes;
6041 bytes = calc_csum_metadata_size(inode, bytes, 0);
6042
6043 /*
6044 * Now reset ->csum_bytes to what it should be. If bytes is
Nicholas D Steeves01327612016-05-19 21:18:45 -04006045 * more than to_free then we would have freed more space had we
Josef Bacikf4881bc2013-03-25 16:03:35 -04006046 * not had an artificially high ->csum_bytes, so we need to free
6047 * the remainder. If bytes is the same or less then we don't
6048 * need to do anything, the other free-ers did the correct
6049 * thing.
6050 */
6051 BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes;
6052 if (bytes > to_free)
6053 to_free = bytes - to_free;
6054 else
6055 to_free = 0;
6056 }
Wang Shilong88e081bf2013-03-01 11:36:01 +00006057 spin_unlock(&BTRFS_I(inode)->lock);
Dongsheng Yange2d1f922015-02-06 10:26:52 -05006058 if (dropped)
Wang Shilong88e081bf2013-03-01 11:36:01 +00006059 to_free += btrfs_calc_trans_metadata_size(root, dropped);
6060
6061 if (to_free) {
6062 btrfs_block_rsv_release(root, block_rsv, to_free);
6063 trace_btrfs_space_reservation(root->fs_info, "delalloc",
6064 btrfs_ino(inode), to_free, 0);
6065 }
6066 if (delalloc_lock)
6067 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
6068 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006069}
6070
Josef Bacik7709cde2011-08-04 10:25:02 -04006071/**
6072 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
6073 * @inode: the inode to release the reservation for
6074 * @num_bytes: the number of bytes we're releasing
6075 *
6076 * This will release the metadata reservation for an inode. This can be called
6077 * once we complete IO for a given set of bytes to release their metadata
6078 * reservations.
6079 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006080void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
6081{
6082 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik9e0baf62011-07-15 15:16:44 +00006083 u64 to_free = 0;
6084 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006085
6086 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik7709cde2011-08-04 10:25:02 -04006087 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacikdcab6a32015-02-11 15:08:59 -05006088 dropped = drop_outstanding_extent(inode, num_bytes);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006089
Miao Xie09348562013-02-07 10:12:07 +00006090 if (num_bytes)
6091 to_free = calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacik7709cde2011-08-04 10:25:02 -04006092 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00006093 if (dropped > 0)
6094 to_free += btrfs_calc_trans_metadata_size(root, dropped);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006095
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -04006096 if (btrfs_is_testing(root->fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04006097 return;
6098
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006099 trace_btrfs_space_reservation(root->fs_info, "delalloc",
6100 btrfs_ino(inode), to_free, 0);
Arne Jansenc5567232011-09-14 15:44:05 +02006101
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006102 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
6103 to_free);
6104}
6105
Josef Bacik7709cde2011-08-04 10:25:02 -04006106/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006107 * btrfs_delalloc_reserve_space - reserve data and metadata space for
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006108 * delalloc
6109 * @inode: inode we're writing to
6110 * @start: start range we are writing to
6111 * @len: how long the range we are writing to
6112 *
6113 * TODO: This function will finally replace old btrfs_delalloc_reserve_space()
6114 *
6115 * This will do the following things
6116 *
6117 * o reserve space in data space info for num bytes
6118 * and reserve precious corresponding qgroup space
6119 * (Done in check_data_free_space)
6120 *
6121 * o reserve space for metadata space, based on the number of outstanding
6122 * extents and how much csums will be needed
6123 * also reserve metadata space in a per root over-reserve method.
6124 * o add to the inodes->delalloc_bytes
6125 * o add it to the fs_info's delalloc inodes list.
6126 * (Above 3 all done in delalloc_reserve_metadata)
6127 *
6128 * Return 0 for success
6129 * Return <0 for error(-ENOSPC or -EQUOT)
6130 */
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006131int btrfs_delalloc_reserve_space(struct inode *inode, u64 start, u64 len)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006132{
6133 int ret;
6134
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006135 ret = btrfs_check_data_free_space(inode, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006136 if (ret < 0)
6137 return ret;
6138 ret = btrfs_delalloc_reserve_metadata(inode, len);
6139 if (ret < 0)
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006140 btrfs_free_reserved_data_space(inode, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006141 return ret;
6142}
6143
6144/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006145 * btrfs_delalloc_release_space - release data and metadata space for delalloc
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006146 * @inode: inode we're releasing space for
6147 * @start: start position of the space already reserved
6148 * @len: the len of the space already reserved
6149 *
6150 * This must be matched with a call to btrfs_delalloc_reserve_space. This is
6151 * called in the case that we don't need the metadata AND data reservations
6152 * anymore. So if there is an error or we insert an inline extent.
6153 *
6154 * This function will release the metadata space that was not used and will
6155 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
6156 * list if there are no delalloc bytes left.
6157 * Also it will handle the qgroup reserved space.
6158 */
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006159void btrfs_delalloc_release_space(struct inode *inode, u64 start, u64 len)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006160{
6161 btrfs_delalloc_release_metadata(inode, len);
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006162 btrfs_free_reserved_data_space(inode, start, len);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006163}
6164
Josef Bacikce93ec52014-11-17 15:45:48 -05006165static int update_block_group(struct btrfs_trans_handle *trans,
6166 struct btrfs_root *root, u64 bytenr,
6167 u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04006168{
Josef Bacik0af3d002010-06-21 14:48:16 -04006169 struct btrfs_block_group_cache *cache = NULL;
Chris Mason9078a3e2007-04-26 16:46:15 -04006170 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04006171 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006172 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04006173 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04006174 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04006175
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006176 /* block accounting for super block */
Miao Xieeb73c1b2013-05-15 07:48:22 +00006177 spin_lock(&info->delalloc_root_lock);
David Sterba6c417612011-04-13 15:41:04 +02006178 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006179 if (alloc)
6180 old_val += num_bytes;
6181 else
6182 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02006183 btrfs_set_super_bytes_used(info->super_copy, old_val);
Miao Xieeb73c1b2013-05-15 07:48:22 +00006184 spin_unlock(&info->delalloc_root_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006185
Chris Masond3977122009-01-05 21:25:51 -05006186 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04006187 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05006188 if (!cache)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006189 return -ENOENT;
Yan, Zhengb742bb82010-05-16 10:46:24 -04006190 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
6191 BTRFS_BLOCK_GROUP_RAID1 |
6192 BTRFS_BLOCK_GROUP_RAID10))
6193 factor = 2;
6194 else
6195 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04006196 /*
6197 * If this block group has free space cache written out, we
6198 * need to make sure to load it if we are removing space. This
6199 * is because we need the unpinning stage to actually add the
6200 * space back to the block group, otherwise we will leak space.
6201 */
6202 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Liu Bof6373bf2012-12-27 09:01:18 +00006203 cache_block_group(cache, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04006204
Chris Masondb945352007-10-15 16:15:53 -04006205 byte_in_group = bytenr - cache->key.objectid;
6206 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04006207
Josef Bacik25179202008-10-29 14:49:05 -04006208 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04006209 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04006210
Jeff Mahoney3cdde222016-06-09 21:38:35 -04006211 if (btrfs_test_opt(root->fs_info, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04006212 cache->disk_cache_state < BTRFS_DC_CLEAR)
6213 cache->disk_cache_state = BTRFS_DC_CLEAR;
6214
Chris Mason9078a3e2007-04-26 16:46:15 -04006215 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04006216 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04006217 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04006218 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006219 btrfs_set_block_group_used(&cache->item, old_val);
6220 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006221 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04006222 cache->space_info->bytes_used += num_bytes;
6223 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04006224 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006225 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04006226 } else {
Chris Masondb945352007-10-15 16:15:53 -04006227 old_val -= num_bytes;
Filipe Mananaae0ab002014-11-26 15:28:52 +00006228 btrfs_set_block_group_used(&cache->item, old_val);
6229 cache->pinned += num_bytes;
6230 cache->space_info->bytes_pinned += num_bytes;
6231 cache->space_info->bytes_used -= num_bytes;
6232 cache->space_info->disk_used -= num_bytes * factor;
6233 spin_unlock(&cache->lock);
6234 spin_unlock(&cache->space_info->lock);
Josef Bacik47ab2a62014-09-18 11:20:02 -04006235
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006236 trace_btrfs_space_reservation(root->fs_info, "pinned",
6237 cache->space_info->flags,
6238 num_bytes, 1);
Filipe Mananaae0ab002014-11-26 15:28:52 +00006239 set_extent_dirty(info->pinned_extents,
6240 bytenr, bytenr + num_bytes - 1,
6241 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04006242 }
Chris Mason1bbc6212015-04-06 12:46:08 -07006243
6244 spin_lock(&trans->transaction->dirty_bgs_lock);
6245 if (list_empty(&cache->dirty_list)) {
6246 list_add_tail(&cache->dirty_list,
6247 &trans->transaction->dirty_bgs);
6248 trans->transaction->num_dirty_bgs++;
6249 btrfs_get_block_group(cache);
6250 }
6251 spin_unlock(&trans->transaction->dirty_bgs_lock);
6252
Filipe Manana036a9342015-11-23 15:25:16 +00006253 /*
6254 * No longer have used bytes in this block group, queue it for
6255 * deletion. We do this after adding the block group to the
6256 * dirty list to avoid races between cleaner kthread and space
6257 * cache writeout.
6258 */
6259 if (!alloc && old_val == 0) {
6260 spin_lock(&info->unused_bgs_lock);
6261 if (list_empty(&cache->bg_list)) {
6262 btrfs_get_block_group(cache);
6263 list_add_tail(&cache->bg_list,
6264 &info->unused_bgs);
6265 }
6266 spin_unlock(&info->unused_bgs_lock);
6267 }
6268
Chris Masonfa9c0d792009-04-03 09:47:43 -04006269 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04006270 total -= num_bytes;
6271 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006272 }
6273 return 0;
6274}
Chris Mason6324fbf2008-03-24 15:01:59 -04006275
Chris Masona061fc82008-05-07 11:43:44 -04006276static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
6277{
Josef Bacik0f9dd462008-09-23 13:14:11 -04006278 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05006279 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006280
Liu Boa1897fd2012-12-27 09:01:23 +00006281 spin_lock(&root->fs_info->block_group_cache_lock);
6282 bytenr = root->fs_info->first_logical_byte;
6283 spin_unlock(&root->fs_info->block_group_cache_lock);
6284
6285 if (bytenr < (u64)-1)
6286 return bytenr;
6287
Josef Bacik0f9dd462008-09-23 13:14:11 -04006288 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
6289 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04006290 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006291
Yan Zhengd2fb3432008-12-11 16:30:39 -05006292 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006293 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05006294
6295 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04006296}
6297
Yan, Zhengf0486c62010-05-16 10:46:25 -04006298static int pin_down_extent(struct btrfs_root *root,
6299 struct btrfs_block_group_cache *cache,
6300 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05006301{
Yan Zheng11833d62009-09-11 16:11:19 -04006302 spin_lock(&cache->space_info->lock);
6303 spin_lock(&cache->lock);
6304 cache->pinned += num_bytes;
6305 cache->space_info->bytes_pinned += num_bytes;
6306 if (reserved) {
6307 cache->reserved -= num_bytes;
6308 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05006309 }
Yan Zheng11833d62009-09-11 16:11:19 -04006310 spin_unlock(&cache->lock);
6311 spin_unlock(&cache->space_info->lock);
6312
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006313 trace_btrfs_space_reservation(root->fs_info, "pinned",
6314 cache->space_info->flags, num_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006315 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
6316 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Yan324ae4d2007-11-16 14:57:08 -05006317 return 0;
6318}
Chris Mason9078a3e2007-04-26 16:46:15 -04006319
Yan, Zhengf0486c62010-05-16 10:46:25 -04006320/*
6321 * this function must be called within transaction
6322 */
6323int btrfs_pin_extent(struct btrfs_root *root,
6324 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04006325{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006326 struct btrfs_block_group_cache *cache;
6327
6328 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006329 BUG_ON(!cache); /* Logic error */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006330
6331 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
6332
6333 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04006334 return 0;
6335}
Zheng Yane8569812008-09-26 10:05:48 -04006336
Yan, Zhengf0486c62010-05-16 10:46:25 -04006337/*
Chris Masone688b7252011-10-31 20:52:39 -04006338 * this function must be called within transaction
Yan, Zhengf0486c62010-05-16 10:46:25 -04006339 */
Liu Bodcfac412012-12-27 09:01:20 +00006340int btrfs_pin_extent_for_log_replay(struct btrfs_root *root,
Chris Masone688b7252011-10-31 20:52:39 -04006341 u64 bytenr, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006342{
Chris Masone688b7252011-10-31 20:52:39 -04006343 struct btrfs_block_group_cache *cache;
Josef Bacikb50c6e22013-04-25 15:55:30 -04006344 int ret;
Chris Masone688b7252011-10-31 20:52:39 -04006345
6346 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006347 if (!cache)
6348 return -EINVAL;
Chris Masone688b7252011-10-31 20:52:39 -04006349
6350 /*
6351 * pull in the free space cache (if any) so that our pin
6352 * removes the free space from the cache. We have load_only set
6353 * to one because the slow code to read in the free extents does check
6354 * the pinned extents.
6355 */
Liu Bof6373bf2012-12-27 09:01:18 +00006356 cache_block_group(cache, 1);
Chris Masone688b7252011-10-31 20:52:39 -04006357
6358 pin_down_extent(root, cache, bytenr, num_bytes, 0);
6359
6360 /* remove us from the free space cache (if we're there at all) */
Josef Bacikb50c6e22013-04-25 15:55:30 -04006361 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
Chris Masone688b7252011-10-31 20:52:39 -04006362 btrfs_put_block_group(cache);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006363 return ret;
Chris Masone688b7252011-10-31 20:52:39 -04006364}
6365
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006366static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes)
6367{
6368 int ret;
6369 struct btrfs_block_group_cache *block_group;
6370 struct btrfs_caching_control *caching_ctl;
6371
6372 block_group = btrfs_lookup_block_group(root->fs_info, start);
6373 if (!block_group)
6374 return -EINVAL;
6375
6376 cache_block_group(block_group, 0);
6377 caching_ctl = get_caching_control(block_group);
6378
6379 if (!caching_ctl) {
6380 /* Logic error */
6381 BUG_ON(!block_group_cache_done(block_group));
6382 ret = btrfs_remove_free_space(block_group, start, num_bytes);
6383 } else {
6384 mutex_lock(&caching_ctl->mutex);
6385
6386 if (start >= caching_ctl->progress) {
6387 ret = add_excluded_extent(root, start, num_bytes);
6388 } else if (start + num_bytes <= caching_ctl->progress) {
6389 ret = btrfs_remove_free_space(block_group,
6390 start, num_bytes);
6391 } else {
6392 num_bytes = caching_ctl->progress - start;
6393 ret = btrfs_remove_free_space(block_group,
6394 start, num_bytes);
6395 if (ret)
6396 goto out_lock;
6397
6398 num_bytes = (start + num_bytes) -
6399 caching_ctl->progress;
6400 start = caching_ctl->progress;
6401 ret = add_excluded_extent(root, start, num_bytes);
6402 }
6403out_lock:
6404 mutex_unlock(&caching_ctl->mutex);
6405 put_caching_control(caching_ctl);
6406 }
6407 btrfs_put_block_group(block_group);
6408 return ret;
6409}
6410
6411int btrfs_exclude_logged_extents(struct btrfs_root *log,
6412 struct extent_buffer *eb)
6413{
6414 struct btrfs_file_extent_item *item;
6415 struct btrfs_key key;
6416 int found_type;
6417 int i;
6418
6419 if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS))
6420 return 0;
6421
6422 for (i = 0; i < btrfs_header_nritems(eb); i++) {
6423 btrfs_item_key_to_cpu(eb, &key, i);
6424 if (key.type != BTRFS_EXTENT_DATA_KEY)
6425 continue;
6426 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
6427 found_type = btrfs_file_extent_type(eb, item);
6428 if (found_type == BTRFS_FILE_EXTENT_INLINE)
6429 continue;
6430 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
6431 continue;
6432 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
6433 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
6434 __exclude_logged_extent(log, key.objectid, key.offset);
6435 }
6436
6437 return 0;
6438}
6439
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006440static void
6441btrfs_inc_block_group_reservations(struct btrfs_block_group_cache *bg)
6442{
6443 atomic_inc(&bg->reservations);
6444}
6445
6446void btrfs_dec_block_group_reservations(struct btrfs_fs_info *fs_info,
6447 const u64 start)
6448{
6449 struct btrfs_block_group_cache *bg;
6450
6451 bg = btrfs_lookup_block_group(fs_info, start);
6452 ASSERT(bg);
6453 if (atomic_dec_and_test(&bg->reservations))
6454 wake_up_atomic_t(&bg->reservations);
6455 btrfs_put_block_group(bg);
6456}
6457
6458static int btrfs_wait_bg_reservations_atomic_t(atomic_t *a)
6459{
6460 schedule();
6461 return 0;
6462}
6463
6464void btrfs_wait_block_group_reservations(struct btrfs_block_group_cache *bg)
6465{
6466 struct btrfs_space_info *space_info = bg->space_info;
6467
6468 ASSERT(bg->ro);
6469
6470 if (!(bg->flags & BTRFS_BLOCK_GROUP_DATA))
6471 return;
6472
6473 /*
6474 * Our block group is read only but before we set it to read only,
6475 * some task might have had allocated an extent from it already, but it
6476 * has not yet created a respective ordered extent (and added it to a
6477 * root's list of ordered extents).
6478 * Therefore wait for any task currently allocating extents, since the
6479 * block group's reservations counter is incremented while a read lock
6480 * on the groups' semaphore is held and decremented after releasing
6481 * the read access on that semaphore and creating the ordered extent.
6482 */
6483 down_write(&space_info->groups_sem);
6484 up_write(&space_info->groups_sem);
6485
6486 wait_on_atomic_t(&bg->reservations,
6487 btrfs_wait_bg_reservations_atomic_t,
6488 TASK_UNINTERRUPTIBLE);
6489}
6490
Josef Bacikfb25e912011-07-26 17:00:46 -04006491/**
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006492 * btrfs_add_reserved_bytes - update the block_group and space info counters
Josef Bacikfb25e912011-07-26 17:00:46 -04006493 * @cache: The cache we are manipulating
Wang Xiaoguang18513092016-07-25 15:51:40 +08006494 * @ram_bytes: The number of bytes of file content, and will be same to
6495 * @num_bytes except for the compress path.
Josef Bacikfb25e912011-07-26 17:00:46 -04006496 * @num_bytes: The number of bytes in question
Miao Xiee570fd22014-06-19 10:42:50 +08006497 * @delalloc: The blocks are allocated for the delalloc write
Josef Bacikfb25e912011-07-26 17:00:46 -04006498 *
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006499 * This is called by the allocator when it reserves space. Metadata
6500 * reservations should be called with RESERVE_ALLOC so we do the proper
Josef Bacikfb25e912011-07-26 17:00:46 -04006501 * ENOSPC accounting. For data we handle the reservation through clearing the
6502 * delalloc bits in the io_tree. We have to do this since we could end up
6503 * allocating less disk space for the amount of data we have reserved in the
6504 * case of compression.
6505 *
6506 * If this is a reservation and the block group has become read only we cannot
6507 * make the reservation and return -EAGAIN, otherwise this function always
6508 * succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04006509 */
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006510static int btrfs_add_reserved_bytes(struct btrfs_block_group_cache *cache,
Wang Xiaoguang18513092016-07-25 15:51:40 +08006511 u64 ram_bytes, u64 num_bytes, int delalloc)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006512{
Josef Bacikfb25e912011-07-26 17:00:46 -04006513 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006514 int ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006515
Josef Bacikfb25e912011-07-26 17:00:46 -04006516 spin_lock(&space_info->lock);
6517 spin_lock(&cache->lock);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006518 if (cache->ro) {
6519 ret = -EAGAIN;
Josef Bacikfb25e912011-07-26 17:00:46 -04006520 } else {
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006521 cache->reserved += num_bytes;
6522 space_info->bytes_reserved += num_bytes;
Miao Xiee570fd22014-06-19 10:42:50 +08006523
Wang Xiaoguang18513092016-07-25 15:51:40 +08006524 trace_btrfs_space_reservation(cache->fs_info,
6525 "space_info", space_info->flags,
6526 ram_bytes, 0);
6527 space_info->bytes_may_use -= ram_bytes;
Miao Xiee570fd22014-06-19 10:42:50 +08006528 if (delalloc)
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006529 cache->delalloc_bytes += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006530 }
Josef Bacikfb25e912011-07-26 17:00:46 -04006531 spin_unlock(&cache->lock);
6532 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006533 return ret;
6534}
6535
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006536/**
6537 * btrfs_free_reserved_bytes - update the block_group and space info counters
6538 * @cache: The cache we are manipulating
6539 * @num_bytes: The number of bytes in question
6540 * @delalloc: The blocks are allocated for the delalloc write
6541 *
6542 * This is called by somebody who is freeing space that was never actually used
6543 * on disk. For example if you reserve some space for a new leaf in transaction
6544 * A and before transaction A commits you free that leaf, you call this with
6545 * reserve set to 0 in order to clear the reservation.
6546 */
6547
6548static int btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache,
6549 u64 num_bytes, int delalloc)
6550{
6551 struct btrfs_space_info *space_info = cache->space_info;
6552 int ret = 0;
6553
6554 spin_lock(&space_info->lock);
6555 spin_lock(&cache->lock);
6556 if (cache->ro)
6557 space_info->bytes_readonly += num_bytes;
6558 cache->reserved -= num_bytes;
6559 space_info->bytes_reserved -= num_bytes;
6560
6561 if (delalloc)
6562 cache->delalloc_bytes -= num_bytes;
6563 spin_unlock(&cache->lock);
6564 spin_unlock(&space_info->lock);
6565 return ret;
6566}
Jeff Mahoney143bede2012-03-01 14:56:26 +01006567void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04006568 struct btrfs_root *root)
6569{
6570 struct btrfs_fs_info *fs_info = root->fs_info;
6571 struct btrfs_caching_control *next;
6572 struct btrfs_caching_control *caching_ctl;
6573 struct btrfs_block_group_cache *cache;
6574
Josef Bacik9e351cc2014-03-13 15:42:13 -04006575 down_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04006576
6577 list_for_each_entry_safe(caching_ctl, next,
6578 &fs_info->caching_block_groups, list) {
6579 cache = caching_ctl->block_group;
6580 if (block_group_cache_done(cache)) {
6581 cache->last_byte_to_unpin = (u64)-1;
6582 list_del_init(&caching_ctl->list);
6583 put_caching_control(caching_ctl);
6584 } else {
6585 cache->last_byte_to_unpin = caching_ctl->progress;
6586 }
6587 }
6588
6589 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6590 fs_info->pinned_extents = &fs_info->freed_extents[1];
6591 else
6592 fs_info->pinned_extents = &fs_info->freed_extents[0];
6593
Josef Bacik9e351cc2014-03-13 15:42:13 -04006594 up_write(&fs_info->commit_root_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006595
6596 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04006597}
6598
Josef Bacikc759c4e2015-10-02 15:25:10 -04006599/*
6600 * Returns the free cluster for the given space info and sets empty_cluster to
6601 * what it should be based on the mount options.
6602 */
6603static struct btrfs_free_cluster *
6604fetch_cluster_info(struct btrfs_root *root, struct btrfs_space_info *space_info,
6605 u64 *empty_cluster)
6606{
6607 struct btrfs_free_cluster *ret = NULL;
Jeff Mahoney3cdde222016-06-09 21:38:35 -04006608 bool ssd = btrfs_test_opt(root->fs_info, SSD);
Josef Bacikc759c4e2015-10-02 15:25:10 -04006609
6610 *empty_cluster = 0;
6611 if (btrfs_mixed_space_info(space_info))
6612 return ret;
6613
6614 if (ssd)
Byongho Leeee221842015-12-15 01:42:10 +09006615 *empty_cluster = SZ_2M;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006616 if (space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
6617 ret = &root->fs_info->meta_alloc_cluster;
6618 if (!ssd)
Byongho Leeee221842015-12-15 01:42:10 +09006619 *empty_cluster = SZ_64K;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006620 } else if ((space_info->flags & BTRFS_BLOCK_GROUP_DATA) && ssd) {
6621 ret = &root->fs_info->data_alloc_cluster;
6622 }
6623
6624 return ret;
6625}
6626
Filipe Manana678886b2014-12-07 21:31:47 +00006627static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end,
6628 const bool return_free_space)
Yan Zheng11833d62009-09-11 16:11:19 -04006629{
6630 struct btrfs_fs_info *fs_info = root->fs_info;
6631 struct btrfs_block_group_cache *cache = NULL;
Josef Bacik7b398f82012-10-22 15:52:28 -04006632 struct btrfs_space_info *space_info;
6633 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006634 struct btrfs_free_cluster *cluster = NULL;
Yan Zheng11833d62009-09-11 16:11:19 -04006635 u64 len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006636 u64 total_unpinned = 0;
6637 u64 empty_cluster = 0;
Josef Bacik7b398f82012-10-22 15:52:28 -04006638 bool readonly;
Yan Zheng11833d62009-09-11 16:11:19 -04006639
6640 while (start <= end) {
Josef Bacik7b398f82012-10-22 15:52:28 -04006641 readonly = false;
Yan Zheng11833d62009-09-11 16:11:19 -04006642 if (!cache ||
6643 start >= cache->key.objectid + cache->key.offset) {
6644 if (cache)
6645 btrfs_put_block_group(cache);
Josef Bacikc759c4e2015-10-02 15:25:10 -04006646 total_unpinned = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006647 cache = btrfs_lookup_block_group(fs_info, start);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006648 BUG_ON(!cache); /* Logic error */
Josef Bacikc759c4e2015-10-02 15:25:10 -04006649
6650 cluster = fetch_cluster_info(root,
6651 cache->space_info,
6652 &empty_cluster);
6653 empty_cluster <<= 1;
Yan Zheng11833d62009-09-11 16:11:19 -04006654 }
6655
6656 len = cache->key.objectid + cache->key.offset - start;
6657 len = min(len, end + 1 - start);
6658
6659 if (start < cache->last_byte_to_unpin) {
6660 len = min(len, cache->last_byte_to_unpin - start);
Filipe Manana678886b2014-12-07 21:31:47 +00006661 if (return_free_space)
6662 btrfs_add_free_space(cache, start, len);
Yan Zheng11833d62009-09-11 16:11:19 -04006663 }
Josef Bacik25179202008-10-29 14:49:05 -04006664
Yan, Zhengf0486c62010-05-16 10:46:25 -04006665 start += len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006666 total_unpinned += len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006667 space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006668
Josef Bacikc759c4e2015-10-02 15:25:10 -04006669 /*
6670 * If this space cluster has been marked as fragmented and we've
6671 * unpinned enough in this block group to potentially allow a
6672 * cluster to be created inside of it go ahead and clear the
6673 * fragmented check.
6674 */
6675 if (cluster && cluster->fragmented &&
6676 total_unpinned > empty_cluster) {
6677 spin_lock(&cluster->lock);
6678 cluster->fragmented = 0;
6679 spin_unlock(&cluster->lock);
6680 }
6681
Josef Bacik7b398f82012-10-22 15:52:28 -04006682 spin_lock(&space_info->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006683 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006684 cache->pinned -= len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006685 space_info->bytes_pinned -= len;
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006686
6687 trace_btrfs_space_reservation(fs_info, "pinned",
6688 space_info->flags, len, 0);
Josef Bacik4f4db212015-09-29 11:40:47 -04006689 space_info->max_extent_size = 0;
Liu Bod288db52014-07-02 16:58:01 +08006690 percpu_counter_add(&space_info->total_bytes_pinned, -len);
Josef Bacik7b398f82012-10-22 15:52:28 -04006691 if (cache->ro) {
6692 space_info->bytes_readonly += len;
6693 readonly = true;
6694 }
Josef Bacik25179202008-10-29 14:49:05 -04006695 spin_unlock(&cache->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006696 if (!readonly && return_free_space &&
6697 global_rsv->space_info == space_info) {
6698 u64 to_add = len;
6699 WARN_ON(!return_free_space);
Josef Bacik7b398f82012-10-22 15:52:28 -04006700 spin_lock(&global_rsv->lock);
6701 if (!global_rsv->full) {
Josef Bacik957780e2016-05-17 13:30:55 -04006702 to_add = min(len, global_rsv->size -
6703 global_rsv->reserved);
6704 global_rsv->reserved += to_add;
6705 space_info->bytes_may_use += to_add;
Josef Bacik7b398f82012-10-22 15:52:28 -04006706 if (global_rsv->reserved >= global_rsv->size)
6707 global_rsv->full = 1;
Josef Bacik957780e2016-05-17 13:30:55 -04006708 trace_btrfs_space_reservation(fs_info,
6709 "space_info",
6710 space_info->flags,
6711 to_add, 1);
6712 len -= to_add;
Josef Bacik7b398f82012-10-22 15:52:28 -04006713 }
6714 spin_unlock(&global_rsv->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006715 /* Add to any tickets we may have */
6716 if (len)
6717 space_info_add_new_bytes(fs_info, space_info,
6718 len);
Josef Bacik7b398f82012-10-22 15:52:28 -04006719 }
6720 spin_unlock(&space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006721 }
6722
6723 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006724 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04006725 return 0;
6726}
6727
6728int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04006729 struct btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -05006730{
Yan Zheng11833d62009-09-11 16:11:19 -04006731 struct btrfs_fs_info *fs_info = root->fs_info;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006732 struct btrfs_block_group_cache *block_group, *tmp;
6733 struct list_head *deleted_bgs;
Yan Zheng11833d62009-09-11 16:11:19 -04006734 struct extent_io_tree *unpin;
Chris Mason1a5bc162007-10-15 16:15:26 -04006735 u64 start;
6736 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05006737 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05006738
Yan Zheng11833d62009-09-11 16:11:19 -04006739 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6740 unpin = &fs_info->freed_extents[1];
6741 else
6742 unpin = &fs_info->freed_extents[0];
6743
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006744 while (!trans->aborted) {
Filipe Mananad4b450c2015-01-29 19:18:25 +00006745 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Chris Mason1a5bc162007-10-15 16:15:26 -04006746 ret = find_first_extent_bit(unpin, 0, &start, &end,
Josef Bacike6138872012-09-27 17:07:30 -04006747 EXTENT_DIRTY, NULL);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006748 if (ret) {
6749 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05006750 break;
Filipe Mananad4b450c2015-01-29 19:18:25 +00006751 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05006752
Jeff Mahoney3cdde222016-06-09 21:38:35 -04006753 if (btrfs_test_opt(root->fs_info, DISCARD))
Li Dongyang5378e602011-03-24 10:24:27 +00006754 ret = btrfs_discard_extent(root, start,
6755 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05006756
David Sterbaaf6f8f62016-04-26 23:54:39 +02006757 clear_extent_dirty(unpin, start, end);
Filipe Manana678886b2014-12-07 21:31:47 +00006758 unpin_extent_range(root, start, end, true);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006759 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masonb9473432009-03-13 11:00:37 -04006760 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05006761 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006762
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006763 /*
6764 * Transaction is finished. We don't need the lock anymore. We
6765 * do need to clean up the block groups in case of a transaction
6766 * abort.
6767 */
6768 deleted_bgs = &trans->transaction->deleted_bgs;
6769 list_for_each_entry_safe(block_group, tmp, deleted_bgs, bg_list) {
6770 u64 trimmed = 0;
6771
6772 ret = -EROFS;
6773 if (!trans->aborted)
6774 ret = btrfs_discard_extent(root,
6775 block_group->key.objectid,
6776 block_group->key.offset,
6777 &trimmed);
6778
6779 list_del_init(&block_group->bg_list);
6780 btrfs_put_block_group_trimming(block_group);
6781 btrfs_put_block_group(block_group);
6782
6783 if (ret) {
6784 const char *errstr = btrfs_decode_error(ret);
6785 btrfs_warn(fs_info,
6786 "Discard failed while removing blockgroup: errno=%d %s\n",
6787 ret, errstr);
6788 }
6789 }
6790
Chris Masone20d96d2007-03-22 12:13:20 -04006791 return 0;
6792}
6793
Josef Bacikb150a4f2013-06-19 15:00:04 -04006794static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes,
6795 u64 owner, u64 root_objectid)
6796{
6797 struct btrfs_space_info *space_info;
6798 u64 flags;
6799
6800 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
6801 if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID)
6802 flags = BTRFS_BLOCK_GROUP_SYSTEM;
6803 else
6804 flags = BTRFS_BLOCK_GROUP_METADATA;
6805 } else {
6806 flags = BTRFS_BLOCK_GROUP_DATA;
6807 }
6808
6809 space_info = __find_space_info(fs_info, flags);
6810 BUG_ON(!space_info); /* Logic bug */
6811 percpu_counter_add(&space_info->total_bytes_pinned, num_bytes);
6812}
6813
6814
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006815static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
6816 struct btrfs_root *root,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006817 struct btrfs_delayed_ref_node *node, u64 parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006818 u64 root_objectid, u64 owner_objectid,
6819 u64 owner_offset, int refs_to_drop,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006820 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05006821{
Chris Masone2fa7222007-03-12 16:22:34 -04006822 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006823 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04006824 struct btrfs_fs_info *info = root->fs_info;
6825 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04006826 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006827 struct btrfs_extent_item *ei;
6828 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05006829 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006830 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05006831 int extent_slot = 0;
6832 int found_extent = 0;
6833 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006834 u32 item_size;
6835 u64 refs;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006836 u64 bytenr = node->bytenr;
6837 u64 num_bytes = node->num_bytes;
Josef Bacikfcebe452014-05-13 17:30:47 -07006838 int last_ref = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05006839 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
6840 SKINNY_METADATA);
Chris Mason037e6392007-03-07 11:50:24 -05006841
Chris Mason5caf2a02007-04-02 11:20:42 -04006842 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04006843 if (!path)
6844 return -ENOMEM;
6845
David Sterbae4058b52015-11-27 16:31:35 +01006846 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04006847 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006848
6849 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
6850 BUG_ON(!is_data && refs_to_drop != 1);
6851
Josef Bacik3173a182013-03-07 14:22:04 -05006852 if (is_data)
6853 skinny_metadata = 0;
6854
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006855 ret = lookup_extent_backref(trans, extent_root, path, &iref,
6856 bytenr, num_bytes, parent,
6857 root_objectid, owner_objectid,
6858 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05006859 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05006860 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006861 while (extent_slot >= 0) {
6862 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05006863 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006864 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05006865 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006866 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
6867 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05006868 found_extent = 1;
6869 break;
6870 }
Josef Bacik3173a182013-03-07 14:22:04 -05006871 if (key.type == BTRFS_METADATA_ITEM_KEY &&
6872 key.offset == owner_objectid) {
6873 found_extent = 1;
6874 break;
6875 }
Chris Mason952fcca2008-02-18 16:33:44 -05006876 if (path->slots[0] - extent_slot > 5)
6877 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006878 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05006879 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006880#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6881 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
6882 if (found_extent && item_size < sizeof(*ei))
6883 found_extent = 0;
6884#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04006885 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006886 BUG_ON(iref);
Chris Mason56bec292009-03-13 10:10:06 -04006887 ret = remove_extent_backref(trans, extent_root, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006888 NULL, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07006889 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06006890 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006891 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006892 goto out;
6893 }
David Sterbab3b4aa72011-04-21 01:20:15 +02006894 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04006895 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006896
6897 key.objectid = bytenr;
6898 key.type = BTRFS_EXTENT_ITEM_KEY;
6899 key.offset = num_bytes;
6900
Josef Bacik3173a182013-03-07 14:22:04 -05006901 if (!is_data && skinny_metadata) {
6902 key.type = BTRFS_METADATA_ITEM_KEY;
6903 key.offset = owner_objectid;
6904 }
6905
Zheng Yan31840ae2008-09-23 13:14:14 -04006906 ret = btrfs_search_slot(trans, extent_root,
6907 &key, path, -1, 1);
Josef Bacik3173a182013-03-07 14:22:04 -05006908 if (ret > 0 && skinny_metadata && path->slots[0]) {
6909 /*
6910 * Couldn't find our skinny metadata item,
6911 * see if we have ye olde extent item.
6912 */
6913 path->slots[0]--;
6914 btrfs_item_key_to_cpu(path->nodes[0], &key,
6915 path->slots[0]);
6916 if (key.objectid == bytenr &&
6917 key.type == BTRFS_EXTENT_ITEM_KEY &&
6918 key.offset == num_bytes)
6919 ret = 0;
6920 }
6921
6922 if (ret > 0 && skinny_metadata) {
6923 skinny_metadata = false;
Filipe Manana9ce49a02014-04-24 15:15:28 +01006924 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05006925 key.type = BTRFS_EXTENT_ITEM_KEY;
6926 key.offset = num_bytes;
6927 btrfs_release_path(path);
6928 ret = btrfs_search_slot(trans, extent_root,
6929 &key, path, -1, 1);
6930 }
6931
Josef Bacikf3465ca2008-11-12 14:19:50 -05006932 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006933 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006934 ret, bytenr);
Josef Bacikb783e622011-07-13 15:03:50 +00006935 if (ret > 0)
6936 btrfs_print_leaf(extent_root,
6937 path->nodes[0]);
Josef Bacikf3465ca2008-11-12 14:19:50 -05006938 }
David Sterba005d6422012-09-18 07:52:32 -06006939 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006940 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006941 goto out;
6942 }
Zheng Yan31840ae2008-09-23 13:14:14 -04006943 extent_slot = path->slots[0];
6944 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306945 } else if (WARN_ON(ret == -ENOENT)) {
Chris Mason7bb86312007-12-11 09:25:06 -05006946 btrfs_print_leaf(extent_root, path->nodes[0]);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006947 btrfs_err(info,
6948 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006949 bytenr, parent, root_objectid, owner_objectid,
6950 owner_offset);
Jeff Mahoney66642832016-06-10 18:19:25 -04006951 btrfs_abort_transaction(trans, ret);
Josef Bacikc4a050b2014-03-14 16:36:53 -04006952 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006953 } else {
Jeff Mahoney66642832016-06-10 18:19:25 -04006954 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006955 goto out;
Chris Mason7bb86312007-12-11 09:25:06 -05006956 }
Chris Mason5f39d392007-10-15 16:14:19 -04006957
6958 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006959 item_size = btrfs_item_size_nr(leaf, extent_slot);
6960#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6961 if (item_size < sizeof(*ei)) {
6962 BUG_ON(found_extent || extent_slot != path->slots[0]);
6963 ret = convert_extent_item_v0(trans, extent_root, path,
6964 owner_objectid, 0);
David Sterba005d6422012-09-18 07:52:32 -06006965 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006966 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006967 goto out;
6968 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006969
David Sterbab3b4aa72011-04-21 01:20:15 +02006970 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006971 path->leave_spinning = 1;
6972
6973 key.objectid = bytenr;
6974 key.type = BTRFS_EXTENT_ITEM_KEY;
6975 key.offset = num_bytes;
6976
6977 ret = btrfs_search_slot(trans, extent_root, &key, path,
6978 -1, 1);
6979 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006980 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006981 ret, bytenr);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006982 btrfs_print_leaf(extent_root, path->nodes[0]);
6983 }
David Sterba005d6422012-09-18 07:52:32 -06006984 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006985 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006986 goto out;
6987 }
6988
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006989 extent_slot = path->slots[0];
6990 leaf = path->nodes[0];
6991 item_size = btrfs_item_size_nr(leaf, extent_slot);
6992 }
6993#endif
6994 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05006995 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04006996 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05006997 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
6998 key.type == BTRFS_EXTENT_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006999 struct btrfs_tree_block_info *bi;
7000 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
7001 bi = (struct btrfs_tree_block_info *)(ei + 1);
7002 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05007003 }
7004
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007005 refs = btrfs_extent_refs(leaf, ei);
Josef Bacik32b02532013-04-24 16:38:50 -04007006 if (refs < refs_to_drop) {
7007 btrfs_err(info, "trying to drop %d refs but we only have %Lu "
David Sterba351fd352014-05-15 16:48:20 +02007008 "for bytenr %Lu", refs_to_drop, refs, bytenr);
Josef Bacik32b02532013-04-24 16:38:50 -04007009 ret = -EINVAL;
Jeff Mahoney66642832016-06-10 18:19:25 -04007010 btrfs_abort_transaction(trans, ret);
Josef Bacik32b02532013-04-24 16:38:50 -04007011 goto out;
7012 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007013 refs -= refs_to_drop;
7014
7015 if (refs > 0) {
7016 if (extent_op)
7017 __run_delayed_extent_op(extent_op, leaf, ei);
7018 /*
7019 * In the case of inline back ref, reference count will
7020 * be updated by remove_extent_backref
7021 */
7022 if (iref) {
7023 BUG_ON(!found_extent);
7024 } else {
7025 btrfs_set_extent_refs(leaf, ei, refs);
7026 btrfs_mark_buffer_dirty(leaf);
7027 }
7028 if (found_extent) {
7029 ret = remove_extent_backref(trans, extent_root, path,
7030 iref, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07007031 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06007032 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007033 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007034 goto out;
7035 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007036 }
Josef Bacikb150a4f2013-06-19 15:00:04 -04007037 add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid,
7038 root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007039 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007040 if (found_extent) {
7041 BUG_ON(is_data && refs_to_drop !=
Zhaolei9ed0dea2015-08-06 22:16:24 +08007042 extent_data_ref_count(path, iref));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007043 if (iref) {
7044 BUG_ON(path->slots[0] != extent_slot);
7045 } else {
7046 BUG_ON(path->slots[0] != extent_slot + 1);
7047 path->slots[0] = extent_slot;
7048 num_to_del = 2;
7049 }
Chris Mason78fae272007-03-25 11:35:08 -04007050 }
Chris Masonb9473432009-03-13 11:00:37 -04007051
Josef Bacikfcebe452014-05-13 17:30:47 -07007052 last_ref = 1;
Chris Mason952fcca2008-02-18 16:33:44 -05007053 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
7054 num_to_del);
David Sterba005d6422012-09-18 07:52:32 -06007055 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007056 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007057 goto out;
7058 }
David Sterbab3b4aa72011-04-21 01:20:15 +02007059 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01007060
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007061 if (is_data) {
Chris Mason459931e2008-12-10 09:10:46 -05007062 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
David Sterba005d6422012-09-18 07:52:32 -06007063 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007064 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007065 goto out;
7066 }
Chris Mason459931e2008-12-10 09:10:46 -05007067 }
7068
Omar Sandoval1e144fb2015-09-29 20:50:37 -07007069 ret = add_to_free_space_tree(trans, root->fs_info, bytenr,
7070 num_bytes);
7071 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007072 btrfs_abort_transaction(trans, ret);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07007073 goto out;
7074 }
7075
Josef Bacikce93ec52014-11-17 15:45:48 -05007076 ret = update_block_group(trans, root, bytenr, num_bytes, 0);
David Sterba005d6422012-09-18 07:52:32 -06007077 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007078 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007079 goto out;
7080 }
Chris Masona28ec192007-03-06 20:08:01 -05007081 }
Josef Bacikfcebe452014-05-13 17:30:47 -07007082 btrfs_release_path(path);
7083
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007084out:
Chris Mason5caf2a02007-04-02 11:20:42 -04007085 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05007086 return ret;
7087}
7088
7089/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04007090 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04007091 * delayed ref for that extent as well. This searches the delayed ref tree for
7092 * a given extent, and if there are no other delayed refs to be processed, it
7093 * removes it from the tree.
7094 */
7095static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
7096 struct btrfs_root *root, u64 bytenr)
7097{
7098 struct btrfs_delayed_ref_head *head;
7099 struct btrfs_delayed_ref_root *delayed_refs;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007100 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04007101
7102 delayed_refs = &trans->transaction->delayed_refs;
7103 spin_lock(&delayed_refs->lock);
7104 head = btrfs_find_delayed_ref_head(trans, bytenr);
7105 if (!head)
Chris Masoncf93da72014-01-29 07:02:40 -08007106 goto out_delayed_unlock;
Chris Mason1887be62009-03-13 10:11:24 -04007107
Josef Bacikd7df2c72014-01-23 09:21:38 -05007108 spin_lock(&head->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08007109 if (!list_empty(&head->ref_list))
Chris Mason1887be62009-03-13 10:11:24 -04007110 goto out;
7111
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007112 if (head->extent_op) {
7113 if (!head->must_insert_reserved)
7114 goto out;
Miao Xie78a61842012-11-21 02:21:28 +00007115 btrfs_free_delayed_extent_op(head->extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007116 head->extent_op = NULL;
7117 }
7118
Chris Mason1887be62009-03-13 10:11:24 -04007119 /*
7120 * waiting for the lock here would deadlock. If someone else has it
7121 * locked they are already in the process of dropping it anyway
7122 */
7123 if (!mutex_trylock(&head->mutex))
7124 goto out;
7125
7126 /*
7127 * at this point we have a head with no other entries. Go
7128 * ahead and process it.
7129 */
7130 head->node.in_tree = 0;
Liu Boc46effa2013-10-14 12:59:45 +08007131 rb_erase(&head->href_node, &delayed_refs->href_root);
Chris Masonc3e69d52009-03-13 10:17:05 -04007132
Josef Bacikd7df2c72014-01-23 09:21:38 -05007133 atomic_dec(&delayed_refs->num_entries);
Chris Mason1887be62009-03-13 10:11:24 -04007134
7135 /*
7136 * we don't take a ref on the node because we're removing it from the
7137 * tree, so we just steal the ref the tree was holding.
7138 */
Chris Masonc3e69d52009-03-13 10:17:05 -04007139 delayed_refs->num_heads--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05007140 if (head->processing == 0)
Chris Masonc3e69d52009-03-13 10:17:05 -04007141 delayed_refs->num_heads_ready--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05007142 head->processing = 0;
7143 spin_unlock(&head->lock);
Chris Mason1887be62009-03-13 10:11:24 -04007144 spin_unlock(&delayed_refs->lock);
7145
Yan, Zhengf0486c62010-05-16 10:46:25 -04007146 BUG_ON(head->extent_op);
7147 if (head->must_insert_reserved)
7148 ret = 1;
7149
7150 mutex_unlock(&head->mutex);
Chris Mason1887be62009-03-13 10:11:24 -04007151 btrfs_put_delayed_ref(&head->node);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007152 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04007153out:
Josef Bacikd7df2c72014-01-23 09:21:38 -05007154 spin_unlock(&head->lock);
Chris Masoncf93da72014-01-29 07:02:40 -08007155
7156out_delayed_unlock:
Chris Mason1887be62009-03-13 10:11:24 -04007157 spin_unlock(&delayed_refs->lock);
7158 return 0;
7159}
7160
Yan, Zhengf0486c62010-05-16 10:46:25 -04007161void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
7162 struct btrfs_root *root,
7163 struct extent_buffer *buf,
Jan Schmidt5581a512012-05-16 17:04:52 +02007164 u64 parent, int last_ref)
Yan, Zhengf0486c62010-05-16 10:46:25 -04007165{
Josef Bacikb150a4f2013-06-19 15:00:04 -04007166 int pin = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007167 int ret;
7168
7169 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007170 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
7171 buf->start, buf->len,
7172 parent, root->root_key.objectid,
7173 btrfs_header_level(buf),
Filipe Mananab06c4bf2015-10-23 07:52:54 +01007174 BTRFS_DROP_DELAYED_REF, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007175 BUG_ON(ret); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007176 }
7177
7178 if (!last_ref)
7179 return;
7180
Yan, Zhengf0486c62010-05-16 10:46:25 -04007181 if (btrfs_header_generation(buf) == trans->transid) {
Filipe Manana62198722015-01-06 20:18:45 +00007182 struct btrfs_block_group_cache *cache;
7183
Yan, Zhengf0486c62010-05-16 10:46:25 -04007184 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
7185 ret = check_ref_cleanup(trans, root, buf->start);
7186 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04007187 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007188 }
7189
Filipe Manana62198722015-01-06 20:18:45 +00007190 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
7191
Yan, Zhengf0486c62010-05-16 10:46:25 -04007192 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
7193 pin_down_extent(root, cache, buf->start, buf->len, 1);
Filipe Manana62198722015-01-06 20:18:45 +00007194 btrfs_put_block_group(cache);
Josef Bacik37be25b2011-08-05 10:25:38 -04007195 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007196 }
7197
7198 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
7199
7200 btrfs_add_free_space(cache, buf->start, buf->len);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08007201 btrfs_free_reserved_bytes(cache, buf->len, 0);
Filipe Manana62198722015-01-06 20:18:45 +00007202 btrfs_put_block_group(cache);
Josef Bacik0be5dc62013-10-07 15:18:52 -04007203 trace_btrfs_reserved_extent_free(root, buf->start, buf->len);
Josef Bacikb150a4f2013-06-19 15:00:04 -04007204 pin = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007205 }
7206out:
Josef Bacikb150a4f2013-06-19 15:00:04 -04007207 if (pin)
7208 add_pinned_bytes(root->fs_info, buf->len,
7209 btrfs_header_level(buf),
7210 root->root_key.objectid);
7211
Josef Bacika826d6d2011-03-16 13:42:43 -04007212 /*
7213 * Deleting the buffer, clear the corrupt flag since it doesn't matter
7214 * anymore.
7215 */
7216 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007217}
7218
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007219/* Can return -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007220int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root,
7221 u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01007222 u64 owner, u64 offset)
Chris Mason925baed2008-06-25 16:01:30 -04007223{
7224 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007225 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason925baed2008-06-25 16:01:30 -04007226
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -04007227 if (btrfs_is_testing(fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04007228 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02007229
Josef Bacikb150a4f2013-06-19 15:00:04 -04007230 add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid);
7231
Chris Mason56bec292009-03-13 10:10:06 -04007232 /*
7233 * tree log blocks never actually go into the extent allocation
7234 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04007235 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007236 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
7237 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04007238 /* unlocks the pinned mutex */
Yan Zheng11833d62009-09-11 16:11:19 -04007239 btrfs_pin_extent(root, bytenr, num_bytes, 1);
Chris Mason56bec292009-03-13 10:10:06 -04007240 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007241 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007242 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
7243 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007244 parent, root_objectid, (int)owner,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01007245 BTRFS_DROP_DELAYED_REF, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007246 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007247 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
7248 num_bytes,
7249 parent, root_objectid, owner,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08007250 offset, 0,
7251 BTRFS_DROP_DELAYED_REF, NULL);
Chris Mason56bec292009-03-13 10:10:06 -04007252 }
Chris Mason925baed2008-06-25 16:01:30 -04007253 return ret;
7254}
7255
Chris Masonfec577f2007-02-26 10:40:21 -05007256/*
Josef Bacik817d52f2009-07-13 21:29:25 -04007257 * when we wait for progress in the block group caching, its because
7258 * our allocation attempt failed at least once. So, we must sleep
7259 * and let some progress happen before we try again.
7260 *
7261 * This function will sleep at least once waiting for new free space to
7262 * show up, and then it will check the block group free space numbers
7263 * for our min num_bytes. Another option is to have it go ahead
7264 * and look in the rbtree for a free extent of a given size, but this
7265 * is a good start.
Josef Bacik36cce922013-08-05 11:15:21 -04007266 *
7267 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
7268 * any of the information in this block group.
Josef Bacik817d52f2009-07-13 21:29:25 -04007269 */
Josef Bacik36cce922013-08-05 11:15:21 -04007270static noinline void
Josef Bacik817d52f2009-07-13 21:29:25 -04007271wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
7272 u64 num_bytes)
7273{
Yan Zheng11833d62009-09-11 16:11:19 -04007274 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04007275
Yan Zheng11833d62009-09-11 16:11:19 -04007276 caching_ctl = get_caching_control(cache);
7277 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007278 return;
Josef Bacik817d52f2009-07-13 21:29:25 -04007279
Yan Zheng11833d62009-09-11 16:11:19 -04007280 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08007281 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04007282
7283 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -04007284}
7285
7286static noinline int
7287wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
7288{
7289 struct btrfs_caching_control *caching_ctl;
Josef Bacik36cce922013-08-05 11:15:21 -04007290 int ret = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007291
7292 caching_ctl = get_caching_control(cache);
7293 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007294 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007295
7296 wait_event(caching_ctl->wait, block_group_cache_done(cache));
Josef Bacik36cce922013-08-05 11:15:21 -04007297 if (cache->cached == BTRFS_CACHE_ERROR)
7298 ret = -EIO;
Yan Zheng11833d62009-09-11 16:11:19 -04007299 put_caching_control(caching_ctl);
Josef Bacik36cce922013-08-05 11:15:21 -04007300 return ret;
Josef Bacik817d52f2009-07-13 21:29:25 -04007301}
7302
Liu Bo31e50222012-11-21 14:18:10 +00007303int __get_raid_index(u64 flags)
Yan, Zhengb742bb82010-05-16 10:46:24 -04007304{
Ilya Dryomov7738a532012-03-27 17:09:17 +03007305 if (flags & BTRFS_BLOCK_GROUP_RAID10)
Miao Xiee6ec7162013-01-17 05:38:51 +00007306 return BTRFS_RAID_RAID10;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007307 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
Miao Xiee6ec7162013-01-17 05:38:51 +00007308 return BTRFS_RAID_RAID1;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007309 else if (flags & BTRFS_BLOCK_GROUP_DUP)
Miao Xiee6ec7162013-01-17 05:38:51 +00007310 return BTRFS_RAID_DUP;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007311 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
Miao Xiee6ec7162013-01-17 05:38:51 +00007312 return BTRFS_RAID_RAID0;
David Woodhouse53b381b2013-01-29 18:40:14 -05007313 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
Chris Masone942f882013-02-20 14:06:05 -05007314 return BTRFS_RAID_RAID5;
David Woodhouse53b381b2013-01-29 18:40:14 -05007315 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
Chris Masone942f882013-02-20 14:06:05 -05007316 return BTRFS_RAID_RAID6;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007317
Chris Masone942f882013-02-20 14:06:05 -05007318 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
Yan, Zhengb742bb82010-05-16 10:46:24 -04007319}
7320
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04007321int get_block_group_index(struct btrfs_block_group_cache *cache)
Ilya Dryomov7738a532012-03-27 17:09:17 +03007322{
Liu Bo31e50222012-11-21 14:18:10 +00007323 return __get_raid_index(cache->flags);
Ilya Dryomov7738a532012-03-27 17:09:17 +03007324}
7325
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04007326static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = {
7327 [BTRFS_RAID_RAID10] = "raid10",
7328 [BTRFS_RAID_RAID1] = "raid1",
7329 [BTRFS_RAID_DUP] = "dup",
7330 [BTRFS_RAID_RAID0] = "raid0",
7331 [BTRFS_RAID_SINGLE] = "single",
7332 [BTRFS_RAID_RAID5] = "raid5",
7333 [BTRFS_RAID_RAID6] = "raid6",
7334};
7335
Jeff Mahoney1b8e5df2013-11-20 16:50:23 -05007336static const char *get_raid_name(enum btrfs_raid_types type)
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04007337{
7338 if (type >= BTRFS_NR_RAID_TYPES)
7339 return NULL;
7340
7341 return btrfs_raid_type_names[type];
7342}
7343
Josef Bacik817d52f2009-07-13 21:29:25 -04007344enum btrfs_loop_type {
Josef Bacik285ff5a2012-01-13 15:27:45 -05007345 LOOP_CACHING_NOWAIT = 0,
7346 LOOP_CACHING_WAIT = 1,
7347 LOOP_ALLOC_CHUNK = 2,
7348 LOOP_NO_EMPTY_SIZE = 3,
Josef Bacik817d52f2009-07-13 21:29:25 -04007349};
7350
Miao Xiee570fd22014-06-19 10:42:50 +08007351static inline void
7352btrfs_lock_block_group(struct btrfs_block_group_cache *cache,
7353 int delalloc)
7354{
7355 if (delalloc)
7356 down_read(&cache->data_rwsem);
7357}
7358
7359static inline void
7360btrfs_grab_block_group(struct btrfs_block_group_cache *cache,
7361 int delalloc)
7362{
7363 btrfs_get_block_group(cache);
7364 if (delalloc)
7365 down_read(&cache->data_rwsem);
7366}
7367
7368static struct btrfs_block_group_cache *
7369btrfs_lock_cluster(struct btrfs_block_group_cache *block_group,
7370 struct btrfs_free_cluster *cluster,
7371 int delalloc)
7372{
Sudip Mukherjee89771cc2016-02-16 13:32:47 +05307373 struct btrfs_block_group_cache *used_bg = NULL;
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007374
Miao Xiee570fd22014-06-19 10:42:50 +08007375 spin_lock(&cluster->refill_lock);
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007376 while (1) {
7377 used_bg = cluster->block_group;
7378 if (!used_bg)
7379 return NULL;
7380
7381 if (used_bg == block_group)
7382 return used_bg;
7383
7384 btrfs_get_block_group(used_bg);
7385
7386 if (!delalloc)
7387 return used_bg;
7388
7389 if (down_read_trylock(&used_bg->data_rwsem))
7390 return used_bg;
7391
7392 spin_unlock(&cluster->refill_lock);
7393
7394 down_read(&used_bg->data_rwsem);
7395
7396 spin_lock(&cluster->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08007397 if (used_bg == cluster->block_group)
7398 return used_bg;
7399
7400 up_read(&used_bg->data_rwsem);
7401 btrfs_put_block_group(used_bg);
7402 }
Miao Xiee570fd22014-06-19 10:42:50 +08007403}
7404
7405static inline void
7406btrfs_release_block_group(struct btrfs_block_group_cache *cache,
7407 int delalloc)
7408{
7409 if (delalloc)
7410 up_read(&cache->data_rwsem);
7411 btrfs_put_block_group(cache);
7412}
7413
Josef Bacik817d52f2009-07-13 21:29:25 -04007414/*
Chris Masonfec577f2007-02-26 10:40:21 -05007415 * walks the btree of allocated extents and find a hole of a given size.
7416 * The key ins is changed to record the hole:
Miao Xiea4820392013-09-09 13:19:42 +08007417 * ins->objectid == start position
Chris Mason62e27492007-03-15 12:56:47 -04007418 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Miao Xiea4820392013-09-09 13:19:42 +08007419 * ins->offset == the size of the hole.
Chris Masonfec577f2007-02-26 10:40:21 -05007420 * Any available blocks before search_start are skipped.
Miao Xiea4820392013-09-09 13:19:42 +08007421 *
7422 * If there is no suitable free space, we will record the max size of
7423 * the free space extent currently.
Chris Masonfec577f2007-02-26 10:40:21 -05007424 */
Josef Bacik00361582013-08-14 14:02:47 -04007425static noinline int find_free_extent(struct btrfs_root *orig_root,
Wang Xiaoguang18513092016-07-25 15:51:40 +08007426 u64 ram_bytes, u64 num_bytes, u64 empty_size,
7427 u64 hint_byte, struct btrfs_key *ins,
7428 u64 flags, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05007429{
Josef Bacik80eb2342008-10-29 14:49:05 -04007430 int ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05007431 struct btrfs_root *root = orig_root->fs_info->extent_root;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007432 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04007433 struct btrfs_block_group_cache *block_group = NULL;
Josef Bacik81c9ad22012-01-18 10:56:06 -05007434 u64 search_start = 0;
Miao Xiea4820392013-09-09 13:19:42 +08007435 u64 max_extent_size = 0;
Josef Bacikc759c4e2015-10-02 15:25:10 -04007436 u64 empty_cluster = 0;
Josef Bacik80eb2342008-10-29 14:49:05 -04007437 struct btrfs_space_info *space_info;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007438 int loop = 0;
David Sterbab6919a52013-04-29 13:39:40 +00007439 int index = __get_raid_index(flags);
Josef Bacik0a243252009-09-11 16:11:20 -04007440 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007441 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04007442 bool use_cluster = true;
Miao Xie60d2adb2011-09-09 17:34:35 +08007443 bool have_caching_bg = false;
chandan13a0db52015-11-02 13:59:46 +05307444 bool orig_have_caching_bg = false;
Josef Bacika5e681d2015-10-01 14:54:10 -04007445 bool full_search = false;
Chris Masonfec577f2007-02-26 10:40:21 -05007446
Chris Masondb945352007-10-15 16:15:53 -04007447 WARN_ON(num_bytes < root->sectorsize);
David Sterba962a2982014-06-04 18:41:45 +02007448 ins->type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacik80eb2342008-10-29 14:49:05 -04007449 ins->objectid = 0;
7450 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04007451
David Sterbab6919a52013-04-29 13:39:40 +00007452 trace_find_free_extent(orig_root, num_bytes, empty_size, flags);
Josef Bacik3f7de032011-11-10 08:29:20 -05007453
David Sterbab6919a52013-04-29 13:39:40 +00007454 space_info = __find_space_info(root->fs_info, flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007455 if (!space_info) {
David Sterbab6919a52013-04-29 13:39:40 +00007456 btrfs_err(root->fs_info, "No space info for %llu", flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007457 return -ENOSPC;
7458 }
Josef Bacik2552d172009-04-03 10:14:19 -04007459
Josef Bacik67377732010-09-16 16:19:09 -04007460 /*
Josef Bacik4f4db212015-09-29 11:40:47 -04007461 * If our free space is heavily fragmented we may not be able to make
7462 * big contiguous allocations, so instead of doing the expensive search
7463 * for free space, simply return ENOSPC with our max_extent_size so we
7464 * can go ahead and search for a more manageable chunk.
7465 *
7466 * If our max_extent_size is large enough for our allocation simply
7467 * disable clustering since we will likely not be able to find enough
7468 * space to create a cluster and induce latency trying.
Josef Bacik67377732010-09-16 16:19:09 -04007469 */
Josef Bacik4f4db212015-09-29 11:40:47 -04007470 if (unlikely(space_info->max_extent_size)) {
7471 spin_lock(&space_info->lock);
7472 if (space_info->max_extent_size &&
7473 num_bytes > space_info->max_extent_size) {
7474 ins->offset = space_info->max_extent_size;
7475 spin_unlock(&space_info->lock);
7476 return -ENOSPC;
7477 } else if (space_info->max_extent_size) {
7478 use_cluster = false;
7479 }
7480 spin_unlock(&space_info->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007481 }
7482
Josef Bacikc759c4e2015-10-02 15:25:10 -04007483 last_ptr = fetch_cluster_info(orig_root, space_info, &empty_cluster);
Chris Mason239b14b2008-03-24 15:02:07 -04007484 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007485 spin_lock(&last_ptr->lock);
7486 if (last_ptr->block_group)
7487 hint_byte = last_ptr->window_start;
Josef Bacikc759c4e2015-10-02 15:25:10 -04007488 if (last_ptr->fragmented) {
7489 /*
7490 * We still set window_start so we can keep track of the
7491 * last place we found an allocation to try and save
7492 * some time.
7493 */
7494 hint_byte = last_ptr->window_start;
7495 use_cluster = false;
7496 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007497 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007498 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007499
Chris Masona061fc82008-05-07 11:43:44 -04007500 search_start = max(search_start, first_logical_byte(root, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04007501 search_start = max(search_start, hint_byte);
Josef Bacik2552d172009-04-03 10:14:19 -04007502 if (search_start == hint_byte) {
Josef Bacik2552d172009-04-03 10:14:19 -04007503 block_group = btrfs_lookup_block_group(root->fs_info,
7504 search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04007505 /*
7506 * we don't want to use the block group if it doesn't match our
7507 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05007508 *
7509 * However if we are re-searching with an ideal block group
7510 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04007511 */
David Sterbab6919a52013-04-29 13:39:40 +00007512 if (block_group && block_group_bits(block_group, flags) &&
Josef Bacik285ff5a2012-01-13 15:27:45 -05007513 block_group->cached != BTRFS_CACHE_NO) {
Josef Bacik2552d172009-04-03 10:14:19 -04007514 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04007515 if (list_empty(&block_group->list) ||
7516 block_group->ro) {
7517 /*
7518 * someone is removing this block group,
7519 * we can't jump into the have_block_group
7520 * target because our list pointers are not
7521 * valid
7522 */
7523 btrfs_put_block_group(block_group);
7524 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05007525 } else {
Yan, Zhengb742bb82010-05-16 10:46:24 -04007526 index = get_block_group_index(block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08007527 btrfs_lock_block_group(block_group, delalloc);
Chris Mason44fb5512009-06-04 15:34:51 -04007528 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05007529 }
Josef Bacik2552d172009-04-03 10:14:19 -04007530 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007531 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04007532 }
Chris Mason42e70e72008-11-07 18:17:11 -05007533 }
Josef Bacik2552d172009-04-03 10:14:19 -04007534search:
Miao Xie60d2adb2011-09-09 17:34:35 +08007535 have_caching_bg = false;
Josef Bacika5e681d2015-10-01 14:54:10 -04007536 if (index == 0 || index == __get_raid_index(flags))
7537 full_search = true;
Josef Bacik80eb2342008-10-29 14:49:05 -04007538 down_read(&space_info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04007539 list_for_each_entry(block_group, &space_info->block_groups[index],
7540 list) {
Josef Bacik6226cb0a2009-04-03 10:14:18 -04007541 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04007542 int cached;
Chris Mason8a1413a2008-11-10 16:13:54 -05007543
Miao Xiee570fd22014-06-19 10:42:50 +08007544 btrfs_grab_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007545 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05007546
Chris Mason83a50de2010-12-13 15:06:46 -05007547 /*
7548 * this can happen if we end up cycling through all the
7549 * raid types, but we want to make sure we only allocate
7550 * for the proper type.
7551 */
David Sterbab6919a52013-04-29 13:39:40 +00007552 if (!block_group_bits(block_group, flags)) {
Chris Mason83a50de2010-12-13 15:06:46 -05007553 u64 extra = BTRFS_BLOCK_GROUP_DUP |
7554 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05007555 BTRFS_BLOCK_GROUP_RAID5 |
7556 BTRFS_BLOCK_GROUP_RAID6 |
Chris Mason83a50de2010-12-13 15:06:46 -05007557 BTRFS_BLOCK_GROUP_RAID10;
7558
7559 /*
7560 * if they asked for extra copies and this block group
7561 * doesn't provide them, bail. This does allow us to
7562 * fill raid0 from raid1.
7563 */
David Sterbab6919a52013-04-29 13:39:40 +00007564 if ((flags & extra) && !(block_group->flags & extra))
Chris Mason83a50de2010-12-13 15:06:46 -05007565 goto loop;
7566 }
7567
Josef Bacik2552d172009-04-03 10:14:19 -04007568have_block_group:
Josef Bacik291c7d22011-11-14 13:52:14 -05007569 cached = block_group_cache_done(block_group);
7570 if (unlikely(!cached)) {
Josef Bacika5e681d2015-10-01 14:54:10 -04007571 have_caching_bg = true;
Liu Bof6373bf2012-12-27 09:01:18 +00007572 ret = cache_block_group(block_group, 0);
Chris Mason1d4284b2012-03-28 20:31:37 -04007573 BUG_ON(ret < 0);
7574 ret = 0;
Josef Bacikea6a4782008-11-20 12:16:16 -05007575 }
7576
Josef Bacik36cce922013-08-05 11:15:21 -04007577 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
7578 goto loop;
Josef Bacikea6a4782008-11-20 12:16:16 -05007579 if (unlikely(block_group->ro))
Josef Bacik2552d172009-04-03 10:14:19 -04007580 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007581
Josef Bacik0a243252009-09-11 16:11:20 -04007582 /*
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007583 * Ok we want to try and use the cluster allocator, so
7584 * lets look there
Josef Bacik0a243252009-09-11 16:11:20 -04007585 */
Josef Bacikc759c4e2015-10-02 15:25:10 -04007586 if (last_ptr && use_cluster) {
Miao Xie215a63d2014-01-15 20:00:56 +08007587 struct btrfs_block_group_cache *used_block_group;
Chris Mason8de972b2013-01-04 15:39:43 -05007588 unsigned long aligned_cluster;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007589 /*
7590 * the refill lock keeps out other
7591 * people trying to start a new cluster
7592 */
Miao Xiee570fd22014-06-19 10:42:50 +08007593 used_block_group = btrfs_lock_cluster(block_group,
7594 last_ptr,
7595 delalloc);
7596 if (!used_block_group)
Chris Mason44fb5512009-06-04 15:34:51 -04007597 goto refill_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -04007598
Miao Xiee570fd22014-06-19 10:42:50 +08007599 if (used_block_group != block_group &&
7600 (used_block_group->ro ||
7601 !block_group_bits(used_block_group, flags)))
7602 goto release_cluster;
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05007603
7604 offset = btrfs_alloc_from_cluster(used_block_group,
Miao Xiea4820392013-09-09 13:19:42 +08007605 last_ptr,
7606 num_bytes,
7607 used_block_group->key.objectid,
7608 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007609 if (offset) {
7610 /* we have a block, we're done */
7611 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05007612 trace_btrfs_reserve_extent_cluster(root,
Miao Xie89d43462014-01-15 20:00:57 +08007613 used_block_group,
7614 search_start, num_bytes);
Miao Xie215a63d2014-01-15 20:00:56 +08007615 if (used_block_group != block_group) {
Miao Xiee570fd22014-06-19 10:42:50 +08007616 btrfs_release_block_group(block_group,
7617 delalloc);
Miao Xie215a63d2014-01-15 20:00:56 +08007618 block_group = used_block_group;
7619 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007620 goto checks;
7621 }
7622
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05007623 WARN_ON(last_ptr->block_group != used_block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08007624release_cluster:
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007625 /* If we are on LOOP_NO_EMPTY_SIZE, we can't
7626 * set up a new clusters, so lets just skip it
7627 * and let the allocator find whatever block
7628 * it can find. If we reach this point, we
7629 * will have tried the cluster allocator
7630 * plenty of times and not have found
7631 * anything, so we are likely way too
7632 * fragmented for the clustering stuff to find
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007633 * anything.
7634 *
7635 * However, if the cluster is taken from the
7636 * current block group, release the cluster
7637 * first, so that we stand a better chance of
7638 * succeeding in the unclustered
7639 * allocation. */
7640 if (loop >= LOOP_NO_EMPTY_SIZE &&
Miao Xiee570fd22014-06-19 10:42:50 +08007641 used_block_group != block_group) {
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007642 spin_unlock(&last_ptr->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08007643 btrfs_release_block_group(used_block_group,
7644 delalloc);
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007645 goto unclustered_alloc;
7646 }
7647
Chris Masonfa9c0d792009-04-03 09:47:43 -04007648 /*
7649 * this cluster didn't work out, free it and
7650 * start over
7651 */
7652 btrfs_return_cluster_to_free_space(NULL, last_ptr);
7653
Miao Xiee570fd22014-06-19 10:42:50 +08007654 if (used_block_group != block_group)
7655 btrfs_release_block_group(used_block_group,
7656 delalloc);
7657refill_cluster:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007658 if (loop >= LOOP_NO_EMPTY_SIZE) {
7659 spin_unlock(&last_ptr->refill_lock);
7660 goto unclustered_alloc;
7661 }
7662
Chris Mason8de972b2013-01-04 15:39:43 -05007663 aligned_cluster = max_t(unsigned long,
7664 empty_cluster + empty_size,
7665 block_group->full_stripe_len);
7666
Chris Masonfa9c0d792009-04-03 09:47:43 -04007667 /* allocate a cluster in this block group */
Josef Bacik00361582013-08-14 14:02:47 -04007668 ret = btrfs_find_space_cluster(root, block_group,
7669 last_ptr, search_start,
7670 num_bytes,
7671 aligned_cluster);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007672 if (ret == 0) {
7673 /*
7674 * now pull our allocation out of this
7675 * cluster
7676 */
7677 offset = btrfs_alloc_from_cluster(block_group,
Miao Xiea4820392013-09-09 13:19:42 +08007678 last_ptr,
7679 num_bytes,
7680 search_start,
7681 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007682 if (offset) {
7683 /* we found one, proceed */
7684 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05007685 trace_btrfs_reserve_extent_cluster(root,
7686 block_group, search_start,
7687 num_bytes);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007688 goto checks;
7689 }
Josef Bacik0a243252009-09-11 16:11:20 -04007690 } else if (!cached && loop > LOOP_CACHING_NOWAIT
7691 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04007692 spin_unlock(&last_ptr->refill_lock);
7693
Josef Bacik0a243252009-09-11 16:11:20 -04007694 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04007695 wait_block_group_cache_progress(block_group,
7696 num_bytes + empty_cluster + empty_size);
7697 goto have_block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007698 }
Josef Bacik817d52f2009-07-13 21:29:25 -04007699
Chris Masonfa9c0d792009-04-03 09:47:43 -04007700 /*
7701 * at this point we either didn't find a cluster
7702 * or we weren't able to allocate a block from our
7703 * cluster. Free the cluster we've been trying
7704 * to use, and go to the next block group
7705 */
Josef Bacik0a243252009-09-11 16:11:20 -04007706 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007707 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04007708 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007709 }
7710
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007711unclustered_alloc:
Josef Bacikc759c4e2015-10-02 15:25:10 -04007712 /*
7713 * We are doing an unclustered alloc, set the fragmented flag so
7714 * we don't bother trying to setup a cluster again until we get
7715 * more space.
7716 */
7717 if (unlikely(last_ptr)) {
7718 spin_lock(&last_ptr->lock);
7719 last_ptr->fragmented = 1;
7720 spin_unlock(&last_ptr->lock);
7721 }
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007722 spin_lock(&block_group->free_space_ctl->tree_lock);
7723 if (cached &&
7724 block_group->free_space_ctl->free_space <
7725 num_bytes + empty_cluster + empty_size) {
Miao Xiea4820392013-09-09 13:19:42 +08007726 if (block_group->free_space_ctl->free_space >
7727 max_extent_size)
7728 max_extent_size =
7729 block_group->free_space_ctl->free_space;
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007730 spin_unlock(&block_group->free_space_ctl->tree_lock);
7731 goto loop;
7732 }
7733 spin_unlock(&block_group->free_space_ctl->tree_lock);
7734
Josef Bacik6226cb0a2009-04-03 10:14:18 -04007735 offset = btrfs_find_space_for_alloc(block_group, search_start,
Miao Xiea4820392013-09-09 13:19:42 +08007736 num_bytes, empty_size,
7737 &max_extent_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007738 /*
7739 * If we didn't find a chunk, and we haven't failed on this
7740 * block group before, and this block group is in the middle of
7741 * caching and we are ok with waiting, then go ahead and wait
7742 * for progress to be made, and set failed_alloc to true.
7743 *
7744 * If failed_alloc is true then we've already waited on this
7745 * block group once and should move on to the next block group.
7746 */
7747 if (!offset && !failed_alloc && !cached &&
7748 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04007749 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007750 num_bytes + empty_size);
7751 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04007752 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007753 } else if (!offset) {
7754 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04007755 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007756checks:
David Sterba4e54b172014-06-05 01:39:19 +02007757 search_start = ALIGN(offset, root->stripesize);
Chris Masone37c9e62007-05-09 20:13:14 -04007758
Josef Bacik2552d172009-04-03 10:14:19 -04007759 /* move on to the next group */
7760 if (search_start + num_bytes >
Miao Xie215a63d2014-01-15 20:00:56 +08007761 block_group->key.objectid + block_group->key.offset) {
7762 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04007763 goto loop;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04007764 }
Josef Bacik80eb2342008-10-29 14:49:05 -04007765
Josef Bacik6226cb0a2009-04-03 10:14:18 -04007766 if (offset < search_start)
Miao Xie215a63d2014-01-15 20:00:56 +08007767 btrfs_add_free_space(block_group, offset,
Josef Bacik6226cb0a2009-04-03 10:14:18 -04007768 search_start - offset);
7769 BUG_ON(offset > search_start);
7770
Wang Xiaoguang18513092016-07-25 15:51:40 +08007771 ret = btrfs_add_reserved_bytes(block_group, ram_bytes,
7772 num_bytes, delalloc);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007773 if (ret == -EAGAIN) {
Miao Xie215a63d2014-01-15 20:00:56 +08007774 btrfs_add_free_space(block_group, offset, num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007775 goto loop;
7776 }
Filipe Manana9cfa3e32016-04-26 15:39:32 +01007777 btrfs_inc_block_group_reservations(block_group);
Yan Zheng11833d62009-09-11 16:11:19 -04007778
Josef Bacik2552d172009-04-03 10:14:19 -04007779 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007780 ins->objectid = search_start;
7781 ins->offset = num_bytes;
7782
Josef Bacik3f7de032011-11-10 08:29:20 -05007783 trace_btrfs_reserve_extent(orig_root, block_group,
7784 search_start, num_bytes);
Miao Xiee570fd22014-06-19 10:42:50 +08007785 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007786 break;
7787loop:
Josef Bacik0a243252009-09-11 16:11:20 -04007788 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007789 failed_alloc = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04007790 BUG_ON(index != get_block_group_index(block_group));
Miao Xiee570fd22014-06-19 10:42:50 +08007791 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007792 }
7793 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05007794
chandan13a0db52015-11-02 13:59:46 +05307795 if ((loop == LOOP_CACHING_NOWAIT) && have_caching_bg
7796 && !orig_have_caching_bg)
7797 orig_have_caching_bg = true;
7798
Miao Xie60d2adb2011-09-09 17:34:35 +08007799 if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg)
7800 goto search;
7801
Yan, Zhengb742bb82010-05-16 10:46:24 -04007802 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
7803 goto search;
7804
Josef Bacik285ff5a2012-01-13 15:27:45 -05007805 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05007806 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
7807 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04007808 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
7809 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
7810 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
7811 * again
Chris Masonfa9c0d792009-04-03 09:47:43 -04007812 */
Josef Bacik723bda22011-05-27 16:11:38 -04007813 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) {
Yan, Zhengb742bb82010-05-16 10:46:24 -04007814 index = 0;
Josef Bacika5e681d2015-10-01 14:54:10 -04007815 if (loop == LOOP_CACHING_NOWAIT) {
7816 /*
7817 * We want to skip the LOOP_CACHING_WAIT step if we
Nicholas D Steeves01327612016-05-19 21:18:45 -04007818 * don't have any uncached bgs and we've already done a
Josef Bacika5e681d2015-10-01 14:54:10 -04007819 * full search through.
7820 */
chandan13a0db52015-11-02 13:59:46 +05307821 if (orig_have_caching_bg || !full_search)
Josef Bacika5e681d2015-10-01 14:54:10 -04007822 loop = LOOP_CACHING_WAIT;
7823 else
7824 loop = LOOP_ALLOC_CHUNK;
7825 } else {
7826 loop++;
7827 }
7828
Josef Bacik817d52f2009-07-13 21:29:25 -04007829 if (loop == LOOP_ALLOC_CHUNK) {
Josef Bacik00361582013-08-14 14:02:47 -04007830 struct btrfs_trans_handle *trans;
Wang Shilongf017f152014-03-13 13:19:47 +08007831 int exist = 0;
Josef Bacik00361582013-08-14 14:02:47 -04007832
Wang Shilongf017f152014-03-13 13:19:47 +08007833 trans = current->journal_info;
7834 if (trans)
7835 exist = 1;
7836 else
7837 trans = btrfs_join_transaction(root);
7838
Josef Bacik00361582013-08-14 14:02:47 -04007839 if (IS_ERR(trans)) {
7840 ret = PTR_ERR(trans);
7841 goto out;
7842 }
7843
David Sterbab6919a52013-04-29 13:39:40 +00007844 ret = do_chunk_alloc(trans, root, flags,
Josef Bacikea658ba2012-09-11 16:57:25 -04007845 CHUNK_ALLOC_FORCE);
Josef Bacika5e681d2015-10-01 14:54:10 -04007846
7847 /*
7848 * If we can't allocate a new chunk we've already looped
7849 * through at least once, move on to the NO_EMPTY_SIZE
7850 * case.
7851 */
7852 if (ret == -ENOSPC)
7853 loop = LOOP_NO_EMPTY_SIZE;
7854
Josef Bacikea658ba2012-09-11 16:57:25 -04007855 /*
7856 * Do not bail out on ENOSPC since we
7857 * can do more things.
7858 */
Josef Bacik00361582013-08-14 14:02:47 -04007859 if (ret < 0 && ret != -ENOSPC)
Jeff Mahoney66642832016-06-10 18:19:25 -04007860 btrfs_abort_transaction(trans, ret);
Josef Bacik00361582013-08-14 14:02:47 -04007861 else
7862 ret = 0;
Wang Shilongf017f152014-03-13 13:19:47 +08007863 if (!exist)
7864 btrfs_end_transaction(trans, root);
Josef Bacik00361582013-08-14 14:02:47 -04007865 if (ret)
Josef Bacikea658ba2012-09-11 16:57:25 -04007866 goto out;
Josef Bacik723bda22011-05-27 16:11:38 -04007867 }
7868
7869 if (loop == LOOP_NO_EMPTY_SIZE) {
Josef Bacika5e681d2015-10-01 14:54:10 -04007870 /*
7871 * Don't loop again if we already have no empty_size and
7872 * no empty_cluster.
7873 */
7874 if (empty_size == 0 &&
7875 empty_cluster == 0) {
7876 ret = -ENOSPC;
7877 goto out;
7878 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007879 empty_size = 0;
7880 empty_cluster = 0;
7881 }
Chris Mason42e70e72008-11-07 18:17:11 -05007882
Josef Bacik723bda22011-05-27 16:11:38 -04007883 goto search;
Josef Bacik2552d172009-04-03 10:14:19 -04007884 } else if (!ins->objectid) {
7885 ret = -ENOSPC;
Josef Bacikd82a6f12011-05-11 15:26:06 -04007886 } else if (ins->objectid) {
Josef Bacikc759c4e2015-10-02 15:25:10 -04007887 if (!use_cluster && last_ptr) {
7888 spin_lock(&last_ptr->lock);
7889 last_ptr->window_start = ins->objectid;
7890 spin_unlock(&last_ptr->lock);
7891 }
Josef Bacik2552d172009-04-03 10:14:19 -04007892 ret = 0;
7893 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007894out:
Josef Bacik4f4db212015-09-29 11:40:47 -04007895 if (ret == -ENOSPC) {
7896 spin_lock(&space_info->lock);
7897 space_info->max_extent_size = max_extent_size;
7898 spin_unlock(&space_info->lock);
Miao Xiea4820392013-09-09 13:19:42 +08007899 ins->offset = max_extent_size;
Josef Bacik4f4db212015-09-29 11:40:47 -04007900 }
Chris Mason0f70abe2007-02-28 16:46:22 -05007901 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05007902}
Chris Masonec44a352008-04-28 15:29:52 -04007903
Josef Bacik9ed74f22009-09-11 16:12:44 -04007904static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
7905 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);
Frank Holtonefe120a2013-12-20 11:37:06 -05007911 printk(KERN_INFO "BTRFS: space_info %llu has %llu free, is %sfull\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007912 info->flags,
7913 info->total_bytes - info->bytes_used - info->bytes_pinned -
Wang Xiaoguang39581a32016-07-11 19:30:04 +08007914 info->bytes_reserved - info->bytes_readonly -
7915 info->bytes_may_use, (info->full) ? "" : "not ");
Frank Holtonefe120a2013-12-20 11:37:06 -05007916 printk(KERN_INFO "BTRFS: space_info total=%llu, used=%llu, pinned=%llu, "
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04007917 "reserved=%llu, may_use=%llu, readonly=%llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007918 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);
Frank Holtonefe120a2013-12-20 11:37:06 -05007930 printk(KERN_INFO "BTRFS: "
7931 "block group %llu has %llu bytes, "
7932 "%llu used %llu pinned %llu reserved %s\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007933 cache->key.objectid, cache->key.offset,
7934 btrfs_block_group_used(&cache->item), cache->pinned,
7935 cache->reserved, cache->ro ? "[readonly]" : "");
Josef Bacik0f9dd462008-09-23 13:14:11 -04007936 btrfs_dump_free_space(cache, bytes);
7937 spin_unlock(&cache->lock);
7938 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04007939 if (++index < BTRFS_NR_RAID_TYPES)
7940 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04007941 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04007942}
Zheng Yane8569812008-09-26 10:05:48 -04007943
Wang Xiaoguang18513092016-07-25 15:51:40 +08007944int btrfs_reserve_extent(struct btrfs_root *root, u64 ram_bytes,
Yan Zheng11833d62009-09-11 16:11:19 -04007945 u64 num_bytes, u64 min_alloc_size,
7946 u64 empty_size, u64 hint_byte,
Miao Xiee570fd22014-06-19 10:42:50 +08007947 struct btrfs_key *ins, int is_data, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05007948{
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) {
7959 btrfs_dec_block_group_reservations(root->fs_info,
7960 ins->objectid);
7961 } else if (ret == -ENOSPC) {
Miao Xiea4820392013-09-09 13:19:42 +08007962 if (!final_tried && ins->offset) {
7963 num_bytes = min(num_bytes >> 1, ins->offset);
Zach Brown24542bf2012-11-16 00:04:43 +00007964 num_bytes = round_down(num_bytes, root->sectorsize);
Miao Xie9e622d62012-01-26 15:01:12 -05007965 num_bytes = max(num_bytes, min_alloc_size);
Wang Xiaoguang18513092016-07-25 15:51:40 +08007966 ram_bytes = num_bytes;
Miao Xie9e622d62012-01-26 15:01:12 -05007967 if (num_bytes == min_alloc_size)
7968 final_tried = true;
7969 goto again;
Jeff Mahoney3cdde222016-06-09 21:38:35 -04007970 } else if (btrfs_test_opt(root->fs_info, ENOSPC_DEBUG)) {
Miao Xie9e622d62012-01-26 15:01:12 -05007971 struct btrfs_space_info *sinfo;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007972
David Sterbab6919a52013-04-29 13:39:40 +00007973 sinfo = __find_space_info(root->fs_info, flags);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007974 btrfs_err(root->fs_info, "allocation failed flags %llu, wanted %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007975 flags, num_bytes);
Jeff Mahoney53804282012-03-01 14:56:28 +01007976 if (sinfo)
7977 dump_space_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 Mason1c2308f2008-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;
8465 u32 blocksize;
8466 struct btrfs_key key;
8467 struct extent_buffer *eb;
8468 int ret;
8469 int slot;
8470 int nread = 0;
8471
8472 if (path->slots[wc->level] < wc->reada_slot) {
8473 wc->reada_count = wc->reada_count * 2 / 3;
8474 wc->reada_count = max(wc->reada_count, 2);
8475 } else {
8476 wc->reada_count = wc->reada_count * 3 / 2;
8477 wc->reada_count = min_t(int, wc->reada_count,
8478 BTRFS_NODEPTRS_PER_BLOCK(root));
8479 }
8480
8481 eb = path->nodes[wc->level];
8482 nritems = btrfs_header_nritems(eb);
David Sterba707e8a02014-06-04 19:22:26 +02008483 blocksize = root->nodesize;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008484
8485 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
8486 if (nread >= wc->reada_count)
8487 break;
8488
8489 cond_resched();
8490 bytenr = btrfs_node_blockptr(eb, slot);
8491 generation = btrfs_node_ptr_generation(eb, slot);
8492
8493 if (slot == path->slots[wc->level])
8494 goto reada;
8495
8496 if (wc->stage == UPDATE_BACKREF &&
8497 generation <= root->root_key.offset)
8498 continue;
8499
Yan, Zheng94fcca92009-10-09 09:25:16 -04008500 /* We don't lock the tree block, it's OK to be racy here */
Josef Bacik3173a182013-03-07 14:22:04 -05008501 ret = btrfs_lookup_extent_info(trans, root, bytenr,
8502 wc->level - 1, 1, &refs,
8503 &flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008504 /* We don't care about errors in readahead. */
8505 if (ret < 0)
8506 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008507 BUG_ON(refs == 0);
8508
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008509 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008510 if (refs == 1)
8511 goto reada;
8512
Yan, Zheng94fcca92009-10-09 09:25:16 -04008513 if (wc->level == 1 &&
8514 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8515 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008516 if (!wc->update_ref ||
8517 generation <= root->root_key.offset)
8518 continue;
8519 btrfs_node_key_to_cpu(eb, &key, slot);
8520 ret = btrfs_comp_cpu_keys(&key,
8521 &wc->update_progress);
8522 if (ret < 0)
8523 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008524 } else {
8525 if (wc->level == 1 &&
8526 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8527 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008528 }
8529reada:
David Sterbad3e46fe2014-06-15 02:04:19 +02008530 readahead_tree_block(root, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008531 nread++;
8532 }
8533 wc->reada_slot = slot;
8534}
8535
Mark Fasheh11526512014-07-17 12:39:01 -07008536static int account_leaf_items(struct btrfs_trans_handle *trans,
8537 struct btrfs_root *root,
8538 struct extent_buffer *eb)
8539{
8540 int nr = btrfs_header_nritems(eb);
Mark Fasheh82bd1012015-11-05 14:38:00 -08008541 int i, extent_type, ret;
Mark Fasheh11526512014-07-17 12:39:01 -07008542 struct btrfs_key key;
8543 struct btrfs_file_extent_item *fi;
8544 u64 bytenr, num_bytes;
8545
Mark Fasheh82bd1012015-11-05 14:38:00 -08008546 /* We can be called directly from walk_up_proc() */
8547 if (!root->fs_info->quota_enabled)
8548 return 0;
8549
Mark Fasheh11526512014-07-17 12:39:01 -07008550 for (i = 0; i < nr; i++) {
8551 btrfs_item_key_to_cpu(eb, &key, i);
8552
8553 if (key.type != BTRFS_EXTENT_DATA_KEY)
8554 continue;
8555
8556 fi = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
8557 /* filter out non qgroup-accountable extents */
8558 extent_type = btrfs_file_extent_type(eb, fi);
8559
8560 if (extent_type == BTRFS_FILE_EXTENT_INLINE)
8561 continue;
8562
8563 bytenr = btrfs_file_extent_disk_bytenr(eb, fi);
8564 if (!bytenr)
8565 continue;
8566
8567 num_bytes = btrfs_file_extent_disk_num_bytes(eb, fi);
Mark Fasheh82bd1012015-11-05 14:38:00 -08008568
Qu Wenruocb93b522016-08-15 10:36:50 +08008569 ret = btrfs_qgroup_insert_dirty_extent(trans, root->fs_info,
8570 bytenr, num_bytes, GFP_NOFS);
Mark Fasheh82bd1012015-11-05 14:38:00 -08008571 if (ret)
8572 return ret;
Mark Fasheh11526512014-07-17 12:39:01 -07008573 }
8574 return 0;
8575}
8576
8577/*
8578 * Walk up the tree from the bottom, freeing leaves and any interior
8579 * nodes which have had all slots visited. If a node (leaf or
8580 * interior) is freed, the node above it will have it's slot
8581 * incremented. The root node will never be freed.
8582 *
8583 * At the end of this function, we should have a path which has all
8584 * slots incremented to the next position for a search. If we need to
8585 * read a new node it will be NULL and the node above it will have the
8586 * correct slot selected for a later read.
8587 *
8588 * If we increment the root nodes slot counter past the number of
8589 * elements, 1 is returned to signal completion of the search.
8590 */
8591static int adjust_slots_upwards(struct btrfs_root *root,
8592 struct btrfs_path *path, int root_level)
8593{
8594 int level = 0;
8595 int nr, slot;
8596 struct extent_buffer *eb;
8597
8598 if (root_level == 0)
8599 return 1;
8600
8601 while (level <= root_level) {
8602 eb = path->nodes[level];
8603 nr = btrfs_header_nritems(eb);
8604 path->slots[level]++;
8605 slot = path->slots[level];
8606 if (slot >= nr || level == 0) {
8607 /*
8608 * Don't free the root - we will detect this
8609 * condition after our loop and return a
8610 * positive value for caller to stop walking the tree.
8611 */
8612 if (level != root_level) {
8613 btrfs_tree_unlock_rw(eb, path->locks[level]);
8614 path->locks[level] = 0;
8615
8616 free_extent_buffer(eb);
8617 path->nodes[level] = NULL;
8618 path->slots[level] = 0;
8619 }
8620 } else {
8621 /*
8622 * We have a valid slot to walk back down
8623 * from. Stop here so caller can process these
8624 * new nodes.
8625 */
8626 break;
8627 }
8628
8629 level++;
8630 }
8631
8632 eb = path->nodes[root_level];
8633 if (path->slots[root_level] >= btrfs_header_nritems(eb))
8634 return 1;
8635
8636 return 0;
8637}
8638
8639/*
8640 * root_eb is the subtree root and is locked before this function is called.
8641 */
8642static int account_shared_subtree(struct btrfs_trans_handle *trans,
8643 struct btrfs_root *root,
8644 struct extent_buffer *root_eb,
8645 u64 root_gen,
8646 int root_level)
8647{
8648 int ret = 0;
8649 int level;
8650 struct extent_buffer *eb = root_eb;
8651 struct btrfs_path *path = NULL;
8652
8653 BUG_ON(root_level < 0 || root_level > BTRFS_MAX_LEVEL);
8654 BUG_ON(root_eb == NULL);
8655
8656 if (!root->fs_info->quota_enabled)
8657 return 0;
8658
8659 if (!extent_buffer_uptodate(root_eb)) {
8660 ret = btrfs_read_buffer(root_eb, root_gen);
8661 if (ret)
8662 goto out;
8663 }
8664
8665 if (root_level == 0) {
8666 ret = account_leaf_items(trans, root, root_eb);
8667 goto out;
8668 }
8669
8670 path = btrfs_alloc_path();
8671 if (!path)
8672 return -ENOMEM;
8673
8674 /*
8675 * Walk down the tree. Missing extent blocks are filled in as
8676 * we go. Metadata is accounted every time we read a new
8677 * extent block.
8678 *
8679 * When we reach a leaf, we account for file extent items in it,
8680 * walk back up the tree (adjusting slot pointers as we go)
8681 * and restart the search process.
8682 */
8683 extent_buffer_get(root_eb); /* For path */
8684 path->nodes[root_level] = root_eb;
8685 path->slots[root_level] = 0;
8686 path->locks[root_level] = 0; /* so release_path doesn't try to unlock */
8687walk_down:
8688 level = root_level;
8689 while (level >= 0) {
8690 if (path->nodes[level] == NULL) {
Mark Fasheh11526512014-07-17 12:39:01 -07008691 int parent_slot;
8692 u64 child_gen;
8693 u64 child_bytenr;
8694
8695 /* We need to get child blockptr/gen from
8696 * parent before we can read it. */
8697 eb = path->nodes[level + 1];
8698 parent_slot = path->slots[level + 1];
8699 child_bytenr = btrfs_node_blockptr(eb, parent_slot);
8700 child_gen = btrfs_node_ptr_generation(eb, parent_slot);
8701
David Sterbace86cd52014-06-15 01:07:32 +02008702 eb = read_tree_block(root, child_bytenr, child_gen);
Liu Bo64c043d2015-05-25 17:30:15 +08008703 if (IS_ERR(eb)) {
8704 ret = PTR_ERR(eb);
8705 goto out;
8706 } else if (!extent_buffer_uptodate(eb)) {
Liu Bo8635eda2015-05-25 17:30:14 +08008707 free_extent_buffer(eb);
Liu Bo64c043d2015-05-25 17:30:15 +08008708 ret = -EIO;
Mark Fasheh11526512014-07-17 12:39:01 -07008709 goto out;
8710 }
8711
8712 path->nodes[level] = eb;
8713 path->slots[level] = 0;
8714
8715 btrfs_tree_read_lock(eb);
8716 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
8717 path->locks[level] = BTRFS_READ_LOCK_BLOCKING;
Mark Fasheh82bd1012015-11-05 14:38:00 -08008718
Qu Wenruocb93b522016-08-15 10:36:50 +08008719 ret = btrfs_qgroup_insert_dirty_extent(trans,
8720 root->fs_info, child_bytenr,
8721 root->nodesize, GFP_NOFS);
Mark Fasheh82bd1012015-11-05 14:38:00 -08008722 if (ret)
8723 goto out;
Mark Fasheh11526512014-07-17 12:39:01 -07008724 }
8725
8726 if (level == 0) {
8727 ret = account_leaf_items(trans, root, path->nodes[level]);
8728 if (ret)
8729 goto out;
8730
8731 /* Nonzero return here means we completed our search */
8732 ret = adjust_slots_upwards(root, path, root_level);
8733 if (ret)
8734 break;
8735
8736 /* Restart search with new slots */
8737 goto walk_down;
8738 }
8739
8740 level--;
8741 }
8742
8743 ret = 0;
8744out:
8745 btrfs_free_path(path);
8746
8747 return ret;
8748}
8749
Chris Mason9aca1d52007-03-13 11:09:37 -04008750/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008751 * helper to process tree block while walking down the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04008752 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04008753 * when wc->stage == UPDATE_BACKREF, this function updates
8754 * back refs for pointers in the block.
8755 *
8756 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04008757 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008758static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
8759 struct btrfs_root *root,
8760 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008761 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04008762{
8763 int level = wc->level;
8764 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04008765 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
8766 int ret;
8767
8768 if (wc->stage == UPDATE_BACKREF &&
8769 btrfs_header_owner(eb) != root->root_key.objectid)
8770 return 1;
8771
8772 /*
8773 * when reference count of tree block is 1, it won't increase
8774 * again. once full backref flag is set, we never clear it.
8775 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04008776 if (lookup_info &&
8777 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
8778 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008779 BUG_ON(!path->locks[level]);
8780 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05008781 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008782 &wc->refs[level],
8783 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008784 BUG_ON(ret == -ENOMEM);
8785 if (ret)
8786 return ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008787 BUG_ON(wc->refs[level] == 0);
8788 }
8789
Yan Zheng2c47e6052009-06-27 21:07:35 -04008790 if (wc->stage == DROP_REFERENCE) {
8791 if (wc->refs[level] > 1)
8792 return 1;
8793
8794 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04008795 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008796 path->locks[level] = 0;
8797 }
8798 return 0;
8799 }
8800
8801 /* wc->stage == UPDATE_BACKREF */
8802 if (!(wc->flags[level] & flag)) {
8803 BUG_ON(!path->locks[level]);
Josef Bacike339a6b2014-07-02 10:54:25 -07008804 ret = btrfs_inc_ref(trans, root, eb, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008805 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07008806 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008807 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008808 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
Josef Bacikb1c79e02013-05-09 13:49:30 -04008809 eb->len, flag,
8810 btrfs_header_level(eb), 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008811 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008812 wc->flags[level] |= flag;
8813 }
8814
8815 /*
8816 * the block is shared by multiple trees, so it's not good to
8817 * keep the tree lock
8818 */
8819 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04008820 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008821 path->locks[level] = 0;
8822 }
8823 return 0;
8824}
8825
8826/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008827 * helper to process tree block pointer.
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008828 *
8829 * when wc->stage == DROP_REFERENCE, this function checks
8830 * reference count of the block pointed to. if the block
8831 * is shared and we need update back refs for the subtree
8832 * rooted at the block, this function changes wc->stage to
8833 * UPDATE_BACKREF. if the block is shared and there is no
8834 * need to update back, this function drops the reference
8835 * to the block.
8836 *
8837 * NOTE: return value 1 means we should stop walking down.
8838 */
8839static noinline int do_walk_down(struct btrfs_trans_handle *trans,
8840 struct btrfs_root *root,
8841 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008842 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008843{
8844 u64 bytenr;
8845 u64 generation;
8846 u64 parent;
8847 u32 blocksize;
8848 struct btrfs_key key;
8849 struct extent_buffer *next;
8850 int level = wc->level;
8851 int reada = 0;
8852 int ret = 0;
Mark Fasheh11526512014-07-17 12:39:01 -07008853 bool need_account = false;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008854
8855 generation = btrfs_node_ptr_generation(path->nodes[level],
8856 path->slots[level]);
8857 /*
8858 * if the lower level block was created before the snapshot
8859 * was created, we know there is no need to update back refs
8860 * for the subtree
8861 */
8862 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04008863 generation <= root->root_key.offset) {
8864 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008865 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008866 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008867
8868 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
David Sterba707e8a02014-06-04 19:22:26 +02008869 blocksize = root->nodesize;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008870
Daniel Dressler01d58472014-11-21 17:15:07 +09008871 next = btrfs_find_tree_block(root->fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008872 if (!next) {
David Sterbaa83fffb2014-06-15 02:39:54 +02008873 next = btrfs_find_create_tree_block(root, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07008874 if (IS_ERR(next))
8875 return PTR_ERR(next);
8876
Josef Bacikb2aaaa32013-07-05 17:05:38 -04008877 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
8878 level - 1);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008879 reada = 1;
8880 }
8881 btrfs_tree_lock(next);
8882 btrfs_set_lock_blocking(next);
8883
Josef Bacik3173a182013-03-07 14:22:04 -05008884 ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008885 &wc->refs[level - 1],
8886 &wc->flags[level - 1]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008887 if (ret < 0) {
8888 btrfs_tree_unlock(next);
8889 return ret;
8890 }
8891
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008892 if (unlikely(wc->refs[level - 1] == 0)) {
8893 btrfs_err(root->fs_info, "Missing references.");
8894 BUG();
8895 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008896 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008897
Yan, Zheng94fcca92009-10-09 09:25:16 -04008898 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008899 if (wc->refs[level - 1] > 1) {
Mark Fasheh11526512014-07-17 12:39:01 -07008900 need_account = true;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008901 if (level == 1 &&
8902 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8903 goto skip;
8904
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008905 if (!wc->update_ref ||
8906 generation <= root->root_key.offset)
8907 goto skip;
8908
8909 btrfs_node_key_to_cpu(path->nodes[level], &key,
8910 path->slots[level]);
8911 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
8912 if (ret < 0)
8913 goto skip;
8914
8915 wc->stage = UPDATE_BACKREF;
8916 wc->shared_level = level - 1;
8917 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008918 } else {
8919 if (level == 1 &&
8920 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8921 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008922 }
8923
Chris Masonb9fab912012-05-06 07:23:47 -04008924 if (!btrfs_buffer_uptodate(next, generation, 0)) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008925 btrfs_tree_unlock(next);
8926 free_extent_buffer(next);
8927 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008928 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008929 }
8930
8931 if (!next) {
8932 if (reada && level == 1)
8933 reada_walk_down(trans, root, wc, path);
David Sterbace86cd52014-06-15 01:07:32 +02008934 next = read_tree_block(root, bytenr, generation);
Liu Bo64c043d2015-05-25 17:30:15 +08008935 if (IS_ERR(next)) {
8936 return PTR_ERR(next);
8937 } else if (!extent_buffer_uptodate(next)) {
Josef Bacik416bc652013-04-23 14:17:42 -04008938 free_extent_buffer(next);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00008939 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04008940 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008941 btrfs_tree_lock(next);
8942 btrfs_set_lock_blocking(next);
8943 }
8944
8945 level--;
8946 BUG_ON(level != btrfs_header_level(next));
8947 path->nodes[level] = next;
8948 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008949 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008950 wc->level = level;
8951 if (wc->level == 1)
8952 wc->reada_slot = 0;
8953 return 0;
8954skip:
8955 wc->refs[level - 1] = 0;
8956 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008957 if (wc->stage == DROP_REFERENCE) {
8958 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
8959 parent = path->nodes[level]->start;
8960 } else {
8961 BUG_ON(root->root_key.objectid !=
8962 btrfs_header_owner(path->nodes[level]));
8963 parent = 0;
8964 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008965
Mark Fasheh11526512014-07-17 12:39:01 -07008966 if (need_account) {
8967 ret = account_shared_subtree(trans, root, next,
8968 generation, level - 1);
8969 if (ret) {
David Sterba94647322015-10-08 11:01:36 +02008970 btrfs_err_rl(root->fs_info,
8971 "Error "
Mark Fasheh11526512014-07-17 12:39:01 -07008972 "%d accounting shared subtree. Quota "
David Sterba94647322015-10-08 11:01:36 +02008973 "is out of sync, rescan required.",
8974 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07008975 }
8976 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008977 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01008978 root->root_key.objectid, level - 1, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008979 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008980 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008981 btrfs_tree_unlock(next);
8982 free_extent_buffer(next);
Yan, Zheng94fcca92009-10-09 09:25:16 -04008983 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008984 return 1;
8985}
8986
8987/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008988 * helper to process tree block while walking up the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04008989 *
8990 * when wc->stage == DROP_REFERENCE, this function drops
8991 * reference count on the block.
8992 *
8993 * when wc->stage == UPDATE_BACKREF, this function changes
8994 * wc->stage back to DROP_REFERENCE if we changed wc->stage
8995 * to UPDATE_BACKREF previously while processing the block.
8996 *
8997 * NOTE: return value 1 means we should stop walking up.
8998 */
8999static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
9000 struct btrfs_root *root,
9001 struct btrfs_path *path,
9002 struct walk_control *wc)
9003{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009004 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009005 int level = wc->level;
9006 struct extent_buffer *eb = path->nodes[level];
9007 u64 parent = 0;
9008
9009 if (wc->stage == UPDATE_BACKREF) {
9010 BUG_ON(wc->shared_level < level);
9011 if (level < wc->shared_level)
9012 goto out;
9013
Yan Zheng2c47e6052009-06-27 21:07:35 -04009014 ret = find_next_key(path, level + 1, &wc->update_progress);
9015 if (ret > 0)
9016 wc->update_ref = 0;
9017
9018 wc->stage = DROP_REFERENCE;
9019 wc->shared_level = -1;
9020 path->slots[level] = 0;
9021
9022 /*
9023 * check reference count again if the block isn't locked.
9024 * we should start walking down the tree again if reference
9025 * count is one.
9026 */
9027 if (!path->locks[level]) {
9028 BUG_ON(level == 0);
9029 btrfs_tree_lock(eb);
9030 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04009031 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009032
9033 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05009034 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009035 &wc->refs[level],
9036 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009037 if (ret < 0) {
9038 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00009039 path->locks[level] = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009040 return ret;
9041 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009042 BUG_ON(wc->refs[level] == 0);
9043 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04009044 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00009045 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009046 return 1;
9047 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009048 }
9049 }
9050
9051 /* wc->stage == DROP_REFERENCE */
9052 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
9053
9054 if (wc->refs[level] == 1) {
9055 if (level == 0) {
9056 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
Josef Bacike339a6b2014-07-02 10:54:25 -07009057 ret = btrfs_dec_ref(trans, root, eb, 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009058 else
Josef Bacike339a6b2014-07-02 10:54:25 -07009059 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009060 BUG_ON(ret); /* -ENOMEM */
Mark Fasheh11526512014-07-17 12:39:01 -07009061 ret = account_leaf_items(trans, root, eb);
9062 if (ret) {
David Sterba94647322015-10-08 11:01:36 +02009063 btrfs_err_rl(root->fs_info,
9064 "error "
Mark Fasheh11526512014-07-17 12:39:01 -07009065 "%d accounting leaf items. Quota "
David Sterba94647322015-10-08 11:01:36 +02009066 "is out of sync, rescan required.",
9067 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07009068 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009069 }
9070 /* make block locked assertion in clean_tree_block happy */
9071 if (!path->locks[level] &&
9072 btrfs_header_generation(eb) == trans->transid) {
9073 btrfs_tree_lock(eb);
9074 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04009075 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009076 }
Daniel Dressler01d58472014-11-21 17:15:07 +09009077 clean_tree_block(trans, root->fs_info, eb);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009078 }
9079
9080 if (eb == root->node) {
9081 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
9082 parent = eb->start;
9083 else
9084 BUG_ON(root->root_key.objectid !=
9085 btrfs_header_owner(eb));
9086 } else {
9087 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
9088 parent = path->nodes[level + 1]->start;
9089 else
9090 BUG_ON(root->root_key.objectid !=
9091 btrfs_header_owner(path->nodes[level + 1]));
9092 }
9093
Jan Schmidt5581a512012-05-16 17:04:52 +02009094 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009095out:
9096 wc->refs[level] = 0;
9097 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009098 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009099}
9100
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009101static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
9102 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009103 struct btrfs_path *path,
9104 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04009105{
Yan Zheng2c47e6052009-06-27 21:07:35 -04009106 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04009107 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009108 int ret;
9109
Yan Zheng2c47e6052009-06-27 21:07:35 -04009110 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04009111 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009112 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04009113 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009114
Yan Zheng2c47e6052009-06-27 21:07:35 -04009115 if (level == 0)
9116 break;
9117
Yan, Zheng7a7965f2010-02-01 02:41:17 +00009118 if (path->slots[level] >=
9119 btrfs_header_nritems(path->nodes[level]))
9120 break;
9121
Yan, Zheng94fcca92009-10-09 09:25:16 -04009122 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009123 if (ret > 0) {
9124 path->slots[level]++;
9125 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00009126 } else if (ret < 0)
9127 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009128 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009129 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04009130 return 0;
9131}
9132
Chris Masond3977122009-01-05 21:25:51 -05009133static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05009134 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04009135 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009136 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05009137{
Yan Zheng2c47e6052009-06-27 21:07:35 -04009138 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05009139 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04009140
Yan Zheng2c47e6052009-06-27 21:07:35 -04009141 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
9142 while (level < max_level && path->nodes[level]) {
9143 wc->level = level;
9144 if (path->slots[level] + 1 <
9145 btrfs_header_nritems(path->nodes[level])) {
9146 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05009147 return 0;
9148 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009149 ret = walk_up_proc(trans, root, path, wc);
9150 if (ret > 0)
9151 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05009152
Yan Zheng2c47e6052009-06-27 21:07:35 -04009153 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04009154 btrfs_tree_unlock_rw(path->nodes[level],
9155 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009156 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009157 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009158 free_extent_buffer(path->nodes[level]);
9159 path->nodes[level] = NULL;
9160 level++;
Chris Mason20524f02007-03-10 06:35:47 -05009161 }
9162 }
9163 return 1;
9164}
9165
Chris Mason9aca1d52007-03-13 11:09:37 -04009166/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04009167 * drop a subvolume tree.
9168 *
9169 * this function traverses the tree freeing any blocks that only
9170 * referenced by the tree.
9171 *
9172 * when a shared tree block is found. this function decreases its
9173 * reference count by one. if update_ref is true, this function
9174 * also make sure backrefs for the shared block and all lower level
9175 * blocks are properly updated.
David Sterba9d1a2a32013-03-12 15:13:28 +00009176 *
9177 * If called with for_reloc == 0, may exit early with -EAGAIN
Chris Mason9aca1d52007-03-13 11:09:37 -04009178 */
Jeff Mahoney2c536792011-10-03 23:22:41 -04009179int btrfs_drop_snapshot(struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009180 struct btrfs_block_rsv *block_rsv, int update_ref,
9181 int for_reloc)
Chris Mason20524f02007-03-10 06:35:47 -05009182{
Chris Mason5caf2a02007-04-02 11:20:42 -04009183 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009184 struct btrfs_trans_handle *trans;
9185 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04009186 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009187 struct walk_control *wc;
9188 struct btrfs_key key;
9189 int err = 0;
9190 int ret;
9191 int level;
Josef Bacikd29a9f62013-07-17 19:30:20 -04009192 bool root_dropped = false;
Chris Mason20524f02007-03-10 06:35:47 -05009193
Mark Fasheh11526512014-07-17 12:39:01 -07009194 btrfs_debug(root->fs_info, "Drop subvolume %llu", root->objectid);
9195
Chris Mason5caf2a02007-04-02 11:20:42 -04009196 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009197 if (!path) {
9198 err = -ENOMEM;
9199 goto out;
9200 }
Chris Mason20524f02007-03-10 06:35:47 -05009201
Yan Zheng2c47e6052009-06-27 21:07:35 -04009202 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07009203 if (!wc) {
9204 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009205 err = -ENOMEM;
9206 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07009207 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009208
Yan, Zhenga22285a2010-05-16 10:48:46 -04009209 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009210 if (IS_ERR(trans)) {
9211 err = PTR_ERR(trans);
9212 goto out_free;
9213 }
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00009214
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009215 if (block_rsv)
9216 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009217
Chris Mason9f3a7422007-08-07 15:52:19 -04009218 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009219 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009220 path->nodes[level] = btrfs_lock_root_node(root);
9221 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04009222 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009223 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009224 memset(&wc->update_progress, 0,
9225 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04009226 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04009227 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009228 memcpy(&wc->update_progress, &key,
9229 sizeof(wc->update_progress));
9230
Chris Mason6702ed42007-08-07 16:15:09 -04009231 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009232 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04009233 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009234 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
9235 path->lowest_level = 0;
9236 if (ret < 0) {
9237 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009238 goto out_end_trans;
Chris Mason9f3a7422007-08-07 15:52:19 -04009239 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009240 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009241
Chris Mason7d9eb122008-07-08 14:19:17 -04009242 /*
9243 * unlock our path, this is safe because only this
9244 * function is allowed to delete this snapshot
9245 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009246 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04009247
Yan Zheng2c47e6052009-06-27 21:07:35 -04009248 level = btrfs_header_level(root->node);
9249 while (1) {
9250 btrfs_tree_lock(path->nodes[level]);
9251 btrfs_set_lock_blocking(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009252 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009253
9254 ret = btrfs_lookup_extent_info(trans, root,
9255 path->nodes[level]->start,
Josef Bacik3173a182013-03-07 14:22:04 -05009256 level, 1, &wc->refs[level],
Yan Zheng2c47e6052009-06-27 21:07:35 -04009257 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009258 if (ret < 0) {
9259 err = ret;
9260 goto out_end_trans;
9261 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009262 BUG_ON(wc->refs[level] == 0);
9263
9264 if (level == root_item->drop_level)
9265 break;
9266
9267 btrfs_tree_unlock(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009268 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009269 WARN_ON(wc->refs[level] != 1);
9270 level--;
9271 }
9272 }
9273
9274 wc->level = level;
9275 wc->shared_level = -1;
9276 wc->stage = DROP_REFERENCE;
9277 wc->update_ref = update_ref;
9278 wc->keep_locks = 0;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009279 wc->for_reloc = for_reloc;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009280 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009281
9282 while (1) {
David Sterba9d1a2a32013-03-12 15:13:28 +00009283
Yan Zheng2c47e6052009-06-27 21:07:35 -04009284 ret = walk_down_tree(trans, root, path, wc);
9285 if (ret < 0) {
9286 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04009287 break;
9288 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009289
9290 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
9291 if (ret < 0) {
9292 err = ret;
9293 break;
9294 }
9295
9296 if (ret > 0) {
9297 BUG_ON(wc->stage != DROP_REFERENCE);
9298 break;
9299 }
9300
9301 if (wc->stage == DROP_REFERENCE) {
9302 level = wc->level;
9303 btrfs_node_key(path->nodes[level],
9304 &root_item->drop_progress,
9305 path->slots[level]);
9306 root_item->drop_level = level;
9307 }
9308
9309 BUG_ON(wc->level == 0);
Josef Bacik3c8f2422013-07-15 11:57:06 -04009310 if (btrfs_should_end_transaction(trans, tree_root) ||
9311 (!for_reloc && btrfs_need_cleaner_sleep(root))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009312 ret = btrfs_update_root(trans, tree_root,
9313 &root->root_key,
9314 root_item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009315 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009316 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009317 err = ret;
9318 goto out_end_trans;
9319 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009320
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009321 btrfs_end_transaction_throttle(trans, tree_root);
Josef Bacik3c8f2422013-07-15 11:57:06 -04009322 if (!for_reloc && btrfs_need_cleaner_sleep(root)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05009323 pr_debug("BTRFS: drop snapshot early exit\n");
Josef Bacik3c8f2422013-07-15 11:57:06 -04009324 err = -EAGAIN;
9325 goto out_free;
9326 }
9327
Yan, Zhenga22285a2010-05-16 10:48:46 -04009328 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009329 if (IS_ERR(trans)) {
9330 err = PTR_ERR(trans);
9331 goto out_free;
9332 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009333 if (block_rsv)
9334 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04009335 }
Chris Mason20524f02007-03-10 06:35:47 -05009336 }
David Sterbab3b4aa72011-04-21 01:20:15 +02009337 btrfs_release_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009338 if (err)
9339 goto out_end_trans;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009340
9341 ret = btrfs_del_root(trans, tree_root, &root->root_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009342 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009343 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009344 goto out_end_trans;
9345 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009346
Yan, Zheng76dda932009-09-21 16:00:26 -04009347 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Miao Xiecb517ea2013-05-15 07:48:19 +00009348 ret = btrfs_find_root(tree_root, &root->root_key, path,
9349 NULL, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009350 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009351 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009352 err = ret;
9353 goto out_end_trans;
9354 } else if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05009355 /* if we fail to delete the orphan item this time
9356 * around, it'll get picked up the next time.
9357 *
9358 * The most common failure here is just -ENOENT.
9359 */
9360 btrfs_del_orphan_item(trans, tree_root,
9361 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04009362 }
9363 }
9364
Miao Xie27cdeb72014-04-02 19:51:05 +08009365 if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) {
Josef Bacik2b9dbef2015-09-15 10:07:04 -04009366 btrfs_add_dropped_root(trans, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009367 } else {
9368 free_extent_buffer(root->node);
9369 free_extent_buffer(root->commit_root);
Miao Xieb0feb9d2013-05-15 07:48:20 +00009370 btrfs_put_fs_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009371 }
Josef Bacikd29a9f62013-07-17 19:30:20 -04009372 root_dropped = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009373out_end_trans:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009374 btrfs_end_transaction_throttle(trans, tree_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009375out_free:
Yan Zheng2c47e6052009-06-27 21:07:35 -04009376 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04009377 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009378out:
Josef Bacikd29a9f62013-07-17 19:30:20 -04009379 /*
9380 * So if we need to stop dropping the snapshot for whatever reason we
9381 * need to make sure to add it back to the dead root list so that we
9382 * keep trying to do the work later. This also cleans up roots if we
9383 * don't have it in the radix (like when we recover after a power fail
9384 * or unmount) so we don't leak memory.
9385 */
Josef Bacikb37b39c2013-07-23 16:57:15 -04009386 if (!for_reloc && root_dropped == false)
Josef Bacikd29a9f62013-07-17 19:30:20 -04009387 btrfs_add_dead_root(root);
Wang Shilong90515e72014-01-07 17:26:58 +08009388 if (err && err != -EAGAIN)
Anand Jain34d97002016-03-16 16:43:06 +08009389 btrfs_handle_fs_error(root->fs_info, err, NULL);
Jeff Mahoney2c536792011-10-03 23:22:41 -04009390 return err;
Chris Mason20524f02007-03-10 06:35:47 -05009391}
Chris Mason9078a3e2007-04-26 16:46:15 -04009392
Yan Zheng2c47e6052009-06-27 21:07:35 -04009393/*
9394 * drop subtree rooted at tree block 'node'.
9395 *
9396 * NOTE: this function will unlock and release tree block 'node'
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009397 * only used by relocation code
Yan Zheng2c47e6052009-06-27 21:07:35 -04009398 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04009399int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
9400 struct btrfs_root *root,
9401 struct extent_buffer *node,
9402 struct extent_buffer *parent)
9403{
9404 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009405 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009406 int level;
9407 int parent_level;
9408 int ret = 0;
9409 int wret;
9410
Yan Zheng2c47e6052009-06-27 21:07:35 -04009411 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
9412
Yan Zhengf82d02d2008-10-29 14:49:05 -04009413 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009414 if (!path)
9415 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009416
Yan Zheng2c47e6052009-06-27 21:07:35 -04009417 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009418 if (!wc) {
9419 btrfs_free_path(path);
9420 return -ENOMEM;
9421 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009422
Chris Masonb9447ef2009-03-09 11:45:38 -04009423 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009424 parent_level = btrfs_header_level(parent);
9425 extent_buffer_get(parent);
9426 path->nodes[parent_level] = parent;
9427 path->slots[parent_level] = btrfs_header_nritems(parent);
9428
Chris Masonb9447ef2009-03-09 11:45:38 -04009429 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009430 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009431 path->nodes[level] = node;
9432 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009433 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009434
9435 wc->refs[parent_level] = 1;
9436 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
9437 wc->level = level;
9438 wc->shared_level = -1;
9439 wc->stage = DROP_REFERENCE;
9440 wc->update_ref = 0;
9441 wc->keep_locks = 1;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009442 wc->for_reloc = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009443 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009444
9445 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009446 wret = walk_down_tree(trans, root, path, wc);
9447 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04009448 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009449 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009450 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04009451
Yan Zheng2c47e6052009-06-27 21:07:35 -04009452 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009453 if (wret < 0)
9454 ret = wret;
9455 if (wret != 0)
9456 break;
9457 }
9458
Yan Zheng2c47e6052009-06-27 21:07:35 -04009459 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009460 btrfs_free_path(path);
9461 return ret;
9462}
9463
Chris Masonec44a352008-04-28 15:29:52 -04009464static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
9465{
9466 u64 num_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009467 u64 stripped;
Chris Masonec44a352008-04-28 15:29:52 -04009468
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009469 /*
9470 * if restripe for this chunk_type is on pick target profile and
9471 * return, otherwise do the usual balance
9472 */
9473 stripped = get_restripe_target(root->fs_info, flags);
9474 if (stripped)
9475 return extended_to_chunk(stripped);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02009476
Miao Xie95669972014-07-24 11:37:14 +08009477 num_devices = root->fs_info->fs_devices->rw_devices;
Chris Masoncd02dca2010-12-13 14:56:23 -05009478
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009479 stripped = BTRFS_BLOCK_GROUP_RAID0 |
David Woodhouse53b381b2013-01-29 18:40:14 -05009480 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009481 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
9482
Chris Masonec44a352008-04-28 15:29:52 -04009483 if (num_devices == 1) {
9484 stripped |= BTRFS_BLOCK_GROUP_DUP;
9485 stripped = flags & ~stripped;
9486
9487 /* turn raid0 into single device chunks */
9488 if (flags & BTRFS_BLOCK_GROUP_RAID0)
9489 return stripped;
9490
9491 /* turn mirroring into duplication */
9492 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
9493 BTRFS_BLOCK_GROUP_RAID10))
9494 return stripped | BTRFS_BLOCK_GROUP_DUP;
Chris Masonec44a352008-04-28 15:29:52 -04009495 } else {
9496 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04009497 if (flags & stripped)
9498 return flags;
9499
9500 stripped |= BTRFS_BLOCK_GROUP_DUP;
9501 stripped = flags & ~stripped;
9502
9503 /* switch duplicated blocks with raid1 */
9504 if (flags & BTRFS_BLOCK_GROUP_DUP)
9505 return stripped | BTRFS_BLOCK_GROUP_RAID1;
9506
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009507 /* this is drive concat, leave it alone */
Chris Masonec44a352008-04-28 15:29:52 -04009508 }
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009509
Chris Masonec44a352008-04-28 15:29:52 -04009510 return flags;
9511}
9512
Zhaolei868f4012015-08-05 16:43:27 +08009513static int inc_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04009514{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009515 struct btrfs_space_info *sinfo = cache->space_info;
9516 u64 num_bytes;
Miao Xie199c36e2011-07-15 10:34:36 +00009517 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009518 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04009519
Miao Xie199c36e2011-07-15 10:34:36 +00009520 /*
9521 * We need some metadata space and system metadata space for
9522 * allocating chunks in some corner cases until we force to set
9523 * it to be readonly.
9524 */
9525 if ((sinfo->flags &
9526 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
9527 !force)
Byongho Leeee221842015-12-15 01:42:10 +09009528 min_allocable_bytes = SZ_1M;
Miao Xie199c36e2011-07-15 10:34:36 +00009529 else
9530 min_allocable_bytes = 0;
9531
Yan, Zhengf0486c62010-05-16 10:46:25 -04009532 spin_lock(&sinfo->lock);
9533 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00009534
9535 if (cache->ro) {
Zhaolei868f4012015-08-05 16:43:27 +08009536 cache->ro++;
WuBo61cfea92011-07-26 03:30:11 +00009537 ret = 0;
9538 goto out;
9539 }
9540
Yan, Zhengf0486c62010-05-16 10:46:25 -04009541 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
9542 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04009543
Yan, Zhengf0486c62010-05-16 10:46:25 -04009544 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
Josef Bacik37be25b2011-08-05 10:25:38 -04009545 sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes +
9546 min_allocable_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04009547 sinfo->bytes_readonly += num_bytes;
Zhaolei868f4012015-08-05 16:43:27 +08009548 cache->ro++;
Josef Bacik633c0aa2014-10-31 09:49:34 -04009549 list_add_tail(&cache->ro_list, &sinfo->ro_bgs);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009550 ret = 0;
9551 }
WuBo61cfea92011-07-26 03:30:11 +00009552out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04009553 spin_unlock(&cache->lock);
9554 spin_unlock(&sinfo->lock);
9555 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04009556}
9557
Zhaolei868f4012015-08-05 16:43:27 +08009558int btrfs_inc_block_group_ro(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04009559 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009560
9561{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009562 struct btrfs_trans_handle *trans;
9563 u64 alloc_flags;
9564 int ret;
9565
Chris Mason1bbc6212015-04-06 12:46:08 -07009566again:
Josef Bacik7a7eaa42011-04-13 12:54:33 -04009567 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009568 if (IS_ERR(trans))
9569 return PTR_ERR(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009570
Chris Mason1bbc6212015-04-06 12:46:08 -07009571 /*
9572 * we're not allowed to set block groups readonly after the dirty
9573 * block groups cache has started writing. If it already started,
9574 * back off and let this transaction commit
9575 */
9576 mutex_lock(&root->fs_info->ro_block_group_mutex);
Josef Bacik3204d332015-09-24 10:46:10 -04009577 if (test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &trans->transaction->flags)) {
Chris Mason1bbc6212015-04-06 12:46:08 -07009578 u64 transid = trans->transid;
9579
9580 mutex_unlock(&root->fs_info->ro_block_group_mutex);
9581 btrfs_end_transaction(trans, root);
9582
9583 ret = btrfs_wait_for_commit(root, transid);
9584 if (ret)
9585 return ret;
9586 goto again;
9587 }
9588
Chris Mason153c35b2015-05-19 18:54:41 -07009589 /*
9590 * if we are changing raid levels, try to allocate a corresponding
9591 * block group with the new raid level.
9592 */
9593 alloc_flags = update_block_group_flags(root, cache->flags);
9594 if (alloc_flags != cache->flags) {
9595 ret = do_chunk_alloc(trans, root, alloc_flags,
9596 CHUNK_ALLOC_FORCE);
9597 /*
9598 * ENOSPC is allowed here, we may have enough space
9599 * already allocated at the new raid level to
9600 * carry on
9601 */
9602 if (ret == -ENOSPC)
9603 ret = 0;
9604 if (ret < 0)
9605 goto out;
9606 }
Chris Mason1bbc6212015-04-06 12:46:08 -07009607
Zhaolei868f4012015-08-05 16:43:27 +08009608 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009609 if (!ret)
9610 goto out;
9611 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
Josef Bacik698d0082012-09-12 14:08:47 -04009612 ret = do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04009613 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009614 if (ret < 0)
9615 goto out;
Zhaolei868f4012015-08-05 16:43:27 +08009616 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009617out:
Shaohua Li2f081082015-01-09 10:40:15 -08009618 if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
9619 alloc_flags = update_block_group_flags(root, cache->flags);
Filipe Mananaa9629592015-05-18 19:11:40 +01009620 lock_chunks(root->fs_info->chunk_root);
Filipe Manana4617ea32015-06-09 17:48:21 +01009621 check_system_chunk(trans, root, alloc_flags);
Filipe Mananaa9629592015-05-18 19:11:40 +01009622 unlock_chunks(root->fs_info->chunk_root);
Shaohua Li2f081082015-01-09 10:40:15 -08009623 }
Chris Mason1bbc6212015-04-06 12:46:08 -07009624 mutex_unlock(&root->fs_info->ro_block_group_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08009625
Yan, Zhengf0486c62010-05-16 10:46:25 -04009626 btrfs_end_transaction(trans, root);
9627 return ret;
9628}
9629
Chris Masonc87f08c2011-02-16 13:57:04 -05009630int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
9631 struct btrfs_root *root, u64 type)
9632{
9633 u64 alloc_flags = get_alloc_profile(root, type);
Josef Bacik698d0082012-09-12 14:08:47 -04009634 return do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04009635 CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05009636}
9637
Miao Xie6d07bce2011-01-05 10:07:31 +00009638/*
9639 * helper to account the unused space of all the readonly block group in the
Josef Bacik633c0aa2014-10-31 09:49:34 -04009640 * space_info. takes mirrors into account.
Miao Xie6d07bce2011-01-05 10:07:31 +00009641 */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009642u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
Miao Xie6d07bce2011-01-05 10:07:31 +00009643{
9644 struct btrfs_block_group_cache *block_group;
9645 u64 free_bytes = 0;
9646 int factor;
9647
Nicholas D Steeves01327612016-05-19 21:18:45 -04009648 /* It's df, we don't care if it's racy */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009649 if (list_empty(&sinfo->ro_bgs))
9650 return 0;
9651
9652 spin_lock(&sinfo->lock);
9653 list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00009654 spin_lock(&block_group->lock);
9655
9656 if (!block_group->ro) {
9657 spin_unlock(&block_group->lock);
9658 continue;
9659 }
9660
9661 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
9662 BTRFS_BLOCK_GROUP_RAID10 |
9663 BTRFS_BLOCK_GROUP_DUP))
9664 factor = 2;
9665 else
9666 factor = 1;
9667
9668 free_bytes += (block_group->key.offset -
9669 btrfs_block_group_used(&block_group->item)) *
9670 factor;
9671
9672 spin_unlock(&block_group->lock);
9673 }
Miao Xie6d07bce2011-01-05 10:07:31 +00009674 spin_unlock(&sinfo->lock);
9675
9676 return free_bytes;
9677}
9678
Zhaolei868f4012015-08-05 16:43:27 +08009679void btrfs_dec_block_group_ro(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04009680 struct btrfs_block_group_cache *cache)
9681{
9682 struct btrfs_space_info *sinfo = cache->space_info;
9683 u64 num_bytes;
9684
9685 BUG_ON(!cache->ro);
9686
9687 spin_lock(&sinfo->lock);
9688 spin_lock(&cache->lock);
Zhaolei868f4012015-08-05 16:43:27 +08009689 if (!--cache->ro) {
9690 num_bytes = cache->key.offset - cache->reserved -
9691 cache->pinned - cache->bytes_super -
9692 btrfs_block_group_used(&cache->item);
9693 sinfo->bytes_readonly -= num_bytes;
9694 list_del_init(&cache->ro_list);
9695 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009696 spin_unlock(&cache->lock);
9697 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009698}
9699
Josef Bacikba1bf482009-09-11 16:11:19 -04009700/*
9701 * checks to see if its even possible to relocate this block group.
9702 *
9703 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
9704 * ok to go ahead and try.
9705 */
9706int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04009707{
Zheng Yan1a40e232008-09-26 10:09:34 -04009708 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04009709 struct btrfs_space_info *space_info;
9710 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
9711 struct btrfs_device *device;
Josef Bacik6df9a952013-06-27 13:22:46 -04009712 struct btrfs_trans_handle *trans;
liubocdcb7252011-08-03 10:15:25 +00009713 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04009714 u64 dev_min = 1;
9715 u64 dev_nr = 0;
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009716 u64 target;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009717 int debug;
liubocdcb7252011-08-03 10:15:25 +00009718 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04009719 int full = 0;
9720 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05009721
Jeff Mahoney3cdde222016-06-09 21:38:35 -04009722 debug = btrfs_test_opt(root->fs_info, ENOSPC_DEBUG);
Qu Wenruo0305bc22016-03-23 11:38:17 +08009723
Josef Bacikba1bf482009-09-11 16:11:19 -04009724 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04009725
Josef Bacikba1bf482009-09-11 16:11:19 -04009726 /* odd, couldn't find the block group, leave it alone */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009727 if (!block_group) {
9728 if (debug)
9729 btrfs_warn(root->fs_info,
9730 "can't find block group for bytenr %llu",
9731 bytenr);
Josef Bacikba1bf482009-09-11 16:11:19 -04009732 return -1;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009733 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009734
liubocdcb7252011-08-03 10:15:25 +00009735 min_free = btrfs_block_group_used(&block_group->item);
9736
Josef Bacikba1bf482009-09-11 16:11:19 -04009737 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00009738 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04009739 goto out;
Chris Mason323da792008-05-09 11:46:48 -04009740
Josef Bacikba1bf482009-09-11 16:11:19 -04009741 space_info = block_group->space_info;
9742 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04009743
Josef Bacikba1bf482009-09-11 16:11:19 -04009744 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04009745
Josef Bacikba1bf482009-09-11 16:11:19 -04009746 /*
9747 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04009748 * relocate it unless we're able to allocate a new chunk below.
9749 *
9750 * Otherwise, we need to make sure we have room in the space to handle
9751 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04009752 */
Chris Mason7ce618d2009-09-22 14:48:44 -04009753 if ((space_info->total_bytes != block_group->key.offset) &&
liubocdcb7252011-08-03 10:15:25 +00009754 (space_info->bytes_used + space_info->bytes_reserved +
9755 space_info->bytes_pinned + space_info->bytes_readonly +
9756 min_free < space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04009757 spin_unlock(&space_info->lock);
9758 goto out;
9759 }
9760 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009761
Josef Bacikba1bf482009-09-11 16:11:19 -04009762 /*
9763 * ok we don't have enough space, but maybe we have free space on our
9764 * devices to allocate new chunks for relocation, so loop through our
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009765 * alloc devices and guess if we have enough space. if this block
9766 * group is going to be restriped, run checks against the target
9767 * profile instead of the current one.
Josef Bacikba1bf482009-09-11 16:11:19 -04009768 */
9769 ret = -1;
Chris Mason4313b392008-01-03 09:08:48 -05009770
liubocdcb7252011-08-03 10:15:25 +00009771 /*
9772 * index:
9773 * 0: raid10
9774 * 1: raid1
9775 * 2: dup
9776 * 3: raid0
9777 * 4: single
9778 */
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009779 target = get_restripe_target(root->fs_info, block_group->flags);
9780 if (target) {
Liu Bo31e50222012-11-21 14:18:10 +00009781 index = __get_raid_index(extended_to_chunk(target));
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009782 } else {
9783 /*
9784 * this is just a balance, so if we were marked as full
9785 * we know there is no space for a new chunk
9786 */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009787 if (full) {
9788 if (debug)
9789 btrfs_warn(root->fs_info,
9790 "no space to alloc new chunk for block group %llu",
9791 block_group->key.objectid);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009792 goto out;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009793 }
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009794
9795 index = get_block_group_index(block_group);
9796 }
9797
Miao Xiee6ec7162013-01-17 05:38:51 +00009798 if (index == BTRFS_RAID_RAID10) {
liubocdcb7252011-08-03 10:15:25 +00009799 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04009800 /* Divide by 2 */
9801 min_free >>= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009802 } else if (index == BTRFS_RAID_RAID1) {
liubocdcb7252011-08-03 10:15:25 +00009803 dev_min = 2;
Miao Xiee6ec7162013-01-17 05:38:51 +00009804 } else if (index == BTRFS_RAID_DUP) {
Josef Bacik6719db62011-08-20 08:29:51 -04009805 /* Multiply by 2 */
9806 min_free <<= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009807 } else if (index == BTRFS_RAID_RAID0) {
liubocdcb7252011-08-03 10:15:25 +00009808 dev_min = fs_devices->rw_devices;
David Sterba47c57132015-02-20 18:43:47 +01009809 min_free = div64_u64(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00009810 }
9811
Josef Bacik6df9a952013-06-27 13:22:46 -04009812 /* We need to do this so that we can look at pending chunks */
9813 trans = btrfs_join_transaction(root);
9814 if (IS_ERR(trans)) {
9815 ret = PTR_ERR(trans);
9816 goto out;
9817 }
9818
Josef Bacikba1bf482009-09-11 16:11:19 -04009819 mutex_lock(&root->fs_info->chunk_mutex);
9820 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00009821 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04009822
Josef Bacikba1bf482009-09-11 16:11:19 -04009823 /*
9824 * check to make sure we can actually find a chunk with enough
9825 * space to fit our block group in.
9826 */
Stefan Behrens63a212a2012-11-05 18:29:28 +01009827 if (device->total_bytes > device->bytes_used + min_free &&
9828 !device->is_tgtdev_for_dev_replace) {
Josef Bacik6df9a952013-06-27 13:22:46 -04009829 ret = find_free_dev_extent(trans, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00009830 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04009831 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00009832 dev_nr++;
9833
9834 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05009835 break;
liubocdcb7252011-08-03 10:15:25 +00009836
Josef Bacikba1bf482009-09-11 16:11:19 -04009837 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05009838 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009839 }
Qu Wenruo0305bc22016-03-23 11:38:17 +08009840 if (debug && ret == -1)
9841 btrfs_warn(root->fs_info,
9842 "no space to allocate a new chunk for block group %llu",
9843 block_group->key.objectid);
Josef Bacikba1bf482009-09-11 16:11:19 -04009844 mutex_unlock(&root->fs_info->chunk_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04009845 btrfs_end_transaction(trans, root);
Chris Masonedbd8d42007-12-21 16:27:24 -05009846out:
Josef Bacikba1bf482009-09-11 16:11:19 -04009847 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05009848 return ret;
9849}
9850
Christoph Hellwigb2950862008-12-02 09:54:17 -05009851static int find_first_block_group(struct btrfs_root *root,
9852 struct btrfs_path *path, struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04009853{
Chris Mason925baed2008-06-25 16:01:30 -04009854 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04009855 struct btrfs_key found_key;
9856 struct extent_buffer *leaf;
9857 int slot;
9858
9859 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
9860 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009861 goto out;
9862
Chris Masond3977122009-01-05 21:25:51 -05009863 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04009864 slot = path->slots[0];
9865 leaf = path->nodes[0];
9866 if (slot >= btrfs_header_nritems(leaf)) {
9867 ret = btrfs_next_leaf(root, path);
9868 if (ret == 0)
9869 continue;
9870 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009871 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04009872 break;
9873 }
9874 btrfs_item_key_to_cpu(leaf, &found_key, slot);
9875
9876 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04009877 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
Liu Bo6fb37b72016-06-22 18:31:27 -07009878 struct extent_map_tree *em_tree;
9879 struct extent_map *em;
9880
9881 em_tree = &root->fs_info->mapping_tree.map_tree;
9882 read_lock(&em_tree->lock);
9883 em = lookup_extent_mapping(em_tree, found_key.objectid,
9884 found_key.offset);
9885 read_unlock(&em_tree->lock);
9886 if (!em) {
9887 btrfs_err(root->fs_info,
9888 "logical %llu len %llu found bg but no related chunk",
9889 found_key.objectid, found_key.offset);
9890 ret = -ENOENT;
9891 } else {
9892 ret = 0;
9893 }
Josef Bacik187ee582016-08-18 15:30:06 -04009894 free_extent_map(em);
Chris Mason925baed2008-06-25 16:01:30 -04009895 goto out;
9896 }
Chris Mason0b86a832008-03-24 15:01:56 -04009897 path->slots[0]++;
9898 }
Chris Mason925baed2008-06-25 16:01:30 -04009899out:
Chris Mason0b86a832008-03-24 15:01:56 -04009900 return ret;
9901}
9902
Josef Bacik0af3d002010-06-21 14:48:16 -04009903void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
9904{
9905 struct btrfs_block_group_cache *block_group;
9906 u64 last = 0;
9907
9908 while (1) {
9909 struct inode *inode;
9910
9911 block_group = btrfs_lookup_first_block_group(info, last);
9912 while (block_group) {
9913 spin_lock(&block_group->lock);
9914 if (block_group->iref)
9915 break;
9916 spin_unlock(&block_group->lock);
9917 block_group = next_block_group(info->tree_root,
9918 block_group);
9919 }
9920 if (!block_group) {
9921 if (last == 0)
9922 break;
9923 last = 0;
9924 continue;
9925 }
9926
9927 inode = block_group->inode;
9928 block_group->iref = 0;
9929 block_group->inode = NULL;
9930 spin_unlock(&block_group->lock);
Liu Bof3bca802016-07-20 17:33:44 -07009931 ASSERT(block_group->io_ctl.inode == NULL);
Josef Bacik0af3d002010-06-21 14:48:16 -04009932 iput(inode);
9933 last = block_group->key.objectid + block_group->key.offset;
9934 btrfs_put_block_group(block_group);
9935 }
9936}
9937
Zheng Yan1a40e232008-09-26 10:09:34 -04009938int btrfs_free_block_groups(struct btrfs_fs_info *info)
9939{
9940 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04009941 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04009942 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04009943 struct rb_node *n;
9944
Josef Bacik9e351cc2014-03-13 15:42:13 -04009945 down_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04009946 while (!list_empty(&info->caching_block_groups)) {
9947 caching_ctl = list_entry(info->caching_block_groups.next,
9948 struct btrfs_caching_control, list);
9949 list_del(&caching_ctl->list);
9950 put_caching_control(caching_ctl);
9951 }
Josef Bacik9e351cc2014-03-13 15:42:13 -04009952 up_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04009953
Josef Bacik47ab2a62014-09-18 11:20:02 -04009954 spin_lock(&info->unused_bgs_lock);
9955 while (!list_empty(&info->unused_bgs)) {
9956 block_group = list_first_entry(&info->unused_bgs,
9957 struct btrfs_block_group_cache,
9958 bg_list);
9959 list_del_init(&block_group->bg_list);
9960 btrfs_put_block_group(block_group);
9961 }
9962 spin_unlock(&info->unused_bgs_lock);
9963
Zheng Yan1a40e232008-09-26 10:09:34 -04009964 spin_lock(&info->block_group_cache_lock);
9965 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
9966 block_group = rb_entry(n, struct btrfs_block_group_cache,
9967 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04009968 rb_erase(&block_group->cache_node,
9969 &info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +00009970 RB_CLEAR_NODE(&block_group->cache_node);
Yan Zhengd899e052008-10-30 14:25:28 -04009971 spin_unlock(&info->block_group_cache_lock);
9972
Josef Bacik80eb2342008-10-29 14:49:05 -04009973 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04009974 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04009975 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05009976
Josef Bacik817d52f2009-07-13 21:29:25 -04009977 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04009978 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04009979
Josef Bacik3c148742011-02-02 15:53:47 +00009980 /*
9981 * We haven't cached this block group, which means we could
9982 * possibly have excluded extents on this block group.
9983 */
Josef Bacik36cce922013-08-05 11:15:21 -04009984 if (block_group->cached == BTRFS_CACHE_NO ||
9985 block_group->cached == BTRFS_CACHE_ERROR)
Josef Bacik3c148742011-02-02 15:53:47 +00009986 free_excluded_extents(info->extent_root, block_group);
9987
Josef Bacik817d52f2009-07-13 21:29:25 -04009988 btrfs_remove_free_space_cache(block_group);
Liu Bof3bca802016-07-20 17:33:44 -07009989 ASSERT(list_empty(&block_group->dirty_list));
9990 ASSERT(list_empty(&block_group->io_list));
9991 ASSERT(list_empty(&block_group->bg_list));
9992 ASSERT(atomic_read(&block_group->count) == 1);
Josef Bacik11dfe352009-11-13 20:12:59 +00009993 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04009994
9995 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009996 }
9997 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -04009998
9999 /* now that all the block groups are freed, go through and
10000 * free all the space_info structs. This is only called during
10001 * the final stages of unmount, and so we know nobody is
10002 * using them. We call synchronize_rcu() once before we start,
10003 * just to be on the safe side.
10004 */
10005 synchronize_rcu();
10006
Yan, Zheng8929ecfa2010-05-16 10:49:58 -040010007 release_global_block_rsv(info);
10008
Dulshani Gunawardhana67871252013-10-31 10:33:04 +053010009 while (!list_empty(&info->space_info)) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010010 int i;
10011
Chris Mason4184ea72009-03-10 12:39:20 -040010012 space_info = list_entry(info->space_info.next,
10013 struct btrfs_space_info,
10014 list);
Josef Bacikd555b6c2016-03-25 13:25:51 -040010015
10016 /*
10017 * Do not hide this behind enospc_debug, this is actually
10018 * important and indicates a real bug if this happens.
10019 */
10020 if (WARN_ON(space_info->bytes_pinned > 0 ||
David Sterbab069e0c2013-02-08 21:28:17 +000010021 space_info->bytes_reserved > 0 ||
Josef Bacikd555b6c2016-03-25 13:25:51 -040010022 space_info->bytes_may_use > 0))
10023 dump_space_info(space_info, 0, 0);
Chris Mason4184ea72009-03-10 12:39:20 -040010024 list_del(&space_info->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010025 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
10026 struct kobject *kobj;
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010027 kobj = space_info->block_group_kobjs[i];
10028 space_info->block_group_kobjs[i] = NULL;
10029 if (kobj) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010030 kobject_del(kobj);
10031 kobject_put(kobj);
10032 }
10033 }
10034 kobject_del(&space_info->kobj);
10035 kobject_put(&space_info->kobj);
Chris Mason4184ea72009-03-10 12:39:20 -040010036 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010037 return 0;
10038}
10039
Yan, Zhengb742bb82010-05-16 10:46:24 -040010040static void __link_block_group(struct btrfs_space_info *space_info,
10041 struct btrfs_block_group_cache *cache)
10042{
10043 int index = get_block_group_index(cache);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -040010044 bool first = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -040010045
10046 down_write(&space_info->groups_sem);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -040010047 if (list_empty(&space_info->block_groups[index]))
10048 first = true;
10049 list_add_tail(&cache->list, &space_info->block_groups[index]);
10050 up_write(&space_info->groups_sem);
10051
10052 if (first) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010053 struct raid_kobject *rkobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010054 int ret;
10055
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010056 rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS);
10057 if (!rkobj)
10058 goto out_err;
10059 rkobj->raid_type = index;
10060 kobject_init(&rkobj->kobj, &btrfs_raid_ktype);
10061 ret = kobject_add(&rkobj->kobj, &space_info->kobj,
10062 "%s", get_raid_name(index));
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010063 if (ret) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010064 kobject_put(&rkobj->kobj);
10065 goto out_err;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010066 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010067 space_info->block_group_kobjs[index] = &rkobj->kobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010068 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010069
10070 return;
10071out_err:
10072 pr_warn("BTRFS: failed to add kobject for block cache. ignoring.\n");
Yan, Zhengb742bb82010-05-16 10:46:24 -040010073}
10074
Miao Xie920e4a52014-01-15 20:00:55 +080010075static struct btrfs_block_group_cache *
10076btrfs_create_block_group_cache(struct btrfs_root *root, u64 start, u64 size)
10077{
10078 struct btrfs_block_group_cache *cache;
10079
10080 cache = kzalloc(sizeof(*cache), GFP_NOFS);
10081 if (!cache)
10082 return NULL;
10083
10084 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
10085 GFP_NOFS);
10086 if (!cache->free_space_ctl) {
10087 kfree(cache);
10088 return NULL;
10089 }
10090
10091 cache->key.objectid = start;
10092 cache->key.offset = size;
10093 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
10094
10095 cache->sectorsize = root->sectorsize;
10096 cache->fs_info = root->fs_info;
10097 cache->full_stripe_len = btrfs_full_stripe_len(root,
10098 &root->fs_info->mapping_tree,
10099 start);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010100 set_free_space_tree_thresholds(cache);
10101
Miao Xie920e4a52014-01-15 20:00:55 +080010102 atomic_set(&cache->count, 1);
10103 spin_lock_init(&cache->lock);
Miao Xiee570fd22014-06-19 10:42:50 +080010104 init_rwsem(&cache->data_rwsem);
Miao Xie920e4a52014-01-15 20:00:55 +080010105 INIT_LIST_HEAD(&cache->list);
10106 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010107 INIT_LIST_HEAD(&cache->bg_list);
Josef Bacik633c0aa2014-10-31 09:49:34 -040010108 INIT_LIST_HEAD(&cache->ro_list);
Josef Bacikce93ec52014-11-17 15:45:48 -050010109 INIT_LIST_HEAD(&cache->dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -070010110 INIT_LIST_HEAD(&cache->io_list);
Miao Xie920e4a52014-01-15 20:00:55 +080010111 btrfs_init_free_space_ctl(cache);
Filipe Manana04216822014-11-27 21:14:15 +000010112 atomic_set(&cache->trimming, 0);
Omar Sandovala5ed9182015-09-29 20:50:35 -070010113 mutex_init(&cache->free_space_lock);
Miao Xie920e4a52014-01-15 20:00:55 +080010114
10115 return cache;
10116}
10117
Chris Mason9078a3e2007-04-26 16:46:15 -040010118int btrfs_read_block_groups(struct btrfs_root *root)
10119{
10120 struct btrfs_path *path;
10121 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -040010122 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -040010123 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -040010124 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -040010125 struct btrfs_key key;
10126 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -040010127 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -040010128 int need_clear = 0;
10129 u64 cache_gen;
Chris Mason96b51792007-10-15 16:15:19 -040010130
Chris Masonbe744172007-05-06 10:15:01 -040010131 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -040010132 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -040010133 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +020010134 key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Chris Mason9078a3e2007-04-26 16:46:15 -040010135 path = btrfs_alloc_path();
10136 if (!path)
10137 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +010010138 path->reada = READA_FORWARD;
Chris Mason9078a3e2007-04-26 16:46:15 -040010139
David Sterba6c417612011-04-13 15:41:04 +020010140 cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
Jeff Mahoney3cdde222016-06-09 21:38:35 -040010141 if (btrfs_test_opt(root->fs_info, SPACE_CACHE) &&
David Sterba6c417612011-04-13 15:41:04 +020010142 btrfs_super_generation(root->fs_info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -040010143 need_clear = 1;
Jeff Mahoney3cdde222016-06-09 21:38:35 -040010144 if (btrfs_test_opt(root->fs_info, CLEAR_CACHE))
Josef Bacik88c2ba32010-09-21 14:21:34 -040010145 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -040010146
Chris Masond3977122009-01-05 21:25:51 -050010147 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -040010148 ret = find_first_block_group(root, path, &key);
Yan, Zhengb742bb82010-05-16 10:46:24 -040010149 if (ret > 0)
10150 break;
Chris Mason0b86a832008-03-24 15:01:56 -040010151 if (ret != 0)
10152 goto error;
Miao Xie920e4a52014-01-15 20:00:55 +080010153
Chris Mason5f39d392007-10-15 16:14:19 -040010154 leaf = path->nodes[0];
10155 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Miao Xie920e4a52014-01-15 20:00:55 +080010156
10157 cache = btrfs_create_block_group_cache(root, found_key.objectid,
10158 found_key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -040010159 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -040010160 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -040010161 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -040010162 }
Josef Bacik96303082009-07-13 21:29:25 -040010163
Liu Bocf7c1ef2012-07-06 03:31:34 -060010164 if (need_clear) {
10165 /*
10166 * When we mount with old space cache, we need to
10167 * set BTRFS_DC_CLEAR and set dirty flag.
10168 *
10169 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
10170 * truncate the old free space cache inode and
10171 * setup a new one.
10172 * b) Setting 'dirty flag' makes sure that we flush
10173 * the new space cache info onto disk.
10174 */
Jeff Mahoney3cdde222016-06-09 21:38:35 -040010175 if (btrfs_test_opt(root->fs_info, SPACE_CACHE))
Josef Bacikce93ec52014-11-17 15:45:48 -050010176 cache->disk_cache_state = BTRFS_DC_CLEAR;
Liu Bocf7c1ef2012-07-06 03:31:34 -060010177 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010178
Chris Mason5f39d392007-10-15 16:14:19 -040010179 read_extent_buffer(leaf, &cache->item,
10180 btrfs_item_ptr_offset(leaf, path->slots[0]),
10181 sizeof(cache->item));
Miao Xie920e4a52014-01-15 20:00:55 +080010182 cache->flags = btrfs_block_group_flags(&cache->item);
Chris Mason0b86a832008-03-24 15:01:56 -040010183
Chris Mason9078a3e2007-04-26 16:46:15 -040010184 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +020010185 btrfs_release_path(path);
Li Zefan34d52cb2011-03-29 13:46:06 +080010186
Josef Bacik817d52f2009-07-13 21:29:25 -040010187 /*
Josef Bacik3c148742011-02-02 15:53:47 +000010188 * We need to exclude the super stripes now so that the space
10189 * info has super bytes accounted for, otherwise we'll think
10190 * we have more space than we actually do.
10191 */
Josef Bacik835d9742013-03-19 12:13:25 -040010192 ret = exclude_super_stripes(root, cache);
10193 if (ret) {
10194 /*
10195 * We may have excluded something, so call this just in
10196 * case.
10197 */
10198 free_excluded_extents(root, cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010199 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010200 goto error;
10201 }
Josef Bacik3c148742011-02-02 15:53:47 +000010202
10203 /*
Josef Bacik817d52f2009-07-13 21:29:25 -040010204 * check for two cases, either we are full, and therefore
10205 * don't need to bother with the caching work since we won't
10206 * find any space, or we are empty, and we can just add all
10207 * the space in and be done with it. This saves us _alot_ of
10208 * time, particularly in the full case.
10209 */
10210 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -040010211 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010212 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik1b2da372009-09-11 16:11:20 -040010213 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010214 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -040010215 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010216 cache->cached = BTRFS_CACHE_FINISHED;
10217 add_new_free_space(cache, root->fs_info,
10218 found_key.objectid,
10219 found_key.objectid +
10220 found_key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -040010221 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010222 }
Chris Mason96b51792007-10-15 16:15:19 -040010223
Josef Bacik8c579fe2013-04-02 12:40:42 -040010224 ret = btrfs_add_block_group_cache(root->fs_info, cache);
10225 if (ret) {
10226 btrfs_remove_free_space_cache(cache);
10227 btrfs_put_block_group(cache);
10228 goto error;
10229 }
10230
Josef Bacikc83f8ef2016-03-25 13:25:52 -040010231 trace_btrfs_add_block_group(root->fs_info, cache, 0);
Chris Mason6324fbf2008-03-24 15:01:59 -040010232 ret = update_space_info(info, cache->flags, found_key.offset,
10233 btrfs_block_group_used(&cache->item),
Josef Bacike40edf22016-03-25 13:25:47 -040010234 cache->bytes_super, &space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010235 if (ret) {
10236 btrfs_remove_free_space_cache(cache);
10237 spin_lock(&info->block_group_cache_lock);
10238 rb_erase(&cache->cache_node,
10239 &info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +000010240 RB_CLEAR_NODE(&cache->cache_node);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010241 spin_unlock(&info->block_group_cache_lock);
10242 btrfs_put_block_group(cache);
10243 goto error;
10244 }
10245
Chris Mason6324fbf2008-03-24 15:01:59 -040010246 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -040010247
Yan, Zhengb742bb82010-05-16 10:46:24 -040010248 __link_block_group(space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010249
Chris Mason75ccf472008-09-30 19:24:06 -040010250 set_avail_alloc_bits(root->fs_info, cache->flags);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010251 if (btrfs_chunk_readonly(root, cache->key.objectid)) {
Zhaolei868f4012015-08-05 16:43:27 +080010252 inc_block_group_ro(cache, 1);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010253 } else if (btrfs_block_group_used(&cache->item) == 0) {
10254 spin_lock(&info->unused_bgs_lock);
10255 /* Should always be true but just in case. */
10256 if (list_empty(&cache->bg_list)) {
10257 btrfs_get_block_group(cache);
10258 list_add_tail(&cache->bg_list,
10259 &info->unused_bgs);
10260 }
10261 spin_unlock(&info->unused_bgs_lock);
10262 }
Chris Mason9078a3e2007-04-26 16:46:15 -040010263 }
Yan, Zhengb742bb82010-05-16 10:46:24 -040010264
10265 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
10266 if (!(get_alloc_profile(root, space_info->flags) &
10267 (BTRFS_BLOCK_GROUP_RAID10 |
10268 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -050010269 BTRFS_BLOCK_GROUP_RAID5 |
10270 BTRFS_BLOCK_GROUP_RAID6 |
Yan, Zhengb742bb82010-05-16 10:46:24 -040010271 BTRFS_BLOCK_GROUP_DUP)))
10272 continue;
10273 /*
10274 * avoid allocating from un-mirrored block group if there are
10275 * mirrored block groups.
10276 */
chandan1095cc02013-07-16 12:28:56 +053010277 list_for_each_entry(cache,
10278 &space_info->block_groups[BTRFS_RAID_RAID0],
10279 list)
Zhaolei868f4012015-08-05 16:43:27 +080010280 inc_block_group_ro(cache, 1);
chandan1095cc02013-07-16 12:28:56 +053010281 list_for_each_entry(cache,
10282 &space_info->block_groups[BTRFS_RAID_SINGLE],
10283 list)
Zhaolei868f4012015-08-05 16:43:27 +080010284 inc_block_group_ro(cache, 1);
Yan, Zhengb742bb82010-05-16 10:46:24 -040010285 }
Yan, Zhengf0486c62010-05-16 10:46:25 -040010286
10287 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -040010288 ret = 0;
10289error:
Chris Mason9078a3e2007-04-26 16:46:15 -040010290 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -040010291 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -040010292}
Chris Mason6324fbf2008-03-24 15:01:59 -040010293
Josef Bacikea658ba2012-09-11 16:57:25 -040010294void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans,
10295 struct btrfs_root *root)
10296{
10297 struct btrfs_block_group_cache *block_group, *tmp;
10298 struct btrfs_root *extent_root = root->fs_info->extent_root;
10299 struct btrfs_block_group_item item;
10300 struct btrfs_key key;
10301 int ret = 0;
Filipe Mananad9a05402015-10-03 13:13:13 +010010302 bool can_flush_pending_bgs = trans->can_flush_pending_bgs;
Josef Bacikea658ba2012-09-11 16:57:25 -040010303
Filipe Mananad9a05402015-10-03 13:13:13 +010010304 trans->can_flush_pending_bgs = false;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010305 list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) {
Josef Bacikea658ba2012-09-11 16:57:25 -040010306 if (ret)
Filipe Mananac92f6be2014-11-26 15:28:55 +000010307 goto next;
Josef Bacikea658ba2012-09-11 16:57:25 -040010308
10309 spin_lock(&block_group->lock);
10310 memcpy(&item, &block_group->item, sizeof(item));
10311 memcpy(&key, &block_group->key, sizeof(key));
10312 spin_unlock(&block_group->lock);
10313
10314 ret = btrfs_insert_item(trans, extent_root, &key, &item,
10315 sizeof(item));
10316 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -040010317 btrfs_abort_transaction(trans, ret);
Josef Bacik6df9a952013-06-27 13:22:46 -040010318 ret = btrfs_finish_chunk_alloc(trans, extent_root,
10319 key.objectid, key.offset);
10320 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -040010321 btrfs_abort_transaction(trans, ret);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010322 add_block_group_free_space(trans, root->fs_info, block_group);
10323 /* already aborted the transaction if it failed. */
Filipe Mananac92f6be2014-11-26 15:28:55 +000010324next:
10325 list_del_init(&block_group->bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -040010326 }
Filipe Mananad9a05402015-10-03 13:13:13 +010010327 trans->can_flush_pending_bgs = can_flush_pending_bgs;
Josef Bacikea658ba2012-09-11 16:57:25 -040010328}
10329
Chris Mason6324fbf2008-03-24 15:01:59 -040010330int btrfs_make_block_group(struct btrfs_trans_handle *trans,
10331 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -040010332 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -040010333 u64 size)
10334{
10335 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -040010336 struct btrfs_root *extent_root;
10337 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -040010338 extent_root = root->fs_info->extent_root;
Chris Mason6324fbf2008-03-24 15:01:59 -040010339
Miao Xie995946d2014-04-02 19:51:06 +080010340 btrfs_set_log_full_commit(root->fs_info, trans);
Chris Masone02119d2008-09-05 16:13:11 -040010341
Miao Xie920e4a52014-01-15 20:00:55 +080010342 cache = btrfs_create_block_group_cache(root, chunk_offset, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -040010343 if (!cache)
10344 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +080010345
Chris Mason6324fbf2008-03-24 15:01:59 -040010346 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -040010347 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
Chris Mason6324fbf2008-03-24 15:01:59 -040010348 btrfs_set_block_group_flags(&cache->item, type);
10349
Miao Xie920e4a52014-01-15 20:00:55 +080010350 cache->flags = type;
Yan Zheng11833d62009-09-11 16:11:19 -040010351 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010352 cache->cached = BTRFS_CACHE_FINISHED;
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010353 cache->needs_free_space = 1;
Josef Bacik835d9742013-03-19 12:13:25 -040010354 ret = exclude_super_stripes(root, cache);
10355 if (ret) {
10356 /*
10357 * We may have excluded something, so call this just in
10358 * case.
10359 */
10360 free_excluded_extents(root, cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010361 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010362 return ret;
10363 }
Josef Bacik96303082009-07-13 21:29:25 -040010364
Josef Bacik817d52f2009-07-13 21:29:25 -040010365 add_new_free_space(cache, root->fs_info, chunk_offset,
10366 chunk_offset + size);
10367
Yan Zheng11833d62009-09-11 16:11:19 -040010368 free_excluded_extents(root, cache);
10369
Josef Bacikd0bd4562015-09-23 14:54:14 -040010370#ifdef CONFIG_BTRFS_DEBUG
10371 if (btrfs_should_fragment_free_space(root, cache)) {
10372 u64 new_bytes_used = size - bytes_used;
10373
10374 bytes_used += new_bytes_used >> 1;
10375 fragment_free_space(root, cache);
10376 }
10377#endif
Filipe Manana2e6e5182015-05-12 00:28:11 +010010378 /*
10379 * Call to ensure the corresponding space_info object is created and
10380 * assigned to our block group, but don't update its counters just yet.
10381 * We want our bg to be added to the rbtree with its ->space_info set.
10382 */
Josef Bacike40edf22016-03-25 13:25:47 -040010383 ret = update_space_info(root->fs_info, cache->flags, 0, 0, 0,
Filipe Manana2e6e5182015-05-12 00:28:11 +010010384 &cache->space_info);
10385 if (ret) {
10386 btrfs_remove_free_space_cache(cache);
10387 btrfs_put_block_group(cache);
10388 return ret;
10389 }
10390
Josef Bacik8c579fe2013-04-02 12:40:42 -040010391 ret = btrfs_add_block_group_cache(root->fs_info, cache);
10392 if (ret) {
10393 btrfs_remove_free_space_cache(cache);
10394 btrfs_put_block_group(cache);
10395 return ret;
10396 }
10397
Filipe Manana2e6e5182015-05-12 00:28:11 +010010398 /*
10399 * Now that our block group has its ->space_info set and is inserted in
10400 * the rbtree, update the space info's counters.
10401 */
Josef Bacikc83f8ef2016-03-25 13:25:52 -040010402 trace_btrfs_add_block_group(root->fs_info, cache, 1);
Chris Mason6324fbf2008-03-24 15:01:59 -040010403 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -040010404 cache->bytes_super, &cache->space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010405 if (ret) {
10406 btrfs_remove_free_space_cache(cache);
10407 spin_lock(&root->fs_info->block_group_cache_lock);
10408 rb_erase(&cache->cache_node,
10409 &root->fs_info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +000010410 RB_CLEAR_NODE(&cache->cache_node);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010411 spin_unlock(&root->fs_info->block_group_cache_lock);
10412 btrfs_put_block_group(cache);
10413 return ret;
10414 }
Li Zefanc7c144d2011-12-07 10:39:22 +080010415 update_global_block_rsv(root->fs_info);
Josef Bacik1b2da372009-09-11 16:11:20 -040010416
Yan, Zhengb742bb82010-05-16 10:46:24 -040010417 __link_block_group(cache->space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010418
Josef Bacik47ab2a62014-09-18 11:20:02 -040010419 list_add_tail(&cache->bg_list, &trans->new_bgs);
Chris Mason6324fbf2008-03-24 15:01:59 -040010420
Chris Masond18a2c42008-04-04 15:40:00 -040010421 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason6324fbf2008-03-24 15:01:59 -040010422 return 0;
10423}
Zheng Yan1a40e232008-09-26 10:09:34 -040010424
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010425static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
10426{
Ilya Dryomov899c81e2012-03-27 17:09:16 +030010427 u64 extra_flags = chunk_to_extended(flags) &
10428 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010429
Miao Xiede98ced2013-01-29 10:13:12 +000010430 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010431 if (flags & BTRFS_BLOCK_GROUP_DATA)
10432 fs_info->avail_data_alloc_bits &= ~extra_flags;
10433 if (flags & BTRFS_BLOCK_GROUP_METADATA)
10434 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
10435 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
10436 fs_info->avail_system_alloc_bits &= ~extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +000010437 write_sequnlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010438}
10439
Zheng Yan1a40e232008-09-26 10:09:34 -040010440int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
Filipe Manana04216822014-11-27 21:14:15 +000010441 struct btrfs_root *root, u64 group_start,
10442 struct extent_map *em)
Zheng Yan1a40e232008-09-26 10:09:34 -040010443{
10444 struct btrfs_path *path;
10445 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -040010446 struct btrfs_free_cluster *cluster;
Josef Bacik0af3d002010-06-21 14:48:16 -040010447 struct btrfs_root *tree_root = root->fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -040010448 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -040010449 struct inode *inode;
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010450 struct kobject *kobj = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -040010451 int ret;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010452 int index;
Josef Bacik89a55892010-10-14 14:52:27 -040010453 int factor;
Filipe Manana4f69cb92014-11-26 15:28:51 +000010454 struct btrfs_caching_control *caching_ctl = NULL;
Filipe Manana04216822014-11-27 21:14:15 +000010455 bool remove_em;
Zheng Yan1a40e232008-09-26 10:09:34 -040010456
Zheng Yan1a40e232008-09-26 10:09:34 -040010457 root = root->fs_info->extent_root;
10458
10459 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
10460 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -050010461 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -040010462
liubo9f7c43c2011-03-07 02:13:33 +000010463 /*
10464 * Free the reserved super bytes from this block group before
10465 * remove it.
10466 */
10467 free_excluded_extents(root, block_group);
10468
Zheng Yan1a40e232008-09-26 10:09:34 -040010469 memcpy(&key, &block_group->key, sizeof(key));
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010470 index = get_block_group_index(block_group);
Josef Bacik89a55892010-10-14 14:52:27 -040010471 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
10472 BTRFS_BLOCK_GROUP_RAID1 |
10473 BTRFS_BLOCK_GROUP_RAID10))
10474 factor = 2;
10475 else
10476 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -040010477
Chris Mason44fb5512009-06-04 15:34:51 -040010478 /* make sure this block group isn't part of an allocation cluster */
10479 cluster = &root->fs_info->data_alloc_cluster;
10480 spin_lock(&cluster->refill_lock);
10481 btrfs_return_cluster_to_free_space(block_group, cluster);
10482 spin_unlock(&cluster->refill_lock);
10483
10484 /*
10485 * make sure this block group isn't part of a metadata
10486 * allocation cluster
10487 */
10488 cluster = &root->fs_info->meta_alloc_cluster;
10489 spin_lock(&cluster->refill_lock);
10490 btrfs_return_cluster_to_free_space(block_group, cluster);
10491 spin_unlock(&cluster->refill_lock);
10492
Zheng Yan1a40e232008-09-26 10:09:34 -040010493 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -070010494 if (!path) {
10495 ret = -ENOMEM;
10496 goto out;
10497 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010498
Chris Mason1bbc6212015-04-06 12:46:08 -070010499 /*
10500 * get the inode first so any iput calls done for the io_list
10501 * aren't the final iput (no unlinks allowed now)
10502 */
Ilya Dryomov10b2f342011-10-02 13:56:53 +030010503 inode = lookup_free_space_inode(tree_root, block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -070010504
10505 mutex_lock(&trans->transaction->cache_write_mutex);
10506 /*
10507 * make sure our free spache cache IO is done before remove the
10508 * free space inode
10509 */
10510 spin_lock(&trans->transaction->dirty_bgs_lock);
10511 if (!list_empty(&block_group->io_list)) {
10512 list_del_init(&block_group->io_list);
10513
10514 WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode);
10515
10516 spin_unlock(&trans->transaction->dirty_bgs_lock);
10517 btrfs_wait_cache_io(root, trans, block_group,
10518 &block_group->io_ctl, path,
10519 block_group->key.objectid);
10520 btrfs_put_block_group(block_group);
10521 spin_lock(&trans->transaction->dirty_bgs_lock);
10522 }
10523
10524 if (!list_empty(&block_group->dirty_list)) {
10525 list_del_init(&block_group->dirty_list);
10526 btrfs_put_block_group(block_group);
10527 }
10528 spin_unlock(&trans->transaction->dirty_bgs_lock);
10529 mutex_unlock(&trans->transaction->cache_write_mutex);
10530
Josef Bacik0af3d002010-06-21 14:48:16 -040010531 if (!IS_ERR(inode)) {
Tsutomu Itohb5324022011-07-19 07:27:20 +000010532 ret = btrfs_orphan_add(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010533 if (ret) {
10534 btrfs_add_delayed_iput(inode);
10535 goto out;
10536 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010537 clear_nlink(inode);
10538 /* One for the block groups ref */
10539 spin_lock(&block_group->lock);
10540 if (block_group->iref) {
10541 block_group->iref = 0;
10542 block_group->inode = NULL;
10543 spin_unlock(&block_group->lock);
10544 iput(inode);
10545 } else {
10546 spin_unlock(&block_group->lock);
10547 }
10548 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -040010549 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -040010550 }
10551
10552 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
10553 key.offset = block_group->key.objectid;
10554 key.type = 0;
10555
10556 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
10557 if (ret < 0)
10558 goto out;
10559 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +020010560 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010561 if (ret == 0) {
10562 ret = btrfs_del_item(trans, tree_root, path);
10563 if (ret)
10564 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +020010565 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010566 }
10567
Yan Zheng3dfdb932009-01-21 10:49:16 -050010568 spin_lock(&root->fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -040010569 rb_erase(&block_group->cache_node,
10570 &root->fs_info->block_group_cache_tree);
Filipe Manana292cbd52014-11-26 15:28:50 +000010571 RB_CLEAR_NODE(&block_group->cache_node);
Liu Boa1897fd2012-12-27 09:01:23 +000010572
10573 if (root->fs_info->first_logical_byte == block_group->key.objectid)
10574 root->fs_info->first_logical_byte = (u64)-1;
Yan Zheng3dfdb932009-01-21 10:49:16 -050010575 spin_unlock(&root->fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -040010576
Josef Bacik80eb2342008-10-29 14:49:05 -040010577 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -040010578 /*
10579 * we must use list_del_init so people can check to see if they
10580 * are still on the list after taking the semaphore
10581 */
10582 list_del_init(&block_group->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010583 if (list_empty(&block_group->space_info->block_groups[index])) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010584 kobj = block_group->space_info->block_group_kobjs[index];
10585 block_group->space_info->block_group_kobjs[index] = NULL;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010586 clear_avail_alloc_bits(root->fs_info, block_group->flags);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010587 }
Josef Bacik80eb2342008-10-29 14:49:05 -040010588 up_write(&block_group->space_info->groups_sem);
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010589 if (kobj) {
10590 kobject_del(kobj);
10591 kobject_put(kobj);
10592 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010593
Filipe Manana4f69cb92014-11-26 15:28:51 +000010594 if (block_group->has_caching_ctl)
10595 caching_ctl = get_caching_control(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -040010596 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -040010597 wait_block_group_cache_done(block_group);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010598 if (block_group->has_caching_ctl) {
10599 down_write(&root->fs_info->commit_root_sem);
10600 if (!caching_ctl) {
10601 struct btrfs_caching_control *ctl;
10602
10603 list_for_each_entry(ctl,
10604 &root->fs_info->caching_block_groups, list)
10605 if (ctl->block_group == block_group) {
10606 caching_ctl = ctl;
10607 atomic_inc(&caching_ctl->count);
10608 break;
10609 }
10610 }
10611 if (caching_ctl)
10612 list_del_init(&caching_ctl->list);
10613 up_write(&root->fs_info->commit_root_sem);
10614 if (caching_ctl) {
10615 /* Once for the caching bgs list and once for us. */
10616 put_caching_control(caching_ctl);
10617 put_caching_control(caching_ctl);
10618 }
10619 }
Josef Bacik817d52f2009-07-13 21:29:25 -040010620
Josef Bacikce93ec52014-11-17 15:45:48 -050010621 spin_lock(&trans->transaction->dirty_bgs_lock);
10622 if (!list_empty(&block_group->dirty_list)) {
Chris Mason1bbc6212015-04-06 12:46:08 -070010623 WARN_ON(1);
10624 }
10625 if (!list_empty(&block_group->io_list)) {
10626 WARN_ON(1);
Josef Bacikce93ec52014-11-17 15:45:48 -050010627 }
10628 spin_unlock(&trans->transaction->dirty_bgs_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -040010629 btrfs_remove_free_space_cache(block_group);
10630
Yan Zhengc146afa2008-11-12 14:34:12 -050010631 spin_lock(&block_group->space_info->lock);
Filipe Manana75c68e92015-01-16 13:24:40 +000010632 list_del_init(&block_group->ro_list);
Zhao Lei18d018a2015-02-24 20:07:44 +080010633
Jeff Mahoney3cdde222016-06-09 21:38:35 -040010634 if (btrfs_test_opt(root->fs_info, ENOSPC_DEBUG)) {
Zhao Lei18d018a2015-02-24 20:07:44 +080010635 WARN_ON(block_group->space_info->total_bytes
10636 < block_group->key.offset);
10637 WARN_ON(block_group->space_info->bytes_readonly
10638 < block_group->key.offset);
10639 WARN_ON(block_group->space_info->disk_total
10640 < block_group->key.offset * factor);
10641 }
Yan Zhengc146afa2008-11-12 14:34:12 -050010642 block_group->space_info->total_bytes -= block_group->key.offset;
10643 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -040010644 block_group->space_info->disk_total -= block_group->key.offset * factor;
Zhao Lei18d018a2015-02-24 20:07:44 +080010645
Yan Zhengc146afa2008-11-12 14:34:12 -050010646 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -040010647
Josef Bacik0af3d002010-06-21 14:48:16 -040010648 memcpy(&key, &block_group->key, sizeof(key));
10649
Filipe Manana04216822014-11-27 21:14:15 +000010650 lock_chunks(root);
Filipe Manana495e64f2014-12-02 18:07:30 +000010651 if (!list_empty(&em->list)) {
10652 /* We're in the transaction->pending_chunks list. */
10653 free_extent_map(em);
10654 }
Filipe Manana04216822014-11-27 21:14:15 +000010655 spin_lock(&block_group->lock);
10656 block_group->removed = 1;
10657 /*
10658 * At this point trimming can't start on this block group, because we
10659 * removed the block group from the tree fs_info->block_group_cache_tree
10660 * so no one can't find it anymore and even if someone already got this
10661 * block group before we removed it from the rbtree, they have already
10662 * incremented block_group->trimming - if they didn't, they won't find
10663 * any free space entries because we already removed them all when we
10664 * called btrfs_remove_free_space_cache().
10665 *
10666 * And we must not remove the extent map from the fs_info->mapping_tree
10667 * to prevent the same logical address range and physical device space
10668 * ranges from being reused for a new block group. This is because our
10669 * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is
10670 * completely transactionless, so while it is trimming a range the
10671 * currently running transaction might finish and a new one start,
10672 * allowing for new block groups to be created that can reuse the same
10673 * physical device locations unless we take this special care.
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010674 *
10675 * There may also be an implicit trim operation if the file system
10676 * is mounted with -odiscard. The same protections must remain
10677 * in place until the extents have been discarded completely when
10678 * the transaction commit has completed.
Filipe Manana04216822014-11-27 21:14:15 +000010679 */
10680 remove_em = (atomic_read(&block_group->trimming) == 0);
10681 /*
10682 * Make sure a trimmer task always sees the em in the pinned_chunks list
10683 * if it sees block_group->removed == 1 (needs to lock block_group->lock
10684 * before checking block_group->removed).
10685 */
10686 if (!remove_em) {
10687 /*
10688 * Our em might be in trans->transaction->pending_chunks which
10689 * is protected by fs_info->chunk_mutex ([lock|unlock]_chunks),
10690 * and so is the fs_info->pinned_chunks list.
10691 *
10692 * So at this point we must be holding the chunk_mutex to avoid
10693 * any races with chunk allocation (more specifically at
10694 * volumes.c:contains_pending_extent()), to ensure it always
10695 * sees the em, either in the pending_chunks list or in the
10696 * pinned_chunks list.
10697 */
10698 list_move_tail(&em->list, &root->fs_info->pinned_chunks);
10699 }
10700 spin_unlock(&block_group->lock);
Filipe Manana04216822014-11-27 21:14:15 +000010701
10702 if (remove_em) {
10703 struct extent_map_tree *em_tree;
10704
10705 em_tree = &root->fs_info->mapping_tree.map_tree;
10706 write_lock(&em_tree->lock);
Filipe Manana8dbcd102014-12-02 18:07:49 +000010707 /*
10708 * The em might be in the pending_chunks list, so make sure the
10709 * chunk mutex is locked, since remove_extent_mapping() will
10710 * delete us from that list.
10711 */
Filipe Manana04216822014-11-27 21:14:15 +000010712 remove_extent_mapping(em_tree, em);
10713 write_unlock(&em_tree->lock);
10714 /* once for the tree */
10715 free_extent_map(em);
10716 }
10717
Filipe Manana8dbcd102014-12-02 18:07:49 +000010718 unlock_chunks(root);
10719
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010720 ret = remove_block_group_free_space(trans, root->fs_info, block_group);
10721 if (ret)
10722 goto out;
10723
Chris Masonfa9c0d792009-04-03 09:47:43 -040010724 btrfs_put_block_group(block_group);
10725 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -040010726
10727 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
10728 if (ret > 0)
10729 ret = -EIO;
10730 if (ret < 0)
10731 goto out;
10732
10733 ret = btrfs_del_item(trans, root, path);
10734out:
10735 btrfs_free_path(path);
10736 return ret;
10737}
liuboacce9522011-01-06 19:30:25 +080010738
Filipe Manana8eab77f2015-11-13 23:57:16 +000010739struct btrfs_trans_handle *
Filipe Manana7fd01182015-11-13 23:57:17 +000010740btrfs_start_trans_remove_block_group(struct btrfs_fs_info *fs_info,
10741 const u64 chunk_offset)
Filipe Manana8eab77f2015-11-13 23:57:16 +000010742{
Filipe Manana7fd01182015-11-13 23:57:17 +000010743 struct extent_map_tree *em_tree = &fs_info->mapping_tree.map_tree;
10744 struct extent_map *em;
10745 struct map_lookup *map;
10746 unsigned int num_items;
10747
10748 read_lock(&em_tree->lock);
10749 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
10750 read_unlock(&em_tree->lock);
10751 ASSERT(em && em->start == chunk_offset);
10752
Filipe Manana8eab77f2015-11-13 23:57:16 +000010753 /*
Filipe Manana7fd01182015-11-13 23:57:17 +000010754 * We need to reserve 3 + N units from the metadata space info in order
10755 * to remove a block group (done at btrfs_remove_chunk() and at
10756 * btrfs_remove_block_group()), which are used for:
10757 *
Filipe Manana8eab77f2015-11-13 23:57:16 +000010758 * 1 unit for adding the free space inode's orphan (located in the tree
10759 * of tree roots).
Filipe Manana7fd01182015-11-13 23:57:17 +000010760 * 1 unit for deleting the block group item (located in the extent
10761 * tree).
10762 * 1 unit for deleting the free space item (located in tree of tree
10763 * roots).
10764 * N units for deleting N device extent items corresponding to each
10765 * stripe (located in the device tree).
10766 *
10767 * In order to remove a block group we also need to reserve units in the
10768 * system space info in order to update the chunk tree (update one or
10769 * more device items and remove one chunk item), but this is done at
10770 * btrfs_remove_chunk() through a call to check_system_chunk().
Filipe Manana8eab77f2015-11-13 23:57:16 +000010771 */
Jeff Mahoney95617d62015-06-03 10:55:48 -040010772 map = em->map_lookup;
Filipe Manana7fd01182015-11-13 23:57:17 +000010773 num_items = 3 + map->num_stripes;
10774 free_extent_map(em);
10775
Filipe Manana8eab77f2015-11-13 23:57:16 +000010776 return btrfs_start_transaction_fallback_global_rsv(fs_info->extent_root,
Filipe Manana7fd01182015-11-13 23:57:17 +000010777 num_items, 1);
Filipe Manana8eab77f2015-11-13 23:57:16 +000010778}
10779
Josef Bacik47ab2a62014-09-18 11:20:02 -040010780/*
10781 * Process the unused_bgs list and remove any that don't have any allocated
10782 * space inside of them.
10783 */
10784void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info)
10785{
10786 struct btrfs_block_group_cache *block_group;
10787 struct btrfs_space_info *space_info;
10788 struct btrfs_root *root = fs_info->extent_root;
10789 struct btrfs_trans_handle *trans;
10790 int ret = 0;
10791
10792 if (!fs_info->open)
10793 return;
10794
10795 spin_lock(&fs_info->unused_bgs_lock);
10796 while (!list_empty(&fs_info->unused_bgs)) {
10797 u64 start, end;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010798 int trimming;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010799
10800 block_group = list_first_entry(&fs_info->unused_bgs,
10801 struct btrfs_block_group_cache,
10802 bg_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010803 list_del_init(&block_group->bg_list);
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010804
10805 space_info = block_group->space_info;
10806
Josef Bacik47ab2a62014-09-18 11:20:02 -040010807 if (ret || btrfs_mixed_space_info(space_info)) {
10808 btrfs_put_block_group(block_group);
10809 continue;
10810 }
10811 spin_unlock(&fs_info->unused_bgs_lock);
10812
Zhao Leid5f2e332015-10-08 18:46:44 +080010813 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Filipe Manana67c5e7d2015-06-11 00:58:53 +010010814
Josef Bacik47ab2a62014-09-18 11:20:02 -040010815 /* Don't want to race with allocators so take the groups_sem */
10816 down_write(&space_info->groups_sem);
10817 spin_lock(&block_group->lock);
10818 if (block_group->reserved ||
10819 btrfs_block_group_used(&block_group->item) ||
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010820 block_group->ro ||
10821 list_is_singular(&block_group->list)) {
Josef Bacik47ab2a62014-09-18 11:20:02 -040010822 /*
10823 * We want to bail if we made new allocations or have
10824 * outstanding allocations in this block group. We do
10825 * the ro check in case balance is currently acting on
10826 * this block group.
10827 */
10828 spin_unlock(&block_group->lock);
10829 up_write(&space_info->groups_sem);
10830 goto next;
10831 }
10832 spin_unlock(&block_group->lock);
10833
10834 /* We don't want to force the issue, only flip if it's ok. */
Zhaolei868f4012015-08-05 16:43:27 +080010835 ret = inc_block_group_ro(block_group, 0);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010836 up_write(&space_info->groups_sem);
10837 if (ret < 0) {
10838 ret = 0;
10839 goto next;
10840 }
10841
10842 /*
10843 * Want to do this before we do anything else so we can recover
10844 * properly if we fail to join the transaction.
10845 */
Filipe Manana7fd01182015-11-13 23:57:17 +000010846 trans = btrfs_start_trans_remove_block_group(fs_info,
10847 block_group->key.objectid);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010848 if (IS_ERR(trans)) {
Zhaolei868f4012015-08-05 16:43:27 +080010849 btrfs_dec_block_group_ro(root, block_group);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010850 ret = PTR_ERR(trans);
10851 goto next;
10852 }
10853
10854 /*
10855 * We could have pending pinned extents for this block group,
10856 * just delete them, we don't care about them anymore.
10857 */
10858 start = block_group->key.objectid;
10859 end = start + block_group->key.offset - 1;
Filipe Mananad4b450c2015-01-29 19:18:25 +000010860 /*
10861 * Hold the unused_bg_unpin_mutex lock to avoid racing with
10862 * btrfs_finish_extent_commit(). If we are at transaction N,
10863 * another task might be running finish_extent_commit() for the
10864 * previous transaction N - 1, and have seen a range belonging
10865 * to the block group in freed_extents[] before we were able to
10866 * clear the whole block group range from freed_extents[]. This
10867 * means that task can lookup for the block group after we
10868 * unpinned it from freed_extents[] and removed it, leading to
10869 * a BUG_ON() at btrfs_unpin_extent_range().
10870 */
10871 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana758eb512014-11-03 14:08:39 +000010872 ret = clear_extent_bits(&fs_info->freed_extents[0], start, end,
David Sterba91166212016-04-26 23:54:39 +020010873 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000010874 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000010875 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Zhaolei868f4012015-08-05 16:43:27 +080010876 btrfs_dec_block_group_ro(root, block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000010877 goto end_trans;
10878 }
10879 ret = clear_extent_bits(&fs_info->freed_extents[1], start, end,
David Sterba91166212016-04-26 23:54:39 +020010880 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000010881 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000010882 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Zhaolei868f4012015-08-05 16:43:27 +080010883 btrfs_dec_block_group_ro(root, block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000010884 goto end_trans;
10885 }
Filipe Mananad4b450c2015-01-29 19:18:25 +000010886 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010887
10888 /* Reset pinned so btrfs_put_block_group doesn't complain */
Zhao Leic30666d2015-02-25 14:17:20 +080010889 spin_lock(&space_info->lock);
10890 spin_lock(&block_group->lock);
10891
10892 space_info->bytes_pinned -= block_group->pinned;
10893 space_info->bytes_readonly += block_group->pinned;
10894 percpu_counter_add(&space_info->total_bytes_pinned,
10895 -block_group->pinned);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010896 block_group->pinned = 0;
10897
Zhao Leic30666d2015-02-25 14:17:20 +080010898 spin_unlock(&block_group->lock);
10899 spin_unlock(&space_info->lock);
10900
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010901 /* DISCARD can flip during remount */
Jeff Mahoney3cdde222016-06-09 21:38:35 -040010902 trimming = btrfs_test_opt(root->fs_info, DISCARD);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010903
10904 /* Implicit trim during transaction commit. */
10905 if (trimming)
10906 btrfs_get_block_group_trimming(block_group);
10907
Josef Bacik47ab2a62014-09-18 11:20:02 -040010908 /*
10909 * Btrfs_remove_chunk will abort the transaction if things go
10910 * horribly wrong.
10911 */
10912 ret = btrfs_remove_chunk(trans, root,
10913 block_group->key.objectid);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010914
10915 if (ret) {
10916 if (trimming)
10917 btrfs_put_block_group_trimming(block_group);
10918 goto end_trans;
10919 }
10920
10921 /*
10922 * If we're not mounted with -odiscard, we can just forget
10923 * about this block group. Otherwise we'll need to wait
10924 * until transaction commit to do the actual discard.
10925 */
10926 if (trimming) {
Filipe Manana348a0012015-11-27 12:16:16 +000010927 spin_lock(&fs_info->unused_bgs_lock);
10928 /*
10929 * A concurrent scrub might have added us to the list
10930 * fs_info->unused_bgs, so use a list_move operation
10931 * to add the block group to the deleted_bgs list.
10932 */
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010933 list_move(&block_group->bg_list,
10934 &trans->transaction->deleted_bgs);
Filipe Manana348a0012015-11-27 12:16:16 +000010935 spin_unlock(&fs_info->unused_bgs_lock);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010936 btrfs_get_block_group(block_group);
10937 }
Filipe Manana758eb512014-11-03 14:08:39 +000010938end_trans:
Josef Bacik47ab2a62014-09-18 11:20:02 -040010939 btrfs_end_transaction(trans, root);
10940next:
Zhao Leid5f2e332015-10-08 18:46:44 +080010941 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010942 btrfs_put_block_group(block_group);
10943 spin_lock(&fs_info->unused_bgs_lock);
10944 }
10945 spin_unlock(&fs_info->unused_bgs_lock);
10946}
10947
liuboc59021f2011-03-07 02:13:14 +000010948int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
10949{
10950 struct btrfs_space_info *space_info;
liubo1aba86d2011-04-08 08:44:37 +000010951 struct btrfs_super_block *disk_super;
10952 u64 features;
10953 u64 flags;
10954 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +000010955 int ret;
10956
David Sterba6c417612011-04-13 15:41:04 +020010957 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +000010958 if (!btrfs_super_root(disk_super))
Dan Carpenter0dc924c52016-01-13 15:21:17 +030010959 return -EINVAL;
liuboc59021f2011-03-07 02:13:14 +000010960
liubo1aba86d2011-04-08 08:44:37 +000010961 features = btrfs_super_incompat_flags(disk_super);
10962 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
10963 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +000010964
liubo1aba86d2011-04-08 08:44:37 +000010965 flags = BTRFS_BLOCK_GROUP_SYSTEM;
Josef Bacike40edf22016-03-25 13:25:47 -040010966 ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info);
liuboc59021f2011-03-07 02:13:14 +000010967 if (ret)
liubo1aba86d2011-04-08 08:44:37 +000010968 goto out;
liuboc59021f2011-03-07 02:13:14 +000010969
liubo1aba86d2011-04-08 08:44:37 +000010970 if (mixed) {
10971 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
Josef Bacike40edf22016-03-25 13:25:47 -040010972 ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info);
liubo1aba86d2011-04-08 08:44:37 +000010973 } else {
10974 flags = BTRFS_BLOCK_GROUP_METADATA;
Josef Bacike40edf22016-03-25 13:25:47 -040010975 ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info);
liubo1aba86d2011-04-08 08:44:37 +000010976 if (ret)
10977 goto out;
10978
10979 flags = BTRFS_BLOCK_GROUP_DATA;
Josef Bacike40edf22016-03-25 13:25:47 -040010980 ret = update_space_info(fs_info, flags, 0, 0, 0, &space_info);
liubo1aba86d2011-04-08 08:44:37 +000010981 }
10982out:
liuboc59021f2011-03-07 02:13:14 +000010983 return ret;
10984}
10985
liuboacce9522011-01-06 19:30:25 +080010986int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
10987{
Filipe Manana678886b2014-12-07 21:31:47 +000010988 return unpin_extent_range(root, start, end, false);
liuboacce9522011-01-06 19:30:25 +080010989}
10990
Jeff Mahoney499f3772015-06-15 09:41:17 -040010991/*
10992 * It used to be that old block groups would be left around forever.
10993 * Iterating over them would be enough to trim unused space. Since we
10994 * now automatically remove them, we also need to iterate over unallocated
10995 * space.
10996 *
10997 * We don't want a transaction for this since the discard may take a
10998 * substantial amount of time. We don't require that a transaction be
10999 * running, but we do need to take a running transaction into account
11000 * to ensure that we're not discarding chunks that were released in
11001 * the current transaction.
11002 *
11003 * Holding the chunks lock will prevent other threads from allocating
11004 * or releasing chunks, but it won't prevent a running transaction
11005 * from committing and releasing the memory that the pending chunks
11006 * list head uses. For that, we need to take a reference to the
11007 * transaction.
11008 */
11009static int btrfs_trim_free_extents(struct btrfs_device *device,
11010 u64 minlen, u64 *trimmed)
11011{
11012 u64 start = 0, len = 0;
11013 int ret;
11014
11015 *trimmed = 0;
11016
11017 /* Not writeable = nothing to do. */
11018 if (!device->writeable)
11019 return 0;
11020
11021 /* No free space = nothing to do. */
11022 if (device->total_bytes <= device->bytes_used)
11023 return 0;
11024
11025 ret = 0;
11026
11027 while (1) {
11028 struct btrfs_fs_info *fs_info = device->dev_root->fs_info;
11029 struct btrfs_transaction *trans;
11030 u64 bytes;
11031
11032 ret = mutex_lock_interruptible(&fs_info->chunk_mutex);
11033 if (ret)
11034 return ret;
11035
11036 down_read(&fs_info->commit_root_sem);
11037
11038 spin_lock(&fs_info->trans_lock);
11039 trans = fs_info->running_transaction;
11040 if (trans)
11041 atomic_inc(&trans->use_count);
11042 spin_unlock(&fs_info->trans_lock);
11043
11044 ret = find_free_dev_extent_start(trans, device, minlen, start,
11045 &start, &len);
11046 if (trans)
11047 btrfs_put_transaction(trans);
11048
11049 if (ret) {
11050 up_read(&fs_info->commit_root_sem);
11051 mutex_unlock(&fs_info->chunk_mutex);
11052 if (ret == -ENOSPC)
11053 ret = 0;
11054 break;
11055 }
11056
11057 ret = btrfs_issue_discard(device->bdev, start, len, &bytes);
11058 up_read(&fs_info->commit_root_sem);
11059 mutex_unlock(&fs_info->chunk_mutex);
11060
11061 if (ret)
11062 break;
11063
11064 start += len;
11065 *trimmed += bytes;
11066
11067 if (fatal_signal_pending(current)) {
11068 ret = -ERESTARTSYS;
11069 break;
11070 }
11071
11072 cond_resched();
11073 }
11074
11075 return ret;
11076}
11077
Li Dongyangf7039b12011-03-24 10:24:28 +000011078int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range)
11079{
11080 struct btrfs_fs_info *fs_info = root->fs_info;
11081 struct btrfs_block_group_cache *cache = NULL;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011082 struct btrfs_device *device;
11083 struct list_head *devices;
Li Dongyangf7039b12011-03-24 10:24:28 +000011084 u64 group_trimmed;
11085 u64 start;
11086 u64 end;
11087 u64 trimmed = 0;
Liu Bo2cac13e2012-02-09 18:17:41 +080011088 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +000011089 int ret = 0;
11090
Liu Bo2cac13e2012-02-09 18:17:41 +080011091 /*
11092 * try to trim all FS space, our block group may start from non-zero.
11093 */
11094 if (range->len == total_bytes)
11095 cache = btrfs_lookup_first_block_group(fs_info, range->start);
11096 else
11097 cache = btrfs_lookup_block_group(fs_info, range->start);
Li Dongyangf7039b12011-03-24 10:24:28 +000011098
11099 while (cache) {
11100 if (cache->key.objectid >= (range->start + range->len)) {
11101 btrfs_put_block_group(cache);
11102 break;
11103 }
11104
11105 start = max(range->start, cache->key.objectid);
11106 end = min(range->start + range->len,
11107 cache->key.objectid + cache->key.offset);
11108
11109 if (end - start >= range->minlen) {
11110 if (!block_group_cache_done(cache)) {
Liu Bof6373bf2012-12-27 09:01:18 +000011111 ret = cache_block_group(cache, 0);
Josef Bacik1be41b72013-06-12 13:56:06 -040011112 if (ret) {
11113 btrfs_put_block_group(cache);
11114 break;
11115 }
11116 ret = wait_block_group_cache_done(cache);
11117 if (ret) {
11118 btrfs_put_block_group(cache);
11119 break;
11120 }
Li Dongyangf7039b12011-03-24 10:24:28 +000011121 }
11122 ret = btrfs_trim_block_group(cache,
11123 &group_trimmed,
11124 start,
11125 end,
11126 range->minlen);
11127
11128 trimmed += group_trimmed;
11129 if (ret) {
11130 btrfs_put_block_group(cache);
11131 break;
11132 }
11133 }
11134
11135 cache = next_block_group(fs_info->tree_root, cache);
11136 }
11137
Jeff Mahoney499f3772015-06-15 09:41:17 -040011138 mutex_lock(&root->fs_info->fs_devices->device_list_mutex);
11139 devices = &root->fs_info->fs_devices->alloc_list;
11140 list_for_each_entry(device, devices, dev_alloc_list) {
11141 ret = btrfs_trim_free_extents(device, range->minlen,
11142 &group_trimmed);
11143 if (ret)
11144 break;
11145
11146 trimmed += group_trimmed;
11147 }
11148 mutex_unlock(&root->fs_info->fs_devices->device_list_mutex);
11149
Li Dongyangf7039b12011-03-24 10:24:28 +000011150 range->len = trimmed;
11151 return ret;
11152}
Miao Xie8257b2d2014-03-06 13:38:19 +080011153
11154/*
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011155 * btrfs_{start,end}_write_no_snapshoting() are similar to
11156 * mnt_{want,drop}_write(), they are used to prevent some tasks from writing
11157 * data into the page cache through nocow before the subvolume is snapshoted,
11158 * but flush the data into disk after the snapshot creation, or to prevent
11159 * operations while snapshoting is ongoing and that cause the snapshot to be
11160 * inconsistent (writes followed by expanding truncates for example).
Miao Xie8257b2d2014-03-06 13:38:19 +080011161 */
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011162void btrfs_end_write_no_snapshoting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011163{
11164 percpu_counter_dec(&root->subv_writers->counter);
11165 /*
David Sterbaa83342a2015-02-16 19:36:47 +010011166 * Make sure counter is updated before we wake up waiters.
Miao Xie8257b2d2014-03-06 13:38:19 +080011167 */
11168 smp_mb();
11169 if (waitqueue_active(&root->subv_writers->wait))
11170 wake_up(&root->subv_writers->wait);
11171}
11172
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011173int btrfs_start_write_no_snapshoting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011174{
David Sterbaee39b432014-09-30 01:33:33 +020011175 if (atomic_read(&root->will_be_snapshoted))
Miao Xie8257b2d2014-03-06 13:38:19 +080011176 return 0;
11177
11178 percpu_counter_inc(&root->subv_writers->counter);
11179 /*
11180 * Make sure counter is updated before we check for snapshot creation.
11181 */
11182 smp_mb();
David Sterbaee39b432014-09-30 01:33:33 +020011183 if (atomic_read(&root->will_be_snapshoted)) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011184 btrfs_end_write_no_snapshoting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +080011185 return 0;
11186 }
11187 return 1;
11188}
Zhao Lei0bc19f902016-01-06 18:56:36 +080011189
11190static int wait_snapshoting_atomic_t(atomic_t *a)
11191{
11192 schedule();
11193 return 0;
11194}
11195
11196void btrfs_wait_for_snapshot_creation(struct btrfs_root *root)
11197{
11198 while (true) {
11199 int ret;
11200
11201 ret = btrfs_start_write_no_snapshoting(root);
11202 if (ret)
11203 break;
11204 wait_on_atomic_t(&root->will_be_snapshoted,
11205 wait_snapshoting_atomic_t,
11206 TASK_UNINTERRUPTIBLE);
11207 }
11208}