blob: c57bf387e502b073afd136953a8064326097613e [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
Zach Brownec6b9102007-07-11 10:00:37 -040018#include <linux/sched.h>
Chris Masonedbd8d42007-12-21 16:27:24 -050019#include <linux/pagemap.h>
Chris Masonec44a352008-04-28 15:29:52 -040020#include <linux/writeback.h>
David Woodhouse21af8042008-08-12 14:13:26 +010021#include <linux/blkdev.h>
Chris Masonb7a9f292009-02-04 09:23:45 -050022#include <linux/sort.h>
Chris Mason4184ea72009-03-10 12:39:20 -040023#include <linux/rcupdate.h>
Josef Bacik817d52f2009-07-13 21:29:25 -040024#include <linux/kthread.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
David Sterbadff51cd2011-06-14 12:52:17 +020026#include <linux/ratelimit.h>
Josef Bacikb150a4f2013-06-19 15:00:04 -040027#include <linux/percpu_counter.h>
Chris Mason74493f72007-12-11 09:25:06 -050028#include "hash.h"
Miao Xie995946d2014-04-02 19:51:06 +080029#include "tree-log.h"
Chris Masonfec577f2007-02-26 10:40:21 -050030#include "disk-io.h"
31#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040032#include "volumes.h"
David Woodhouse53b381b2013-01-29 18:40:14 -050033#include "raid56.h"
Chris Mason925baed2008-06-25 16:01:30 -040034#include "locking.h"
Chris Masonfa9c0d792009-04-03 09:47:43 -040035#include "free-space-cache.h"
Miao Xie3fed40c2012-09-13 04:51:36 -060036#include "math.h"
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040037#include "sysfs.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070038#include "qgroup.h"
Chris Masonfec577f2007-02-26 10:40:21 -050039
Arne Jansen709c0482011-09-12 12:22:57 +020040#undef SCRAMBLE_DELAYED_REFS
41
Miao Xie9e622d62012-01-26 15:01:12 -050042/*
43 * control flags for do_chunk_alloc's force field
Chris Mason0e4f8f82011-04-15 16:05:44 -040044 * CHUNK_ALLOC_NO_FORCE means to only allocate a chunk
45 * if we really need one.
46 *
Chris Mason0e4f8f82011-04-15 16:05:44 -040047 * CHUNK_ALLOC_LIMITED means to only try and allocate one
48 * if we have very few chunks already allocated. This is
49 * used as part of the clustering code to help make sure
50 * we have a good pool of storage to cluster in, without
51 * filling the FS with empty chunks
52 *
Miao Xie9e622d62012-01-26 15:01:12 -050053 * CHUNK_ALLOC_FORCE means it must try to allocate one
54 *
Chris Mason0e4f8f82011-04-15 16:05:44 -040055 */
56enum {
57 CHUNK_ALLOC_NO_FORCE = 0,
Miao Xie9e622d62012-01-26 15:01:12 -050058 CHUNK_ALLOC_LIMITED = 1,
59 CHUNK_ALLOC_FORCE = 2,
Chris Mason0e4f8f82011-04-15 16:05:44 -040060};
61
Josef Bacikfb25e912011-07-26 17:00:46 -040062/*
63 * Control how reservations are dealt with.
64 *
65 * RESERVE_FREE - freeing a reservation.
66 * RESERVE_ALLOC - allocating space and we need to update bytes_may_use for
67 * ENOSPC accounting
68 * RESERVE_ALLOC_NO_ACCOUNT - allocating space and we should not update
69 * bytes_may_use as the ENOSPC accounting is done elsewhere
70 */
71enum {
72 RESERVE_FREE = 0,
73 RESERVE_ALLOC = 1,
74 RESERVE_ALLOC_NO_ACCOUNT = 2,
75};
76
Liu Boc53d6132012-12-27 09:01:19 +000077static int update_block_group(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -040078 u64 bytenr, u64 num_bytes, int alloc);
Yan Zheng5d4f98a2009-06-10 10:45:14 -040079static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
80 struct btrfs_root *root,
81 u64 bytenr, u64 num_bytes, u64 parent,
82 u64 root_objectid, u64 owner_objectid,
83 u64 owner_offset, int refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -070084 struct btrfs_delayed_extent_op *extra_op,
85 int no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -040086static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
87 struct extent_buffer *leaf,
88 struct btrfs_extent_item *ei);
89static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
90 struct btrfs_root *root,
91 u64 parent, u64 root_objectid,
92 u64 flags, u64 owner, u64 offset,
93 struct btrfs_key *ins, int ref_mod);
94static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
95 struct btrfs_root *root,
96 u64 parent, u64 root_objectid,
97 u64 flags, struct btrfs_disk_key *key,
Josef Bacikfcebe452014-05-13 17:30:47 -070098 int level, struct btrfs_key *ins,
99 int no_quota);
Josef Bacik6a632092009-02-20 11:00:09 -0500100static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Josef Bacik698d0082012-09-12 14:08:47 -0400101 struct btrfs_root *extent_root, u64 flags,
102 int force);
Yan Zheng11833d62009-09-11 16:11:19 -0400103static int find_next_key(struct btrfs_path *path, int level,
104 struct btrfs_key *key);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400105static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
106 int dump_block_groups);
Josef Bacikfb25e912011-07-26 17:00:46 -0400107static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
Miao Xiee570fd22014-06-19 10:42:50 +0800108 u64 num_bytes, int reserve,
109 int delalloc);
Josef Bacik5d803662013-02-07 16:06:02 -0500110static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
111 u64 num_bytes);
Eric Sandeen48a3b632013-04-25 20:41:01 +0000112int btrfs_pin_extent(struct btrfs_root *root,
113 u64 bytenr, u64 num_bytes, int reserved);
Josef Bacik6a632092009-02-20 11:00:09 -0500114
Josef Bacik817d52f2009-07-13 21:29:25 -0400115static noinline int
116block_group_cache_done(struct btrfs_block_group_cache *cache)
117{
118 smp_mb();
Josef Bacik36cce922013-08-05 11:15:21 -0400119 return cache->cached == BTRFS_CACHE_FINISHED ||
120 cache->cached == BTRFS_CACHE_ERROR;
Josef Bacik817d52f2009-07-13 21:29:25 -0400121}
122
Josef Bacik0f9dd462008-09-23 13:14:11 -0400123static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
124{
125 return (cache->flags & bits) == bits;
126}
127
David Sterba62a45b62011-04-20 15:52:26 +0200128static void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
Josef Bacik11dfe352009-11-13 20:12:59 +0000129{
130 atomic_inc(&cache->count);
131}
132
133void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
134{
Yan, Zhengf0486c62010-05-16 10:46:25 -0400135 if (atomic_dec_and_test(&cache->count)) {
136 WARN_ON(cache->pinned > 0);
137 WARN_ON(cache->reserved > 0);
Li Zefan34d52cb2011-03-29 13:46:06 +0800138 kfree(cache->free_space_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000139 kfree(cache);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400140 }
Josef Bacik11dfe352009-11-13 20:12:59 +0000141}
142
Josef Bacik0f9dd462008-09-23 13:14:11 -0400143/*
144 * this adds the block group to the fs_info rb tree for the block group
145 * cache
146 */
Christoph Hellwigb2950862008-12-02 09:54:17 -0500147static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400148 struct btrfs_block_group_cache *block_group)
149{
150 struct rb_node **p;
151 struct rb_node *parent = NULL;
152 struct btrfs_block_group_cache *cache;
153
154 spin_lock(&info->block_group_cache_lock);
155 p = &info->block_group_cache_tree.rb_node;
156
157 while (*p) {
158 parent = *p;
159 cache = rb_entry(parent, struct btrfs_block_group_cache,
160 cache_node);
161 if (block_group->key.objectid < cache->key.objectid) {
162 p = &(*p)->rb_left;
163 } else if (block_group->key.objectid > cache->key.objectid) {
164 p = &(*p)->rb_right;
165 } else {
166 spin_unlock(&info->block_group_cache_lock);
167 return -EEXIST;
168 }
169 }
170
171 rb_link_node(&block_group->cache_node, parent, p);
172 rb_insert_color(&block_group->cache_node,
173 &info->block_group_cache_tree);
Liu Boa1897fd2012-12-27 09:01:23 +0000174
175 if (info->first_logical_byte > block_group->key.objectid)
176 info->first_logical_byte = block_group->key.objectid;
177
Josef Bacik0f9dd462008-09-23 13:14:11 -0400178 spin_unlock(&info->block_group_cache_lock);
179
180 return 0;
181}
182
183/*
184 * This will return the block group at or after bytenr if contains is 0, else
185 * it will return the block group that contains the bytenr
186 */
187static struct btrfs_block_group_cache *
188block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
189 int contains)
190{
191 struct btrfs_block_group_cache *cache, *ret = NULL;
192 struct rb_node *n;
193 u64 end, start;
194
195 spin_lock(&info->block_group_cache_lock);
196 n = info->block_group_cache_tree.rb_node;
197
198 while (n) {
199 cache = rb_entry(n, struct btrfs_block_group_cache,
200 cache_node);
201 end = cache->key.objectid + cache->key.offset - 1;
202 start = cache->key.objectid;
203
204 if (bytenr < start) {
205 if (!contains && (!ret || start < ret->key.objectid))
206 ret = cache;
207 n = n->rb_left;
208 } else if (bytenr > start) {
209 if (contains && bytenr <= end) {
210 ret = cache;
211 break;
212 }
213 n = n->rb_right;
214 } else {
215 ret = cache;
216 break;
217 }
218 }
Liu Boa1897fd2012-12-27 09:01:23 +0000219 if (ret) {
Josef Bacik11dfe352009-11-13 20:12:59 +0000220 btrfs_get_block_group(ret);
Liu Boa1897fd2012-12-27 09:01:23 +0000221 if (bytenr == 0 && info->first_logical_byte > ret->key.objectid)
222 info->first_logical_byte = ret->key.objectid;
223 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400224 spin_unlock(&info->block_group_cache_lock);
225
226 return ret;
227}
228
Yan Zheng11833d62009-09-11 16:11:19 -0400229static int add_excluded_extent(struct btrfs_root *root,
230 u64 start, u64 num_bytes)
Josef Bacik817d52f2009-07-13 21:29:25 -0400231{
Yan Zheng11833d62009-09-11 16:11:19 -0400232 u64 end = start + num_bytes - 1;
233 set_extent_bits(&root->fs_info->freed_extents[0],
234 start, end, EXTENT_UPTODATE, GFP_NOFS);
235 set_extent_bits(&root->fs_info->freed_extents[1],
236 start, end, EXTENT_UPTODATE, GFP_NOFS);
237 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400238}
239
Yan Zheng11833d62009-09-11 16:11:19 -0400240static void free_excluded_extents(struct btrfs_root *root,
241 struct btrfs_block_group_cache *cache)
Josef Bacik817d52f2009-07-13 21:29:25 -0400242{
Yan Zheng11833d62009-09-11 16:11:19 -0400243 u64 start, end;
244
245 start = cache->key.objectid;
246 end = start + cache->key.offset - 1;
247
248 clear_extent_bits(&root->fs_info->freed_extents[0],
249 start, end, EXTENT_UPTODATE, GFP_NOFS);
250 clear_extent_bits(&root->fs_info->freed_extents[1],
251 start, end, EXTENT_UPTODATE, GFP_NOFS);
252}
253
254static int exclude_super_stripes(struct btrfs_root *root,
255 struct btrfs_block_group_cache *cache)
256{
Josef Bacik817d52f2009-07-13 21:29:25 -0400257 u64 bytenr;
258 u64 *logical;
259 int stripe_len;
260 int i, nr, ret;
261
Yan, Zheng06b23312009-11-26 09:31:11 +0000262 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
263 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
264 cache->bytes_super += stripe_len;
265 ret = add_excluded_extent(root, cache->key.objectid,
266 stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400267 if (ret)
268 return ret;
Yan, Zheng06b23312009-11-26 09:31:11 +0000269 }
270
Josef Bacik817d52f2009-07-13 21:29:25 -0400271 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
272 bytenr = btrfs_sb_offset(i);
273 ret = btrfs_rmap_block(&root->fs_info->mapping_tree,
274 cache->key.objectid, bytenr,
275 0, &logical, &nr, &stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400276 if (ret)
277 return ret;
Yan Zheng11833d62009-09-11 16:11:19 -0400278
Josef Bacik817d52f2009-07-13 21:29:25 -0400279 while (nr--) {
Josef Bacik51bf5f02013-04-23 12:55:21 -0400280 u64 start, len;
281
282 if (logical[nr] > cache->key.objectid +
283 cache->key.offset)
284 continue;
285
286 if (logical[nr] + stripe_len <= cache->key.objectid)
287 continue;
288
289 start = logical[nr];
290 if (start < cache->key.objectid) {
291 start = cache->key.objectid;
292 len = (logical[nr] + stripe_len) - start;
293 } else {
294 len = min_t(u64, stripe_len,
295 cache->key.objectid +
296 cache->key.offset - start);
297 }
298
299 cache->bytes_super += len;
300 ret = add_excluded_extent(root, start, len);
Josef Bacik835d9742013-03-19 12:13:25 -0400301 if (ret) {
302 kfree(logical);
303 return ret;
304 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400305 }
Yan Zheng11833d62009-09-11 16:11:19 -0400306
Josef Bacik817d52f2009-07-13 21:29:25 -0400307 kfree(logical);
308 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400309 return 0;
310}
311
Yan Zheng11833d62009-09-11 16:11:19 -0400312static struct btrfs_caching_control *
313get_caching_control(struct btrfs_block_group_cache *cache)
314{
315 struct btrfs_caching_control *ctl;
316
317 spin_lock(&cache->lock);
318 if (cache->cached != BTRFS_CACHE_STARTED) {
319 spin_unlock(&cache->lock);
320 return NULL;
321 }
322
Josef Bacikdde5abe2010-09-16 16:17:03 -0400323 /* We're loading it the fast way, so we don't have a caching_ctl. */
324 if (!cache->caching_ctl) {
325 spin_unlock(&cache->lock);
326 return NULL;
327 }
328
Yan Zheng11833d62009-09-11 16:11:19 -0400329 ctl = cache->caching_ctl;
330 atomic_inc(&ctl->count);
331 spin_unlock(&cache->lock);
332 return ctl;
333}
334
335static void put_caching_control(struct btrfs_caching_control *ctl)
336{
337 if (atomic_dec_and_test(&ctl->count))
338 kfree(ctl);
339}
340
Josef Bacik0f9dd462008-09-23 13:14:11 -0400341/*
342 * this is only called by cache_block_group, since we could have freed extents
343 * we need to check the pinned_extents for any extents that can't be used yet
344 * since their free space will be released as soon as the transaction commits.
345 */
Josef Bacik817d52f2009-07-13 21:29:25 -0400346static u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400347 struct btrfs_fs_info *info, u64 start, u64 end)
348{
Josef Bacik817d52f2009-07-13 21:29:25 -0400349 u64 extent_start, extent_end, size, total_added = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400350 int ret;
351
352 while (start < end) {
Yan Zheng11833d62009-09-11 16:11:19 -0400353 ret = find_first_extent_bit(info->pinned_extents, start,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400354 &extent_start, &extent_end,
Josef Bacike6138872012-09-27 17:07:30 -0400355 EXTENT_DIRTY | EXTENT_UPTODATE,
356 NULL);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400357 if (ret)
358 break;
359
Yan, Zheng06b23312009-11-26 09:31:11 +0000360 if (extent_start <= start) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400361 start = extent_end + 1;
362 } else if (extent_start > start && extent_start < end) {
363 size = extent_start - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400364 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500365 ret = btrfs_add_free_space(block_group, start,
366 size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100367 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400368 start = extent_end + 1;
369 } else {
370 break;
371 }
372 }
373
374 if (start < end) {
375 size = end - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400376 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500377 ret = btrfs_add_free_space(block_group, start, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100378 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400379 }
380
Josef Bacik817d52f2009-07-13 21:29:25 -0400381 return total_added;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400382}
383
Qu Wenruod458b052014-02-28 10:46:19 +0800384static noinline void caching_thread(struct btrfs_work *work)
Chris Masone37c9e62007-05-09 20:13:14 -0400385{
Josef Bacikbab39bf2011-06-30 14:42:28 -0400386 struct btrfs_block_group_cache *block_group;
387 struct btrfs_fs_info *fs_info;
388 struct btrfs_caching_control *caching_ctl;
389 struct btrfs_root *extent_root;
Chris Masone37c9e62007-05-09 20:13:14 -0400390 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400391 struct extent_buffer *leaf;
Yan Zheng11833d62009-09-11 16:11:19 -0400392 struct btrfs_key key;
Josef Bacik817d52f2009-07-13 21:29:25 -0400393 u64 total_found = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400394 u64 last = 0;
395 u32 nritems;
Josef Bacik36cce922013-08-05 11:15:21 -0400396 int ret = -ENOMEM;
Chris Masonf510cfe2007-10-15 16:14:48 -0400397
Josef Bacikbab39bf2011-06-30 14:42:28 -0400398 caching_ctl = container_of(work, struct btrfs_caching_control, work);
399 block_group = caching_ctl->block_group;
400 fs_info = block_group->fs_info;
401 extent_root = fs_info->extent_root;
402
Chris Masone37c9e62007-05-09 20:13:14 -0400403 path = btrfs_alloc_path();
404 if (!path)
Josef Bacikbab39bf2011-06-30 14:42:28 -0400405 goto out;
Yan7d7d6062007-09-14 16:15:28 -0400406
Josef Bacik817d52f2009-07-13 21:29:25 -0400407 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
Yan Zheng11833d62009-09-11 16:11:19 -0400408
Chris Mason5cd57b22008-06-25 16:01:30 -0400409 /*
Josef Bacik817d52f2009-07-13 21:29:25 -0400410 * We don't want to deadlock with somebody trying to allocate a new
411 * extent for the extent root while also trying to search the extent
412 * root to add free space. So we skip locking and search the commit
413 * root, since its read-only
Chris Mason5cd57b22008-06-25 16:01:30 -0400414 */
415 path->skip_locking = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400416 path->search_commit_root = 1;
Josef Bacik026fd312011-05-13 10:32:11 -0400417 path->reada = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400418
Yan Zhenge4404d62008-12-12 10:03:26 -0500419 key.objectid = last;
Chris Masone37c9e62007-05-09 20:13:14 -0400420 key.offset = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400421 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason013f1b12009-07-31 14:57:55 -0400422again:
Yan Zheng11833d62009-09-11 16:11:19 -0400423 mutex_lock(&caching_ctl->mutex);
Chris Mason013f1b12009-07-31 14:57:55 -0400424 /* need to make sure the commit_root doesn't disappear */
Josef Bacik9e351cc2014-03-13 15:42:13 -0400425 down_read(&fs_info->commit_root_sem);
Chris Mason013f1b12009-07-31 14:57:55 -0400426
Liu Bo52ee28d2013-07-11 17:51:15 +0800427next:
Yan Zheng11833d62009-09-11 16:11:19 -0400428 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
Chris Masone37c9e62007-05-09 20:13:14 -0400429 if (ret < 0)
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400430 goto err;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500431
Yan Zheng11833d62009-09-11 16:11:19 -0400432 leaf = path->nodes[0];
433 nritems = btrfs_header_nritems(leaf);
434
Chris Masond3977122009-01-05 21:25:51 -0500435 while (1) {
David Sterba7841cb22011-05-31 18:07:27 +0200436 if (btrfs_fs_closing(fs_info) > 1) {
Yan Zhengf25784b2009-07-28 08:41:57 -0400437 last = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400438 break;
Yan Zhengf25784b2009-07-28 08:41:57 -0400439 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400440
Yan Zheng11833d62009-09-11 16:11:19 -0400441 if (path->slots[0] < nritems) {
442 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
443 } else {
444 ret = find_next_key(path, 0, &key);
445 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -0400446 break;
Josef Bacik817d52f2009-07-13 21:29:25 -0400447
Josef Bacikc9ea7b22013-09-19 10:02:11 -0400448 if (need_resched() ||
Josef Bacik9e351cc2014-03-13 15:42:13 -0400449 rwsem_is_contended(&fs_info->commit_root_sem)) {
Josef Bacik589d8ad2011-05-11 17:30:53 -0400450 caching_ctl->progress = last;
Chris Masonff5714c2011-05-28 07:00:39 -0400451 btrfs_release_path(path);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400452 up_read(&fs_info->commit_root_sem);
Josef Bacik589d8ad2011-05-11 17:30:53 -0400453 mutex_unlock(&caching_ctl->mutex);
Yan Zheng11833d62009-09-11 16:11:19 -0400454 cond_resched();
Josef Bacik589d8ad2011-05-11 17:30:53 -0400455 goto again;
456 }
Josef Bacik0a3896d2013-04-19 14:37:26 -0400457
458 ret = btrfs_next_leaf(extent_root, path);
459 if (ret < 0)
460 goto err;
461 if (ret)
462 break;
Josef Bacik589d8ad2011-05-11 17:30:53 -0400463 leaf = path->nodes[0];
464 nritems = btrfs_header_nritems(leaf);
465 continue;
Yan Zheng11833d62009-09-11 16:11:19 -0400466 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400467
Liu Bo52ee28d2013-07-11 17:51:15 +0800468 if (key.objectid < last) {
469 key.objectid = last;
470 key.offset = 0;
471 key.type = BTRFS_EXTENT_ITEM_KEY;
472
473 caching_ctl->progress = last;
474 btrfs_release_path(path);
475 goto next;
476 }
477
Yan Zheng11833d62009-09-11 16:11:19 -0400478 if (key.objectid < block_group->key.objectid) {
479 path->slots[0]++;
Josef Bacik817d52f2009-07-13 21:29:25 -0400480 continue;
Chris Masone37c9e62007-05-09 20:13:14 -0400481 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400482
Chris Masone37c9e62007-05-09 20:13:14 -0400483 if (key.objectid >= block_group->key.objectid +
Josef Bacik0f9dd462008-09-23 13:14:11 -0400484 block_group->key.offset)
Yan7d7d6062007-09-14 16:15:28 -0400485 break;
Yan7d7d6062007-09-14 16:15:28 -0400486
Josef Bacik3173a182013-03-07 14:22:04 -0500487 if (key.type == BTRFS_EXTENT_ITEM_KEY ||
488 key.type == BTRFS_METADATA_ITEM_KEY) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400489 total_found += add_new_free_space(block_group,
490 fs_info, last,
491 key.objectid);
Josef Bacik3173a182013-03-07 14:22:04 -0500492 if (key.type == BTRFS_METADATA_ITEM_KEY)
493 last = key.objectid +
David Sterba707e8a02014-06-04 19:22:26 +0200494 fs_info->tree_root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500495 else
496 last = key.objectid + key.offset;
Josef Bacik817d52f2009-07-13 21:29:25 -0400497
Yan Zheng11833d62009-09-11 16:11:19 -0400498 if (total_found > (1024 * 1024 * 2)) {
499 total_found = 0;
500 wake_up(&caching_ctl->wait);
501 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400502 }
Chris Masone37c9e62007-05-09 20:13:14 -0400503 path->slots[0]++;
504 }
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400505 ret = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400506
507 total_found += add_new_free_space(block_group, fs_info, last,
508 block_group->key.objectid +
509 block_group->key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -0400510 caching_ctl->progress = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400511
512 spin_lock(&block_group->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400513 block_group->caching_ctl = NULL;
Josef Bacik817d52f2009-07-13 21:29:25 -0400514 block_group->cached = BTRFS_CACHE_FINISHED;
515 spin_unlock(&block_group->lock);
516
Chris Mason54aa1f42007-06-22 14:16:25 -0400517err:
Chris Masone37c9e62007-05-09 20:13:14 -0400518 btrfs_free_path(path);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400519 up_read(&fs_info->commit_root_sem);
Josef Bacik817d52f2009-07-13 21:29:25 -0400520
Yan Zheng11833d62009-09-11 16:11:19 -0400521 free_excluded_extents(extent_root, block_group);
522
523 mutex_unlock(&caching_ctl->mutex);
Josef Bacikbab39bf2011-06-30 14:42:28 -0400524out:
Josef Bacik36cce922013-08-05 11:15:21 -0400525 if (ret) {
526 spin_lock(&block_group->lock);
527 block_group->caching_ctl = NULL;
528 block_group->cached = BTRFS_CACHE_ERROR;
529 spin_unlock(&block_group->lock);
530 }
Yan Zheng11833d62009-09-11 16:11:19 -0400531 wake_up(&caching_ctl->wait);
532
533 put_caching_control(caching_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000534 btrfs_put_block_group(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -0400535}
536
Josef Bacik9d66e232010-08-25 16:54:15 -0400537static int cache_block_group(struct btrfs_block_group_cache *cache,
Josef Bacik9d66e232010-08-25 16:54:15 -0400538 int load_cache_only)
Josef Bacik817d52f2009-07-13 21:29:25 -0400539{
Josef Bacik291c7d22011-11-14 13:52:14 -0500540 DEFINE_WAIT(wait);
Yan Zheng11833d62009-09-11 16:11:19 -0400541 struct btrfs_fs_info *fs_info = cache->fs_info;
542 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400543 int ret = 0;
544
Josef Bacik291c7d22011-11-14 13:52:14 -0500545 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100546 if (!caching_ctl)
547 return -ENOMEM;
Josef Bacik291c7d22011-11-14 13:52:14 -0500548
549 INIT_LIST_HEAD(&caching_ctl->list);
550 mutex_init(&caching_ctl->mutex);
551 init_waitqueue_head(&caching_ctl->wait);
552 caching_ctl->block_group = cache;
553 caching_ctl->progress = cache->key.objectid;
554 atomic_set(&caching_ctl->count, 1);
Liu Bo9e0af232014-08-15 23:36:53 +0800555 btrfs_init_work(&caching_ctl->work, btrfs_cache_helper,
556 caching_thread, NULL, NULL);
Josef Bacik291c7d22011-11-14 13:52:14 -0500557
558 spin_lock(&cache->lock);
559 /*
560 * This should be a rare occasion, but this could happen I think in the
561 * case where one thread starts to load the space cache info, and then
562 * some other thread starts a transaction commit which tries to do an
563 * allocation while the other thread is still loading the space cache
564 * info. The previous loop should have kept us from choosing this block
565 * group, but if we've moved to the state where we will wait on caching
566 * block groups we need to first check if we're doing a fast load here,
567 * so we can wait for it to finish, otherwise we could end up allocating
568 * from a block group who's cache gets evicted for one reason or
569 * another.
570 */
571 while (cache->cached == BTRFS_CACHE_FAST) {
572 struct btrfs_caching_control *ctl;
573
574 ctl = cache->caching_ctl;
575 atomic_inc(&ctl->count);
576 prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE);
577 spin_unlock(&cache->lock);
578
579 schedule();
580
581 finish_wait(&ctl->wait, &wait);
582 put_caching_control(ctl);
583 spin_lock(&cache->lock);
584 }
585
586 if (cache->cached != BTRFS_CACHE_NO) {
587 spin_unlock(&cache->lock);
588 kfree(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400589 return 0;
Josef Bacik291c7d22011-11-14 13:52:14 -0500590 }
591 WARN_ON(cache->caching_ctl);
592 cache->caching_ctl = caching_ctl;
593 cache->cached = BTRFS_CACHE_FAST;
594 spin_unlock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400595
Josef Bacikd53ba472012-04-12 16:03:57 -0400596 if (fs_info->mount_opt & BTRFS_MOUNT_SPACE_CACHE) {
Josef Bacik9d66e232010-08-25 16:54:15 -0400597 ret = load_free_space_cache(fs_info, cache);
598
599 spin_lock(&cache->lock);
600 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500601 cache->caching_ctl = NULL;
Josef Bacik9d66e232010-08-25 16:54:15 -0400602 cache->cached = BTRFS_CACHE_FINISHED;
603 cache->last_byte_to_unpin = (u64)-1;
604 } else {
Josef Bacik291c7d22011-11-14 13:52:14 -0500605 if (load_cache_only) {
606 cache->caching_ctl = NULL;
607 cache->cached = BTRFS_CACHE_NO;
608 } else {
609 cache->cached = BTRFS_CACHE_STARTED;
Filipe Manana4f69cb92014-11-26 15:28:51 +0000610 cache->has_caching_ctl = 1;
Josef Bacik291c7d22011-11-14 13:52:14 -0500611 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400612 }
613 spin_unlock(&cache->lock);
Josef Bacik291c7d22011-11-14 13:52:14 -0500614 wake_up(&caching_ctl->wait);
Josef Bacik3c148742011-02-02 15:53:47 +0000615 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500616 put_caching_control(caching_ctl);
Josef Bacik3c148742011-02-02 15:53:47 +0000617 free_excluded_extents(fs_info->extent_root, cache);
Josef Bacik9d66e232010-08-25 16:54:15 -0400618 return 0;
Josef Bacik3c148742011-02-02 15:53:47 +0000619 }
Josef Bacik291c7d22011-11-14 13:52:14 -0500620 } else {
621 /*
622 * We are not going to do the fast caching, set cached to the
623 * appropriate value and wakeup any waiters.
624 */
625 spin_lock(&cache->lock);
626 if (load_cache_only) {
627 cache->caching_ctl = NULL;
628 cache->cached = BTRFS_CACHE_NO;
629 } else {
630 cache->cached = BTRFS_CACHE_STARTED;
Filipe Manana4f69cb92014-11-26 15:28:51 +0000631 cache->has_caching_ctl = 1;
Josef Bacik291c7d22011-11-14 13:52:14 -0500632 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400633 spin_unlock(&cache->lock);
Josef Bacik291c7d22011-11-14 13:52:14 -0500634 wake_up(&caching_ctl->wait);
635 }
636
637 if (load_cache_only) {
638 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400639 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400640 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400641
Josef Bacik9e351cc2014-03-13 15:42:13 -0400642 down_write(&fs_info->commit_root_sem);
Josef Bacik291c7d22011-11-14 13:52:14 -0500643 atomic_inc(&caching_ctl->count);
Yan Zheng11833d62009-09-11 16:11:19 -0400644 list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400645 up_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -0400646
Josef Bacik11dfe352009-11-13 20:12:59 +0000647 btrfs_get_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -0400648
Qu Wenruoe66f0bb2014-02-28 10:46:12 +0800649 btrfs_queue_work(fs_info->caching_workers, &caching_ctl->work);
Josef Bacik817d52f2009-07-13 21:29:25 -0400650
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400651 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -0400652}
653
Josef Bacik0f9dd462008-09-23 13:14:11 -0400654/*
655 * return the block group that starts at or after bytenr
656 */
Chris Masond3977122009-01-05 21:25:51 -0500657static struct btrfs_block_group_cache *
658btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
Chris Mason0ef3e662008-05-24 14:04:53 -0400659{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400660 struct btrfs_block_group_cache *cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400661
Josef Bacik0f9dd462008-09-23 13:14:11 -0400662 cache = block_group_cache_tree_search(info, bytenr, 0);
Chris Mason0ef3e662008-05-24 14:04:53 -0400663
Josef Bacik0f9dd462008-09-23 13:14:11 -0400664 return cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400665}
666
Josef Bacik0f9dd462008-09-23 13:14:11 -0400667/*
Sankar P9f556842009-05-14 13:52:22 -0400668 * return the block group that contains the given bytenr
Josef Bacik0f9dd462008-09-23 13:14:11 -0400669 */
Chris Masond3977122009-01-05 21:25:51 -0500670struct btrfs_block_group_cache *btrfs_lookup_block_group(
671 struct btrfs_fs_info *info,
672 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400673{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400674 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -0400675
Josef Bacik0f9dd462008-09-23 13:14:11 -0400676 cache = block_group_cache_tree_search(info, bytenr, 1);
Chris Mason96b51792007-10-15 16:15:19 -0400677
Josef Bacik0f9dd462008-09-23 13:14:11 -0400678 return cache;
Chris Masonbe744172007-05-06 10:15:01 -0400679}
Chris Mason0b86a832008-03-24 15:01:56 -0400680
Josef Bacik0f9dd462008-09-23 13:14:11 -0400681static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
682 u64 flags)
Chris Mason6324fbf2008-03-24 15:01:59 -0400683{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400684 struct list_head *head = &info->space_info;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400685 struct btrfs_space_info *found;
Chris Mason4184ea72009-03-10 12:39:20 -0400686
Ilya Dryomov52ba6922012-01-16 22:04:47 +0200687 flags &= BTRFS_BLOCK_GROUP_TYPE_MASK;
Yan, Zhengb742bb822010-05-16 10:46:24 -0400688
Chris Mason4184ea72009-03-10 12:39:20 -0400689 rcu_read_lock();
690 list_for_each_entry_rcu(found, head, list) {
Josef Bacik67377732010-09-16 16:19:09 -0400691 if (found->flags & flags) {
Chris Mason4184ea72009-03-10 12:39:20 -0400692 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400693 return found;
Chris Mason4184ea72009-03-10 12:39:20 -0400694 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400695 }
Chris Mason4184ea72009-03-10 12:39:20 -0400696 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400697 return NULL;
Chris Mason6324fbf2008-03-24 15:01:59 -0400698}
699
Chris Mason4184ea72009-03-10 12:39:20 -0400700/*
701 * after adding space to the filesystem, we need to clear the full flags
702 * on all the space infos.
703 */
704void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
705{
706 struct list_head *head = &info->space_info;
707 struct btrfs_space_info *found;
708
709 rcu_read_lock();
710 list_for_each_entry_rcu(found, head, list)
711 found->full = 0;
712 rcu_read_unlock();
713}
714
Filipe Manana1a4ed8f2014-10-27 10:44:24 +0000715/* simple helper to search for an existing data extent at a given offset */
716int btrfs_lookup_data_extent(struct btrfs_root *root, u64 start, u64 len)
Chris Masone02119d2008-09-05 16:13:11 -0400717{
718 int ret;
719 struct btrfs_key key;
Zheng Yan31840ae2008-09-23 13:14:14 -0400720 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -0400721
Zheng Yan31840ae2008-09-23 13:14:14 -0400722 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700723 if (!path)
724 return -ENOMEM;
725
Chris Masone02119d2008-09-05 16:13:11 -0400726 key.objectid = start;
727 key.offset = len;
Josef Bacik3173a182013-03-07 14:22:04 -0500728 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -0400729 ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path,
730 0, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400731 btrfs_free_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -0500732 return ret;
733}
734
Chris Masond8d5f3e2007-12-11 12:42:00 -0500735/*
Josef Bacik3173a182013-03-07 14:22:04 -0500736 * helper function to lookup reference count and flags of a tree block.
Yan, Zhenga22285a2010-05-16 10:48:46 -0400737 *
738 * the head node for delayed ref is used to store the sum of all the
739 * reference count modifications queued up in the rbtree. the head
740 * node may also store the extent flags to set. This way you can check
741 * to see what the reference count and extent flags would be if all of
742 * the delayed refs are not processed.
743 */
744int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
745 struct btrfs_root *root, u64 bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -0500746 u64 offset, int metadata, u64 *refs, u64 *flags)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400747{
748 struct btrfs_delayed_ref_head *head;
749 struct btrfs_delayed_ref_root *delayed_refs;
750 struct btrfs_path *path;
751 struct btrfs_extent_item *ei;
752 struct extent_buffer *leaf;
753 struct btrfs_key key;
754 u32 item_size;
755 u64 num_refs;
756 u64 extent_flags;
757 int ret;
758
Josef Bacik3173a182013-03-07 14:22:04 -0500759 /*
760 * If we don't have skinny metadata, don't bother doing anything
761 * different
762 */
763 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) {
David Sterba707e8a02014-06-04 19:22:26 +0200764 offset = root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500765 metadata = 0;
766 }
767
Yan, Zhenga22285a2010-05-16 10:48:46 -0400768 path = btrfs_alloc_path();
769 if (!path)
770 return -ENOMEM;
771
Yan, Zhenga22285a2010-05-16 10:48:46 -0400772 if (!trans) {
773 path->skip_locking = 1;
774 path->search_commit_root = 1;
775 }
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000776
777search_again:
778 key.objectid = bytenr;
779 key.offset = offset;
780 if (metadata)
781 key.type = BTRFS_METADATA_ITEM_KEY;
782 else
783 key.type = BTRFS_EXTENT_ITEM_KEY;
784
Yan, Zhenga22285a2010-05-16 10:48:46 -0400785 ret = btrfs_search_slot(trans, root->fs_info->extent_root,
786 &key, path, 0, 0);
787 if (ret < 0)
788 goto out_free;
789
Josef Bacik3173a182013-03-07 14:22:04 -0500790 if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) {
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100791 if (path->slots[0]) {
792 path->slots[0]--;
793 btrfs_item_key_to_cpu(path->nodes[0], &key,
794 path->slots[0]);
795 if (key.objectid == bytenr &&
796 key.type == BTRFS_EXTENT_ITEM_KEY &&
David Sterba707e8a02014-06-04 19:22:26 +0200797 key.offset == root->nodesize)
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100798 ret = 0;
799 }
Josef Bacik3173a182013-03-07 14:22:04 -0500800 }
801
Yan, Zhenga22285a2010-05-16 10:48:46 -0400802 if (ret == 0) {
803 leaf = path->nodes[0];
804 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
805 if (item_size >= sizeof(*ei)) {
806 ei = btrfs_item_ptr(leaf, path->slots[0],
807 struct btrfs_extent_item);
808 num_refs = btrfs_extent_refs(leaf, ei);
809 extent_flags = btrfs_extent_flags(leaf, ei);
810 } else {
811#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
812 struct btrfs_extent_item_v0 *ei0;
813 BUG_ON(item_size != sizeof(*ei0));
814 ei0 = btrfs_item_ptr(leaf, path->slots[0],
815 struct btrfs_extent_item_v0);
816 num_refs = btrfs_extent_refs_v0(leaf, ei0);
817 /* FIXME: this isn't correct for data */
818 extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
819#else
820 BUG();
821#endif
822 }
823 BUG_ON(num_refs == 0);
824 } else {
825 num_refs = 0;
826 extent_flags = 0;
827 ret = 0;
828 }
829
830 if (!trans)
831 goto out;
832
833 delayed_refs = &trans->transaction->delayed_refs;
834 spin_lock(&delayed_refs->lock);
835 head = btrfs_find_delayed_ref_head(trans, bytenr);
836 if (head) {
837 if (!mutex_trylock(&head->mutex)) {
838 atomic_inc(&head->node.refs);
839 spin_unlock(&delayed_refs->lock);
840
David Sterbab3b4aa72011-04-21 01:20:15 +0200841 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400842
David Sterba8cc33e52011-05-02 15:29:25 +0200843 /*
844 * Mutex was contended, block until it's released and try
845 * again
846 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400847 mutex_lock(&head->mutex);
848 mutex_unlock(&head->mutex);
849 btrfs_put_delayed_ref(&head->node);
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000850 goto search_again;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400851 }
Josef Bacikd7df2c72014-01-23 09:21:38 -0500852 spin_lock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400853 if (head->extent_op && head->extent_op->update_flags)
854 extent_flags |= head->extent_op->flags_to_set;
855 else
856 BUG_ON(num_refs == 0);
857
858 num_refs += head->node.ref_mod;
Josef Bacikd7df2c72014-01-23 09:21:38 -0500859 spin_unlock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400860 mutex_unlock(&head->mutex);
861 }
862 spin_unlock(&delayed_refs->lock);
863out:
864 WARN_ON(num_refs == 0);
865 if (refs)
866 *refs = num_refs;
867 if (flags)
868 *flags = extent_flags;
869out_free:
870 btrfs_free_path(path);
871 return ret;
872}
873
874/*
Chris Masond8d5f3e2007-12-11 12:42:00 -0500875 * Back reference rules. Back refs have three main goals:
876 *
877 * 1) differentiate between all holders of references to an extent so that
878 * when a reference is dropped we can make sure it was a valid reference
879 * before freeing the extent.
880 *
881 * 2) Provide enough information to quickly find the holders of an extent
882 * if we notice a given block is corrupted or bad.
883 *
884 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
885 * maintenance. This is actually the same as #2, but with a slightly
886 * different use case.
887 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400888 * There are two kinds of back refs. The implicit back refs is optimized
889 * for pointers in non-shared tree blocks. For a given pointer in a block,
890 * back refs of this kind provide information about the block's owner tree
891 * and the pointer's key. These information allow us to find the block by
892 * b-tree searching. The full back refs is for pointers in tree blocks not
893 * referenced by their owner trees. The location of tree block is recorded
894 * in the back refs. Actually the full back refs is generic, and can be
895 * used in all cases the implicit back refs is used. The major shortcoming
896 * of the full back refs is its overhead. Every time a tree block gets
897 * COWed, we have to update back refs entry for all pointers in it.
898 *
899 * For a newly allocated tree block, we use implicit back refs for
900 * pointers in it. This means most tree related operations only involve
901 * implicit back refs. For a tree block created in old transaction, the
902 * only way to drop a reference to it is COW it. So we can detect the
903 * event that tree block loses its owner tree's reference and do the
904 * back refs conversion.
905 *
906 * When a tree block is COW'd through a tree, there are four cases:
907 *
908 * The reference count of the block is one and the tree is the block's
909 * owner tree. Nothing to do in this case.
910 *
911 * The reference count of the block is one and the tree is not the
912 * block's owner tree. In this case, full back refs is used for pointers
913 * in the block. Remove these full back refs, add implicit back refs for
914 * every pointers in the new block.
915 *
916 * The reference count of the block is greater than one and the tree is
917 * the block's owner tree. In this case, implicit back refs is used for
918 * pointers in the block. Add full back refs for every pointers in the
919 * block, increase lower level extents' reference counts. The original
920 * implicit back refs are entailed to the new block.
921 *
922 * The reference count of the block is greater than one and the tree is
923 * not the block's owner tree. Add implicit back refs for every pointer in
924 * the new block, increase lower level extents' reference count.
925 *
926 * Back Reference Key composing:
927 *
928 * The key objectid corresponds to the first byte in the extent,
929 * The key type is used to differentiate between types of back refs.
930 * There are different meanings of the key offset for different types
931 * of back refs.
932 *
Chris Masond8d5f3e2007-12-11 12:42:00 -0500933 * File extents can be referenced by:
934 *
935 * - multiple snapshots, subvolumes, or different generations in one subvol
Zheng Yan31840ae2008-09-23 13:14:14 -0400936 * - different files inside a single subvolume
Chris Masond8d5f3e2007-12-11 12:42:00 -0500937 * - different offsets inside a file (bookend extents in file.c)
938 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400939 * The extent ref structure for the implicit back refs has fields for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500940 *
941 * - Objectid of the subvolume root
Chris Masond8d5f3e2007-12-11 12:42:00 -0500942 * - objectid of the file holding the reference
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400943 * - original offset in the file
944 * - how many bookend extents
Zheng Yan31840ae2008-09-23 13:14:14 -0400945 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400946 * The key offset for the implicit back refs is hash of the first
947 * three fields.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500948 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400949 * The extent ref structure for the full back refs has field for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500950 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400951 * - number of pointers in the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500952 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400953 * The key offset for the implicit back refs is the first byte of
954 * the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500955 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400956 * When a file extent is allocated, The implicit back refs is used.
957 * the fields are filled in:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500958 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400959 * (root_key.objectid, inode objectid, offset in file, 1)
960 *
961 * When a file extent is removed file truncation, we find the
962 * corresponding implicit back refs and check the following fields:
963 *
964 * (btrfs_header_owner(leaf), inode objectid, offset in file)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500965 *
966 * Btree extents can be referenced by:
967 *
968 * - Different subvolumes
Chris Masond8d5f3e2007-12-11 12:42:00 -0500969 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400970 * Both the implicit back refs and the full back refs for tree blocks
971 * only consist of key. The key offset for the implicit back refs is
972 * objectid of block's owner tree. The key offset for the full back refs
973 * is the first byte of parent block.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500974 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400975 * When implicit back refs is used, information about the lowest key and
976 * level of the tree block are required. These information are stored in
977 * tree block info structure.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500978 */
Zheng Yan31840ae2008-09-23 13:14:14 -0400979
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400980#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
981static int convert_extent_item_v0(struct btrfs_trans_handle *trans,
982 struct btrfs_root *root,
983 struct btrfs_path *path,
984 u64 owner, u32 extra_size)
Chris Mason74493f72007-12-11 09:25:06 -0500985{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400986 struct btrfs_extent_item *item;
987 struct btrfs_extent_item_v0 *ei0;
988 struct btrfs_extent_ref_v0 *ref0;
989 struct btrfs_tree_block_info *bi;
Zheng Yan31840ae2008-09-23 13:14:14 -0400990 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400991 struct btrfs_key key;
992 struct btrfs_key found_key;
993 u32 new_size = sizeof(*item);
994 u64 refs;
Chris Mason74493f72007-12-11 09:25:06 -0500995 int ret;
996
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400997 leaf = path->nodes[0];
998 BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0));
Chris Mason74493f72007-12-11 09:25:06 -0500999
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001000 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1001 ei0 = btrfs_item_ptr(leaf, path->slots[0],
1002 struct btrfs_extent_item_v0);
1003 refs = btrfs_extent_refs_v0(leaf, ei0);
1004
1005 if (owner == (u64)-1) {
1006 while (1) {
1007 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1008 ret = btrfs_next_leaf(root, path);
1009 if (ret < 0)
1010 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001011 BUG_ON(ret > 0); /* Corruption */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001012 leaf = path->nodes[0];
1013 }
1014 btrfs_item_key_to_cpu(leaf, &found_key,
1015 path->slots[0]);
1016 BUG_ON(key.objectid != found_key.objectid);
1017 if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) {
1018 path->slots[0]++;
1019 continue;
1020 }
1021 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1022 struct btrfs_extent_ref_v0);
1023 owner = btrfs_ref_objectid_v0(leaf, ref0);
1024 break;
1025 }
1026 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001027 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001028
1029 if (owner < BTRFS_FIRST_FREE_OBJECTID)
1030 new_size += sizeof(*bi);
1031
1032 new_size -= sizeof(*ei0);
1033 ret = btrfs_search_slot(trans, root, &key, path,
1034 new_size + extra_size, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04001035 if (ret < 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001036 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001037 BUG_ON(ret); /* Corruption */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001038
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00001039 btrfs_extend_item(root, path, new_size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001040
1041 leaf = path->nodes[0];
1042 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1043 btrfs_set_extent_refs(leaf, item, refs);
1044 /* FIXME: get real generation */
1045 btrfs_set_extent_generation(leaf, item, 0);
1046 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1047 btrfs_set_extent_flags(leaf, item,
1048 BTRFS_EXTENT_FLAG_TREE_BLOCK |
1049 BTRFS_BLOCK_FLAG_FULL_BACKREF);
1050 bi = (struct btrfs_tree_block_info *)(item + 1);
1051 /* FIXME: get first key of the block */
1052 memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi));
1053 btrfs_set_tree_block_level(leaf, bi, (int)owner);
1054 } else {
1055 btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA);
1056 }
1057 btrfs_mark_buffer_dirty(leaf);
1058 return 0;
1059}
1060#endif
1061
1062static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
1063{
1064 u32 high_crc = ~(u32)0;
1065 u32 low_crc = ~(u32)0;
1066 __le64 lenum;
1067
1068 lenum = cpu_to_le64(root_objectid);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001069 high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001070 lenum = cpu_to_le64(owner);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001071 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001072 lenum = cpu_to_le64(offset);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001073 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001074
1075 return ((u64)high_crc << 31) ^ (u64)low_crc;
1076}
1077
1078static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
1079 struct btrfs_extent_data_ref *ref)
1080{
1081 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
1082 btrfs_extent_data_ref_objectid(leaf, ref),
1083 btrfs_extent_data_ref_offset(leaf, ref));
1084}
1085
1086static int match_extent_data_ref(struct extent_buffer *leaf,
1087 struct btrfs_extent_data_ref *ref,
1088 u64 root_objectid, u64 owner, u64 offset)
1089{
1090 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
1091 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
1092 btrfs_extent_data_ref_offset(leaf, ref) != offset)
1093 return 0;
1094 return 1;
1095}
1096
1097static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
1098 struct btrfs_root *root,
1099 struct btrfs_path *path,
1100 u64 bytenr, u64 parent,
1101 u64 root_objectid,
1102 u64 owner, u64 offset)
1103{
1104 struct btrfs_key key;
1105 struct btrfs_extent_data_ref *ref;
1106 struct extent_buffer *leaf;
1107 u32 nritems;
1108 int ret;
1109 int recow;
1110 int err = -ENOENT;
1111
1112 key.objectid = bytenr;
1113 if (parent) {
1114 key.type = BTRFS_SHARED_DATA_REF_KEY;
1115 key.offset = parent;
1116 } else {
1117 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1118 key.offset = hash_extent_data_ref(root_objectid,
1119 owner, offset);
1120 }
1121again:
1122 recow = 0;
1123 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1124 if (ret < 0) {
1125 err = ret;
1126 goto fail;
1127 }
1128
1129 if (parent) {
1130 if (!ret)
1131 return 0;
1132#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1133 key.type = BTRFS_EXTENT_REF_V0_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02001134 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001135 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1136 if (ret < 0) {
1137 err = ret;
1138 goto fail;
1139 }
1140 if (!ret)
1141 return 0;
1142#endif
1143 goto fail;
Zheng Yan31840ae2008-09-23 13:14:14 -04001144 }
1145
1146 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001147 nritems = btrfs_header_nritems(leaf);
1148 while (1) {
1149 if (path->slots[0] >= nritems) {
1150 ret = btrfs_next_leaf(root, path);
1151 if (ret < 0)
1152 err = ret;
1153 if (ret)
1154 goto fail;
1155
1156 leaf = path->nodes[0];
1157 nritems = btrfs_header_nritems(leaf);
1158 recow = 1;
1159 }
1160
1161 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1162 if (key.objectid != bytenr ||
1163 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1164 goto fail;
1165
1166 ref = btrfs_item_ptr(leaf, path->slots[0],
1167 struct btrfs_extent_data_ref);
1168
1169 if (match_extent_data_ref(leaf, ref, root_objectid,
1170 owner, offset)) {
1171 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001172 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001173 goto again;
1174 }
1175 err = 0;
1176 break;
1177 }
1178 path->slots[0]++;
Zheng Yan31840ae2008-09-23 13:14:14 -04001179 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001180fail:
1181 return err;
Zheng Yan31840ae2008-09-23 13:14:14 -04001182}
1183
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001184static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
1185 struct btrfs_root *root,
1186 struct btrfs_path *path,
1187 u64 bytenr, u64 parent,
1188 u64 root_objectid, u64 owner,
1189 u64 offset, int refs_to_add)
Zheng Yan31840ae2008-09-23 13:14:14 -04001190{
1191 struct btrfs_key key;
1192 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001193 u32 size;
Zheng Yan31840ae2008-09-23 13:14:14 -04001194 u32 num_refs;
1195 int ret;
1196
1197 key.objectid = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001198 if (parent) {
1199 key.type = BTRFS_SHARED_DATA_REF_KEY;
1200 key.offset = parent;
1201 size = sizeof(struct btrfs_shared_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001202 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001203 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1204 key.offset = hash_extent_data_ref(root_objectid,
1205 owner, offset);
1206 size = sizeof(struct btrfs_extent_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001207 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001208
1209 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1210 if (ret && ret != -EEXIST)
1211 goto fail;
1212
1213 leaf = path->nodes[0];
1214 if (parent) {
1215 struct btrfs_shared_data_ref *ref;
1216 ref = btrfs_item_ptr(leaf, path->slots[0],
1217 struct btrfs_shared_data_ref);
1218 if (ret == 0) {
1219 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1220 } else {
1221 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1222 num_refs += refs_to_add;
1223 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
1224 }
1225 } else {
1226 struct btrfs_extent_data_ref *ref;
1227 while (ret == -EEXIST) {
1228 ref = btrfs_item_ptr(leaf, path->slots[0],
1229 struct btrfs_extent_data_ref);
1230 if (match_extent_data_ref(leaf, ref, root_objectid,
1231 owner, offset))
1232 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02001233 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001234 key.offset++;
1235 ret = btrfs_insert_empty_item(trans, root, path, &key,
1236 size);
1237 if (ret && ret != -EEXIST)
1238 goto fail;
1239
1240 leaf = path->nodes[0];
1241 }
1242 ref = btrfs_item_ptr(leaf, path->slots[0],
1243 struct btrfs_extent_data_ref);
1244 if (ret == 0) {
1245 btrfs_set_extent_data_ref_root(leaf, ref,
1246 root_objectid);
1247 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1248 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1249 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1250 } else {
1251 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1252 num_refs += refs_to_add;
1253 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
1254 }
1255 }
1256 btrfs_mark_buffer_dirty(leaf);
1257 ret = 0;
1258fail:
David Sterbab3b4aa72011-04-21 01:20:15 +02001259 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05001260 return ret;
Chris Mason74493f72007-12-11 09:25:06 -05001261}
1262
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001263static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
1264 struct btrfs_root *root,
1265 struct btrfs_path *path,
Josef Bacikfcebe452014-05-13 17:30:47 -07001266 int refs_to_drop, int *last_ref)
Zheng Yan31840ae2008-09-23 13:14:14 -04001267{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001268 struct btrfs_key key;
1269 struct btrfs_extent_data_ref *ref1 = NULL;
1270 struct btrfs_shared_data_ref *ref2 = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -04001271 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001272 u32 num_refs = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04001273 int ret = 0;
1274
1275 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001276 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1277
1278 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1279 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1280 struct btrfs_extent_data_ref);
1281 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1282 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1283 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1284 struct btrfs_shared_data_ref);
1285 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1286#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1287 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1288 struct btrfs_extent_ref_v0 *ref0;
1289 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1290 struct btrfs_extent_ref_v0);
1291 num_refs = btrfs_ref_count_v0(leaf, ref0);
1292#endif
1293 } else {
1294 BUG();
1295 }
1296
Chris Mason56bec292009-03-13 10:10:06 -04001297 BUG_ON(num_refs < refs_to_drop);
1298 num_refs -= refs_to_drop;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001299
Zheng Yan31840ae2008-09-23 13:14:14 -04001300 if (num_refs == 0) {
1301 ret = btrfs_del_item(trans, root, path);
Josef Bacikfcebe452014-05-13 17:30:47 -07001302 *last_ref = 1;
Zheng Yan31840ae2008-09-23 13:14:14 -04001303 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001304 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1305 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1306 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1307 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
1308#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1309 else {
1310 struct btrfs_extent_ref_v0 *ref0;
1311 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1312 struct btrfs_extent_ref_v0);
1313 btrfs_set_ref_count_v0(leaf, ref0, num_refs);
1314 }
1315#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04001316 btrfs_mark_buffer_dirty(leaf);
1317 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001318 return ret;
1319}
1320
1321static noinline u32 extent_data_ref_count(struct btrfs_root *root,
1322 struct btrfs_path *path,
1323 struct btrfs_extent_inline_ref *iref)
1324{
1325 struct btrfs_key key;
1326 struct extent_buffer *leaf;
1327 struct btrfs_extent_data_ref *ref1;
1328 struct btrfs_shared_data_ref *ref2;
1329 u32 num_refs = 0;
1330
1331 leaf = path->nodes[0];
1332 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1333 if (iref) {
1334 if (btrfs_extent_inline_ref_type(leaf, iref) ==
1335 BTRFS_EXTENT_DATA_REF_KEY) {
1336 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1337 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1338 } else {
1339 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1340 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1341 }
1342 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1343 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1344 struct btrfs_extent_data_ref);
1345 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1346 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1347 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1348 struct btrfs_shared_data_ref);
1349 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1350#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1351 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1352 struct btrfs_extent_ref_v0 *ref0;
1353 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1354 struct btrfs_extent_ref_v0);
1355 num_refs = btrfs_ref_count_v0(leaf, ref0);
1356#endif
1357 } else {
1358 WARN_ON(1);
1359 }
1360 return num_refs;
1361}
1362
1363static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
1364 struct btrfs_root *root,
1365 struct btrfs_path *path,
1366 u64 bytenr, u64 parent,
1367 u64 root_objectid)
1368{
1369 struct btrfs_key key;
1370 int ret;
1371
1372 key.objectid = bytenr;
1373 if (parent) {
1374 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1375 key.offset = parent;
1376 } else {
1377 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1378 key.offset = root_objectid;
1379 }
1380
1381 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1382 if (ret > 0)
1383 ret = -ENOENT;
1384#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1385 if (ret == -ENOENT && parent) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001386 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001387 key.type = BTRFS_EXTENT_REF_V0_KEY;
1388 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1389 if (ret > 0)
1390 ret = -ENOENT;
1391 }
1392#endif
1393 return ret;
1394}
1395
1396static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
1397 struct btrfs_root *root,
1398 struct btrfs_path *path,
1399 u64 bytenr, u64 parent,
1400 u64 root_objectid)
1401{
1402 struct btrfs_key key;
1403 int ret;
1404
1405 key.objectid = bytenr;
1406 if (parent) {
1407 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1408 key.offset = parent;
1409 } else {
1410 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1411 key.offset = root_objectid;
1412 }
1413
1414 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
David Sterbab3b4aa72011-04-21 01:20:15 +02001415 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04001416 return ret;
1417}
1418
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001419static inline int extent_ref_type(u64 parent, u64 owner)
1420{
1421 int type;
1422 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1423 if (parent > 0)
1424 type = BTRFS_SHARED_BLOCK_REF_KEY;
1425 else
1426 type = BTRFS_TREE_BLOCK_REF_KEY;
1427 } else {
1428 if (parent > 0)
1429 type = BTRFS_SHARED_DATA_REF_KEY;
1430 else
1431 type = BTRFS_EXTENT_DATA_REF_KEY;
1432 }
1433 return type;
1434}
1435
Yan Zheng2c47e6052009-06-27 21:07:35 -04001436static int find_next_key(struct btrfs_path *path, int level,
1437 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001438
1439{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001440 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001441 if (!path->nodes[level])
1442 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001443 if (path->slots[level] + 1 >=
1444 btrfs_header_nritems(path->nodes[level]))
1445 continue;
1446 if (level == 0)
1447 btrfs_item_key_to_cpu(path->nodes[level], key,
1448 path->slots[level] + 1);
1449 else
1450 btrfs_node_key_to_cpu(path->nodes[level], key,
1451 path->slots[level] + 1);
1452 return 0;
1453 }
1454 return 1;
1455}
1456
1457/*
1458 * look for inline back ref. if back ref is found, *ref_ret is set
1459 * to the address of inline back ref, and 0 is returned.
1460 *
1461 * if back ref isn't found, *ref_ret is set to the address where it
1462 * should be inserted, and -ENOENT is returned.
1463 *
1464 * if insert is true and there are too many inline back refs, the path
1465 * points to the extent item, and -EAGAIN is returned.
1466 *
1467 * NOTE: inline back refs are ordered in the same way that back ref
1468 * items in the tree are ordered.
1469 */
1470static noinline_for_stack
1471int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
1472 struct btrfs_root *root,
1473 struct btrfs_path *path,
1474 struct btrfs_extent_inline_ref **ref_ret,
1475 u64 bytenr, u64 num_bytes,
1476 u64 parent, u64 root_objectid,
1477 u64 owner, u64 offset, int insert)
1478{
1479 struct btrfs_key key;
1480 struct extent_buffer *leaf;
1481 struct btrfs_extent_item *ei;
1482 struct btrfs_extent_inline_ref *iref;
1483 u64 flags;
1484 u64 item_size;
1485 unsigned long ptr;
1486 unsigned long end;
1487 int extra_size;
1488 int type;
1489 int want;
1490 int ret;
1491 int err = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05001492 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
1493 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001494
1495 key.objectid = bytenr;
1496 key.type = BTRFS_EXTENT_ITEM_KEY;
1497 key.offset = num_bytes;
1498
1499 want = extent_ref_type(parent, owner);
1500 if (insert) {
1501 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001502 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001503 } else
1504 extra_size = -1;
Josef Bacik3173a182013-03-07 14:22:04 -05001505
1506 /*
1507 * Owner is our parent level, so we can just add one to get the level
1508 * for the block we are interested in.
1509 */
1510 if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) {
1511 key.type = BTRFS_METADATA_ITEM_KEY;
1512 key.offset = owner;
1513 }
1514
1515again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001516 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1517 if (ret < 0) {
1518 err = ret;
1519 goto out;
1520 }
Josef Bacik3173a182013-03-07 14:22:04 -05001521
1522 /*
1523 * We may be a newly converted file system which still has the old fat
1524 * extent entries for metadata, so try and see if we have one of those.
1525 */
1526 if (ret > 0 && skinny_metadata) {
1527 skinny_metadata = false;
1528 if (path->slots[0]) {
1529 path->slots[0]--;
1530 btrfs_item_key_to_cpu(path->nodes[0], &key,
1531 path->slots[0]);
1532 if (key.objectid == bytenr &&
1533 key.type == BTRFS_EXTENT_ITEM_KEY &&
1534 key.offset == num_bytes)
1535 ret = 0;
1536 }
1537 if (ret) {
Filipe Manana9ce49a02014-04-24 15:15:28 +01001538 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05001539 key.type = BTRFS_EXTENT_ITEM_KEY;
1540 key.offset = num_bytes;
1541 btrfs_release_path(path);
1542 goto again;
1543 }
1544 }
1545
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001546 if (ret && !insert) {
1547 err = -ENOENT;
1548 goto out;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301549 } else if (WARN_ON(ret)) {
Josef Bacik492104c2013-03-08 15:41:02 -05001550 err = -EIO;
Josef Bacik492104c2013-03-08 15:41:02 -05001551 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001552 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001553
1554 leaf = path->nodes[0];
1555 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1556#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1557 if (item_size < sizeof(*ei)) {
1558 if (!insert) {
1559 err = -ENOENT;
1560 goto out;
1561 }
1562 ret = convert_extent_item_v0(trans, root, path, owner,
1563 extra_size);
1564 if (ret < 0) {
1565 err = ret;
1566 goto out;
1567 }
1568 leaf = path->nodes[0];
1569 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1570 }
1571#endif
1572 BUG_ON(item_size < sizeof(*ei));
1573
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001574 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1575 flags = btrfs_extent_flags(leaf, ei);
1576
1577 ptr = (unsigned long)(ei + 1);
1578 end = (unsigned long)ei + item_size;
1579
Josef Bacik3173a182013-03-07 14:22:04 -05001580 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001581 ptr += sizeof(struct btrfs_tree_block_info);
1582 BUG_ON(ptr > end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001583 }
1584
1585 err = -ENOENT;
1586 while (1) {
1587 if (ptr >= end) {
1588 WARN_ON(ptr > end);
1589 break;
1590 }
1591 iref = (struct btrfs_extent_inline_ref *)ptr;
1592 type = btrfs_extent_inline_ref_type(leaf, iref);
1593 if (want < type)
1594 break;
1595 if (want > type) {
1596 ptr += btrfs_extent_inline_ref_size(type);
1597 continue;
1598 }
1599
1600 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1601 struct btrfs_extent_data_ref *dref;
1602 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1603 if (match_extent_data_ref(leaf, dref, root_objectid,
1604 owner, offset)) {
1605 err = 0;
1606 break;
1607 }
1608 if (hash_extent_data_ref_item(leaf, dref) <
1609 hash_extent_data_ref(root_objectid, owner, offset))
1610 break;
1611 } else {
1612 u64 ref_offset;
1613 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1614 if (parent > 0) {
1615 if (parent == ref_offset) {
1616 err = 0;
1617 break;
1618 }
1619 if (ref_offset < parent)
1620 break;
1621 } else {
1622 if (root_objectid == ref_offset) {
1623 err = 0;
1624 break;
1625 }
1626 if (ref_offset < root_objectid)
1627 break;
1628 }
1629 }
1630 ptr += btrfs_extent_inline_ref_size(type);
1631 }
1632 if (err == -ENOENT && insert) {
1633 if (item_size + extra_size >=
1634 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1635 err = -EAGAIN;
1636 goto out;
1637 }
1638 /*
1639 * To add new inline back ref, we have to make sure
1640 * there is no corresponding back ref item.
1641 * For simplicity, we just do not add new inline back
1642 * ref if there is any kind of item for this block
1643 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001644 if (find_next_key(path, 0, &key) == 0 &&
1645 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001646 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001647 err = -EAGAIN;
1648 goto out;
1649 }
1650 }
1651 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1652out:
Yan Zheng85d41982009-06-11 08:51:10 -04001653 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001654 path->keep_locks = 0;
1655 btrfs_unlock_up_safe(path, 1);
1656 }
1657 return err;
1658}
1659
1660/*
1661 * helper to add new inline back ref
1662 */
1663static noinline_for_stack
Tsutomu Itohfd279fa2013-04-16 05:19:11 +00001664void setup_inline_extent_backref(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001665 struct btrfs_path *path,
1666 struct btrfs_extent_inline_ref *iref,
1667 u64 parent, u64 root_objectid,
1668 u64 owner, u64 offset, int refs_to_add,
1669 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001670{
1671 struct extent_buffer *leaf;
1672 struct btrfs_extent_item *ei;
1673 unsigned long ptr;
1674 unsigned long end;
1675 unsigned long item_offset;
1676 u64 refs;
1677 int size;
1678 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001679
1680 leaf = path->nodes[0];
1681 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1682 item_offset = (unsigned long)iref - (unsigned long)ei;
1683
1684 type = extent_ref_type(parent, owner);
1685 size = btrfs_extent_inline_ref_size(type);
1686
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00001687 btrfs_extend_item(root, path, size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001688
1689 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1690 refs = btrfs_extent_refs(leaf, ei);
1691 refs += refs_to_add;
1692 btrfs_set_extent_refs(leaf, ei, refs);
1693 if (extent_op)
1694 __run_delayed_extent_op(extent_op, leaf, ei);
1695
1696 ptr = (unsigned long)ei + item_offset;
1697 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1698 if (ptr < end - size)
1699 memmove_extent_buffer(leaf, ptr + size, ptr,
1700 end - size - ptr);
1701
1702 iref = (struct btrfs_extent_inline_ref *)ptr;
1703 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1704 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1705 struct btrfs_extent_data_ref *dref;
1706 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1707 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1708 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1709 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1710 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1711 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1712 struct btrfs_shared_data_ref *sref;
1713 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1714 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1715 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1716 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1717 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1718 } else {
1719 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1720 }
1721 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001722}
1723
1724static int lookup_extent_backref(struct btrfs_trans_handle *trans,
1725 struct btrfs_root *root,
1726 struct btrfs_path *path,
1727 struct btrfs_extent_inline_ref **ref_ret,
1728 u64 bytenr, u64 num_bytes, u64 parent,
1729 u64 root_objectid, u64 owner, u64 offset)
1730{
1731 int ret;
1732
1733 ret = lookup_inline_extent_backref(trans, root, path, ref_ret,
1734 bytenr, num_bytes, parent,
1735 root_objectid, owner, offset, 0);
1736 if (ret != -ENOENT)
1737 return ret;
1738
David Sterbab3b4aa72011-04-21 01:20:15 +02001739 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001740 *ref_ret = NULL;
1741
1742 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1743 ret = lookup_tree_block_ref(trans, root, path, bytenr, parent,
1744 root_objectid);
1745 } else {
1746 ret = lookup_extent_data_ref(trans, root, path, bytenr, parent,
1747 root_objectid, owner, offset);
1748 }
1749 return ret;
1750}
1751
1752/*
1753 * helper to update/remove inline back ref
1754 */
1755static noinline_for_stack
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001756void update_inline_extent_backref(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001757 struct btrfs_path *path,
1758 struct btrfs_extent_inline_ref *iref,
1759 int refs_to_mod,
Josef Bacikfcebe452014-05-13 17:30:47 -07001760 struct btrfs_delayed_extent_op *extent_op,
1761 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001762{
1763 struct extent_buffer *leaf;
1764 struct btrfs_extent_item *ei;
1765 struct btrfs_extent_data_ref *dref = NULL;
1766 struct btrfs_shared_data_ref *sref = NULL;
1767 unsigned long ptr;
1768 unsigned long end;
1769 u32 item_size;
1770 int size;
1771 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001772 u64 refs;
1773
1774 leaf = path->nodes[0];
1775 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1776 refs = btrfs_extent_refs(leaf, ei);
1777 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1778 refs += refs_to_mod;
1779 btrfs_set_extent_refs(leaf, ei, refs);
1780 if (extent_op)
1781 __run_delayed_extent_op(extent_op, leaf, ei);
1782
1783 type = btrfs_extent_inline_ref_type(leaf, iref);
1784
1785 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1786 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1787 refs = btrfs_extent_data_ref_count(leaf, dref);
1788 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1789 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1790 refs = btrfs_shared_data_ref_count(leaf, sref);
1791 } else {
1792 refs = 1;
1793 BUG_ON(refs_to_mod != -1);
1794 }
1795
1796 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1797 refs += refs_to_mod;
1798
1799 if (refs > 0) {
1800 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1801 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1802 else
1803 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1804 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001805 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001806 size = btrfs_extent_inline_ref_size(type);
1807 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1808 ptr = (unsigned long)iref;
1809 end = (unsigned long)ei + item_size;
1810 if (ptr + size < end)
1811 memmove_extent_buffer(leaf, ptr, ptr + size,
1812 end - ptr - size);
1813 item_size -= size;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001814 btrfs_truncate_item(root, path, item_size, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001815 }
1816 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001817}
1818
1819static noinline_for_stack
1820int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
1821 struct btrfs_root *root,
1822 struct btrfs_path *path,
1823 u64 bytenr, u64 num_bytes, u64 parent,
1824 u64 root_objectid, u64 owner,
1825 u64 offset, int refs_to_add,
1826 struct btrfs_delayed_extent_op *extent_op)
1827{
1828 struct btrfs_extent_inline_ref *iref;
1829 int ret;
1830
1831 ret = lookup_inline_extent_backref(trans, root, path, &iref,
1832 bytenr, num_bytes, parent,
1833 root_objectid, owner, offset, 1);
1834 if (ret == 0) {
1835 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001836 update_inline_extent_backref(root, path, iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001837 refs_to_add, extent_op, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001838 } else if (ret == -ENOENT) {
Tsutomu Itohfd279fa2013-04-16 05:19:11 +00001839 setup_inline_extent_backref(root, path, iref, parent,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001840 root_objectid, owner, offset,
1841 refs_to_add, extent_op);
1842 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001843 }
1844 return ret;
1845}
1846
1847static int insert_extent_backref(struct btrfs_trans_handle *trans,
1848 struct btrfs_root *root,
1849 struct btrfs_path *path,
1850 u64 bytenr, u64 parent, u64 root_objectid,
1851 u64 owner, u64 offset, int refs_to_add)
1852{
1853 int ret;
1854 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1855 BUG_ON(refs_to_add != 1);
1856 ret = insert_tree_block_ref(trans, root, path, bytenr,
1857 parent, root_objectid);
1858 } else {
1859 ret = insert_extent_data_ref(trans, root, path, bytenr,
1860 parent, root_objectid,
1861 owner, offset, refs_to_add);
1862 }
1863 return ret;
1864}
1865
1866static int remove_extent_backref(struct btrfs_trans_handle *trans,
1867 struct btrfs_root *root,
1868 struct btrfs_path *path,
1869 struct btrfs_extent_inline_ref *iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001870 int refs_to_drop, int is_data, int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001871{
Jeff Mahoney143bede2012-03-01 14:56:26 +01001872 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001873
1874 BUG_ON(!is_data && refs_to_drop != 1);
1875 if (iref) {
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001876 update_inline_extent_backref(root, path, iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001877 -refs_to_drop, NULL, last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001878 } else if (is_data) {
Josef Bacikfcebe452014-05-13 17:30:47 -07001879 ret = remove_extent_data_ref(trans, root, path, refs_to_drop,
1880 last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001881 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001882 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001883 ret = btrfs_del_item(trans, root, path);
1884 }
1885 return ret;
1886}
1887
Li Dongyang5378e602011-03-24 10:24:27 +00001888static int btrfs_issue_discard(struct block_device *bdev,
Chris Mason15916de2008-11-19 21:17:22 -05001889 u64 start, u64 len)
1890{
Li Dongyang5378e602011-03-24 10:24:27 +00001891 return blkdev_issue_discard(bdev, start >> 9, len >> 9, GFP_NOFS, 0);
Chris Mason15916de2008-11-19 21:17:22 -05001892}
Chris Mason15916de2008-11-19 21:17:22 -05001893
Liu Hui1f3c79a2009-01-05 15:57:51 -05001894static int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr,
Li Dongyang5378e602011-03-24 10:24:27 +00001895 u64 num_bytes, u64 *actual_bytes)
Liu Hui1f3c79a2009-01-05 15:57:51 -05001896{
Liu Hui1f3c79a2009-01-05 15:57:51 -05001897 int ret;
Li Dongyang5378e602011-03-24 10:24:27 +00001898 u64 discarded_bytes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02001899 struct btrfs_bio *bbio = NULL;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001900
Christoph Hellwige244a0a2009-10-14 09:24:59 -04001901
Liu Hui1f3c79a2009-01-05 15:57:51 -05001902 /* Tell the block device(s) that the sectors can be discarded */
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001903 ret = btrfs_map_block(root->fs_info, REQ_DISCARD,
Jan Schmidta1d3c472011-08-04 17:15:33 +02001904 bytenr, &num_bytes, &bbio, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001905 /* Error condition is -ENOMEM */
Liu Hui1f3c79a2009-01-05 15:57:51 -05001906 if (!ret) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02001907 struct btrfs_bio_stripe *stripe = bbio->stripes;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001908 int i;
1909
Liu Hui1f3c79a2009-01-05 15:57:51 -05001910
Jan Schmidta1d3c472011-08-04 17:15:33 +02001911 for (i = 0; i < bbio->num_stripes; i++, stripe++) {
Josef Bacikd5e20032011-08-04 14:52:27 +00001912 if (!stripe->dev->can_discard)
1913 continue;
1914
Li Dongyang5378e602011-03-24 10:24:27 +00001915 ret = btrfs_issue_discard(stripe->dev->bdev,
1916 stripe->physical,
1917 stripe->length);
1918 if (!ret)
1919 discarded_bytes += stripe->length;
1920 else if (ret != -EOPNOTSUPP)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001921 break; /* Logic errors or -ENOMEM, or -EIO but I don't know how that could happen JDM */
Josef Bacikd5e20032011-08-04 14:52:27 +00001922
1923 /*
1924 * Just in case we get back EOPNOTSUPP for some reason,
1925 * just ignore the return value so we don't screw up
1926 * people calling discard_extent.
1927 */
1928 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001929 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02001930 kfree(bbio);
Liu Hui1f3c79a2009-01-05 15:57:51 -05001931 }
Li Dongyang5378e602011-03-24 10:24:27 +00001932
1933 if (actual_bytes)
1934 *actual_bytes = discarded_bytes;
1935
Liu Hui1f3c79a2009-01-05 15:57:51 -05001936
David Woodhouse53b381b2013-01-29 18:40:14 -05001937 if (ret == -EOPNOTSUPP)
1938 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001939 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001940}
1941
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001942/* Can return -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001943int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1944 struct btrfs_root *root,
1945 u64 bytenr, u64 num_bytes, u64 parent,
Josef Bacikfcebe452014-05-13 17:30:47 -07001946 u64 root_objectid, u64 owner, u64 offset,
1947 int no_quota)
Zheng Yan31840ae2008-09-23 13:14:14 -04001948{
1949 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001950 struct btrfs_fs_info *fs_info = root->fs_info;
1951
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001952 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
1953 root_objectid == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04001954
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001955 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001956 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
1957 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001958 parent, root_objectid, (int)owner,
Josef Bacikfcebe452014-05-13 17:30:47 -07001959 BTRFS_ADD_DELAYED_REF, NULL, no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001960 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001961 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
1962 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001963 parent, root_objectid, owner, offset,
Josef Bacikfcebe452014-05-13 17:30:47 -07001964 BTRFS_ADD_DELAYED_REF, NULL, no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001965 }
Zheng Yan31840ae2008-09-23 13:14:14 -04001966 return ret;
1967}
1968
Chris Mason925baed2008-06-25 16:01:30 -04001969static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001970 struct btrfs_root *root,
1971 u64 bytenr, u64 num_bytes,
1972 u64 parent, u64 root_objectid,
1973 u64 owner, u64 offset, int refs_to_add,
Josef Bacikfcebe452014-05-13 17:30:47 -07001974 int no_quota,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001975 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04001976{
Josef Bacikfcebe452014-05-13 17:30:47 -07001977 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5caf2a02007-04-02 11:20:42 -04001978 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001979 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04001980 struct btrfs_extent_item *item;
Josef Bacikfcebe452014-05-13 17:30:47 -07001981 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001982 u64 refs;
1983 int ret;
Josef Bacikfcebe452014-05-13 17:30:47 -07001984 enum btrfs_qgroup_operation_type type = BTRFS_QGROUP_OPER_ADD_EXCL;
Chris Mason037e6392007-03-07 11:50:24 -05001985
Chris Mason5caf2a02007-04-02 11:20:42 -04001986 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001987 if (!path)
1988 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04001989
Josef Bacikfcebe452014-05-13 17:30:47 -07001990 if (!is_fstree(root_objectid) || !root->fs_info->quota_enabled)
1991 no_quota = 1;
1992
Chris Mason3c12ac72008-04-21 12:01:38 -04001993 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04001994 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001995 /* this will setup the path even if it fails to insert the back ref */
Josef Bacikfcebe452014-05-13 17:30:47 -07001996 ret = insert_inline_extent_backref(trans, fs_info->extent_root, path,
1997 bytenr, num_bytes, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001998 root_objectid, owner, offset,
1999 refs_to_add, extent_op);
Josef Bacikfcebe452014-05-13 17:30:47 -07002000 if ((ret < 0 && ret != -EAGAIN) || (!ret && no_quota))
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002001 goto out;
Josef Bacikfcebe452014-05-13 17:30:47 -07002002 /*
2003 * Ok we were able to insert an inline extent and it appears to be a new
2004 * reference, deal with the qgroup accounting.
2005 */
2006 if (!ret && !no_quota) {
2007 ASSERT(root->fs_info->quota_enabled);
2008 leaf = path->nodes[0];
2009 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2010 item = btrfs_item_ptr(leaf, path->slots[0],
2011 struct btrfs_extent_item);
2012 if (btrfs_extent_refs(leaf, item) > (u64)refs_to_add)
2013 type = BTRFS_QGROUP_OPER_ADD_SHARED;
2014 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04002015
Josef Bacikfcebe452014-05-13 17:30:47 -07002016 ret = btrfs_qgroup_record_ref(trans, fs_info, root_objectid,
2017 bytenr, num_bytes, type, 0);
2018 goto out;
2019 }
2020
2021 /*
2022 * Ok we had -EAGAIN which means we didn't have space to insert and
2023 * inline extent ref, so just update the reference count and add a
2024 * normal backref.
2025 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002026 leaf = path->nodes[0];
Josef Bacikfcebe452014-05-13 17:30:47 -07002027 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002028 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2029 refs = btrfs_extent_refs(leaf, item);
Josef Bacikfcebe452014-05-13 17:30:47 -07002030 if (refs)
2031 type = BTRFS_QGROUP_OPER_ADD_SHARED;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002032 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
2033 if (extent_op)
2034 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04002035
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002036 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002037 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05002038
Josef Bacikfcebe452014-05-13 17:30:47 -07002039 if (!no_quota) {
2040 ret = btrfs_qgroup_record_ref(trans, fs_info, root_objectid,
2041 bytenr, num_bytes, type, 0);
2042 if (ret)
2043 goto out;
2044 }
2045
Chris Mason3c12ac72008-04-21 12:01:38 -04002046 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04002047 path->leave_spinning = 1;
Chris Mason56bec292009-03-13 10:10:06 -04002048 /* now insert the actual backref */
Zheng Yan31840ae2008-09-23 13:14:14 -04002049 ret = insert_extent_backref(trans, root->fs_info->extent_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002050 path, bytenr, parent, root_objectid,
2051 owner, offset, refs_to_add);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002052 if (ret)
2053 btrfs_abort_transaction(trans, root, ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002054out:
Chris Mason74493f72007-12-11 09:25:06 -05002055 btrfs_free_path(path);
Liu Bo30d133f2013-10-11 16:30:23 +08002056 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002057}
2058
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002059static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
2060 struct btrfs_root *root,
2061 struct btrfs_delayed_ref_node *node,
2062 struct btrfs_delayed_extent_op *extent_op,
2063 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04002064{
Chris Mason56bec292009-03-13 10:10:06 -04002065 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002066 struct btrfs_delayed_data_ref *ref;
2067 struct btrfs_key ins;
2068 u64 parent = 0;
2069 u64 ref_root = 0;
2070 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002071
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002072 ins.objectid = node->bytenr;
2073 ins.offset = node->num_bytes;
2074 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04002075
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002076 ref = btrfs_delayed_node_to_data_ref(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002077 trace_run_delayed_data_ref(node, ref, node->action);
2078
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002079 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
2080 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002081 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002082
2083 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002084 if (extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002085 flags |= extent_op->flags_to_set;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002086 ret = alloc_reserved_file_extent(trans, root,
2087 parent, ref_root, flags,
2088 ref->objectid, ref->offset,
2089 &ins, node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002090 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
2091 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
2092 node->num_bytes, parent,
2093 ref_root, ref->objectid,
2094 ref->offset, node->ref_mod,
Josef Bacikfcebe452014-05-13 17:30:47 -07002095 node->no_quota, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002096 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
2097 ret = __btrfs_free_extent(trans, root, node->bytenr,
2098 node->num_bytes, parent,
2099 ref_root, ref->objectid,
2100 ref->offset, node->ref_mod,
Josef Bacikfcebe452014-05-13 17:30:47 -07002101 extent_op, node->no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002102 } else {
2103 BUG();
2104 }
Chris Mason56bec292009-03-13 10:10:06 -04002105 return ret;
2106}
2107
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002108static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
2109 struct extent_buffer *leaf,
2110 struct btrfs_extent_item *ei)
2111{
2112 u64 flags = btrfs_extent_flags(leaf, ei);
2113 if (extent_op->update_flags) {
2114 flags |= extent_op->flags_to_set;
2115 btrfs_set_extent_flags(leaf, ei, flags);
2116 }
2117
2118 if (extent_op->update_key) {
2119 struct btrfs_tree_block_info *bi;
2120 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
2121 bi = (struct btrfs_tree_block_info *)(ei + 1);
2122 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
2123 }
2124}
2125
2126static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
2127 struct btrfs_root *root,
2128 struct btrfs_delayed_ref_node *node,
2129 struct btrfs_delayed_extent_op *extent_op)
2130{
2131 struct btrfs_key key;
2132 struct btrfs_path *path;
2133 struct btrfs_extent_item *ei;
2134 struct extent_buffer *leaf;
2135 u32 item_size;
2136 int ret;
2137 int err = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002138 int metadata = !extent_op->is_data;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002139
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002140 if (trans->aborted)
2141 return 0;
2142
Josef Bacik3173a182013-03-07 14:22:04 -05002143 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2144 metadata = 0;
2145
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002146 path = btrfs_alloc_path();
2147 if (!path)
2148 return -ENOMEM;
2149
2150 key.objectid = node->bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002151
Josef Bacik3173a182013-03-07 14:22:04 -05002152 if (metadata) {
Josef Bacik3173a182013-03-07 14:22:04 -05002153 key.type = BTRFS_METADATA_ITEM_KEY;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002154 key.offset = extent_op->level;
Josef Bacik3173a182013-03-07 14:22:04 -05002155 } else {
2156 key.type = BTRFS_EXTENT_ITEM_KEY;
2157 key.offset = node->num_bytes;
2158 }
2159
2160again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002161 path->reada = 1;
2162 path->leave_spinning = 1;
2163 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key,
2164 path, 0, 1);
2165 if (ret < 0) {
2166 err = ret;
2167 goto out;
2168 }
2169 if (ret > 0) {
Josef Bacik3173a182013-03-07 14:22:04 -05002170 if (metadata) {
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002171 if (path->slots[0] > 0) {
2172 path->slots[0]--;
2173 btrfs_item_key_to_cpu(path->nodes[0], &key,
2174 path->slots[0]);
2175 if (key.objectid == node->bytenr &&
2176 key.type == BTRFS_EXTENT_ITEM_KEY &&
2177 key.offset == node->num_bytes)
2178 ret = 0;
2179 }
2180 if (ret > 0) {
2181 btrfs_release_path(path);
2182 metadata = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002183
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002184 key.objectid = node->bytenr;
2185 key.offset = node->num_bytes;
2186 key.type = BTRFS_EXTENT_ITEM_KEY;
2187 goto again;
2188 }
2189 } else {
2190 err = -EIO;
2191 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05002192 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002193 }
2194
2195 leaf = path->nodes[0];
2196 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2197#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2198 if (item_size < sizeof(*ei)) {
2199 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
2200 path, (u64)-1, 0);
2201 if (ret < 0) {
2202 err = ret;
2203 goto out;
2204 }
2205 leaf = path->nodes[0];
2206 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2207 }
2208#endif
2209 BUG_ON(item_size < sizeof(*ei));
2210 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2211 __run_delayed_extent_op(extent_op, leaf, ei);
2212
2213 btrfs_mark_buffer_dirty(leaf);
2214out:
2215 btrfs_free_path(path);
2216 return err;
2217}
2218
2219static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
2220 struct btrfs_root *root,
2221 struct btrfs_delayed_ref_node *node,
2222 struct btrfs_delayed_extent_op *extent_op,
2223 int insert_reserved)
2224{
2225 int ret = 0;
2226 struct btrfs_delayed_tree_ref *ref;
2227 struct btrfs_key ins;
2228 u64 parent = 0;
2229 u64 ref_root = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002230 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
2231 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002232
2233 ref = btrfs_delayed_node_to_tree_ref(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002234 trace_run_delayed_tree_ref(node, ref, node->action);
2235
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002236 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2237 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002238 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002239
Josef Bacik3173a182013-03-07 14:22:04 -05002240 ins.objectid = node->bytenr;
2241 if (skinny_metadata) {
2242 ins.offset = ref->level;
2243 ins.type = BTRFS_METADATA_ITEM_KEY;
2244 } else {
2245 ins.offset = node->num_bytes;
2246 ins.type = BTRFS_EXTENT_ITEM_KEY;
2247 }
2248
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002249 BUG_ON(node->ref_mod != 1);
2250 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002251 BUG_ON(!extent_op || !extent_op->update_flags);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002252 ret = alloc_reserved_tree_block(trans, root,
2253 parent, ref_root,
2254 extent_op->flags_to_set,
2255 &extent_op->key,
Josef Bacikfcebe452014-05-13 17:30:47 -07002256 ref->level, &ins,
2257 node->no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002258 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
2259 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
2260 node->num_bytes, parent, ref_root,
Josef Bacikfcebe452014-05-13 17:30:47 -07002261 ref->level, 0, 1, node->no_quota,
2262 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002263 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
2264 ret = __btrfs_free_extent(trans, root, node->bytenr,
2265 node->num_bytes, parent, ref_root,
Josef Bacikfcebe452014-05-13 17:30:47 -07002266 ref->level, 0, 1, extent_op,
2267 node->no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002268 } else {
2269 BUG();
2270 }
2271 return ret;
2272}
2273
Chris Mason56bec292009-03-13 10:10:06 -04002274/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002275static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
2276 struct btrfs_root *root,
2277 struct btrfs_delayed_ref_node *node,
2278 struct btrfs_delayed_extent_op *extent_op,
2279 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002280{
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002281 int ret = 0;
2282
Josef Bacik857cc2f2013-10-07 15:21:08 -04002283 if (trans->aborted) {
2284 if (insert_reserved)
2285 btrfs_pin_extent(root, node->bytenr,
2286 node->num_bytes, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002287 return 0;
Josef Bacik857cc2f2013-10-07 15:21:08 -04002288 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002289
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002290 if (btrfs_delayed_ref_is_head(node)) {
Chris Mason56bec292009-03-13 10:10:06 -04002291 struct btrfs_delayed_ref_head *head;
2292 /*
2293 * we've hit the end of the chain and we were supposed
2294 * to insert this extent into the tree. But, it got
2295 * deleted before we ever needed to insert it, so all
2296 * we have to do is clean up the accounting
2297 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002298 BUG_ON(extent_op);
2299 head = btrfs_delayed_node_to_head(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002300 trace_run_delayed_ref_head(node, head, node->action);
2301
Chris Mason56bec292009-03-13 10:10:06 -04002302 if (insert_reserved) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04002303 btrfs_pin_extent(root, node->bytenr,
2304 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002305 if (head->is_data) {
2306 ret = btrfs_del_csums(trans, root,
2307 node->bytenr,
2308 node->num_bytes);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002309 }
Chris Mason56bec292009-03-13 10:10:06 -04002310 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002311 return ret;
Chris Mason56bec292009-03-13 10:10:06 -04002312 }
Josef Bacikeb099672009-02-12 09:27:38 -05002313
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002314 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2315 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2316 ret = run_delayed_tree_ref(trans, root, node, extent_op,
2317 insert_reserved);
2318 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2319 node->type == BTRFS_SHARED_DATA_REF_KEY)
2320 ret = run_delayed_data_ref(trans, root, node, extent_op,
2321 insert_reserved);
2322 else
2323 BUG();
2324 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002325}
2326
Chris Mason56bec292009-03-13 10:10:06 -04002327static noinline struct btrfs_delayed_ref_node *
2328select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002329{
Chris Mason56bec292009-03-13 10:10:06 -04002330 struct rb_node *node;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002331 struct btrfs_delayed_ref_node *ref, *last = NULL;;
2332
Chris Mason56bec292009-03-13 10:10:06 -04002333 /*
2334 * select delayed ref of type BTRFS_ADD_DELAYED_REF first.
2335 * this prevents ref count from going down to zero when
2336 * there still are pending delayed ref.
2337 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002338 node = rb_first(&head->ref_root);
2339 while (node) {
Chris Mason56bec292009-03-13 10:10:06 -04002340 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2341 rb_node);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002342 if (ref->action == BTRFS_ADD_DELAYED_REF)
Chris Mason56bec292009-03-13 10:10:06 -04002343 return ref;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002344 else if (last == NULL)
2345 last = ref;
2346 node = rb_next(node);
Chris Mason5f39d392007-10-15 16:14:19 -04002347 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002348 return last;
Chris Mason56bec292009-03-13 10:10:06 -04002349}
2350
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002351/*
2352 * Returns 0 on success or if called with an already aborted transaction.
2353 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2354 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002355static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2356 struct btrfs_root *root,
2357 unsigned long nr)
Chris Mason56bec292009-03-13 10:10:06 -04002358{
Chris Mason56bec292009-03-13 10:10:06 -04002359 struct btrfs_delayed_ref_root *delayed_refs;
2360 struct btrfs_delayed_ref_node *ref;
2361 struct btrfs_delayed_ref_head *locked_ref = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002362 struct btrfs_delayed_extent_op *extent_op;
Jan Schmidt097b8a72012-06-21 11:08:04 +02002363 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002364 ktime_t start = ktime_get();
Chris Mason56bec292009-03-13 10:10:06 -04002365 int ret;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002366 unsigned long count = 0;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002367 unsigned long actual_count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002368 int must_insert_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002369
2370 delayed_refs = &trans->transaction->delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002371 while (1) {
2372 if (!locked_ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002373 if (count >= nr)
Chris Mason56bec292009-03-13 10:10:06 -04002374 break;
Chris Mason56bec292009-03-13 10:10:06 -04002375
Josef Bacikd7df2c72014-01-23 09:21:38 -05002376 spin_lock(&delayed_refs->lock);
2377 locked_ref = btrfs_select_ref_head(trans);
2378 if (!locked_ref) {
2379 spin_unlock(&delayed_refs->lock);
2380 break;
2381 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002382
2383 /* grab the lock that says we are going to process
2384 * all the refs for this head */
2385 ret = btrfs_delayed_ref_lock(trans, locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002386 spin_unlock(&delayed_refs->lock);
Chris Masonc3e69d52009-03-13 10:17:05 -04002387 /*
2388 * we may have dropped the spin lock to get the head
2389 * mutex lock, and that might have given someone else
2390 * time to free the head. If that's true, it has been
2391 * removed from our list and we can move on.
2392 */
2393 if (ret == -EAGAIN) {
2394 locked_ref = NULL;
2395 count++;
2396 continue;
Chris Mason56bec292009-03-13 10:10:06 -04002397 }
2398 }
2399
2400 /*
Josef Bacikae1e2062012-08-07 16:00:32 -04002401 * We need to try and merge add/drops of the same ref since we
2402 * can run into issues with relocate dropping the implicit ref
2403 * and then it being added back again before the drop can
2404 * finish. If we merged anything we need to re-loop so we can
2405 * get a good ref.
2406 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002407 spin_lock(&locked_ref->lock);
Josef Bacikae1e2062012-08-07 16:00:32 -04002408 btrfs_merge_delayed_refs(trans, fs_info, delayed_refs,
2409 locked_ref);
2410
2411 /*
Arne Jansend1270cd2011-09-13 15:16:43 +02002412 * locked_ref is the head node, so we have to go one
2413 * node back for any delayed ref updates
2414 */
2415 ref = select_delayed_ref(locked_ref);
2416
2417 if (ref && ref->seq &&
Jan Schmidt097b8a72012-06-21 11:08:04 +02002418 btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002419 spin_unlock(&locked_ref->lock);
Miao Xie093486c2012-12-19 08:10:10 +00002420 btrfs_delayed_ref_unlock(locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002421 spin_lock(&delayed_refs->lock);
2422 locked_ref->processing = 0;
Arne Jansend1270cd2011-09-13 15:16:43 +02002423 delayed_refs->num_heads_ready++;
2424 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002425 locked_ref = NULL;
Arne Jansend1270cd2011-09-13 15:16:43 +02002426 cond_resched();
Josef Bacik27a377d2014-02-07 13:57:59 -05002427 count++;
Arne Jansend1270cd2011-09-13 15:16:43 +02002428 continue;
2429 }
2430
2431 /*
Chris Mason56bec292009-03-13 10:10:06 -04002432 * record the must insert reserved flag before we
2433 * drop the spin lock.
2434 */
2435 must_insert_reserved = locked_ref->must_insert_reserved;
2436 locked_ref->must_insert_reserved = 0;
2437
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002438 extent_op = locked_ref->extent_op;
2439 locked_ref->extent_op = NULL;
2440
Chris Mason56bec292009-03-13 10:10:06 -04002441 if (!ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002442
2443
Chris Mason56bec292009-03-13 10:10:06 -04002444 /* All delayed refs have been processed, Go ahead
2445 * and send the head node to run_one_delayed_ref,
2446 * so that any accounting fixes can happen
2447 */
2448 ref = &locked_ref->node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002449
2450 if (extent_op && must_insert_reserved) {
Miao Xie78a61842012-11-21 02:21:28 +00002451 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002452 extent_op = NULL;
2453 }
2454
2455 if (extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002456 spin_unlock(&locked_ref->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002457 ret = run_delayed_extent_op(trans, root,
2458 ref, extent_op);
Miao Xie78a61842012-11-21 02:21:28 +00002459 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002460
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002461 if (ret) {
Josef Bacik857cc2f2013-10-07 15:21:08 -04002462 /*
2463 * Need to reset must_insert_reserved if
2464 * there was an error so the abort stuff
2465 * can cleanup the reserved space
2466 * properly.
2467 */
2468 if (must_insert_reserved)
2469 locked_ref->must_insert_reserved = 1;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002470 locked_ref->processing = 0;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002471 btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret);
Miao Xie093486c2012-12-19 08:10:10 +00002472 btrfs_delayed_ref_unlock(locked_ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002473 return ret;
2474 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002475 continue;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002476 }
Chris Mason56bec292009-03-13 10:10:06 -04002477
Josef Bacikd7df2c72014-01-23 09:21:38 -05002478 /*
2479 * Need to drop our head ref lock and re-aqcuire the
2480 * delayed ref lock and then re-check to make sure
2481 * nobody got added.
2482 */
2483 spin_unlock(&locked_ref->lock);
2484 spin_lock(&delayed_refs->lock);
2485 spin_lock(&locked_ref->lock);
Josef Bacik573a0752014-03-27 19:41:34 -04002486 if (rb_first(&locked_ref->ref_root) ||
2487 locked_ref->extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002488 spin_unlock(&locked_ref->lock);
2489 spin_unlock(&delayed_refs->lock);
2490 continue;
2491 }
2492 ref->in_tree = 0;
2493 delayed_refs->num_heads--;
Liu Boc46effa2013-10-14 12:59:45 +08002494 rb_erase(&locked_ref->href_node,
2495 &delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002496 spin_unlock(&delayed_refs->lock);
2497 } else {
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002498 actual_count++;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002499 ref->in_tree = 0;
2500 rb_erase(&ref->rb_node, &locked_ref->ref_root);
Liu Boc46effa2013-10-14 12:59:45 +08002501 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002502 atomic_dec(&delayed_refs->num_entries);
2503
Miao Xie093486c2012-12-19 08:10:10 +00002504 if (!btrfs_delayed_ref_is_head(ref)) {
Arne Jansen22cd2e72012-08-09 00:16:53 -06002505 /*
2506 * when we play the delayed ref, also correct the
2507 * ref_mod on head
2508 */
2509 switch (ref->action) {
2510 case BTRFS_ADD_DELAYED_REF:
2511 case BTRFS_ADD_DELAYED_EXTENT:
2512 locked_ref->node.ref_mod -= ref->ref_mod;
2513 break;
2514 case BTRFS_DROP_DELAYED_REF:
2515 locked_ref->node.ref_mod += ref->ref_mod;
2516 break;
2517 default:
2518 WARN_ON(1);
2519 }
2520 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002521 spin_unlock(&locked_ref->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002522
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002523 ret = run_one_delayed_ref(trans, root, ref, extent_op,
Chris Mason56bec292009-03-13 10:10:06 -04002524 must_insert_reserved);
Chris Mason56bec292009-03-13 10:10:06 -04002525
Miao Xie78a61842012-11-21 02:21:28 +00002526 btrfs_free_delayed_extent_op(extent_op);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002527 if (ret) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002528 locked_ref->processing = 0;
Miao Xie093486c2012-12-19 08:10:10 +00002529 btrfs_delayed_ref_unlock(locked_ref);
2530 btrfs_put_delayed_ref(ref);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002531 btrfs_debug(fs_info, "run_one_delayed_ref returned %d", ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002532 return ret;
2533 }
2534
Miao Xie093486c2012-12-19 08:10:10 +00002535 /*
2536 * If this node is a head, that means all the refs in this head
2537 * have been dealt with, and we will pick the next head to deal
2538 * with, so we must unlock the head and drop it from the cluster
2539 * list before we release it.
2540 */
2541 if (btrfs_delayed_ref_is_head(ref)) {
Miao Xie093486c2012-12-19 08:10:10 +00002542 btrfs_delayed_ref_unlock(locked_ref);
2543 locked_ref = NULL;
2544 }
2545 btrfs_put_delayed_ref(ref);
2546 count++;
Chris Mason1887be62009-03-13 10:11:24 -04002547 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002548 }
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002549
2550 /*
2551 * We don't want to include ref heads since we can have empty ref heads
2552 * and those will drastically skew our runtime down since we just do
2553 * accounting, no actual extent tree updates.
2554 */
2555 if (actual_count > 0) {
2556 u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start));
2557 u64 avg;
2558
2559 /*
2560 * We weigh the current average higher than our current runtime
2561 * to avoid large swings in the average.
2562 */
2563 spin_lock(&delayed_refs->lock);
2564 avg = fs_info->avg_delayed_ref_runtime * 3 + runtime;
2565 avg = div64_u64(avg, 4);
2566 fs_info->avg_delayed_ref_runtime = avg;
2567 spin_unlock(&delayed_refs->lock);
2568 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002569 return 0;
Chris Masonc3e69d52009-03-13 10:17:05 -04002570}
2571
Arne Jansen709c0482011-09-12 12:22:57 +02002572#ifdef SCRAMBLE_DELAYED_REFS
2573/*
2574 * Normally delayed refs get processed in ascending bytenr order. This
2575 * correlates in most cases to the order added. To expose dependencies on this
2576 * order, we start to process the tree in the middle instead of the beginning
2577 */
2578static u64 find_middle(struct rb_root *root)
2579{
2580 struct rb_node *n = root->rb_node;
2581 struct btrfs_delayed_ref_node *entry;
2582 int alt = 1;
2583 u64 middle;
2584 u64 first = 0, last = 0;
2585
2586 n = rb_first(root);
2587 if (n) {
2588 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2589 first = entry->bytenr;
2590 }
2591 n = rb_last(root);
2592 if (n) {
2593 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2594 last = entry->bytenr;
2595 }
2596 n = root->rb_node;
2597
2598 while (n) {
2599 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2600 WARN_ON(!entry->in_tree);
2601
2602 middle = entry->bytenr;
2603
2604 if (alt)
2605 n = n->rb_left;
2606 else
2607 n = n->rb_right;
2608
2609 alt = 1 - alt;
2610 }
2611 return middle;
2612}
2613#endif
2614
Josef Bacik1be41b72013-06-12 13:56:06 -04002615static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads)
2616{
2617 u64 num_bytes;
2618
2619 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2620 sizeof(struct btrfs_extent_inline_ref));
2621 if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2622 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2623
2624 /*
2625 * We don't ever fill up leaves all the way so multiply by 2 just to be
2626 * closer to what we're really going to want to ouse.
2627 */
2628 return div64_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root));
2629}
2630
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002631int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans,
Josef Bacik1be41b72013-06-12 13:56:06 -04002632 struct btrfs_root *root)
2633{
2634 struct btrfs_block_rsv *global_rsv;
2635 u64 num_heads = trans->transaction->delayed_refs.num_heads_ready;
2636 u64 num_bytes;
2637 int ret = 0;
2638
2639 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
2640 num_heads = heads_to_leaves(root, num_heads);
2641 if (num_heads > 1)
David Sterba707e8a02014-06-04 19:22:26 +02002642 num_bytes += (num_heads - 1) * root->nodesize;
Josef Bacik1be41b72013-06-12 13:56:06 -04002643 num_bytes <<= 1;
2644 global_rsv = &root->fs_info->global_block_rsv;
2645
2646 /*
2647 * If we can't allocate any more chunks lets make sure we have _lots_ of
2648 * wiggle room since running delayed refs can create more delayed refs.
2649 */
2650 if (global_rsv->space_info->full)
2651 num_bytes <<= 1;
2652
2653 spin_lock(&global_rsv->lock);
2654 if (global_rsv->reserved <= num_bytes)
2655 ret = 1;
2656 spin_unlock(&global_rsv->lock);
2657 return ret;
2658}
2659
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002660int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans,
2661 struct btrfs_root *root)
2662{
2663 struct btrfs_fs_info *fs_info = root->fs_info;
2664 u64 num_entries =
2665 atomic_read(&trans->transaction->delayed_refs.num_entries);
2666 u64 avg_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002667 u64 val;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002668
2669 smp_mb();
2670 avg_runtime = fs_info->avg_delayed_ref_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002671 val = num_entries * avg_runtime;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002672 if (num_entries * avg_runtime >= NSEC_PER_SEC)
2673 return 1;
Chris Masona79b7d42014-05-22 16:18:52 -07002674 if (val >= NSEC_PER_SEC / 2)
2675 return 2;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002676
2677 return btrfs_check_space_for_delayed_refs(trans, root);
2678}
2679
Chris Masona79b7d42014-05-22 16:18:52 -07002680struct async_delayed_refs {
2681 struct btrfs_root *root;
2682 int count;
2683 int error;
2684 int sync;
2685 struct completion wait;
2686 struct btrfs_work work;
2687};
2688
2689static void delayed_ref_async_start(struct btrfs_work *work)
2690{
2691 struct async_delayed_refs *async;
2692 struct btrfs_trans_handle *trans;
2693 int ret;
2694
2695 async = container_of(work, struct async_delayed_refs, work);
2696
2697 trans = btrfs_join_transaction(async->root);
2698 if (IS_ERR(trans)) {
2699 async->error = PTR_ERR(trans);
2700 goto done;
2701 }
2702
2703 /*
2704 * trans->sync means that when we call end_transaciton, we won't
2705 * wait on delayed refs
2706 */
2707 trans->sync = true;
2708 ret = btrfs_run_delayed_refs(trans, async->root, async->count);
2709 if (ret)
2710 async->error = ret;
2711
2712 ret = btrfs_end_transaction(trans, async->root);
2713 if (ret && !async->error)
2714 async->error = ret;
2715done:
2716 if (async->sync)
2717 complete(&async->wait);
2718 else
2719 kfree(async);
2720}
2721
2722int btrfs_async_run_delayed_refs(struct btrfs_root *root,
2723 unsigned long count, int wait)
2724{
2725 struct async_delayed_refs *async;
2726 int ret;
2727
2728 async = kmalloc(sizeof(*async), GFP_NOFS);
2729 if (!async)
2730 return -ENOMEM;
2731
2732 async->root = root->fs_info->tree_root;
2733 async->count = count;
2734 async->error = 0;
2735 if (wait)
2736 async->sync = 1;
2737 else
2738 async->sync = 0;
2739 init_completion(&async->wait);
2740
Liu Bo9e0af232014-08-15 23:36:53 +08002741 btrfs_init_work(&async->work, btrfs_extent_refs_helper,
2742 delayed_ref_async_start, NULL, NULL);
Chris Masona79b7d42014-05-22 16:18:52 -07002743
2744 btrfs_queue_work(root->fs_info->extent_workers, &async->work);
2745
2746 if (wait) {
2747 wait_for_completion(&async->wait);
2748 ret = async->error;
2749 kfree(async);
2750 return ret;
2751 }
2752 return 0;
2753}
2754
Chris Masonc3e69d52009-03-13 10:17:05 -04002755/*
2756 * this starts processing the delayed reference count updates and
2757 * extent insertions we have queued up so far. count can be
2758 * 0, which means to process everything in the tree at the start
2759 * of the run (but not newly added entries), or it can be some target
2760 * number you'd like to process.
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002761 *
2762 * Returns 0 on success or if called with an aborted transaction
2763 * Returns <0 on error and aborts the transaction
Chris Masonc3e69d52009-03-13 10:17:05 -04002764 */
2765int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2766 struct btrfs_root *root, unsigned long count)
2767{
2768 struct rb_node *node;
2769 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boc46effa2013-10-14 12:59:45 +08002770 struct btrfs_delayed_ref_head *head;
Chris Masonc3e69d52009-03-13 10:17:05 -04002771 int ret;
2772 int run_all = count == (unsigned long)-1;
2773 int run_most = 0;
2774
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002775 /* We'll clean this up in btrfs_cleanup_transaction */
2776 if (trans->aborted)
2777 return 0;
2778
Chris Masonc3e69d52009-03-13 10:17:05 -04002779 if (root == root->fs_info->extent_root)
2780 root = root->fs_info->tree_root;
2781
2782 delayed_refs = &trans->transaction->delayed_refs;
Chris Masonbb721702013-01-29 18:44:12 -05002783 if (count == 0) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002784 count = atomic_read(&delayed_refs->num_entries) * 2;
Chris Masonbb721702013-01-29 18:44:12 -05002785 run_most = 1;
2786 }
2787
Chris Masonc3e69d52009-03-13 10:17:05 -04002788again:
Arne Jansen709c0482011-09-12 12:22:57 +02002789#ifdef SCRAMBLE_DELAYED_REFS
2790 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
2791#endif
Josef Bacikd7df2c72014-01-23 09:21:38 -05002792 ret = __btrfs_run_delayed_refs(trans, root, count);
2793 if (ret < 0) {
2794 btrfs_abort_transaction(trans, root, ret);
2795 return ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04002796 }
2797
Chris Mason56bec292009-03-13 10:10:06 -04002798 if (run_all) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002799 if (!list_empty(&trans->new_bgs))
Josef Bacikea658ba2012-09-11 16:57:25 -04002800 btrfs_create_pending_block_groups(trans, root);
Josef Bacikea658ba2012-09-11 16:57:25 -04002801
Josef Bacikd7df2c72014-01-23 09:21:38 -05002802 spin_lock(&delayed_refs->lock);
Liu Boc46effa2013-10-14 12:59:45 +08002803 node = rb_first(&delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002804 if (!node) {
2805 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002806 goto out;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002807 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002808 count = (unsigned long)-1;
Chris Mason56bec292009-03-13 10:10:06 -04002809
2810 while (node) {
Liu Boc46effa2013-10-14 12:59:45 +08002811 head = rb_entry(node, struct btrfs_delayed_ref_head,
2812 href_node);
2813 if (btrfs_delayed_ref_is_head(&head->node)) {
2814 struct btrfs_delayed_ref_node *ref;
Chris Mason56bec292009-03-13 10:10:06 -04002815
Liu Boc46effa2013-10-14 12:59:45 +08002816 ref = &head->node;
Chris Mason56bec292009-03-13 10:10:06 -04002817 atomic_inc(&ref->refs);
2818
2819 spin_unlock(&delayed_refs->lock);
David Sterba8cc33e52011-05-02 15:29:25 +02002820 /*
2821 * Mutex was contended, block until it's
2822 * released and try again
2823 */
Chris Mason56bec292009-03-13 10:10:06 -04002824 mutex_lock(&head->mutex);
2825 mutex_unlock(&head->mutex);
2826
2827 btrfs_put_delayed_ref(ref);
Chris Mason1887be62009-03-13 10:11:24 -04002828 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002829 goto again;
Liu Boc46effa2013-10-14 12:59:45 +08002830 } else {
2831 WARN_ON(1);
Chris Mason56bec292009-03-13 10:10:06 -04002832 }
2833 node = rb_next(node);
2834 }
2835 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002836 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002837 goto again;
2838 }
Chris Mason54aa1f42007-06-22 14:16:25 -04002839out:
Josef Bacikfcebe452014-05-13 17:30:47 -07002840 ret = btrfs_delayed_qgroup_accounting(trans, root->fs_info);
2841 if (ret)
2842 return ret;
Jan Schmidtedf39272012-06-28 18:04:55 +02002843 assert_qgroups_uptodate(trans);
Chris Masona28ec192007-03-06 20:08:01 -05002844 return 0;
2845}
2846
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002847int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
2848 struct btrfs_root *root,
2849 u64 bytenr, u64 num_bytes, u64 flags,
Josef Bacikb1c79e02013-05-09 13:49:30 -04002850 int level, int is_data)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002851{
2852 struct btrfs_delayed_extent_op *extent_op;
2853 int ret;
2854
Miao Xie78a61842012-11-21 02:21:28 +00002855 extent_op = btrfs_alloc_delayed_extent_op();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002856 if (!extent_op)
2857 return -ENOMEM;
2858
2859 extent_op->flags_to_set = flags;
2860 extent_op->update_flags = 1;
2861 extent_op->update_key = 0;
2862 extent_op->is_data = is_data ? 1 : 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002863 extent_op->level = level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002864
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002865 ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr,
2866 num_bytes, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002867 if (ret)
Miao Xie78a61842012-11-21 02:21:28 +00002868 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002869 return ret;
2870}
2871
2872static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
2873 struct btrfs_root *root,
2874 struct btrfs_path *path,
2875 u64 objectid, u64 offset, u64 bytenr)
2876{
2877 struct btrfs_delayed_ref_head *head;
2878 struct btrfs_delayed_ref_node *ref;
2879 struct btrfs_delayed_data_ref *data_ref;
2880 struct btrfs_delayed_ref_root *delayed_refs;
2881 struct rb_node *node;
2882 int ret = 0;
2883
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002884 delayed_refs = &trans->transaction->delayed_refs;
2885 spin_lock(&delayed_refs->lock);
2886 head = btrfs_find_delayed_ref_head(trans, bytenr);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002887 if (!head) {
2888 spin_unlock(&delayed_refs->lock);
2889 return 0;
2890 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002891
2892 if (!mutex_trylock(&head->mutex)) {
2893 atomic_inc(&head->node.refs);
2894 spin_unlock(&delayed_refs->lock);
2895
David Sterbab3b4aa72011-04-21 01:20:15 +02002896 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002897
David Sterba8cc33e52011-05-02 15:29:25 +02002898 /*
2899 * Mutex was contended, block until it's released and let
2900 * caller try again
2901 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002902 mutex_lock(&head->mutex);
2903 mutex_unlock(&head->mutex);
2904 btrfs_put_delayed_ref(&head->node);
2905 return -EAGAIN;
2906 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002907 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002908
2909 spin_lock(&head->lock);
2910 node = rb_first(&head->ref_root);
2911 while (node) {
2912 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
2913 node = rb_next(node);
2914
2915 /* If it's a shared ref we know a cross reference exists */
2916 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) {
2917 ret = 1;
2918 break;
2919 }
2920
2921 data_ref = btrfs_delayed_node_to_data_ref(ref);
2922
2923 /*
2924 * If our ref doesn't match the one we're currently looking at
2925 * then we have a cross reference.
2926 */
2927 if (data_ref->root != root->root_key.objectid ||
2928 data_ref->objectid != objectid ||
2929 data_ref->offset != offset) {
2930 ret = 1;
2931 break;
2932 }
2933 }
2934 spin_unlock(&head->lock);
2935 mutex_unlock(&head->mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002936 return ret;
2937}
2938
2939static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
2940 struct btrfs_root *root,
2941 struct btrfs_path *path,
2942 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05002943{
2944 struct btrfs_root *extent_root = root->fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04002945 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002946 struct btrfs_extent_data_ref *ref;
2947 struct btrfs_extent_inline_ref *iref;
2948 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05002949 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002950 u32 item_size;
Yan Zhengf321e492008-07-30 09:26:11 -04002951 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05002952
Chris Masonbe20aa92007-12-17 20:14:01 -05002953 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04002954 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04002955 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05002956
Chris Masonbe20aa92007-12-17 20:14:01 -05002957 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2958 if (ret < 0)
2959 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002960 BUG_ON(ret == 0); /* Corruption */
Yan Zheng80ff3852008-10-30 14:20:02 -04002961
2962 ret = -ENOENT;
2963 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04002964 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002965
Zheng Yan31840ae2008-09-23 13:14:14 -04002966 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04002967 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002968 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05002969
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002970 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05002971 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002972
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002973 ret = 1;
2974 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2975#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2976 if (item_size < sizeof(*ei)) {
2977 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
2978 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002979 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002980#endif
2981 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2982
2983 if (item_size != sizeof(*ei) +
2984 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
2985 goto out;
2986
2987 if (btrfs_extent_generation(leaf, ei) <=
2988 btrfs_root_last_snapshot(&root->root_item))
2989 goto out;
2990
2991 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
2992 if (btrfs_extent_inline_ref_type(leaf, iref) !=
2993 BTRFS_EXTENT_DATA_REF_KEY)
2994 goto out;
2995
2996 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
2997 if (btrfs_extent_refs(leaf, ei) !=
2998 btrfs_extent_data_ref_count(leaf, ref) ||
2999 btrfs_extent_data_ref_root(leaf, ref) !=
3000 root->root_key.objectid ||
3001 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
3002 btrfs_extent_data_ref_offset(leaf, ref) != offset)
3003 goto out;
3004
Yan Zhengf321e492008-07-30 09:26:11 -04003005 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05003006out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003007 return ret;
3008}
3009
3010int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
3011 struct btrfs_root *root,
3012 u64 objectid, u64 offset, u64 bytenr)
3013{
3014 struct btrfs_path *path;
3015 int ret;
3016 int ret2;
3017
3018 path = btrfs_alloc_path();
3019 if (!path)
3020 return -ENOENT;
3021
3022 do {
3023 ret = check_committed_ref(trans, root, path, objectid,
3024 offset, bytenr);
3025 if (ret && ret != -ENOENT)
3026 goto out;
3027
3028 ret2 = check_delayed_ref(trans, root, path, objectid,
3029 offset, bytenr);
3030 } while (ret2 == -EAGAIN);
3031
3032 if (ret2 && ret2 != -ENOENT) {
3033 ret = ret2;
3034 goto out;
3035 }
3036
3037 if (ret != -ENOENT || ret2 != -ENOENT)
3038 ret = 0;
3039out:
Yan Zhengf321e492008-07-30 09:26:11 -04003040 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003041 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3042 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04003043 return ret;
3044}
3045
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003046static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05003047 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003048 struct extent_buffer *buf,
Josef Bacike339a6b2014-07-02 10:54:25 -07003049 int full_backref, int inc)
Zheng Yan31840ae2008-09-23 13:14:14 -04003050{
3051 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003052 u64 num_bytes;
3053 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003054 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04003055 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04003056 struct btrfs_key key;
3057 struct btrfs_file_extent_item *fi;
3058 int i;
3059 int level;
3060 int ret = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04003061 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003062 u64, u64, u64, u64, u64, u64, int);
Zheng Yan31840ae2008-09-23 13:14:14 -04003063
David Sterbafccb84c2014-09-29 23:53:21 +02003064
3065 if (btrfs_test_is_dummy_root(root))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04003066 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02003067
Zheng Yan31840ae2008-09-23 13:14:14 -04003068 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04003069 nritems = btrfs_header_nritems(buf);
3070 level = btrfs_header_level(buf);
3071
Miao Xie27cdeb72014-04-02 19:51:05 +08003072 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003073 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05003074
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003075 if (inc)
3076 process_func = btrfs_inc_extent_ref;
3077 else
3078 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003079
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003080 if (full_backref)
3081 parent = buf->start;
3082 else
3083 parent = 0;
3084
Zheng Yan31840ae2008-09-23 13:14:14 -04003085 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04003086 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003087 btrfs_item_key_to_cpu(buf, &key, i);
David Sterba962a2982014-06-04 18:41:45 +02003088 if (key.type != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04003089 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003090 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04003091 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003092 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04003093 BTRFS_FILE_EXTENT_INLINE)
3094 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003095 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3096 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04003097 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003098
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003099 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3100 key.offset -= btrfs_file_extent_offset(buf, fi);
3101 ret = process_func(trans, root, bytenr, num_bytes,
3102 parent, ref_root, key.objectid,
Josef Bacike339a6b2014-07-02 10:54:25 -07003103 key.offset, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003104 if (ret)
3105 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05003106 } else {
3107 bytenr = btrfs_node_blockptr(buf, i);
David Sterba707e8a02014-06-04 19:22:26 +02003108 num_bytes = root->nodesize;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003109 ret = process_func(trans, root, bytenr, num_bytes,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003110 parent, ref_root, level - 1, 0,
Josef Bacike339a6b2014-07-02 10:54:25 -07003111 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003112 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04003113 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04003114 }
3115 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003116 return 0;
3117fail:
Chris Mason54aa1f42007-06-22 14:16:25 -04003118 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05003119}
3120
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003121int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003122 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04003123{
Josef Bacike339a6b2014-07-02 10:54:25 -07003124 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003125}
Zheng Yan31840ae2008-09-23 13:14:14 -04003126
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003127int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003128 struct extent_buffer *buf, int full_backref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003129{
Josef Bacike339a6b2014-07-02 10:54:25 -07003130 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003131}
3132
Chris Mason9078a3e2007-04-26 16:46:15 -04003133static int write_one_cache_group(struct btrfs_trans_handle *trans,
3134 struct btrfs_root *root,
3135 struct btrfs_path *path,
3136 struct btrfs_block_group_cache *cache)
3137{
3138 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003139 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003140 unsigned long bi;
3141 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04003142
Chris Mason9078a3e2007-04-26 16:46:15 -04003143 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003144 if (ret < 0)
3145 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003146 BUG_ON(ret); /* Corruption */
Chris Mason5f39d392007-10-15 16:14:19 -04003147
3148 leaf = path->nodes[0];
3149 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3150 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3151 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003152 btrfs_release_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04003153fail:
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003154 if (ret) {
3155 btrfs_abort_transaction(trans, root, ret);
Chris Mason9078a3e2007-04-26 16:46:15 -04003156 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003157 }
Chris Mason9078a3e2007-04-26 16:46:15 -04003158 return 0;
3159
3160}
3161
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003162static struct btrfs_block_group_cache *
3163next_block_group(struct btrfs_root *root,
3164 struct btrfs_block_group_cache *cache)
3165{
3166 struct rb_node *node;
Filipe Manana292cbd52014-11-26 15:28:50 +00003167
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003168 spin_lock(&root->fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003169
3170 /* If our block group was removed, we need a full search. */
3171 if (RB_EMPTY_NODE(&cache->cache_node)) {
3172 const u64 next_bytenr = cache->key.objectid + cache->key.offset;
3173
3174 spin_unlock(&root->fs_info->block_group_cache_lock);
3175 btrfs_put_block_group(cache);
3176 cache = btrfs_lookup_first_block_group(root->fs_info,
3177 next_bytenr);
3178 return cache;
3179 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003180 node = rb_next(&cache->cache_node);
3181 btrfs_put_block_group(cache);
3182 if (node) {
3183 cache = rb_entry(node, struct btrfs_block_group_cache,
3184 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00003185 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003186 } else
3187 cache = NULL;
3188 spin_unlock(&root->fs_info->block_group_cache_lock);
3189 return cache;
3190}
3191
Josef Bacik0af3d002010-06-21 14:48:16 -04003192static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3193 struct btrfs_trans_handle *trans,
3194 struct btrfs_path *path)
3195{
3196 struct btrfs_root *root = block_group->fs_info->tree_root;
3197 struct inode *inode = NULL;
3198 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05003199 int dcs = BTRFS_DC_ERROR;
Josef Bacik0af3d002010-06-21 14:48:16 -04003200 int num_pages = 0;
3201 int retries = 0;
3202 int ret = 0;
3203
3204 /*
3205 * If this block group is smaller than 100 megs don't bother caching the
3206 * block group.
3207 */
3208 if (block_group->key.offset < (100 * 1024 * 1024)) {
3209 spin_lock(&block_group->lock);
3210 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3211 spin_unlock(&block_group->lock);
3212 return 0;
3213 }
3214
3215again:
3216 inode = lookup_free_space_inode(root, block_group, path);
3217 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3218 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02003219 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003220 goto out;
3221 }
3222
3223 if (IS_ERR(inode)) {
3224 BUG_ON(retries);
3225 retries++;
3226
3227 if (block_group->ro)
3228 goto out_free;
3229
3230 ret = create_free_space_inode(root, trans, block_group, path);
3231 if (ret)
3232 goto out_free;
3233 goto again;
3234 }
3235
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003236 /* We've already setup this transaction, go ahead and exit */
3237 if (block_group->cache_generation == trans->transid &&
3238 i_size_read(inode)) {
3239 dcs = BTRFS_DC_SETUP;
3240 goto out_put;
3241 }
3242
Josef Bacik0af3d002010-06-21 14:48:16 -04003243 /*
3244 * We want to set the generation to 0, that way if anything goes wrong
3245 * from here on out we know not to trust this cache when we load up next
3246 * time.
3247 */
3248 BTRFS_I(inode)->generation = 0;
3249 ret = btrfs_update_inode(trans, root, inode);
3250 WARN_ON(ret);
3251
3252 if (i_size_read(inode) > 0) {
Miao Xie7b61cd92013-05-13 13:55:09 +00003253 ret = btrfs_check_trunc_cache_free_space(root,
3254 &root->fs_info->global_block_rsv);
3255 if (ret)
3256 goto out_put;
3257
Filipe David Borba Manana74514322013-09-20 14:46:51 +01003258 ret = btrfs_truncate_free_space_cache(root, trans, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003259 if (ret)
3260 goto out_put;
3261 }
3262
3263 spin_lock(&block_group->lock);
Liu Bocf7c1ef2012-07-06 03:31:34 -06003264 if (block_group->cached != BTRFS_CACHE_FINISHED ||
Miao Xiee570fd22014-06-19 10:42:50 +08003265 !btrfs_test_opt(root, SPACE_CACHE) ||
3266 block_group->delalloc_bytes) {
Liu Bocf7c1ef2012-07-06 03:31:34 -06003267 /*
3268 * don't bother trying to write stuff out _if_
3269 * a) we're not cached,
3270 * b) we're with nospace_cache mount option.
3271 */
Josef Bacik2b209822010-12-03 13:17:53 -05003272 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04003273 spin_unlock(&block_group->lock);
3274 goto out_put;
3275 }
3276 spin_unlock(&block_group->lock);
3277
Josef Bacik6fc823b2012-08-06 13:46:38 -06003278 /*
3279 * Try to preallocate enough space based on how big the block group is.
3280 * Keep in mind this has to include any pinned space which could end up
3281 * taking up quite a bit since it's not folded into the other space
3282 * cache.
3283 */
3284 num_pages = (int)div64_u64(block_group->key.offset, 256 * 1024 * 1024);
Josef Bacik0af3d002010-06-21 14:48:16 -04003285 if (!num_pages)
3286 num_pages = 1;
3287
Josef Bacik0af3d002010-06-21 14:48:16 -04003288 num_pages *= 16;
3289 num_pages *= PAGE_CACHE_SIZE;
3290
3291 ret = btrfs_check_data_free_space(inode, num_pages);
3292 if (ret)
3293 goto out_put;
3294
3295 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3296 num_pages, num_pages,
3297 &alloc_hint);
Josef Bacik2b209822010-12-03 13:17:53 -05003298 if (!ret)
3299 dcs = BTRFS_DC_SETUP;
Josef Bacik0af3d002010-06-21 14:48:16 -04003300 btrfs_free_reserved_data_space(inode, num_pages);
Josef Bacikc09544e2011-08-30 10:19:10 -04003301
Josef Bacik0af3d002010-06-21 14:48:16 -04003302out_put:
3303 iput(inode);
3304out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02003305 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003306out:
3307 spin_lock(&block_group->lock);
Josef Bacike65cbb92011-12-13 16:04:54 -05003308 if (!ret && dcs == BTRFS_DC_SETUP)
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003309 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05003310 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04003311 spin_unlock(&block_group->lock);
3312
3313 return ret;
3314}
3315
Chris Mason96b51792007-10-15 16:15:19 -04003316int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
3317 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04003318{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003319 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04003320 int err = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003321 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -04003322 u64 last = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003323
3324 path = btrfs_alloc_path();
3325 if (!path)
3326 return -ENOMEM;
3327
Josef Bacik0af3d002010-06-21 14:48:16 -04003328again:
3329 while (1) {
3330 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3331 while (cache) {
3332 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3333 break;
3334 cache = next_block_group(root, cache);
3335 }
3336 if (!cache) {
3337 if (last == 0)
3338 break;
3339 last = 0;
3340 continue;
3341 }
3342 err = cache_save_setup(cache, trans, path);
3343 last = cache->key.objectid + cache->key.offset;
3344 btrfs_put_block_group(cache);
3345 }
3346
Chris Masond3977122009-01-05 21:25:51 -05003347 while (1) {
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003348 if (last == 0) {
3349 err = btrfs_run_delayed_refs(trans, root,
3350 (unsigned long)-1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003351 if (err) /* File system offline */
3352 goto out;
Josef Bacik0f9dd462008-09-23 13:14:11 -04003353 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04003354
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003355 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3356 while (cache) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003357 if (cache->disk_cache_state == BTRFS_DC_CLEAR) {
3358 btrfs_put_block_group(cache);
3359 goto again;
3360 }
3361
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003362 if (cache->dirty)
3363 break;
3364 cache = next_block_group(root, cache);
3365 }
3366 if (!cache) {
3367 if (last == 0)
3368 break;
3369 last = 0;
Chris Mason96b51792007-10-15 16:15:19 -04003370 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -04003371 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003372
Josef Bacik0cb59c92010-07-02 12:14:14 -04003373 if (cache->disk_cache_state == BTRFS_DC_SETUP)
3374 cache->disk_cache_state = BTRFS_DC_NEED_WRITE;
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003375 cache->dirty = 0;
3376 last = cache->key.objectid + cache->key.offset;
3377
3378 err = write_one_cache_group(trans, root, path, cache);
Filipe David Borba Mananae84cc142013-09-09 19:49:43 +01003379 btrfs_put_block_group(cache);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003380 if (err) /* File system offline */
3381 goto out;
Chris Mason9078a3e2007-04-26 16:46:15 -04003382 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003383
Josef Bacik0cb59c92010-07-02 12:14:14 -04003384 while (1) {
3385 /*
3386 * I don't think this is needed since we're just marking our
3387 * preallocated extent as written, but just in case it can't
3388 * hurt.
3389 */
3390 if (last == 0) {
3391 err = btrfs_run_delayed_refs(trans, root,
3392 (unsigned long)-1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003393 if (err) /* File system offline */
3394 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -04003395 }
3396
3397 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3398 while (cache) {
3399 /*
3400 * Really this shouldn't happen, but it could if we
3401 * couldn't write the entire preallocated extent and
3402 * splitting the extent resulted in a new block.
3403 */
3404 if (cache->dirty) {
3405 btrfs_put_block_group(cache);
3406 goto again;
3407 }
3408 if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
3409 break;
3410 cache = next_block_group(root, cache);
3411 }
3412 if (!cache) {
3413 if (last == 0)
3414 break;
3415 last = 0;
3416 continue;
3417 }
3418
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003419 err = btrfs_write_out_cache(root, trans, cache, path);
Josef Bacik0cb59c92010-07-02 12:14:14 -04003420
3421 /*
3422 * If we didn't have an error then the cache state is still
3423 * NEED_WRITE, so we can set it to WRITTEN.
3424 */
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003425 if (!err && cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
Josef Bacik0cb59c92010-07-02 12:14:14 -04003426 cache->disk_cache_state = BTRFS_DC_WRITTEN;
3427 last = cache->key.objectid + cache->key.offset;
3428 btrfs_put_block_group(cache);
3429 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003430out:
Josef Bacik0cb59c92010-07-02 12:14:14 -04003431
Chris Mason9078a3e2007-04-26 16:46:15 -04003432 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003433 return err;
Chris Mason9078a3e2007-04-26 16:46:15 -04003434}
3435
Yan Zhengd2fb3432008-12-11 16:30:39 -05003436int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
3437{
3438 struct btrfs_block_group_cache *block_group;
3439 int readonly = 0;
3440
3441 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
3442 if (!block_group || block_group->ro)
3443 readonly = 1;
3444 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04003445 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003446 return readonly;
3447}
3448
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003449static const char *alloc_name(u64 flags)
3450{
3451 switch (flags) {
3452 case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA:
3453 return "mixed";
3454 case BTRFS_BLOCK_GROUP_METADATA:
3455 return "metadata";
3456 case BTRFS_BLOCK_GROUP_DATA:
3457 return "data";
3458 case BTRFS_BLOCK_GROUP_SYSTEM:
3459 return "system";
3460 default:
3461 WARN_ON(1);
3462 return "invalid-combination";
3463 };
3464}
3465
Chris Mason593060d2008-03-25 16:50:33 -04003466static int update_space_info(struct btrfs_fs_info *info, u64 flags,
3467 u64 total_bytes, u64 bytes_used,
3468 struct btrfs_space_info **space_info)
3469{
3470 struct btrfs_space_info *found;
Yan, Zhengb742bb822010-05-16 10:46:24 -04003471 int i;
3472 int factor;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003473 int ret;
Yan, Zhengb742bb822010-05-16 10:46:24 -04003474
3475 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
3476 BTRFS_BLOCK_GROUP_RAID10))
3477 factor = 2;
3478 else
3479 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04003480
3481 found = __find_space_info(info, flags);
3482 if (found) {
Josef Bacik25179202008-10-29 14:49:05 -04003483 spin_lock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003484 found->total_bytes += total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003485 found->disk_total += total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003486 found->bytes_used += bytes_used;
Yan, Zhengb742bb822010-05-16 10:46:24 -04003487 found->disk_used += bytes_used * factor;
Chris Mason8f18cf12008-04-25 16:53:30 -04003488 found->full = 0;
Josef Bacik25179202008-10-29 14:49:05 -04003489 spin_unlock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003490 *space_info = found;
3491 return 0;
3492 }
Yan Zhengc146afa2008-11-12 14:34:12 -05003493 found = kzalloc(sizeof(*found), GFP_NOFS);
Chris Mason593060d2008-03-25 16:50:33 -04003494 if (!found)
3495 return -ENOMEM;
3496
Tejun Heo908c7f12014-09-08 09:51:29 +09003497 ret = percpu_counter_init(&found->total_bytes_pinned, 0, GFP_KERNEL);
Josef Bacikb150a4f2013-06-19 15:00:04 -04003498 if (ret) {
3499 kfree(found);
3500 return ret;
3501 }
3502
Jeff Mahoneyc1895442014-05-27 12:59:57 -04003503 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
Yan, Zhengb742bb822010-05-16 10:46:24 -04003504 INIT_LIST_HEAD(&found->block_groups[i]);
Josef Bacik80eb2342008-10-29 14:49:05 -04003505 init_rwsem(&found->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003506 spin_lock_init(&found->lock);
Ilya Dryomov52ba6922012-01-16 22:04:47 +02003507 found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
Chris Mason593060d2008-03-25 16:50:33 -04003508 found->total_bytes = total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003509 found->disk_total = total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003510 found->bytes_used = bytes_used;
Yan, Zhengb742bb822010-05-16 10:46:24 -04003511 found->disk_used = bytes_used * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003512 found->bytes_pinned = 0;
Zheng Yane8569812008-09-26 10:05:48 -04003513 found->bytes_reserved = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003514 found->bytes_readonly = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003515 found->bytes_may_use = 0;
Chris Mason593060d2008-03-25 16:50:33 -04003516 found->full = 0;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003517 found->force_alloc = CHUNK_ALLOC_NO_FORCE;
Josef Bacik6d741192011-04-11 20:20:11 -04003518 found->chunk_alloc = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003519 found->flush = 0;
3520 init_waitqueue_head(&found->wait);
Josef Bacik633c0aa2014-10-31 09:49:34 -04003521 INIT_LIST_HEAD(&found->ro_bgs);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003522
3523 ret = kobject_init_and_add(&found->kobj, &space_info_ktype,
3524 info->space_info_kobj, "%s",
3525 alloc_name(found->flags));
3526 if (ret) {
3527 kfree(found);
3528 return ret;
3529 }
3530
Chris Mason593060d2008-03-25 16:50:33 -04003531 *space_info = found;
Chris Mason4184ea72009-03-10 12:39:20 -04003532 list_add_rcu(&found->list, &info->space_info);
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003533 if (flags & BTRFS_BLOCK_GROUP_DATA)
3534 info->data_sinfo = found;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003535
3536 return ret;
Chris Mason593060d2008-03-25 16:50:33 -04003537}
3538
Chris Mason8790d502008-04-03 16:29:03 -04003539static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3540{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003541 u64 extra_flags = chunk_to_extended(flags) &
3542 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003543
Miao Xiede98ced2013-01-29 10:13:12 +00003544 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003545 if (flags & BTRFS_BLOCK_GROUP_DATA)
3546 fs_info->avail_data_alloc_bits |= extra_flags;
3547 if (flags & BTRFS_BLOCK_GROUP_METADATA)
3548 fs_info->avail_metadata_alloc_bits |= extra_flags;
3549 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3550 fs_info->avail_system_alloc_bits |= extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003551 write_sequnlock(&fs_info->profiles_lock);
Chris Mason8790d502008-04-03 16:29:03 -04003552}
Chris Mason593060d2008-03-25 16:50:33 -04003553
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003554/*
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003555 * returns target flags in extended format or 0 if restripe for this
3556 * chunk_type is not in progress
Ilya Dryomovc6664b42012-04-12 16:03:56 -04003557 *
3558 * should be called with either volume_mutex or balance_lock held
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003559 */
3560static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
3561{
3562 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3563 u64 target = 0;
3564
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003565 if (!bctl)
3566 return 0;
3567
3568 if (flags & BTRFS_BLOCK_GROUP_DATA &&
3569 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3570 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
3571 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
3572 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3573 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
3574 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
3575 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3576 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
3577 }
3578
3579 return target;
3580}
3581
3582/*
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003583 * @flags: available profiles in extended format (see ctree.h)
3584 *
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003585 * Returns reduced profile in chunk format. If profile changing is in
3586 * progress (either running or paused) picks the target profile (if it's
3587 * already available), otherwise falls back to plain reducing.
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003588 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003589static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04003590{
Miao Xie95669972014-07-24 11:37:14 +08003591 u64 num_devices = root->fs_info->fs_devices->rw_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003592 u64 target;
David Woodhouse53b381b2013-01-29 18:40:14 -05003593 u64 tmp;
Chris Masona061fc82008-05-07 11:43:44 -04003594
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003595 /*
3596 * see if restripe for this chunk_type is in progress, if so
3597 * try to reduce to the target profile
3598 */
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003599 spin_lock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003600 target = get_restripe_target(root->fs_info, flags);
3601 if (target) {
3602 /* pick target profile only if it's already available */
3603 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003604 spin_unlock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003605 return extended_to_chunk(target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003606 }
3607 }
3608 spin_unlock(&root->fs_info->balance_lock);
3609
David Woodhouse53b381b2013-01-29 18:40:14 -05003610 /* First, mask out the RAID levels which aren't possible */
Chris Masona061fc82008-05-07 11:43:44 -04003611 if (num_devices == 1)
David Woodhouse53b381b2013-01-29 18:40:14 -05003612 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0 |
3613 BTRFS_BLOCK_GROUP_RAID5);
3614 if (num_devices < 3)
3615 flags &= ~BTRFS_BLOCK_GROUP_RAID6;
Chris Masona061fc82008-05-07 11:43:44 -04003616 if (num_devices < 4)
3617 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
3618
David Woodhouse53b381b2013-01-29 18:40:14 -05003619 tmp = flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID0 |
3620 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID5 |
3621 BTRFS_BLOCK_GROUP_RAID6 | BTRFS_BLOCK_GROUP_RAID10);
3622 flags &= ~tmp;
Chris Masonec44a352008-04-28 15:29:52 -04003623
David Woodhouse53b381b2013-01-29 18:40:14 -05003624 if (tmp & BTRFS_BLOCK_GROUP_RAID6)
3625 tmp = BTRFS_BLOCK_GROUP_RAID6;
3626 else if (tmp & BTRFS_BLOCK_GROUP_RAID5)
3627 tmp = BTRFS_BLOCK_GROUP_RAID5;
3628 else if (tmp & BTRFS_BLOCK_GROUP_RAID10)
3629 tmp = BTRFS_BLOCK_GROUP_RAID10;
3630 else if (tmp & BTRFS_BLOCK_GROUP_RAID1)
3631 tmp = BTRFS_BLOCK_GROUP_RAID1;
3632 else if (tmp & BTRFS_BLOCK_GROUP_RAID0)
3633 tmp = BTRFS_BLOCK_GROUP_RAID0;
Chris Masonec44a352008-04-28 15:29:52 -04003634
David Woodhouse53b381b2013-01-29 18:40:14 -05003635 return extended_to_chunk(flags | tmp);
Chris Masonec44a352008-04-28 15:29:52 -04003636}
3637
Filipe Mananaf8213bd2014-04-24 15:15:29 +01003638static u64 get_alloc_profile(struct btrfs_root *root, u64 orig_flags)
Josef Bacik6a632092009-02-20 11:00:09 -05003639{
Miao Xiede98ced2013-01-29 10:13:12 +00003640 unsigned seq;
Filipe Mananaf8213bd2014-04-24 15:15:29 +01003641 u64 flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003642
3643 do {
Filipe Mananaf8213bd2014-04-24 15:15:29 +01003644 flags = orig_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003645 seq = read_seqbegin(&root->fs_info->profiles_lock);
3646
3647 if (flags & BTRFS_BLOCK_GROUP_DATA)
3648 flags |= root->fs_info->avail_data_alloc_bits;
3649 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3650 flags |= root->fs_info->avail_system_alloc_bits;
3651 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
3652 flags |= root->fs_info->avail_metadata_alloc_bits;
3653 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02003654
Yan, Zhengb742bb822010-05-16 10:46:24 -04003655 return btrfs_reduce_alloc_profile(root, flags);
3656}
Josef Bacik6a632092009-02-20 11:00:09 -05003657
Miao Xie6d07bce2011-01-05 10:07:31 +00003658u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
Yan, Zhengb742bb822010-05-16 10:46:24 -04003659{
3660 u64 flags;
David Woodhouse53b381b2013-01-29 18:40:14 -05003661 u64 ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003662
Yan, Zhengb742bb822010-05-16 10:46:24 -04003663 if (data)
3664 flags = BTRFS_BLOCK_GROUP_DATA;
3665 else if (root == root->fs_info->chunk_root)
3666 flags = BTRFS_BLOCK_GROUP_SYSTEM;
3667 else
3668 flags = BTRFS_BLOCK_GROUP_METADATA;
3669
David Woodhouse53b381b2013-01-29 18:40:14 -05003670 ret = get_alloc_profile(root, flags);
3671 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003672}
3673
Josef Bacik6a632092009-02-20 11:00:09 -05003674/*
3675 * This will check the space that the inode allocates from to make sure we have
3676 * enough space for bytes.
3677 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003678int btrfs_check_data_free_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003679{
3680 struct btrfs_space_info *data_sinfo;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003681 struct btrfs_root *root = BTRFS_I(inode)->root;
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003682 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacikab6e24102010-03-19 14:38:13 +00003683 u64 used;
Josef Bacik0af3d002010-06-21 14:48:16 -04003684 int ret = 0, committed = 0, alloc_chunk = 1;
Josef Bacik6a632092009-02-20 11:00:09 -05003685
3686 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00003687 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05003688
Miao Xie9dced182013-10-25 17:33:36 +08003689 if (btrfs_is_free_space_inode(inode)) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003690 committed = 1;
Miao Xie9dced182013-10-25 17:33:36 +08003691 ASSERT(current->journal_info);
Josef Bacik0af3d002010-06-21 14:48:16 -04003692 }
3693
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003694 data_sinfo = fs_info->data_sinfo;
Chris Mason33b4d472009-09-22 14:45:50 -04003695 if (!data_sinfo)
3696 goto alloc;
3697
Josef Bacik6a632092009-02-20 11:00:09 -05003698again:
3699 /* make sure we have enough space to handle the data first */
3700 spin_lock(&data_sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003701 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
3702 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
3703 data_sinfo->bytes_may_use;
Josef Bacikab6e24102010-03-19 14:38:13 +00003704
3705 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003706 struct btrfs_trans_handle *trans;
3707
Josef Bacik6a632092009-02-20 11:00:09 -05003708 /*
3709 * if we don't have enough free bytes in this space then we need
3710 * to alloc a new chunk.
3711 */
Josef Bacik0af3d002010-06-21 14:48:16 -04003712 if (!data_sinfo->full && alloc_chunk) {
Josef Bacik6a632092009-02-20 11:00:09 -05003713 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05003714
Chris Mason0e4f8f82011-04-15 16:05:44 -04003715 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05003716 spin_unlock(&data_sinfo->lock);
Chris Mason33b4d472009-09-22 14:45:50 -04003717alloc:
Josef Bacik6a632092009-02-20 11:00:09 -05003718 alloc_target = btrfs_get_alloc_profile(root, 1);
Miao Xie9dced182013-10-25 17:33:36 +08003719 /*
3720 * It is ugly that we don't call nolock join
3721 * transaction for the free space inode case here.
3722 * But it is safe because we only do the data space
3723 * reservation for the free space cache in the
3724 * transaction context, the common join transaction
3725 * just increase the counter of the current transaction
3726 * handler, doesn't try to acquire the trans_lock of
3727 * the fs.
3728 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003729 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003730 if (IS_ERR(trans))
3731 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05003732
3733 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0e4f8f82011-04-15 16:05:44 -04003734 alloc_target,
3735 CHUNK_ALLOC_NO_FORCE);
Josef Bacik6a632092009-02-20 11:00:09 -05003736 btrfs_end_transaction(trans, root);
Miao Xied52a5b52011-01-05 10:07:18 +00003737 if (ret < 0) {
3738 if (ret != -ENOSPC)
3739 return ret;
3740 else
3741 goto commit_trans;
3742 }
Chris Mason33b4d472009-09-22 14:45:50 -04003743
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003744 if (!data_sinfo)
3745 data_sinfo = fs_info->data_sinfo;
3746
Josef Bacik6a632092009-02-20 11:00:09 -05003747 goto again;
3748 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003749
3750 /*
Josef Bacikb150a4f2013-06-19 15:00:04 -04003751 * If we don't have enough pinned space to deal with this
3752 * allocation don't bother committing the transaction.
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003753 */
Josef Bacikb150a4f2013-06-19 15:00:04 -04003754 if (percpu_counter_compare(&data_sinfo->total_bytes_pinned,
3755 bytes) < 0)
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003756 committed = 1;
Josef Bacik6a632092009-02-20 11:00:09 -05003757 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003758
3759 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00003760commit_trans:
Josef Bacika4abeea2011-04-11 17:25:13 -04003761 if (!committed &&
3762 !atomic_read(&root->fs_info->open_ioctl_trans)) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003763 committed = 1;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003764
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003765 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003766 if (IS_ERR(trans))
3767 return PTR_ERR(trans);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003768 ret = btrfs_commit_transaction(trans, root);
3769 if (ret)
3770 return ret;
3771 goto again;
3772 }
3773
Jeff Mahoneycab45e22013-10-16 16:27:01 -04003774 trace_btrfs_space_reservation(root->fs_info,
3775 "space_info:enospc",
3776 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05003777 return -ENOSPC;
3778 }
3779 data_sinfo->bytes_may_use += bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05003780 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04003781 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05003782 spin_unlock(&data_sinfo->lock);
3783
Josef Bacik9ed74f22009-09-11 16:12:44 -04003784 return 0;
Josef Bacik6a632092009-02-20 11:00:09 -05003785}
3786
3787/*
Josef Bacikfb25e912011-07-26 17:00:46 -04003788 * Called if we need to clear a data reservation for this inode.
Josef Bacik6a632092009-02-20 11:00:09 -05003789 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003790void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003791{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003792 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003793 struct btrfs_space_info *data_sinfo;
3794
3795 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00003796 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05003797
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003798 data_sinfo = root->fs_info->data_sinfo;
Josef Bacik6a632092009-02-20 11:00:09 -05003799 spin_lock(&data_sinfo->lock);
Josef Bacik7ee9e442013-06-21 16:37:03 -04003800 WARN_ON(data_sinfo->bytes_may_use < bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05003801 data_sinfo->bytes_may_use -= bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05003802 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04003803 data_sinfo->flags, bytes, 0);
Josef Bacik6a632092009-02-20 11:00:09 -05003804 spin_unlock(&data_sinfo->lock);
3805}
3806
Josef Bacik97e728d2009-04-21 17:40:57 -04003807static void force_metadata_allocation(struct btrfs_fs_info *info)
3808{
3809 struct list_head *head = &info->space_info;
3810 struct btrfs_space_info *found;
3811
3812 rcu_read_lock();
3813 list_for_each_entry_rcu(found, head, list) {
3814 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04003815 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04003816 }
3817 rcu_read_unlock();
3818}
3819
Miao Xie3c76cd82013-04-25 10:12:38 +00003820static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
3821{
3822 return (global->size << 1);
3823}
3824
Chris Masone5bc2452010-10-26 13:37:56 -04003825static int should_alloc_chunk(struct btrfs_root *root,
Josef Bacik698d0082012-09-12 14:08:47 -04003826 struct btrfs_space_info *sinfo, int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04003827{
Josef Bacikfb25e912011-07-26 17:00:46 -04003828 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zheng424499d2010-05-16 10:46:25 -04003829 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003830 u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved;
Chris Masone5bc2452010-10-26 13:37:56 -04003831 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04003832
Chris Mason0e4f8f82011-04-15 16:05:44 -04003833 if (force == CHUNK_ALLOC_FORCE)
3834 return 1;
3835
3836 /*
Josef Bacikfb25e912011-07-26 17:00:46 -04003837 * We need to take into account the global rsv because for all intents
3838 * and purposes it's used space. Don't worry about locking the
3839 * global_rsv, it doesn't change except when the transaction commits.
3840 */
Josef Bacik54338b52012-08-14 16:20:52 -04003841 if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA)
Miao Xie3c76cd82013-04-25 10:12:38 +00003842 num_allocated += calc_global_rsv_need_space(global_rsv);
Josef Bacikfb25e912011-07-26 17:00:46 -04003843
3844 /*
Chris Mason0e4f8f82011-04-15 16:05:44 -04003845 * in limited mode, we want to have some free space up to
3846 * about 1% of the FS size.
3847 */
3848 if (force == CHUNK_ALLOC_LIMITED) {
David Sterba6c417612011-04-13 15:41:04 +02003849 thresh = btrfs_super_total_bytes(root->fs_info->super_copy);
Chris Mason0e4f8f82011-04-15 16:05:44 -04003850 thresh = max_t(u64, 64 * 1024 * 1024,
3851 div_factor_fine(thresh, 1));
3852
3853 if (num_bytes - num_allocated < thresh)
3854 return 1;
3855 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04003856
Josef Bacik698d0082012-09-12 14:08:47 -04003857 if (num_allocated + 2 * 1024 * 1024 < div_factor(num_bytes, 8))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04003858 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04003859 return 1;
3860}
3861
Liu Bo15d1ff82012-03-29 09:57:44 -04003862static u64 get_system_chunk_thresh(struct btrfs_root *root, u64 type)
3863{
3864 u64 num_dev;
3865
David Woodhouse53b381b2013-01-29 18:40:14 -05003866 if (type & (BTRFS_BLOCK_GROUP_RAID10 |
3867 BTRFS_BLOCK_GROUP_RAID0 |
3868 BTRFS_BLOCK_GROUP_RAID5 |
3869 BTRFS_BLOCK_GROUP_RAID6))
Liu Bo15d1ff82012-03-29 09:57:44 -04003870 num_dev = root->fs_info->fs_devices->rw_devices;
3871 else if (type & BTRFS_BLOCK_GROUP_RAID1)
3872 num_dev = 2;
3873 else
3874 num_dev = 1; /* DUP or single */
3875
3876 /* metadata for updaing devices and chunk tree */
3877 return btrfs_calc_trans_metadata_size(root, num_dev + 1);
3878}
3879
3880static void check_system_chunk(struct btrfs_trans_handle *trans,
3881 struct btrfs_root *root, u64 type)
3882{
3883 struct btrfs_space_info *info;
3884 u64 left;
3885 u64 thresh;
3886
3887 info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
3888 spin_lock(&info->lock);
3889 left = info->total_bytes - info->bytes_used - info->bytes_pinned -
3890 info->bytes_reserved - info->bytes_readonly;
3891 spin_unlock(&info->lock);
3892
3893 thresh = get_system_chunk_thresh(root, type);
3894 if (left < thresh && btrfs_test_opt(root, ENOSPC_DEBUG)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003895 btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu",
3896 left, thresh, type);
Liu Bo15d1ff82012-03-29 09:57:44 -04003897 dump_space_info(info, 0, 0);
3898 }
3899
3900 if (left < thresh) {
3901 u64 flags;
3902
3903 flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0);
3904 btrfs_alloc_chunk(trans, root, flags);
3905 }
3906}
3907
Chris Mason6324fbf2008-03-24 15:01:59 -04003908static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Josef Bacik698d0082012-09-12 14:08:47 -04003909 struct btrfs_root *extent_root, u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04003910{
3911 struct btrfs_space_info *space_info;
Josef Bacik97e728d2009-04-21 17:40:57 -04003912 struct btrfs_fs_info *fs_info = extent_root->fs_info;
Josef Bacik6d741192011-04-11 20:20:11 -04003913 int wait_for_alloc = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003914 int ret = 0;
3915
Josef Bacikc6b305a2012-12-18 09:16:16 -05003916 /* Don't re-enter if we're already allocating a chunk */
3917 if (trans->allocating_chunk)
3918 return -ENOSPC;
3919
Chris Mason6324fbf2008-03-24 15:01:59 -04003920 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04003921 if (!space_info) {
3922 ret = update_space_info(extent_root->fs_info, flags,
3923 0, 0, &space_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003924 BUG_ON(ret); /* -ENOMEM */
Chris Mason593060d2008-03-25 16:50:33 -04003925 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003926 BUG_ON(!space_info); /* Logic error */
Chris Mason6324fbf2008-03-24 15:01:59 -04003927
Josef Bacik6d741192011-04-11 20:20:11 -04003928again:
Josef Bacik25179202008-10-29 14:49:05 -04003929 spin_lock(&space_info->lock);
Miao Xie9e622d62012-01-26 15:01:12 -05003930 if (force < space_info->force_alloc)
Chris Mason0e4f8f82011-04-15 16:05:44 -04003931 force = space_info->force_alloc;
Josef Bacik25179202008-10-29 14:49:05 -04003932 if (space_info->full) {
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01003933 if (should_alloc_chunk(extent_root, space_info, force))
3934 ret = -ENOSPC;
3935 else
3936 ret = 0;
Josef Bacik25179202008-10-29 14:49:05 -04003937 spin_unlock(&space_info->lock);
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01003938 return ret;
Josef Bacik25179202008-10-29 14:49:05 -04003939 }
Chris Mason6324fbf2008-03-24 15:01:59 -04003940
Josef Bacik698d0082012-09-12 14:08:47 -04003941 if (!should_alloc_chunk(extent_root, space_info, force)) {
Josef Bacik25179202008-10-29 14:49:05 -04003942 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04003943 return 0;
3944 } else if (space_info->chunk_alloc) {
3945 wait_for_alloc = 1;
3946 } else {
3947 space_info->chunk_alloc = 1;
Josef Bacik25179202008-10-29 14:49:05 -04003948 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04003949
Josef Bacik25179202008-10-29 14:49:05 -04003950 spin_unlock(&space_info->lock);
3951
Josef Bacik6d741192011-04-11 20:20:11 -04003952 mutex_lock(&fs_info->chunk_mutex);
3953
3954 /*
3955 * The chunk_mutex is held throughout the entirety of a chunk
3956 * allocation, so once we've acquired the chunk_mutex we know that the
3957 * other guy is done and we need to recheck and see if we should
3958 * allocate.
3959 */
3960 if (wait_for_alloc) {
3961 mutex_unlock(&fs_info->chunk_mutex);
3962 wait_for_alloc = 0;
3963 goto again;
3964 }
3965
Josef Bacikc6b305a2012-12-18 09:16:16 -05003966 trans->allocating_chunk = true;
3967
Josef Bacik97e728d2009-04-21 17:40:57 -04003968 /*
Josef Bacik67377732010-09-16 16:19:09 -04003969 * If we have mixed data/metadata chunks we want to make sure we keep
3970 * allocating mixed chunks instead of individual chunks.
3971 */
3972 if (btrfs_mixed_space_info(space_info))
3973 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
3974
3975 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04003976 * if we're doing a data chunk, go ahead and make sure that
3977 * we keep a reasonable number of metadata chunks allocated in the
3978 * FS as well.
3979 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04003980 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04003981 fs_info->data_chunk_allocations++;
3982 if (!(fs_info->data_chunk_allocations %
3983 fs_info->metadata_ratio))
3984 force_metadata_allocation(fs_info);
3985 }
3986
Liu Bo15d1ff82012-03-29 09:57:44 -04003987 /*
3988 * Check if we have enough space in SYSTEM chunk because we may need
3989 * to update devices.
3990 */
3991 check_system_chunk(trans, extent_root, flags);
3992
Yan Zheng2b820322008-11-17 21:11:30 -05003993 ret = btrfs_alloc_chunk(trans, extent_root, flags);
Josef Bacikc6b305a2012-12-18 09:16:16 -05003994 trans->allocating_chunk = false;
Mark Fasheh92b8e8972011-07-12 10:57:59 -07003995
Josef Bacik9ed74f22009-09-11 16:12:44 -04003996 spin_lock(&space_info->lock);
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00003997 if (ret < 0 && ret != -ENOSPC)
3998 goto out;
Chris Masond3977122009-01-05 21:25:51 -05003999 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04004000 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04004001 else
4002 ret = 1;
Josef Bacik6d741192011-04-11 20:20:11 -04004003
Chris Mason0e4f8f82011-04-15 16:05:44 -04004004 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004005out:
Josef Bacik6d741192011-04-11 20:20:11 -04004006 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004007 spin_unlock(&space_info->lock);
Dan Carpentera25c75d2012-04-18 09:59:29 +03004008 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik0f9dd462008-09-23 13:14:11 -04004009 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04004010}
4011
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004012static int can_overcommit(struct btrfs_root *root,
4013 struct btrfs_space_info *space_info, u64 bytes,
Miao Xie08e007d2012-10-16 11:33:38 +00004014 enum btrfs_reserve_flush_enum flush)
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004015{
Josef Bacik96f1bb52013-01-30 17:02:51 -05004016 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004017 u64 profile = btrfs_get_alloc_profile(root, 0);
Miao Xie3c76cd82013-04-25 10:12:38 +00004018 u64 space_size;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004019 u64 avail;
4020 u64 used;
4021
4022 used = space_info->bytes_used + space_info->bytes_reserved +
Josef Bacik96f1bb52013-01-30 17:02:51 -05004023 space_info->bytes_pinned + space_info->bytes_readonly;
4024
Josef Bacik96f1bb52013-01-30 17:02:51 -05004025 /*
4026 * We only want to allow over committing if we have lots of actual space
4027 * free, but if we don't have enough space to handle the global reserve
4028 * space then we could end up having a real enospc problem when trying
4029 * to allocate a chunk or some other such important allocation.
4030 */
Miao Xie3c76cd82013-04-25 10:12:38 +00004031 spin_lock(&global_rsv->lock);
4032 space_size = calc_global_rsv_need_space(global_rsv);
4033 spin_unlock(&global_rsv->lock);
4034 if (used + space_size >= space_info->total_bytes)
Josef Bacik96f1bb52013-01-30 17:02:51 -05004035 return 0;
4036
4037 used += space_info->bytes_may_use;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004038
4039 spin_lock(&root->fs_info->free_chunk_lock);
4040 avail = root->fs_info->free_chunk_space;
4041 spin_unlock(&root->fs_info->free_chunk_lock);
4042
4043 /*
4044 * If we have dup, raid1 or raid10 then only half of the free
David Woodhouse53b381b2013-01-29 18:40:14 -05004045 * space is actually useable. For raid56, the space info used
4046 * doesn't include the parity drive, so we don't have to
4047 * change the math
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004048 */
4049 if (profile & (BTRFS_BLOCK_GROUP_DUP |
4050 BTRFS_BLOCK_GROUP_RAID1 |
4051 BTRFS_BLOCK_GROUP_RAID10))
4052 avail >>= 1;
4053
4054 /*
Miao Xie561c2942012-10-16 11:32:18 +00004055 * If we aren't flushing all things, let us overcommit up to
4056 * 1/2th of the space. If we can flush, don't let us overcommit
4057 * too much, let it overcommit up to 1/8 of the space.
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004058 */
Miao Xie08e007d2012-10-16 11:33:38 +00004059 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacik14575ae2013-09-17 10:48:00 -04004060 avail >>= 3;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004061 else
Josef Bacik14575ae2013-09-17 10:48:00 -04004062 avail >>= 1;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004063
Josef Bacik14575ae2013-09-17 10:48:00 -04004064 if (used + bytes < space_info->total_bytes + avail)
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004065 return 1;
4066 return 0;
4067}
4068
Eric Sandeen48a3b632013-04-25 20:41:01 +00004069static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root,
Miao Xie6c255e62014-03-06 13:55:01 +08004070 unsigned long nr_pages, int nr_items)
Miao Xieda633a42012-12-20 11:19:09 +00004071{
4072 struct super_block *sb = root->fs_info->sb;
Miao Xieda633a42012-12-20 11:19:09 +00004073
Josef Bacik925a6ef2013-06-20 12:31:27 -04004074 if (down_read_trylock(&sb->s_umount)) {
4075 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
4076 up_read(&sb->s_umount);
4077 } else {
Miao Xieda633a42012-12-20 11:19:09 +00004078 /*
4079 * We needn't worry the filesystem going from r/w to r/o though
4080 * we don't acquire ->s_umount mutex, because the filesystem
4081 * should guarantee the delalloc inodes list be empty after
4082 * the filesystem is readonly(all dirty pages are written to
4083 * the disk).
4084 */
Miao Xie6c255e62014-03-06 13:55:01 +08004085 btrfs_start_delalloc_roots(root->fs_info, 0, nr_items);
Josef Bacik98ad69c2013-04-04 11:55:49 -04004086 if (!current->journal_info)
Miao Xie6c255e62014-03-06 13:55:01 +08004087 btrfs_wait_ordered_roots(root->fs_info, nr_items);
Miao Xieda633a42012-12-20 11:19:09 +00004088 }
4089}
4090
Miao Xie18cd8ea2013-11-04 23:13:22 +08004091static inline int calc_reclaim_items_nr(struct btrfs_root *root, u64 to_reclaim)
4092{
4093 u64 bytes;
4094 int nr;
4095
4096 bytes = btrfs_calc_trans_metadata_size(root, 1);
4097 nr = (int)div64_u64(to_reclaim, bytes);
4098 if (!nr)
4099 nr = 1;
4100 return nr;
4101}
4102
Miao Xiec61a16a2013-11-04 23:13:23 +08004103#define EXTENT_SIZE_PER_ITEM (256 * 1024)
4104
Yan, Zheng5da9d012010-05-16 10:46:25 -04004105/*
4106 * shrink metadata reservation for delalloc
4107 */
Josef Bacikf4c738c2012-07-02 17:10:51 -04004108static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig,
4109 bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04004110{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004111 struct btrfs_block_rsv *block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004112 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04004113 struct btrfs_trans_handle *trans;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004114 u64 delalloc_bytes;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004115 u64 max_reclaim;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004116 long time_left;
Miao Xied3ee29e32013-11-04 23:13:20 +08004117 unsigned long nr_pages;
4118 int loops;
Miao Xieb0244192013-11-04 23:13:25 +08004119 int items;
Miao Xie08e007d2012-10-16 11:33:38 +00004120 enum btrfs_reserve_flush_enum flush;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004121
Miao Xiec61a16a2013-11-04 23:13:23 +08004122 /* Calc the number of the pages we need flush for space reservation */
Miao Xieb0244192013-11-04 23:13:25 +08004123 items = calc_reclaim_items_nr(root, to_reclaim);
4124 to_reclaim = items * EXTENT_SIZE_PER_ITEM;
Miao Xiec61a16a2013-11-04 23:13:23 +08004125
Josef Bacik663350a2011-11-03 22:54:25 -04004126 trans = (struct btrfs_trans_handle *)current->journal_info;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004127 block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004128 space_info = block_rsv->space_info;
Chris Masonbf9022e2010-10-26 13:40:45 -04004129
Miao Xie963d6782013-01-29 10:10:51 +00004130 delalloc_bytes = percpu_counter_sum_positive(
4131 &root->fs_info->delalloc_bytes);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004132 if (delalloc_bytes == 0) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004133 if (trans)
Josef Bacikf4c738c2012-07-02 17:10:51 -04004134 return;
Miao Xie38c135a2013-11-04 23:13:21 +08004135 if (wait_ordered)
Miao Xieb0244192013-11-04 23:13:25 +08004136 btrfs_wait_ordered_roots(root->fs_info, items);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004137 return;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004138 }
4139
Miao Xied3ee29e32013-11-04 23:13:20 +08004140 loops = 0;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004141 while (delalloc_bytes && loops < 3) {
4142 max_reclaim = min(delalloc_bytes, to_reclaim);
4143 nr_pages = max_reclaim >> PAGE_CACHE_SHIFT;
Miao Xie6c255e62014-03-06 13:55:01 +08004144 btrfs_writeback_inodes_sb_nr(root, nr_pages, items);
Josef Bacikdea31f52012-09-06 16:47:00 -04004145 /*
4146 * We need to wait for the async pages to actually start before
4147 * we do anything.
4148 */
Miao Xie9f3a0742013-11-04 23:13:24 +08004149 max_reclaim = atomic_read(&root->fs_info->async_delalloc_pages);
4150 if (!max_reclaim)
4151 goto skip_async;
Josef Bacikdea31f52012-09-06 16:47:00 -04004152
Miao Xie9f3a0742013-11-04 23:13:24 +08004153 if (max_reclaim <= nr_pages)
4154 max_reclaim = 0;
4155 else
4156 max_reclaim -= nr_pages;
4157
4158 wait_event(root->fs_info->async_submit_wait,
4159 atomic_read(&root->fs_info->async_delalloc_pages) <=
4160 (int)max_reclaim);
4161skip_async:
Miao Xie08e007d2012-10-16 11:33:38 +00004162 if (!trans)
4163 flush = BTRFS_RESERVE_FLUSH_ALL;
4164 else
4165 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacik0019f102010-10-15 15:18:40 -04004166 spin_lock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00004167 if (can_overcommit(root, space_info, orig, flush)) {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004168 spin_unlock(&space_info->lock);
4169 break;
4170 }
Josef Bacik0019f102010-10-15 15:18:40 -04004171 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004172
Chris Mason36e39c42011-03-12 07:08:42 -05004173 loops++;
Josef Bacikf104d042011-10-14 13:56:58 -04004174 if (wait_ordered && !trans) {
Miao Xieb0244192013-11-04 23:13:25 +08004175 btrfs_wait_ordered_roots(root->fs_info, items);
Josef Bacikf104d042011-10-14 13:56:58 -04004176 } else {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004177 time_left = schedule_timeout_killable(1);
Josef Bacikf104d042011-10-14 13:56:58 -04004178 if (time_left)
4179 break;
4180 }
Miao Xie963d6782013-01-29 10:10:51 +00004181 delalloc_bytes = percpu_counter_sum_positive(
4182 &root->fs_info->delalloc_bytes);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004183 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04004184}
4185
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004186/**
Josef Bacik663350a2011-11-03 22:54:25 -04004187 * maybe_commit_transaction - possibly commit the transaction if its ok to
4188 * @root - the root we're allocating for
4189 * @bytes - the number of bytes we want to reserve
4190 * @force - force the commit
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004191 *
Josef Bacik663350a2011-11-03 22:54:25 -04004192 * This will check to make sure that committing the transaction will actually
4193 * get us somewhere and then commit the transaction if it does. Otherwise it
4194 * will return -ENOSPC.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004195 */
Josef Bacik663350a2011-11-03 22:54:25 -04004196static int may_commit_transaction(struct btrfs_root *root,
4197 struct btrfs_space_info *space_info,
4198 u64 bytes, int force)
4199{
4200 struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv;
4201 struct btrfs_trans_handle *trans;
4202
4203 trans = (struct btrfs_trans_handle *)current->journal_info;
4204 if (trans)
4205 return -EAGAIN;
4206
4207 if (force)
4208 goto commit;
4209
4210 /* See if there is enough pinned space to make this reservation */
Josef Bacikb150a4f2013-06-19 15:00:04 -04004211 if (percpu_counter_compare(&space_info->total_bytes_pinned,
Miao Xie0424c542014-03-06 13:54:59 +08004212 bytes) >= 0)
Josef Bacik663350a2011-11-03 22:54:25 -04004213 goto commit;
Josef Bacik663350a2011-11-03 22:54:25 -04004214
4215 /*
4216 * See if there is some space in the delayed insertion reservation for
4217 * this reservation.
4218 */
4219 if (space_info != delayed_rsv->space_info)
4220 return -ENOSPC;
4221
4222 spin_lock(&delayed_rsv->lock);
Josef Bacikb150a4f2013-06-19 15:00:04 -04004223 if (percpu_counter_compare(&space_info->total_bytes_pinned,
4224 bytes - delayed_rsv->size) >= 0) {
Josef Bacik663350a2011-11-03 22:54:25 -04004225 spin_unlock(&delayed_rsv->lock);
4226 return -ENOSPC;
4227 }
4228 spin_unlock(&delayed_rsv->lock);
4229
4230commit:
4231 trans = btrfs_join_transaction(root);
4232 if (IS_ERR(trans))
4233 return -ENOSPC;
4234
4235 return btrfs_commit_transaction(trans, root);
4236}
4237
Josef Bacik96c3f432012-06-21 14:05:49 -04004238enum flush_state {
Josef Bacik67b0fd62012-09-24 13:42:00 -04004239 FLUSH_DELAYED_ITEMS_NR = 1,
4240 FLUSH_DELAYED_ITEMS = 2,
4241 FLUSH_DELALLOC = 3,
4242 FLUSH_DELALLOC_WAIT = 4,
Josef Bacikea658ba2012-09-11 16:57:25 -04004243 ALLOC_CHUNK = 5,
4244 COMMIT_TRANS = 6,
Josef Bacik96c3f432012-06-21 14:05:49 -04004245};
4246
4247static int flush_space(struct btrfs_root *root,
4248 struct btrfs_space_info *space_info, u64 num_bytes,
4249 u64 orig_bytes, int state)
4250{
4251 struct btrfs_trans_handle *trans;
4252 int nr;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004253 int ret = 0;
Josef Bacik96c3f432012-06-21 14:05:49 -04004254
4255 switch (state) {
Josef Bacik96c3f432012-06-21 14:05:49 -04004256 case FLUSH_DELAYED_ITEMS_NR:
4257 case FLUSH_DELAYED_ITEMS:
Miao Xie18cd8ea2013-11-04 23:13:22 +08004258 if (state == FLUSH_DELAYED_ITEMS_NR)
4259 nr = calc_reclaim_items_nr(root, num_bytes) * 2;
4260 else
Josef Bacik96c3f432012-06-21 14:05:49 -04004261 nr = -1;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004262
Josef Bacik96c3f432012-06-21 14:05:49 -04004263 trans = btrfs_join_transaction(root);
4264 if (IS_ERR(trans)) {
4265 ret = PTR_ERR(trans);
4266 break;
4267 }
4268 ret = btrfs_run_delayed_items_nr(trans, root, nr);
4269 btrfs_end_transaction(trans, root);
4270 break;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004271 case FLUSH_DELALLOC:
4272 case FLUSH_DELALLOC_WAIT:
Miao Xie24af7dd2014-03-06 13:55:00 +08004273 shrink_delalloc(root, num_bytes * 2, orig_bytes,
Josef Bacik67b0fd62012-09-24 13:42:00 -04004274 state == FLUSH_DELALLOC_WAIT);
4275 break;
Josef Bacikea658ba2012-09-11 16:57:25 -04004276 case ALLOC_CHUNK:
4277 trans = btrfs_join_transaction(root);
4278 if (IS_ERR(trans)) {
4279 ret = PTR_ERR(trans);
4280 break;
4281 }
4282 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Josef Bacikea658ba2012-09-11 16:57:25 -04004283 btrfs_get_alloc_profile(root, 0),
4284 CHUNK_ALLOC_NO_FORCE);
4285 btrfs_end_transaction(trans, root);
4286 if (ret == -ENOSPC)
4287 ret = 0;
4288 break;
Josef Bacik96c3f432012-06-21 14:05:49 -04004289 case COMMIT_TRANS:
4290 ret = may_commit_transaction(root, space_info, orig_bytes, 0);
4291 break;
4292 default:
4293 ret = -ENOSPC;
4294 break;
4295 }
4296
4297 return ret;
4298}
Miao Xie21c7e752014-05-13 17:29:04 -07004299
4300static inline u64
4301btrfs_calc_reclaim_metadata_size(struct btrfs_root *root,
4302 struct btrfs_space_info *space_info)
4303{
4304 u64 used;
4305 u64 expected;
4306 u64 to_reclaim;
4307
4308 to_reclaim = min_t(u64, num_online_cpus() * 1024 * 1024,
4309 16 * 1024 * 1024);
4310 spin_lock(&space_info->lock);
4311 if (can_overcommit(root, space_info, to_reclaim,
4312 BTRFS_RESERVE_FLUSH_ALL)) {
4313 to_reclaim = 0;
4314 goto out;
4315 }
4316
4317 used = space_info->bytes_used + space_info->bytes_reserved +
4318 space_info->bytes_pinned + space_info->bytes_readonly +
4319 space_info->bytes_may_use;
4320 if (can_overcommit(root, space_info, 1024 * 1024,
4321 BTRFS_RESERVE_FLUSH_ALL))
4322 expected = div_factor_fine(space_info->total_bytes, 95);
4323 else
4324 expected = div_factor_fine(space_info->total_bytes, 90);
4325
4326 if (used > expected)
4327 to_reclaim = used - expected;
4328 else
4329 to_reclaim = 0;
4330 to_reclaim = min(to_reclaim, space_info->bytes_may_use +
4331 space_info->bytes_reserved);
4332out:
4333 spin_unlock(&space_info->lock);
4334
4335 return to_reclaim;
4336}
4337
4338static inline int need_do_async_reclaim(struct btrfs_space_info *space_info,
4339 struct btrfs_fs_info *fs_info, u64 used)
4340{
4341 return (used >= div_factor_fine(space_info->total_bytes, 98) &&
4342 !btrfs_fs_closing(fs_info) &&
4343 !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state));
4344}
4345
4346static int btrfs_need_do_async_reclaim(struct btrfs_space_info *space_info,
Liu Bo25ce4592014-09-10 12:58:50 +08004347 struct btrfs_fs_info *fs_info,
4348 int flush_state)
Miao Xie21c7e752014-05-13 17:29:04 -07004349{
4350 u64 used;
4351
4352 spin_lock(&space_info->lock);
Liu Bo25ce4592014-09-10 12:58:50 +08004353 /*
4354 * We run out of space and have not got any free space via flush_space,
4355 * so don't bother doing async reclaim.
4356 */
4357 if (flush_state > COMMIT_TRANS && space_info->full) {
4358 spin_unlock(&space_info->lock);
4359 return 0;
4360 }
4361
Miao Xie21c7e752014-05-13 17:29:04 -07004362 used = space_info->bytes_used + space_info->bytes_reserved +
4363 space_info->bytes_pinned + space_info->bytes_readonly +
4364 space_info->bytes_may_use;
4365 if (need_do_async_reclaim(space_info, fs_info, used)) {
4366 spin_unlock(&space_info->lock);
4367 return 1;
4368 }
4369 spin_unlock(&space_info->lock);
4370
4371 return 0;
4372}
4373
4374static void btrfs_async_reclaim_metadata_space(struct work_struct *work)
4375{
4376 struct btrfs_fs_info *fs_info;
4377 struct btrfs_space_info *space_info;
4378 u64 to_reclaim;
4379 int flush_state;
4380
4381 fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work);
4382 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4383
4384 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root,
4385 space_info);
4386 if (!to_reclaim)
4387 return;
4388
4389 flush_state = FLUSH_DELAYED_ITEMS_NR;
4390 do {
4391 flush_space(fs_info->fs_root, space_info, to_reclaim,
4392 to_reclaim, flush_state);
4393 flush_state++;
Liu Bo25ce4592014-09-10 12:58:50 +08004394 if (!btrfs_need_do_async_reclaim(space_info, fs_info,
4395 flush_state))
Miao Xie21c7e752014-05-13 17:29:04 -07004396 return;
4397 } while (flush_state <= COMMIT_TRANS);
4398
Liu Bo25ce4592014-09-10 12:58:50 +08004399 if (btrfs_need_do_async_reclaim(space_info, fs_info, flush_state))
Miao Xie21c7e752014-05-13 17:29:04 -07004400 queue_work(system_unbound_wq, work);
4401}
4402
4403void btrfs_init_async_reclaim_work(struct work_struct *work)
4404{
4405 INIT_WORK(work, btrfs_async_reclaim_metadata_space);
4406}
4407
Josef Bacik663350a2011-11-03 22:54:25 -04004408/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004409 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
4410 * @root - the root we're allocating for
4411 * @block_rsv - the block_rsv we're allocating for
4412 * @orig_bytes - the number of bytes we want
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04004413 * @flush - whether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004414 *
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004415 * This will reserve orgi_bytes number of bytes from the space info associated
4416 * with the block_rsv. If there is not enough space it will make an attempt to
4417 * flush out space to make room. It will do this by flushing delalloc if
4418 * possible or committing the transaction. If flush is 0 then no attempts to
4419 * regain reservations will be made and this will fail if there is not enough
4420 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004421 */
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004422static int reserve_metadata_bytes(struct btrfs_root *root,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004423 struct btrfs_block_rsv *block_rsv,
Miao Xie08e007d2012-10-16 11:33:38 +00004424 u64 orig_bytes,
4425 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004426{
4427 struct btrfs_space_info *space_info = block_rsv->space_info;
Josef Bacik2bf64752011-09-26 17:12:22 -04004428 u64 used;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004429 u64 num_bytes = orig_bytes;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004430 int flush_state = FLUSH_DELAYED_ITEMS_NR;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004431 int ret = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004432 bool flushing = false;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004433
4434again:
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004435 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004436 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004437 /*
Miao Xie08e007d2012-10-16 11:33:38 +00004438 * We only want to wait if somebody other than us is flushing and we
4439 * are actually allowed to flush all things.
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004440 */
Miao Xie08e007d2012-10-16 11:33:38 +00004441 while (flush == BTRFS_RESERVE_FLUSH_ALL && !flushing &&
4442 space_info->flush) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004443 spin_unlock(&space_info->lock);
4444 /*
4445 * If we have a trans handle we can't wait because the flusher
4446 * may have to commit the transaction, which would mean we would
4447 * deadlock since we are waiting for the flusher to finish, but
4448 * hold the current transaction open.
4449 */
Josef Bacik663350a2011-11-03 22:54:25 -04004450 if (current->journal_info)
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004451 return -EAGAIN;
Arne Jansenb9688bb2012-04-18 10:27:16 +02004452 ret = wait_event_killable(space_info->wait, !space_info->flush);
4453 /* Must have been killed, return */
4454 if (ret)
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004455 return -EINTR;
4456
4457 spin_lock(&space_info->lock);
4458 }
4459
4460 ret = -ENOSPC;
Josef Bacik2bf64752011-09-26 17:12:22 -04004461 used = space_info->bytes_used + space_info->bytes_reserved +
4462 space_info->bytes_pinned + space_info->bytes_readonly +
4463 space_info->bytes_may_use;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004464
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004465 /*
4466 * The idea here is that we've not already over-reserved the block group
4467 * then we can go ahead and save our reservation first and then start
4468 * flushing if we need to. Otherwise if we've already overcommitted
4469 * lets start flushing stuff first and then come back and try to make
4470 * our reservation.
4471 */
Josef Bacik2bf64752011-09-26 17:12:22 -04004472 if (used <= space_info->total_bytes) {
4473 if (used + orig_bytes <= space_info->total_bytes) {
Josef Bacikfb25e912011-07-26 17:00:46 -04004474 space_info->bytes_may_use += orig_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004475 trace_btrfs_space_reservation(root->fs_info,
Liu Bo2bcc0322012-03-29 09:57:44 -04004476 "space_info", space_info->flags, orig_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004477 ret = 0;
4478 } else {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004479 /*
4480 * Ok set num_bytes to orig_bytes since we aren't
4481 * overocmmitted, this way we only try and reclaim what
4482 * we need.
4483 */
4484 num_bytes = orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004485 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004486 } else {
4487 /*
4488 * Ok we're over committed, set num_bytes to the overcommitted
4489 * amount plus the amount of bytes that we need for this
4490 * reservation.
4491 */
Josef Bacik2bf64752011-09-26 17:12:22 -04004492 num_bytes = used - space_info->total_bytes +
Josef Bacik96c3f432012-06-21 14:05:49 -04004493 (orig_bytes * 2);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004494 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004495
Josef Bacik44734ed2012-09-28 16:04:19 -04004496 if (ret && can_overcommit(root, space_info, orig_bytes, flush)) {
4497 space_info->bytes_may_use += orig_bytes;
4498 trace_btrfs_space_reservation(root->fs_info, "space_info",
4499 space_info->flags, orig_bytes,
4500 1);
4501 ret = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04004502 }
4503
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004504 /*
4505 * Couldn't make our reservation, save our place so while we're trying
4506 * to reclaim space we can actually use it instead of somebody else
4507 * stealing it from us.
Miao Xie08e007d2012-10-16 11:33:38 +00004508 *
4509 * We make the other tasks wait for the flush only when we can flush
4510 * all things.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004511 */
Josef Bacik72bcd992012-12-18 15:16:34 -05004512 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004513 flushing = true;
4514 space_info->flush = 1;
Miao Xie21c7e752014-05-13 17:29:04 -07004515 } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
4516 used += orig_bytes;
Josef Bacikf6acfd52014-09-18 11:27:17 -04004517 /*
4518 * We will do the space reservation dance during log replay,
4519 * which means we won't have fs_info->fs_root set, so don't do
4520 * the async reclaim as we will panic.
4521 */
4522 if (!root->fs_info->log_root_recovering &&
4523 need_do_async_reclaim(space_info, root->fs_info, used) &&
Miao Xie21c7e752014-05-13 17:29:04 -07004524 !work_busy(&root->fs_info->async_reclaim_work))
4525 queue_work(system_unbound_wq,
4526 &root->fs_info->async_reclaim_work);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004527 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004528 spin_unlock(&space_info->lock);
4529
Miao Xie08e007d2012-10-16 11:33:38 +00004530 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004531 goto out;
4532
Josef Bacik96c3f432012-06-21 14:05:49 -04004533 ret = flush_space(root, space_info, num_bytes, orig_bytes,
4534 flush_state);
4535 flush_state++;
Miao Xie08e007d2012-10-16 11:33:38 +00004536
4537 /*
4538 * If we are FLUSH_LIMIT, we can not flush delalloc, or the deadlock
4539 * would happen. So skip delalloc flush.
4540 */
4541 if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4542 (flush_state == FLUSH_DELALLOC ||
4543 flush_state == FLUSH_DELALLOC_WAIT))
4544 flush_state = ALLOC_CHUNK;
4545
Josef Bacik96c3f432012-06-21 14:05:49 -04004546 if (!ret)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004547 goto again;
Miao Xie08e007d2012-10-16 11:33:38 +00004548 else if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4549 flush_state < COMMIT_TRANS)
4550 goto again;
4551 else if (flush == BTRFS_RESERVE_FLUSH_ALL &&
4552 flush_state <= COMMIT_TRANS)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004553 goto again;
4554
4555out:
Josef Bacik5d803662013-02-07 16:06:02 -05004556 if (ret == -ENOSPC &&
4557 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
4558 struct btrfs_block_rsv *global_rsv =
4559 &root->fs_info->global_block_rsv;
4560
4561 if (block_rsv != global_rsv &&
4562 !block_rsv_use_bytes(global_rsv, orig_bytes))
4563 ret = 0;
4564 }
Jeff Mahoneycab45e22013-10-16 16:27:01 -04004565 if (ret == -ENOSPC)
4566 trace_btrfs_space_reservation(root->fs_info,
4567 "space_info:enospc",
4568 space_info->flags, orig_bytes, 1);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004569 if (flushing) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004570 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004571 space_info->flush = 0;
4572 wake_up_all(&space_info->wait);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004573 spin_unlock(&space_info->lock);
4574 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004575 return ret;
4576}
4577
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004578static struct btrfs_block_rsv *get_block_rsv(
4579 const struct btrfs_trans_handle *trans,
4580 const struct btrfs_root *root)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004581{
Josef Bacik4c13d752011-08-30 11:31:29 -04004582 struct btrfs_block_rsv *block_rsv = NULL;
4583
Miao Xie27cdeb72014-04-02 19:51:05 +08004584 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Josef Bacik0e721102012-06-26 16:13:18 -04004585 block_rsv = trans->block_rsv;
4586
4587 if (root == root->fs_info->csum_root && trans->adding_csums)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004588 block_rsv = trans->block_rsv;
Josef Bacik4c13d752011-08-30 11:31:29 -04004589
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004590 if (root == root->fs_info->uuid_root)
4591 block_rsv = trans->block_rsv;
4592
Josef Bacik4c13d752011-08-30 11:31:29 -04004593 if (!block_rsv)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004594 block_rsv = root->block_rsv;
4595
4596 if (!block_rsv)
4597 block_rsv = &root->fs_info->empty_block_rsv;
4598
4599 return block_rsv;
4600}
4601
4602static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
4603 u64 num_bytes)
4604{
4605 int ret = -ENOSPC;
4606 spin_lock(&block_rsv->lock);
4607 if (block_rsv->reserved >= num_bytes) {
4608 block_rsv->reserved -= num_bytes;
4609 if (block_rsv->reserved < block_rsv->size)
4610 block_rsv->full = 0;
4611 ret = 0;
4612 }
4613 spin_unlock(&block_rsv->lock);
4614 return ret;
4615}
4616
4617static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
4618 u64 num_bytes, int update_size)
4619{
4620 spin_lock(&block_rsv->lock);
4621 block_rsv->reserved += num_bytes;
4622 if (update_size)
4623 block_rsv->size += num_bytes;
4624 else if (block_rsv->reserved >= block_rsv->size)
4625 block_rsv->full = 1;
4626 spin_unlock(&block_rsv->lock);
4627}
4628
Josef Bacikd52be812013-05-29 14:54:47 -04004629int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
4630 struct btrfs_block_rsv *dest, u64 num_bytes,
4631 int min_factor)
4632{
4633 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
4634 u64 min_bytes;
4635
4636 if (global_rsv->space_info != dest->space_info)
4637 return -ENOSPC;
4638
4639 spin_lock(&global_rsv->lock);
4640 min_bytes = div_factor(global_rsv->size, min_factor);
4641 if (global_rsv->reserved < min_bytes + num_bytes) {
4642 spin_unlock(&global_rsv->lock);
4643 return -ENOSPC;
4644 }
4645 global_rsv->reserved -= num_bytes;
4646 if (global_rsv->reserved < global_rsv->size)
4647 global_rsv->full = 0;
4648 spin_unlock(&global_rsv->lock);
4649
4650 block_rsv_add_bytes(dest, num_bytes, 1);
4651 return 0;
4652}
4653
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004654static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
4655 struct btrfs_block_rsv *block_rsv,
David Sterba62a45b62011-04-20 15:52:26 +02004656 struct btrfs_block_rsv *dest, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004657{
4658 struct btrfs_space_info *space_info = block_rsv->space_info;
4659
4660 spin_lock(&block_rsv->lock);
4661 if (num_bytes == (u64)-1)
4662 num_bytes = block_rsv->size;
4663 block_rsv->size -= num_bytes;
4664 if (block_rsv->reserved >= block_rsv->size) {
4665 num_bytes = block_rsv->reserved - block_rsv->size;
4666 block_rsv->reserved = block_rsv->size;
4667 block_rsv->full = 1;
4668 } else {
4669 num_bytes = 0;
4670 }
4671 spin_unlock(&block_rsv->lock);
4672
4673 if (num_bytes > 0) {
4674 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00004675 spin_lock(&dest->lock);
4676 if (!dest->full) {
4677 u64 bytes_to_add;
4678
4679 bytes_to_add = dest->size - dest->reserved;
4680 bytes_to_add = min(num_bytes, bytes_to_add);
4681 dest->reserved += bytes_to_add;
4682 if (dest->reserved >= dest->size)
4683 dest->full = 1;
4684 num_bytes -= bytes_to_add;
4685 }
4686 spin_unlock(&dest->lock);
4687 }
4688 if (num_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04004689 spin_lock(&space_info->lock);
Josef Bacikfb25e912011-07-26 17:00:46 -04004690 space_info->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004691 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004692 space_info->flags, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004693 spin_unlock(&space_info->lock);
4694 }
4695 }
4696}
4697
4698static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src,
4699 struct btrfs_block_rsv *dst, u64 num_bytes)
4700{
4701 int ret;
4702
4703 ret = block_rsv_use_bytes(src, num_bytes);
4704 if (ret)
4705 return ret;
4706
4707 block_rsv_add_bytes(dst, num_bytes, 1);
4708 return 0;
4709}
4710
Miao Xie66d8f3d2012-09-06 04:02:28 -06004711void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004712{
4713 memset(rsv, 0, sizeof(*rsv));
4714 spin_lock_init(&rsv->lock);
Miao Xie66d8f3d2012-09-06 04:02:28 -06004715 rsv->type = type;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004716}
4717
Miao Xie66d8f3d2012-09-06 04:02:28 -06004718struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root,
4719 unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004720{
4721 struct btrfs_block_rsv *block_rsv;
4722 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004723
4724 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
4725 if (!block_rsv)
4726 return NULL;
4727
Miao Xie66d8f3d2012-09-06 04:02:28 -06004728 btrfs_init_block_rsv(block_rsv, type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004729 block_rsv->space_info = __find_space_info(fs_info,
4730 BTRFS_BLOCK_GROUP_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004731 return block_rsv;
4732}
4733
4734void btrfs_free_block_rsv(struct btrfs_root *root,
4735 struct btrfs_block_rsv *rsv)
4736{
Josef Bacik2aaa6652012-08-29 14:27:18 -04004737 if (!rsv)
4738 return;
Josef Bacikdabdb642011-08-08 12:50:18 -04004739 btrfs_block_rsv_release(root, rsv, (u64)-1);
4740 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004741}
4742
Miao Xie08e007d2012-10-16 11:33:38 +00004743int btrfs_block_rsv_add(struct btrfs_root *root,
4744 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
4745 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004746{
4747 int ret;
4748
4749 if (num_bytes == 0)
4750 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004751
Miao Xie61b520a2011-11-10 20:45:05 -05004752 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004753 if (!ret) {
4754 block_rsv_add_bytes(block_rsv, num_bytes, 1);
4755 return 0;
4756 }
4757
Yan, Zhengf0486c62010-05-16 10:46:25 -04004758 return ret;
4759}
4760
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004761int btrfs_block_rsv_check(struct btrfs_root *root,
Josef Bacik36ba0222011-10-18 12:15:48 -04004762 struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004763{
4764 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004765 int ret = -ENOSPC;
4766
4767 if (!block_rsv)
4768 return 0;
4769
4770 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04004771 num_bytes = div_factor(block_rsv->size, min_factor);
4772 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004773 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004774 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004775
Josef Bacik36ba0222011-10-18 12:15:48 -04004776 return ret;
4777}
4778
Miao Xie08e007d2012-10-16 11:33:38 +00004779int btrfs_block_rsv_refill(struct btrfs_root *root,
4780 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
4781 enum btrfs_reserve_flush_enum flush)
Josef Bacik36ba0222011-10-18 12:15:48 -04004782{
4783 u64 num_bytes = 0;
4784 int ret = -ENOSPC;
4785
4786 if (!block_rsv)
4787 return 0;
4788
4789 spin_lock(&block_rsv->lock);
4790 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04004791 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004792 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04004793 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04004794 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004795 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04004796
Yan, Zhengf0486c62010-05-16 10:46:25 -04004797 if (!ret)
4798 return 0;
4799
Miao Xieaa38a712011-11-18 17:43:00 +08004800 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Josef Bacikdabdb642011-08-08 12:50:18 -04004801 if (!ret) {
4802 block_rsv_add_bytes(block_rsv, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004803 return 0;
4804 }
4805
Josef Bacik13553e52011-08-08 13:33:21 -04004806 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004807}
4808
4809int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv,
4810 struct btrfs_block_rsv *dst_rsv,
4811 u64 num_bytes)
4812{
4813 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
4814}
4815
4816void btrfs_block_rsv_release(struct btrfs_root *root,
4817 struct btrfs_block_rsv *block_rsv,
4818 u64 num_bytes)
4819{
4820 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Liu Bo17504582013-12-29 21:44:50 +08004821 if (global_rsv == block_rsv ||
Yan, Zhengf0486c62010-05-16 10:46:25 -04004822 block_rsv->space_info != global_rsv->space_info)
4823 global_rsv = NULL;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004824 block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv,
4825 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004826}
4827
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004828/*
4829 * helper to calculate size of global block reservation.
4830 * the desired value is sum of space used by extent tree,
4831 * checksum tree and root tree
4832 */
4833static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info)
4834{
4835 struct btrfs_space_info *sinfo;
4836 u64 num_bytes;
4837 u64 meta_used;
4838 u64 data_used;
David Sterba6c417612011-04-13 15:41:04 +02004839 int csum_size = btrfs_super_csum_size(fs_info->super_copy);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004840
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004841 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA);
4842 spin_lock(&sinfo->lock);
4843 data_used = sinfo->bytes_used;
4844 spin_unlock(&sinfo->lock);
4845
4846 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4847 spin_lock(&sinfo->lock);
Josef Bacik6d487552010-10-15 15:13:32 -04004848 if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA)
4849 data_used = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004850 meta_used = sinfo->bytes_used;
4851 spin_unlock(&sinfo->lock);
4852
4853 num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) *
4854 csum_size * 2;
4855 num_bytes += div64_u64(data_used + meta_used, 50);
4856
4857 if (num_bytes * 3 > meta_used)
Chris Mason8e62c2d2012-04-12 13:46:48 -04004858 num_bytes = div64_u64(meta_used, 3);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004859
David Sterba707e8a02014-06-04 19:22:26 +02004860 return ALIGN(num_bytes, fs_info->extent_root->nodesize << 10);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004861}
4862
4863static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
4864{
4865 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
4866 struct btrfs_space_info *sinfo = block_rsv->space_info;
4867 u64 num_bytes;
4868
4869 num_bytes = calc_global_metadata_size(fs_info);
4870
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004871 spin_lock(&sinfo->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04004872 spin_lock(&block_rsv->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004873
Josef Bacikfdf30d12013-03-26 15:31:45 -04004874 block_rsv->size = min_t(u64, num_bytes, 512 * 1024 * 1024);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004875
4876 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
Josef Bacik6d487552010-10-15 15:13:32 -04004877 sinfo->bytes_reserved + sinfo->bytes_readonly +
4878 sinfo->bytes_may_use;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004879
4880 if (sinfo->total_bytes > num_bytes) {
4881 num_bytes = sinfo->total_bytes - num_bytes;
4882 block_rsv->reserved += num_bytes;
Josef Bacikfb25e912011-07-26 17:00:46 -04004883 sinfo->bytes_may_use += num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004884 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004885 sinfo->flags, num_bytes, 1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004886 }
4887
4888 if (block_rsv->reserved >= block_rsv->size) {
4889 num_bytes = block_rsv->reserved - block_rsv->size;
Josef Bacikfb25e912011-07-26 17:00:46 -04004890 sinfo->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004891 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004892 sinfo->flags, num_bytes, 0);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004893 block_rsv->reserved = block_rsv->size;
4894 block_rsv->full = 1;
4895 }
David Sterba182608c2011-05-05 13:13:16 +02004896
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004897 spin_unlock(&block_rsv->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04004898 spin_unlock(&sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004899}
4900
Yan, Zhengf0486c62010-05-16 10:46:25 -04004901static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
4902{
4903 struct btrfs_space_info *space_info;
4904
4905 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4906 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004907
4908 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004909 fs_info->global_block_rsv.space_info = space_info;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004910 fs_info->delalloc_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004911 fs_info->trans_block_rsv.space_info = space_info;
4912 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04004913 fs_info->delayed_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004914
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004915 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
4916 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
4917 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
4918 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Stefan Behrens3a6cad92013-05-16 14:48:19 +00004919 if (fs_info->quota_root)
4920 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004921 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004922
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004923 update_global_block_rsv(fs_info);
4924}
4925
4926static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
4927{
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004928 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
4929 (u64)-1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004930 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
4931 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
4932 WARN_ON(fs_info->trans_block_rsv.size > 0);
4933 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
4934 WARN_ON(fs_info->chunk_block_rsv.size > 0);
4935 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04004936 WARN_ON(fs_info->delayed_block_rsv.size > 0);
4937 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04004938}
4939
Yan, Zhenga22285a2010-05-16 10:48:46 -04004940void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
4941 struct btrfs_root *root)
4942{
Josef Bacik0e721102012-06-26 16:13:18 -04004943 if (!trans->block_rsv)
4944 return;
4945
Yan, Zhenga22285a2010-05-16 10:48:46 -04004946 if (!trans->bytes_reserved)
4947 return;
4948
Chris Masone77266e2012-02-24 10:39:05 -05004949 trace_btrfs_space_reservation(root->fs_info, "transaction",
Liu Bo2bcc0322012-03-29 09:57:44 -04004950 trans->transid, trans->bytes_reserved, 0);
Josef Bacikb24e03d2011-10-14 14:40:17 -04004951 btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004952 trans->bytes_reserved = 0;
4953}
4954
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004955/* Can only return 0 or -ENOSPC */
Yan, Zhengd68fc572010-05-16 10:49:58 -04004956int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
4957 struct inode *inode)
4958{
4959 struct btrfs_root *root = BTRFS_I(inode)->root;
4960 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
4961 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
4962
4963 /*
Josef Bacikfcb80c22011-05-03 10:40:22 -04004964 * We need to hold space in order to delete our orphan item once we've
4965 * added it, so this takes the reservation so we can release it later
4966 * when we are truly done with the orphan item.
Yan, Zhengd68fc572010-05-16 10:49:58 -04004967 */
Chris Masonff5714c2011-05-28 07:00:39 -04004968 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004969 trace_btrfs_space_reservation(root->fs_info, "orphan",
4970 btrfs_ino(inode), num_bytes, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04004971 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
4972}
4973
4974void btrfs_orphan_release_metadata(struct inode *inode)
4975{
4976 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonff5714c2011-05-28 07:00:39 -04004977 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004978 trace_btrfs_space_reservation(root->fs_info, "orphan",
4979 btrfs_ino(inode), num_bytes, 0);
Yan, Zhengd68fc572010-05-16 10:49:58 -04004980 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
4981}
4982
Miao Xied5c12072013-02-28 10:04:33 +00004983/*
4984 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
4985 * root: the root of the parent directory
4986 * rsv: block reservation
4987 * items: the number of items that we need do reservation
4988 * qgroup_reserved: used to return the reserved size in qgroup
4989 *
4990 * This function is used to reserve the space for snapshot/subvolume
4991 * creation and deletion. Those operations are different with the
4992 * common file/directory operations, they change two fs/file trees
4993 * and root tree, the number of items that the qgroup reserves is
4994 * different with the free space reservation. So we can not use
4995 * the space reseravtion mechanism in start_transaction().
4996 */
4997int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
4998 struct btrfs_block_rsv *rsv,
4999 int items,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005000 u64 *qgroup_reserved,
5001 bool use_global_rsv)
Yan, Zhenga22285a2010-05-16 10:48:46 -04005002{
Miao Xied5c12072013-02-28 10:04:33 +00005003 u64 num_bytes;
5004 int ret;
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005005 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Miao Xied5c12072013-02-28 10:04:33 +00005006
5007 if (root->fs_info->quota_enabled) {
5008 /* One for parent inode, two for dir entries */
David Sterba707e8a02014-06-04 19:22:26 +02005009 num_bytes = 3 * root->nodesize;
Miao Xied5c12072013-02-28 10:04:33 +00005010 ret = btrfs_qgroup_reserve(root, num_bytes);
5011 if (ret)
5012 return ret;
5013 } else {
5014 num_bytes = 0;
5015 }
5016
5017 *qgroup_reserved = num_bytes;
5018
5019 num_bytes = btrfs_calc_trans_metadata_size(root, items);
5020 rsv->space_info = __find_space_info(root->fs_info,
5021 BTRFS_BLOCK_GROUP_METADATA);
5022 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
5023 BTRFS_RESERVE_FLUSH_ALL);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005024
5025 if (ret == -ENOSPC && use_global_rsv)
5026 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes);
5027
Miao Xied5c12072013-02-28 10:04:33 +00005028 if (ret) {
5029 if (*qgroup_reserved)
5030 btrfs_qgroup_free(root, *qgroup_reserved);
5031 }
5032
5033 return ret;
5034}
5035
5036void btrfs_subvolume_release_metadata(struct btrfs_root *root,
5037 struct btrfs_block_rsv *rsv,
5038 u64 qgroup_reserved)
5039{
5040 btrfs_block_rsv_release(root, rsv, (u64)-1);
5041 if (qgroup_reserved)
5042 btrfs_qgroup_free(root, qgroup_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005043}
5044
Josef Bacik7709cde2011-08-04 10:25:02 -04005045/**
5046 * drop_outstanding_extent - drop an outstanding extent
5047 * @inode: the inode we're dropping the extent for
5048 *
5049 * This is called when we are freeing up an outstanding extent, either called
5050 * after an error or after an extent is written. This will return the number of
5051 * reserved extents that need to be freed. This must be called with
5052 * BTRFS_I(inode)->lock held.
5053 */
Josef Bacik9e0baf62011-07-15 15:16:44 +00005054static unsigned drop_outstanding_extent(struct inode *inode)
5055{
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005056 unsigned drop_inode_space = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005057 unsigned dropped_extents = 0;
5058
Josef Bacik9e0baf62011-07-15 15:16:44 +00005059 BUG_ON(!BTRFS_I(inode)->outstanding_extents);
5060 BTRFS_I(inode)->outstanding_extents--;
5061
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005062 if (BTRFS_I(inode)->outstanding_extents == 0 &&
Josef Bacik72ac3c02012-05-23 14:13:11 -04005063 test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5064 &BTRFS_I(inode)->runtime_flags))
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005065 drop_inode_space = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005066
Josef Bacik9e0baf62011-07-15 15:16:44 +00005067 /*
5068 * If we have more or the same amount of outsanding extents than we have
5069 * reserved then we need to leave the reserved extents count alone.
5070 */
5071 if (BTRFS_I(inode)->outstanding_extents >=
5072 BTRFS_I(inode)->reserved_extents)
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005073 return drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005074
5075 dropped_extents = BTRFS_I(inode)->reserved_extents -
5076 BTRFS_I(inode)->outstanding_extents;
5077 BTRFS_I(inode)->reserved_extents -= dropped_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005078 return dropped_extents + drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005079}
5080
Josef Bacik7709cde2011-08-04 10:25:02 -04005081/**
5082 * calc_csum_metadata_size - return the amount of metada space that must be
5083 * reserved/free'd for the given bytes.
5084 * @inode: the inode we're manipulating
5085 * @num_bytes: the number of bytes in question
5086 * @reserve: 1 if we are reserving space, 0 if we are freeing space
5087 *
5088 * This adjusts the number of csum_bytes in the inode and then returns the
5089 * correct amount of metadata that must either be reserved or freed. We
5090 * calculate how many checksums we can fit into one leaf and then divide the
5091 * number of bytes that will need to be checksumed by this value to figure out
5092 * how many checksums will be required. If we are adding bytes then the number
5093 * may go up and we will return the number of additional bytes that must be
5094 * reserved. If it is going down we will return the number of bytes that must
5095 * be freed.
5096 *
5097 * This must be called with BTRFS_I(inode)->lock held.
5098 */
5099static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes,
5100 int reserve)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005101{
Josef Bacik7709cde2011-08-04 10:25:02 -04005102 struct btrfs_root *root = BTRFS_I(inode)->root;
5103 u64 csum_size;
5104 int num_csums_per_leaf;
5105 int num_csums;
5106 int old_csums;
5107
5108 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM &&
5109 BTRFS_I(inode)->csum_bytes == 0)
5110 return 0;
5111
5112 old_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize);
5113 if (reserve)
5114 BTRFS_I(inode)->csum_bytes += num_bytes;
5115 else
5116 BTRFS_I(inode)->csum_bytes -= num_bytes;
5117 csum_size = BTRFS_LEAF_DATA_SIZE(root) - sizeof(struct btrfs_item);
5118 num_csums_per_leaf = (int)div64_u64(csum_size,
5119 sizeof(struct btrfs_csum_item) +
5120 sizeof(struct btrfs_disk_key));
5121 num_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize);
5122 num_csums = num_csums + num_csums_per_leaf - 1;
5123 num_csums = num_csums / num_csums_per_leaf;
5124
5125 old_csums = old_csums + num_csums_per_leaf - 1;
5126 old_csums = old_csums / num_csums_per_leaf;
5127
5128 /* No change, no need to reserve more */
5129 if (old_csums == num_csums)
5130 return 0;
5131
5132 if (reserve)
5133 return btrfs_calc_trans_metadata_size(root,
5134 num_csums - old_csums);
5135
5136 return btrfs_calc_trans_metadata_size(root, old_csums - num_csums);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005137}
5138
5139int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
5140{
5141 struct btrfs_root *root = BTRFS_I(inode)->root;
5142 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005143 u64 to_reserve = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05005144 u64 csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005145 unsigned nr_extents = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05005146 int extra_reserve = 0;
Miao Xie08e007d2012-10-16 11:33:38 +00005147 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
Jan Schmidteb6b88d2013-01-27 23:26:00 -07005148 int ret = 0;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005149 bool delalloc_lock = true;
Wang Shilong88e081bf2013-03-01 11:36:01 +00005150 u64 to_free = 0;
5151 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005152
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005153 /* If we are a free space inode we need to not flush since we will be in
5154 * the middle of a transaction commit. We also don't need the delalloc
5155 * mutex since we won't race with anybody. We need this mostly to make
5156 * lockdep shut its filthy mouth.
5157 */
5158 if (btrfs_is_free_space_inode(inode)) {
Miao Xie08e007d2012-10-16 11:33:38 +00005159 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005160 delalloc_lock = false;
5161 }
Josef Bacikc09544e2011-08-30 10:19:10 -04005162
Miao Xie08e007d2012-10-16 11:33:38 +00005163 if (flush != BTRFS_RESERVE_NO_FLUSH &&
5164 btrfs_transaction_in_commit(root->fs_info))
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005165 schedule_timeout(1);
5166
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005167 if (delalloc_lock)
5168 mutex_lock(&BTRFS_I(inode)->delalloc_mutex);
5169
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005170 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005171
Josef Bacik9e0baf62011-07-15 15:16:44 +00005172 spin_lock(&BTRFS_I(inode)->lock);
5173 BTRFS_I(inode)->outstanding_extents++;
Josef Bacik57a45ced2011-01-25 16:30:38 -05005174
Josef Bacik9e0baf62011-07-15 15:16:44 +00005175 if (BTRFS_I(inode)->outstanding_extents >
Josef Bacik660d3f62011-12-09 11:18:51 -05005176 BTRFS_I(inode)->reserved_extents)
Josef Bacik9e0baf62011-07-15 15:16:44 +00005177 nr_extents = BTRFS_I(inode)->outstanding_extents -
5178 BTRFS_I(inode)->reserved_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005179
5180 /*
5181 * Add an item to reserve for updating the inode when we complete the
5182 * delalloc io.
5183 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04005184 if (!test_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5185 &BTRFS_I(inode)->runtime_flags)) {
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005186 nr_extents++;
Josef Bacik660d3f62011-12-09 11:18:51 -05005187 extra_reserve = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005188 }
5189
5190 to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04005191 to_reserve += calc_csum_metadata_size(inode, num_bytes, 1);
Josef Bacik660d3f62011-12-09 11:18:51 -05005192 csum_bytes = BTRFS_I(inode)->csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005193 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05005194
Wang Shilong88e081bf2013-03-01 11:36:01 +00005195 if (root->fs_info->quota_enabled) {
Arne Jansenc5567232011-09-14 15:44:05 +02005196 ret = btrfs_qgroup_reserve(root, num_bytes +
David Sterba707e8a02014-06-04 19:22:26 +02005197 nr_extents * root->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005198 if (ret)
5199 goto out_fail;
Wang Shilonga9870c02013-03-01 11:33:01 +00005200 }
Arne Jansenc5567232011-09-14 15:44:05 +02005201
Wang Shilong88e081bf2013-03-01 11:36:01 +00005202 ret = reserve_metadata_bytes(root, block_rsv, to_reserve, flush);
5203 if (unlikely(ret)) {
5204 if (root->fs_info->quota_enabled)
Miao Xie4b5829a2012-12-05 10:53:25 +00005205 btrfs_qgroup_free(root, num_bytes +
David Sterba707e8a02014-06-04 19:22:26 +02005206 nr_extents * root->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005207 goto out_fail;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005208 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005209
Josef Bacik660d3f62011-12-09 11:18:51 -05005210 spin_lock(&BTRFS_I(inode)->lock);
5211 if (extra_reserve) {
Josef Bacik72ac3c02012-05-23 14:13:11 -04005212 set_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5213 &BTRFS_I(inode)->runtime_flags);
Josef Bacik660d3f62011-12-09 11:18:51 -05005214 nr_extents--;
5215 }
5216 BTRFS_I(inode)->reserved_extents += nr_extents;
5217 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005218
5219 if (delalloc_lock)
5220 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
Josef Bacik660d3f62011-12-09 11:18:51 -05005221
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005222 if (to_reserve)
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05305223 trace_btrfs_space_reservation(root->fs_info, "delalloc",
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005224 btrfs_ino(inode), to_reserve, 1);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005225 block_rsv_add_bytes(block_rsv, to_reserve, 1);
5226
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005227 return 0;
Wang Shilong88e081bf2013-03-01 11:36:01 +00005228
5229out_fail:
5230 spin_lock(&BTRFS_I(inode)->lock);
5231 dropped = drop_outstanding_extent(inode);
5232 /*
5233 * If the inodes csum_bytes is the same as the original
5234 * csum_bytes then we know we haven't raced with any free()ers
5235 * so we can just reduce our inodes csum bytes and carry on.
Wang Shilong88e081bf2013-03-01 11:36:01 +00005236 */
Josef Bacikf4881bc2013-03-25 16:03:35 -04005237 if (BTRFS_I(inode)->csum_bytes == csum_bytes) {
Wang Shilong88e081bf2013-03-01 11:36:01 +00005238 calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacikf4881bc2013-03-25 16:03:35 -04005239 } else {
5240 u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes;
5241 u64 bytes;
5242
5243 /*
5244 * This is tricky, but first we need to figure out how much we
5245 * free'd from any free-ers that occured during this
5246 * reservation, so we reset ->csum_bytes to the csum_bytes
5247 * before we dropped our lock, and then call the free for the
5248 * number of bytes that were freed while we were trying our
5249 * reservation.
5250 */
5251 bytes = csum_bytes - BTRFS_I(inode)->csum_bytes;
5252 BTRFS_I(inode)->csum_bytes = csum_bytes;
5253 to_free = calc_csum_metadata_size(inode, bytes, 0);
5254
5255
5256 /*
5257 * Now we need to see how much we would have freed had we not
5258 * been making this reservation and our ->csum_bytes were not
5259 * artificially inflated.
5260 */
5261 BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes;
5262 bytes = csum_bytes - orig_csum_bytes;
5263 bytes = calc_csum_metadata_size(inode, bytes, 0);
5264
5265 /*
5266 * Now reset ->csum_bytes to what it should be. If bytes is
5267 * more than to_free then we would have free'd more space had we
5268 * not had an artificially high ->csum_bytes, so we need to free
5269 * the remainder. If bytes is the same or less then we don't
5270 * need to do anything, the other free-ers did the correct
5271 * thing.
5272 */
5273 BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes;
5274 if (bytes > to_free)
5275 to_free = bytes - to_free;
5276 else
5277 to_free = 0;
5278 }
Wang Shilong88e081bf2013-03-01 11:36:01 +00005279 spin_unlock(&BTRFS_I(inode)->lock);
5280 if (dropped)
5281 to_free += btrfs_calc_trans_metadata_size(root, dropped);
5282
5283 if (to_free) {
5284 btrfs_block_rsv_release(root, block_rsv, to_free);
5285 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5286 btrfs_ino(inode), to_free, 0);
5287 }
5288 if (delalloc_lock)
5289 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
5290 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005291}
5292
Josef Bacik7709cde2011-08-04 10:25:02 -04005293/**
5294 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
5295 * @inode: the inode to release the reservation for
5296 * @num_bytes: the number of bytes we're releasing
5297 *
5298 * This will release the metadata reservation for an inode. This can be called
5299 * once we complete IO for a given set of bytes to release their metadata
5300 * reservations.
5301 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005302void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
5303{
5304 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005305 u64 to_free = 0;
5306 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005307
5308 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik7709cde2011-08-04 10:25:02 -04005309 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00005310 dropped = drop_outstanding_extent(inode);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005311
Miao Xie09348562013-02-07 10:12:07 +00005312 if (num_bytes)
5313 to_free = calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacik7709cde2011-08-04 10:25:02 -04005314 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00005315 if (dropped > 0)
5316 to_free += btrfs_calc_trans_metadata_size(root, dropped);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005317
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005318 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5319 btrfs_ino(inode), to_free, 0);
Arne Jansenc5567232011-09-14 15:44:05 +02005320 if (root->fs_info->quota_enabled) {
5321 btrfs_qgroup_free(root, num_bytes +
David Sterba707e8a02014-06-04 19:22:26 +02005322 dropped * root->nodesize);
Arne Jansenc5567232011-09-14 15:44:05 +02005323 }
5324
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005325 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
5326 to_free);
5327}
5328
Josef Bacik7709cde2011-08-04 10:25:02 -04005329/**
5330 * btrfs_delalloc_reserve_space - reserve data and metadata space for delalloc
5331 * @inode: inode we're writing to
5332 * @num_bytes: the number of bytes we want to allocate
5333 *
5334 * This will do the following things
5335 *
5336 * o reserve space in the data space info for num_bytes
5337 * o reserve space in the metadata space info based on number of outstanding
5338 * extents and how much csums will be needed
5339 * o add to the inodes ->delalloc_bytes
5340 * o add it to the fs_info's delalloc inodes list.
5341 *
5342 * This will return 0 for success and -ENOSPC if there is no space left.
5343 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005344int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes)
5345{
5346 int ret;
5347
5348 ret = btrfs_check_data_free_space(inode, num_bytes);
5349 if (ret)
5350 return ret;
5351
5352 ret = btrfs_delalloc_reserve_metadata(inode, num_bytes);
5353 if (ret) {
5354 btrfs_free_reserved_data_space(inode, num_bytes);
5355 return ret;
5356 }
5357
5358 return 0;
5359}
5360
Josef Bacik7709cde2011-08-04 10:25:02 -04005361/**
5362 * btrfs_delalloc_release_space - release data and metadata space for delalloc
5363 * @inode: inode we're releasing space for
5364 * @num_bytes: the number of bytes we want to free up
5365 *
5366 * This must be matched with a call to btrfs_delalloc_reserve_space. This is
5367 * called in the case that we don't need the metadata AND data reservations
5368 * anymore. So if there is an error or we insert an inline extent.
5369 *
5370 * This function will release the metadata space that was not used and will
5371 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
5372 * list if there are no delalloc bytes left.
5373 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005374void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes)
5375{
5376 btrfs_delalloc_release_metadata(inode, num_bytes);
5377 btrfs_free_reserved_data_space(inode, num_bytes);
5378}
5379
Liu Boc53d6132012-12-27 09:01:19 +00005380static int update_block_group(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005381 u64 bytenr, u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04005382{
Josef Bacik0af3d002010-06-21 14:48:16 -04005383 struct btrfs_block_group_cache *cache = NULL;
Chris Mason9078a3e2007-04-26 16:46:15 -04005384 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04005385 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005386 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04005387 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04005388 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04005389
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005390 /* block accounting for super block */
Miao Xieeb73c1b2013-05-15 07:48:22 +00005391 spin_lock(&info->delalloc_root_lock);
David Sterba6c417612011-04-13 15:41:04 +02005392 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005393 if (alloc)
5394 old_val += num_bytes;
5395 else
5396 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02005397 btrfs_set_super_bytes_used(info->super_copy, old_val);
Miao Xieeb73c1b2013-05-15 07:48:22 +00005398 spin_unlock(&info->delalloc_root_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005399
Chris Masond3977122009-01-05 21:25:51 -05005400 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04005401 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05005402 if (!cache)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005403 return -ENOENT;
Yan, Zhengb742bb822010-05-16 10:46:24 -04005404 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
5405 BTRFS_BLOCK_GROUP_RAID1 |
5406 BTRFS_BLOCK_GROUP_RAID10))
5407 factor = 2;
5408 else
5409 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04005410 /*
5411 * If this block group has free space cache written out, we
5412 * need to make sure to load it if we are removing space. This
5413 * is because we need the unpinning stage to actually add the
5414 * space back to the block group, otherwise we will leak space.
5415 */
5416 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Liu Bof6373bf2012-12-27 09:01:18 +00005417 cache_block_group(cache, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04005418
Chris Masondb945352007-10-15 16:15:53 -04005419 byte_in_group = bytenr - cache->key.objectid;
5420 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04005421
Josef Bacik25179202008-10-29 14:49:05 -04005422 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04005423 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04005424
Josef Bacik73bc1872011-10-03 14:07:49 -04005425 if (btrfs_test_opt(root, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04005426 cache->disk_cache_state < BTRFS_DC_CLEAR)
5427 cache->disk_cache_state = BTRFS_DC_CLEAR;
5428
Josef Bacik0f9dd462008-09-23 13:14:11 -04005429 cache->dirty = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04005430 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04005431 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04005432 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04005433 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04005434 btrfs_set_block_group_used(&cache->item, old_val);
5435 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04005436 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb822010-05-16 10:46:24 -04005437 cache->space_info->bytes_used += num_bytes;
5438 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04005439 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005440 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04005441 } else {
Chris Masondb945352007-10-15 16:15:53 -04005442 old_val -= num_bytes;
Josef Bacik47ab2a62014-09-18 11:20:02 -04005443
5444 /*
5445 * No longer have used bytes in this block group, queue
5446 * it for deletion.
5447 */
5448 if (old_val == 0) {
5449 spin_lock(&info->unused_bgs_lock);
5450 if (list_empty(&cache->bg_list)) {
5451 btrfs_get_block_group(cache);
5452 list_add_tail(&cache->bg_list,
5453 &info->unused_bgs);
5454 }
5455 spin_unlock(&info->unused_bgs_lock);
5456 }
Chris Masonc286ac42008-07-22 23:06:41 -04005457 btrfs_set_block_group_used(&cache->item, old_val);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005458 cache->pinned += num_bytes;
5459 cache->space_info->bytes_pinned += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005460 cache->space_info->bytes_used -= num_bytes;
Yan, Zhengb742bb822010-05-16 10:46:24 -04005461 cache->space_info->disk_used -= num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04005462 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005463 spin_unlock(&cache->space_info->lock);
Liu Hui1f3c79a2009-01-05 15:57:51 -05005464
Yan, Zhengf0486c62010-05-16 10:46:25 -04005465 set_extent_dirty(info->pinned_extents,
5466 bytenr, bytenr + num_bytes - 1,
5467 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04005468 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04005469 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04005470 total -= num_bytes;
5471 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005472 }
5473 return 0;
5474}
Chris Mason6324fbf2008-03-24 15:01:59 -04005475
Chris Masona061fc82008-05-07 11:43:44 -04005476static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
5477{
Josef Bacik0f9dd462008-09-23 13:14:11 -04005478 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05005479 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005480
Liu Boa1897fd2012-12-27 09:01:23 +00005481 spin_lock(&root->fs_info->block_group_cache_lock);
5482 bytenr = root->fs_info->first_logical_byte;
5483 spin_unlock(&root->fs_info->block_group_cache_lock);
5484
5485 if (bytenr < (u64)-1)
5486 return bytenr;
5487
Josef Bacik0f9dd462008-09-23 13:14:11 -04005488 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
5489 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04005490 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005491
Yan Zhengd2fb3432008-12-11 16:30:39 -05005492 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005493 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05005494
5495 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04005496}
5497
Yan, Zhengf0486c62010-05-16 10:46:25 -04005498static int pin_down_extent(struct btrfs_root *root,
5499 struct btrfs_block_group_cache *cache,
5500 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05005501{
Yan Zheng11833d62009-09-11 16:11:19 -04005502 spin_lock(&cache->space_info->lock);
5503 spin_lock(&cache->lock);
5504 cache->pinned += num_bytes;
5505 cache->space_info->bytes_pinned += num_bytes;
5506 if (reserved) {
5507 cache->reserved -= num_bytes;
5508 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05005509 }
Yan Zheng11833d62009-09-11 16:11:19 -04005510 spin_unlock(&cache->lock);
5511 spin_unlock(&cache->space_info->lock);
5512
Yan, Zhengf0486c62010-05-16 10:46:25 -04005513 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
5514 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Josef Bacik0be5dc62013-10-07 15:18:52 -04005515 if (reserved)
5516 trace_btrfs_reserved_extent_free(root, bytenr, num_bytes);
Yan324ae4d2007-11-16 14:57:08 -05005517 return 0;
5518}
Chris Mason9078a3e2007-04-26 16:46:15 -04005519
Yan, Zhengf0486c62010-05-16 10:46:25 -04005520/*
5521 * this function must be called within transaction
5522 */
5523int btrfs_pin_extent(struct btrfs_root *root,
5524 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04005525{
Yan, Zhengf0486c62010-05-16 10:46:25 -04005526 struct btrfs_block_group_cache *cache;
5527
5528 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005529 BUG_ON(!cache); /* Logic error */
Yan, Zhengf0486c62010-05-16 10:46:25 -04005530
5531 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
5532
5533 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04005534 return 0;
5535}
Zheng Yane8569812008-09-26 10:05:48 -04005536
Yan, Zhengf0486c62010-05-16 10:46:25 -04005537/*
Chris Masone688b7252011-10-31 20:52:39 -04005538 * this function must be called within transaction
Yan, Zhengf0486c62010-05-16 10:46:25 -04005539 */
Liu Bodcfac412012-12-27 09:01:20 +00005540int btrfs_pin_extent_for_log_replay(struct btrfs_root *root,
Chris Masone688b7252011-10-31 20:52:39 -04005541 u64 bytenr, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005542{
Chris Masone688b7252011-10-31 20:52:39 -04005543 struct btrfs_block_group_cache *cache;
Josef Bacikb50c6e22013-04-25 15:55:30 -04005544 int ret;
Chris Masone688b7252011-10-31 20:52:39 -04005545
5546 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005547 if (!cache)
5548 return -EINVAL;
Chris Masone688b7252011-10-31 20:52:39 -04005549
5550 /*
5551 * pull in the free space cache (if any) so that our pin
5552 * removes the free space from the cache. We have load_only set
5553 * to one because the slow code to read in the free extents does check
5554 * the pinned extents.
5555 */
Liu Bof6373bf2012-12-27 09:01:18 +00005556 cache_block_group(cache, 1);
Chris Masone688b7252011-10-31 20:52:39 -04005557
5558 pin_down_extent(root, cache, bytenr, num_bytes, 0);
5559
5560 /* remove us from the free space cache (if we're there at all) */
Josef Bacikb50c6e22013-04-25 15:55:30 -04005561 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
Chris Masone688b7252011-10-31 20:52:39 -04005562 btrfs_put_block_group(cache);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005563 return ret;
Chris Masone688b7252011-10-31 20:52:39 -04005564}
5565
Josef Bacik8c2a1a32013-06-06 13:19:32 -04005566static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes)
5567{
5568 int ret;
5569 struct btrfs_block_group_cache *block_group;
5570 struct btrfs_caching_control *caching_ctl;
5571
5572 block_group = btrfs_lookup_block_group(root->fs_info, start);
5573 if (!block_group)
5574 return -EINVAL;
5575
5576 cache_block_group(block_group, 0);
5577 caching_ctl = get_caching_control(block_group);
5578
5579 if (!caching_ctl) {
5580 /* Logic error */
5581 BUG_ON(!block_group_cache_done(block_group));
5582 ret = btrfs_remove_free_space(block_group, start, num_bytes);
5583 } else {
5584 mutex_lock(&caching_ctl->mutex);
5585
5586 if (start >= caching_ctl->progress) {
5587 ret = add_excluded_extent(root, start, num_bytes);
5588 } else if (start + num_bytes <= caching_ctl->progress) {
5589 ret = btrfs_remove_free_space(block_group,
5590 start, num_bytes);
5591 } else {
5592 num_bytes = caching_ctl->progress - start;
5593 ret = btrfs_remove_free_space(block_group,
5594 start, num_bytes);
5595 if (ret)
5596 goto out_lock;
5597
5598 num_bytes = (start + num_bytes) -
5599 caching_ctl->progress;
5600 start = caching_ctl->progress;
5601 ret = add_excluded_extent(root, start, num_bytes);
5602 }
5603out_lock:
5604 mutex_unlock(&caching_ctl->mutex);
5605 put_caching_control(caching_ctl);
5606 }
5607 btrfs_put_block_group(block_group);
5608 return ret;
5609}
5610
5611int btrfs_exclude_logged_extents(struct btrfs_root *log,
5612 struct extent_buffer *eb)
5613{
5614 struct btrfs_file_extent_item *item;
5615 struct btrfs_key key;
5616 int found_type;
5617 int i;
5618
5619 if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS))
5620 return 0;
5621
5622 for (i = 0; i < btrfs_header_nritems(eb); i++) {
5623 btrfs_item_key_to_cpu(eb, &key, i);
5624 if (key.type != BTRFS_EXTENT_DATA_KEY)
5625 continue;
5626 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
5627 found_type = btrfs_file_extent_type(eb, item);
5628 if (found_type == BTRFS_FILE_EXTENT_INLINE)
5629 continue;
5630 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
5631 continue;
5632 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
5633 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
5634 __exclude_logged_extent(log, key.objectid, key.offset);
5635 }
5636
5637 return 0;
5638}
5639
Josef Bacikfb25e912011-07-26 17:00:46 -04005640/**
5641 * btrfs_update_reserved_bytes - update the block_group and space info counters
5642 * @cache: The cache we are manipulating
5643 * @num_bytes: The number of bytes in question
5644 * @reserve: One of the reservation enums
Miao Xiee570fd22014-06-19 10:42:50 +08005645 * @delalloc: The blocks are allocated for the delalloc write
Josef Bacikfb25e912011-07-26 17:00:46 -04005646 *
5647 * This is called by the allocator when it reserves space, or by somebody who is
5648 * freeing space that was never actually used on disk. For example if you
5649 * reserve some space for a new leaf in transaction A and before transaction A
5650 * commits you free that leaf, you call this with reserve set to 0 in order to
5651 * clear the reservation.
5652 *
5653 * Metadata reservations should be called with RESERVE_ALLOC so we do the proper
5654 * ENOSPC accounting. For data we handle the reservation through clearing the
5655 * delalloc bits in the io_tree. We have to do this since we could end up
5656 * allocating less disk space for the amount of data we have reserved in the
5657 * case of compression.
5658 *
5659 * If this is a reservation and the block group has become read only we cannot
5660 * make the reservation and return -EAGAIN, otherwise this function always
5661 * succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04005662 */
Josef Bacikfb25e912011-07-26 17:00:46 -04005663static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
Miao Xiee570fd22014-06-19 10:42:50 +08005664 u64 num_bytes, int reserve, int delalloc)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005665{
Josef Bacikfb25e912011-07-26 17:00:46 -04005666 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005667 int ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005668
Josef Bacikfb25e912011-07-26 17:00:46 -04005669 spin_lock(&space_info->lock);
5670 spin_lock(&cache->lock);
5671 if (reserve != RESERVE_FREE) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005672 if (cache->ro) {
5673 ret = -EAGAIN;
5674 } else {
Josef Bacikfb25e912011-07-26 17:00:46 -04005675 cache->reserved += num_bytes;
5676 space_info->bytes_reserved += num_bytes;
5677 if (reserve == RESERVE_ALLOC) {
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005678 trace_btrfs_space_reservation(cache->fs_info,
Liu Bo2bcc0322012-03-29 09:57:44 -04005679 "space_info", space_info->flags,
5680 num_bytes, 0);
Josef Bacikfb25e912011-07-26 17:00:46 -04005681 space_info->bytes_may_use -= num_bytes;
5682 }
Miao Xiee570fd22014-06-19 10:42:50 +08005683
5684 if (delalloc)
5685 cache->delalloc_bytes += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005686 }
Josef Bacikfb25e912011-07-26 17:00:46 -04005687 } else {
5688 if (cache->ro)
5689 space_info->bytes_readonly += num_bytes;
5690 cache->reserved -= num_bytes;
5691 space_info->bytes_reserved -= num_bytes;
Miao Xiee570fd22014-06-19 10:42:50 +08005692
5693 if (delalloc)
5694 cache->delalloc_bytes -= num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005695 }
Josef Bacikfb25e912011-07-26 17:00:46 -04005696 spin_unlock(&cache->lock);
5697 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005698 return ret;
5699}
5700
Jeff Mahoney143bede2012-03-01 14:56:26 +01005701void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04005702 struct btrfs_root *root)
5703{
5704 struct btrfs_fs_info *fs_info = root->fs_info;
5705 struct btrfs_caching_control *next;
5706 struct btrfs_caching_control *caching_ctl;
5707 struct btrfs_block_group_cache *cache;
5708
Josef Bacik9e351cc2014-03-13 15:42:13 -04005709 down_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04005710
5711 list_for_each_entry_safe(caching_ctl, next,
5712 &fs_info->caching_block_groups, list) {
5713 cache = caching_ctl->block_group;
5714 if (block_group_cache_done(cache)) {
5715 cache->last_byte_to_unpin = (u64)-1;
5716 list_del_init(&caching_ctl->list);
5717 put_caching_control(caching_ctl);
5718 } else {
5719 cache->last_byte_to_unpin = caching_ctl->progress;
5720 }
5721 }
5722
5723 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
5724 fs_info->pinned_extents = &fs_info->freed_extents[1];
5725 else
5726 fs_info->pinned_extents = &fs_info->freed_extents[0];
5727
Josef Bacik9e351cc2014-03-13 15:42:13 -04005728 up_write(&fs_info->commit_root_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005729
5730 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04005731}
5732
5733static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
5734{
5735 struct btrfs_fs_info *fs_info = root->fs_info;
5736 struct btrfs_block_group_cache *cache = NULL;
Josef Bacik7b398f82012-10-22 15:52:28 -04005737 struct btrfs_space_info *space_info;
5738 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Yan Zheng11833d62009-09-11 16:11:19 -04005739 u64 len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005740 bool readonly;
Yan Zheng11833d62009-09-11 16:11:19 -04005741
5742 while (start <= end) {
Josef Bacik7b398f82012-10-22 15:52:28 -04005743 readonly = false;
Yan Zheng11833d62009-09-11 16:11:19 -04005744 if (!cache ||
5745 start >= cache->key.objectid + cache->key.offset) {
5746 if (cache)
5747 btrfs_put_block_group(cache);
5748 cache = btrfs_lookup_block_group(fs_info, start);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005749 BUG_ON(!cache); /* Logic error */
Yan Zheng11833d62009-09-11 16:11:19 -04005750 }
5751
5752 len = cache->key.objectid + cache->key.offset - start;
5753 len = min(len, end + 1 - start);
5754
5755 if (start < cache->last_byte_to_unpin) {
5756 len = min(len, cache->last_byte_to_unpin - start);
5757 btrfs_add_free_space(cache, start, len);
5758 }
Josef Bacik25179202008-10-29 14:49:05 -04005759
Yan, Zhengf0486c62010-05-16 10:46:25 -04005760 start += len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005761 space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005762
Josef Bacik7b398f82012-10-22 15:52:28 -04005763 spin_lock(&space_info->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005764 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04005765 cache->pinned -= len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005766 space_info->bytes_pinned -= len;
Liu Bod288db52014-07-02 16:58:01 +08005767 percpu_counter_add(&space_info->total_bytes_pinned, -len);
Josef Bacik7b398f82012-10-22 15:52:28 -04005768 if (cache->ro) {
5769 space_info->bytes_readonly += len;
5770 readonly = true;
5771 }
Josef Bacik25179202008-10-29 14:49:05 -04005772 spin_unlock(&cache->lock);
Josef Bacik7b398f82012-10-22 15:52:28 -04005773 if (!readonly && global_rsv->space_info == space_info) {
5774 spin_lock(&global_rsv->lock);
5775 if (!global_rsv->full) {
5776 len = min(len, global_rsv->size -
5777 global_rsv->reserved);
5778 global_rsv->reserved += len;
5779 space_info->bytes_may_use += len;
5780 if (global_rsv->reserved >= global_rsv->size)
5781 global_rsv->full = 1;
5782 }
5783 spin_unlock(&global_rsv->lock);
5784 }
5785 spin_unlock(&space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04005786 }
5787
5788 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04005789 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04005790 return 0;
5791}
5792
5793int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04005794 struct btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -05005795{
Yan Zheng11833d62009-09-11 16:11:19 -04005796 struct btrfs_fs_info *fs_info = root->fs_info;
5797 struct extent_io_tree *unpin;
Chris Mason1a5bc162007-10-15 16:15:26 -04005798 u64 start;
5799 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05005800 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05005801
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005802 if (trans->aborted)
5803 return 0;
5804
Yan Zheng11833d62009-09-11 16:11:19 -04005805 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
5806 unpin = &fs_info->freed_extents[1];
5807 else
5808 unpin = &fs_info->freed_extents[0];
5809
Chris Masond3977122009-01-05 21:25:51 -05005810 while (1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04005811 ret = find_first_extent_bit(unpin, 0, &start, &end,
Josef Bacike6138872012-09-27 17:07:30 -04005812 EXTENT_DIRTY, NULL);
Chris Mason1a5bc162007-10-15 16:15:26 -04005813 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05005814 break;
Liu Hui1f3c79a2009-01-05 15:57:51 -05005815
Li Dongyang5378e602011-03-24 10:24:27 +00005816 if (btrfs_test_opt(root, DISCARD))
5817 ret = btrfs_discard_extent(root, start,
5818 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05005819
Chris Mason1a5bc162007-10-15 16:15:26 -04005820 clear_extent_dirty(unpin, start, end, GFP_NOFS);
Yan Zheng11833d62009-09-11 16:11:19 -04005821 unpin_extent_range(root, start, end);
Chris Masonb9473432009-03-13 11:00:37 -04005822 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05005823 }
Josef Bacik817d52f2009-07-13 21:29:25 -04005824
Chris Masone20d96d2007-03-22 12:13:20 -04005825 return 0;
5826}
5827
Josef Bacikb150a4f2013-06-19 15:00:04 -04005828static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes,
5829 u64 owner, u64 root_objectid)
5830{
5831 struct btrfs_space_info *space_info;
5832 u64 flags;
5833
5834 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
5835 if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID)
5836 flags = BTRFS_BLOCK_GROUP_SYSTEM;
5837 else
5838 flags = BTRFS_BLOCK_GROUP_METADATA;
5839 } else {
5840 flags = BTRFS_BLOCK_GROUP_DATA;
5841 }
5842
5843 space_info = __find_space_info(fs_info, flags);
5844 BUG_ON(!space_info); /* Logic bug */
5845 percpu_counter_add(&space_info->total_bytes_pinned, num_bytes);
5846}
5847
5848
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005849static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
5850 struct btrfs_root *root,
5851 u64 bytenr, u64 num_bytes, u64 parent,
5852 u64 root_objectid, u64 owner_objectid,
5853 u64 owner_offset, int refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07005854 struct btrfs_delayed_extent_op *extent_op,
5855 int no_quota)
Chris Masona28ec192007-03-06 20:08:01 -05005856{
Chris Masone2fa7222007-03-12 16:22:34 -04005857 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005858 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04005859 struct btrfs_fs_info *info = root->fs_info;
5860 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04005861 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005862 struct btrfs_extent_item *ei;
5863 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05005864 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005865 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05005866 int extent_slot = 0;
5867 int found_extent = 0;
5868 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005869 u32 item_size;
5870 u64 refs;
Josef Bacikfcebe452014-05-13 17:30:47 -07005871 int last_ref = 0;
5872 enum btrfs_qgroup_operation_type type = BTRFS_QGROUP_OPER_SUB_EXCL;
Josef Bacik3173a182013-03-07 14:22:04 -05005873 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
5874 SKINNY_METADATA);
Chris Mason037e6392007-03-07 11:50:24 -05005875
Josef Bacikfcebe452014-05-13 17:30:47 -07005876 if (!info->quota_enabled || !is_fstree(root_objectid))
5877 no_quota = 1;
5878
Chris Mason5caf2a02007-04-02 11:20:42 -04005879 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04005880 if (!path)
5881 return -ENOMEM;
5882
Chris Mason3c12ac72008-04-21 12:01:38 -04005883 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04005884 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005885
5886 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
5887 BUG_ON(!is_data && refs_to_drop != 1);
5888
Josef Bacik3173a182013-03-07 14:22:04 -05005889 if (is_data)
5890 skinny_metadata = 0;
5891
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005892 ret = lookup_extent_backref(trans, extent_root, path, &iref,
5893 bytenr, num_bytes, parent,
5894 root_objectid, owner_objectid,
5895 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05005896 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05005897 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005898 while (extent_slot >= 0) {
5899 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05005900 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005901 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05005902 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005903 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
5904 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05005905 found_extent = 1;
5906 break;
5907 }
Josef Bacik3173a182013-03-07 14:22:04 -05005908 if (key.type == BTRFS_METADATA_ITEM_KEY &&
5909 key.offset == owner_objectid) {
5910 found_extent = 1;
5911 break;
5912 }
Chris Mason952fcca2008-02-18 16:33:44 -05005913 if (path->slots[0] - extent_slot > 5)
5914 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005915 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05005916 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005917#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
5918 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
5919 if (found_extent && item_size < sizeof(*ei))
5920 found_extent = 0;
5921#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04005922 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005923 BUG_ON(iref);
Chris Mason56bec292009-03-13 10:10:06 -04005924 ret = remove_extent_backref(trans, extent_root, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005925 NULL, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07005926 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06005927 if (ret) {
5928 btrfs_abort_transaction(trans, extent_root, ret);
5929 goto out;
5930 }
David Sterbab3b4aa72011-04-21 01:20:15 +02005931 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04005932 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005933
5934 key.objectid = bytenr;
5935 key.type = BTRFS_EXTENT_ITEM_KEY;
5936 key.offset = num_bytes;
5937
Josef Bacik3173a182013-03-07 14:22:04 -05005938 if (!is_data && skinny_metadata) {
5939 key.type = BTRFS_METADATA_ITEM_KEY;
5940 key.offset = owner_objectid;
5941 }
5942
Zheng Yan31840ae2008-09-23 13:14:14 -04005943 ret = btrfs_search_slot(trans, extent_root,
5944 &key, path, -1, 1);
Josef Bacik3173a182013-03-07 14:22:04 -05005945 if (ret > 0 && skinny_metadata && path->slots[0]) {
5946 /*
5947 * Couldn't find our skinny metadata item,
5948 * see if we have ye olde extent item.
5949 */
5950 path->slots[0]--;
5951 btrfs_item_key_to_cpu(path->nodes[0], &key,
5952 path->slots[0]);
5953 if (key.objectid == bytenr &&
5954 key.type == BTRFS_EXTENT_ITEM_KEY &&
5955 key.offset == num_bytes)
5956 ret = 0;
5957 }
5958
5959 if (ret > 0 && skinny_metadata) {
5960 skinny_metadata = false;
Filipe Manana9ce49a02014-04-24 15:15:28 +01005961 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05005962 key.type = BTRFS_EXTENT_ITEM_KEY;
5963 key.offset = num_bytes;
5964 btrfs_release_path(path);
5965 ret = btrfs_search_slot(trans, extent_root,
5966 &key, path, -1, 1);
5967 }
5968
Josef Bacikf3465ca2008-11-12 14:19:50 -05005969 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005970 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005971 ret, bytenr);
Josef Bacikb783e622011-07-13 15:03:50 +00005972 if (ret > 0)
5973 btrfs_print_leaf(extent_root,
5974 path->nodes[0]);
Josef Bacikf3465ca2008-11-12 14:19:50 -05005975 }
David Sterba005d6422012-09-18 07:52:32 -06005976 if (ret < 0) {
5977 btrfs_abort_transaction(trans, extent_root, ret);
5978 goto out;
5979 }
Zheng Yan31840ae2008-09-23 13:14:14 -04005980 extent_slot = path->slots[0];
5981 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05305982 } else if (WARN_ON(ret == -ENOENT)) {
Chris Mason7bb86312007-12-11 09:25:06 -05005983 btrfs_print_leaf(extent_root, path->nodes[0]);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005984 btrfs_err(info,
5985 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005986 bytenr, parent, root_objectid, owner_objectid,
5987 owner_offset);
Josef Bacikc4a050b2014-03-14 16:36:53 -04005988 btrfs_abort_transaction(trans, extent_root, ret);
5989 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005990 } else {
David Sterba005d6422012-09-18 07:52:32 -06005991 btrfs_abort_transaction(trans, extent_root, ret);
5992 goto out;
Chris Mason7bb86312007-12-11 09:25:06 -05005993 }
Chris Mason5f39d392007-10-15 16:14:19 -04005994
5995 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005996 item_size = btrfs_item_size_nr(leaf, extent_slot);
5997#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
5998 if (item_size < sizeof(*ei)) {
5999 BUG_ON(found_extent || extent_slot != path->slots[0]);
6000 ret = convert_extent_item_v0(trans, extent_root, path,
6001 owner_objectid, 0);
David Sterba005d6422012-09-18 07:52:32 -06006002 if (ret < 0) {
6003 btrfs_abort_transaction(trans, extent_root, ret);
6004 goto out;
6005 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006006
David Sterbab3b4aa72011-04-21 01:20:15 +02006007 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006008 path->leave_spinning = 1;
6009
6010 key.objectid = bytenr;
6011 key.type = BTRFS_EXTENT_ITEM_KEY;
6012 key.offset = num_bytes;
6013
6014 ret = btrfs_search_slot(trans, extent_root, &key, path,
6015 -1, 1);
6016 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006017 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006018 ret, bytenr);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006019 btrfs_print_leaf(extent_root, path->nodes[0]);
6020 }
David Sterba005d6422012-09-18 07:52:32 -06006021 if (ret < 0) {
6022 btrfs_abort_transaction(trans, extent_root, ret);
6023 goto out;
6024 }
6025
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006026 extent_slot = path->slots[0];
6027 leaf = path->nodes[0];
6028 item_size = btrfs_item_size_nr(leaf, extent_slot);
6029 }
6030#endif
6031 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05006032 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04006033 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05006034 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
6035 key.type == BTRFS_EXTENT_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006036 struct btrfs_tree_block_info *bi;
6037 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
6038 bi = (struct btrfs_tree_block_info *)(ei + 1);
6039 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05006040 }
6041
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006042 refs = btrfs_extent_refs(leaf, ei);
Josef Bacik32b02532013-04-24 16:38:50 -04006043 if (refs < refs_to_drop) {
6044 btrfs_err(info, "trying to drop %d refs but we only have %Lu "
David Sterba351fd352014-05-15 16:48:20 +02006045 "for bytenr %Lu", refs_to_drop, refs, bytenr);
Josef Bacik32b02532013-04-24 16:38:50 -04006046 ret = -EINVAL;
6047 btrfs_abort_transaction(trans, extent_root, ret);
6048 goto out;
6049 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006050 refs -= refs_to_drop;
6051
6052 if (refs > 0) {
Josef Bacikfcebe452014-05-13 17:30:47 -07006053 type = BTRFS_QGROUP_OPER_SUB_SHARED;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006054 if (extent_op)
6055 __run_delayed_extent_op(extent_op, leaf, ei);
6056 /*
6057 * In the case of inline back ref, reference count will
6058 * be updated by remove_extent_backref
6059 */
6060 if (iref) {
6061 BUG_ON(!found_extent);
6062 } else {
6063 btrfs_set_extent_refs(leaf, ei, refs);
6064 btrfs_mark_buffer_dirty(leaf);
6065 }
6066 if (found_extent) {
6067 ret = remove_extent_backref(trans, extent_root, path,
6068 iref, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07006069 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06006070 if (ret) {
6071 btrfs_abort_transaction(trans, extent_root, ret);
6072 goto out;
6073 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006074 }
Josef Bacikb150a4f2013-06-19 15:00:04 -04006075 add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid,
6076 root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006077 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006078 if (found_extent) {
6079 BUG_ON(is_data && refs_to_drop !=
6080 extent_data_ref_count(root, path, iref));
6081 if (iref) {
6082 BUG_ON(path->slots[0] != extent_slot);
6083 } else {
6084 BUG_ON(path->slots[0] != extent_slot + 1);
6085 path->slots[0] = extent_slot;
6086 num_to_del = 2;
6087 }
Chris Mason78fae272007-03-25 11:35:08 -04006088 }
Chris Masonb9473432009-03-13 11:00:37 -04006089
Josef Bacikfcebe452014-05-13 17:30:47 -07006090 last_ref = 1;
Chris Mason952fcca2008-02-18 16:33:44 -05006091 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
6092 num_to_del);
David Sterba005d6422012-09-18 07:52:32 -06006093 if (ret) {
6094 btrfs_abort_transaction(trans, extent_root, ret);
6095 goto out;
6096 }
David Sterbab3b4aa72011-04-21 01:20:15 +02006097 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01006098
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006099 if (is_data) {
Chris Mason459931e2008-12-10 09:10:46 -05006100 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
David Sterba005d6422012-09-18 07:52:32 -06006101 if (ret) {
6102 btrfs_abort_transaction(trans, extent_root, ret);
6103 goto out;
6104 }
Chris Mason459931e2008-12-10 09:10:46 -05006105 }
6106
Liu Boc53d6132012-12-27 09:01:19 +00006107 ret = update_block_group(root, bytenr, num_bytes, 0);
David Sterba005d6422012-09-18 07:52:32 -06006108 if (ret) {
6109 btrfs_abort_transaction(trans, extent_root, ret);
6110 goto out;
6111 }
Chris Masona28ec192007-03-06 20:08:01 -05006112 }
Josef Bacikfcebe452014-05-13 17:30:47 -07006113 btrfs_release_path(path);
6114
6115 /* Deal with the quota accounting */
6116 if (!ret && last_ref && !no_quota) {
6117 int mod_seq = 0;
6118
6119 if (owner_objectid >= BTRFS_FIRST_FREE_OBJECTID &&
6120 type == BTRFS_QGROUP_OPER_SUB_SHARED)
6121 mod_seq = 1;
6122
6123 ret = btrfs_qgroup_record_ref(trans, info, root_objectid,
6124 bytenr, num_bytes, type,
6125 mod_seq);
6126 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006127out:
Chris Mason5caf2a02007-04-02 11:20:42 -04006128 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05006129 return ret;
6130}
6131
6132/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04006133 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04006134 * delayed ref for that extent as well. This searches the delayed ref tree for
6135 * a given extent, and if there are no other delayed refs to be processed, it
6136 * removes it from the tree.
6137 */
6138static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
6139 struct btrfs_root *root, u64 bytenr)
6140{
6141 struct btrfs_delayed_ref_head *head;
6142 struct btrfs_delayed_ref_root *delayed_refs;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006143 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04006144
6145 delayed_refs = &trans->transaction->delayed_refs;
6146 spin_lock(&delayed_refs->lock);
6147 head = btrfs_find_delayed_ref_head(trans, bytenr);
6148 if (!head)
Chris Masoncf93da72014-01-29 07:02:40 -08006149 goto out_delayed_unlock;
Chris Mason1887be62009-03-13 10:11:24 -04006150
Josef Bacikd7df2c72014-01-23 09:21:38 -05006151 spin_lock(&head->lock);
6152 if (rb_first(&head->ref_root))
Chris Mason1887be62009-03-13 10:11:24 -04006153 goto out;
6154
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006155 if (head->extent_op) {
6156 if (!head->must_insert_reserved)
6157 goto out;
Miao Xie78a61842012-11-21 02:21:28 +00006158 btrfs_free_delayed_extent_op(head->extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006159 head->extent_op = NULL;
6160 }
6161
Chris Mason1887be62009-03-13 10:11:24 -04006162 /*
6163 * waiting for the lock here would deadlock. If someone else has it
6164 * locked they are already in the process of dropping it anyway
6165 */
6166 if (!mutex_trylock(&head->mutex))
6167 goto out;
6168
6169 /*
6170 * at this point we have a head with no other entries. Go
6171 * ahead and process it.
6172 */
6173 head->node.in_tree = 0;
Liu Boc46effa2013-10-14 12:59:45 +08006174 rb_erase(&head->href_node, &delayed_refs->href_root);
Chris Masonc3e69d52009-03-13 10:17:05 -04006175
Josef Bacikd7df2c72014-01-23 09:21:38 -05006176 atomic_dec(&delayed_refs->num_entries);
Chris Mason1887be62009-03-13 10:11:24 -04006177
6178 /*
6179 * we don't take a ref on the node because we're removing it from the
6180 * tree, so we just steal the ref the tree was holding.
6181 */
Chris Masonc3e69d52009-03-13 10:17:05 -04006182 delayed_refs->num_heads--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05006183 if (head->processing == 0)
Chris Masonc3e69d52009-03-13 10:17:05 -04006184 delayed_refs->num_heads_ready--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05006185 head->processing = 0;
6186 spin_unlock(&head->lock);
Chris Mason1887be62009-03-13 10:11:24 -04006187 spin_unlock(&delayed_refs->lock);
6188
Yan, Zhengf0486c62010-05-16 10:46:25 -04006189 BUG_ON(head->extent_op);
6190 if (head->must_insert_reserved)
6191 ret = 1;
6192
6193 mutex_unlock(&head->mutex);
Chris Mason1887be62009-03-13 10:11:24 -04006194 btrfs_put_delayed_ref(&head->node);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006195 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04006196out:
Josef Bacikd7df2c72014-01-23 09:21:38 -05006197 spin_unlock(&head->lock);
Chris Masoncf93da72014-01-29 07:02:40 -08006198
6199out_delayed_unlock:
Chris Mason1887be62009-03-13 10:11:24 -04006200 spin_unlock(&delayed_refs->lock);
6201 return 0;
6202}
6203
Yan, Zhengf0486c62010-05-16 10:46:25 -04006204void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
6205 struct btrfs_root *root,
6206 struct extent_buffer *buf,
Jan Schmidt5581a512012-05-16 17:04:52 +02006207 u64 parent, int last_ref)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006208{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006209 struct btrfs_block_group_cache *cache = NULL;
Josef Bacikb150a4f2013-06-19 15:00:04 -04006210 int pin = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006211 int ret;
6212
6213 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006214 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
6215 buf->start, buf->len,
6216 parent, root->root_key.objectid,
6217 btrfs_header_level(buf),
Jan Schmidt5581a512012-05-16 17:04:52 +02006218 BTRFS_DROP_DELAYED_REF, NULL, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006219 BUG_ON(ret); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006220 }
6221
6222 if (!last_ref)
6223 return;
6224
Yan, Zhengf0486c62010-05-16 10:46:25 -04006225 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006226
6227 if (btrfs_header_generation(buf) == trans->transid) {
6228 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
6229 ret = check_ref_cleanup(trans, root, buf->start);
6230 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04006231 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006232 }
6233
6234 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
6235 pin_down_extent(root, cache, buf->start, buf->len, 1);
Josef Bacik37be25b2011-08-05 10:25:38 -04006236 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006237 }
6238
6239 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
6240
6241 btrfs_add_free_space(cache, buf->start, buf->len);
Miao Xiee570fd22014-06-19 10:42:50 +08006242 btrfs_update_reserved_bytes(cache, buf->len, RESERVE_FREE, 0);
Josef Bacik0be5dc62013-10-07 15:18:52 -04006243 trace_btrfs_reserved_extent_free(root, buf->start, buf->len);
Josef Bacikb150a4f2013-06-19 15:00:04 -04006244 pin = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006245 }
6246out:
Josef Bacikb150a4f2013-06-19 15:00:04 -04006247 if (pin)
6248 add_pinned_bytes(root->fs_info, buf->len,
6249 btrfs_header_level(buf),
6250 root->root_key.objectid);
6251
Josef Bacika826d6d2011-03-16 13:42:43 -04006252 /*
6253 * Deleting the buffer, clear the corrupt flag since it doesn't matter
6254 * anymore.
6255 */
6256 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006257 btrfs_put_block_group(cache);
6258}
6259
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006260/* Can return -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006261int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root,
6262 u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid,
Josef Bacikfcebe452014-05-13 17:30:47 -07006263 u64 owner, u64 offset, int no_quota)
Chris Mason925baed2008-06-25 16:01:30 -04006264{
6265 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006266 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason925baed2008-06-25 16:01:30 -04006267
David Sterbafccb84c2014-09-29 23:53:21 +02006268 if (btrfs_test_is_dummy_root(root))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04006269 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02006270
Josef Bacikb150a4f2013-06-19 15:00:04 -04006271 add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid);
6272
Chris Mason56bec292009-03-13 10:10:06 -04006273 /*
6274 * tree log blocks never actually go into the extent allocation
6275 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04006276 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006277 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
6278 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04006279 /* unlocks the pinned mutex */
Yan Zheng11833d62009-09-11 16:11:19 -04006280 btrfs_pin_extent(root, bytenr, num_bytes, 1);
Chris Mason56bec292009-03-13 10:10:06 -04006281 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006282 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006283 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
6284 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006285 parent, root_objectid, (int)owner,
Josef Bacikfcebe452014-05-13 17:30:47 -07006286 BTRFS_DROP_DELAYED_REF, NULL, no_quota);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006287 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006288 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
6289 num_bytes,
6290 parent, root_objectid, owner,
6291 offset, BTRFS_DROP_DELAYED_REF,
Josef Bacikfcebe452014-05-13 17:30:47 -07006292 NULL, no_quota);
Chris Mason56bec292009-03-13 10:10:06 -04006293 }
Chris Mason925baed2008-06-25 16:01:30 -04006294 return ret;
6295}
6296
Chris Masonfec577f2007-02-26 10:40:21 -05006297/*
Josef Bacik817d52f2009-07-13 21:29:25 -04006298 * when we wait for progress in the block group caching, its because
6299 * our allocation attempt failed at least once. So, we must sleep
6300 * and let some progress happen before we try again.
6301 *
6302 * This function will sleep at least once waiting for new free space to
6303 * show up, and then it will check the block group free space numbers
6304 * for our min num_bytes. Another option is to have it go ahead
6305 * and look in the rbtree for a free extent of a given size, but this
6306 * is a good start.
Josef Bacik36cce922013-08-05 11:15:21 -04006307 *
6308 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
6309 * any of the information in this block group.
Josef Bacik817d52f2009-07-13 21:29:25 -04006310 */
Josef Bacik36cce922013-08-05 11:15:21 -04006311static noinline void
Josef Bacik817d52f2009-07-13 21:29:25 -04006312wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
6313 u64 num_bytes)
6314{
Yan Zheng11833d62009-09-11 16:11:19 -04006315 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04006316
Yan Zheng11833d62009-09-11 16:11:19 -04006317 caching_ctl = get_caching_control(cache);
6318 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04006319 return;
Josef Bacik817d52f2009-07-13 21:29:25 -04006320
Yan Zheng11833d62009-09-11 16:11:19 -04006321 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08006322 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04006323
6324 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -04006325}
6326
6327static noinline int
6328wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
6329{
6330 struct btrfs_caching_control *caching_ctl;
Josef Bacik36cce922013-08-05 11:15:21 -04006331 int ret = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006332
6333 caching_ctl = get_caching_control(cache);
6334 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04006335 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006336
6337 wait_event(caching_ctl->wait, block_group_cache_done(cache));
Josef Bacik36cce922013-08-05 11:15:21 -04006338 if (cache->cached == BTRFS_CACHE_ERROR)
6339 ret = -EIO;
Yan Zheng11833d62009-09-11 16:11:19 -04006340 put_caching_control(caching_ctl);
Josef Bacik36cce922013-08-05 11:15:21 -04006341 return ret;
Josef Bacik817d52f2009-07-13 21:29:25 -04006342}
6343
Liu Bo31e50222012-11-21 14:18:10 +00006344int __get_raid_index(u64 flags)
Yan, Zhengb742bb822010-05-16 10:46:24 -04006345{
Ilya Dryomov7738a532012-03-27 17:09:17 +03006346 if (flags & BTRFS_BLOCK_GROUP_RAID10)
Miao Xiee6ec7162013-01-17 05:38:51 +00006347 return BTRFS_RAID_RAID10;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006348 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
Miao Xiee6ec7162013-01-17 05:38:51 +00006349 return BTRFS_RAID_RAID1;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006350 else if (flags & BTRFS_BLOCK_GROUP_DUP)
Miao Xiee6ec7162013-01-17 05:38:51 +00006351 return BTRFS_RAID_DUP;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006352 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
Miao Xiee6ec7162013-01-17 05:38:51 +00006353 return BTRFS_RAID_RAID0;
David Woodhouse53b381b2013-01-29 18:40:14 -05006354 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
Chris Masone942f882013-02-20 14:06:05 -05006355 return BTRFS_RAID_RAID5;
David Woodhouse53b381b2013-01-29 18:40:14 -05006356 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
Chris Masone942f882013-02-20 14:06:05 -05006357 return BTRFS_RAID_RAID6;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006358
Chris Masone942f882013-02-20 14:06:05 -05006359 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
Yan, Zhengb742bb822010-05-16 10:46:24 -04006360}
6361
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04006362int get_block_group_index(struct btrfs_block_group_cache *cache)
Ilya Dryomov7738a532012-03-27 17:09:17 +03006363{
Liu Bo31e50222012-11-21 14:18:10 +00006364 return __get_raid_index(cache->flags);
Ilya Dryomov7738a532012-03-27 17:09:17 +03006365}
6366
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04006367static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = {
6368 [BTRFS_RAID_RAID10] = "raid10",
6369 [BTRFS_RAID_RAID1] = "raid1",
6370 [BTRFS_RAID_DUP] = "dup",
6371 [BTRFS_RAID_RAID0] = "raid0",
6372 [BTRFS_RAID_SINGLE] = "single",
6373 [BTRFS_RAID_RAID5] = "raid5",
6374 [BTRFS_RAID_RAID6] = "raid6",
6375};
6376
Jeff Mahoney1b8e5df2013-11-20 16:50:23 -05006377static const char *get_raid_name(enum btrfs_raid_types type)
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04006378{
6379 if (type >= BTRFS_NR_RAID_TYPES)
6380 return NULL;
6381
6382 return btrfs_raid_type_names[type];
6383}
6384
Josef Bacik817d52f2009-07-13 21:29:25 -04006385enum btrfs_loop_type {
Josef Bacik285ff5a2012-01-13 15:27:45 -05006386 LOOP_CACHING_NOWAIT = 0,
6387 LOOP_CACHING_WAIT = 1,
6388 LOOP_ALLOC_CHUNK = 2,
6389 LOOP_NO_EMPTY_SIZE = 3,
Josef Bacik817d52f2009-07-13 21:29:25 -04006390};
6391
Miao Xiee570fd22014-06-19 10:42:50 +08006392static inline void
6393btrfs_lock_block_group(struct btrfs_block_group_cache *cache,
6394 int delalloc)
6395{
6396 if (delalloc)
6397 down_read(&cache->data_rwsem);
6398}
6399
6400static inline void
6401btrfs_grab_block_group(struct btrfs_block_group_cache *cache,
6402 int delalloc)
6403{
6404 btrfs_get_block_group(cache);
6405 if (delalloc)
6406 down_read(&cache->data_rwsem);
6407}
6408
6409static struct btrfs_block_group_cache *
6410btrfs_lock_cluster(struct btrfs_block_group_cache *block_group,
6411 struct btrfs_free_cluster *cluster,
6412 int delalloc)
6413{
6414 struct btrfs_block_group_cache *used_bg;
6415 bool locked = false;
6416again:
6417 spin_lock(&cluster->refill_lock);
6418 if (locked) {
6419 if (used_bg == cluster->block_group)
6420 return used_bg;
6421
6422 up_read(&used_bg->data_rwsem);
6423 btrfs_put_block_group(used_bg);
6424 }
6425
6426 used_bg = cluster->block_group;
6427 if (!used_bg)
6428 return NULL;
6429
6430 if (used_bg == block_group)
6431 return used_bg;
6432
6433 btrfs_get_block_group(used_bg);
6434
6435 if (!delalloc)
6436 return used_bg;
6437
6438 if (down_read_trylock(&used_bg->data_rwsem))
6439 return used_bg;
6440
6441 spin_unlock(&cluster->refill_lock);
6442 down_read(&used_bg->data_rwsem);
6443 locked = true;
6444 goto again;
6445}
6446
6447static inline void
6448btrfs_release_block_group(struct btrfs_block_group_cache *cache,
6449 int delalloc)
6450{
6451 if (delalloc)
6452 up_read(&cache->data_rwsem);
6453 btrfs_put_block_group(cache);
6454}
6455
Josef Bacik817d52f2009-07-13 21:29:25 -04006456/*
Chris Masonfec577f2007-02-26 10:40:21 -05006457 * walks the btree of allocated extents and find a hole of a given size.
6458 * The key ins is changed to record the hole:
Miao Xiea4820392013-09-09 13:19:42 +08006459 * ins->objectid == start position
Chris Mason62e27492007-03-15 12:56:47 -04006460 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Miao Xiea4820392013-09-09 13:19:42 +08006461 * ins->offset == the size of the hole.
Chris Masonfec577f2007-02-26 10:40:21 -05006462 * Any available blocks before search_start are skipped.
Miao Xiea4820392013-09-09 13:19:42 +08006463 *
6464 * If there is no suitable free space, we will record the max size of
6465 * the free space extent currently.
Chris Masonfec577f2007-02-26 10:40:21 -05006466 */
Josef Bacik00361582013-08-14 14:02:47 -04006467static noinline int find_free_extent(struct btrfs_root *orig_root,
Chris Mason98ed5172008-01-03 10:01:48 -05006468 u64 num_bytes, u64 empty_size,
Chris Mason98ed5172008-01-03 10:01:48 -05006469 u64 hint_byte, struct btrfs_key *ins,
Miao Xiee570fd22014-06-19 10:42:50 +08006470 u64 flags, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05006471{
Josef Bacik80eb2342008-10-29 14:49:05 -04006472 int ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05006473 struct btrfs_root *root = orig_root->fs_info->extent_root;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006474 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04006475 struct btrfs_block_group_cache *block_group = NULL;
Josef Bacik81c9ad22012-01-18 10:56:06 -05006476 u64 search_start = 0;
Miao Xiea4820392013-09-09 13:19:42 +08006477 u64 max_extent_size = 0;
Chris Mason239b14b2008-03-24 15:02:07 -04006478 int empty_cluster = 2 * 1024 * 1024;
Josef Bacik80eb2342008-10-29 14:49:05 -04006479 struct btrfs_space_info *space_info;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006480 int loop = 0;
David Sterbab6919a52013-04-29 13:39:40 +00006481 int index = __get_raid_index(flags);
6482 int alloc_type = (flags & BTRFS_BLOCK_GROUP_DATA) ?
Josef Bacikfb25e912011-07-26 17:00:46 -04006483 RESERVE_ALLOC_NO_ACCOUNT : RESERVE_ALLOC;
Josef Bacik0a243252009-09-11 16:11:20 -04006484 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006485 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04006486 bool use_cluster = true;
Miao Xie60d2adb2011-09-09 17:34:35 +08006487 bool have_caching_bg = false;
Chris Masonfec577f2007-02-26 10:40:21 -05006488
Chris Masondb945352007-10-15 16:15:53 -04006489 WARN_ON(num_bytes < root->sectorsize);
David Sterba962a2982014-06-04 18:41:45 +02006490 ins->type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacik80eb2342008-10-29 14:49:05 -04006491 ins->objectid = 0;
6492 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04006493
David Sterbab6919a52013-04-29 13:39:40 +00006494 trace_find_free_extent(orig_root, num_bytes, empty_size, flags);
Josef Bacik3f7de032011-11-10 08:29:20 -05006495
David Sterbab6919a52013-04-29 13:39:40 +00006496 space_info = __find_space_info(root->fs_info, flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00006497 if (!space_info) {
David Sterbab6919a52013-04-29 13:39:40 +00006498 btrfs_err(root->fs_info, "No space info for %llu", flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00006499 return -ENOSPC;
6500 }
Josef Bacik2552d172009-04-03 10:14:19 -04006501
Josef Bacik67377732010-09-16 16:19:09 -04006502 /*
6503 * If the space info is for both data and metadata it means we have a
6504 * small filesystem and we can't use the clustering stuff.
6505 */
6506 if (btrfs_mixed_space_info(space_info))
6507 use_cluster = false;
6508
David Sterbab6919a52013-04-29 13:39:40 +00006509 if (flags & BTRFS_BLOCK_GROUP_METADATA && use_cluster) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006510 last_ptr = &root->fs_info->meta_alloc_cluster;
Chris Mason536ac8a2009-02-12 09:41:38 -05006511 if (!btrfs_test_opt(root, SSD))
6512 empty_cluster = 64 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04006513 }
6514
David Sterbab6919a52013-04-29 13:39:40 +00006515 if ((flags & BTRFS_BLOCK_GROUP_DATA) && use_cluster &&
Josef Bacik67377732010-09-16 16:19:09 -04006516 btrfs_test_opt(root, SSD)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006517 last_ptr = &root->fs_info->data_alloc_cluster;
6518 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04006519
Chris Mason239b14b2008-03-24 15:02:07 -04006520 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006521 spin_lock(&last_ptr->lock);
6522 if (last_ptr->block_group)
6523 hint_byte = last_ptr->window_start;
6524 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04006525 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006526
Chris Masona061fc82008-05-07 11:43:44 -04006527 search_start = max(search_start, first_logical_byte(root, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04006528 search_start = max(search_start, hint_byte);
Chris Mason0b86a832008-03-24 15:01:56 -04006529
Josef Bacik817d52f2009-07-13 21:29:25 -04006530 if (!last_ptr)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006531 empty_cluster = 0;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006532
Josef Bacik2552d172009-04-03 10:14:19 -04006533 if (search_start == hint_byte) {
Josef Bacik2552d172009-04-03 10:14:19 -04006534 block_group = btrfs_lookup_block_group(root->fs_info,
6535 search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04006536 /*
6537 * we don't want to use the block group if it doesn't match our
6538 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05006539 *
6540 * However if we are re-searching with an ideal block group
6541 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04006542 */
David Sterbab6919a52013-04-29 13:39:40 +00006543 if (block_group && block_group_bits(block_group, flags) &&
Josef Bacik285ff5a2012-01-13 15:27:45 -05006544 block_group->cached != BTRFS_CACHE_NO) {
Josef Bacik2552d172009-04-03 10:14:19 -04006545 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04006546 if (list_empty(&block_group->list) ||
6547 block_group->ro) {
6548 /*
6549 * someone is removing this block group,
6550 * we can't jump into the have_block_group
6551 * target because our list pointers are not
6552 * valid
6553 */
6554 btrfs_put_block_group(block_group);
6555 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05006556 } else {
Yan, Zhengb742bb822010-05-16 10:46:24 -04006557 index = get_block_group_index(block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08006558 btrfs_lock_block_group(block_group, delalloc);
Chris Mason44fb5512009-06-04 15:34:51 -04006559 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05006560 }
Josef Bacik2552d172009-04-03 10:14:19 -04006561 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006562 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006563 }
Chris Mason42e70e72008-11-07 18:17:11 -05006564 }
Josef Bacik2552d172009-04-03 10:14:19 -04006565search:
Miao Xie60d2adb2011-09-09 17:34:35 +08006566 have_caching_bg = false;
Josef Bacik80eb2342008-10-29 14:49:05 -04006567 down_read(&space_info->groups_sem);
Yan, Zhengb742bb822010-05-16 10:46:24 -04006568 list_for_each_entry(block_group, &space_info->block_groups[index],
6569 list) {
Josef Bacik6226cb02009-04-03 10:14:18 -04006570 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04006571 int cached;
Chris Mason8a1413a22008-11-10 16:13:54 -05006572
Miao Xiee570fd22014-06-19 10:42:50 +08006573 btrfs_grab_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04006574 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05006575
Chris Mason83a50de2010-12-13 15:06:46 -05006576 /*
6577 * this can happen if we end up cycling through all the
6578 * raid types, but we want to make sure we only allocate
6579 * for the proper type.
6580 */
David Sterbab6919a52013-04-29 13:39:40 +00006581 if (!block_group_bits(block_group, flags)) {
Chris Mason83a50de2010-12-13 15:06:46 -05006582 u64 extra = BTRFS_BLOCK_GROUP_DUP |
6583 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05006584 BTRFS_BLOCK_GROUP_RAID5 |
6585 BTRFS_BLOCK_GROUP_RAID6 |
Chris Mason83a50de2010-12-13 15:06:46 -05006586 BTRFS_BLOCK_GROUP_RAID10;
6587
6588 /*
6589 * if they asked for extra copies and this block group
6590 * doesn't provide them, bail. This does allow us to
6591 * fill raid0 from raid1.
6592 */
David Sterbab6919a52013-04-29 13:39:40 +00006593 if ((flags & extra) && !(block_group->flags & extra))
Chris Mason83a50de2010-12-13 15:06:46 -05006594 goto loop;
6595 }
6596
Josef Bacik2552d172009-04-03 10:14:19 -04006597have_block_group:
Josef Bacik291c7d22011-11-14 13:52:14 -05006598 cached = block_group_cache_done(block_group);
6599 if (unlikely(!cached)) {
Liu Bof6373bf2012-12-27 09:01:18 +00006600 ret = cache_block_group(block_group, 0);
Chris Mason1d4284b2012-03-28 20:31:37 -04006601 BUG_ON(ret < 0);
6602 ret = 0;
Josef Bacikea6a4782008-11-20 12:16:16 -05006603 }
6604
Josef Bacik36cce922013-08-05 11:15:21 -04006605 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
6606 goto loop;
Josef Bacikea6a4782008-11-20 12:16:16 -05006607 if (unlikely(block_group->ro))
Josef Bacik2552d172009-04-03 10:14:19 -04006608 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006609
Josef Bacik0a243252009-09-11 16:11:20 -04006610 /*
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006611 * Ok we want to try and use the cluster allocator, so
6612 * lets look there
Josef Bacik0a243252009-09-11 16:11:20 -04006613 */
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006614 if (last_ptr) {
Miao Xie215a63d2014-01-15 20:00:56 +08006615 struct btrfs_block_group_cache *used_block_group;
Chris Mason8de972b2013-01-04 15:39:43 -05006616 unsigned long aligned_cluster;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006617 /*
6618 * the refill lock keeps out other
6619 * people trying to start a new cluster
6620 */
Miao Xiee570fd22014-06-19 10:42:50 +08006621 used_block_group = btrfs_lock_cluster(block_group,
6622 last_ptr,
6623 delalloc);
6624 if (!used_block_group)
Chris Mason44fb5512009-06-04 15:34:51 -04006625 goto refill_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -04006626
Miao Xiee570fd22014-06-19 10:42:50 +08006627 if (used_block_group != block_group &&
6628 (used_block_group->ro ||
6629 !block_group_bits(used_block_group, flags)))
6630 goto release_cluster;
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006631
6632 offset = btrfs_alloc_from_cluster(used_block_group,
Miao Xiea4820392013-09-09 13:19:42 +08006633 last_ptr,
6634 num_bytes,
6635 used_block_group->key.objectid,
6636 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006637 if (offset) {
6638 /* we have a block, we're done */
6639 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05006640 trace_btrfs_reserve_extent_cluster(root,
Miao Xie89d43462014-01-15 20:00:57 +08006641 used_block_group,
6642 search_start, num_bytes);
Miao Xie215a63d2014-01-15 20:00:56 +08006643 if (used_block_group != block_group) {
Miao Xiee570fd22014-06-19 10:42:50 +08006644 btrfs_release_block_group(block_group,
6645 delalloc);
Miao Xie215a63d2014-01-15 20:00:56 +08006646 block_group = used_block_group;
6647 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006648 goto checks;
6649 }
6650
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006651 WARN_ON(last_ptr->block_group != used_block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08006652release_cluster:
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006653 /* If we are on LOOP_NO_EMPTY_SIZE, we can't
6654 * set up a new clusters, so lets just skip it
6655 * and let the allocator find whatever block
6656 * it can find. If we reach this point, we
6657 * will have tried the cluster allocator
6658 * plenty of times and not have found
6659 * anything, so we are likely way too
6660 * fragmented for the clustering stuff to find
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006661 * anything.
6662 *
6663 * However, if the cluster is taken from the
6664 * current block group, release the cluster
6665 * first, so that we stand a better chance of
6666 * succeeding in the unclustered
6667 * allocation. */
6668 if (loop >= LOOP_NO_EMPTY_SIZE &&
Miao Xiee570fd22014-06-19 10:42:50 +08006669 used_block_group != block_group) {
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006670 spin_unlock(&last_ptr->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08006671 btrfs_release_block_group(used_block_group,
6672 delalloc);
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006673 goto unclustered_alloc;
6674 }
6675
Chris Masonfa9c0d792009-04-03 09:47:43 -04006676 /*
6677 * this cluster didn't work out, free it and
6678 * start over
6679 */
6680 btrfs_return_cluster_to_free_space(NULL, last_ptr);
6681
Miao Xiee570fd22014-06-19 10:42:50 +08006682 if (used_block_group != block_group)
6683 btrfs_release_block_group(used_block_group,
6684 delalloc);
6685refill_cluster:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006686 if (loop >= LOOP_NO_EMPTY_SIZE) {
6687 spin_unlock(&last_ptr->refill_lock);
6688 goto unclustered_alloc;
6689 }
6690
Chris Mason8de972b2013-01-04 15:39:43 -05006691 aligned_cluster = max_t(unsigned long,
6692 empty_cluster + empty_size,
6693 block_group->full_stripe_len);
6694
Chris Masonfa9c0d792009-04-03 09:47:43 -04006695 /* allocate a cluster in this block group */
Josef Bacik00361582013-08-14 14:02:47 -04006696 ret = btrfs_find_space_cluster(root, block_group,
6697 last_ptr, search_start,
6698 num_bytes,
6699 aligned_cluster);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006700 if (ret == 0) {
6701 /*
6702 * now pull our allocation out of this
6703 * cluster
6704 */
6705 offset = btrfs_alloc_from_cluster(block_group,
Miao Xiea4820392013-09-09 13:19:42 +08006706 last_ptr,
6707 num_bytes,
6708 search_start,
6709 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006710 if (offset) {
6711 /* we found one, proceed */
6712 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05006713 trace_btrfs_reserve_extent_cluster(root,
6714 block_group, search_start,
6715 num_bytes);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006716 goto checks;
6717 }
Josef Bacik0a243252009-09-11 16:11:20 -04006718 } else if (!cached && loop > LOOP_CACHING_NOWAIT
6719 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04006720 spin_unlock(&last_ptr->refill_lock);
6721
Josef Bacik0a243252009-09-11 16:11:20 -04006722 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04006723 wait_block_group_cache_progress(block_group,
6724 num_bytes + empty_cluster + empty_size);
6725 goto have_block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006726 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006727
Chris Masonfa9c0d792009-04-03 09:47:43 -04006728 /*
6729 * at this point we either didn't find a cluster
6730 * or we weren't able to allocate a block from our
6731 * cluster. Free the cluster we've been trying
6732 * to use, and go to the next block group
6733 */
Josef Bacik0a243252009-09-11 16:11:20 -04006734 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006735 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04006736 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006737 }
6738
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006739unclustered_alloc:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006740 spin_lock(&block_group->free_space_ctl->tree_lock);
6741 if (cached &&
6742 block_group->free_space_ctl->free_space <
6743 num_bytes + empty_cluster + empty_size) {
Miao Xiea4820392013-09-09 13:19:42 +08006744 if (block_group->free_space_ctl->free_space >
6745 max_extent_size)
6746 max_extent_size =
6747 block_group->free_space_ctl->free_space;
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006748 spin_unlock(&block_group->free_space_ctl->tree_lock);
6749 goto loop;
6750 }
6751 spin_unlock(&block_group->free_space_ctl->tree_lock);
6752
Josef Bacik6226cb02009-04-03 10:14:18 -04006753 offset = btrfs_find_space_for_alloc(block_group, search_start,
Miao Xiea4820392013-09-09 13:19:42 +08006754 num_bytes, empty_size,
6755 &max_extent_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006756 /*
6757 * If we didn't find a chunk, and we haven't failed on this
6758 * block group before, and this block group is in the middle of
6759 * caching and we are ok with waiting, then go ahead and wait
6760 * for progress to be made, and set failed_alloc to true.
6761 *
6762 * If failed_alloc is true then we've already waited on this
6763 * block group once and should move on to the next block group.
6764 */
6765 if (!offset && !failed_alloc && !cached &&
6766 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04006767 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006768 num_bytes + empty_size);
6769 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04006770 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006771 } else if (!offset) {
Miao Xie60d2adb2011-09-09 17:34:35 +08006772 if (!cached)
6773 have_caching_bg = true;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006774 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04006775 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006776checks:
David Sterba4e54b172014-06-05 01:39:19 +02006777 search_start = ALIGN(offset, root->stripesize);
Chris Masone37c9e62007-05-09 20:13:14 -04006778
Josef Bacik2552d172009-04-03 10:14:19 -04006779 /* move on to the next group */
6780 if (search_start + num_bytes >
Miao Xie215a63d2014-01-15 20:00:56 +08006781 block_group->key.objectid + block_group->key.offset) {
6782 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04006783 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04006784 }
Josef Bacik80eb2342008-10-29 14:49:05 -04006785
Josef Bacik6226cb02009-04-03 10:14:18 -04006786 if (offset < search_start)
Miao Xie215a63d2014-01-15 20:00:56 +08006787 btrfs_add_free_space(block_group, offset,
Josef Bacik6226cb02009-04-03 10:14:18 -04006788 search_start - offset);
6789 BUG_ON(offset > search_start);
6790
Miao Xie215a63d2014-01-15 20:00:56 +08006791 ret = btrfs_update_reserved_bytes(block_group, num_bytes,
Miao Xiee570fd22014-06-19 10:42:50 +08006792 alloc_type, delalloc);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006793 if (ret == -EAGAIN) {
Miao Xie215a63d2014-01-15 20:00:56 +08006794 btrfs_add_free_space(block_group, offset, num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006795 goto loop;
6796 }
Yan Zheng11833d62009-09-11 16:11:19 -04006797
Josef Bacik2552d172009-04-03 10:14:19 -04006798 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006799 ins->objectid = search_start;
6800 ins->offset = num_bytes;
6801
Josef Bacik3f7de032011-11-10 08:29:20 -05006802 trace_btrfs_reserve_extent(orig_root, block_group,
6803 search_start, num_bytes);
Miao Xiee570fd22014-06-19 10:42:50 +08006804 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04006805 break;
6806loop:
Josef Bacik0a243252009-09-11 16:11:20 -04006807 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006808 failed_alloc = false;
Yan, Zhengb742bb822010-05-16 10:46:24 -04006809 BUG_ON(index != get_block_group_index(block_group));
Miao Xiee570fd22014-06-19 10:42:50 +08006810 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04006811 }
6812 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05006813
Miao Xie60d2adb2011-09-09 17:34:35 +08006814 if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg)
6815 goto search;
6816
Yan, Zhengb742bb822010-05-16 10:46:24 -04006817 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
6818 goto search;
6819
Josef Bacik285ff5a2012-01-13 15:27:45 -05006820 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05006821 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
6822 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04006823 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
6824 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
6825 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
6826 * again
Chris Masonfa9c0d792009-04-03 09:47:43 -04006827 */
Josef Bacik723bda22011-05-27 16:11:38 -04006828 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) {
Yan, Zhengb742bb822010-05-16 10:46:24 -04006829 index = 0;
Josef Bacik723bda22011-05-27 16:11:38 -04006830 loop++;
Josef Bacik817d52f2009-07-13 21:29:25 -04006831 if (loop == LOOP_ALLOC_CHUNK) {
Josef Bacik00361582013-08-14 14:02:47 -04006832 struct btrfs_trans_handle *trans;
Wang Shilongf017f152014-03-13 13:19:47 +08006833 int exist = 0;
Josef Bacik00361582013-08-14 14:02:47 -04006834
Wang Shilongf017f152014-03-13 13:19:47 +08006835 trans = current->journal_info;
6836 if (trans)
6837 exist = 1;
6838 else
6839 trans = btrfs_join_transaction(root);
6840
Josef Bacik00361582013-08-14 14:02:47 -04006841 if (IS_ERR(trans)) {
6842 ret = PTR_ERR(trans);
6843 goto out;
6844 }
6845
David Sterbab6919a52013-04-29 13:39:40 +00006846 ret = do_chunk_alloc(trans, root, flags,
Josef Bacikea658ba2012-09-11 16:57:25 -04006847 CHUNK_ALLOC_FORCE);
6848 /*
6849 * Do not bail out on ENOSPC since we
6850 * can do more things.
6851 */
Josef Bacik00361582013-08-14 14:02:47 -04006852 if (ret < 0 && ret != -ENOSPC)
Josef Bacikea658ba2012-09-11 16:57:25 -04006853 btrfs_abort_transaction(trans,
6854 root, ret);
Josef Bacik00361582013-08-14 14:02:47 -04006855 else
6856 ret = 0;
Wang Shilongf017f152014-03-13 13:19:47 +08006857 if (!exist)
6858 btrfs_end_transaction(trans, root);
Josef Bacik00361582013-08-14 14:02:47 -04006859 if (ret)
Josef Bacikea658ba2012-09-11 16:57:25 -04006860 goto out;
Josef Bacik723bda22011-05-27 16:11:38 -04006861 }
6862
6863 if (loop == LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006864 empty_size = 0;
6865 empty_cluster = 0;
6866 }
Chris Mason42e70e72008-11-07 18:17:11 -05006867
Josef Bacik723bda22011-05-27 16:11:38 -04006868 goto search;
Josef Bacik2552d172009-04-03 10:14:19 -04006869 } else if (!ins->objectid) {
6870 ret = -ENOSPC;
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04006871 } else if (ins->objectid) {
Josef Bacik2552d172009-04-03 10:14:19 -04006872 ret = 0;
6873 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006874out:
Miao Xiea4820392013-09-09 13:19:42 +08006875 if (ret == -ENOSPC)
6876 ins->offset = max_extent_size;
Chris Mason0f70abe2007-02-28 16:46:22 -05006877 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05006878}
Chris Masonec44a352008-04-28 15:29:52 -04006879
Josef Bacik9ed74f22009-09-11 16:12:44 -04006880static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
6881 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04006882{
6883 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb822010-05-16 10:46:24 -04006884 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006885
Josef Bacik9ed74f22009-09-11 16:12:44 -04006886 spin_lock(&info->lock);
Frank Holtonefe120a2013-12-20 11:37:06 -05006887 printk(KERN_INFO "BTRFS: space_info %llu has %llu free, is %sfull\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006888 info->flags,
6889 info->total_bytes - info->bytes_used - info->bytes_pinned -
6890 info->bytes_reserved - info->bytes_readonly,
Chris Masond3977122009-01-05 21:25:51 -05006891 (info->full) ? "" : "not ");
Frank Holtonefe120a2013-12-20 11:37:06 -05006892 printk(KERN_INFO "BTRFS: space_info total=%llu, used=%llu, pinned=%llu, "
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006893 "reserved=%llu, may_use=%llu, readonly=%llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006894 info->total_bytes, info->bytes_used, info->bytes_pinned,
6895 info->bytes_reserved, info->bytes_may_use,
6896 info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006897 spin_unlock(&info->lock);
6898
6899 if (!dump_block_groups)
6900 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006901
Josef Bacik80eb2342008-10-29 14:49:05 -04006902 down_read(&info->groups_sem);
Yan, Zhengb742bb822010-05-16 10:46:24 -04006903again:
6904 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04006905 spin_lock(&cache->lock);
Frank Holtonefe120a2013-12-20 11:37:06 -05006906 printk(KERN_INFO "BTRFS: "
6907 "block group %llu has %llu bytes, "
6908 "%llu used %llu pinned %llu reserved %s\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006909 cache->key.objectid, cache->key.offset,
6910 btrfs_block_group_used(&cache->item), cache->pinned,
6911 cache->reserved, cache->ro ? "[readonly]" : "");
Josef Bacik0f9dd462008-09-23 13:14:11 -04006912 btrfs_dump_free_space(cache, bytes);
6913 spin_unlock(&cache->lock);
6914 }
Yan, Zhengb742bb822010-05-16 10:46:24 -04006915 if (++index < BTRFS_NR_RAID_TYPES)
6916 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04006917 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04006918}
Zheng Yane8569812008-09-26 10:05:48 -04006919
Josef Bacik00361582013-08-14 14:02:47 -04006920int btrfs_reserve_extent(struct btrfs_root *root,
Yan Zheng11833d62009-09-11 16:11:19 -04006921 u64 num_bytes, u64 min_alloc_size,
6922 u64 empty_size, u64 hint_byte,
Miao Xiee570fd22014-06-19 10:42:50 +08006923 struct btrfs_key *ins, int is_data, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05006924{
Miao Xie9e622d62012-01-26 15:01:12 -05006925 bool final_tried = false;
David Sterbab6919a52013-04-29 13:39:40 +00006926 u64 flags;
Chris Masonfec577f2007-02-26 10:40:21 -05006927 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04006928
David Sterbab6919a52013-04-29 13:39:40 +00006929 flags = btrfs_get_alloc_profile(root, is_data);
Chris Mason98d20f62008-04-14 09:46:10 -04006930again:
Chris Masondb945352007-10-15 16:15:53 -04006931 WARN_ON(num_bytes < root->sectorsize);
Josef Bacik00361582013-08-14 14:02:47 -04006932 ret = find_free_extent(root, num_bytes, empty_size, hint_byte, ins,
Miao Xiee570fd22014-06-19 10:42:50 +08006933 flags, delalloc);
Chris Mason3b951512008-04-17 11:29:12 -04006934
Miao Xie9e622d62012-01-26 15:01:12 -05006935 if (ret == -ENOSPC) {
Miao Xiea4820392013-09-09 13:19:42 +08006936 if (!final_tried && ins->offset) {
6937 num_bytes = min(num_bytes >> 1, ins->offset);
Zach Brown24542bf2012-11-16 00:04:43 +00006938 num_bytes = round_down(num_bytes, root->sectorsize);
Miao Xie9e622d62012-01-26 15:01:12 -05006939 num_bytes = max(num_bytes, min_alloc_size);
Miao Xie9e622d62012-01-26 15:01:12 -05006940 if (num_bytes == min_alloc_size)
6941 final_tried = true;
6942 goto again;
6943 } else if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
6944 struct btrfs_space_info *sinfo;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006945
David Sterbab6919a52013-04-29 13:39:40 +00006946 sinfo = __find_space_info(root->fs_info, flags);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006947 btrfs_err(root->fs_info, "allocation failed flags %llu, wanted %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006948 flags, num_bytes);
Jeff Mahoney53804282012-03-01 14:56:28 +01006949 if (sinfo)
6950 dump_space_info(sinfo, num_bytes, 1);
Miao Xie9e622d62012-01-26 15:01:12 -05006951 }
Chris Mason925baed2008-06-25 16:01:30 -04006952 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04006953
6954 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006955}
6956
Chris Masone688b7252011-10-31 20:52:39 -04006957static int __btrfs_free_reserved_extent(struct btrfs_root *root,
Miao Xiee570fd22014-06-19 10:42:50 +08006958 u64 start, u64 len,
6959 int pin, int delalloc)
Chris Mason65b51a02008-08-01 15:11:20 -04006960{
Josef Bacik0f9dd462008-09-23 13:14:11 -04006961 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05006962 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006963
Josef Bacik0f9dd462008-09-23 13:14:11 -04006964 cache = btrfs_lookup_block_group(root->fs_info, start);
6965 if (!cache) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006966 btrfs_err(root->fs_info, "Unable to find block group for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006967 start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04006968 return -ENOSPC;
6969 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05006970
Li Dongyang5378e602011-03-24 10:24:27 +00006971 if (btrfs_test_opt(root, DISCARD))
6972 ret = btrfs_discard_extent(root, start, len, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05006973
Chris Masone688b7252011-10-31 20:52:39 -04006974 if (pin)
6975 pin_down_extent(root, cache, start, len, 1);
6976 else {
6977 btrfs_add_free_space(cache, start, len);
Miao Xiee570fd22014-06-19 10:42:50 +08006978 btrfs_update_reserved_bytes(cache, len, RESERVE_FREE, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04006979 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006980 btrfs_put_block_group(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04006981
liubo1abe9b82011-03-24 11:18:59 +00006982 trace_btrfs_reserved_extent_free(root, start, len);
6983
Chris Masone6dcd2d2008-07-17 12:53:50 -04006984 return ret;
6985}
6986
Chris Masone688b7252011-10-31 20:52:39 -04006987int btrfs_free_reserved_extent(struct btrfs_root *root,
Miao Xiee570fd22014-06-19 10:42:50 +08006988 u64 start, u64 len, int delalloc)
Chris Masone688b7252011-10-31 20:52:39 -04006989{
Miao Xiee570fd22014-06-19 10:42:50 +08006990 return __btrfs_free_reserved_extent(root, start, len, 0, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04006991}
6992
6993int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root,
6994 u64 start, u64 len)
6995{
Miao Xiee570fd22014-06-19 10:42:50 +08006996 return __btrfs_free_reserved_extent(root, start, len, 1, 0);
Chris Masone688b7252011-10-31 20:52:39 -04006997}
6998
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006999static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
7000 struct btrfs_root *root,
7001 u64 parent, u64 root_objectid,
7002 u64 flags, u64 owner, u64 offset,
7003 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04007004{
7005 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007006 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007007 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007008 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04007009 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007010 struct extent_buffer *leaf;
7011 int type;
7012 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04007013
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007014 if (parent > 0)
7015 type = BTRFS_SHARED_DATA_REF_KEY;
7016 else
7017 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04007018
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007019 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05007020
7021 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00007022 if (!path)
7023 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05007024
Chris Masonb9473432009-03-13 11:00:37 -04007025 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007026 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
7027 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007028 if (ret) {
7029 btrfs_free_path(path);
7030 return ret;
7031 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04007032
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007033 leaf = path->nodes[0];
7034 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05007035 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007036 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
7037 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
7038 btrfs_set_extent_flags(leaf, extent_item,
7039 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05007040
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007041 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
7042 btrfs_set_extent_inline_ref_type(leaf, iref, type);
7043 if (parent > 0) {
7044 struct btrfs_shared_data_ref *ref;
7045 ref = (struct btrfs_shared_data_ref *)(iref + 1);
7046 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
7047 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
7048 } else {
7049 struct btrfs_extent_data_ref *ref;
7050 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
7051 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
7052 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
7053 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
7054 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
7055 }
Chris Mason47e4bb92008-02-01 14:51:59 -05007056
7057 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05007058 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04007059
Josef Bacikfcebe452014-05-13 17:30:47 -07007060 /* Always set parent to 0 here since its exclusive anyway. */
7061 ret = btrfs_qgroup_record_ref(trans, fs_info, root_objectid,
7062 ins->objectid, ins->offset,
7063 BTRFS_QGROUP_OPER_ADD_EXCL, 0);
7064 if (ret)
7065 return ret;
7066
Liu Boc53d6132012-12-27 09:01:19 +00007067 ret = update_block_group(root, ins->objectid, ins->offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007068 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007069 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007070 ins->objectid, ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05007071 BUG();
7072 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04007073 trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007074 return ret;
7075}
7076
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007077static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
7078 struct btrfs_root *root,
7079 u64 parent, u64 root_objectid,
7080 u64 flags, struct btrfs_disk_key *key,
Josef Bacikfcebe452014-05-13 17:30:47 -07007081 int level, struct btrfs_key *ins,
7082 int no_quota)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007083{
7084 int ret;
7085 struct btrfs_fs_info *fs_info = root->fs_info;
7086 struct btrfs_extent_item *extent_item;
7087 struct btrfs_tree_block_info *block_info;
7088 struct btrfs_extent_inline_ref *iref;
7089 struct btrfs_path *path;
7090 struct extent_buffer *leaf;
Josef Bacik3173a182013-03-07 14:22:04 -05007091 u32 size = sizeof(*extent_item) + sizeof(*iref);
Josef Bacikfcebe452014-05-13 17:30:47 -07007092 u64 num_bytes = ins->offset;
Josef Bacik3173a182013-03-07 14:22:04 -05007093 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
7094 SKINNY_METADATA);
7095
7096 if (!skinny_metadata)
7097 size += sizeof(*block_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007098
7099 path = btrfs_alloc_path();
Josef Bacik857cc2f2013-10-07 15:21:08 -04007100 if (!path) {
7101 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
David Sterba707e8a02014-06-04 19:22:26 +02007102 root->nodesize);
Mark Fashehd8926bb2011-07-13 10:38:47 -07007103 return -ENOMEM;
Josef Bacik857cc2f2013-10-07 15:21:08 -04007104 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007105
7106 path->leave_spinning = 1;
7107 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
7108 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007109 if (ret) {
Josef Bacik857cc2f2013-10-07 15:21:08 -04007110 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
David Sterba707e8a02014-06-04 19:22:26 +02007111 root->nodesize);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007112 btrfs_free_path(path);
7113 return ret;
7114 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007115
7116 leaf = path->nodes[0];
7117 extent_item = btrfs_item_ptr(leaf, path->slots[0],
7118 struct btrfs_extent_item);
7119 btrfs_set_extent_refs(leaf, extent_item, 1);
7120 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
7121 btrfs_set_extent_flags(leaf, extent_item,
7122 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007123
Josef Bacik3173a182013-03-07 14:22:04 -05007124 if (skinny_metadata) {
7125 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
David Sterba707e8a02014-06-04 19:22:26 +02007126 num_bytes = root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05007127 } else {
7128 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
7129 btrfs_set_tree_block_key(leaf, block_info, key);
7130 btrfs_set_tree_block_level(leaf, block_info, level);
7131 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
7132 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007133
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007134 if (parent > 0) {
7135 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
7136 btrfs_set_extent_inline_ref_type(leaf, iref,
7137 BTRFS_SHARED_BLOCK_REF_KEY);
7138 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
7139 } else {
7140 btrfs_set_extent_inline_ref_type(leaf, iref,
7141 BTRFS_TREE_BLOCK_REF_KEY);
7142 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
7143 }
7144
7145 btrfs_mark_buffer_dirty(leaf);
7146 btrfs_free_path(path);
7147
Josef Bacikfcebe452014-05-13 17:30:47 -07007148 if (!no_quota) {
7149 ret = btrfs_qgroup_record_ref(trans, fs_info, root_objectid,
7150 ins->objectid, num_bytes,
7151 BTRFS_QGROUP_OPER_ADD_EXCL, 0);
7152 if (ret)
7153 return ret;
7154 }
7155
David Sterba707e8a02014-06-04 19:22:26 +02007156 ret = update_block_group(root, ins->objectid, root->nodesize, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007157 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007158 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007159 ins->objectid, ins->offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007160 BUG();
7161 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04007162
David Sterba707e8a02014-06-04 19:22:26 +02007163 trace_btrfs_reserved_extent_alloc(root, ins->objectid, root->nodesize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007164 return ret;
7165}
7166
7167int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
7168 struct btrfs_root *root,
7169 u64 root_objectid, u64 owner,
7170 u64 offset, struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04007171{
7172 int ret;
Chris Mason1c2308f82008-09-23 13:14:13 -04007173
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007174 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04007175
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007176 ret = btrfs_add_delayed_data_ref(root->fs_info, trans, ins->objectid,
7177 ins->offset, 0,
7178 root_objectid, owner, offset,
7179 BTRFS_ADD_DELAYED_EXTENT, NULL, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -04007180 return ret;
7181}
Chris Masone02119d2008-09-05 16:13:11 -04007182
7183/*
7184 * this is used by the tree logging recovery code. It records that
7185 * an extent has been allocated and makes sure to clear the free
7186 * space cache bits as well
7187 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007188int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
7189 struct btrfs_root *root,
7190 u64 root_objectid, u64 owner, u64 offset,
7191 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04007192{
7193 int ret;
7194 struct btrfs_block_group_cache *block_group;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04007195
7196 /*
7197 * Mixed block groups will exclude before processing the log so we only
7198 * need to do the exlude dance if this fs isn't mixed.
7199 */
7200 if (!btrfs_fs_incompat(root->fs_info, MIXED_GROUPS)) {
7201 ret = __exclude_logged_extent(root, ins->objectid, ins->offset);
7202 if (ret)
7203 return ret;
7204 }
Chris Masone02119d2008-09-05 16:13:11 -04007205
Chris Masone02119d2008-09-05 16:13:11 -04007206 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04007207 if (!block_group)
7208 return -EINVAL;
Yan Zheng11833d62009-09-11 16:11:19 -04007209
Josef Bacikfb25e912011-07-26 17:00:46 -04007210 ret = btrfs_update_reserved_bytes(block_group, ins->offset,
Miao Xiee570fd22014-06-19 10:42:50 +08007211 RESERVE_ALLOC_NO_ACCOUNT, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007212 BUG_ON(ret); /* logic error */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007213 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
7214 0, owner, offset, ins, 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04007215 btrfs_put_block_group(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04007216 return ret;
7217}
7218
Eric Sandeen48a3b632013-04-25 20:41:01 +00007219static struct extent_buffer *
7220btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
7221 u64 bytenr, u32 blocksize, int level)
Chris Mason65b51a02008-08-01 15:11:20 -04007222{
7223 struct extent_buffer *buf;
7224
7225 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
7226 if (!buf)
7227 return ERR_PTR(-ENOMEM);
7228 btrfs_set_header_generation(buf, trans->transid);
Chris Mason85d4e462011-07-26 16:11:19 -04007229 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04007230 btrfs_tree_lock(buf);
7231 clean_tree_block(trans, root, buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05007232 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
Chris Masonb4ce94d2009-02-04 09:25:08 -05007233
7234 btrfs_set_lock_blocking(buf);
Chris Mason65b51a02008-08-01 15:11:20 -04007235 btrfs_set_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05007236
Chris Masond0c803c2008-09-11 16:17:57 -04007237 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Filipe Manana656f30d2014-09-26 12:25:56 +01007238 buf->log_index = root->log_transid % 2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00007239 /*
7240 * we allow two log transactions at a time, use different
7241 * EXENT bit to differentiate dirty pages.
7242 */
Filipe Manana656f30d2014-09-26 12:25:56 +01007243 if (buf->log_index == 0)
Yan, Zheng8cef4e12009-11-12 09:33:26 +00007244 set_extent_dirty(&root->dirty_log_pages, buf->start,
7245 buf->start + buf->len - 1, GFP_NOFS);
7246 else
7247 set_extent_new(&root->dirty_log_pages, buf->start,
7248 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond0c803c2008-09-11 16:17:57 -04007249 } else {
Filipe Manana656f30d2014-09-26 12:25:56 +01007250 buf->log_index = -1;
Chris Masond0c803c2008-09-11 16:17:57 -04007251 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
7252 buf->start + buf->len - 1, GFP_NOFS);
7253 }
Chris Mason65b51a02008-08-01 15:11:20 -04007254 trans->blocks_used++;
Chris Masonb4ce94d2009-02-04 09:25:08 -05007255 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04007256 return buf;
7257}
7258
Yan, Zhengf0486c62010-05-16 10:46:25 -04007259static struct btrfs_block_rsv *
7260use_block_rsv(struct btrfs_trans_handle *trans,
7261 struct btrfs_root *root, u32 blocksize)
7262{
7263 struct btrfs_block_rsv *block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00007264 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007265 int ret;
Miao Xied88033d2013-05-13 13:55:12 +00007266 bool global_updated = false;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007267
7268 block_rsv = get_block_rsv(trans, root);
7269
Miao Xieb586b322013-05-13 13:55:10 +00007270 if (unlikely(block_rsv->size == 0))
7271 goto try_reserve;
Miao Xied88033d2013-05-13 13:55:12 +00007272again:
Yan, Zhengf0486c62010-05-16 10:46:25 -04007273 ret = block_rsv_use_bytes(block_rsv, blocksize);
7274 if (!ret)
7275 return block_rsv;
7276
Miao Xieb586b322013-05-13 13:55:10 +00007277 if (block_rsv->failfast)
7278 return ERR_PTR(ret);
7279
Miao Xied88033d2013-05-13 13:55:12 +00007280 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
7281 global_updated = true;
7282 update_global_block_rsv(root->fs_info);
7283 goto again;
7284 }
7285
Miao Xieb586b322013-05-13 13:55:10 +00007286 if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
7287 static DEFINE_RATELIMIT_STATE(_rs,
7288 DEFAULT_RATELIMIT_INTERVAL * 10,
7289 /*DEFAULT_RATELIMIT_BURST*/ 1);
7290 if (__ratelimit(&_rs))
7291 WARN(1, KERN_DEBUG
Frank Holtonefe120a2013-12-20 11:37:06 -05007292 "BTRFS: block rsv returned %d\n", ret);
Miao Xieb586b322013-05-13 13:55:10 +00007293 }
7294try_reserve:
7295 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
7296 BTRFS_RESERVE_NO_FLUSH);
7297 if (!ret)
7298 return block_rsv;
7299 /*
7300 * If we couldn't reserve metadata bytes try and use some from
Miao Xie5881cfc2013-05-13 13:55:11 +00007301 * the global reserve if its space type is the same as the global
7302 * reservation.
Miao Xieb586b322013-05-13 13:55:10 +00007303 */
Miao Xie5881cfc2013-05-13 13:55:11 +00007304 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
7305 block_rsv->space_info == global_rsv->space_info) {
Miao Xieb586b322013-05-13 13:55:10 +00007306 ret = block_rsv_use_bytes(global_rsv, blocksize);
7307 if (!ret)
7308 return global_rsv;
7309 }
7310 return ERR_PTR(ret);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007311}
7312
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05007313static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
7314 struct btrfs_block_rsv *block_rsv, u32 blocksize)
Yan, Zhengf0486c62010-05-16 10:46:25 -04007315{
7316 block_rsv_add_bytes(block_rsv, blocksize, 0);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05007317 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007318}
7319
Chris Masonfec577f2007-02-26 10:40:21 -05007320/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04007321 * finds a free extent and does all the dirty work required for allocation
7322 * returns the key for the extent through ins, and a tree buffer for
7323 * the first block of the extent through buf.
7324 *
Chris Masonfec577f2007-02-26 10:40:21 -05007325 * returns the tree buffer or NULL.
7326 */
David Sterba4d75f8a2014-06-15 01:54:12 +02007327struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans,
7328 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007329 u64 parent, u64 root_objectid,
7330 struct btrfs_disk_key *key, int level,
Jan Schmidt5581a512012-05-16 17:04:52 +02007331 u64 hint, u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05007332{
Chris Masone2fa7222007-03-12 16:22:34 -04007333 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007334 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04007335 struct extent_buffer *buf;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007336 u64 flags = 0;
7337 int ret;
David Sterba4d75f8a2014-06-15 01:54:12 +02007338 u32 blocksize = root->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05007339 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
7340 SKINNY_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007341
David Sterbafccb84c2014-09-29 23:53:21 +02007342 if (btrfs_test_is_dummy_root(root)) {
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04007343 buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr,
7344 blocksize, level);
7345 if (!IS_ERR(buf))
7346 root->alloc_bytenr += blocksize;
7347 return buf;
7348 }
David Sterbafccb84c2014-09-29 23:53:21 +02007349
Yan, Zhengf0486c62010-05-16 10:46:25 -04007350 block_rsv = use_block_rsv(trans, root, blocksize);
7351 if (IS_ERR(block_rsv))
7352 return ERR_CAST(block_rsv);
7353
Josef Bacik00361582013-08-14 14:02:47 -04007354 ret = btrfs_reserve_extent(root, blocksize, blocksize,
Miao Xiee570fd22014-06-19 10:42:50 +08007355 empty_size, hint, &ins, 0, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05007356 if (ret) {
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05007357 unuse_block_rsv(root->fs_info, block_rsv, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04007358 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05007359 }
Chris Mason55c69072008-01-09 15:55:33 -05007360
Chris Mason4008c042009-02-12 14:09:45 -05007361 buf = btrfs_init_new_buffer(trans, root, ins.objectid,
7362 blocksize, level);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007363 BUG_ON(IS_ERR(buf)); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007364
7365 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
7366 if (parent == 0)
7367 parent = ins.objectid;
7368 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
7369 } else
7370 BUG_ON(parent > 0);
7371
7372 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
7373 struct btrfs_delayed_extent_op *extent_op;
Miao Xie78a61842012-11-21 02:21:28 +00007374 extent_op = btrfs_alloc_delayed_extent_op();
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007375 BUG_ON(!extent_op); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007376 if (key)
7377 memcpy(&extent_op->key, key, sizeof(extent_op->key));
7378 else
7379 memset(&extent_op->key, 0, sizeof(extent_op->key));
7380 extent_op->flags_to_set = flags;
Josef Bacik3173a182013-03-07 14:22:04 -05007381 if (skinny_metadata)
7382 extent_op->update_key = 0;
7383 else
7384 extent_op->update_key = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007385 extent_op->update_flags = 1;
7386 extent_op->is_data = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04007387 extent_op->level = level;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007388
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007389 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
7390 ins.objectid,
Yan, Zhengf0486c62010-05-16 10:46:25 -04007391 ins.offset, parent, root_objectid,
7392 level, BTRFS_ADD_DELAYED_EXTENT,
Jan Schmidt5581a512012-05-16 17:04:52 +02007393 extent_op, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007394 BUG_ON(ret); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007395 }
Chris Masonfec577f2007-02-26 10:40:21 -05007396 return buf;
7397}
Chris Masona28ec192007-03-06 20:08:01 -05007398
Yan Zheng2c47e6052009-06-27 21:07:35 -04007399struct walk_control {
7400 u64 refs[BTRFS_MAX_LEVEL];
7401 u64 flags[BTRFS_MAX_LEVEL];
7402 struct btrfs_key update_progress;
7403 int stage;
7404 int level;
7405 int shared_level;
7406 int update_ref;
7407 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007408 int reada_slot;
7409 int reada_count;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007410 int for_reloc;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007411};
7412
7413#define DROP_REFERENCE 1
7414#define UPDATE_BACKREF 2
7415
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007416static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
7417 struct btrfs_root *root,
7418 struct walk_control *wc,
7419 struct btrfs_path *path)
7420{
7421 u64 bytenr;
7422 u64 generation;
7423 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007424 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007425 u32 nritems;
7426 u32 blocksize;
7427 struct btrfs_key key;
7428 struct extent_buffer *eb;
7429 int ret;
7430 int slot;
7431 int nread = 0;
7432
7433 if (path->slots[wc->level] < wc->reada_slot) {
7434 wc->reada_count = wc->reada_count * 2 / 3;
7435 wc->reada_count = max(wc->reada_count, 2);
7436 } else {
7437 wc->reada_count = wc->reada_count * 3 / 2;
7438 wc->reada_count = min_t(int, wc->reada_count,
7439 BTRFS_NODEPTRS_PER_BLOCK(root));
7440 }
7441
7442 eb = path->nodes[wc->level];
7443 nritems = btrfs_header_nritems(eb);
David Sterba707e8a02014-06-04 19:22:26 +02007444 blocksize = root->nodesize;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007445
7446 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
7447 if (nread >= wc->reada_count)
7448 break;
7449
7450 cond_resched();
7451 bytenr = btrfs_node_blockptr(eb, slot);
7452 generation = btrfs_node_ptr_generation(eb, slot);
7453
7454 if (slot == path->slots[wc->level])
7455 goto reada;
7456
7457 if (wc->stage == UPDATE_BACKREF &&
7458 generation <= root->root_key.offset)
7459 continue;
7460
Yan, Zheng94fcca92009-10-09 09:25:16 -04007461 /* We don't lock the tree block, it's OK to be racy here */
Josef Bacik3173a182013-03-07 14:22:04 -05007462 ret = btrfs_lookup_extent_info(trans, root, bytenr,
7463 wc->level - 1, 1, &refs,
7464 &flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007465 /* We don't care about errors in readahead. */
7466 if (ret < 0)
7467 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007468 BUG_ON(refs == 0);
7469
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007470 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007471 if (refs == 1)
7472 goto reada;
7473
Yan, Zheng94fcca92009-10-09 09:25:16 -04007474 if (wc->level == 1 &&
7475 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7476 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007477 if (!wc->update_ref ||
7478 generation <= root->root_key.offset)
7479 continue;
7480 btrfs_node_key_to_cpu(eb, &key, slot);
7481 ret = btrfs_comp_cpu_keys(&key,
7482 &wc->update_progress);
7483 if (ret < 0)
7484 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007485 } else {
7486 if (wc->level == 1 &&
7487 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7488 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007489 }
7490reada:
David Sterba6197d862014-06-15 00:49:36 +02007491 readahead_tree_block(root, bytenr, blocksize);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007492 nread++;
7493 }
7494 wc->reada_slot = slot;
7495}
7496
Mark Fasheh11526512014-07-17 12:39:01 -07007497static int account_leaf_items(struct btrfs_trans_handle *trans,
7498 struct btrfs_root *root,
7499 struct extent_buffer *eb)
7500{
7501 int nr = btrfs_header_nritems(eb);
7502 int i, extent_type, ret;
7503 struct btrfs_key key;
7504 struct btrfs_file_extent_item *fi;
7505 u64 bytenr, num_bytes;
7506
7507 for (i = 0; i < nr; i++) {
7508 btrfs_item_key_to_cpu(eb, &key, i);
7509
7510 if (key.type != BTRFS_EXTENT_DATA_KEY)
7511 continue;
7512
7513 fi = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
7514 /* filter out non qgroup-accountable extents */
7515 extent_type = btrfs_file_extent_type(eb, fi);
7516
7517 if (extent_type == BTRFS_FILE_EXTENT_INLINE)
7518 continue;
7519
7520 bytenr = btrfs_file_extent_disk_bytenr(eb, fi);
7521 if (!bytenr)
7522 continue;
7523
7524 num_bytes = btrfs_file_extent_disk_num_bytes(eb, fi);
7525
7526 ret = btrfs_qgroup_record_ref(trans, root->fs_info,
7527 root->objectid,
7528 bytenr, num_bytes,
7529 BTRFS_QGROUP_OPER_SUB_SUBTREE, 0);
7530 if (ret)
7531 return ret;
7532 }
7533 return 0;
7534}
7535
7536/*
7537 * Walk up the tree from the bottom, freeing leaves and any interior
7538 * nodes which have had all slots visited. If a node (leaf or
7539 * interior) is freed, the node above it will have it's slot
7540 * incremented. The root node will never be freed.
7541 *
7542 * At the end of this function, we should have a path which has all
7543 * slots incremented to the next position for a search. If we need to
7544 * read a new node it will be NULL and the node above it will have the
7545 * correct slot selected for a later read.
7546 *
7547 * If we increment the root nodes slot counter past the number of
7548 * elements, 1 is returned to signal completion of the search.
7549 */
7550static int adjust_slots_upwards(struct btrfs_root *root,
7551 struct btrfs_path *path, int root_level)
7552{
7553 int level = 0;
7554 int nr, slot;
7555 struct extent_buffer *eb;
7556
7557 if (root_level == 0)
7558 return 1;
7559
7560 while (level <= root_level) {
7561 eb = path->nodes[level];
7562 nr = btrfs_header_nritems(eb);
7563 path->slots[level]++;
7564 slot = path->slots[level];
7565 if (slot >= nr || level == 0) {
7566 /*
7567 * Don't free the root - we will detect this
7568 * condition after our loop and return a
7569 * positive value for caller to stop walking the tree.
7570 */
7571 if (level != root_level) {
7572 btrfs_tree_unlock_rw(eb, path->locks[level]);
7573 path->locks[level] = 0;
7574
7575 free_extent_buffer(eb);
7576 path->nodes[level] = NULL;
7577 path->slots[level] = 0;
7578 }
7579 } else {
7580 /*
7581 * We have a valid slot to walk back down
7582 * from. Stop here so caller can process these
7583 * new nodes.
7584 */
7585 break;
7586 }
7587
7588 level++;
7589 }
7590
7591 eb = path->nodes[root_level];
7592 if (path->slots[root_level] >= btrfs_header_nritems(eb))
7593 return 1;
7594
7595 return 0;
7596}
7597
7598/*
7599 * root_eb is the subtree root and is locked before this function is called.
7600 */
7601static int account_shared_subtree(struct btrfs_trans_handle *trans,
7602 struct btrfs_root *root,
7603 struct extent_buffer *root_eb,
7604 u64 root_gen,
7605 int root_level)
7606{
7607 int ret = 0;
7608 int level;
7609 struct extent_buffer *eb = root_eb;
7610 struct btrfs_path *path = NULL;
7611
7612 BUG_ON(root_level < 0 || root_level > BTRFS_MAX_LEVEL);
7613 BUG_ON(root_eb == NULL);
7614
7615 if (!root->fs_info->quota_enabled)
7616 return 0;
7617
7618 if (!extent_buffer_uptodate(root_eb)) {
7619 ret = btrfs_read_buffer(root_eb, root_gen);
7620 if (ret)
7621 goto out;
7622 }
7623
7624 if (root_level == 0) {
7625 ret = account_leaf_items(trans, root, root_eb);
7626 goto out;
7627 }
7628
7629 path = btrfs_alloc_path();
7630 if (!path)
7631 return -ENOMEM;
7632
7633 /*
7634 * Walk down the tree. Missing extent blocks are filled in as
7635 * we go. Metadata is accounted every time we read a new
7636 * extent block.
7637 *
7638 * When we reach a leaf, we account for file extent items in it,
7639 * walk back up the tree (adjusting slot pointers as we go)
7640 * and restart the search process.
7641 */
7642 extent_buffer_get(root_eb); /* For path */
7643 path->nodes[root_level] = root_eb;
7644 path->slots[root_level] = 0;
7645 path->locks[root_level] = 0; /* so release_path doesn't try to unlock */
7646walk_down:
7647 level = root_level;
7648 while (level >= 0) {
7649 if (path->nodes[level] == NULL) {
Mark Fasheh11526512014-07-17 12:39:01 -07007650 int parent_slot;
7651 u64 child_gen;
7652 u64 child_bytenr;
7653
7654 /* We need to get child blockptr/gen from
7655 * parent before we can read it. */
7656 eb = path->nodes[level + 1];
7657 parent_slot = path->slots[level + 1];
7658 child_bytenr = btrfs_node_blockptr(eb, parent_slot);
7659 child_gen = btrfs_node_ptr_generation(eb, parent_slot);
7660
David Sterbace86cd52014-06-15 01:07:32 +02007661 eb = read_tree_block(root, child_bytenr, child_gen);
Mark Fasheh11526512014-07-17 12:39:01 -07007662 if (!eb || !extent_buffer_uptodate(eb)) {
7663 ret = -EIO;
7664 goto out;
7665 }
7666
7667 path->nodes[level] = eb;
7668 path->slots[level] = 0;
7669
7670 btrfs_tree_read_lock(eb);
7671 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
7672 path->locks[level] = BTRFS_READ_LOCK_BLOCKING;
7673
7674 ret = btrfs_qgroup_record_ref(trans, root->fs_info,
7675 root->objectid,
7676 child_bytenr,
David Sterbace86cd52014-06-15 01:07:32 +02007677 root->nodesize,
Mark Fasheh11526512014-07-17 12:39:01 -07007678 BTRFS_QGROUP_OPER_SUB_SUBTREE,
7679 0);
7680 if (ret)
7681 goto out;
7682
7683 }
7684
7685 if (level == 0) {
7686 ret = account_leaf_items(trans, root, path->nodes[level]);
7687 if (ret)
7688 goto out;
7689
7690 /* Nonzero return here means we completed our search */
7691 ret = adjust_slots_upwards(root, path, root_level);
7692 if (ret)
7693 break;
7694
7695 /* Restart search with new slots */
7696 goto walk_down;
7697 }
7698
7699 level--;
7700 }
7701
7702 ret = 0;
7703out:
7704 btrfs_free_path(path);
7705
7706 return ret;
7707}
7708
Chris Mason9aca1d52007-03-13 11:09:37 -04007709/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007710 * helper to process tree block while walking down the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04007711 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04007712 * when wc->stage == UPDATE_BACKREF, this function updates
7713 * back refs for pointers in the block.
7714 *
7715 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04007716 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007717static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
7718 struct btrfs_root *root,
7719 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007720 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04007721{
7722 int level = wc->level;
7723 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04007724 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
7725 int ret;
7726
7727 if (wc->stage == UPDATE_BACKREF &&
7728 btrfs_header_owner(eb) != root->root_key.objectid)
7729 return 1;
7730
7731 /*
7732 * when reference count of tree block is 1, it won't increase
7733 * again. once full backref flag is set, we never clear it.
7734 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04007735 if (lookup_info &&
7736 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
7737 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007738 BUG_ON(!path->locks[level]);
7739 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05007740 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007741 &wc->refs[level],
7742 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007743 BUG_ON(ret == -ENOMEM);
7744 if (ret)
7745 return ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007746 BUG_ON(wc->refs[level] == 0);
7747 }
7748
Yan Zheng2c47e6052009-06-27 21:07:35 -04007749 if (wc->stage == DROP_REFERENCE) {
7750 if (wc->refs[level] > 1)
7751 return 1;
7752
7753 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04007754 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007755 path->locks[level] = 0;
7756 }
7757 return 0;
7758 }
7759
7760 /* wc->stage == UPDATE_BACKREF */
7761 if (!(wc->flags[level] & flag)) {
7762 BUG_ON(!path->locks[level]);
Josef Bacike339a6b2014-07-02 10:54:25 -07007763 ret = btrfs_inc_ref(trans, root, eb, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007764 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07007765 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007766 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007767 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
Josef Bacikb1c79e02013-05-09 13:49:30 -04007768 eb->len, flag,
7769 btrfs_header_level(eb), 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007770 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007771 wc->flags[level] |= flag;
7772 }
7773
7774 /*
7775 * the block is shared by multiple trees, so it's not good to
7776 * keep the tree lock
7777 */
7778 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04007779 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007780 path->locks[level] = 0;
7781 }
7782 return 0;
7783}
7784
7785/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007786 * helper to process tree block pointer.
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007787 *
7788 * when wc->stage == DROP_REFERENCE, this function checks
7789 * reference count of the block pointed to. if the block
7790 * is shared and we need update back refs for the subtree
7791 * rooted at the block, this function changes wc->stage to
7792 * UPDATE_BACKREF. if the block is shared and there is no
7793 * need to update back, this function drops the reference
7794 * to the block.
7795 *
7796 * NOTE: return value 1 means we should stop walking down.
7797 */
7798static noinline int do_walk_down(struct btrfs_trans_handle *trans,
7799 struct btrfs_root *root,
7800 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007801 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007802{
7803 u64 bytenr;
7804 u64 generation;
7805 u64 parent;
7806 u32 blocksize;
7807 struct btrfs_key key;
7808 struct extent_buffer *next;
7809 int level = wc->level;
7810 int reada = 0;
7811 int ret = 0;
Mark Fasheh11526512014-07-17 12:39:01 -07007812 bool need_account = false;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007813
7814 generation = btrfs_node_ptr_generation(path->nodes[level],
7815 path->slots[level]);
7816 /*
7817 * if the lower level block was created before the snapshot
7818 * was created, we know there is no need to update back refs
7819 * for the subtree
7820 */
7821 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04007822 generation <= root->root_key.offset) {
7823 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007824 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007825 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007826
7827 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
David Sterba707e8a02014-06-04 19:22:26 +02007828 blocksize = root->nodesize;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007829
David Sterba0308af42014-06-15 01:43:40 +02007830 next = btrfs_find_tree_block(root, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007831 if (!next) {
7832 next = btrfs_find_create_tree_block(root, bytenr, blocksize);
Miao Xie90d2c51d2010-03-25 12:37:12 +00007833 if (!next)
7834 return -ENOMEM;
Josef Bacikb2aaaa32013-07-05 17:05:38 -04007835 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
7836 level - 1);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007837 reada = 1;
7838 }
7839 btrfs_tree_lock(next);
7840 btrfs_set_lock_blocking(next);
7841
Josef Bacik3173a182013-03-07 14:22:04 -05007842 ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007843 &wc->refs[level - 1],
7844 &wc->flags[level - 1]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007845 if (ret < 0) {
7846 btrfs_tree_unlock(next);
7847 return ret;
7848 }
7849
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007850 if (unlikely(wc->refs[level - 1] == 0)) {
7851 btrfs_err(root->fs_info, "Missing references.");
7852 BUG();
7853 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04007854 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007855
Yan, Zheng94fcca92009-10-09 09:25:16 -04007856 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007857 if (wc->refs[level - 1] > 1) {
Mark Fasheh11526512014-07-17 12:39:01 -07007858 need_account = true;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007859 if (level == 1 &&
7860 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7861 goto skip;
7862
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007863 if (!wc->update_ref ||
7864 generation <= root->root_key.offset)
7865 goto skip;
7866
7867 btrfs_node_key_to_cpu(path->nodes[level], &key,
7868 path->slots[level]);
7869 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
7870 if (ret < 0)
7871 goto skip;
7872
7873 wc->stage = UPDATE_BACKREF;
7874 wc->shared_level = level - 1;
7875 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04007876 } else {
7877 if (level == 1 &&
7878 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7879 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007880 }
7881
Chris Masonb9fab912012-05-06 07:23:47 -04007882 if (!btrfs_buffer_uptodate(next, generation, 0)) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007883 btrfs_tree_unlock(next);
7884 free_extent_buffer(next);
7885 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007886 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007887 }
7888
7889 if (!next) {
7890 if (reada && level == 1)
7891 reada_walk_down(trans, root, wc, path);
David Sterbace86cd52014-06-15 01:07:32 +02007892 next = read_tree_block(root, bytenr, generation);
Josef Bacik416bc652013-04-23 14:17:42 -04007893 if (!next || !extent_buffer_uptodate(next)) {
7894 free_extent_buffer(next);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00007895 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04007896 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007897 btrfs_tree_lock(next);
7898 btrfs_set_lock_blocking(next);
7899 }
7900
7901 level--;
7902 BUG_ON(level != btrfs_header_level(next));
7903 path->nodes[level] = next;
7904 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04007905 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007906 wc->level = level;
7907 if (wc->level == 1)
7908 wc->reada_slot = 0;
7909 return 0;
7910skip:
7911 wc->refs[level - 1] = 0;
7912 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007913 if (wc->stage == DROP_REFERENCE) {
7914 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
7915 parent = path->nodes[level]->start;
7916 } else {
7917 BUG_ON(root->root_key.objectid !=
7918 btrfs_header_owner(path->nodes[level]));
7919 parent = 0;
7920 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007921
Mark Fasheh11526512014-07-17 12:39:01 -07007922 if (need_account) {
7923 ret = account_shared_subtree(trans, root, next,
7924 generation, level - 1);
7925 if (ret) {
7926 printk_ratelimited(KERN_ERR "BTRFS: %s Error "
7927 "%d accounting shared subtree. Quota "
7928 "is out of sync, rescan required.\n",
7929 root->fs_info->sb->s_id, ret);
7930 }
7931 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04007932 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007933 root->root_key.objectid, level - 1, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007934 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007935 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007936 btrfs_tree_unlock(next);
7937 free_extent_buffer(next);
Yan, Zheng94fcca92009-10-09 09:25:16 -04007938 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007939 return 1;
7940}
7941
7942/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007943 * helper to process tree block while walking up the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04007944 *
7945 * when wc->stage == DROP_REFERENCE, this function drops
7946 * reference count on the block.
7947 *
7948 * when wc->stage == UPDATE_BACKREF, this function changes
7949 * wc->stage back to DROP_REFERENCE if we changed wc->stage
7950 * to UPDATE_BACKREF previously while processing the block.
7951 *
7952 * NOTE: return value 1 means we should stop walking up.
7953 */
7954static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
7955 struct btrfs_root *root,
7956 struct btrfs_path *path,
7957 struct walk_control *wc)
7958{
Yan, Zhengf0486c62010-05-16 10:46:25 -04007959 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007960 int level = wc->level;
7961 struct extent_buffer *eb = path->nodes[level];
7962 u64 parent = 0;
7963
7964 if (wc->stage == UPDATE_BACKREF) {
7965 BUG_ON(wc->shared_level < level);
7966 if (level < wc->shared_level)
7967 goto out;
7968
Yan Zheng2c47e6052009-06-27 21:07:35 -04007969 ret = find_next_key(path, level + 1, &wc->update_progress);
7970 if (ret > 0)
7971 wc->update_ref = 0;
7972
7973 wc->stage = DROP_REFERENCE;
7974 wc->shared_level = -1;
7975 path->slots[level] = 0;
7976
7977 /*
7978 * check reference count again if the block isn't locked.
7979 * we should start walking down the tree again if reference
7980 * count is one.
7981 */
7982 if (!path->locks[level]) {
7983 BUG_ON(level == 0);
7984 btrfs_tree_lock(eb);
7985 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04007986 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007987
7988 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05007989 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007990 &wc->refs[level],
7991 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007992 if (ret < 0) {
7993 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00007994 path->locks[level] = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007995 return ret;
7996 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007997 BUG_ON(wc->refs[level] == 0);
7998 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04007999 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00008000 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008001 return 1;
8002 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008003 }
8004 }
8005
8006 /* wc->stage == DROP_REFERENCE */
8007 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
8008
8009 if (wc->refs[level] == 1) {
8010 if (level == 0) {
8011 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
Josef Bacike339a6b2014-07-02 10:54:25 -07008012 ret = btrfs_dec_ref(trans, root, eb, 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008013 else
Josef Bacike339a6b2014-07-02 10:54:25 -07008014 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008015 BUG_ON(ret); /* -ENOMEM */
Mark Fasheh11526512014-07-17 12:39:01 -07008016 ret = account_leaf_items(trans, root, eb);
8017 if (ret) {
8018 printk_ratelimited(KERN_ERR "BTRFS: %s Error "
8019 "%d accounting leaf items. Quota "
8020 "is out of sync, rescan required.\n",
8021 root->fs_info->sb->s_id, ret);
8022 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008023 }
8024 /* make block locked assertion in clean_tree_block happy */
8025 if (!path->locks[level] &&
8026 btrfs_header_generation(eb) == trans->transid) {
8027 btrfs_tree_lock(eb);
8028 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04008029 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008030 }
8031 clean_tree_block(trans, root, eb);
8032 }
8033
8034 if (eb == root->node) {
8035 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
8036 parent = eb->start;
8037 else
8038 BUG_ON(root->root_key.objectid !=
8039 btrfs_header_owner(eb));
8040 } else {
8041 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
8042 parent = path->nodes[level + 1]->start;
8043 else
8044 BUG_ON(root->root_key.objectid !=
8045 btrfs_header_owner(path->nodes[level + 1]));
8046 }
8047
Jan Schmidt5581a512012-05-16 17:04:52 +02008048 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008049out:
8050 wc->refs[level] = 0;
8051 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008052 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008053}
8054
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008055static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
8056 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008057 struct btrfs_path *path,
8058 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04008059{
Yan Zheng2c47e6052009-06-27 21:07:35 -04008060 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008061 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008062 int ret;
8063
Yan Zheng2c47e6052009-06-27 21:07:35 -04008064 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04008065 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008066 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04008067 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008068
Yan Zheng2c47e6052009-06-27 21:07:35 -04008069 if (level == 0)
8070 break;
8071
Yan, Zheng7a7965f2010-02-01 02:41:17 +00008072 if (path->slots[level] >=
8073 btrfs_header_nritems(path->nodes[level]))
8074 break;
8075
Yan, Zheng94fcca92009-10-09 09:25:16 -04008076 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008077 if (ret > 0) {
8078 path->slots[level]++;
8079 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00008080 } else if (ret < 0)
8081 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008082 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008083 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04008084 return 0;
8085}
8086
Chris Masond3977122009-01-05 21:25:51 -05008087static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05008088 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04008089 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008090 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05008091{
Yan Zheng2c47e6052009-06-27 21:07:35 -04008092 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05008093 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04008094
Yan Zheng2c47e6052009-06-27 21:07:35 -04008095 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
8096 while (level < max_level && path->nodes[level]) {
8097 wc->level = level;
8098 if (path->slots[level] + 1 <
8099 btrfs_header_nritems(path->nodes[level])) {
8100 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05008101 return 0;
8102 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008103 ret = walk_up_proc(trans, root, path, wc);
8104 if (ret > 0)
8105 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05008106
Yan Zheng2c47e6052009-06-27 21:07:35 -04008107 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04008108 btrfs_tree_unlock_rw(path->nodes[level],
8109 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008110 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008111 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008112 free_extent_buffer(path->nodes[level]);
8113 path->nodes[level] = NULL;
8114 level++;
Chris Mason20524f02007-03-10 06:35:47 -05008115 }
8116 }
8117 return 1;
8118}
8119
Chris Mason9aca1d52007-03-13 11:09:37 -04008120/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04008121 * drop a subvolume tree.
8122 *
8123 * this function traverses the tree freeing any blocks that only
8124 * referenced by the tree.
8125 *
8126 * when a shared tree block is found. this function decreases its
8127 * reference count by one. if update_ref is true, this function
8128 * also make sure backrefs for the shared block and all lower level
8129 * blocks are properly updated.
David Sterba9d1a2a32013-03-12 15:13:28 +00008130 *
8131 * If called with for_reloc == 0, may exit early with -EAGAIN
Chris Mason9aca1d52007-03-13 11:09:37 -04008132 */
Jeff Mahoney2c536792011-10-03 23:22:41 -04008133int btrfs_drop_snapshot(struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008134 struct btrfs_block_rsv *block_rsv, int update_ref,
8135 int for_reloc)
Chris Mason20524f02007-03-10 06:35:47 -05008136{
Chris Mason5caf2a02007-04-02 11:20:42 -04008137 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008138 struct btrfs_trans_handle *trans;
8139 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04008140 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008141 struct walk_control *wc;
8142 struct btrfs_key key;
8143 int err = 0;
8144 int ret;
8145 int level;
Josef Bacikd29a9f62013-07-17 19:30:20 -04008146 bool root_dropped = false;
Chris Mason20524f02007-03-10 06:35:47 -05008147
Mark Fasheh11526512014-07-17 12:39:01 -07008148 btrfs_debug(root->fs_info, "Drop subvolume %llu", root->objectid);
8149
Chris Mason5caf2a02007-04-02 11:20:42 -04008150 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008151 if (!path) {
8152 err = -ENOMEM;
8153 goto out;
8154 }
Chris Mason20524f02007-03-10 06:35:47 -05008155
Yan Zheng2c47e6052009-06-27 21:07:35 -04008156 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07008157 if (!wc) {
8158 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008159 err = -ENOMEM;
8160 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07008161 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008162
Yan, Zhenga22285a2010-05-16 10:48:46 -04008163 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008164 if (IS_ERR(trans)) {
8165 err = PTR_ERR(trans);
8166 goto out_free;
8167 }
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00008168
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008169 if (block_rsv)
8170 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008171
Chris Mason9f3a7422007-08-07 15:52:19 -04008172 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008173 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008174 path->nodes[level] = btrfs_lock_root_node(root);
8175 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04008176 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008177 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008178 memset(&wc->update_progress, 0,
8179 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04008180 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04008181 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008182 memcpy(&wc->update_progress, &key,
8183 sizeof(wc->update_progress));
8184
Chris Mason6702ed42007-08-07 16:15:09 -04008185 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008186 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04008187 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008188 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
8189 path->lowest_level = 0;
8190 if (ret < 0) {
8191 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008192 goto out_end_trans;
Chris Mason9f3a7422007-08-07 15:52:19 -04008193 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008194 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008195
Chris Mason7d9eb122008-07-08 14:19:17 -04008196 /*
8197 * unlock our path, this is safe because only this
8198 * function is allowed to delete this snapshot
8199 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008200 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04008201
Yan Zheng2c47e6052009-06-27 21:07:35 -04008202 level = btrfs_header_level(root->node);
8203 while (1) {
8204 btrfs_tree_lock(path->nodes[level]);
8205 btrfs_set_lock_blocking(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04008206 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008207
8208 ret = btrfs_lookup_extent_info(trans, root,
8209 path->nodes[level]->start,
Josef Bacik3173a182013-03-07 14:22:04 -05008210 level, 1, &wc->refs[level],
Yan Zheng2c47e6052009-06-27 21:07:35 -04008211 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008212 if (ret < 0) {
8213 err = ret;
8214 goto out_end_trans;
8215 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008216 BUG_ON(wc->refs[level] == 0);
8217
8218 if (level == root_item->drop_level)
8219 break;
8220
8221 btrfs_tree_unlock(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04008222 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008223 WARN_ON(wc->refs[level] != 1);
8224 level--;
8225 }
8226 }
8227
8228 wc->level = level;
8229 wc->shared_level = -1;
8230 wc->stage = DROP_REFERENCE;
8231 wc->update_ref = update_ref;
8232 wc->keep_locks = 0;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008233 wc->for_reloc = for_reloc;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008234 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008235
8236 while (1) {
David Sterba9d1a2a32013-03-12 15:13:28 +00008237
Yan Zheng2c47e6052009-06-27 21:07:35 -04008238 ret = walk_down_tree(trans, root, path, wc);
8239 if (ret < 0) {
8240 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04008241 break;
8242 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008243
8244 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
8245 if (ret < 0) {
8246 err = ret;
8247 break;
8248 }
8249
8250 if (ret > 0) {
8251 BUG_ON(wc->stage != DROP_REFERENCE);
8252 break;
8253 }
8254
8255 if (wc->stage == DROP_REFERENCE) {
8256 level = wc->level;
8257 btrfs_node_key(path->nodes[level],
8258 &root_item->drop_progress,
8259 path->slots[level]);
8260 root_item->drop_level = level;
8261 }
8262
8263 BUG_ON(wc->level == 0);
Josef Bacik3c8f2422013-07-15 11:57:06 -04008264 if (btrfs_should_end_transaction(trans, tree_root) ||
8265 (!for_reloc && btrfs_need_cleaner_sleep(root))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008266 ret = btrfs_update_root(trans, tree_root,
8267 &root->root_key,
8268 root_item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008269 if (ret) {
8270 btrfs_abort_transaction(trans, tree_root, ret);
8271 err = ret;
8272 goto out_end_trans;
8273 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008274
Mark Fasheh11526512014-07-17 12:39:01 -07008275 /*
8276 * Qgroup update accounting is run from
8277 * delayed ref handling. This usually works
8278 * out because delayed refs are normally the
8279 * only way qgroup updates are added. However,
8280 * we may have added updates during our tree
8281 * walk so run qgroups here to make sure we
8282 * don't lose any updates.
8283 */
8284 ret = btrfs_delayed_qgroup_accounting(trans,
8285 root->fs_info);
8286 if (ret)
8287 printk_ratelimited(KERN_ERR "BTRFS: Failure %d "
8288 "running qgroup updates "
8289 "during snapshot delete. "
8290 "Quota is out of sync, "
8291 "rescan required.\n", ret);
8292
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008293 btrfs_end_transaction_throttle(trans, tree_root);
Josef Bacik3c8f2422013-07-15 11:57:06 -04008294 if (!for_reloc && btrfs_need_cleaner_sleep(root)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05008295 pr_debug("BTRFS: drop snapshot early exit\n");
Josef Bacik3c8f2422013-07-15 11:57:06 -04008296 err = -EAGAIN;
8297 goto out_free;
8298 }
8299
Yan, Zhenga22285a2010-05-16 10:48:46 -04008300 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008301 if (IS_ERR(trans)) {
8302 err = PTR_ERR(trans);
8303 goto out_free;
8304 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008305 if (block_rsv)
8306 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04008307 }
Chris Mason20524f02007-03-10 06:35:47 -05008308 }
David Sterbab3b4aa72011-04-21 01:20:15 +02008309 btrfs_release_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008310 if (err)
8311 goto out_end_trans;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008312
8313 ret = btrfs_del_root(trans, tree_root, &root->root_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008314 if (ret) {
8315 btrfs_abort_transaction(trans, tree_root, ret);
8316 goto out_end_trans;
8317 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008318
Yan, Zheng76dda932009-09-21 16:00:26 -04008319 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Miao Xiecb517ea2013-05-15 07:48:19 +00008320 ret = btrfs_find_root(tree_root, &root->root_key, path,
8321 NULL, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008322 if (ret < 0) {
8323 btrfs_abort_transaction(trans, tree_root, ret);
8324 err = ret;
8325 goto out_end_trans;
8326 } else if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05008327 /* if we fail to delete the orphan item this time
8328 * around, it'll get picked up the next time.
8329 *
8330 * The most common failure here is just -ENOENT.
8331 */
8332 btrfs_del_orphan_item(trans, tree_root,
8333 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04008334 }
8335 }
8336
Miao Xie27cdeb72014-04-02 19:51:05 +08008337 if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) {
Miao Xiecb517ea2013-05-15 07:48:19 +00008338 btrfs_drop_and_free_fs_root(tree_root->fs_info, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04008339 } else {
8340 free_extent_buffer(root->node);
8341 free_extent_buffer(root->commit_root);
Miao Xieb0feb9d2013-05-15 07:48:20 +00008342 btrfs_put_fs_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04008343 }
Josef Bacikd29a9f62013-07-17 19:30:20 -04008344 root_dropped = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008345out_end_trans:
Mark Fasheh11526512014-07-17 12:39:01 -07008346 ret = btrfs_delayed_qgroup_accounting(trans, tree_root->fs_info);
8347 if (ret)
8348 printk_ratelimited(KERN_ERR "BTRFS: Failure %d "
8349 "running qgroup updates "
8350 "during snapshot delete. "
8351 "Quota is out of sync, "
8352 "rescan required.\n", ret);
8353
Yan, Zheng3fd0a552010-05-16 10:49:59 -04008354 btrfs_end_transaction_throttle(trans, tree_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008355out_free:
Yan Zheng2c47e6052009-06-27 21:07:35 -04008356 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04008357 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008358out:
Josef Bacikd29a9f62013-07-17 19:30:20 -04008359 /*
8360 * So if we need to stop dropping the snapshot for whatever reason we
8361 * need to make sure to add it back to the dead root list so that we
8362 * keep trying to do the work later. This also cleans up roots if we
8363 * don't have it in the radix (like when we recover after a power fail
8364 * or unmount) so we don't leak memory.
8365 */
Josef Bacikb37b39c2013-07-23 16:57:15 -04008366 if (!for_reloc && root_dropped == false)
Josef Bacikd29a9f62013-07-17 19:30:20 -04008367 btrfs_add_dead_root(root);
Wang Shilong90515e72014-01-07 17:26:58 +08008368 if (err && err != -EAGAIN)
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00008369 btrfs_std_error(root->fs_info, err);
Jeff Mahoney2c536792011-10-03 23:22:41 -04008370 return err;
Chris Mason20524f02007-03-10 06:35:47 -05008371}
Chris Mason9078a3e2007-04-26 16:46:15 -04008372
Yan Zheng2c47e6052009-06-27 21:07:35 -04008373/*
8374 * drop subtree rooted at tree block 'node'.
8375 *
8376 * NOTE: this function will unlock and release tree block 'node'
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008377 * only used by relocation code
Yan Zheng2c47e6052009-06-27 21:07:35 -04008378 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04008379int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
8380 struct btrfs_root *root,
8381 struct extent_buffer *node,
8382 struct extent_buffer *parent)
8383{
8384 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008385 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008386 int level;
8387 int parent_level;
8388 int ret = 0;
8389 int wret;
8390
Yan Zheng2c47e6052009-06-27 21:07:35 -04008391 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
8392
Yan Zhengf82d02d2008-10-29 14:49:05 -04008393 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00008394 if (!path)
8395 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008396
Yan Zheng2c47e6052009-06-27 21:07:35 -04008397 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00008398 if (!wc) {
8399 btrfs_free_path(path);
8400 return -ENOMEM;
8401 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008402
Chris Masonb9447ef82009-03-09 11:45:38 -04008403 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008404 parent_level = btrfs_header_level(parent);
8405 extent_buffer_get(parent);
8406 path->nodes[parent_level] = parent;
8407 path->slots[parent_level] = btrfs_header_nritems(parent);
8408
Chris Masonb9447ef82009-03-09 11:45:38 -04008409 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008410 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008411 path->nodes[level] = node;
8412 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008413 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008414
8415 wc->refs[parent_level] = 1;
8416 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
8417 wc->level = level;
8418 wc->shared_level = -1;
8419 wc->stage = DROP_REFERENCE;
8420 wc->update_ref = 0;
8421 wc->keep_locks = 1;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008422 wc->for_reloc = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008423 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008424
8425 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008426 wret = walk_down_tree(trans, root, path, wc);
8427 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04008428 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008429 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008430 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04008431
Yan Zheng2c47e6052009-06-27 21:07:35 -04008432 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008433 if (wret < 0)
8434 ret = wret;
8435 if (wret != 0)
8436 break;
8437 }
8438
Yan Zheng2c47e6052009-06-27 21:07:35 -04008439 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04008440 btrfs_free_path(path);
8441 return ret;
8442}
8443
Chris Masonec44a352008-04-28 15:29:52 -04008444static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
8445{
8446 u64 num_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03008447 u64 stripped;
Chris Masonec44a352008-04-28 15:29:52 -04008448
Ilya Dryomovfc67c452012-03-27 17:09:17 +03008449 /*
8450 * if restripe for this chunk_type is on pick target profile and
8451 * return, otherwise do the usual balance
8452 */
8453 stripped = get_restripe_target(root->fs_info, flags);
8454 if (stripped)
8455 return extended_to_chunk(stripped);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02008456
Miao Xie95669972014-07-24 11:37:14 +08008457 num_devices = root->fs_info->fs_devices->rw_devices;
Chris Masoncd02dca2010-12-13 14:56:23 -05008458
Ilya Dryomovfc67c452012-03-27 17:09:17 +03008459 stripped = BTRFS_BLOCK_GROUP_RAID0 |
David Woodhouse53b381b2013-01-29 18:40:14 -05008460 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
Ilya Dryomovfc67c452012-03-27 17:09:17 +03008461 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
8462
Chris Masonec44a352008-04-28 15:29:52 -04008463 if (num_devices == 1) {
8464 stripped |= BTRFS_BLOCK_GROUP_DUP;
8465 stripped = flags & ~stripped;
8466
8467 /* turn raid0 into single device chunks */
8468 if (flags & BTRFS_BLOCK_GROUP_RAID0)
8469 return stripped;
8470
8471 /* turn mirroring into duplication */
8472 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
8473 BTRFS_BLOCK_GROUP_RAID10))
8474 return stripped | BTRFS_BLOCK_GROUP_DUP;
Chris Masonec44a352008-04-28 15:29:52 -04008475 } else {
8476 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04008477 if (flags & stripped)
8478 return flags;
8479
8480 stripped |= BTRFS_BLOCK_GROUP_DUP;
8481 stripped = flags & ~stripped;
8482
8483 /* switch duplicated blocks with raid1 */
8484 if (flags & BTRFS_BLOCK_GROUP_DUP)
8485 return stripped | BTRFS_BLOCK_GROUP_RAID1;
8486
Ilya Dryomove3176ca2012-03-27 17:09:16 +03008487 /* this is drive concat, leave it alone */
Chris Masonec44a352008-04-28 15:29:52 -04008488 }
Ilya Dryomove3176ca2012-03-27 17:09:16 +03008489
Chris Masonec44a352008-04-28 15:29:52 -04008490 return flags;
8491}
8492
Miao Xie199c36e2011-07-15 10:34:36 +00008493static int set_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04008494{
Yan, Zhengf0486c62010-05-16 10:46:25 -04008495 struct btrfs_space_info *sinfo = cache->space_info;
8496 u64 num_bytes;
Miao Xie199c36e2011-07-15 10:34:36 +00008497 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008498 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04008499
Chris Masonc286ac42008-07-22 23:06:41 -04008500
Miao Xie199c36e2011-07-15 10:34:36 +00008501 /*
8502 * We need some metadata space and system metadata space for
8503 * allocating chunks in some corner cases until we force to set
8504 * it to be readonly.
8505 */
8506 if ((sinfo->flags &
8507 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
8508 !force)
8509 min_allocable_bytes = 1 * 1024 * 1024;
8510 else
8511 min_allocable_bytes = 0;
8512
Yan, Zhengf0486c62010-05-16 10:46:25 -04008513 spin_lock(&sinfo->lock);
8514 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00008515
8516 if (cache->ro) {
8517 ret = 0;
8518 goto out;
8519 }
8520
Yan, Zhengf0486c62010-05-16 10:46:25 -04008521 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8522 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04008523
Yan, Zhengf0486c62010-05-16 10:46:25 -04008524 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
Josef Bacik37be25b2011-08-05 10:25:38 -04008525 sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes +
8526 min_allocable_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04008527 sinfo->bytes_readonly += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008528 cache->ro = 1;
Josef Bacik633c0aa2014-10-31 09:49:34 -04008529 list_add_tail(&cache->ro_list, &sinfo->ro_bgs);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008530 ret = 0;
8531 }
WuBo61cfea92011-07-26 03:30:11 +00008532out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04008533 spin_unlock(&cache->lock);
8534 spin_unlock(&sinfo->lock);
8535 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04008536}
8537
Yan, Zhengf0486c62010-05-16 10:46:25 -04008538int btrfs_set_block_group_ro(struct btrfs_root *root,
8539 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008540
8541{
Yan, Zhengf0486c62010-05-16 10:46:25 -04008542 struct btrfs_trans_handle *trans;
8543 u64 alloc_flags;
8544 int ret;
8545
8546 BUG_ON(cache->ro);
8547
Josef Bacik7a7eaa42011-04-13 12:54:33 -04008548 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008549 if (IS_ERR(trans))
8550 return PTR_ERR(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008551
8552 alloc_flags = update_block_group_flags(root, cache->flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008553 if (alloc_flags != cache->flags) {
Josef Bacik698d0082012-09-12 14:08:47 -04008554 ret = do_chunk_alloc(trans, root, alloc_flags,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008555 CHUNK_ALLOC_FORCE);
8556 if (ret < 0)
8557 goto out;
8558 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008559
Miao Xie199c36e2011-07-15 10:34:36 +00008560 ret = set_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008561 if (!ret)
8562 goto out;
8563 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
Josef Bacik698d0082012-09-12 14:08:47 -04008564 ret = do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04008565 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008566 if (ret < 0)
8567 goto out;
Miao Xie199c36e2011-07-15 10:34:36 +00008568 ret = set_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008569out:
8570 btrfs_end_transaction(trans, root);
8571 return ret;
8572}
8573
Chris Masonc87f08c2011-02-16 13:57:04 -05008574int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
8575 struct btrfs_root *root, u64 type)
8576{
8577 u64 alloc_flags = get_alloc_profile(root, type);
Josef Bacik698d0082012-09-12 14:08:47 -04008578 return do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04008579 CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05008580}
8581
Miao Xie6d07bce2011-01-05 10:07:31 +00008582/*
8583 * helper to account the unused space of all the readonly block group in the
Josef Bacik633c0aa2014-10-31 09:49:34 -04008584 * space_info. takes mirrors into account.
Miao Xie6d07bce2011-01-05 10:07:31 +00008585 */
Josef Bacik633c0aa2014-10-31 09:49:34 -04008586u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
Miao Xie6d07bce2011-01-05 10:07:31 +00008587{
8588 struct btrfs_block_group_cache *block_group;
8589 u64 free_bytes = 0;
8590 int factor;
8591
Josef Bacik633c0aa2014-10-31 09:49:34 -04008592 /* It's df, we don't care if it's racey */
8593 if (list_empty(&sinfo->ro_bgs))
8594 return 0;
8595
8596 spin_lock(&sinfo->lock);
8597 list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00008598 spin_lock(&block_group->lock);
8599
8600 if (!block_group->ro) {
8601 spin_unlock(&block_group->lock);
8602 continue;
8603 }
8604
8605 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
8606 BTRFS_BLOCK_GROUP_RAID10 |
8607 BTRFS_BLOCK_GROUP_DUP))
8608 factor = 2;
8609 else
8610 factor = 1;
8611
8612 free_bytes += (block_group->key.offset -
8613 btrfs_block_group_used(&block_group->item)) *
8614 factor;
8615
8616 spin_unlock(&block_group->lock);
8617 }
Miao Xie6d07bce2011-01-05 10:07:31 +00008618 spin_unlock(&sinfo->lock);
8619
8620 return free_bytes;
8621}
8622
Jeff Mahoney143bede2012-03-01 14:56:26 +01008623void btrfs_set_block_group_rw(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04008624 struct btrfs_block_group_cache *cache)
8625{
8626 struct btrfs_space_info *sinfo = cache->space_info;
8627 u64 num_bytes;
8628
8629 BUG_ON(!cache->ro);
8630
8631 spin_lock(&sinfo->lock);
8632 spin_lock(&cache->lock);
8633 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8634 cache->bytes_super - btrfs_block_group_used(&cache->item);
8635 sinfo->bytes_readonly -= num_bytes;
8636 cache->ro = 0;
Josef Bacik633c0aa2014-10-31 09:49:34 -04008637 list_del_init(&cache->ro_list);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008638 spin_unlock(&cache->lock);
8639 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008640}
8641
Josef Bacikba1bf482009-09-11 16:11:19 -04008642/*
8643 * checks to see if its even possible to relocate this block group.
8644 *
8645 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
8646 * ok to go ahead and try.
8647 */
8648int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04008649{
Zheng Yan1a40e232008-09-26 10:09:34 -04008650 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04008651 struct btrfs_space_info *space_info;
8652 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
8653 struct btrfs_device *device;
Josef Bacik6df9a952013-06-27 13:22:46 -04008654 struct btrfs_trans_handle *trans;
liubocdcb7252011-08-03 10:15:25 +00008655 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04008656 u64 dev_min = 1;
8657 u64 dev_nr = 0;
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008658 u64 target;
liubocdcb7252011-08-03 10:15:25 +00008659 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04008660 int full = 0;
8661 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05008662
Josef Bacikba1bf482009-09-11 16:11:19 -04008663 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04008664
Josef Bacikba1bf482009-09-11 16:11:19 -04008665 /* odd, couldn't find the block group, leave it alone */
8666 if (!block_group)
8667 return -1;
Chris Masonedbd8d42007-12-21 16:27:24 -05008668
liubocdcb7252011-08-03 10:15:25 +00008669 min_free = btrfs_block_group_used(&block_group->item);
8670
Josef Bacikba1bf482009-09-11 16:11:19 -04008671 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00008672 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04008673 goto out;
Chris Mason323da792008-05-09 11:46:48 -04008674
Josef Bacikba1bf482009-09-11 16:11:19 -04008675 space_info = block_group->space_info;
8676 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04008677
Josef Bacikba1bf482009-09-11 16:11:19 -04008678 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04008679
Josef Bacikba1bf482009-09-11 16:11:19 -04008680 /*
8681 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04008682 * relocate it unless we're able to allocate a new chunk below.
8683 *
8684 * Otherwise, we need to make sure we have room in the space to handle
8685 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04008686 */
Chris Mason7ce618d2009-09-22 14:48:44 -04008687 if ((space_info->total_bytes != block_group->key.offset) &&
liubocdcb7252011-08-03 10:15:25 +00008688 (space_info->bytes_used + space_info->bytes_reserved +
8689 space_info->bytes_pinned + space_info->bytes_readonly +
8690 min_free < space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04008691 spin_unlock(&space_info->lock);
8692 goto out;
8693 }
8694 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008695
Josef Bacikba1bf482009-09-11 16:11:19 -04008696 /*
8697 * ok we don't have enough space, but maybe we have free space on our
8698 * devices to allocate new chunks for relocation, so loop through our
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008699 * alloc devices and guess if we have enough space. if this block
8700 * group is going to be restriped, run checks against the target
8701 * profile instead of the current one.
Josef Bacikba1bf482009-09-11 16:11:19 -04008702 */
8703 ret = -1;
Chris Mason4313b392008-01-03 09:08:48 -05008704
liubocdcb7252011-08-03 10:15:25 +00008705 /*
8706 * index:
8707 * 0: raid10
8708 * 1: raid1
8709 * 2: dup
8710 * 3: raid0
8711 * 4: single
8712 */
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008713 target = get_restripe_target(root->fs_info, block_group->flags);
8714 if (target) {
Liu Bo31e50222012-11-21 14:18:10 +00008715 index = __get_raid_index(extended_to_chunk(target));
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008716 } else {
8717 /*
8718 * this is just a balance, so if we were marked as full
8719 * we know there is no space for a new chunk
8720 */
8721 if (full)
8722 goto out;
8723
8724 index = get_block_group_index(block_group);
8725 }
8726
Miao Xiee6ec7162013-01-17 05:38:51 +00008727 if (index == BTRFS_RAID_RAID10) {
liubocdcb7252011-08-03 10:15:25 +00008728 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04008729 /* Divide by 2 */
8730 min_free >>= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00008731 } else if (index == BTRFS_RAID_RAID1) {
liubocdcb7252011-08-03 10:15:25 +00008732 dev_min = 2;
Miao Xiee6ec7162013-01-17 05:38:51 +00008733 } else if (index == BTRFS_RAID_DUP) {
Josef Bacik6719db62011-08-20 08:29:51 -04008734 /* Multiply by 2 */
8735 min_free <<= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00008736 } else if (index == BTRFS_RAID_RAID0) {
liubocdcb7252011-08-03 10:15:25 +00008737 dev_min = fs_devices->rw_devices;
Josef Bacik6719db62011-08-20 08:29:51 -04008738 do_div(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00008739 }
8740
Josef Bacik6df9a952013-06-27 13:22:46 -04008741 /* We need to do this so that we can look at pending chunks */
8742 trans = btrfs_join_transaction(root);
8743 if (IS_ERR(trans)) {
8744 ret = PTR_ERR(trans);
8745 goto out;
8746 }
8747
Josef Bacikba1bf482009-09-11 16:11:19 -04008748 mutex_lock(&root->fs_info->chunk_mutex);
8749 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00008750 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04008751
Josef Bacikba1bf482009-09-11 16:11:19 -04008752 /*
8753 * check to make sure we can actually find a chunk with enough
8754 * space to fit our block group in.
8755 */
Stefan Behrens63a212a2012-11-05 18:29:28 +01008756 if (device->total_bytes > device->bytes_used + min_free &&
8757 !device->is_tgtdev_for_dev_replace) {
Josef Bacik6df9a952013-06-27 13:22:46 -04008758 ret = find_free_dev_extent(trans, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00008759 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04008760 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00008761 dev_nr++;
8762
8763 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05008764 break;
liubocdcb7252011-08-03 10:15:25 +00008765
Josef Bacikba1bf482009-09-11 16:11:19 -04008766 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05008767 }
Chris Masonedbd8d42007-12-21 16:27:24 -05008768 }
Josef Bacikba1bf482009-09-11 16:11:19 -04008769 mutex_unlock(&root->fs_info->chunk_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04008770 btrfs_end_transaction(trans, root);
Chris Masonedbd8d42007-12-21 16:27:24 -05008771out:
Josef Bacikba1bf482009-09-11 16:11:19 -04008772 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05008773 return ret;
8774}
8775
Christoph Hellwigb2950862008-12-02 09:54:17 -05008776static int find_first_block_group(struct btrfs_root *root,
8777 struct btrfs_path *path, struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04008778{
Chris Mason925baed2008-06-25 16:01:30 -04008779 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04008780 struct btrfs_key found_key;
8781 struct extent_buffer *leaf;
8782 int slot;
8783
8784 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
8785 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008786 goto out;
8787
Chris Masond3977122009-01-05 21:25:51 -05008788 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04008789 slot = path->slots[0];
8790 leaf = path->nodes[0];
8791 if (slot >= btrfs_header_nritems(leaf)) {
8792 ret = btrfs_next_leaf(root, path);
8793 if (ret == 0)
8794 continue;
8795 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008796 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04008797 break;
8798 }
8799 btrfs_item_key_to_cpu(leaf, &found_key, slot);
8800
8801 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04008802 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
8803 ret = 0;
8804 goto out;
8805 }
Chris Mason0b86a832008-03-24 15:01:56 -04008806 path->slots[0]++;
8807 }
Chris Mason925baed2008-06-25 16:01:30 -04008808out:
Chris Mason0b86a832008-03-24 15:01:56 -04008809 return ret;
8810}
8811
Josef Bacik0af3d002010-06-21 14:48:16 -04008812void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
8813{
8814 struct btrfs_block_group_cache *block_group;
8815 u64 last = 0;
8816
8817 while (1) {
8818 struct inode *inode;
8819
8820 block_group = btrfs_lookup_first_block_group(info, last);
8821 while (block_group) {
8822 spin_lock(&block_group->lock);
8823 if (block_group->iref)
8824 break;
8825 spin_unlock(&block_group->lock);
8826 block_group = next_block_group(info->tree_root,
8827 block_group);
8828 }
8829 if (!block_group) {
8830 if (last == 0)
8831 break;
8832 last = 0;
8833 continue;
8834 }
8835
8836 inode = block_group->inode;
8837 block_group->iref = 0;
8838 block_group->inode = NULL;
8839 spin_unlock(&block_group->lock);
8840 iput(inode);
8841 last = block_group->key.objectid + block_group->key.offset;
8842 btrfs_put_block_group(block_group);
8843 }
8844}
8845
Zheng Yan1a40e232008-09-26 10:09:34 -04008846int btrfs_free_block_groups(struct btrfs_fs_info *info)
8847{
8848 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04008849 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04008850 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04008851 struct rb_node *n;
8852
Josef Bacik9e351cc2014-03-13 15:42:13 -04008853 down_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04008854 while (!list_empty(&info->caching_block_groups)) {
8855 caching_ctl = list_entry(info->caching_block_groups.next,
8856 struct btrfs_caching_control, list);
8857 list_del(&caching_ctl->list);
8858 put_caching_control(caching_ctl);
8859 }
Josef Bacik9e351cc2014-03-13 15:42:13 -04008860 up_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04008861
Josef Bacik47ab2a62014-09-18 11:20:02 -04008862 spin_lock(&info->unused_bgs_lock);
8863 while (!list_empty(&info->unused_bgs)) {
8864 block_group = list_first_entry(&info->unused_bgs,
8865 struct btrfs_block_group_cache,
8866 bg_list);
8867 list_del_init(&block_group->bg_list);
8868 btrfs_put_block_group(block_group);
8869 }
8870 spin_unlock(&info->unused_bgs_lock);
8871
Zheng Yan1a40e232008-09-26 10:09:34 -04008872 spin_lock(&info->block_group_cache_lock);
8873 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
8874 block_group = rb_entry(n, struct btrfs_block_group_cache,
8875 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04008876 rb_erase(&block_group->cache_node,
8877 &info->block_group_cache_tree);
Yan Zhengd899e052008-10-30 14:25:28 -04008878 spin_unlock(&info->block_group_cache_lock);
8879
Josef Bacik80eb2342008-10-29 14:49:05 -04008880 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04008881 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04008882 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05008883
Josef Bacik817d52f2009-07-13 21:29:25 -04008884 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04008885 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04008886
Josef Bacik3c148742011-02-02 15:53:47 +00008887 /*
8888 * We haven't cached this block group, which means we could
8889 * possibly have excluded extents on this block group.
8890 */
Josef Bacik36cce922013-08-05 11:15:21 -04008891 if (block_group->cached == BTRFS_CACHE_NO ||
8892 block_group->cached == BTRFS_CACHE_ERROR)
Josef Bacik3c148742011-02-02 15:53:47 +00008893 free_excluded_extents(info->extent_root, block_group);
8894
Josef Bacik817d52f2009-07-13 21:29:25 -04008895 btrfs_remove_free_space_cache(block_group);
Josef Bacik11dfe352009-11-13 20:12:59 +00008896 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04008897
8898 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008899 }
8900 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -04008901
8902 /* now that all the block groups are freed, go through and
8903 * free all the space_info structs. This is only called during
8904 * the final stages of unmount, and so we know nobody is
8905 * using them. We call synchronize_rcu() once before we start,
8906 * just to be on the safe side.
8907 */
8908 synchronize_rcu();
8909
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04008910 release_global_block_rsv(info);
8911
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05308912 while (!list_empty(&info->space_info)) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008913 int i;
8914
Chris Mason4184ea72009-03-10 12:39:20 -04008915 space_info = list_entry(info->space_info.next,
8916 struct btrfs_space_info,
8917 list);
David Sterbab069e0c2013-02-08 21:28:17 +00008918 if (btrfs_test_opt(info->tree_root, ENOSPC_DEBUG)) {
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05308919 if (WARN_ON(space_info->bytes_pinned > 0 ||
David Sterbab069e0c2013-02-08 21:28:17 +00008920 space_info->bytes_reserved > 0 ||
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05308921 space_info->bytes_may_use > 0)) {
David Sterbab069e0c2013-02-08 21:28:17 +00008922 dump_space_info(space_info, 0, 0);
8923 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008924 }
Chris Mason4184ea72009-03-10 12:39:20 -04008925 list_del(&space_info->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008926 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
8927 struct kobject *kobj;
Jeff Mahoneyc1895442014-05-27 12:59:57 -04008928 kobj = space_info->block_group_kobjs[i];
8929 space_info->block_group_kobjs[i] = NULL;
8930 if (kobj) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008931 kobject_del(kobj);
8932 kobject_put(kobj);
8933 }
8934 }
8935 kobject_del(&space_info->kobj);
8936 kobject_put(&space_info->kobj);
Chris Mason4184ea72009-03-10 12:39:20 -04008937 }
Zheng Yan1a40e232008-09-26 10:09:34 -04008938 return 0;
8939}
8940
Yan, Zhengb742bb822010-05-16 10:46:24 -04008941static void __link_block_group(struct btrfs_space_info *space_info,
8942 struct btrfs_block_group_cache *cache)
8943{
8944 int index = get_block_group_index(cache);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -04008945 bool first = false;
Yan, Zhengb742bb822010-05-16 10:46:24 -04008946
8947 down_write(&space_info->groups_sem);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -04008948 if (list_empty(&space_info->block_groups[index]))
8949 first = true;
8950 list_add_tail(&cache->list, &space_info->block_groups[index]);
8951 up_write(&space_info->groups_sem);
8952
8953 if (first) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04008954 struct raid_kobject *rkobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008955 int ret;
8956
Jeff Mahoneyc1895442014-05-27 12:59:57 -04008957 rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS);
8958 if (!rkobj)
8959 goto out_err;
8960 rkobj->raid_type = index;
8961 kobject_init(&rkobj->kobj, &btrfs_raid_ktype);
8962 ret = kobject_add(&rkobj->kobj, &space_info->kobj,
8963 "%s", get_raid_name(index));
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008964 if (ret) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04008965 kobject_put(&rkobj->kobj);
8966 goto out_err;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008967 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -04008968 space_info->block_group_kobjs[index] = &rkobj->kobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008969 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -04008970
8971 return;
8972out_err:
8973 pr_warn("BTRFS: failed to add kobject for block cache. ignoring.\n");
Yan, Zhengb742bb822010-05-16 10:46:24 -04008974}
8975
Miao Xie920e4a52014-01-15 20:00:55 +08008976static struct btrfs_block_group_cache *
8977btrfs_create_block_group_cache(struct btrfs_root *root, u64 start, u64 size)
8978{
8979 struct btrfs_block_group_cache *cache;
8980
8981 cache = kzalloc(sizeof(*cache), GFP_NOFS);
8982 if (!cache)
8983 return NULL;
8984
8985 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
8986 GFP_NOFS);
8987 if (!cache->free_space_ctl) {
8988 kfree(cache);
8989 return NULL;
8990 }
8991
8992 cache->key.objectid = start;
8993 cache->key.offset = size;
8994 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
8995
8996 cache->sectorsize = root->sectorsize;
8997 cache->fs_info = root->fs_info;
8998 cache->full_stripe_len = btrfs_full_stripe_len(root,
8999 &root->fs_info->mapping_tree,
9000 start);
9001 atomic_set(&cache->count, 1);
9002 spin_lock_init(&cache->lock);
Miao Xiee570fd22014-06-19 10:42:50 +08009003 init_rwsem(&cache->data_rwsem);
Miao Xie920e4a52014-01-15 20:00:55 +08009004 INIT_LIST_HEAD(&cache->list);
9005 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009006 INIT_LIST_HEAD(&cache->bg_list);
Josef Bacik633c0aa2014-10-31 09:49:34 -04009007 INIT_LIST_HEAD(&cache->ro_list);
Miao Xie920e4a52014-01-15 20:00:55 +08009008 btrfs_init_free_space_ctl(cache);
9009
9010 return cache;
9011}
9012
Chris Mason9078a3e2007-04-26 16:46:15 -04009013int btrfs_read_block_groups(struct btrfs_root *root)
9014{
9015 struct btrfs_path *path;
9016 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04009017 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04009018 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04009019 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04009020 struct btrfs_key key;
9021 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04009022 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -04009023 int need_clear = 0;
9024 u64 cache_gen;
Chris Mason96b51792007-10-15 16:15:19 -04009025
Chris Masonbe744172007-05-06 10:15:01 -04009026 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04009027 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04009028 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +02009029 key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Chris Mason9078a3e2007-04-26 16:46:15 -04009030 path = btrfs_alloc_path();
9031 if (!path)
9032 return -ENOMEM;
Josef Bacik026fd312011-05-13 10:32:11 -04009033 path->reada = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04009034
David Sterba6c417612011-04-13 15:41:04 +02009035 cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
Josef Bacik73bc1872011-10-03 14:07:49 -04009036 if (btrfs_test_opt(root, SPACE_CACHE) &&
David Sterba6c417612011-04-13 15:41:04 +02009037 btrfs_super_generation(root->fs_info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -04009038 need_clear = 1;
Josef Bacik88c2ba32010-09-21 14:21:34 -04009039 if (btrfs_test_opt(root, CLEAR_CACHE))
9040 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -04009041
Chris Masond3977122009-01-05 21:25:51 -05009042 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04009043 ret = find_first_block_group(root, path, &key);
Yan, Zhengb742bb822010-05-16 10:46:24 -04009044 if (ret > 0)
9045 break;
Chris Mason0b86a832008-03-24 15:01:56 -04009046 if (ret != 0)
9047 goto error;
Miao Xie920e4a52014-01-15 20:00:55 +08009048
Chris Mason5f39d392007-10-15 16:14:19 -04009049 leaf = path->nodes[0];
9050 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Miao Xie920e4a52014-01-15 20:00:55 +08009051
9052 cache = btrfs_create_block_group_cache(root, found_key.objectid,
9053 found_key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04009054 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04009055 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009056 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04009057 }
Josef Bacik96303082009-07-13 21:29:25 -04009058
Liu Bocf7c1ef2012-07-06 03:31:34 -06009059 if (need_clear) {
9060 /*
9061 * When we mount with old space cache, we need to
9062 * set BTRFS_DC_CLEAR and set dirty flag.
9063 *
9064 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
9065 * truncate the old free space cache inode and
9066 * setup a new one.
9067 * b) Setting 'dirty flag' makes sure that we flush
9068 * the new space cache info onto disk.
9069 */
Josef Bacik0af3d002010-06-21 14:48:16 -04009070 cache->disk_cache_state = BTRFS_DC_CLEAR;
Liu Bocf7c1ef2012-07-06 03:31:34 -06009071 if (btrfs_test_opt(root, SPACE_CACHE))
9072 cache->dirty = 1;
9073 }
Josef Bacik0af3d002010-06-21 14:48:16 -04009074
Chris Mason5f39d392007-10-15 16:14:19 -04009075 read_extent_buffer(leaf, &cache->item,
9076 btrfs_item_ptr_offset(leaf, path->slots[0]),
9077 sizeof(cache->item));
Miao Xie920e4a52014-01-15 20:00:55 +08009078 cache->flags = btrfs_block_group_flags(&cache->item);
Chris Mason0b86a832008-03-24 15:01:56 -04009079
Chris Mason9078a3e2007-04-26 16:46:15 -04009080 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +02009081 btrfs_release_path(path);
Li Zefan34d52cb2011-03-29 13:46:06 +08009082
Josef Bacik817d52f2009-07-13 21:29:25 -04009083 /*
Josef Bacik3c148742011-02-02 15:53:47 +00009084 * We need to exclude the super stripes now so that the space
9085 * info has super bytes accounted for, otherwise we'll think
9086 * we have more space than we actually do.
9087 */
Josef Bacik835d9742013-03-19 12:13:25 -04009088 ret = exclude_super_stripes(root, cache);
9089 if (ret) {
9090 /*
9091 * We may have excluded something, so call this just in
9092 * case.
9093 */
9094 free_excluded_extents(root, cache);
Miao Xie920e4a52014-01-15 20:00:55 +08009095 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -04009096 goto error;
9097 }
Josef Bacik3c148742011-02-02 15:53:47 +00009098
9099 /*
Josef Bacik817d52f2009-07-13 21:29:25 -04009100 * check for two cases, either we are full, and therefore
9101 * don't need to bother with the caching work since we won't
9102 * find any space, or we are empty, and we can just add all
9103 * the space in and be done with it. This saves us _alot_ of
9104 * time, particularly in the full case.
9105 */
9106 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -04009107 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04009108 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik1b2da372009-09-11 16:11:20 -04009109 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04009110 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -04009111 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04009112 cache->cached = BTRFS_CACHE_FINISHED;
9113 add_new_free_space(cache, root->fs_info,
9114 found_key.objectid,
9115 found_key.objectid +
9116 found_key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -04009117 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04009118 }
Chris Mason96b51792007-10-15 16:15:19 -04009119
Josef Bacik8c579fe2013-04-02 12:40:42 -04009120 ret = btrfs_add_block_group_cache(root->fs_info, cache);
9121 if (ret) {
9122 btrfs_remove_free_space_cache(cache);
9123 btrfs_put_block_group(cache);
9124 goto error;
9125 }
9126
Chris Mason6324fbf2008-03-24 15:01:59 -04009127 ret = update_space_info(info, cache->flags, found_key.offset,
9128 btrfs_block_group_used(&cache->item),
9129 &space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -04009130 if (ret) {
9131 btrfs_remove_free_space_cache(cache);
9132 spin_lock(&info->block_group_cache_lock);
9133 rb_erase(&cache->cache_node,
9134 &info->block_group_cache_tree);
9135 spin_unlock(&info->block_group_cache_lock);
9136 btrfs_put_block_group(cache);
9137 goto error;
9138 }
9139
Chris Mason6324fbf2008-03-24 15:01:59 -04009140 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -04009141 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009142 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04009143 spin_unlock(&cache->space_info->lock);
9144
Yan, Zhengb742bb822010-05-16 10:46:24 -04009145 __link_block_group(space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04009146
Chris Mason75ccf472008-09-30 19:24:06 -04009147 set_avail_alloc_bits(root->fs_info, cache->flags);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009148 if (btrfs_chunk_readonly(root, cache->key.objectid)) {
Miao Xie199c36e2011-07-15 10:34:36 +00009149 set_block_group_ro(cache, 1);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009150 } else if (btrfs_block_group_used(&cache->item) == 0) {
9151 spin_lock(&info->unused_bgs_lock);
9152 /* Should always be true but just in case. */
9153 if (list_empty(&cache->bg_list)) {
9154 btrfs_get_block_group(cache);
9155 list_add_tail(&cache->bg_list,
9156 &info->unused_bgs);
9157 }
9158 spin_unlock(&info->unused_bgs_lock);
9159 }
Chris Mason9078a3e2007-04-26 16:46:15 -04009160 }
Yan, Zhengb742bb822010-05-16 10:46:24 -04009161
9162 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
9163 if (!(get_alloc_profile(root, space_info->flags) &
9164 (BTRFS_BLOCK_GROUP_RAID10 |
9165 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05009166 BTRFS_BLOCK_GROUP_RAID5 |
9167 BTRFS_BLOCK_GROUP_RAID6 |
Yan, Zhengb742bb822010-05-16 10:46:24 -04009168 BTRFS_BLOCK_GROUP_DUP)))
9169 continue;
9170 /*
9171 * avoid allocating from un-mirrored block group if there are
9172 * mirrored block groups.
9173 */
chandan1095cc02013-07-16 12:28:56 +05309174 list_for_each_entry(cache,
9175 &space_info->block_groups[BTRFS_RAID_RAID0],
9176 list)
Miao Xie199c36e2011-07-15 10:34:36 +00009177 set_block_group_ro(cache, 1);
chandan1095cc02013-07-16 12:28:56 +05309178 list_for_each_entry(cache,
9179 &space_info->block_groups[BTRFS_RAID_SINGLE],
9180 list)
Miao Xie199c36e2011-07-15 10:34:36 +00009181 set_block_group_ro(cache, 1);
Yan, Zhengb742bb822010-05-16 10:46:24 -04009182 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009183
9184 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -04009185 ret = 0;
9186error:
Chris Mason9078a3e2007-04-26 16:46:15 -04009187 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04009188 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04009189}
Chris Mason6324fbf2008-03-24 15:01:59 -04009190
Josef Bacikea658ba2012-09-11 16:57:25 -04009191void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans,
9192 struct btrfs_root *root)
9193{
9194 struct btrfs_block_group_cache *block_group, *tmp;
9195 struct btrfs_root *extent_root = root->fs_info->extent_root;
9196 struct btrfs_block_group_item item;
9197 struct btrfs_key key;
9198 int ret = 0;
9199
Josef Bacik47ab2a62014-09-18 11:20:02 -04009200 list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) {
9201 list_del_init(&block_group->bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -04009202 if (ret)
9203 continue;
9204
9205 spin_lock(&block_group->lock);
9206 memcpy(&item, &block_group->item, sizeof(item));
9207 memcpy(&key, &block_group->key, sizeof(key));
9208 spin_unlock(&block_group->lock);
9209
9210 ret = btrfs_insert_item(trans, extent_root, &key, &item,
9211 sizeof(item));
9212 if (ret)
9213 btrfs_abort_transaction(trans, extent_root, ret);
Josef Bacik6df9a952013-06-27 13:22:46 -04009214 ret = btrfs_finish_chunk_alloc(trans, extent_root,
9215 key.objectid, key.offset);
9216 if (ret)
9217 btrfs_abort_transaction(trans, extent_root, ret);
Josef Bacikea658ba2012-09-11 16:57:25 -04009218 }
9219}
9220
Chris Mason6324fbf2008-03-24 15:01:59 -04009221int btrfs_make_block_group(struct btrfs_trans_handle *trans,
9222 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04009223 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04009224 u64 size)
9225{
9226 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04009227 struct btrfs_root *extent_root;
9228 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -04009229
9230 extent_root = root->fs_info->extent_root;
Chris Mason6324fbf2008-03-24 15:01:59 -04009231
Miao Xie995946d2014-04-02 19:51:06 +08009232 btrfs_set_log_full_commit(root->fs_info, trans);
Chris Masone02119d2008-09-05 16:13:11 -04009233
Miao Xie920e4a52014-01-15 20:00:55 +08009234 cache = btrfs_create_block_group_cache(root, chunk_offset, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -04009235 if (!cache)
9236 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +08009237
Chris Mason6324fbf2008-03-24 15:01:59 -04009238 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04009239 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
Chris Mason6324fbf2008-03-24 15:01:59 -04009240 btrfs_set_block_group_flags(&cache->item, type);
9241
Miao Xie920e4a52014-01-15 20:00:55 +08009242 cache->flags = type;
Yan Zheng11833d62009-09-11 16:11:19 -04009243 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04009244 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik835d9742013-03-19 12:13:25 -04009245 ret = exclude_super_stripes(root, cache);
9246 if (ret) {
9247 /*
9248 * We may have excluded something, so call this just in
9249 * case.
9250 */
9251 free_excluded_extents(root, cache);
Miao Xie920e4a52014-01-15 20:00:55 +08009252 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -04009253 return ret;
9254 }
Josef Bacik96303082009-07-13 21:29:25 -04009255
Josef Bacik817d52f2009-07-13 21:29:25 -04009256 add_new_free_space(cache, root->fs_info, chunk_offset,
9257 chunk_offset + size);
9258
Yan Zheng11833d62009-09-11 16:11:19 -04009259 free_excluded_extents(root, cache);
9260
Josef Bacik8c579fe2013-04-02 12:40:42 -04009261 ret = btrfs_add_block_group_cache(root->fs_info, cache);
9262 if (ret) {
9263 btrfs_remove_free_space_cache(cache);
9264 btrfs_put_block_group(cache);
9265 return ret;
9266 }
9267
Chris Mason6324fbf2008-03-24 15:01:59 -04009268 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
9269 &cache->space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -04009270 if (ret) {
9271 btrfs_remove_free_space_cache(cache);
9272 spin_lock(&root->fs_info->block_group_cache_lock);
9273 rb_erase(&cache->cache_node,
9274 &root->fs_info->block_group_cache_tree);
9275 spin_unlock(&root->fs_info->block_group_cache_lock);
9276 btrfs_put_block_group(cache);
9277 return ret;
9278 }
Li Zefanc7c144d2011-12-07 10:39:22 +08009279 update_global_block_rsv(root->fs_info);
Josef Bacik1b2da372009-09-11 16:11:20 -04009280
9281 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009282 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04009283 spin_unlock(&cache->space_info->lock);
9284
Yan, Zhengb742bb822010-05-16 10:46:24 -04009285 __link_block_group(cache->space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04009286
Josef Bacik47ab2a62014-09-18 11:20:02 -04009287 list_add_tail(&cache->bg_list, &trans->new_bgs);
Chris Mason6324fbf2008-03-24 15:01:59 -04009288
Chris Masond18a2c42008-04-04 15:40:00 -04009289 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason925baed2008-06-25 16:01:30 -04009290
Chris Mason6324fbf2008-03-24 15:01:59 -04009291 return 0;
9292}
Zheng Yan1a40e232008-09-26 10:09:34 -04009293
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009294static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
9295{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03009296 u64 extra_flags = chunk_to_extended(flags) &
9297 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009298
Miao Xiede98ced2013-01-29 10:13:12 +00009299 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009300 if (flags & BTRFS_BLOCK_GROUP_DATA)
9301 fs_info->avail_data_alloc_bits &= ~extra_flags;
9302 if (flags & BTRFS_BLOCK_GROUP_METADATA)
9303 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
9304 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
9305 fs_info->avail_system_alloc_bits &= ~extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00009306 write_sequnlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009307}
9308
Zheng Yan1a40e232008-09-26 10:09:34 -04009309int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
9310 struct btrfs_root *root, u64 group_start)
9311{
9312 struct btrfs_path *path;
9313 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -04009314 struct btrfs_free_cluster *cluster;
Josef Bacik0af3d002010-06-21 14:48:16 -04009315 struct btrfs_root *tree_root = root->fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -04009316 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -04009317 struct inode *inode;
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009318 struct kobject *kobj = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -04009319 int ret;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009320 int index;
Josef Bacik89a55892010-10-14 14:52:27 -04009321 int factor;
Filipe Manana4f69cb92014-11-26 15:28:51 +00009322 struct btrfs_caching_control *caching_ctl = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -04009323
Zheng Yan1a40e232008-09-26 10:09:34 -04009324 root = root->fs_info->extent_root;
9325
9326 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
9327 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -05009328 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -04009329
liubo9f7c43c2011-03-07 02:13:33 +00009330 /*
9331 * Free the reserved super bytes from this block group before
9332 * remove it.
9333 */
9334 free_excluded_extents(root, block_group);
9335
Zheng Yan1a40e232008-09-26 10:09:34 -04009336 memcpy(&key, &block_group->key, sizeof(key));
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009337 index = get_block_group_index(block_group);
Josef Bacik89a55892010-10-14 14:52:27 -04009338 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
9339 BTRFS_BLOCK_GROUP_RAID1 |
9340 BTRFS_BLOCK_GROUP_RAID10))
9341 factor = 2;
9342 else
9343 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04009344
Chris Mason44fb5512009-06-04 15:34:51 -04009345 /* make sure this block group isn't part of an allocation cluster */
9346 cluster = &root->fs_info->data_alloc_cluster;
9347 spin_lock(&cluster->refill_lock);
9348 btrfs_return_cluster_to_free_space(block_group, cluster);
9349 spin_unlock(&cluster->refill_lock);
9350
9351 /*
9352 * make sure this block group isn't part of a metadata
9353 * allocation cluster
9354 */
9355 cluster = &root->fs_info->meta_alloc_cluster;
9356 spin_lock(&cluster->refill_lock);
9357 btrfs_return_cluster_to_free_space(block_group, cluster);
9358 spin_unlock(&cluster->refill_lock);
9359
Zheng Yan1a40e232008-09-26 10:09:34 -04009360 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07009361 if (!path) {
9362 ret = -ENOMEM;
9363 goto out;
9364 }
Zheng Yan1a40e232008-09-26 10:09:34 -04009365
Ilya Dryomov10b2f342011-10-02 13:56:53 +03009366 inode = lookup_free_space_inode(tree_root, block_group, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04009367 if (!IS_ERR(inode)) {
Tsutomu Itohb5324022011-07-19 07:27:20 +00009368 ret = btrfs_orphan_add(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009369 if (ret) {
9370 btrfs_add_delayed_iput(inode);
9371 goto out;
9372 }
Josef Bacik0af3d002010-06-21 14:48:16 -04009373 clear_nlink(inode);
9374 /* One for the block groups ref */
9375 spin_lock(&block_group->lock);
9376 if (block_group->iref) {
9377 block_group->iref = 0;
9378 block_group->inode = NULL;
9379 spin_unlock(&block_group->lock);
9380 iput(inode);
9381 } else {
9382 spin_unlock(&block_group->lock);
9383 }
9384 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -04009385 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04009386 }
9387
9388 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
9389 key.offset = block_group->key.objectid;
9390 key.type = 0;
9391
9392 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
9393 if (ret < 0)
9394 goto out;
9395 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +02009396 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04009397 if (ret == 0) {
9398 ret = btrfs_del_item(trans, tree_root, path);
9399 if (ret)
9400 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02009401 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04009402 }
9403
Yan Zheng3dfdb932009-01-21 10:49:16 -05009404 spin_lock(&root->fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009405 rb_erase(&block_group->cache_node,
9406 &root->fs_info->block_group_cache_tree);
Filipe Manana292cbd52014-11-26 15:28:50 +00009407 RB_CLEAR_NODE(&block_group->cache_node);
Liu Boa1897fd2012-12-27 09:01:23 +00009408
9409 if (root->fs_info->first_logical_byte == block_group->key.objectid)
9410 root->fs_info->first_logical_byte = (u64)-1;
Yan Zheng3dfdb932009-01-21 10:49:16 -05009411 spin_unlock(&root->fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04009412
Josef Bacik80eb2342008-10-29 14:49:05 -04009413 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04009414 /*
9415 * we must use list_del_init so people can check to see if they
9416 * are still on the list after taking the semaphore
9417 */
9418 list_del_init(&block_group->list);
Josef Bacik633c0aa2014-10-31 09:49:34 -04009419 list_del_init(&block_group->ro_list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009420 if (list_empty(&block_group->space_info->block_groups[index])) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009421 kobj = block_group->space_info->block_group_kobjs[index];
9422 block_group->space_info->block_group_kobjs[index] = NULL;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02009423 clear_avail_alloc_bits(root->fs_info, block_group->flags);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009424 }
Josef Bacik80eb2342008-10-29 14:49:05 -04009425 up_write(&block_group->space_info->groups_sem);
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009426 if (kobj) {
9427 kobject_del(kobj);
9428 kobject_put(kobj);
9429 }
Zheng Yan1a40e232008-09-26 10:09:34 -04009430
Filipe Manana4f69cb92014-11-26 15:28:51 +00009431 if (block_group->has_caching_ctl)
9432 caching_ctl = get_caching_control(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04009433 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04009434 wait_block_group_cache_done(block_group);
Filipe Manana4f69cb92014-11-26 15:28:51 +00009435 if (block_group->has_caching_ctl) {
9436 down_write(&root->fs_info->commit_root_sem);
9437 if (!caching_ctl) {
9438 struct btrfs_caching_control *ctl;
9439
9440 list_for_each_entry(ctl,
9441 &root->fs_info->caching_block_groups, list)
9442 if (ctl->block_group == block_group) {
9443 caching_ctl = ctl;
9444 atomic_inc(&caching_ctl->count);
9445 break;
9446 }
9447 }
9448 if (caching_ctl)
9449 list_del_init(&caching_ctl->list);
9450 up_write(&root->fs_info->commit_root_sem);
9451 if (caching_ctl) {
9452 /* Once for the caching bgs list and once for us. */
9453 put_caching_control(caching_ctl);
9454 put_caching_control(caching_ctl);
9455 }
9456 }
Josef Bacik817d52f2009-07-13 21:29:25 -04009457
9458 btrfs_remove_free_space_cache(block_group);
9459
Yan Zhengc146afa2008-11-12 14:34:12 -05009460 spin_lock(&block_group->space_info->lock);
9461 block_group->space_info->total_bytes -= block_group->key.offset;
9462 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -04009463 block_group->space_info->disk_total -= block_group->key.offset * factor;
Yan Zhengc146afa2008-11-12 14:34:12 -05009464 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -04009465
Josef Bacik0af3d002010-06-21 14:48:16 -04009466 memcpy(&key, &block_group->key, sizeof(key));
9467
Chris Masonfa9c0d792009-04-03 09:47:43 -04009468 btrfs_put_block_group(block_group);
9469 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -04009470
9471 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
9472 if (ret > 0)
9473 ret = -EIO;
9474 if (ret < 0)
9475 goto out;
9476
9477 ret = btrfs_del_item(trans, root, path);
9478out:
9479 btrfs_free_path(path);
9480 return ret;
9481}
liuboacce9522011-01-06 19:30:25 +08009482
Josef Bacik47ab2a62014-09-18 11:20:02 -04009483/*
9484 * Process the unused_bgs list and remove any that don't have any allocated
9485 * space inside of them.
9486 */
9487void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info)
9488{
9489 struct btrfs_block_group_cache *block_group;
9490 struct btrfs_space_info *space_info;
9491 struct btrfs_root *root = fs_info->extent_root;
9492 struct btrfs_trans_handle *trans;
9493 int ret = 0;
9494
9495 if (!fs_info->open)
9496 return;
9497
9498 spin_lock(&fs_info->unused_bgs_lock);
9499 while (!list_empty(&fs_info->unused_bgs)) {
9500 u64 start, end;
9501
9502 block_group = list_first_entry(&fs_info->unused_bgs,
9503 struct btrfs_block_group_cache,
9504 bg_list);
9505 space_info = block_group->space_info;
9506 list_del_init(&block_group->bg_list);
9507 if (ret || btrfs_mixed_space_info(space_info)) {
9508 btrfs_put_block_group(block_group);
9509 continue;
9510 }
9511 spin_unlock(&fs_info->unused_bgs_lock);
9512
9513 /* Don't want to race with allocators so take the groups_sem */
9514 down_write(&space_info->groups_sem);
9515 spin_lock(&block_group->lock);
9516 if (block_group->reserved ||
9517 btrfs_block_group_used(&block_group->item) ||
9518 block_group->ro) {
9519 /*
9520 * We want to bail if we made new allocations or have
9521 * outstanding allocations in this block group. We do
9522 * the ro check in case balance is currently acting on
9523 * this block group.
9524 */
9525 spin_unlock(&block_group->lock);
9526 up_write(&space_info->groups_sem);
9527 goto next;
9528 }
9529 spin_unlock(&block_group->lock);
9530
9531 /* We don't want to force the issue, only flip if it's ok. */
9532 ret = set_block_group_ro(block_group, 0);
9533 up_write(&space_info->groups_sem);
9534 if (ret < 0) {
9535 ret = 0;
9536 goto next;
9537 }
9538
9539 /*
9540 * Want to do this before we do anything else so we can recover
9541 * properly if we fail to join the transaction.
9542 */
9543 trans = btrfs_join_transaction(root);
9544 if (IS_ERR(trans)) {
9545 btrfs_set_block_group_rw(root, block_group);
9546 ret = PTR_ERR(trans);
9547 goto next;
9548 }
9549
9550 /*
9551 * We could have pending pinned extents for this block group,
9552 * just delete them, we don't care about them anymore.
9553 */
9554 start = block_group->key.objectid;
9555 end = start + block_group->key.offset - 1;
Filipe Manana758eb512014-11-03 14:08:39 +00009556 ret = clear_extent_bits(&fs_info->freed_extents[0], start, end,
Josef Bacik47ab2a62014-09-18 11:20:02 -04009557 EXTENT_DIRTY, GFP_NOFS);
Filipe Manana758eb512014-11-03 14:08:39 +00009558 if (ret) {
9559 btrfs_set_block_group_rw(root, block_group);
9560 goto end_trans;
9561 }
9562 ret = clear_extent_bits(&fs_info->freed_extents[1], start, end,
Josef Bacik47ab2a62014-09-18 11:20:02 -04009563 EXTENT_DIRTY, GFP_NOFS);
Filipe Manana758eb512014-11-03 14:08:39 +00009564 if (ret) {
9565 btrfs_set_block_group_rw(root, block_group);
9566 goto end_trans;
9567 }
Josef Bacik47ab2a62014-09-18 11:20:02 -04009568
9569 /* Reset pinned so btrfs_put_block_group doesn't complain */
9570 block_group->pinned = 0;
9571
9572 /*
9573 * Btrfs_remove_chunk will abort the transaction if things go
9574 * horribly wrong.
9575 */
9576 ret = btrfs_remove_chunk(trans, root,
9577 block_group->key.objectid);
Filipe Manana758eb512014-11-03 14:08:39 +00009578end_trans:
Josef Bacik47ab2a62014-09-18 11:20:02 -04009579 btrfs_end_transaction(trans, root);
9580next:
9581 btrfs_put_block_group(block_group);
9582 spin_lock(&fs_info->unused_bgs_lock);
9583 }
9584 spin_unlock(&fs_info->unused_bgs_lock);
9585}
9586
liuboc59021f2011-03-07 02:13:14 +00009587int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
9588{
9589 struct btrfs_space_info *space_info;
liubo1aba86d2011-04-08 08:44:37 +00009590 struct btrfs_super_block *disk_super;
9591 u64 features;
9592 u64 flags;
9593 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +00009594 int ret;
9595
David Sterba6c417612011-04-13 15:41:04 +02009596 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +00009597 if (!btrfs_super_root(disk_super))
9598 return 1;
liuboc59021f2011-03-07 02:13:14 +00009599
liubo1aba86d2011-04-08 08:44:37 +00009600 features = btrfs_super_incompat_flags(disk_super);
9601 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
9602 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +00009603
liubo1aba86d2011-04-08 08:44:37 +00009604 flags = BTRFS_BLOCK_GROUP_SYSTEM;
9605 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
liuboc59021f2011-03-07 02:13:14 +00009606 if (ret)
liubo1aba86d2011-04-08 08:44:37 +00009607 goto out;
liuboc59021f2011-03-07 02:13:14 +00009608
liubo1aba86d2011-04-08 08:44:37 +00009609 if (mixed) {
9610 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
9611 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
9612 } else {
9613 flags = BTRFS_BLOCK_GROUP_METADATA;
9614 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
9615 if (ret)
9616 goto out;
9617
9618 flags = BTRFS_BLOCK_GROUP_DATA;
9619 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
9620 }
9621out:
liuboc59021f2011-03-07 02:13:14 +00009622 return ret;
9623}
9624
liuboacce9522011-01-06 19:30:25 +08009625int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
9626{
9627 return unpin_extent_range(root, start, end);
9628}
9629
9630int btrfs_error_discard_extent(struct btrfs_root *root, u64 bytenr,
Li Dongyang5378e602011-03-24 10:24:27 +00009631 u64 num_bytes, u64 *actual_bytes)
liuboacce9522011-01-06 19:30:25 +08009632{
Li Dongyang5378e602011-03-24 10:24:27 +00009633 return btrfs_discard_extent(root, bytenr, num_bytes, actual_bytes);
liuboacce9522011-01-06 19:30:25 +08009634}
Li Dongyangf7039b12011-03-24 10:24:28 +00009635
9636int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range)
9637{
9638 struct btrfs_fs_info *fs_info = root->fs_info;
9639 struct btrfs_block_group_cache *cache = NULL;
9640 u64 group_trimmed;
9641 u64 start;
9642 u64 end;
9643 u64 trimmed = 0;
Liu Bo2cac13e2012-02-09 18:17:41 +08009644 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +00009645 int ret = 0;
9646
Liu Bo2cac13e2012-02-09 18:17:41 +08009647 /*
9648 * try to trim all FS space, our block group may start from non-zero.
9649 */
9650 if (range->len == total_bytes)
9651 cache = btrfs_lookup_first_block_group(fs_info, range->start);
9652 else
9653 cache = btrfs_lookup_block_group(fs_info, range->start);
Li Dongyangf7039b12011-03-24 10:24:28 +00009654
9655 while (cache) {
9656 if (cache->key.objectid >= (range->start + range->len)) {
9657 btrfs_put_block_group(cache);
9658 break;
9659 }
9660
9661 start = max(range->start, cache->key.objectid);
9662 end = min(range->start + range->len,
9663 cache->key.objectid + cache->key.offset);
9664
9665 if (end - start >= range->minlen) {
9666 if (!block_group_cache_done(cache)) {
Liu Bof6373bf2012-12-27 09:01:18 +00009667 ret = cache_block_group(cache, 0);
Josef Bacik1be41b72013-06-12 13:56:06 -04009668 if (ret) {
9669 btrfs_put_block_group(cache);
9670 break;
9671 }
9672 ret = wait_block_group_cache_done(cache);
9673 if (ret) {
9674 btrfs_put_block_group(cache);
9675 break;
9676 }
Li Dongyangf7039b12011-03-24 10:24:28 +00009677 }
9678 ret = btrfs_trim_block_group(cache,
9679 &group_trimmed,
9680 start,
9681 end,
9682 range->minlen);
9683
9684 trimmed += group_trimmed;
9685 if (ret) {
9686 btrfs_put_block_group(cache);
9687 break;
9688 }
9689 }
9690
9691 cache = next_block_group(fs_info->tree_root, cache);
9692 }
9693
9694 range->len = trimmed;
9695 return ret;
9696}
Miao Xie8257b2d2014-03-06 13:38:19 +08009697
9698/*
Filipe Manana9ea24bb2014-10-29 11:57:59 +00009699 * btrfs_{start,end}_write_no_snapshoting() are similar to
9700 * mnt_{want,drop}_write(), they are used to prevent some tasks from writing
9701 * data into the page cache through nocow before the subvolume is snapshoted,
9702 * but flush the data into disk after the snapshot creation, or to prevent
9703 * operations while snapshoting is ongoing and that cause the snapshot to be
9704 * inconsistent (writes followed by expanding truncates for example).
Miao Xie8257b2d2014-03-06 13:38:19 +08009705 */
Filipe Manana9ea24bb2014-10-29 11:57:59 +00009706void btrfs_end_write_no_snapshoting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +08009707{
9708 percpu_counter_dec(&root->subv_writers->counter);
9709 /*
9710 * Make sure counter is updated before we wake up
9711 * waiters.
9712 */
9713 smp_mb();
9714 if (waitqueue_active(&root->subv_writers->wait))
9715 wake_up(&root->subv_writers->wait);
9716}
9717
Filipe Manana9ea24bb2014-10-29 11:57:59 +00009718int btrfs_start_write_no_snapshoting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +08009719{
David Sterbaee39b432014-09-30 01:33:33 +02009720 if (atomic_read(&root->will_be_snapshoted))
Miao Xie8257b2d2014-03-06 13:38:19 +08009721 return 0;
9722
9723 percpu_counter_inc(&root->subv_writers->counter);
9724 /*
9725 * Make sure counter is updated before we check for snapshot creation.
9726 */
9727 smp_mb();
David Sterbaee39b432014-09-30 01:33:33 +02009728 if (atomic_read(&root->will_be_snapshoted)) {
Filipe Manana9ea24bb2014-10-29 11:57:59 +00009729 btrfs_end_write_no_snapshoting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +08009730 return 0;
9731 }
9732 return 1;
9733}