blob: 203d9a5a4030b32594b7ca25127cf386eeac4adc [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"
Chris Masonfec577f2007-02-26 10:40:21 -050038
Arne Jansen709c0482011-09-12 12:22:57 +020039#undef SCRAMBLE_DELAYED_REFS
40
Miao Xie9e622d62012-01-26 15:01:12 -050041/*
42 * control flags for do_chunk_alloc's force field
Chris Mason0e4f8f82011-04-15 16:05:44 -040043 * CHUNK_ALLOC_NO_FORCE means to only allocate a chunk
44 * if we really need one.
45 *
Chris Mason0e4f8f82011-04-15 16:05:44 -040046 * CHUNK_ALLOC_LIMITED means to only try and allocate one
47 * if we have very few chunks already allocated. This is
48 * used as part of the clustering code to help make sure
49 * we have a good pool of storage to cluster in, without
50 * filling the FS with empty chunks
51 *
Miao Xie9e622d62012-01-26 15:01:12 -050052 * CHUNK_ALLOC_FORCE means it must try to allocate one
53 *
Chris Mason0e4f8f82011-04-15 16:05:44 -040054 */
55enum {
56 CHUNK_ALLOC_NO_FORCE = 0,
Miao Xie9e622d62012-01-26 15:01:12 -050057 CHUNK_ALLOC_LIMITED = 1,
58 CHUNK_ALLOC_FORCE = 2,
Chris Mason0e4f8f82011-04-15 16:05:44 -040059};
60
Josef Bacikfb25e912011-07-26 17:00:46 -040061/*
62 * Control how reservations are dealt with.
63 *
64 * RESERVE_FREE - freeing a reservation.
65 * RESERVE_ALLOC - allocating space and we need to update bytes_may_use for
66 * ENOSPC accounting
67 * RESERVE_ALLOC_NO_ACCOUNT - allocating space and we should not update
68 * bytes_may_use as the ENOSPC accounting is done elsewhere
69 */
70enum {
71 RESERVE_FREE = 0,
72 RESERVE_ALLOC = 1,
73 RESERVE_ALLOC_NO_ACCOUNT = 2,
74};
75
Liu Boc53d6132012-12-27 09:01:19 +000076static int update_block_group(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -040077 u64 bytenr, u64 num_bytes, int alloc);
Yan Zheng5d4f98a2009-06-10 10:45:14 -040078static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
79 struct btrfs_root *root,
80 u64 bytenr, u64 num_bytes, u64 parent,
81 u64 root_objectid, u64 owner_objectid,
82 u64 owner_offset, int refs_to_drop,
83 struct btrfs_delayed_extent_op *extra_op);
84static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
85 struct extent_buffer *leaf,
86 struct btrfs_extent_item *ei);
87static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
88 struct btrfs_root *root,
89 u64 parent, u64 root_objectid,
90 u64 flags, u64 owner, u64 offset,
91 struct btrfs_key *ins, int ref_mod);
92static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
93 struct btrfs_root *root,
94 u64 parent, u64 root_objectid,
95 u64 flags, struct btrfs_disk_key *key,
96 int level, struct btrfs_key *ins);
Josef Bacik6a632092009-02-20 11:00:09 -050097static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Josef Bacik698d0082012-09-12 14:08:47 -040098 struct btrfs_root *extent_root, u64 flags,
99 int force);
Yan Zheng11833d62009-09-11 16:11:19 -0400100static int find_next_key(struct btrfs_path *path, int level,
101 struct btrfs_key *key);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400102static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
103 int dump_block_groups);
Josef Bacikfb25e912011-07-26 17:00:46 -0400104static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
105 u64 num_bytes, int reserve);
Josef Bacik5d803662013-02-07 16:06:02 -0500106static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
107 u64 num_bytes);
Eric Sandeen48a3b632013-04-25 20:41:01 +0000108int btrfs_pin_extent(struct btrfs_root *root,
109 u64 bytenr, u64 num_bytes, int reserved);
Josef Bacik6a632092009-02-20 11:00:09 -0500110
Josef Bacik817d52f2009-07-13 21:29:25 -0400111static noinline int
112block_group_cache_done(struct btrfs_block_group_cache *cache)
113{
114 smp_mb();
Josef Bacik36cce922013-08-05 11:15:21 -0400115 return cache->cached == BTRFS_CACHE_FINISHED ||
116 cache->cached == BTRFS_CACHE_ERROR;
Josef Bacik817d52f2009-07-13 21:29:25 -0400117}
118
Josef Bacik0f9dd462008-09-23 13:14:11 -0400119static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
120{
121 return (cache->flags & bits) == bits;
122}
123
David Sterba62a45b62011-04-20 15:52:26 +0200124static void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
Josef Bacik11dfe352009-11-13 20:12:59 +0000125{
126 atomic_inc(&cache->count);
127}
128
129void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
130{
Yan, Zhengf0486c62010-05-16 10:46:25 -0400131 if (atomic_dec_and_test(&cache->count)) {
132 WARN_ON(cache->pinned > 0);
133 WARN_ON(cache->reserved > 0);
Li Zefan34d52cb2011-03-29 13:46:06 +0800134 kfree(cache->free_space_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000135 kfree(cache);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400136 }
Josef Bacik11dfe352009-11-13 20:12:59 +0000137}
138
Josef Bacik0f9dd462008-09-23 13:14:11 -0400139/*
140 * this adds the block group to the fs_info rb tree for the block group
141 * cache
142 */
Christoph Hellwigb2950862008-12-02 09:54:17 -0500143static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400144 struct btrfs_block_group_cache *block_group)
145{
146 struct rb_node **p;
147 struct rb_node *parent = NULL;
148 struct btrfs_block_group_cache *cache;
149
150 spin_lock(&info->block_group_cache_lock);
151 p = &info->block_group_cache_tree.rb_node;
152
153 while (*p) {
154 parent = *p;
155 cache = rb_entry(parent, struct btrfs_block_group_cache,
156 cache_node);
157 if (block_group->key.objectid < cache->key.objectid) {
158 p = &(*p)->rb_left;
159 } else if (block_group->key.objectid > cache->key.objectid) {
160 p = &(*p)->rb_right;
161 } else {
162 spin_unlock(&info->block_group_cache_lock);
163 return -EEXIST;
164 }
165 }
166
167 rb_link_node(&block_group->cache_node, parent, p);
168 rb_insert_color(&block_group->cache_node,
169 &info->block_group_cache_tree);
Liu Boa1897fd2012-12-27 09:01:23 +0000170
171 if (info->first_logical_byte > block_group->key.objectid)
172 info->first_logical_byte = block_group->key.objectid;
173
Josef Bacik0f9dd462008-09-23 13:14:11 -0400174 spin_unlock(&info->block_group_cache_lock);
175
176 return 0;
177}
178
179/*
180 * This will return the block group at or after bytenr if contains is 0, else
181 * it will return the block group that contains the bytenr
182 */
183static struct btrfs_block_group_cache *
184block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
185 int contains)
186{
187 struct btrfs_block_group_cache *cache, *ret = NULL;
188 struct rb_node *n;
189 u64 end, start;
190
191 spin_lock(&info->block_group_cache_lock);
192 n = info->block_group_cache_tree.rb_node;
193
194 while (n) {
195 cache = rb_entry(n, struct btrfs_block_group_cache,
196 cache_node);
197 end = cache->key.objectid + cache->key.offset - 1;
198 start = cache->key.objectid;
199
200 if (bytenr < start) {
201 if (!contains && (!ret || start < ret->key.objectid))
202 ret = cache;
203 n = n->rb_left;
204 } else if (bytenr > start) {
205 if (contains && bytenr <= end) {
206 ret = cache;
207 break;
208 }
209 n = n->rb_right;
210 } else {
211 ret = cache;
212 break;
213 }
214 }
Liu Boa1897fd2012-12-27 09:01:23 +0000215 if (ret) {
Josef Bacik11dfe352009-11-13 20:12:59 +0000216 btrfs_get_block_group(ret);
Liu Boa1897fd2012-12-27 09:01:23 +0000217 if (bytenr == 0 && info->first_logical_byte > ret->key.objectid)
218 info->first_logical_byte = ret->key.objectid;
219 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400220 spin_unlock(&info->block_group_cache_lock);
221
222 return ret;
223}
224
Yan Zheng11833d62009-09-11 16:11:19 -0400225static int add_excluded_extent(struct btrfs_root *root,
226 u64 start, u64 num_bytes)
Josef Bacik817d52f2009-07-13 21:29:25 -0400227{
Yan Zheng11833d62009-09-11 16:11:19 -0400228 u64 end = start + num_bytes - 1;
229 set_extent_bits(&root->fs_info->freed_extents[0],
230 start, end, EXTENT_UPTODATE, GFP_NOFS);
231 set_extent_bits(&root->fs_info->freed_extents[1],
232 start, end, EXTENT_UPTODATE, GFP_NOFS);
233 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400234}
235
Yan Zheng11833d62009-09-11 16:11:19 -0400236static void free_excluded_extents(struct btrfs_root *root,
237 struct btrfs_block_group_cache *cache)
Josef Bacik817d52f2009-07-13 21:29:25 -0400238{
Yan Zheng11833d62009-09-11 16:11:19 -0400239 u64 start, end;
240
241 start = cache->key.objectid;
242 end = start + cache->key.offset - 1;
243
244 clear_extent_bits(&root->fs_info->freed_extents[0],
245 start, end, EXTENT_UPTODATE, GFP_NOFS);
246 clear_extent_bits(&root->fs_info->freed_extents[1],
247 start, end, EXTENT_UPTODATE, GFP_NOFS);
248}
249
250static int exclude_super_stripes(struct btrfs_root *root,
251 struct btrfs_block_group_cache *cache)
252{
Josef Bacik817d52f2009-07-13 21:29:25 -0400253 u64 bytenr;
254 u64 *logical;
255 int stripe_len;
256 int i, nr, ret;
257
Yan, Zheng06b23312009-11-26 09:31:11 +0000258 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
259 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
260 cache->bytes_super += stripe_len;
261 ret = add_excluded_extent(root, cache->key.objectid,
262 stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400263 if (ret)
264 return ret;
Yan, Zheng06b23312009-11-26 09:31:11 +0000265 }
266
Josef Bacik817d52f2009-07-13 21:29:25 -0400267 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
268 bytenr = btrfs_sb_offset(i);
269 ret = btrfs_rmap_block(&root->fs_info->mapping_tree,
270 cache->key.objectid, bytenr,
271 0, &logical, &nr, &stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400272 if (ret)
273 return ret;
Yan Zheng11833d62009-09-11 16:11:19 -0400274
Josef Bacik817d52f2009-07-13 21:29:25 -0400275 while (nr--) {
Josef Bacik51bf5f02013-04-23 12:55:21 -0400276 u64 start, len;
277
278 if (logical[nr] > cache->key.objectid +
279 cache->key.offset)
280 continue;
281
282 if (logical[nr] + stripe_len <= cache->key.objectid)
283 continue;
284
285 start = logical[nr];
286 if (start < cache->key.objectid) {
287 start = cache->key.objectid;
288 len = (logical[nr] + stripe_len) - start;
289 } else {
290 len = min_t(u64, stripe_len,
291 cache->key.objectid +
292 cache->key.offset - start);
293 }
294
295 cache->bytes_super += len;
296 ret = add_excluded_extent(root, start, len);
Josef Bacik835d9742013-03-19 12:13:25 -0400297 if (ret) {
298 kfree(logical);
299 return ret;
300 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400301 }
Yan Zheng11833d62009-09-11 16:11:19 -0400302
Josef Bacik817d52f2009-07-13 21:29:25 -0400303 kfree(logical);
304 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400305 return 0;
306}
307
Yan Zheng11833d62009-09-11 16:11:19 -0400308static struct btrfs_caching_control *
309get_caching_control(struct btrfs_block_group_cache *cache)
310{
311 struct btrfs_caching_control *ctl;
312
313 spin_lock(&cache->lock);
314 if (cache->cached != BTRFS_CACHE_STARTED) {
315 spin_unlock(&cache->lock);
316 return NULL;
317 }
318
Josef Bacikdde5abe2010-09-16 16:17:03 -0400319 /* We're loading it the fast way, so we don't have a caching_ctl. */
320 if (!cache->caching_ctl) {
321 spin_unlock(&cache->lock);
322 return NULL;
323 }
324
Yan Zheng11833d62009-09-11 16:11:19 -0400325 ctl = cache->caching_ctl;
326 atomic_inc(&ctl->count);
327 spin_unlock(&cache->lock);
328 return ctl;
329}
330
331static void put_caching_control(struct btrfs_caching_control *ctl)
332{
333 if (atomic_dec_and_test(&ctl->count))
334 kfree(ctl);
335}
336
Josef Bacik0f9dd462008-09-23 13:14:11 -0400337/*
338 * this is only called by cache_block_group, since we could have freed extents
339 * we need to check the pinned_extents for any extents that can't be used yet
340 * since their free space will be released as soon as the transaction commits.
341 */
Josef Bacik817d52f2009-07-13 21:29:25 -0400342static u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400343 struct btrfs_fs_info *info, u64 start, u64 end)
344{
Josef Bacik817d52f2009-07-13 21:29:25 -0400345 u64 extent_start, extent_end, size, total_added = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400346 int ret;
347
348 while (start < end) {
Yan Zheng11833d62009-09-11 16:11:19 -0400349 ret = find_first_extent_bit(info->pinned_extents, start,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400350 &extent_start, &extent_end,
Josef Bacike6138872012-09-27 17:07:30 -0400351 EXTENT_DIRTY | EXTENT_UPTODATE,
352 NULL);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400353 if (ret)
354 break;
355
Yan, Zheng06b23312009-11-26 09:31:11 +0000356 if (extent_start <= start) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400357 start = extent_end + 1;
358 } else if (extent_start > start && extent_start < end) {
359 size = extent_start - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400360 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500361 ret = btrfs_add_free_space(block_group, start,
362 size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100363 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400364 start = extent_end + 1;
365 } else {
366 break;
367 }
368 }
369
370 if (start < end) {
371 size = end - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400372 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500373 ret = btrfs_add_free_space(block_group, start, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100374 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400375 }
376
Josef Bacik817d52f2009-07-13 21:29:25 -0400377 return total_added;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400378}
379
Qu Wenruod458b052014-02-28 10:46:19 +0800380static noinline void caching_thread(struct btrfs_work *work)
Chris Masone37c9e62007-05-09 20:13:14 -0400381{
Josef Bacikbab39bf2011-06-30 14:42:28 -0400382 struct btrfs_block_group_cache *block_group;
383 struct btrfs_fs_info *fs_info;
384 struct btrfs_caching_control *caching_ctl;
385 struct btrfs_root *extent_root;
Chris Masone37c9e62007-05-09 20:13:14 -0400386 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400387 struct extent_buffer *leaf;
Yan Zheng11833d62009-09-11 16:11:19 -0400388 struct btrfs_key key;
Josef Bacik817d52f2009-07-13 21:29:25 -0400389 u64 total_found = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400390 u64 last = 0;
391 u32 nritems;
Josef Bacik36cce922013-08-05 11:15:21 -0400392 int ret = -ENOMEM;
Chris Masonf510cfe2007-10-15 16:14:48 -0400393
Josef Bacikbab39bf2011-06-30 14:42:28 -0400394 caching_ctl = container_of(work, struct btrfs_caching_control, work);
395 block_group = caching_ctl->block_group;
396 fs_info = block_group->fs_info;
397 extent_root = fs_info->extent_root;
398
Chris Masone37c9e62007-05-09 20:13:14 -0400399 path = btrfs_alloc_path();
400 if (!path)
Josef Bacikbab39bf2011-06-30 14:42:28 -0400401 goto out;
Yan7d7d6062007-09-14 16:15:28 -0400402
Josef Bacik817d52f2009-07-13 21:29:25 -0400403 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
Yan Zheng11833d62009-09-11 16:11:19 -0400404
Chris Mason5cd57b22008-06-25 16:01:30 -0400405 /*
Josef Bacik817d52f2009-07-13 21:29:25 -0400406 * We don't want to deadlock with somebody trying to allocate a new
407 * extent for the extent root while also trying to search the extent
408 * root to add free space. So we skip locking and search the commit
409 * root, since its read-only
Chris Mason5cd57b22008-06-25 16:01:30 -0400410 */
411 path->skip_locking = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400412 path->search_commit_root = 1;
Josef Bacik026fd312011-05-13 10:32:11 -0400413 path->reada = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400414
Yan Zhenge4404d62008-12-12 10:03:26 -0500415 key.objectid = last;
Chris Masone37c9e62007-05-09 20:13:14 -0400416 key.offset = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400417 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason013f1b12009-07-31 14:57:55 -0400418again:
Yan Zheng11833d62009-09-11 16:11:19 -0400419 mutex_lock(&caching_ctl->mutex);
Chris Mason013f1b12009-07-31 14:57:55 -0400420 /* need to make sure the commit_root doesn't disappear */
Josef Bacik9e351cc2014-03-13 15:42:13 -0400421 down_read(&fs_info->commit_root_sem);
Chris Mason013f1b12009-07-31 14:57:55 -0400422
Liu Bo52ee28d2013-07-11 17:51:15 +0800423next:
Yan Zheng11833d62009-09-11 16:11:19 -0400424 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
Chris Masone37c9e62007-05-09 20:13:14 -0400425 if (ret < 0)
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400426 goto err;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500427
Yan Zheng11833d62009-09-11 16:11:19 -0400428 leaf = path->nodes[0];
429 nritems = btrfs_header_nritems(leaf);
430
Chris Masond3977122009-01-05 21:25:51 -0500431 while (1) {
David Sterba7841cb22011-05-31 18:07:27 +0200432 if (btrfs_fs_closing(fs_info) > 1) {
Yan Zhengf25784b2009-07-28 08:41:57 -0400433 last = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400434 break;
Yan Zhengf25784b2009-07-28 08:41:57 -0400435 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400436
Yan Zheng11833d62009-09-11 16:11:19 -0400437 if (path->slots[0] < nritems) {
438 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
439 } else {
440 ret = find_next_key(path, 0, &key);
441 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -0400442 break;
Josef Bacik817d52f2009-07-13 21:29:25 -0400443
Josef Bacikc9ea7b22013-09-19 10:02:11 -0400444 if (need_resched() ||
Josef Bacik9e351cc2014-03-13 15:42:13 -0400445 rwsem_is_contended(&fs_info->commit_root_sem)) {
Josef Bacik589d8ad2011-05-11 17:30:53 -0400446 caching_ctl->progress = last;
Chris Masonff5714c2011-05-28 07:00:39 -0400447 btrfs_release_path(path);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400448 up_read(&fs_info->commit_root_sem);
Josef Bacik589d8ad2011-05-11 17:30:53 -0400449 mutex_unlock(&caching_ctl->mutex);
Yan Zheng11833d62009-09-11 16:11:19 -0400450 cond_resched();
Josef Bacik589d8ad2011-05-11 17:30:53 -0400451 goto again;
452 }
Josef Bacik0a3896d2013-04-19 14:37:26 -0400453
454 ret = btrfs_next_leaf(extent_root, path);
455 if (ret < 0)
456 goto err;
457 if (ret)
458 break;
Josef Bacik589d8ad2011-05-11 17:30:53 -0400459 leaf = path->nodes[0];
460 nritems = btrfs_header_nritems(leaf);
461 continue;
Yan Zheng11833d62009-09-11 16:11:19 -0400462 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400463
Liu Bo52ee28d2013-07-11 17:51:15 +0800464 if (key.objectid < last) {
465 key.objectid = last;
466 key.offset = 0;
467 key.type = BTRFS_EXTENT_ITEM_KEY;
468
469 caching_ctl->progress = last;
470 btrfs_release_path(path);
471 goto next;
472 }
473
Yan Zheng11833d62009-09-11 16:11:19 -0400474 if (key.objectid < block_group->key.objectid) {
475 path->slots[0]++;
Josef Bacik817d52f2009-07-13 21:29:25 -0400476 continue;
Chris Masone37c9e62007-05-09 20:13:14 -0400477 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400478
Chris Masone37c9e62007-05-09 20:13:14 -0400479 if (key.objectid >= block_group->key.objectid +
Josef Bacik0f9dd462008-09-23 13:14:11 -0400480 block_group->key.offset)
Yan7d7d6062007-09-14 16:15:28 -0400481 break;
Yan7d7d6062007-09-14 16:15:28 -0400482
Josef Bacik3173a182013-03-07 14:22:04 -0500483 if (key.type == BTRFS_EXTENT_ITEM_KEY ||
484 key.type == BTRFS_METADATA_ITEM_KEY) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400485 total_found += add_new_free_space(block_group,
486 fs_info, last,
487 key.objectid);
Josef Bacik3173a182013-03-07 14:22:04 -0500488 if (key.type == BTRFS_METADATA_ITEM_KEY)
489 last = key.objectid +
490 fs_info->tree_root->leafsize;
491 else
492 last = key.objectid + key.offset;
Josef Bacik817d52f2009-07-13 21:29:25 -0400493
Yan Zheng11833d62009-09-11 16:11:19 -0400494 if (total_found > (1024 * 1024 * 2)) {
495 total_found = 0;
496 wake_up(&caching_ctl->wait);
497 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400498 }
Chris Masone37c9e62007-05-09 20:13:14 -0400499 path->slots[0]++;
500 }
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400501 ret = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400502
503 total_found += add_new_free_space(block_group, fs_info, last,
504 block_group->key.objectid +
505 block_group->key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -0400506 caching_ctl->progress = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400507
508 spin_lock(&block_group->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400509 block_group->caching_ctl = NULL;
Josef Bacik817d52f2009-07-13 21:29:25 -0400510 block_group->cached = BTRFS_CACHE_FINISHED;
511 spin_unlock(&block_group->lock);
512
Chris Mason54aa1f42007-06-22 14:16:25 -0400513err:
Chris Masone37c9e62007-05-09 20:13:14 -0400514 btrfs_free_path(path);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400515 up_read(&fs_info->commit_root_sem);
Josef Bacik817d52f2009-07-13 21:29:25 -0400516
Yan Zheng11833d62009-09-11 16:11:19 -0400517 free_excluded_extents(extent_root, block_group);
518
519 mutex_unlock(&caching_ctl->mutex);
Josef Bacikbab39bf2011-06-30 14:42:28 -0400520out:
Josef Bacik36cce922013-08-05 11:15:21 -0400521 if (ret) {
522 spin_lock(&block_group->lock);
523 block_group->caching_ctl = NULL;
524 block_group->cached = BTRFS_CACHE_ERROR;
525 spin_unlock(&block_group->lock);
526 }
Yan Zheng11833d62009-09-11 16:11:19 -0400527 wake_up(&caching_ctl->wait);
528
529 put_caching_control(caching_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000530 btrfs_put_block_group(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -0400531}
532
Josef Bacik9d66e232010-08-25 16:54:15 -0400533static int cache_block_group(struct btrfs_block_group_cache *cache,
Josef Bacik9d66e232010-08-25 16:54:15 -0400534 int load_cache_only)
Josef Bacik817d52f2009-07-13 21:29:25 -0400535{
Josef Bacik291c7d22011-11-14 13:52:14 -0500536 DEFINE_WAIT(wait);
Yan Zheng11833d62009-09-11 16:11:19 -0400537 struct btrfs_fs_info *fs_info = cache->fs_info;
538 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400539 int ret = 0;
540
Josef Bacik291c7d22011-11-14 13:52:14 -0500541 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100542 if (!caching_ctl)
543 return -ENOMEM;
Josef Bacik291c7d22011-11-14 13:52:14 -0500544
545 INIT_LIST_HEAD(&caching_ctl->list);
546 mutex_init(&caching_ctl->mutex);
547 init_waitqueue_head(&caching_ctl->wait);
548 caching_ctl->block_group = cache;
549 caching_ctl->progress = cache->key.objectid;
550 atomic_set(&caching_ctl->count, 1);
Qu Wenruoe66f0bb2014-02-28 10:46:12 +0800551 btrfs_init_work(&caching_ctl->work, caching_thread, NULL, NULL);
Josef Bacik291c7d22011-11-14 13:52:14 -0500552
553 spin_lock(&cache->lock);
554 /*
555 * This should be a rare occasion, but this could happen I think in the
556 * case where one thread starts to load the space cache info, and then
557 * some other thread starts a transaction commit which tries to do an
558 * allocation while the other thread is still loading the space cache
559 * info. The previous loop should have kept us from choosing this block
560 * group, but if we've moved to the state where we will wait on caching
561 * block groups we need to first check if we're doing a fast load here,
562 * so we can wait for it to finish, otherwise we could end up allocating
563 * from a block group who's cache gets evicted for one reason or
564 * another.
565 */
566 while (cache->cached == BTRFS_CACHE_FAST) {
567 struct btrfs_caching_control *ctl;
568
569 ctl = cache->caching_ctl;
570 atomic_inc(&ctl->count);
571 prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE);
572 spin_unlock(&cache->lock);
573
574 schedule();
575
576 finish_wait(&ctl->wait, &wait);
577 put_caching_control(ctl);
578 spin_lock(&cache->lock);
579 }
580
581 if (cache->cached != BTRFS_CACHE_NO) {
582 spin_unlock(&cache->lock);
583 kfree(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400584 return 0;
Josef Bacik291c7d22011-11-14 13:52:14 -0500585 }
586 WARN_ON(cache->caching_ctl);
587 cache->caching_ctl = caching_ctl;
588 cache->cached = BTRFS_CACHE_FAST;
589 spin_unlock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400590
Josef Bacikd53ba472012-04-12 16:03:57 -0400591 if (fs_info->mount_opt & BTRFS_MOUNT_SPACE_CACHE) {
Josef Bacik9d66e232010-08-25 16:54:15 -0400592 ret = load_free_space_cache(fs_info, cache);
593
594 spin_lock(&cache->lock);
595 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500596 cache->caching_ctl = NULL;
Josef Bacik9d66e232010-08-25 16:54:15 -0400597 cache->cached = BTRFS_CACHE_FINISHED;
598 cache->last_byte_to_unpin = (u64)-1;
599 } else {
Josef Bacik291c7d22011-11-14 13:52:14 -0500600 if (load_cache_only) {
601 cache->caching_ctl = NULL;
602 cache->cached = BTRFS_CACHE_NO;
603 } else {
604 cache->cached = BTRFS_CACHE_STARTED;
605 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400606 }
607 spin_unlock(&cache->lock);
Josef Bacik291c7d22011-11-14 13:52:14 -0500608 wake_up(&caching_ctl->wait);
Josef Bacik3c148742011-02-02 15:53:47 +0000609 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500610 put_caching_control(caching_ctl);
Josef Bacik3c148742011-02-02 15:53:47 +0000611 free_excluded_extents(fs_info->extent_root, cache);
Josef Bacik9d66e232010-08-25 16:54:15 -0400612 return 0;
Josef Bacik3c148742011-02-02 15:53:47 +0000613 }
Josef Bacik291c7d22011-11-14 13:52:14 -0500614 } else {
615 /*
616 * We are not going to do the fast caching, set cached to the
617 * appropriate value and wakeup any waiters.
618 */
619 spin_lock(&cache->lock);
620 if (load_cache_only) {
621 cache->caching_ctl = NULL;
622 cache->cached = BTRFS_CACHE_NO;
623 } else {
624 cache->cached = BTRFS_CACHE_STARTED;
625 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400626 spin_unlock(&cache->lock);
Josef Bacik291c7d22011-11-14 13:52:14 -0500627 wake_up(&caching_ctl->wait);
628 }
629
630 if (load_cache_only) {
631 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400632 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400633 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400634
Josef Bacik9e351cc2014-03-13 15:42:13 -0400635 down_write(&fs_info->commit_root_sem);
Josef Bacik291c7d22011-11-14 13:52:14 -0500636 atomic_inc(&caching_ctl->count);
Yan Zheng11833d62009-09-11 16:11:19 -0400637 list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400638 up_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -0400639
Josef Bacik11dfe352009-11-13 20:12:59 +0000640 btrfs_get_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -0400641
Qu Wenruoe66f0bb2014-02-28 10:46:12 +0800642 btrfs_queue_work(fs_info->caching_workers, &caching_ctl->work);
Josef Bacik817d52f2009-07-13 21:29:25 -0400643
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400644 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -0400645}
646
Josef Bacik0f9dd462008-09-23 13:14:11 -0400647/*
648 * return the block group that starts at or after bytenr
649 */
Chris Masond3977122009-01-05 21:25:51 -0500650static struct btrfs_block_group_cache *
651btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
Chris Mason0ef3e662008-05-24 14:04:53 -0400652{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400653 struct btrfs_block_group_cache *cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400654
Josef Bacik0f9dd462008-09-23 13:14:11 -0400655 cache = block_group_cache_tree_search(info, bytenr, 0);
Chris Mason0ef3e662008-05-24 14:04:53 -0400656
Josef Bacik0f9dd462008-09-23 13:14:11 -0400657 return cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400658}
659
Josef Bacik0f9dd462008-09-23 13:14:11 -0400660/*
Sankar P9f556842009-05-14 13:52:22 -0400661 * return the block group that contains the given bytenr
Josef Bacik0f9dd462008-09-23 13:14:11 -0400662 */
Chris Masond3977122009-01-05 21:25:51 -0500663struct btrfs_block_group_cache *btrfs_lookup_block_group(
664 struct btrfs_fs_info *info,
665 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400666{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400667 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -0400668
Josef Bacik0f9dd462008-09-23 13:14:11 -0400669 cache = block_group_cache_tree_search(info, bytenr, 1);
Chris Mason96b51792007-10-15 16:15:19 -0400670
Josef Bacik0f9dd462008-09-23 13:14:11 -0400671 return cache;
Chris Masonbe744172007-05-06 10:15:01 -0400672}
Chris Mason0b86a832008-03-24 15:01:56 -0400673
Josef Bacik0f9dd462008-09-23 13:14:11 -0400674static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
675 u64 flags)
Chris Mason6324fbf2008-03-24 15:01:59 -0400676{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400677 struct list_head *head = &info->space_info;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400678 struct btrfs_space_info *found;
Chris Mason4184ea72009-03-10 12:39:20 -0400679
Ilya Dryomov52ba6922012-01-16 22:04:47 +0200680 flags &= BTRFS_BLOCK_GROUP_TYPE_MASK;
Yan, Zhengb742bb82010-05-16 10:46:24 -0400681
Chris Mason4184ea72009-03-10 12:39:20 -0400682 rcu_read_lock();
683 list_for_each_entry_rcu(found, head, list) {
Josef Bacik67377732010-09-16 16:19:09 -0400684 if (found->flags & flags) {
Chris Mason4184ea72009-03-10 12:39:20 -0400685 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400686 return found;
Chris Mason4184ea72009-03-10 12:39:20 -0400687 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400688 }
Chris Mason4184ea72009-03-10 12:39:20 -0400689 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400690 return NULL;
Chris Mason6324fbf2008-03-24 15:01:59 -0400691}
692
Chris Mason4184ea72009-03-10 12:39:20 -0400693/*
694 * after adding space to the filesystem, we need to clear the full flags
695 * on all the space infos.
696 */
697void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
698{
699 struct list_head *head = &info->space_info;
700 struct btrfs_space_info *found;
701
702 rcu_read_lock();
703 list_for_each_entry_rcu(found, head, list)
704 found->full = 0;
705 rcu_read_unlock();
706}
707
Chris Masone02119d2008-09-05 16:13:11 -0400708/* simple helper to search for an existing extent at a given offset */
Zheng Yan31840ae2008-09-23 13:14:14 -0400709int btrfs_lookup_extent(struct btrfs_root *root, u64 start, u64 len)
Chris Masone02119d2008-09-05 16:13:11 -0400710{
711 int ret;
712 struct btrfs_key key;
Zheng Yan31840ae2008-09-23 13:14:14 -0400713 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -0400714
Zheng Yan31840ae2008-09-23 13:14:14 -0400715 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700716 if (!path)
717 return -ENOMEM;
718
Chris Masone02119d2008-09-05 16:13:11 -0400719 key.objectid = start;
720 key.offset = len;
Josef Bacik3173a182013-03-07 14:22:04 -0500721 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -0400722 ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path,
723 0, 0);
Josef Bacik3173a182013-03-07 14:22:04 -0500724 if (ret > 0) {
725 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
726 if (key.objectid == start &&
727 key.type == BTRFS_METADATA_ITEM_KEY)
728 ret = 0;
729 }
Zheng Yan31840ae2008-09-23 13:14:14 -0400730 btrfs_free_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -0500731 return ret;
732}
733
Chris Masond8d5f3e2007-12-11 12:42:00 -0500734/*
Josef Bacik3173a182013-03-07 14:22:04 -0500735 * helper function to lookup reference count and flags of a tree block.
Yan, Zhenga22285a2010-05-16 10:48:46 -0400736 *
737 * the head node for delayed ref is used to store the sum of all the
738 * reference count modifications queued up in the rbtree. the head
739 * node may also store the extent flags to set. This way you can check
740 * to see what the reference count and extent flags would be if all of
741 * the delayed refs are not processed.
742 */
743int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
744 struct btrfs_root *root, u64 bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -0500745 u64 offset, int metadata, u64 *refs, u64 *flags)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400746{
747 struct btrfs_delayed_ref_head *head;
748 struct btrfs_delayed_ref_root *delayed_refs;
749 struct btrfs_path *path;
750 struct btrfs_extent_item *ei;
751 struct extent_buffer *leaf;
752 struct btrfs_key key;
753 u32 item_size;
754 u64 num_refs;
755 u64 extent_flags;
756 int ret;
757
Josef Bacik3173a182013-03-07 14:22:04 -0500758 /*
759 * If we don't have skinny metadata, don't bother doing anything
760 * different
761 */
762 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) {
763 offset = root->leafsize;
764 metadata = 0;
765 }
766
Yan, Zhenga22285a2010-05-16 10:48:46 -0400767 path = btrfs_alloc_path();
768 if (!path)
769 return -ENOMEM;
770
Yan, Zhenga22285a2010-05-16 10:48:46 -0400771 if (!trans) {
772 path->skip_locking = 1;
773 path->search_commit_root = 1;
774 }
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000775
776search_again:
777 key.objectid = bytenr;
778 key.offset = offset;
779 if (metadata)
780 key.type = BTRFS_METADATA_ITEM_KEY;
781 else
782 key.type = BTRFS_EXTENT_ITEM_KEY;
783
Yan, Zhenga22285a2010-05-16 10:48:46 -0400784again:
785 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 &&
797 key.offset == root->leafsize)
798 ret = 0;
799 }
800 if (ret) {
801 key.objectid = bytenr;
802 key.type = BTRFS_EXTENT_ITEM_KEY;
803 key.offset = root->leafsize;
804 btrfs_release_path(path);
805 goto again;
806 }
Josef Bacik3173a182013-03-07 14:22:04 -0500807 }
808
Yan, Zhenga22285a2010-05-16 10:48:46 -0400809 if (ret == 0) {
810 leaf = path->nodes[0];
811 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
812 if (item_size >= sizeof(*ei)) {
813 ei = btrfs_item_ptr(leaf, path->slots[0],
814 struct btrfs_extent_item);
815 num_refs = btrfs_extent_refs(leaf, ei);
816 extent_flags = btrfs_extent_flags(leaf, ei);
817 } else {
818#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
819 struct btrfs_extent_item_v0 *ei0;
820 BUG_ON(item_size != sizeof(*ei0));
821 ei0 = btrfs_item_ptr(leaf, path->slots[0],
822 struct btrfs_extent_item_v0);
823 num_refs = btrfs_extent_refs_v0(leaf, ei0);
824 /* FIXME: this isn't correct for data */
825 extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
826#else
827 BUG();
828#endif
829 }
830 BUG_ON(num_refs == 0);
831 } else {
832 num_refs = 0;
833 extent_flags = 0;
834 ret = 0;
835 }
836
837 if (!trans)
838 goto out;
839
840 delayed_refs = &trans->transaction->delayed_refs;
841 spin_lock(&delayed_refs->lock);
842 head = btrfs_find_delayed_ref_head(trans, bytenr);
843 if (head) {
844 if (!mutex_trylock(&head->mutex)) {
845 atomic_inc(&head->node.refs);
846 spin_unlock(&delayed_refs->lock);
847
David Sterbab3b4aa72011-04-21 01:20:15 +0200848 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400849
David Sterba8cc33e52011-05-02 15:29:25 +0200850 /*
851 * Mutex was contended, block until it's released and try
852 * again
853 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400854 mutex_lock(&head->mutex);
855 mutex_unlock(&head->mutex);
856 btrfs_put_delayed_ref(&head->node);
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000857 goto search_again;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400858 }
Josef Bacikd7df2c72014-01-23 09:21:38 -0500859 spin_lock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400860 if (head->extent_op && head->extent_op->update_flags)
861 extent_flags |= head->extent_op->flags_to_set;
862 else
863 BUG_ON(num_refs == 0);
864
865 num_refs += head->node.ref_mod;
Josef Bacikd7df2c72014-01-23 09:21:38 -0500866 spin_unlock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400867 mutex_unlock(&head->mutex);
868 }
869 spin_unlock(&delayed_refs->lock);
870out:
871 WARN_ON(num_refs == 0);
872 if (refs)
873 *refs = num_refs;
874 if (flags)
875 *flags = extent_flags;
876out_free:
877 btrfs_free_path(path);
878 return ret;
879}
880
881/*
Chris Masond8d5f3e2007-12-11 12:42:00 -0500882 * Back reference rules. Back refs have three main goals:
883 *
884 * 1) differentiate between all holders of references to an extent so that
885 * when a reference is dropped we can make sure it was a valid reference
886 * before freeing the extent.
887 *
888 * 2) Provide enough information to quickly find the holders of an extent
889 * if we notice a given block is corrupted or bad.
890 *
891 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
892 * maintenance. This is actually the same as #2, but with a slightly
893 * different use case.
894 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400895 * There are two kinds of back refs. The implicit back refs is optimized
896 * for pointers in non-shared tree blocks. For a given pointer in a block,
897 * back refs of this kind provide information about the block's owner tree
898 * and the pointer's key. These information allow us to find the block by
899 * b-tree searching. The full back refs is for pointers in tree blocks not
900 * referenced by their owner trees. The location of tree block is recorded
901 * in the back refs. Actually the full back refs is generic, and can be
902 * used in all cases the implicit back refs is used. The major shortcoming
903 * of the full back refs is its overhead. Every time a tree block gets
904 * COWed, we have to update back refs entry for all pointers in it.
905 *
906 * For a newly allocated tree block, we use implicit back refs for
907 * pointers in it. This means most tree related operations only involve
908 * implicit back refs. For a tree block created in old transaction, the
909 * only way to drop a reference to it is COW it. So we can detect the
910 * event that tree block loses its owner tree's reference and do the
911 * back refs conversion.
912 *
913 * When a tree block is COW'd through a tree, there are four cases:
914 *
915 * The reference count of the block is one and the tree is the block's
916 * owner tree. Nothing to do in this case.
917 *
918 * The reference count of the block is one and the tree is not the
919 * block's owner tree. In this case, full back refs is used for pointers
920 * in the block. Remove these full back refs, add implicit back refs for
921 * every pointers in the new block.
922 *
923 * The reference count of the block is greater than one and the tree is
924 * the block's owner tree. In this case, implicit back refs is used for
925 * pointers in the block. Add full back refs for every pointers in the
926 * block, increase lower level extents' reference counts. The original
927 * implicit back refs are entailed to the new block.
928 *
929 * The reference count of the block is greater than one and the tree is
930 * not the block's owner tree. Add implicit back refs for every pointer in
931 * the new block, increase lower level extents' reference count.
932 *
933 * Back Reference Key composing:
934 *
935 * The key objectid corresponds to the first byte in the extent,
936 * The key type is used to differentiate between types of back refs.
937 * There are different meanings of the key offset for different types
938 * of back refs.
939 *
Chris Masond8d5f3e2007-12-11 12:42:00 -0500940 * File extents can be referenced by:
941 *
942 * - multiple snapshots, subvolumes, or different generations in one subvol
Zheng Yan31840ae2008-09-23 13:14:14 -0400943 * - different files inside a single subvolume
Chris Masond8d5f3e2007-12-11 12:42:00 -0500944 * - different offsets inside a file (bookend extents in file.c)
945 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400946 * The extent ref structure for the implicit back refs has fields for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500947 *
948 * - Objectid of the subvolume root
Chris Masond8d5f3e2007-12-11 12:42:00 -0500949 * - objectid of the file holding the reference
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400950 * - original offset in the file
951 * - how many bookend extents
Zheng Yan31840ae2008-09-23 13:14:14 -0400952 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400953 * The key offset for the implicit back refs is hash of the first
954 * three fields.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500955 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400956 * The extent ref structure for the full back refs has field for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500957 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400958 * - number of pointers in the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500959 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400960 * The key offset for the implicit back refs is the first byte of
961 * the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500962 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400963 * When a file extent is allocated, The implicit back refs is used.
964 * the fields are filled in:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500965 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400966 * (root_key.objectid, inode objectid, offset in file, 1)
967 *
968 * When a file extent is removed file truncation, we find the
969 * corresponding implicit back refs and check the following fields:
970 *
971 * (btrfs_header_owner(leaf), inode objectid, offset in file)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500972 *
973 * Btree extents can be referenced by:
974 *
975 * - Different subvolumes
Chris Masond8d5f3e2007-12-11 12:42:00 -0500976 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400977 * Both the implicit back refs and the full back refs for tree blocks
978 * only consist of key. The key offset for the implicit back refs is
979 * objectid of block's owner tree. The key offset for the full back refs
980 * is the first byte of parent block.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500981 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400982 * When implicit back refs is used, information about the lowest key and
983 * level of the tree block are required. These information are stored in
984 * tree block info structure.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500985 */
Zheng Yan31840ae2008-09-23 13:14:14 -0400986
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400987#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
988static int convert_extent_item_v0(struct btrfs_trans_handle *trans,
989 struct btrfs_root *root,
990 struct btrfs_path *path,
991 u64 owner, u32 extra_size)
Chris Mason74493f72007-12-11 09:25:06 -0500992{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400993 struct btrfs_extent_item *item;
994 struct btrfs_extent_item_v0 *ei0;
995 struct btrfs_extent_ref_v0 *ref0;
996 struct btrfs_tree_block_info *bi;
Zheng Yan31840ae2008-09-23 13:14:14 -0400997 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400998 struct btrfs_key key;
999 struct btrfs_key found_key;
1000 u32 new_size = sizeof(*item);
1001 u64 refs;
Chris Mason74493f72007-12-11 09:25:06 -05001002 int ret;
1003
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001004 leaf = path->nodes[0];
1005 BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0));
Chris Mason74493f72007-12-11 09:25:06 -05001006
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001007 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1008 ei0 = btrfs_item_ptr(leaf, path->slots[0],
1009 struct btrfs_extent_item_v0);
1010 refs = btrfs_extent_refs_v0(leaf, ei0);
1011
1012 if (owner == (u64)-1) {
1013 while (1) {
1014 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1015 ret = btrfs_next_leaf(root, path);
1016 if (ret < 0)
1017 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001018 BUG_ON(ret > 0); /* Corruption */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001019 leaf = path->nodes[0];
1020 }
1021 btrfs_item_key_to_cpu(leaf, &found_key,
1022 path->slots[0]);
1023 BUG_ON(key.objectid != found_key.objectid);
1024 if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) {
1025 path->slots[0]++;
1026 continue;
1027 }
1028 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1029 struct btrfs_extent_ref_v0);
1030 owner = btrfs_ref_objectid_v0(leaf, ref0);
1031 break;
1032 }
1033 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001034 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001035
1036 if (owner < BTRFS_FIRST_FREE_OBJECTID)
1037 new_size += sizeof(*bi);
1038
1039 new_size -= sizeof(*ei0);
1040 ret = btrfs_search_slot(trans, root, &key, path,
1041 new_size + extra_size, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04001042 if (ret < 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001043 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001044 BUG_ON(ret); /* Corruption */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001045
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00001046 btrfs_extend_item(root, path, new_size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001047
1048 leaf = path->nodes[0];
1049 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1050 btrfs_set_extent_refs(leaf, item, refs);
1051 /* FIXME: get real generation */
1052 btrfs_set_extent_generation(leaf, item, 0);
1053 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1054 btrfs_set_extent_flags(leaf, item,
1055 BTRFS_EXTENT_FLAG_TREE_BLOCK |
1056 BTRFS_BLOCK_FLAG_FULL_BACKREF);
1057 bi = (struct btrfs_tree_block_info *)(item + 1);
1058 /* FIXME: get first key of the block */
1059 memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi));
1060 btrfs_set_tree_block_level(leaf, bi, (int)owner);
1061 } else {
1062 btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA);
1063 }
1064 btrfs_mark_buffer_dirty(leaf);
1065 return 0;
1066}
1067#endif
1068
1069static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
1070{
1071 u32 high_crc = ~(u32)0;
1072 u32 low_crc = ~(u32)0;
1073 __le64 lenum;
1074
1075 lenum = cpu_to_le64(root_objectid);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001076 high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001077 lenum = cpu_to_le64(owner);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001078 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001079 lenum = cpu_to_le64(offset);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001080 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001081
1082 return ((u64)high_crc << 31) ^ (u64)low_crc;
1083}
1084
1085static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
1086 struct btrfs_extent_data_ref *ref)
1087{
1088 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
1089 btrfs_extent_data_ref_objectid(leaf, ref),
1090 btrfs_extent_data_ref_offset(leaf, ref));
1091}
1092
1093static int match_extent_data_ref(struct extent_buffer *leaf,
1094 struct btrfs_extent_data_ref *ref,
1095 u64 root_objectid, u64 owner, u64 offset)
1096{
1097 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
1098 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
1099 btrfs_extent_data_ref_offset(leaf, ref) != offset)
1100 return 0;
1101 return 1;
1102}
1103
1104static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
1105 struct btrfs_root *root,
1106 struct btrfs_path *path,
1107 u64 bytenr, u64 parent,
1108 u64 root_objectid,
1109 u64 owner, u64 offset)
1110{
1111 struct btrfs_key key;
1112 struct btrfs_extent_data_ref *ref;
1113 struct extent_buffer *leaf;
1114 u32 nritems;
1115 int ret;
1116 int recow;
1117 int err = -ENOENT;
1118
1119 key.objectid = bytenr;
1120 if (parent) {
1121 key.type = BTRFS_SHARED_DATA_REF_KEY;
1122 key.offset = parent;
1123 } else {
1124 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1125 key.offset = hash_extent_data_ref(root_objectid,
1126 owner, offset);
1127 }
1128again:
1129 recow = 0;
1130 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1131 if (ret < 0) {
1132 err = ret;
1133 goto fail;
1134 }
1135
1136 if (parent) {
1137 if (!ret)
1138 return 0;
1139#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1140 key.type = BTRFS_EXTENT_REF_V0_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02001141 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001142 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1143 if (ret < 0) {
1144 err = ret;
1145 goto fail;
1146 }
1147 if (!ret)
1148 return 0;
1149#endif
1150 goto fail;
Zheng Yan31840ae2008-09-23 13:14:14 -04001151 }
1152
1153 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001154 nritems = btrfs_header_nritems(leaf);
1155 while (1) {
1156 if (path->slots[0] >= nritems) {
1157 ret = btrfs_next_leaf(root, path);
1158 if (ret < 0)
1159 err = ret;
1160 if (ret)
1161 goto fail;
1162
1163 leaf = path->nodes[0];
1164 nritems = btrfs_header_nritems(leaf);
1165 recow = 1;
1166 }
1167
1168 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1169 if (key.objectid != bytenr ||
1170 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1171 goto fail;
1172
1173 ref = btrfs_item_ptr(leaf, path->slots[0],
1174 struct btrfs_extent_data_ref);
1175
1176 if (match_extent_data_ref(leaf, ref, root_objectid,
1177 owner, offset)) {
1178 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001179 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001180 goto again;
1181 }
1182 err = 0;
1183 break;
1184 }
1185 path->slots[0]++;
Zheng Yan31840ae2008-09-23 13:14:14 -04001186 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001187fail:
1188 return err;
Zheng Yan31840ae2008-09-23 13:14:14 -04001189}
1190
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001191static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
1192 struct btrfs_root *root,
1193 struct btrfs_path *path,
1194 u64 bytenr, u64 parent,
1195 u64 root_objectid, u64 owner,
1196 u64 offset, int refs_to_add)
Zheng Yan31840ae2008-09-23 13:14:14 -04001197{
1198 struct btrfs_key key;
1199 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001200 u32 size;
Zheng Yan31840ae2008-09-23 13:14:14 -04001201 u32 num_refs;
1202 int ret;
1203
1204 key.objectid = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001205 if (parent) {
1206 key.type = BTRFS_SHARED_DATA_REF_KEY;
1207 key.offset = parent;
1208 size = sizeof(struct btrfs_shared_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001209 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001210 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1211 key.offset = hash_extent_data_ref(root_objectid,
1212 owner, offset);
1213 size = sizeof(struct btrfs_extent_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001214 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001215
1216 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1217 if (ret && ret != -EEXIST)
1218 goto fail;
1219
1220 leaf = path->nodes[0];
1221 if (parent) {
1222 struct btrfs_shared_data_ref *ref;
1223 ref = btrfs_item_ptr(leaf, path->slots[0],
1224 struct btrfs_shared_data_ref);
1225 if (ret == 0) {
1226 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1227 } else {
1228 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1229 num_refs += refs_to_add;
1230 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
1231 }
1232 } else {
1233 struct btrfs_extent_data_ref *ref;
1234 while (ret == -EEXIST) {
1235 ref = btrfs_item_ptr(leaf, path->slots[0],
1236 struct btrfs_extent_data_ref);
1237 if (match_extent_data_ref(leaf, ref, root_objectid,
1238 owner, offset))
1239 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02001240 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001241 key.offset++;
1242 ret = btrfs_insert_empty_item(trans, root, path, &key,
1243 size);
1244 if (ret && ret != -EEXIST)
1245 goto fail;
1246
1247 leaf = path->nodes[0];
1248 }
1249 ref = btrfs_item_ptr(leaf, path->slots[0],
1250 struct btrfs_extent_data_ref);
1251 if (ret == 0) {
1252 btrfs_set_extent_data_ref_root(leaf, ref,
1253 root_objectid);
1254 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1255 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1256 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1257 } else {
1258 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1259 num_refs += refs_to_add;
1260 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
1261 }
1262 }
1263 btrfs_mark_buffer_dirty(leaf);
1264 ret = 0;
1265fail:
David Sterbab3b4aa72011-04-21 01:20:15 +02001266 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05001267 return ret;
Chris Mason74493f72007-12-11 09:25:06 -05001268}
1269
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001270static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
1271 struct btrfs_root *root,
1272 struct btrfs_path *path,
1273 int refs_to_drop)
Zheng Yan31840ae2008-09-23 13:14:14 -04001274{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001275 struct btrfs_key key;
1276 struct btrfs_extent_data_ref *ref1 = NULL;
1277 struct btrfs_shared_data_ref *ref2 = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -04001278 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001279 u32 num_refs = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04001280 int ret = 0;
1281
1282 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001283 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1284
1285 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1286 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1287 struct btrfs_extent_data_ref);
1288 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1289 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1290 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1291 struct btrfs_shared_data_ref);
1292 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1293#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1294 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1295 struct btrfs_extent_ref_v0 *ref0;
1296 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1297 struct btrfs_extent_ref_v0);
1298 num_refs = btrfs_ref_count_v0(leaf, ref0);
1299#endif
1300 } else {
1301 BUG();
1302 }
1303
Chris Mason56bec292009-03-13 10:10:06 -04001304 BUG_ON(num_refs < refs_to_drop);
1305 num_refs -= refs_to_drop;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001306
Zheng Yan31840ae2008-09-23 13:14:14 -04001307 if (num_refs == 0) {
1308 ret = btrfs_del_item(trans, root, path);
1309 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001310 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1311 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1312 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1313 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
1314#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1315 else {
1316 struct btrfs_extent_ref_v0 *ref0;
1317 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1318 struct btrfs_extent_ref_v0);
1319 btrfs_set_ref_count_v0(leaf, ref0, num_refs);
1320 }
1321#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04001322 btrfs_mark_buffer_dirty(leaf);
1323 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001324 return ret;
1325}
1326
1327static noinline u32 extent_data_ref_count(struct btrfs_root *root,
1328 struct btrfs_path *path,
1329 struct btrfs_extent_inline_ref *iref)
1330{
1331 struct btrfs_key key;
1332 struct extent_buffer *leaf;
1333 struct btrfs_extent_data_ref *ref1;
1334 struct btrfs_shared_data_ref *ref2;
1335 u32 num_refs = 0;
1336
1337 leaf = path->nodes[0];
1338 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1339 if (iref) {
1340 if (btrfs_extent_inline_ref_type(leaf, iref) ==
1341 BTRFS_EXTENT_DATA_REF_KEY) {
1342 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1343 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1344 } else {
1345 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1346 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1347 }
1348 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1349 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1350 struct btrfs_extent_data_ref);
1351 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1352 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1353 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1354 struct btrfs_shared_data_ref);
1355 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1356#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1357 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1358 struct btrfs_extent_ref_v0 *ref0;
1359 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1360 struct btrfs_extent_ref_v0);
1361 num_refs = btrfs_ref_count_v0(leaf, ref0);
1362#endif
1363 } else {
1364 WARN_ON(1);
1365 }
1366 return num_refs;
1367}
1368
1369static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
1370 struct btrfs_root *root,
1371 struct btrfs_path *path,
1372 u64 bytenr, u64 parent,
1373 u64 root_objectid)
1374{
1375 struct btrfs_key key;
1376 int ret;
1377
1378 key.objectid = bytenr;
1379 if (parent) {
1380 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1381 key.offset = parent;
1382 } else {
1383 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1384 key.offset = root_objectid;
1385 }
1386
1387 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1388 if (ret > 0)
1389 ret = -ENOENT;
1390#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1391 if (ret == -ENOENT && parent) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001392 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001393 key.type = BTRFS_EXTENT_REF_V0_KEY;
1394 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1395 if (ret > 0)
1396 ret = -ENOENT;
1397 }
1398#endif
1399 return ret;
1400}
1401
1402static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
1403 struct btrfs_root *root,
1404 struct btrfs_path *path,
1405 u64 bytenr, u64 parent,
1406 u64 root_objectid)
1407{
1408 struct btrfs_key key;
1409 int ret;
1410
1411 key.objectid = bytenr;
1412 if (parent) {
1413 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1414 key.offset = parent;
1415 } else {
1416 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1417 key.offset = root_objectid;
1418 }
1419
1420 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
David Sterbab3b4aa72011-04-21 01:20:15 +02001421 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04001422 return ret;
1423}
1424
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001425static inline int extent_ref_type(u64 parent, u64 owner)
1426{
1427 int type;
1428 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1429 if (parent > 0)
1430 type = BTRFS_SHARED_BLOCK_REF_KEY;
1431 else
1432 type = BTRFS_TREE_BLOCK_REF_KEY;
1433 } else {
1434 if (parent > 0)
1435 type = BTRFS_SHARED_DATA_REF_KEY;
1436 else
1437 type = BTRFS_EXTENT_DATA_REF_KEY;
1438 }
1439 return type;
1440}
1441
Yan Zheng2c47e6052009-06-27 21:07:35 -04001442static int find_next_key(struct btrfs_path *path, int level,
1443 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001444
1445{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001446 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001447 if (!path->nodes[level])
1448 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001449 if (path->slots[level] + 1 >=
1450 btrfs_header_nritems(path->nodes[level]))
1451 continue;
1452 if (level == 0)
1453 btrfs_item_key_to_cpu(path->nodes[level], key,
1454 path->slots[level] + 1);
1455 else
1456 btrfs_node_key_to_cpu(path->nodes[level], key,
1457 path->slots[level] + 1);
1458 return 0;
1459 }
1460 return 1;
1461}
1462
1463/*
1464 * look for inline back ref. if back ref is found, *ref_ret is set
1465 * to the address of inline back ref, and 0 is returned.
1466 *
1467 * if back ref isn't found, *ref_ret is set to the address where it
1468 * should be inserted, and -ENOENT is returned.
1469 *
1470 * if insert is true and there are too many inline back refs, the path
1471 * points to the extent item, and -EAGAIN is returned.
1472 *
1473 * NOTE: inline back refs are ordered in the same way that back ref
1474 * items in the tree are ordered.
1475 */
1476static noinline_for_stack
1477int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
1478 struct btrfs_root *root,
1479 struct btrfs_path *path,
1480 struct btrfs_extent_inline_ref **ref_ret,
1481 u64 bytenr, u64 num_bytes,
1482 u64 parent, u64 root_objectid,
1483 u64 owner, u64 offset, int insert)
1484{
1485 struct btrfs_key key;
1486 struct extent_buffer *leaf;
1487 struct btrfs_extent_item *ei;
1488 struct btrfs_extent_inline_ref *iref;
1489 u64 flags;
1490 u64 item_size;
1491 unsigned long ptr;
1492 unsigned long end;
1493 int extra_size;
1494 int type;
1495 int want;
1496 int ret;
1497 int err = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05001498 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
1499 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001500
1501 key.objectid = bytenr;
1502 key.type = BTRFS_EXTENT_ITEM_KEY;
1503 key.offset = num_bytes;
1504
1505 want = extent_ref_type(parent, owner);
1506 if (insert) {
1507 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001508 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001509 } else
1510 extra_size = -1;
Josef Bacik3173a182013-03-07 14:22:04 -05001511
1512 /*
1513 * Owner is our parent level, so we can just add one to get the level
1514 * for the block we are interested in.
1515 */
1516 if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) {
1517 key.type = BTRFS_METADATA_ITEM_KEY;
1518 key.offset = owner;
1519 }
1520
1521again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001522 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1523 if (ret < 0) {
1524 err = ret;
1525 goto out;
1526 }
Josef Bacik3173a182013-03-07 14:22:04 -05001527
1528 /*
1529 * We may be a newly converted file system which still has the old fat
1530 * extent entries for metadata, so try and see if we have one of those.
1531 */
1532 if (ret > 0 && skinny_metadata) {
1533 skinny_metadata = false;
1534 if (path->slots[0]) {
1535 path->slots[0]--;
1536 btrfs_item_key_to_cpu(path->nodes[0], &key,
1537 path->slots[0]);
1538 if (key.objectid == bytenr &&
1539 key.type == BTRFS_EXTENT_ITEM_KEY &&
1540 key.offset == num_bytes)
1541 ret = 0;
1542 }
1543 if (ret) {
Filipe Manana9ce49a02014-04-24 15:15:28 +01001544 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05001545 key.type = BTRFS_EXTENT_ITEM_KEY;
1546 key.offset = num_bytes;
1547 btrfs_release_path(path);
1548 goto again;
1549 }
1550 }
1551
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001552 if (ret && !insert) {
1553 err = -ENOENT;
1554 goto out;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301555 } else if (WARN_ON(ret)) {
Josef Bacik492104c2013-03-08 15:41:02 -05001556 err = -EIO;
Josef Bacik492104c2013-03-08 15:41:02 -05001557 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001558 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001559
1560 leaf = path->nodes[0];
1561 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1562#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1563 if (item_size < sizeof(*ei)) {
1564 if (!insert) {
1565 err = -ENOENT;
1566 goto out;
1567 }
1568 ret = convert_extent_item_v0(trans, root, path, owner,
1569 extra_size);
1570 if (ret < 0) {
1571 err = ret;
1572 goto out;
1573 }
1574 leaf = path->nodes[0];
1575 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1576 }
1577#endif
1578 BUG_ON(item_size < sizeof(*ei));
1579
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001580 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1581 flags = btrfs_extent_flags(leaf, ei);
1582
1583 ptr = (unsigned long)(ei + 1);
1584 end = (unsigned long)ei + item_size;
1585
Josef Bacik3173a182013-03-07 14:22:04 -05001586 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001587 ptr += sizeof(struct btrfs_tree_block_info);
1588 BUG_ON(ptr > end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001589 }
1590
1591 err = -ENOENT;
1592 while (1) {
1593 if (ptr >= end) {
1594 WARN_ON(ptr > end);
1595 break;
1596 }
1597 iref = (struct btrfs_extent_inline_ref *)ptr;
1598 type = btrfs_extent_inline_ref_type(leaf, iref);
1599 if (want < type)
1600 break;
1601 if (want > type) {
1602 ptr += btrfs_extent_inline_ref_size(type);
1603 continue;
1604 }
1605
1606 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1607 struct btrfs_extent_data_ref *dref;
1608 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1609 if (match_extent_data_ref(leaf, dref, root_objectid,
1610 owner, offset)) {
1611 err = 0;
1612 break;
1613 }
1614 if (hash_extent_data_ref_item(leaf, dref) <
1615 hash_extent_data_ref(root_objectid, owner, offset))
1616 break;
1617 } else {
1618 u64 ref_offset;
1619 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1620 if (parent > 0) {
1621 if (parent == ref_offset) {
1622 err = 0;
1623 break;
1624 }
1625 if (ref_offset < parent)
1626 break;
1627 } else {
1628 if (root_objectid == ref_offset) {
1629 err = 0;
1630 break;
1631 }
1632 if (ref_offset < root_objectid)
1633 break;
1634 }
1635 }
1636 ptr += btrfs_extent_inline_ref_size(type);
1637 }
1638 if (err == -ENOENT && insert) {
1639 if (item_size + extra_size >=
1640 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1641 err = -EAGAIN;
1642 goto out;
1643 }
1644 /*
1645 * To add new inline back ref, we have to make sure
1646 * there is no corresponding back ref item.
1647 * For simplicity, we just do not add new inline back
1648 * ref if there is any kind of item for this block
1649 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001650 if (find_next_key(path, 0, &key) == 0 &&
1651 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001652 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001653 err = -EAGAIN;
1654 goto out;
1655 }
1656 }
1657 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1658out:
Yan Zheng85d41982009-06-11 08:51:10 -04001659 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001660 path->keep_locks = 0;
1661 btrfs_unlock_up_safe(path, 1);
1662 }
1663 return err;
1664}
1665
1666/*
1667 * helper to add new inline back ref
1668 */
1669static noinline_for_stack
Tsutomu Itohfd279fa2013-04-16 05:19:11 +00001670void setup_inline_extent_backref(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001671 struct btrfs_path *path,
1672 struct btrfs_extent_inline_ref *iref,
1673 u64 parent, u64 root_objectid,
1674 u64 owner, u64 offset, int refs_to_add,
1675 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001676{
1677 struct extent_buffer *leaf;
1678 struct btrfs_extent_item *ei;
1679 unsigned long ptr;
1680 unsigned long end;
1681 unsigned long item_offset;
1682 u64 refs;
1683 int size;
1684 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001685
1686 leaf = path->nodes[0];
1687 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1688 item_offset = (unsigned long)iref - (unsigned long)ei;
1689
1690 type = extent_ref_type(parent, owner);
1691 size = btrfs_extent_inline_ref_size(type);
1692
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00001693 btrfs_extend_item(root, path, size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001694
1695 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1696 refs = btrfs_extent_refs(leaf, ei);
1697 refs += refs_to_add;
1698 btrfs_set_extent_refs(leaf, ei, refs);
1699 if (extent_op)
1700 __run_delayed_extent_op(extent_op, leaf, ei);
1701
1702 ptr = (unsigned long)ei + item_offset;
1703 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1704 if (ptr < end - size)
1705 memmove_extent_buffer(leaf, ptr + size, ptr,
1706 end - size - ptr);
1707
1708 iref = (struct btrfs_extent_inline_ref *)ptr;
1709 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1710 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1711 struct btrfs_extent_data_ref *dref;
1712 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1713 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1714 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1715 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1716 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1717 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1718 struct btrfs_shared_data_ref *sref;
1719 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1720 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1721 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1722 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1723 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1724 } else {
1725 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1726 }
1727 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001728}
1729
1730static int lookup_extent_backref(struct btrfs_trans_handle *trans,
1731 struct btrfs_root *root,
1732 struct btrfs_path *path,
1733 struct btrfs_extent_inline_ref **ref_ret,
1734 u64 bytenr, u64 num_bytes, u64 parent,
1735 u64 root_objectid, u64 owner, u64 offset)
1736{
1737 int ret;
1738
1739 ret = lookup_inline_extent_backref(trans, root, path, ref_ret,
1740 bytenr, num_bytes, parent,
1741 root_objectid, owner, offset, 0);
1742 if (ret != -ENOENT)
1743 return ret;
1744
David Sterbab3b4aa72011-04-21 01:20:15 +02001745 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001746 *ref_ret = NULL;
1747
1748 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1749 ret = lookup_tree_block_ref(trans, root, path, bytenr, parent,
1750 root_objectid);
1751 } else {
1752 ret = lookup_extent_data_ref(trans, root, path, bytenr, parent,
1753 root_objectid, owner, offset);
1754 }
1755 return ret;
1756}
1757
1758/*
1759 * helper to update/remove inline back ref
1760 */
1761static noinline_for_stack
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001762void update_inline_extent_backref(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001763 struct btrfs_path *path,
1764 struct btrfs_extent_inline_ref *iref,
1765 int refs_to_mod,
1766 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001767{
1768 struct extent_buffer *leaf;
1769 struct btrfs_extent_item *ei;
1770 struct btrfs_extent_data_ref *dref = NULL;
1771 struct btrfs_shared_data_ref *sref = NULL;
1772 unsigned long ptr;
1773 unsigned long end;
1774 u32 item_size;
1775 int size;
1776 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001777 u64 refs;
1778
1779 leaf = path->nodes[0];
1780 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1781 refs = btrfs_extent_refs(leaf, ei);
1782 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1783 refs += refs_to_mod;
1784 btrfs_set_extent_refs(leaf, ei, refs);
1785 if (extent_op)
1786 __run_delayed_extent_op(extent_op, leaf, ei);
1787
1788 type = btrfs_extent_inline_ref_type(leaf, iref);
1789
1790 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1791 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1792 refs = btrfs_extent_data_ref_count(leaf, dref);
1793 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1794 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1795 refs = btrfs_shared_data_ref_count(leaf, sref);
1796 } else {
1797 refs = 1;
1798 BUG_ON(refs_to_mod != -1);
1799 }
1800
1801 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1802 refs += refs_to_mod;
1803
1804 if (refs > 0) {
1805 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1806 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1807 else
1808 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1809 } else {
1810 size = btrfs_extent_inline_ref_size(type);
1811 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1812 ptr = (unsigned long)iref;
1813 end = (unsigned long)ei + item_size;
1814 if (ptr + size < end)
1815 memmove_extent_buffer(leaf, ptr, ptr + size,
1816 end - ptr - size);
1817 item_size -= size;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001818 btrfs_truncate_item(root, path, item_size, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001819 }
1820 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001821}
1822
1823static noinline_for_stack
1824int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
1825 struct btrfs_root *root,
1826 struct btrfs_path *path,
1827 u64 bytenr, u64 num_bytes, u64 parent,
1828 u64 root_objectid, u64 owner,
1829 u64 offset, int refs_to_add,
1830 struct btrfs_delayed_extent_op *extent_op)
1831{
1832 struct btrfs_extent_inline_ref *iref;
1833 int ret;
1834
1835 ret = lookup_inline_extent_backref(trans, root, path, &iref,
1836 bytenr, num_bytes, parent,
1837 root_objectid, owner, offset, 1);
1838 if (ret == 0) {
1839 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001840 update_inline_extent_backref(root, path, iref,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001841 refs_to_add, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001842 } else if (ret == -ENOENT) {
Tsutomu Itohfd279fa2013-04-16 05:19:11 +00001843 setup_inline_extent_backref(root, path, iref, parent,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001844 root_objectid, owner, offset,
1845 refs_to_add, extent_op);
1846 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001847 }
1848 return ret;
1849}
1850
1851static int insert_extent_backref(struct btrfs_trans_handle *trans,
1852 struct btrfs_root *root,
1853 struct btrfs_path *path,
1854 u64 bytenr, u64 parent, u64 root_objectid,
1855 u64 owner, u64 offset, int refs_to_add)
1856{
1857 int ret;
1858 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1859 BUG_ON(refs_to_add != 1);
1860 ret = insert_tree_block_ref(trans, root, path, bytenr,
1861 parent, root_objectid);
1862 } else {
1863 ret = insert_extent_data_ref(trans, root, path, bytenr,
1864 parent, root_objectid,
1865 owner, offset, refs_to_add);
1866 }
1867 return ret;
1868}
1869
1870static int remove_extent_backref(struct btrfs_trans_handle *trans,
1871 struct btrfs_root *root,
1872 struct btrfs_path *path,
1873 struct btrfs_extent_inline_ref *iref,
1874 int refs_to_drop, int is_data)
1875{
Jeff Mahoney143bede2012-03-01 14:56:26 +01001876 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001877
1878 BUG_ON(!is_data && refs_to_drop != 1);
1879 if (iref) {
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001880 update_inline_extent_backref(root, path, iref,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001881 -refs_to_drop, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001882 } else if (is_data) {
1883 ret = remove_extent_data_ref(trans, root, path, refs_to_drop);
1884 } else {
1885 ret = btrfs_del_item(trans, root, path);
1886 }
1887 return ret;
1888}
1889
Li Dongyang5378e602011-03-24 10:24:27 +00001890static int btrfs_issue_discard(struct block_device *bdev,
Chris Mason15916de2008-11-19 21:17:22 -05001891 u64 start, u64 len)
1892{
Li Dongyang5378e602011-03-24 10:24:27 +00001893 return blkdev_issue_discard(bdev, start >> 9, len >> 9, GFP_NOFS, 0);
Chris Mason15916de2008-11-19 21:17:22 -05001894}
Chris Mason15916de2008-11-19 21:17:22 -05001895
Liu Hui1f3c79a2009-01-05 15:57:51 -05001896static int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr,
Li Dongyang5378e602011-03-24 10:24:27 +00001897 u64 num_bytes, u64 *actual_bytes)
Liu Hui1f3c79a2009-01-05 15:57:51 -05001898{
Liu Hui1f3c79a2009-01-05 15:57:51 -05001899 int ret;
Li Dongyang5378e602011-03-24 10:24:27 +00001900 u64 discarded_bytes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02001901 struct btrfs_bio *bbio = NULL;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001902
Christoph Hellwige244a0a2009-10-14 09:24:59 -04001903
Liu Hui1f3c79a2009-01-05 15:57:51 -05001904 /* Tell the block device(s) that the sectors can be discarded */
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001905 ret = btrfs_map_block(root->fs_info, REQ_DISCARD,
Jan Schmidta1d3c472011-08-04 17:15:33 +02001906 bytenr, &num_bytes, &bbio, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001907 /* Error condition is -ENOMEM */
Liu Hui1f3c79a2009-01-05 15:57:51 -05001908 if (!ret) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02001909 struct btrfs_bio_stripe *stripe = bbio->stripes;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001910 int i;
1911
Liu Hui1f3c79a2009-01-05 15:57:51 -05001912
Jan Schmidta1d3c472011-08-04 17:15:33 +02001913 for (i = 0; i < bbio->num_stripes; i++, stripe++) {
Josef Bacikd5e20032011-08-04 14:52:27 +00001914 if (!stripe->dev->can_discard)
1915 continue;
1916
Li Dongyang5378e602011-03-24 10:24:27 +00001917 ret = btrfs_issue_discard(stripe->dev->bdev,
1918 stripe->physical,
1919 stripe->length);
1920 if (!ret)
1921 discarded_bytes += stripe->length;
1922 else if (ret != -EOPNOTSUPP)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001923 break; /* Logic errors or -ENOMEM, or -EIO but I don't know how that could happen JDM */
Josef Bacikd5e20032011-08-04 14:52:27 +00001924
1925 /*
1926 * Just in case we get back EOPNOTSUPP for some reason,
1927 * just ignore the return value so we don't screw up
1928 * people calling discard_extent.
1929 */
1930 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001931 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02001932 kfree(bbio);
Liu Hui1f3c79a2009-01-05 15:57:51 -05001933 }
Li Dongyang5378e602011-03-24 10:24:27 +00001934
1935 if (actual_bytes)
1936 *actual_bytes = discarded_bytes;
1937
Liu Hui1f3c79a2009-01-05 15:57:51 -05001938
David Woodhouse53b381b2013-01-29 18:40:14 -05001939 if (ret == -EOPNOTSUPP)
1940 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001941 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001942}
1943
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001944/* Can return -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001945int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1946 struct btrfs_root *root,
1947 u64 bytenr, u64 num_bytes, u64 parent,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001948 u64 root_objectid, u64 owner, u64 offset, int for_cow)
Zheng Yan31840ae2008-09-23 13:14:14 -04001949{
1950 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001951 struct btrfs_fs_info *fs_info = root->fs_info;
1952
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001953 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
1954 root_objectid == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04001955
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001956 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001957 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
1958 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001959 parent, root_objectid, (int)owner,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001960 BTRFS_ADD_DELAYED_REF, NULL, for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001961 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001962 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
1963 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001964 parent, root_objectid, owner, offset,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001965 BTRFS_ADD_DELAYED_REF, NULL, for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001966 }
Zheng Yan31840ae2008-09-23 13:14:14 -04001967 return ret;
1968}
1969
Chris Mason925baed2008-06-25 16:01:30 -04001970static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001971 struct btrfs_root *root,
1972 u64 bytenr, u64 num_bytes,
1973 u64 parent, u64 root_objectid,
1974 u64 owner, u64 offset, int refs_to_add,
1975 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04001976{
Chris Mason5caf2a02007-04-02 11:20:42 -04001977 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001978 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04001979 struct btrfs_extent_item *item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001980 u64 refs;
1981 int ret;
Chris Mason037e6392007-03-07 11:50:24 -05001982
Chris Mason5caf2a02007-04-02 11:20:42 -04001983 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001984 if (!path)
1985 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04001986
Chris Mason3c12ac72008-04-21 12:01:38 -04001987 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04001988 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001989 /* this will setup the path even if it fails to insert the back ref */
1990 ret = insert_inline_extent_backref(trans, root->fs_info->extent_root,
1991 path, bytenr, num_bytes, parent,
1992 root_objectid, owner, offset,
1993 refs_to_add, extent_op);
Liu Bo30d133f2013-10-11 16:30:23 +08001994 if (ret != -EAGAIN)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001995 goto out;
Zheng Yan31840ae2008-09-23 13:14:14 -04001996
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001997 leaf = path->nodes[0];
1998 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1999 refs = btrfs_extent_refs(leaf, item);
2000 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
2001 if (extent_op)
2002 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04002003
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002004 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002005 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05002006
Chris Mason3c12ac72008-04-21 12:01:38 -04002007 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04002008 path->leave_spinning = 1;
2009
Chris Mason56bec292009-03-13 10:10:06 -04002010 /* now insert the actual backref */
Zheng Yan31840ae2008-09-23 13:14:14 -04002011 ret = insert_extent_backref(trans, root->fs_info->extent_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002012 path, bytenr, parent, root_objectid,
2013 owner, offset, refs_to_add);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002014 if (ret)
2015 btrfs_abort_transaction(trans, root, ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002016out:
Chris Mason74493f72007-12-11 09:25:06 -05002017 btrfs_free_path(path);
Liu Bo30d133f2013-10-11 16:30:23 +08002018 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002019}
2020
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002021static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
2022 struct btrfs_root *root,
2023 struct btrfs_delayed_ref_node *node,
2024 struct btrfs_delayed_extent_op *extent_op,
2025 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04002026{
Chris Mason56bec292009-03-13 10:10:06 -04002027 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002028 struct btrfs_delayed_data_ref *ref;
2029 struct btrfs_key ins;
2030 u64 parent = 0;
2031 u64 ref_root = 0;
2032 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002033
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002034 ins.objectid = node->bytenr;
2035 ins.offset = node->num_bytes;
2036 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04002037
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002038 ref = btrfs_delayed_node_to_data_ref(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002039 trace_run_delayed_data_ref(node, ref, node->action);
2040
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002041 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
2042 parent = ref->parent;
2043 else
2044 ref_root = ref->root;
2045
2046 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002047 if (extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002048 flags |= extent_op->flags_to_set;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002049 ret = alloc_reserved_file_extent(trans, root,
2050 parent, ref_root, flags,
2051 ref->objectid, ref->offset,
2052 &ins, node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002053 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
2054 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
2055 node->num_bytes, parent,
2056 ref_root, ref->objectid,
2057 ref->offset, node->ref_mod,
2058 extent_op);
2059 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
2060 ret = __btrfs_free_extent(trans, root, node->bytenr,
2061 node->num_bytes, parent,
2062 ref_root, ref->objectid,
2063 ref->offset, node->ref_mod,
2064 extent_op);
2065 } else {
2066 BUG();
2067 }
Chris Mason56bec292009-03-13 10:10:06 -04002068 return ret;
2069}
2070
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002071static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
2072 struct extent_buffer *leaf,
2073 struct btrfs_extent_item *ei)
2074{
2075 u64 flags = btrfs_extent_flags(leaf, ei);
2076 if (extent_op->update_flags) {
2077 flags |= extent_op->flags_to_set;
2078 btrfs_set_extent_flags(leaf, ei, flags);
2079 }
2080
2081 if (extent_op->update_key) {
2082 struct btrfs_tree_block_info *bi;
2083 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
2084 bi = (struct btrfs_tree_block_info *)(ei + 1);
2085 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
2086 }
2087}
2088
2089static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
2090 struct btrfs_root *root,
2091 struct btrfs_delayed_ref_node *node,
2092 struct btrfs_delayed_extent_op *extent_op)
2093{
2094 struct btrfs_key key;
2095 struct btrfs_path *path;
2096 struct btrfs_extent_item *ei;
2097 struct extent_buffer *leaf;
2098 u32 item_size;
2099 int ret;
2100 int err = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002101 int metadata = !extent_op->is_data;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002102
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002103 if (trans->aborted)
2104 return 0;
2105
Josef Bacik3173a182013-03-07 14:22:04 -05002106 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2107 metadata = 0;
2108
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002109 path = btrfs_alloc_path();
2110 if (!path)
2111 return -ENOMEM;
2112
2113 key.objectid = node->bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002114
Josef Bacik3173a182013-03-07 14:22:04 -05002115 if (metadata) {
Josef Bacik3173a182013-03-07 14:22:04 -05002116 key.type = BTRFS_METADATA_ITEM_KEY;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002117 key.offset = extent_op->level;
Josef Bacik3173a182013-03-07 14:22:04 -05002118 } else {
2119 key.type = BTRFS_EXTENT_ITEM_KEY;
2120 key.offset = node->num_bytes;
2121 }
2122
2123again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002124 path->reada = 1;
2125 path->leave_spinning = 1;
2126 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key,
2127 path, 0, 1);
2128 if (ret < 0) {
2129 err = ret;
2130 goto out;
2131 }
2132 if (ret > 0) {
Josef Bacik3173a182013-03-07 14:22:04 -05002133 if (metadata) {
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002134 if (path->slots[0] > 0) {
2135 path->slots[0]--;
2136 btrfs_item_key_to_cpu(path->nodes[0], &key,
2137 path->slots[0]);
2138 if (key.objectid == node->bytenr &&
2139 key.type == BTRFS_EXTENT_ITEM_KEY &&
2140 key.offset == node->num_bytes)
2141 ret = 0;
2142 }
2143 if (ret > 0) {
2144 btrfs_release_path(path);
2145 metadata = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002146
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002147 key.objectid = node->bytenr;
2148 key.offset = node->num_bytes;
2149 key.type = BTRFS_EXTENT_ITEM_KEY;
2150 goto again;
2151 }
2152 } else {
2153 err = -EIO;
2154 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05002155 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002156 }
2157
2158 leaf = path->nodes[0];
2159 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2160#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2161 if (item_size < sizeof(*ei)) {
2162 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
2163 path, (u64)-1, 0);
2164 if (ret < 0) {
2165 err = ret;
2166 goto out;
2167 }
2168 leaf = path->nodes[0];
2169 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2170 }
2171#endif
2172 BUG_ON(item_size < sizeof(*ei));
2173 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2174 __run_delayed_extent_op(extent_op, leaf, ei);
2175
2176 btrfs_mark_buffer_dirty(leaf);
2177out:
2178 btrfs_free_path(path);
2179 return err;
2180}
2181
2182static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
2183 struct btrfs_root *root,
2184 struct btrfs_delayed_ref_node *node,
2185 struct btrfs_delayed_extent_op *extent_op,
2186 int insert_reserved)
2187{
2188 int ret = 0;
2189 struct btrfs_delayed_tree_ref *ref;
2190 struct btrfs_key ins;
2191 u64 parent = 0;
2192 u64 ref_root = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002193 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
2194 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002195
2196 ref = btrfs_delayed_node_to_tree_ref(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002197 trace_run_delayed_tree_ref(node, ref, node->action);
2198
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002199 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2200 parent = ref->parent;
2201 else
2202 ref_root = ref->root;
2203
Josef Bacik3173a182013-03-07 14:22:04 -05002204 ins.objectid = node->bytenr;
2205 if (skinny_metadata) {
2206 ins.offset = ref->level;
2207 ins.type = BTRFS_METADATA_ITEM_KEY;
2208 } else {
2209 ins.offset = node->num_bytes;
2210 ins.type = BTRFS_EXTENT_ITEM_KEY;
2211 }
2212
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002213 BUG_ON(node->ref_mod != 1);
2214 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002215 BUG_ON(!extent_op || !extent_op->update_flags);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002216 ret = alloc_reserved_tree_block(trans, root,
2217 parent, ref_root,
2218 extent_op->flags_to_set,
2219 &extent_op->key,
2220 ref->level, &ins);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002221 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
2222 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
2223 node->num_bytes, parent, ref_root,
2224 ref->level, 0, 1, extent_op);
2225 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
2226 ret = __btrfs_free_extent(trans, root, node->bytenr,
2227 node->num_bytes, parent, ref_root,
2228 ref->level, 0, 1, extent_op);
2229 } else {
2230 BUG();
2231 }
2232 return ret;
2233}
2234
Chris Mason56bec292009-03-13 10:10:06 -04002235/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002236static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
2237 struct btrfs_root *root,
2238 struct btrfs_delayed_ref_node *node,
2239 struct btrfs_delayed_extent_op *extent_op,
2240 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002241{
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002242 int ret = 0;
2243
Josef Bacik857cc2f2013-10-07 15:21:08 -04002244 if (trans->aborted) {
2245 if (insert_reserved)
2246 btrfs_pin_extent(root, node->bytenr,
2247 node->num_bytes, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002248 return 0;
Josef Bacik857cc2f2013-10-07 15:21:08 -04002249 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002250
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002251 if (btrfs_delayed_ref_is_head(node)) {
Chris Mason56bec292009-03-13 10:10:06 -04002252 struct btrfs_delayed_ref_head *head;
2253 /*
2254 * we've hit the end of the chain and we were supposed
2255 * to insert this extent into the tree. But, it got
2256 * deleted before we ever needed to insert it, so all
2257 * we have to do is clean up the accounting
2258 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002259 BUG_ON(extent_op);
2260 head = btrfs_delayed_node_to_head(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002261 trace_run_delayed_ref_head(node, head, node->action);
2262
Chris Mason56bec292009-03-13 10:10:06 -04002263 if (insert_reserved) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04002264 btrfs_pin_extent(root, node->bytenr,
2265 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002266 if (head->is_data) {
2267 ret = btrfs_del_csums(trans, root,
2268 node->bytenr,
2269 node->num_bytes);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002270 }
Chris Mason56bec292009-03-13 10:10:06 -04002271 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002272 return ret;
Chris Mason56bec292009-03-13 10:10:06 -04002273 }
Josef Bacikeb099672009-02-12 09:27:38 -05002274
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002275 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2276 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2277 ret = run_delayed_tree_ref(trans, root, node, extent_op,
2278 insert_reserved);
2279 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2280 node->type == BTRFS_SHARED_DATA_REF_KEY)
2281 ret = run_delayed_data_ref(trans, root, node, extent_op,
2282 insert_reserved);
2283 else
2284 BUG();
2285 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002286}
2287
Chris Mason56bec292009-03-13 10:10:06 -04002288static noinline struct btrfs_delayed_ref_node *
2289select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002290{
Chris Mason56bec292009-03-13 10:10:06 -04002291 struct rb_node *node;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002292 struct btrfs_delayed_ref_node *ref, *last = NULL;;
2293
Chris Mason56bec292009-03-13 10:10:06 -04002294 /*
2295 * select delayed ref of type BTRFS_ADD_DELAYED_REF first.
2296 * this prevents ref count from going down to zero when
2297 * there still are pending delayed ref.
2298 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002299 node = rb_first(&head->ref_root);
2300 while (node) {
Chris Mason56bec292009-03-13 10:10:06 -04002301 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2302 rb_node);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002303 if (ref->action == BTRFS_ADD_DELAYED_REF)
Chris Mason56bec292009-03-13 10:10:06 -04002304 return ref;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002305 else if (last == NULL)
2306 last = ref;
2307 node = rb_next(node);
Chris Mason5f39d392007-10-15 16:14:19 -04002308 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002309 return last;
Chris Mason56bec292009-03-13 10:10:06 -04002310}
2311
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002312/*
2313 * Returns 0 on success or if called with an already aborted transaction.
2314 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2315 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002316static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2317 struct btrfs_root *root,
2318 unsigned long nr)
Chris Mason56bec292009-03-13 10:10:06 -04002319{
Chris Mason56bec292009-03-13 10:10:06 -04002320 struct btrfs_delayed_ref_root *delayed_refs;
2321 struct btrfs_delayed_ref_node *ref;
2322 struct btrfs_delayed_ref_head *locked_ref = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002323 struct btrfs_delayed_extent_op *extent_op;
Jan Schmidt097b8a72012-06-21 11:08:04 +02002324 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002325 ktime_t start = ktime_get();
Chris Mason56bec292009-03-13 10:10:06 -04002326 int ret;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002327 unsigned long count = 0;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002328 unsigned long actual_count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002329 int must_insert_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002330
2331 delayed_refs = &trans->transaction->delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002332 while (1) {
2333 if (!locked_ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002334 if (count >= nr)
Chris Mason56bec292009-03-13 10:10:06 -04002335 break;
Chris Mason56bec292009-03-13 10:10:06 -04002336
Josef Bacikd7df2c72014-01-23 09:21:38 -05002337 spin_lock(&delayed_refs->lock);
2338 locked_ref = btrfs_select_ref_head(trans);
2339 if (!locked_ref) {
2340 spin_unlock(&delayed_refs->lock);
2341 break;
2342 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002343
2344 /* grab the lock that says we are going to process
2345 * all the refs for this head */
2346 ret = btrfs_delayed_ref_lock(trans, locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002347 spin_unlock(&delayed_refs->lock);
Chris Masonc3e69d52009-03-13 10:17:05 -04002348 /*
2349 * we may have dropped the spin lock to get the head
2350 * mutex lock, and that might have given someone else
2351 * time to free the head. If that's true, it has been
2352 * removed from our list and we can move on.
2353 */
2354 if (ret == -EAGAIN) {
2355 locked_ref = NULL;
2356 count++;
2357 continue;
Chris Mason56bec292009-03-13 10:10:06 -04002358 }
2359 }
2360
2361 /*
Josef Bacikae1e2062012-08-07 16:00:32 -04002362 * We need to try and merge add/drops of the same ref since we
2363 * can run into issues with relocate dropping the implicit ref
2364 * and then it being added back again before the drop can
2365 * finish. If we merged anything we need to re-loop so we can
2366 * get a good ref.
2367 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002368 spin_lock(&locked_ref->lock);
Josef Bacikae1e2062012-08-07 16:00:32 -04002369 btrfs_merge_delayed_refs(trans, fs_info, delayed_refs,
2370 locked_ref);
2371
2372 /*
Arne Jansend1270cd2011-09-13 15:16:43 +02002373 * locked_ref is the head node, so we have to go one
2374 * node back for any delayed ref updates
2375 */
2376 ref = select_delayed_ref(locked_ref);
2377
2378 if (ref && ref->seq &&
Jan Schmidt097b8a72012-06-21 11:08:04 +02002379 btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002380 spin_unlock(&locked_ref->lock);
Miao Xie093486c2012-12-19 08:10:10 +00002381 btrfs_delayed_ref_unlock(locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002382 spin_lock(&delayed_refs->lock);
2383 locked_ref->processing = 0;
Arne Jansend1270cd2011-09-13 15:16:43 +02002384 delayed_refs->num_heads_ready++;
2385 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002386 locked_ref = NULL;
Arne Jansend1270cd2011-09-13 15:16:43 +02002387 cond_resched();
Josef Bacik27a377d2014-02-07 13:57:59 -05002388 count++;
Arne Jansend1270cd2011-09-13 15:16:43 +02002389 continue;
2390 }
2391
2392 /*
Chris Mason56bec292009-03-13 10:10:06 -04002393 * record the must insert reserved flag before we
2394 * drop the spin lock.
2395 */
2396 must_insert_reserved = locked_ref->must_insert_reserved;
2397 locked_ref->must_insert_reserved = 0;
2398
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002399 extent_op = locked_ref->extent_op;
2400 locked_ref->extent_op = NULL;
2401
Chris Mason56bec292009-03-13 10:10:06 -04002402 if (!ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002403
2404
Chris Mason56bec292009-03-13 10:10:06 -04002405 /* All delayed refs have been processed, Go ahead
2406 * and send the head node to run_one_delayed_ref,
2407 * so that any accounting fixes can happen
2408 */
2409 ref = &locked_ref->node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002410
2411 if (extent_op && must_insert_reserved) {
Miao Xie78a61842012-11-21 02:21:28 +00002412 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002413 extent_op = NULL;
2414 }
2415
2416 if (extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002417 spin_unlock(&locked_ref->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002418 ret = run_delayed_extent_op(trans, root,
2419 ref, extent_op);
Miao Xie78a61842012-11-21 02:21:28 +00002420 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002421
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002422 if (ret) {
Josef Bacik857cc2f2013-10-07 15:21:08 -04002423 /*
2424 * Need to reset must_insert_reserved if
2425 * there was an error so the abort stuff
2426 * can cleanup the reserved space
2427 * properly.
2428 */
2429 if (must_insert_reserved)
2430 locked_ref->must_insert_reserved = 1;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002431 locked_ref->processing = 0;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002432 btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret);
Miao Xie093486c2012-12-19 08:10:10 +00002433 btrfs_delayed_ref_unlock(locked_ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002434 return ret;
2435 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002436 continue;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002437 }
Chris Mason56bec292009-03-13 10:10:06 -04002438
Josef Bacikd7df2c72014-01-23 09:21:38 -05002439 /*
2440 * Need to drop our head ref lock and re-aqcuire the
2441 * delayed ref lock and then re-check to make sure
2442 * nobody got added.
2443 */
2444 spin_unlock(&locked_ref->lock);
2445 spin_lock(&delayed_refs->lock);
2446 spin_lock(&locked_ref->lock);
Josef Bacik573a0752014-03-27 19:41:34 -04002447 if (rb_first(&locked_ref->ref_root) ||
2448 locked_ref->extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002449 spin_unlock(&locked_ref->lock);
2450 spin_unlock(&delayed_refs->lock);
2451 continue;
2452 }
2453 ref->in_tree = 0;
2454 delayed_refs->num_heads--;
Liu Boc46effa2013-10-14 12:59:45 +08002455 rb_erase(&locked_ref->href_node,
2456 &delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002457 spin_unlock(&delayed_refs->lock);
2458 } else {
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002459 actual_count++;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002460 ref->in_tree = 0;
2461 rb_erase(&ref->rb_node, &locked_ref->ref_root);
Liu Boc46effa2013-10-14 12:59:45 +08002462 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002463 atomic_dec(&delayed_refs->num_entries);
2464
Miao Xie093486c2012-12-19 08:10:10 +00002465 if (!btrfs_delayed_ref_is_head(ref)) {
Arne Jansen22cd2e72012-08-09 00:16:53 -06002466 /*
2467 * when we play the delayed ref, also correct the
2468 * ref_mod on head
2469 */
2470 switch (ref->action) {
2471 case BTRFS_ADD_DELAYED_REF:
2472 case BTRFS_ADD_DELAYED_EXTENT:
2473 locked_ref->node.ref_mod -= ref->ref_mod;
2474 break;
2475 case BTRFS_DROP_DELAYED_REF:
2476 locked_ref->node.ref_mod += ref->ref_mod;
2477 break;
2478 default:
2479 WARN_ON(1);
2480 }
2481 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002482 spin_unlock(&locked_ref->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002483
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002484 ret = run_one_delayed_ref(trans, root, ref, extent_op,
Chris Mason56bec292009-03-13 10:10:06 -04002485 must_insert_reserved);
Chris Mason56bec292009-03-13 10:10:06 -04002486
Miao Xie78a61842012-11-21 02:21:28 +00002487 btrfs_free_delayed_extent_op(extent_op);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002488 if (ret) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002489 locked_ref->processing = 0;
Miao Xie093486c2012-12-19 08:10:10 +00002490 btrfs_delayed_ref_unlock(locked_ref);
2491 btrfs_put_delayed_ref(ref);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002492 btrfs_debug(fs_info, "run_one_delayed_ref returned %d", ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002493 return ret;
2494 }
2495
Miao Xie093486c2012-12-19 08:10:10 +00002496 /*
2497 * If this node is a head, that means all the refs in this head
2498 * have been dealt with, and we will pick the next head to deal
2499 * with, so we must unlock the head and drop it from the cluster
2500 * list before we release it.
2501 */
2502 if (btrfs_delayed_ref_is_head(ref)) {
Miao Xie093486c2012-12-19 08:10:10 +00002503 btrfs_delayed_ref_unlock(locked_ref);
2504 locked_ref = NULL;
2505 }
2506 btrfs_put_delayed_ref(ref);
2507 count++;
Chris Mason1887be62009-03-13 10:11:24 -04002508 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002509 }
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002510
2511 /*
2512 * We don't want to include ref heads since we can have empty ref heads
2513 * and those will drastically skew our runtime down since we just do
2514 * accounting, no actual extent tree updates.
2515 */
2516 if (actual_count > 0) {
2517 u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start));
2518 u64 avg;
2519
2520 /*
2521 * We weigh the current average higher than our current runtime
2522 * to avoid large swings in the average.
2523 */
2524 spin_lock(&delayed_refs->lock);
2525 avg = fs_info->avg_delayed_ref_runtime * 3 + runtime;
2526 avg = div64_u64(avg, 4);
2527 fs_info->avg_delayed_ref_runtime = avg;
2528 spin_unlock(&delayed_refs->lock);
2529 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002530 return 0;
Chris Masonc3e69d52009-03-13 10:17:05 -04002531}
2532
Arne Jansen709c0482011-09-12 12:22:57 +02002533#ifdef SCRAMBLE_DELAYED_REFS
2534/*
2535 * Normally delayed refs get processed in ascending bytenr order. This
2536 * correlates in most cases to the order added. To expose dependencies on this
2537 * order, we start to process the tree in the middle instead of the beginning
2538 */
2539static u64 find_middle(struct rb_root *root)
2540{
2541 struct rb_node *n = root->rb_node;
2542 struct btrfs_delayed_ref_node *entry;
2543 int alt = 1;
2544 u64 middle;
2545 u64 first = 0, last = 0;
2546
2547 n = rb_first(root);
2548 if (n) {
2549 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2550 first = entry->bytenr;
2551 }
2552 n = rb_last(root);
2553 if (n) {
2554 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2555 last = entry->bytenr;
2556 }
2557 n = root->rb_node;
2558
2559 while (n) {
2560 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2561 WARN_ON(!entry->in_tree);
2562
2563 middle = entry->bytenr;
2564
2565 if (alt)
2566 n = n->rb_left;
2567 else
2568 n = n->rb_right;
2569
2570 alt = 1 - alt;
2571 }
2572 return middle;
2573}
2574#endif
2575
Arne Jansenbed92ea2012-06-28 18:03:02 +02002576int btrfs_delayed_refs_qgroup_accounting(struct btrfs_trans_handle *trans,
2577 struct btrfs_fs_info *fs_info)
2578{
2579 struct qgroup_update *qgroup_update;
2580 int ret = 0;
2581
2582 if (list_empty(&trans->qgroup_ref_list) !=
2583 !trans->delayed_ref_elem.seq) {
2584 /* list without seq or seq without list */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002585 btrfs_err(fs_info,
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +00002586 "qgroup accounting update error, list is%s empty, seq is %#x.%x",
Arne Jansenbed92ea2012-06-28 18:03:02 +02002587 list_empty(&trans->qgroup_ref_list) ? "" : " not",
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +00002588 (u32)(trans->delayed_ref_elem.seq >> 32),
2589 (u32)trans->delayed_ref_elem.seq);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002590 BUG();
2591 }
2592
2593 if (!trans->delayed_ref_elem.seq)
2594 return 0;
2595
2596 while (!list_empty(&trans->qgroup_ref_list)) {
2597 qgroup_update = list_first_entry(&trans->qgroup_ref_list,
2598 struct qgroup_update, list);
2599 list_del(&qgroup_update->list);
2600 if (!ret)
2601 ret = btrfs_qgroup_account_ref(
2602 trans, fs_info, qgroup_update->node,
2603 qgroup_update->extent_op);
2604 kfree(qgroup_update);
2605 }
2606
2607 btrfs_put_tree_mod_seq(fs_info, &trans->delayed_ref_elem);
2608
2609 return ret;
2610}
2611
Josef Bacik1be41b72013-06-12 13:56:06 -04002612static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads)
2613{
2614 u64 num_bytes;
2615
2616 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2617 sizeof(struct btrfs_extent_inline_ref));
2618 if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2619 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2620
2621 /*
2622 * We don't ever fill up leaves all the way so multiply by 2 just to be
2623 * closer to what we're really going to want to ouse.
2624 */
2625 return div64_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root));
2626}
2627
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002628int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans,
Josef Bacik1be41b72013-06-12 13:56:06 -04002629 struct btrfs_root *root)
2630{
2631 struct btrfs_block_rsv *global_rsv;
2632 u64 num_heads = trans->transaction->delayed_refs.num_heads_ready;
2633 u64 num_bytes;
2634 int ret = 0;
2635
2636 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
2637 num_heads = heads_to_leaves(root, num_heads);
2638 if (num_heads > 1)
2639 num_bytes += (num_heads - 1) * root->leafsize;
2640 num_bytes <<= 1;
2641 global_rsv = &root->fs_info->global_block_rsv;
2642
2643 /*
2644 * If we can't allocate any more chunks lets make sure we have _lots_ of
2645 * wiggle room since running delayed refs can create more delayed refs.
2646 */
2647 if (global_rsv->space_info->full)
2648 num_bytes <<= 1;
2649
2650 spin_lock(&global_rsv->lock);
2651 if (global_rsv->reserved <= num_bytes)
2652 ret = 1;
2653 spin_unlock(&global_rsv->lock);
2654 return ret;
2655}
2656
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002657int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans,
2658 struct btrfs_root *root)
2659{
2660 struct btrfs_fs_info *fs_info = root->fs_info;
2661 u64 num_entries =
2662 atomic_read(&trans->transaction->delayed_refs.num_entries);
2663 u64 avg_runtime;
2664
2665 smp_mb();
2666 avg_runtime = fs_info->avg_delayed_ref_runtime;
2667 if (num_entries * avg_runtime >= NSEC_PER_SEC)
2668 return 1;
2669
2670 return btrfs_check_space_for_delayed_refs(trans, root);
2671}
2672
Chris Masonc3e69d52009-03-13 10:17:05 -04002673/*
2674 * this starts processing the delayed reference count updates and
2675 * extent insertions we have queued up so far. count can be
2676 * 0, which means to process everything in the tree at the start
2677 * of the run (but not newly added entries), or it can be some target
2678 * number you'd like to process.
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002679 *
2680 * Returns 0 on success or if called with an aborted transaction
2681 * Returns <0 on error and aborts the transaction
Chris Masonc3e69d52009-03-13 10:17:05 -04002682 */
2683int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2684 struct btrfs_root *root, unsigned long count)
2685{
2686 struct rb_node *node;
2687 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boc46effa2013-10-14 12:59:45 +08002688 struct btrfs_delayed_ref_head *head;
Chris Masonc3e69d52009-03-13 10:17:05 -04002689 int ret;
2690 int run_all = count == (unsigned long)-1;
2691 int run_most = 0;
2692
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002693 /* We'll clean this up in btrfs_cleanup_transaction */
2694 if (trans->aborted)
2695 return 0;
2696
Chris Masonc3e69d52009-03-13 10:17:05 -04002697 if (root == root->fs_info->extent_root)
2698 root = root->fs_info->tree_root;
2699
Jan Schmidtedf39272012-06-28 18:04:55 +02002700 btrfs_delayed_refs_qgroup_accounting(trans, root->fs_info);
2701
Chris Masonc3e69d52009-03-13 10:17:05 -04002702 delayed_refs = &trans->transaction->delayed_refs;
Chris Masonbb721702013-01-29 18:44:12 -05002703 if (count == 0) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002704 count = atomic_read(&delayed_refs->num_entries) * 2;
Chris Masonbb721702013-01-29 18:44:12 -05002705 run_most = 1;
2706 }
2707
Chris Masonc3e69d52009-03-13 10:17:05 -04002708again:
Arne Jansen709c0482011-09-12 12:22:57 +02002709#ifdef SCRAMBLE_DELAYED_REFS
2710 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
2711#endif
Josef Bacikd7df2c72014-01-23 09:21:38 -05002712 ret = __btrfs_run_delayed_refs(trans, root, count);
2713 if (ret < 0) {
2714 btrfs_abort_transaction(trans, root, ret);
2715 return ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04002716 }
2717
Chris Mason56bec292009-03-13 10:10:06 -04002718 if (run_all) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002719 if (!list_empty(&trans->new_bgs))
Josef Bacikea658ba2012-09-11 16:57:25 -04002720 btrfs_create_pending_block_groups(trans, root);
Josef Bacikea658ba2012-09-11 16:57:25 -04002721
Josef Bacikd7df2c72014-01-23 09:21:38 -05002722 spin_lock(&delayed_refs->lock);
Liu Boc46effa2013-10-14 12:59:45 +08002723 node = rb_first(&delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002724 if (!node) {
2725 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002726 goto out;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002727 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002728 count = (unsigned long)-1;
Chris Mason56bec292009-03-13 10:10:06 -04002729
2730 while (node) {
Liu Boc46effa2013-10-14 12:59:45 +08002731 head = rb_entry(node, struct btrfs_delayed_ref_head,
2732 href_node);
2733 if (btrfs_delayed_ref_is_head(&head->node)) {
2734 struct btrfs_delayed_ref_node *ref;
Chris Mason56bec292009-03-13 10:10:06 -04002735
Liu Boc46effa2013-10-14 12:59:45 +08002736 ref = &head->node;
Chris Mason56bec292009-03-13 10:10:06 -04002737 atomic_inc(&ref->refs);
2738
2739 spin_unlock(&delayed_refs->lock);
David Sterba8cc33e52011-05-02 15:29:25 +02002740 /*
2741 * Mutex was contended, block until it's
2742 * released and try again
2743 */
Chris Mason56bec292009-03-13 10:10:06 -04002744 mutex_lock(&head->mutex);
2745 mutex_unlock(&head->mutex);
2746
2747 btrfs_put_delayed_ref(ref);
Chris Mason1887be62009-03-13 10:11:24 -04002748 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002749 goto again;
Liu Boc46effa2013-10-14 12:59:45 +08002750 } else {
2751 WARN_ON(1);
Chris Mason56bec292009-03-13 10:10:06 -04002752 }
2753 node = rb_next(node);
2754 }
2755 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002756 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002757 goto again;
2758 }
Chris Mason54aa1f42007-06-22 14:16:25 -04002759out:
Jan Schmidtedf39272012-06-28 18:04:55 +02002760 assert_qgroups_uptodate(trans);
Chris Masona28ec192007-03-06 20:08:01 -05002761 return 0;
2762}
2763
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002764int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
2765 struct btrfs_root *root,
2766 u64 bytenr, u64 num_bytes, u64 flags,
Josef Bacikb1c79e02013-05-09 13:49:30 -04002767 int level, int is_data)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002768{
2769 struct btrfs_delayed_extent_op *extent_op;
2770 int ret;
2771
Miao Xie78a61842012-11-21 02:21:28 +00002772 extent_op = btrfs_alloc_delayed_extent_op();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002773 if (!extent_op)
2774 return -ENOMEM;
2775
2776 extent_op->flags_to_set = flags;
2777 extent_op->update_flags = 1;
2778 extent_op->update_key = 0;
2779 extent_op->is_data = is_data ? 1 : 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002780 extent_op->level = level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002781
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002782 ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr,
2783 num_bytes, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002784 if (ret)
Miao Xie78a61842012-11-21 02:21:28 +00002785 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002786 return ret;
2787}
2788
2789static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
2790 struct btrfs_root *root,
2791 struct btrfs_path *path,
2792 u64 objectid, u64 offset, u64 bytenr)
2793{
2794 struct btrfs_delayed_ref_head *head;
2795 struct btrfs_delayed_ref_node *ref;
2796 struct btrfs_delayed_data_ref *data_ref;
2797 struct btrfs_delayed_ref_root *delayed_refs;
2798 struct rb_node *node;
2799 int ret = 0;
2800
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002801 delayed_refs = &trans->transaction->delayed_refs;
2802 spin_lock(&delayed_refs->lock);
2803 head = btrfs_find_delayed_ref_head(trans, bytenr);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002804 if (!head) {
2805 spin_unlock(&delayed_refs->lock);
2806 return 0;
2807 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002808
2809 if (!mutex_trylock(&head->mutex)) {
2810 atomic_inc(&head->node.refs);
2811 spin_unlock(&delayed_refs->lock);
2812
David Sterbab3b4aa72011-04-21 01:20:15 +02002813 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002814
David Sterba8cc33e52011-05-02 15:29:25 +02002815 /*
2816 * Mutex was contended, block until it's released and let
2817 * caller try again
2818 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002819 mutex_lock(&head->mutex);
2820 mutex_unlock(&head->mutex);
2821 btrfs_put_delayed_ref(&head->node);
2822 return -EAGAIN;
2823 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002824 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002825
2826 spin_lock(&head->lock);
2827 node = rb_first(&head->ref_root);
2828 while (node) {
2829 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
2830 node = rb_next(node);
2831
2832 /* If it's a shared ref we know a cross reference exists */
2833 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) {
2834 ret = 1;
2835 break;
2836 }
2837
2838 data_ref = btrfs_delayed_node_to_data_ref(ref);
2839
2840 /*
2841 * If our ref doesn't match the one we're currently looking at
2842 * then we have a cross reference.
2843 */
2844 if (data_ref->root != root->root_key.objectid ||
2845 data_ref->objectid != objectid ||
2846 data_ref->offset != offset) {
2847 ret = 1;
2848 break;
2849 }
2850 }
2851 spin_unlock(&head->lock);
2852 mutex_unlock(&head->mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002853 return ret;
2854}
2855
2856static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
2857 struct btrfs_root *root,
2858 struct btrfs_path *path,
2859 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05002860{
2861 struct btrfs_root *extent_root = root->fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04002862 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002863 struct btrfs_extent_data_ref *ref;
2864 struct btrfs_extent_inline_ref *iref;
2865 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05002866 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002867 u32 item_size;
Yan Zhengf321e492008-07-30 09:26:11 -04002868 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05002869
Chris Masonbe20aa92007-12-17 20:14:01 -05002870 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04002871 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04002872 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05002873
Chris Masonbe20aa92007-12-17 20:14:01 -05002874 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2875 if (ret < 0)
2876 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002877 BUG_ON(ret == 0); /* Corruption */
Yan Zheng80ff3852008-10-30 14:20:02 -04002878
2879 ret = -ENOENT;
2880 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04002881 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002882
Zheng Yan31840ae2008-09-23 13:14:14 -04002883 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04002884 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002885 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05002886
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002887 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05002888 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002889
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002890 ret = 1;
2891 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2892#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2893 if (item_size < sizeof(*ei)) {
2894 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
2895 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002896 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002897#endif
2898 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2899
2900 if (item_size != sizeof(*ei) +
2901 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
2902 goto out;
2903
2904 if (btrfs_extent_generation(leaf, ei) <=
2905 btrfs_root_last_snapshot(&root->root_item))
2906 goto out;
2907
2908 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
2909 if (btrfs_extent_inline_ref_type(leaf, iref) !=
2910 BTRFS_EXTENT_DATA_REF_KEY)
2911 goto out;
2912
2913 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
2914 if (btrfs_extent_refs(leaf, ei) !=
2915 btrfs_extent_data_ref_count(leaf, ref) ||
2916 btrfs_extent_data_ref_root(leaf, ref) !=
2917 root->root_key.objectid ||
2918 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
2919 btrfs_extent_data_ref_offset(leaf, ref) != offset)
2920 goto out;
2921
Yan Zhengf321e492008-07-30 09:26:11 -04002922 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05002923out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002924 return ret;
2925}
2926
2927int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
2928 struct btrfs_root *root,
2929 u64 objectid, u64 offset, u64 bytenr)
2930{
2931 struct btrfs_path *path;
2932 int ret;
2933 int ret2;
2934
2935 path = btrfs_alloc_path();
2936 if (!path)
2937 return -ENOENT;
2938
2939 do {
2940 ret = check_committed_ref(trans, root, path, objectid,
2941 offset, bytenr);
2942 if (ret && ret != -ENOENT)
2943 goto out;
2944
2945 ret2 = check_delayed_ref(trans, root, path, objectid,
2946 offset, bytenr);
2947 } while (ret2 == -EAGAIN);
2948
2949 if (ret2 && ret2 != -ENOENT) {
2950 ret = ret2;
2951 goto out;
2952 }
2953
2954 if (ret != -ENOENT || ret2 != -ENOENT)
2955 ret = 0;
2956out:
Yan Zhengf321e492008-07-30 09:26:11 -04002957 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002958 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
2959 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04002960 return ret;
2961}
2962
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002963static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05002964 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002965 struct extent_buffer *buf,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002966 int full_backref, int inc, int for_cow)
Zheng Yan31840ae2008-09-23 13:14:14 -04002967{
2968 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002969 u64 num_bytes;
2970 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04002971 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04002972 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04002973 struct btrfs_key key;
2974 struct btrfs_file_extent_item *fi;
2975 int i;
2976 int level;
2977 int ret = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04002978 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002979 u64, u64, u64, u64, u64, u64, int);
Zheng Yan31840ae2008-09-23 13:14:14 -04002980
2981 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04002982 nritems = btrfs_header_nritems(buf);
2983 level = btrfs_header_level(buf);
2984
Miao Xie27cdeb72014-04-02 19:51:05 +08002985 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002986 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05002987
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002988 if (inc)
2989 process_func = btrfs_inc_extent_ref;
2990 else
2991 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04002992
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002993 if (full_backref)
2994 parent = buf->start;
2995 else
2996 parent = 0;
2997
Zheng Yan31840ae2008-09-23 13:14:14 -04002998 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04002999 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003000 btrfs_item_key_to_cpu(buf, &key, i);
3001 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04003002 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003003 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04003004 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003005 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04003006 BTRFS_FILE_EXTENT_INLINE)
3007 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003008 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3009 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04003010 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003011
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003012 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3013 key.offset -= btrfs_file_extent_offset(buf, fi);
3014 ret = process_func(trans, root, bytenr, num_bytes,
3015 parent, ref_root, key.objectid,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003016 key.offset, for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003017 if (ret)
3018 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05003019 } else {
3020 bytenr = btrfs_node_blockptr(buf, i);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003021 num_bytes = btrfs_level_size(root, level - 1);
3022 ret = process_func(trans, root, bytenr, num_bytes,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003023 parent, ref_root, level - 1, 0,
3024 for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003025 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04003026 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04003027 }
3028 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003029 return 0;
3030fail:
Chris Mason54aa1f42007-06-22 14:16:25 -04003031 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05003032}
3033
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003034int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003035 struct extent_buffer *buf, int full_backref, int for_cow)
Zheng Yan31840ae2008-09-23 13:14:14 -04003036{
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003037 return __btrfs_mod_ref(trans, root, buf, full_backref, 1, for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003038}
Zheng Yan31840ae2008-09-23 13:14:14 -04003039
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003040int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003041 struct extent_buffer *buf, int full_backref, int for_cow)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003042{
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003043 return __btrfs_mod_ref(trans, root, buf, full_backref, 0, for_cow);
Zheng Yan31840ae2008-09-23 13:14:14 -04003044}
3045
Chris Mason9078a3e2007-04-26 16:46:15 -04003046static int write_one_cache_group(struct btrfs_trans_handle *trans,
3047 struct btrfs_root *root,
3048 struct btrfs_path *path,
3049 struct btrfs_block_group_cache *cache)
3050{
3051 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003052 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003053 unsigned long bi;
3054 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04003055
Chris Mason9078a3e2007-04-26 16:46:15 -04003056 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003057 if (ret < 0)
3058 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003059 BUG_ON(ret); /* Corruption */
Chris Mason5f39d392007-10-15 16:14:19 -04003060
3061 leaf = path->nodes[0];
3062 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3063 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3064 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003065 btrfs_release_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04003066fail:
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003067 if (ret) {
3068 btrfs_abort_transaction(trans, root, ret);
Chris Mason9078a3e2007-04-26 16:46:15 -04003069 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003070 }
Chris Mason9078a3e2007-04-26 16:46:15 -04003071 return 0;
3072
3073}
3074
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003075static struct btrfs_block_group_cache *
3076next_block_group(struct btrfs_root *root,
3077 struct btrfs_block_group_cache *cache)
3078{
3079 struct rb_node *node;
3080 spin_lock(&root->fs_info->block_group_cache_lock);
3081 node = rb_next(&cache->cache_node);
3082 btrfs_put_block_group(cache);
3083 if (node) {
3084 cache = rb_entry(node, struct btrfs_block_group_cache,
3085 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00003086 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003087 } else
3088 cache = NULL;
3089 spin_unlock(&root->fs_info->block_group_cache_lock);
3090 return cache;
3091}
3092
Josef Bacik0af3d002010-06-21 14:48:16 -04003093static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3094 struct btrfs_trans_handle *trans,
3095 struct btrfs_path *path)
3096{
3097 struct btrfs_root *root = block_group->fs_info->tree_root;
3098 struct inode *inode = NULL;
3099 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05003100 int dcs = BTRFS_DC_ERROR;
Josef Bacik0af3d002010-06-21 14:48:16 -04003101 int num_pages = 0;
3102 int retries = 0;
3103 int ret = 0;
3104
3105 /*
3106 * If this block group is smaller than 100 megs don't bother caching the
3107 * block group.
3108 */
3109 if (block_group->key.offset < (100 * 1024 * 1024)) {
3110 spin_lock(&block_group->lock);
3111 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3112 spin_unlock(&block_group->lock);
3113 return 0;
3114 }
3115
3116again:
3117 inode = lookup_free_space_inode(root, block_group, path);
3118 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3119 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02003120 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003121 goto out;
3122 }
3123
3124 if (IS_ERR(inode)) {
3125 BUG_ON(retries);
3126 retries++;
3127
3128 if (block_group->ro)
3129 goto out_free;
3130
3131 ret = create_free_space_inode(root, trans, block_group, path);
3132 if (ret)
3133 goto out_free;
3134 goto again;
3135 }
3136
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003137 /* We've already setup this transaction, go ahead and exit */
3138 if (block_group->cache_generation == trans->transid &&
3139 i_size_read(inode)) {
3140 dcs = BTRFS_DC_SETUP;
3141 goto out_put;
3142 }
3143
Josef Bacik0af3d002010-06-21 14:48:16 -04003144 /*
3145 * We want to set the generation to 0, that way if anything goes wrong
3146 * from here on out we know not to trust this cache when we load up next
3147 * time.
3148 */
3149 BTRFS_I(inode)->generation = 0;
3150 ret = btrfs_update_inode(trans, root, inode);
3151 WARN_ON(ret);
3152
3153 if (i_size_read(inode) > 0) {
Miao Xie7b61cd92013-05-13 13:55:09 +00003154 ret = btrfs_check_trunc_cache_free_space(root,
3155 &root->fs_info->global_block_rsv);
3156 if (ret)
3157 goto out_put;
3158
Filipe David Borba Manana74514322013-09-20 14:46:51 +01003159 ret = btrfs_truncate_free_space_cache(root, trans, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003160 if (ret)
3161 goto out_put;
3162 }
3163
3164 spin_lock(&block_group->lock);
Liu Bocf7c1ef2012-07-06 03:31:34 -06003165 if (block_group->cached != BTRFS_CACHE_FINISHED ||
3166 !btrfs_test_opt(root, SPACE_CACHE)) {
3167 /*
3168 * don't bother trying to write stuff out _if_
3169 * a) we're not cached,
3170 * b) we're with nospace_cache mount option.
3171 */
Josef Bacik2b209822010-12-03 13:17:53 -05003172 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04003173 spin_unlock(&block_group->lock);
3174 goto out_put;
3175 }
3176 spin_unlock(&block_group->lock);
3177
Josef Bacik6fc823b2012-08-06 13:46:38 -06003178 /*
3179 * Try to preallocate enough space based on how big the block group is.
3180 * Keep in mind this has to include any pinned space which could end up
3181 * taking up quite a bit since it's not folded into the other space
3182 * cache.
3183 */
3184 num_pages = (int)div64_u64(block_group->key.offset, 256 * 1024 * 1024);
Josef Bacik0af3d002010-06-21 14:48:16 -04003185 if (!num_pages)
3186 num_pages = 1;
3187
Josef Bacik0af3d002010-06-21 14:48:16 -04003188 num_pages *= 16;
3189 num_pages *= PAGE_CACHE_SIZE;
3190
3191 ret = btrfs_check_data_free_space(inode, num_pages);
3192 if (ret)
3193 goto out_put;
3194
3195 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3196 num_pages, num_pages,
3197 &alloc_hint);
Josef Bacik2b209822010-12-03 13:17:53 -05003198 if (!ret)
3199 dcs = BTRFS_DC_SETUP;
Josef Bacik0af3d002010-06-21 14:48:16 -04003200 btrfs_free_reserved_data_space(inode, num_pages);
Josef Bacikc09544e2011-08-30 10:19:10 -04003201
Josef Bacik0af3d002010-06-21 14:48:16 -04003202out_put:
3203 iput(inode);
3204out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02003205 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003206out:
3207 spin_lock(&block_group->lock);
Josef Bacike65cbb92011-12-13 16:04:54 -05003208 if (!ret && dcs == BTRFS_DC_SETUP)
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003209 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05003210 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04003211 spin_unlock(&block_group->lock);
3212
3213 return ret;
3214}
3215
Chris Mason96b51792007-10-15 16:15:19 -04003216int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
3217 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04003218{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003219 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04003220 int err = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003221 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -04003222 u64 last = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003223
3224 path = btrfs_alloc_path();
3225 if (!path)
3226 return -ENOMEM;
3227
Josef Bacik0af3d002010-06-21 14:48:16 -04003228again:
3229 while (1) {
3230 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3231 while (cache) {
3232 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3233 break;
3234 cache = next_block_group(root, cache);
3235 }
3236 if (!cache) {
3237 if (last == 0)
3238 break;
3239 last = 0;
3240 continue;
3241 }
3242 err = cache_save_setup(cache, trans, path);
3243 last = cache->key.objectid + cache->key.offset;
3244 btrfs_put_block_group(cache);
3245 }
3246
Chris Masond3977122009-01-05 21:25:51 -05003247 while (1) {
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003248 if (last == 0) {
3249 err = btrfs_run_delayed_refs(trans, root,
3250 (unsigned long)-1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003251 if (err) /* File system offline */
3252 goto out;
Josef Bacik0f9dd462008-09-23 13:14:11 -04003253 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04003254
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003255 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3256 while (cache) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003257 if (cache->disk_cache_state == BTRFS_DC_CLEAR) {
3258 btrfs_put_block_group(cache);
3259 goto again;
3260 }
3261
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003262 if (cache->dirty)
3263 break;
3264 cache = next_block_group(root, cache);
3265 }
3266 if (!cache) {
3267 if (last == 0)
3268 break;
3269 last = 0;
Chris Mason96b51792007-10-15 16:15:19 -04003270 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -04003271 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003272
Josef Bacik0cb59c92010-07-02 12:14:14 -04003273 if (cache->disk_cache_state == BTRFS_DC_SETUP)
3274 cache->disk_cache_state = BTRFS_DC_NEED_WRITE;
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003275 cache->dirty = 0;
3276 last = cache->key.objectid + cache->key.offset;
3277
3278 err = write_one_cache_group(trans, root, path, cache);
Filipe David Borba Mananae84cc142013-09-09 19:49:43 +01003279 btrfs_put_block_group(cache);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003280 if (err) /* File system offline */
3281 goto out;
Chris Mason9078a3e2007-04-26 16:46:15 -04003282 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003283
Josef Bacik0cb59c92010-07-02 12:14:14 -04003284 while (1) {
3285 /*
3286 * I don't think this is needed since we're just marking our
3287 * preallocated extent as written, but just in case it can't
3288 * hurt.
3289 */
3290 if (last == 0) {
3291 err = btrfs_run_delayed_refs(trans, root,
3292 (unsigned long)-1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003293 if (err) /* File system offline */
3294 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -04003295 }
3296
3297 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3298 while (cache) {
3299 /*
3300 * Really this shouldn't happen, but it could if we
3301 * couldn't write the entire preallocated extent and
3302 * splitting the extent resulted in a new block.
3303 */
3304 if (cache->dirty) {
3305 btrfs_put_block_group(cache);
3306 goto again;
3307 }
3308 if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
3309 break;
3310 cache = next_block_group(root, cache);
3311 }
3312 if (!cache) {
3313 if (last == 0)
3314 break;
3315 last = 0;
3316 continue;
3317 }
3318
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003319 err = btrfs_write_out_cache(root, trans, cache, path);
Josef Bacik0cb59c92010-07-02 12:14:14 -04003320
3321 /*
3322 * If we didn't have an error then the cache state is still
3323 * NEED_WRITE, so we can set it to WRITTEN.
3324 */
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003325 if (!err && cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
Josef Bacik0cb59c92010-07-02 12:14:14 -04003326 cache->disk_cache_state = BTRFS_DC_WRITTEN;
3327 last = cache->key.objectid + cache->key.offset;
3328 btrfs_put_block_group(cache);
3329 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003330out:
Josef Bacik0cb59c92010-07-02 12:14:14 -04003331
Chris Mason9078a3e2007-04-26 16:46:15 -04003332 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003333 return err;
Chris Mason9078a3e2007-04-26 16:46:15 -04003334}
3335
Yan Zhengd2fb3432008-12-11 16:30:39 -05003336int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
3337{
3338 struct btrfs_block_group_cache *block_group;
3339 int readonly = 0;
3340
3341 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
3342 if (!block_group || block_group->ro)
3343 readonly = 1;
3344 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04003345 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003346 return readonly;
3347}
3348
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003349static const char *alloc_name(u64 flags)
3350{
3351 switch (flags) {
3352 case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA:
3353 return "mixed";
3354 case BTRFS_BLOCK_GROUP_METADATA:
3355 return "metadata";
3356 case BTRFS_BLOCK_GROUP_DATA:
3357 return "data";
3358 case BTRFS_BLOCK_GROUP_SYSTEM:
3359 return "system";
3360 default:
3361 WARN_ON(1);
3362 return "invalid-combination";
3363 };
3364}
3365
Chris Mason593060d2008-03-25 16:50:33 -04003366static int update_space_info(struct btrfs_fs_info *info, u64 flags,
3367 u64 total_bytes, u64 bytes_used,
3368 struct btrfs_space_info **space_info)
3369{
3370 struct btrfs_space_info *found;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003371 int i;
3372 int factor;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003373 int ret;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003374
3375 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
3376 BTRFS_BLOCK_GROUP_RAID10))
3377 factor = 2;
3378 else
3379 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04003380
3381 found = __find_space_info(info, flags);
3382 if (found) {
Josef Bacik25179202008-10-29 14:49:05 -04003383 spin_lock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003384 found->total_bytes += total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003385 found->disk_total += total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003386 found->bytes_used += bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003387 found->disk_used += bytes_used * factor;
Chris Mason8f18cf12008-04-25 16:53:30 -04003388 found->full = 0;
Josef Bacik25179202008-10-29 14:49:05 -04003389 spin_unlock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003390 *space_info = found;
3391 return 0;
3392 }
Yan Zhengc146afa2008-11-12 14:34:12 -05003393 found = kzalloc(sizeof(*found), GFP_NOFS);
Chris Mason593060d2008-03-25 16:50:33 -04003394 if (!found)
3395 return -ENOMEM;
3396
Josef Bacikb150a4f2013-06-19 15:00:04 -04003397 ret = percpu_counter_init(&found->total_bytes_pinned, 0);
3398 if (ret) {
3399 kfree(found);
3400 return ret;
3401 }
3402
Miao Xie536cd962013-12-17 12:01:12 +08003403 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
Yan, Zhengb742bb82010-05-16 10:46:24 -04003404 INIT_LIST_HEAD(&found->block_groups[i]);
Miao Xie536cd962013-12-17 12:01:12 +08003405 kobject_init(&found->block_group_kobjs[i], &btrfs_raid_ktype);
3406 }
Josef Bacik80eb2342008-10-29 14:49:05 -04003407 init_rwsem(&found->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003408 spin_lock_init(&found->lock);
Ilya Dryomov52ba6922012-01-16 22:04:47 +02003409 found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
Chris Mason593060d2008-03-25 16:50:33 -04003410 found->total_bytes = total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003411 found->disk_total = total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003412 found->bytes_used = bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003413 found->disk_used = bytes_used * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003414 found->bytes_pinned = 0;
Zheng Yane8569812008-09-26 10:05:48 -04003415 found->bytes_reserved = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003416 found->bytes_readonly = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003417 found->bytes_may_use = 0;
Chris Mason593060d2008-03-25 16:50:33 -04003418 found->full = 0;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003419 found->force_alloc = CHUNK_ALLOC_NO_FORCE;
Josef Bacik6d741192011-04-11 20:20:11 -04003420 found->chunk_alloc = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003421 found->flush = 0;
3422 init_waitqueue_head(&found->wait);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003423
3424 ret = kobject_init_and_add(&found->kobj, &space_info_ktype,
3425 info->space_info_kobj, "%s",
3426 alloc_name(found->flags));
3427 if (ret) {
3428 kfree(found);
3429 return ret;
3430 }
3431
Chris Mason593060d2008-03-25 16:50:33 -04003432 *space_info = found;
Chris Mason4184ea72009-03-10 12:39:20 -04003433 list_add_rcu(&found->list, &info->space_info);
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003434 if (flags & BTRFS_BLOCK_GROUP_DATA)
3435 info->data_sinfo = found;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003436
3437 return ret;
Chris Mason593060d2008-03-25 16:50:33 -04003438}
3439
Chris Mason8790d502008-04-03 16:29:03 -04003440static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3441{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003442 u64 extra_flags = chunk_to_extended(flags) &
3443 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003444
Miao Xiede98ced2013-01-29 10:13:12 +00003445 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003446 if (flags & BTRFS_BLOCK_GROUP_DATA)
3447 fs_info->avail_data_alloc_bits |= extra_flags;
3448 if (flags & BTRFS_BLOCK_GROUP_METADATA)
3449 fs_info->avail_metadata_alloc_bits |= extra_flags;
3450 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3451 fs_info->avail_system_alloc_bits |= extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003452 write_sequnlock(&fs_info->profiles_lock);
Chris Mason8790d502008-04-03 16:29:03 -04003453}
Chris Mason593060d2008-03-25 16:50:33 -04003454
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003455/*
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003456 * returns target flags in extended format or 0 if restripe for this
3457 * chunk_type is not in progress
Ilya Dryomovc6664b42012-04-12 16:03:56 -04003458 *
3459 * should be called with either volume_mutex or balance_lock held
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003460 */
3461static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
3462{
3463 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3464 u64 target = 0;
3465
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003466 if (!bctl)
3467 return 0;
3468
3469 if (flags & BTRFS_BLOCK_GROUP_DATA &&
3470 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3471 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
3472 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
3473 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3474 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
3475 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
3476 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3477 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
3478 }
3479
3480 return target;
3481}
3482
3483/*
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003484 * @flags: available profiles in extended format (see ctree.h)
3485 *
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003486 * Returns reduced profile in chunk format. If profile changing is in
3487 * progress (either running or paused) picks the target profile (if it's
3488 * already available), otherwise falls back to plain reducing.
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003489 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003490static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04003491{
Chris Masoncd02dca2010-12-13 14:56:23 -05003492 /*
3493 * we add in the count of missing devices because we want
3494 * to make sure that any RAID levels on a degraded FS
3495 * continue to be honored.
3496 */
3497 u64 num_devices = root->fs_info->fs_devices->rw_devices +
3498 root->fs_info->fs_devices->missing_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003499 u64 target;
David Woodhouse53b381b2013-01-29 18:40:14 -05003500 u64 tmp;
Chris Masona061fc82008-05-07 11:43:44 -04003501
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003502 /*
3503 * see if restripe for this chunk_type is in progress, if so
3504 * try to reduce to the target profile
3505 */
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003506 spin_lock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003507 target = get_restripe_target(root->fs_info, flags);
3508 if (target) {
3509 /* pick target profile only if it's already available */
3510 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003511 spin_unlock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003512 return extended_to_chunk(target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003513 }
3514 }
3515 spin_unlock(&root->fs_info->balance_lock);
3516
David Woodhouse53b381b2013-01-29 18:40:14 -05003517 /* First, mask out the RAID levels which aren't possible */
Chris Masona061fc82008-05-07 11:43:44 -04003518 if (num_devices == 1)
David Woodhouse53b381b2013-01-29 18:40:14 -05003519 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0 |
3520 BTRFS_BLOCK_GROUP_RAID5);
3521 if (num_devices < 3)
3522 flags &= ~BTRFS_BLOCK_GROUP_RAID6;
Chris Masona061fc82008-05-07 11:43:44 -04003523 if (num_devices < 4)
3524 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
3525
David Woodhouse53b381b2013-01-29 18:40:14 -05003526 tmp = flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID0 |
3527 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID5 |
3528 BTRFS_BLOCK_GROUP_RAID6 | BTRFS_BLOCK_GROUP_RAID10);
3529 flags &= ~tmp;
Chris Masonec44a352008-04-28 15:29:52 -04003530
David Woodhouse53b381b2013-01-29 18:40:14 -05003531 if (tmp & BTRFS_BLOCK_GROUP_RAID6)
3532 tmp = BTRFS_BLOCK_GROUP_RAID6;
3533 else if (tmp & BTRFS_BLOCK_GROUP_RAID5)
3534 tmp = BTRFS_BLOCK_GROUP_RAID5;
3535 else if (tmp & BTRFS_BLOCK_GROUP_RAID10)
3536 tmp = BTRFS_BLOCK_GROUP_RAID10;
3537 else if (tmp & BTRFS_BLOCK_GROUP_RAID1)
3538 tmp = BTRFS_BLOCK_GROUP_RAID1;
3539 else if (tmp & BTRFS_BLOCK_GROUP_RAID0)
3540 tmp = BTRFS_BLOCK_GROUP_RAID0;
Chris Masonec44a352008-04-28 15:29:52 -04003541
David Woodhouse53b381b2013-01-29 18:40:14 -05003542 return extended_to_chunk(flags | tmp);
Chris Masonec44a352008-04-28 15:29:52 -04003543}
3544
Filipe Mananaf8213bd2014-04-24 15:15:29 +01003545static u64 get_alloc_profile(struct btrfs_root *root, u64 orig_flags)
Josef Bacik6a632092009-02-20 11:00:09 -05003546{
Miao Xiede98ced2013-01-29 10:13:12 +00003547 unsigned seq;
Filipe Mananaf8213bd2014-04-24 15:15:29 +01003548 u64 flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003549
3550 do {
Filipe Mananaf8213bd2014-04-24 15:15:29 +01003551 flags = orig_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003552 seq = read_seqbegin(&root->fs_info->profiles_lock);
3553
3554 if (flags & BTRFS_BLOCK_GROUP_DATA)
3555 flags |= root->fs_info->avail_data_alloc_bits;
3556 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3557 flags |= root->fs_info->avail_system_alloc_bits;
3558 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
3559 flags |= root->fs_info->avail_metadata_alloc_bits;
3560 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02003561
Yan, Zhengb742bb82010-05-16 10:46:24 -04003562 return btrfs_reduce_alloc_profile(root, flags);
3563}
Josef Bacik6a632092009-02-20 11:00:09 -05003564
Miao Xie6d07bce2011-01-05 10:07:31 +00003565u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
Yan, Zhengb742bb82010-05-16 10:46:24 -04003566{
3567 u64 flags;
David Woodhouse53b381b2013-01-29 18:40:14 -05003568 u64 ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003569
Yan, Zhengb742bb82010-05-16 10:46:24 -04003570 if (data)
3571 flags = BTRFS_BLOCK_GROUP_DATA;
3572 else if (root == root->fs_info->chunk_root)
3573 flags = BTRFS_BLOCK_GROUP_SYSTEM;
3574 else
3575 flags = BTRFS_BLOCK_GROUP_METADATA;
3576
David Woodhouse53b381b2013-01-29 18:40:14 -05003577 ret = get_alloc_profile(root, flags);
3578 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003579}
3580
Josef Bacik6a632092009-02-20 11:00:09 -05003581/*
3582 * This will check the space that the inode allocates from to make sure we have
3583 * enough space for bytes.
3584 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003585int btrfs_check_data_free_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003586{
3587 struct btrfs_space_info *data_sinfo;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003588 struct btrfs_root *root = BTRFS_I(inode)->root;
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003589 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacikab6e24102010-03-19 14:38:13 +00003590 u64 used;
Josef Bacik0af3d002010-06-21 14:48:16 -04003591 int ret = 0, committed = 0, alloc_chunk = 1;
Josef Bacik6a632092009-02-20 11:00:09 -05003592
3593 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00003594 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05003595
Miao Xie9dced182013-10-25 17:33:36 +08003596 if (btrfs_is_free_space_inode(inode)) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003597 committed = 1;
Miao Xie9dced182013-10-25 17:33:36 +08003598 ASSERT(current->journal_info);
Josef Bacik0af3d002010-06-21 14:48:16 -04003599 }
3600
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003601 data_sinfo = fs_info->data_sinfo;
Chris Mason33b4d472009-09-22 14:45:50 -04003602 if (!data_sinfo)
3603 goto alloc;
3604
Josef Bacik6a632092009-02-20 11:00:09 -05003605again:
3606 /* make sure we have enough space to handle the data first */
3607 spin_lock(&data_sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003608 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
3609 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
3610 data_sinfo->bytes_may_use;
Josef Bacikab6e24102010-03-19 14:38:13 +00003611
3612 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003613 struct btrfs_trans_handle *trans;
3614
Josef Bacik6a632092009-02-20 11:00:09 -05003615 /*
3616 * if we don't have enough free bytes in this space then we need
3617 * to alloc a new chunk.
3618 */
Josef Bacik0af3d002010-06-21 14:48:16 -04003619 if (!data_sinfo->full && alloc_chunk) {
Josef Bacik6a632092009-02-20 11:00:09 -05003620 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05003621
Chris Mason0e4f8f82011-04-15 16:05:44 -04003622 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05003623 spin_unlock(&data_sinfo->lock);
Chris Mason33b4d472009-09-22 14:45:50 -04003624alloc:
Josef Bacik6a632092009-02-20 11:00:09 -05003625 alloc_target = btrfs_get_alloc_profile(root, 1);
Miao Xie9dced182013-10-25 17:33:36 +08003626 /*
3627 * It is ugly that we don't call nolock join
3628 * transaction for the free space inode case here.
3629 * But it is safe because we only do the data space
3630 * reservation for the free space cache in the
3631 * transaction context, the common join transaction
3632 * just increase the counter of the current transaction
3633 * handler, doesn't try to acquire the trans_lock of
3634 * the fs.
3635 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003636 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003637 if (IS_ERR(trans))
3638 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05003639
3640 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0e4f8f82011-04-15 16:05:44 -04003641 alloc_target,
3642 CHUNK_ALLOC_NO_FORCE);
Josef Bacik6a632092009-02-20 11:00:09 -05003643 btrfs_end_transaction(trans, root);
Miao Xied52a5b52011-01-05 10:07:18 +00003644 if (ret < 0) {
3645 if (ret != -ENOSPC)
3646 return ret;
3647 else
3648 goto commit_trans;
3649 }
Chris Mason33b4d472009-09-22 14:45:50 -04003650
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003651 if (!data_sinfo)
3652 data_sinfo = fs_info->data_sinfo;
3653
Josef Bacik6a632092009-02-20 11:00:09 -05003654 goto again;
3655 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003656
3657 /*
Josef Bacikb150a4f2013-06-19 15:00:04 -04003658 * If we don't have enough pinned space to deal with this
3659 * allocation don't bother committing the transaction.
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003660 */
Josef Bacikb150a4f2013-06-19 15:00:04 -04003661 if (percpu_counter_compare(&data_sinfo->total_bytes_pinned,
3662 bytes) < 0)
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003663 committed = 1;
Josef Bacik6a632092009-02-20 11:00:09 -05003664 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003665
3666 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00003667commit_trans:
Josef Bacika4abeea2011-04-11 17:25:13 -04003668 if (!committed &&
3669 !atomic_read(&root->fs_info->open_ioctl_trans)) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003670 committed = 1;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003671
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003672 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003673 if (IS_ERR(trans))
3674 return PTR_ERR(trans);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003675 ret = btrfs_commit_transaction(trans, root);
3676 if (ret)
3677 return ret;
3678 goto again;
3679 }
3680
Jeff Mahoneycab45e22013-10-16 16:27:01 -04003681 trace_btrfs_space_reservation(root->fs_info,
3682 "space_info:enospc",
3683 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05003684 return -ENOSPC;
3685 }
3686 data_sinfo->bytes_may_use += bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05003687 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04003688 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05003689 spin_unlock(&data_sinfo->lock);
3690
Josef Bacik9ed74f22009-09-11 16:12:44 -04003691 return 0;
Josef Bacik6a632092009-02-20 11:00:09 -05003692}
3693
3694/*
Josef Bacikfb25e912011-07-26 17:00:46 -04003695 * Called if we need to clear a data reservation for this inode.
Josef Bacik6a632092009-02-20 11:00:09 -05003696 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003697void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003698{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003699 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003700 struct btrfs_space_info *data_sinfo;
3701
3702 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00003703 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05003704
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003705 data_sinfo = root->fs_info->data_sinfo;
Josef Bacik6a632092009-02-20 11:00:09 -05003706 spin_lock(&data_sinfo->lock);
Josef Bacik7ee9e442013-06-21 16:37:03 -04003707 WARN_ON(data_sinfo->bytes_may_use < bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05003708 data_sinfo->bytes_may_use -= bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05003709 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04003710 data_sinfo->flags, bytes, 0);
Josef Bacik6a632092009-02-20 11:00:09 -05003711 spin_unlock(&data_sinfo->lock);
3712}
3713
Josef Bacik97e728d2009-04-21 17:40:57 -04003714static void force_metadata_allocation(struct btrfs_fs_info *info)
3715{
3716 struct list_head *head = &info->space_info;
3717 struct btrfs_space_info *found;
3718
3719 rcu_read_lock();
3720 list_for_each_entry_rcu(found, head, list) {
3721 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04003722 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04003723 }
3724 rcu_read_unlock();
3725}
3726
Miao Xie3c76cd82013-04-25 10:12:38 +00003727static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
3728{
3729 return (global->size << 1);
3730}
3731
Chris Masone5bc2452010-10-26 13:37:56 -04003732static int should_alloc_chunk(struct btrfs_root *root,
Josef Bacik698d0082012-09-12 14:08:47 -04003733 struct btrfs_space_info *sinfo, int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04003734{
Josef Bacikfb25e912011-07-26 17:00:46 -04003735 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zheng424499d2010-05-16 10:46:25 -04003736 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003737 u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved;
Chris Masone5bc2452010-10-26 13:37:56 -04003738 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04003739
Chris Mason0e4f8f82011-04-15 16:05:44 -04003740 if (force == CHUNK_ALLOC_FORCE)
3741 return 1;
3742
3743 /*
Josef Bacikfb25e912011-07-26 17:00:46 -04003744 * We need to take into account the global rsv because for all intents
3745 * and purposes it's used space. Don't worry about locking the
3746 * global_rsv, it doesn't change except when the transaction commits.
3747 */
Josef Bacik54338b52012-08-14 16:20:52 -04003748 if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA)
Miao Xie3c76cd82013-04-25 10:12:38 +00003749 num_allocated += calc_global_rsv_need_space(global_rsv);
Josef Bacikfb25e912011-07-26 17:00:46 -04003750
3751 /*
Chris Mason0e4f8f82011-04-15 16:05:44 -04003752 * in limited mode, we want to have some free space up to
3753 * about 1% of the FS size.
3754 */
3755 if (force == CHUNK_ALLOC_LIMITED) {
David Sterba6c417612011-04-13 15:41:04 +02003756 thresh = btrfs_super_total_bytes(root->fs_info->super_copy);
Chris Mason0e4f8f82011-04-15 16:05:44 -04003757 thresh = max_t(u64, 64 * 1024 * 1024,
3758 div_factor_fine(thresh, 1));
3759
3760 if (num_bytes - num_allocated < thresh)
3761 return 1;
3762 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04003763
Josef Bacik698d0082012-09-12 14:08:47 -04003764 if (num_allocated + 2 * 1024 * 1024 < div_factor(num_bytes, 8))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04003765 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04003766 return 1;
3767}
3768
Liu Bo15d1ff82012-03-29 09:57:44 -04003769static u64 get_system_chunk_thresh(struct btrfs_root *root, u64 type)
3770{
3771 u64 num_dev;
3772
David Woodhouse53b381b2013-01-29 18:40:14 -05003773 if (type & (BTRFS_BLOCK_GROUP_RAID10 |
3774 BTRFS_BLOCK_GROUP_RAID0 |
3775 BTRFS_BLOCK_GROUP_RAID5 |
3776 BTRFS_BLOCK_GROUP_RAID6))
Liu Bo15d1ff82012-03-29 09:57:44 -04003777 num_dev = root->fs_info->fs_devices->rw_devices;
3778 else if (type & BTRFS_BLOCK_GROUP_RAID1)
3779 num_dev = 2;
3780 else
3781 num_dev = 1; /* DUP or single */
3782
3783 /* metadata for updaing devices and chunk tree */
3784 return btrfs_calc_trans_metadata_size(root, num_dev + 1);
3785}
3786
3787static void check_system_chunk(struct btrfs_trans_handle *trans,
3788 struct btrfs_root *root, u64 type)
3789{
3790 struct btrfs_space_info *info;
3791 u64 left;
3792 u64 thresh;
3793
3794 info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
3795 spin_lock(&info->lock);
3796 left = info->total_bytes - info->bytes_used - info->bytes_pinned -
3797 info->bytes_reserved - info->bytes_readonly;
3798 spin_unlock(&info->lock);
3799
3800 thresh = get_system_chunk_thresh(root, type);
3801 if (left < thresh && btrfs_test_opt(root, ENOSPC_DEBUG)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003802 btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu",
3803 left, thresh, type);
Liu Bo15d1ff82012-03-29 09:57:44 -04003804 dump_space_info(info, 0, 0);
3805 }
3806
3807 if (left < thresh) {
3808 u64 flags;
3809
3810 flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0);
3811 btrfs_alloc_chunk(trans, root, flags);
3812 }
3813}
3814
Chris Mason6324fbf2008-03-24 15:01:59 -04003815static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Josef Bacik698d0082012-09-12 14:08:47 -04003816 struct btrfs_root *extent_root, u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04003817{
3818 struct btrfs_space_info *space_info;
Josef Bacik97e728d2009-04-21 17:40:57 -04003819 struct btrfs_fs_info *fs_info = extent_root->fs_info;
Josef Bacik6d741192011-04-11 20:20:11 -04003820 int wait_for_alloc = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003821 int ret = 0;
3822
Josef Bacikc6b305a2012-12-18 09:16:16 -05003823 /* Don't re-enter if we're already allocating a chunk */
3824 if (trans->allocating_chunk)
3825 return -ENOSPC;
3826
Chris Mason6324fbf2008-03-24 15:01:59 -04003827 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04003828 if (!space_info) {
3829 ret = update_space_info(extent_root->fs_info, flags,
3830 0, 0, &space_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003831 BUG_ON(ret); /* -ENOMEM */
Chris Mason593060d2008-03-25 16:50:33 -04003832 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003833 BUG_ON(!space_info); /* Logic error */
Chris Mason6324fbf2008-03-24 15:01:59 -04003834
Josef Bacik6d741192011-04-11 20:20:11 -04003835again:
Josef Bacik25179202008-10-29 14:49:05 -04003836 spin_lock(&space_info->lock);
Miao Xie9e622d62012-01-26 15:01:12 -05003837 if (force < space_info->force_alloc)
Chris Mason0e4f8f82011-04-15 16:05:44 -04003838 force = space_info->force_alloc;
Josef Bacik25179202008-10-29 14:49:05 -04003839 if (space_info->full) {
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01003840 if (should_alloc_chunk(extent_root, space_info, force))
3841 ret = -ENOSPC;
3842 else
3843 ret = 0;
Josef Bacik25179202008-10-29 14:49:05 -04003844 spin_unlock(&space_info->lock);
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01003845 return ret;
Josef Bacik25179202008-10-29 14:49:05 -04003846 }
Chris Mason6324fbf2008-03-24 15:01:59 -04003847
Josef Bacik698d0082012-09-12 14:08:47 -04003848 if (!should_alloc_chunk(extent_root, space_info, force)) {
Josef Bacik25179202008-10-29 14:49:05 -04003849 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04003850 return 0;
3851 } else if (space_info->chunk_alloc) {
3852 wait_for_alloc = 1;
3853 } else {
3854 space_info->chunk_alloc = 1;
Josef Bacik25179202008-10-29 14:49:05 -04003855 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04003856
Josef Bacik25179202008-10-29 14:49:05 -04003857 spin_unlock(&space_info->lock);
3858
Josef Bacik6d741192011-04-11 20:20:11 -04003859 mutex_lock(&fs_info->chunk_mutex);
3860
3861 /*
3862 * The chunk_mutex is held throughout the entirety of a chunk
3863 * allocation, so once we've acquired the chunk_mutex we know that the
3864 * other guy is done and we need to recheck and see if we should
3865 * allocate.
3866 */
3867 if (wait_for_alloc) {
3868 mutex_unlock(&fs_info->chunk_mutex);
3869 wait_for_alloc = 0;
3870 goto again;
3871 }
3872
Josef Bacikc6b305a2012-12-18 09:16:16 -05003873 trans->allocating_chunk = true;
3874
Josef Bacik97e728d2009-04-21 17:40:57 -04003875 /*
Josef Bacik67377732010-09-16 16:19:09 -04003876 * If we have mixed data/metadata chunks we want to make sure we keep
3877 * allocating mixed chunks instead of individual chunks.
3878 */
3879 if (btrfs_mixed_space_info(space_info))
3880 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
3881
3882 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04003883 * if we're doing a data chunk, go ahead and make sure that
3884 * we keep a reasonable number of metadata chunks allocated in the
3885 * FS as well.
3886 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04003887 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04003888 fs_info->data_chunk_allocations++;
3889 if (!(fs_info->data_chunk_allocations %
3890 fs_info->metadata_ratio))
3891 force_metadata_allocation(fs_info);
3892 }
3893
Liu Bo15d1ff82012-03-29 09:57:44 -04003894 /*
3895 * Check if we have enough space in SYSTEM chunk because we may need
3896 * to update devices.
3897 */
3898 check_system_chunk(trans, extent_root, flags);
3899
Yan Zheng2b820322008-11-17 21:11:30 -05003900 ret = btrfs_alloc_chunk(trans, extent_root, flags);
Josef Bacikc6b305a2012-12-18 09:16:16 -05003901 trans->allocating_chunk = false;
Mark Fasheh92b8e8972011-07-12 10:57:59 -07003902
Josef Bacik9ed74f22009-09-11 16:12:44 -04003903 spin_lock(&space_info->lock);
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00003904 if (ret < 0 && ret != -ENOSPC)
3905 goto out;
Chris Masond3977122009-01-05 21:25:51 -05003906 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04003907 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04003908 else
3909 ret = 1;
Josef Bacik6d741192011-04-11 20:20:11 -04003910
Chris Mason0e4f8f82011-04-15 16:05:44 -04003911 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00003912out:
Josef Bacik6d741192011-04-11 20:20:11 -04003913 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003914 spin_unlock(&space_info->lock);
Dan Carpentera25c75d2012-04-18 09:59:29 +03003915 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003916 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04003917}
3918
Josef Bacika80c8dc2012-09-06 16:59:33 -04003919static int can_overcommit(struct btrfs_root *root,
3920 struct btrfs_space_info *space_info, u64 bytes,
Miao Xie08e007d2012-10-16 11:33:38 +00003921 enum btrfs_reserve_flush_enum flush)
Josef Bacika80c8dc2012-09-06 16:59:33 -04003922{
Josef Bacik96f1bb52013-01-30 17:02:51 -05003923 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Josef Bacika80c8dc2012-09-06 16:59:33 -04003924 u64 profile = btrfs_get_alloc_profile(root, 0);
Miao Xie3c76cd82013-04-25 10:12:38 +00003925 u64 space_size;
Josef Bacika80c8dc2012-09-06 16:59:33 -04003926 u64 avail;
3927 u64 used;
3928
3929 used = space_info->bytes_used + space_info->bytes_reserved +
Josef Bacik96f1bb52013-01-30 17:02:51 -05003930 space_info->bytes_pinned + space_info->bytes_readonly;
3931
Josef Bacik96f1bb52013-01-30 17:02:51 -05003932 /*
3933 * We only want to allow over committing if we have lots of actual space
3934 * free, but if we don't have enough space to handle the global reserve
3935 * space then we could end up having a real enospc problem when trying
3936 * to allocate a chunk or some other such important allocation.
3937 */
Miao Xie3c76cd82013-04-25 10:12:38 +00003938 spin_lock(&global_rsv->lock);
3939 space_size = calc_global_rsv_need_space(global_rsv);
3940 spin_unlock(&global_rsv->lock);
3941 if (used + space_size >= space_info->total_bytes)
Josef Bacik96f1bb52013-01-30 17:02:51 -05003942 return 0;
3943
3944 used += space_info->bytes_may_use;
Josef Bacika80c8dc2012-09-06 16:59:33 -04003945
3946 spin_lock(&root->fs_info->free_chunk_lock);
3947 avail = root->fs_info->free_chunk_space;
3948 spin_unlock(&root->fs_info->free_chunk_lock);
3949
3950 /*
3951 * If we have dup, raid1 or raid10 then only half of the free
David Woodhouse53b381b2013-01-29 18:40:14 -05003952 * space is actually useable. For raid56, the space info used
3953 * doesn't include the parity drive, so we don't have to
3954 * change the math
Josef Bacika80c8dc2012-09-06 16:59:33 -04003955 */
3956 if (profile & (BTRFS_BLOCK_GROUP_DUP |
3957 BTRFS_BLOCK_GROUP_RAID1 |
3958 BTRFS_BLOCK_GROUP_RAID10))
3959 avail >>= 1;
3960
3961 /*
Miao Xie561c2942012-10-16 11:32:18 +00003962 * If we aren't flushing all things, let us overcommit up to
3963 * 1/2th of the space. If we can flush, don't let us overcommit
3964 * too much, let it overcommit up to 1/8 of the space.
Josef Bacika80c8dc2012-09-06 16:59:33 -04003965 */
Miao Xie08e007d2012-10-16 11:33:38 +00003966 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacik14575ae2013-09-17 10:48:00 -04003967 avail >>= 3;
Josef Bacika80c8dc2012-09-06 16:59:33 -04003968 else
Josef Bacik14575ae2013-09-17 10:48:00 -04003969 avail >>= 1;
Josef Bacika80c8dc2012-09-06 16:59:33 -04003970
Josef Bacik14575ae2013-09-17 10:48:00 -04003971 if (used + bytes < space_info->total_bytes + avail)
Josef Bacika80c8dc2012-09-06 16:59:33 -04003972 return 1;
3973 return 0;
3974}
3975
Eric Sandeen48a3b632013-04-25 20:41:01 +00003976static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root,
Miao Xie6c255e62014-03-06 13:55:01 +08003977 unsigned long nr_pages, int nr_items)
Miao Xieda633a42012-12-20 11:19:09 +00003978{
3979 struct super_block *sb = root->fs_info->sb;
Miao Xieda633a42012-12-20 11:19:09 +00003980
Josef Bacik925a6ef2013-06-20 12:31:27 -04003981 if (down_read_trylock(&sb->s_umount)) {
3982 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
3983 up_read(&sb->s_umount);
3984 } else {
Miao Xieda633a42012-12-20 11:19:09 +00003985 /*
3986 * We needn't worry the filesystem going from r/w to r/o though
3987 * we don't acquire ->s_umount mutex, because the filesystem
3988 * should guarantee the delalloc inodes list be empty after
3989 * the filesystem is readonly(all dirty pages are written to
3990 * the disk).
3991 */
Miao Xie6c255e62014-03-06 13:55:01 +08003992 btrfs_start_delalloc_roots(root->fs_info, 0, nr_items);
Josef Bacik98ad69c2013-04-04 11:55:49 -04003993 if (!current->journal_info)
Miao Xie6c255e62014-03-06 13:55:01 +08003994 btrfs_wait_ordered_roots(root->fs_info, nr_items);
Miao Xieda633a42012-12-20 11:19:09 +00003995 }
3996}
3997
Miao Xie18cd8ea2013-11-04 23:13:22 +08003998static inline int calc_reclaim_items_nr(struct btrfs_root *root, u64 to_reclaim)
3999{
4000 u64 bytes;
4001 int nr;
4002
4003 bytes = btrfs_calc_trans_metadata_size(root, 1);
4004 nr = (int)div64_u64(to_reclaim, bytes);
4005 if (!nr)
4006 nr = 1;
4007 return nr;
4008}
4009
Miao Xiec61a16a2013-11-04 23:13:23 +08004010#define EXTENT_SIZE_PER_ITEM (256 * 1024)
4011
Yan, Zheng5da9d012010-05-16 10:46:25 -04004012/*
4013 * shrink metadata reservation for delalloc
4014 */
Josef Bacikf4c738c2012-07-02 17:10:51 -04004015static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig,
4016 bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04004017{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004018 struct btrfs_block_rsv *block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004019 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04004020 struct btrfs_trans_handle *trans;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004021 u64 delalloc_bytes;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004022 u64 max_reclaim;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004023 long time_left;
Miao Xied3ee29e2013-11-04 23:13:20 +08004024 unsigned long nr_pages;
4025 int loops;
Miao Xieb0244192013-11-04 23:13:25 +08004026 int items;
Miao Xie08e007d2012-10-16 11:33:38 +00004027 enum btrfs_reserve_flush_enum flush;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004028
Miao Xiec61a16a2013-11-04 23:13:23 +08004029 /* Calc the number of the pages we need flush for space reservation */
Miao Xieb0244192013-11-04 23:13:25 +08004030 items = calc_reclaim_items_nr(root, to_reclaim);
4031 to_reclaim = items * EXTENT_SIZE_PER_ITEM;
Miao Xiec61a16a2013-11-04 23:13:23 +08004032
Josef Bacik663350a2011-11-03 22:54:25 -04004033 trans = (struct btrfs_trans_handle *)current->journal_info;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004034 block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004035 space_info = block_rsv->space_info;
Chris Masonbf9022e2010-10-26 13:40:45 -04004036
Miao Xie963d6782013-01-29 10:10:51 +00004037 delalloc_bytes = percpu_counter_sum_positive(
4038 &root->fs_info->delalloc_bytes);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004039 if (delalloc_bytes == 0) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004040 if (trans)
Josef Bacikf4c738c2012-07-02 17:10:51 -04004041 return;
Miao Xie38c135a2013-11-04 23:13:21 +08004042 if (wait_ordered)
Miao Xieb0244192013-11-04 23:13:25 +08004043 btrfs_wait_ordered_roots(root->fs_info, items);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004044 return;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004045 }
4046
Miao Xied3ee29e2013-11-04 23:13:20 +08004047 loops = 0;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004048 while (delalloc_bytes && loops < 3) {
4049 max_reclaim = min(delalloc_bytes, to_reclaim);
4050 nr_pages = max_reclaim >> PAGE_CACHE_SHIFT;
Miao Xie6c255e62014-03-06 13:55:01 +08004051 btrfs_writeback_inodes_sb_nr(root, nr_pages, items);
Josef Bacikdea31f52012-09-06 16:47:00 -04004052 /*
4053 * We need to wait for the async pages to actually start before
4054 * we do anything.
4055 */
Miao Xie9f3a0742013-11-04 23:13:24 +08004056 max_reclaim = atomic_read(&root->fs_info->async_delalloc_pages);
4057 if (!max_reclaim)
4058 goto skip_async;
Josef Bacikdea31f52012-09-06 16:47:00 -04004059
Miao Xie9f3a0742013-11-04 23:13:24 +08004060 if (max_reclaim <= nr_pages)
4061 max_reclaim = 0;
4062 else
4063 max_reclaim -= nr_pages;
4064
4065 wait_event(root->fs_info->async_submit_wait,
4066 atomic_read(&root->fs_info->async_delalloc_pages) <=
4067 (int)max_reclaim);
4068skip_async:
Miao Xie08e007d2012-10-16 11:33:38 +00004069 if (!trans)
4070 flush = BTRFS_RESERVE_FLUSH_ALL;
4071 else
4072 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacik0019f102010-10-15 15:18:40 -04004073 spin_lock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00004074 if (can_overcommit(root, space_info, orig, flush)) {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004075 spin_unlock(&space_info->lock);
4076 break;
4077 }
Josef Bacik0019f102010-10-15 15:18:40 -04004078 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004079
Chris Mason36e39c42011-03-12 07:08:42 -05004080 loops++;
Josef Bacikf104d042011-10-14 13:56:58 -04004081 if (wait_ordered && !trans) {
Miao Xieb0244192013-11-04 23:13:25 +08004082 btrfs_wait_ordered_roots(root->fs_info, items);
Josef Bacikf104d042011-10-14 13:56:58 -04004083 } else {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004084 time_left = schedule_timeout_killable(1);
Josef Bacikf104d042011-10-14 13:56:58 -04004085 if (time_left)
4086 break;
4087 }
Miao Xie963d6782013-01-29 10:10:51 +00004088 delalloc_bytes = percpu_counter_sum_positive(
4089 &root->fs_info->delalloc_bytes);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004090 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04004091}
4092
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004093/**
Josef Bacik663350a2011-11-03 22:54:25 -04004094 * maybe_commit_transaction - possibly commit the transaction if its ok to
4095 * @root - the root we're allocating for
4096 * @bytes - the number of bytes we want to reserve
4097 * @force - force the commit
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004098 *
Josef Bacik663350a2011-11-03 22:54:25 -04004099 * This will check to make sure that committing the transaction will actually
4100 * get us somewhere and then commit the transaction if it does. Otherwise it
4101 * will return -ENOSPC.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004102 */
Josef Bacik663350a2011-11-03 22:54:25 -04004103static int may_commit_transaction(struct btrfs_root *root,
4104 struct btrfs_space_info *space_info,
4105 u64 bytes, int force)
4106{
4107 struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv;
4108 struct btrfs_trans_handle *trans;
4109
4110 trans = (struct btrfs_trans_handle *)current->journal_info;
4111 if (trans)
4112 return -EAGAIN;
4113
4114 if (force)
4115 goto commit;
4116
4117 /* See if there is enough pinned space to make this reservation */
Josef Bacikb150a4f2013-06-19 15:00:04 -04004118 if (percpu_counter_compare(&space_info->total_bytes_pinned,
Miao Xie0424c542014-03-06 13:54:59 +08004119 bytes) >= 0)
Josef Bacik663350a2011-11-03 22:54:25 -04004120 goto commit;
Josef Bacik663350a2011-11-03 22:54:25 -04004121
4122 /*
4123 * See if there is some space in the delayed insertion reservation for
4124 * this reservation.
4125 */
4126 if (space_info != delayed_rsv->space_info)
4127 return -ENOSPC;
4128
4129 spin_lock(&delayed_rsv->lock);
Josef Bacikb150a4f2013-06-19 15:00:04 -04004130 if (percpu_counter_compare(&space_info->total_bytes_pinned,
4131 bytes - delayed_rsv->size) >= 0) {
Josef Bacik663350a2011-11-03 22:54:25 -04004132 spin_unlock(&delayed_rsv->lock);
4133 return -ENOSPC;
4134 }
4135 spin_unlock(&delayed_rsv->lock);
4136
4137commit:
4138 trans = btrfs_join_transaction(root);
4139 if (IS_ERR(trans))
4140 return -ENOSPC;
4141
4142 return btrfs_commit_transaction(trans, root);
4143}
4144
Josef Bacik96c3f432012-06-21 14:05:49 -04004145enum flush_state {
Josef Bacik67b0fd62012-09-24 13:42:00 -04004146 FLUSH_DELAYED_ITEMS_NR = 1,
4147 FLUSH_DELAYED_ITEMS = 2,
4148 FLUSH_DELALLOC = 3,
4149 FLUSH_DELALLOC_WAIT = 4,
Josef Bacikea658ba2012-09-11 16:57:25 -04004150 ALLOC_CHUNK = 5,
4151 COMMIT_TRANS = 6,
Josef Bacik96c3f432012-06-21 14:05:49 -04004152};
4153
4154static int flush_space(struct btrfs_root *root,
4155 struct btrfs_space_info *space_info, u64 num_bytes,
4156 u64 orig_bytes, int state)
4157{
4158 struct btrfs_trans_handle *trans;
4159 int nr;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004160 int ret = 0;
Josef Bacik96c3f432012-06-21 14:05:49 -04004161
4162 switch (state) {
Josef Bacik96c3f432012-06-21 14:05:49 -04004163 case FLUSH_DELAYED_ITEMS_NR:
4164 case FLUSH_DELAYED_ITEMS:
Miao Xie18cd8ea2013-11-04 23:13:22 +08004165 if (state == FLUSH_DELAYED_ITEMS_NR)
4166 nr = calc_reclaim_items_nr(root, num_bytes) * 2;
4167 else
Josef Bacik96c3f432012-06-21 14:05:49 -04004168 nr = -1;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004169
Josef Bacik96c3f432012-06-21 14:05:49 -04004170 trans = btrfs_join_transaction(root);
4171 if (IS_ERR(trans)) {
4172 ret = PTR_ERR(trans);
4173 break;
4174 }
4175 ret = btrfs_run_delayed_items_nr(trans, root, nr);
4176 btrfs_end_transaction(trans, root);
4177 break;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004178 case FLUSH_DELALLOC:
4179 case FLUSH_DELALLOC_WAIT:
Miao Xie24af7dd2014-03-06 13:55:00 +08004180 shrink_delalloc(root, num_bytes * 2, orig_bytes,
Josef Bacik67b0fd62012-09-24 13:42:00 -04004181 state == FLUSH_DELALLOC_WAIT);
4182 break;
Josef Bacikea658ba2012-09-11 16:57:25 -04004183 case ALLOC_CHUNK:
4184 trans = btrfs_join_transaction(root);
4185 if (IS_ERR(trans)) {
4186 ret = PTR_ERR(trans);
4187 break;
4188 }
4189 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Josef Bacikea658ba2012-09-11 16:57:25 -04004190 btrfs_get_alloc_profile(root, 0),
4191 CHUNK_ALLOC_NO_FORCE);
4192 btrfs_end_transaction(trans, root);
4193 if (ret == -ENOSPC)
4194 ret = 0;
4195 break;
Josef Bacik96c3f432012-06-21 14:05:49 -04004196 case COMMIT_TRANS:
4197 ret = may_commit_transaction(root, space_info, orig_bytes, 0);
4198 break;
4199 default:
4200 ret = -ENOSPC;
4201 break;
4202 }
4203
4204 return ret;
4205}
Miao Xie21c7e752014-05-13 17:29:04 -07004206
4207static inline u64
4208btrfs_calc_reclaim_metadata_size(struct btrfs_root *root,
4209 struct btrfs_space_info *space_info)
4210{
4211 u64 used;
4212 u64 expected;
4213 u64 to_reclaim;
4214
4215 to_reclaim = min_t(u64, num_online_cpus() * 1024 * 1024,
4216 16 * 1024 * 1024);
4217 spin_lock(&space_info->lock);
4218 if (can_overcommit(root, space_info, to_reclaim,
4219 BTRFS_RESERVE_FLUSH_ALL)) {
4220 to_reclaim = 0;
4221 goto out;
4222 }
4223
4224 used = space_info->bytes_used + space_info->bytes_reserved +
4225 space_info->bytes_pinned + space_info->bytes_readonly +
4226 space_info->bytes_may_use;
4227 if (can_overcommit(root, space_info, 1024 * 1024,
4228 BTRFS_RESERVE_FLUSH_ALL))
4229 expected = div_factor_fine(space_info->total_bytes, 95);
4230 else
4231 expected = div_factor_fine(space_info->total_bytes, 90);
4232
4233 if (used > expected)
4234 to_reclaim = used - expected;
4235 else
4236 to_reclaim = 0;
4237 to_reclaim = min(to_reclaim, space_info->bytes_may_use +
4238 space_info->bytes_reserved);
4239out:
4240 spin_unlock(&space_info->lock);
4241
4242 return to_reclaim;
4243}
4244
4245static inline int need_do_async_reclaim(struct btrfs_space_info *space_info,
4246 struct btrfs_fs_info *fs_info, u64 used)
4247{
4248 return (used >= div_factor_fine(space_info->total_bytes, 98) &&
4249 !btrfs_fs_closing(fs_info) &&
4250 !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state));
4251}
4252
4253static int btrfs_need_do_async_reclaim(struct btrfs_space_info *space_info,
4254 struct btrfs_fs_info *fs_info)
4255{
4256 u64 used;
4257
4258 spin_lock(&space_info->lock);
4259 used = space_info->bytes_used + space_info->bytes_reserved +
4260 space_info->bytes_pinned + space_info->bytes_readonly +
4261 space_info->bytes_may_use;
4262 if (need_do_async_reclaim(space_info, fs_info, used)) {
4263 spin_unlock(&space_info->lock);
4264 return 1;
4265 }
4266 spin_unlock(&space_info->lock);
4267
4268 return 0;
4269}
4270
4271static void btrfs_async_reclaim_metadata_space(struct work_struct *work)
4272{
4273 struct btrfs_fs_info *fs_info;
4274 struct btrfs_space_info *space_info;
4275 u64 to_reclaim;
4276 int flush_state;
4277
4278 fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work);
4279 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4280
4281 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info->fs_root,
4282 space_info);
4283 if (!to_reclaim)
4284 return;
4285
4286 flush_state = FLUSH_DELAYED_ITEMS_NR;
4287 do {
4288 flush_space(fs_info->fs_root, space_info, to_reclaim,
4289 to_reclaim, flush_state);
4290 flush_state++;
4291 if (!btrfs_need_do_async_reclaim(space_info, fs_info))
4292 return;
4293 } while (flush_state <= COMMIT_TRANS);
4294
4295 if (btrfs_need_do_async_reclaim(space_info, fs_info))
4296 queue_work(system_unbound_wq, work);
4297}
4298
4299void btrfs_init_async_reclaim_work(struct work_struct *work)
4300{
4301 INIT_WORK(work, btrfs_async_reclaim_metadata_space);
4302}
4303
Josef Bacik663350a2011-11-03 22:54:25 -04004304/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004305 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
4306 * @root - the root we're allocating for
4307 * @block_rsv - the block_rsv we're allocating for
4308 * @orig_bytes - the number of bytes we want
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04004309 * @flush - whether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004310 *
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004311 * This will reserve orgi_bytes number of bytes from the space info associated
4312 * with the block_rsv. If there is not enough space it will make an attempt to
4313 * flush out space to make room. It will do this by flushing delalloc if
4314 * possible or committing the transaction. If flush is 0 then no attempts to
4315 * regain reservations will be made and this will fail if there is not enough
4316 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004317 */
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004318static int reserve_metadata_bytes(struct btrfs_root *root,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004319 struct btrfs_block_rsv *block_rsv,
Miao Xie08e007d2012-10-16 11:33:38 +00004320 u64 orig_bytes,
4321 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004322{
4323 struct btrfs_space_info *space_info = block_rsv->space_info;
Josef Bacik2bf64752011-09-26 17:12:22 -04004324 u64 used;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004325 u64 num_bytes = orig_bytes;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004326 int flush_state = FLUSH_DELAYED_ITEMS_NR;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004327 int ret = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004328 bool flushing = false;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004329
4330again:
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004331 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004332 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004333 /*
Miao Xie08e007d2012-10-16 11:33:38 +00004334 * We only want to wait if somebody other than us is flushing and we
4335 * are actually allowed to flush all things.
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004336 */
Miao Xie08e007d2012-10-16 11:33:38 +00004337 while (flush == BTRFS_RESERVE_FLUSH_ALL && !flushing &&
4338 space_info->flush) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004339 spin_unlock(&space_info->lock);
4340 /*
4341 * If we have a trans handle we can't wait because the flusher
4342 * may have to commit the transaction, which would mean we would
4343 * deadlock since we are waiting for the flusher to finish, but
4344 * hold the current transaction open.
4345 */
Josef Bacik663350a2011-11-03 22:54:25 -04004346 if (current->journal_info)
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004347 return -EAGAIN;
Arne Jansenb9688bb2012-04-18 10:27:16 +02004348 ret = wait_event_killable(space_info->wait, !space_info->flush);
4349 /* Must have been killed, return */
4350 if (ret)
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004351 return -EINTR;
4352
4353 spin_lock(&space_info->lock);
4354 }
4355
4356 ret = -ENOSPC;
Josef Bacik2bf64752011-09-26 17:12:22 -04004357 used = space_info->bytes_used + space_info->bytes_reserved +
4358 space_info->bytes_pinned + space_info->bytes_readonly +
4359 space_info->bytes_may_use;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004360
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004361 /*
4362 * The idea here is that we've not already over-reserved the block group
4363 * then we can go ahead and save our reservation first and then start
4364 * flushing if we need to. Otherwise if we've already overcommitted
4365 * lets start flushing stuff first and then come back and try to make
4366 * our reservation.
4367 */
Josef Bacik2bf64752011-09-26 17:12:22 -04004368 if (used <= space_info->total_bytes) {
4369 if (used + orig_bytes <= space_info->total_bytes) {
Josef Bacikfb25e912011-07-26 17:00:46 -04004370 space_info->bytes_may_use += orig_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004371 trace_btrfs_space_reservation(root->fs_info,
Liu Bo2bcc0322012-03-29 09:57:44 -04004372 "space_info", space_info->flags, orig_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004373 ret = 0;
4374 } else {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004375 /*
4376 * Ok set num_bytes to orig_bytes since we aren't
4377 * overocmmitted, this way we only try and reclaim what
4378 * we need.
4379 */
4380 num_bytes = orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004381 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004382 } else {
4383 /*
4384 * Ok we're over committed, set num_bytes to the overcommitted
4385 * amount plus the amount of bytes that we need for this
4386 * reservation.
4387 */
Josef Bacik2bf64752011-09-26 17:12:22 -04004388 num_bytes = used - space_info->total_bytes +
Josef Bacik96c3f432012-06-21 14:05:49 -04004389 (orig_bytes * 2);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004390 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004391
Josef Bacik44734ed2012-09-28 16:04:19 -04004392 if (ret && can_overcommit(root, space_info, orig_bytes, flush)) {
4393 space_info->bytes_may_use += orig_bytes;
4394 trace_btrfs_space_reservation(root->fs_info, "space_info",
4395 space_info->flags, orig_bytes,
4396 1);
4397 ret = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04004398 }
4399
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004400 /*
4401 * Couldn't make our reservation, save our place so while we're trying
4402 * to reclaim space we can actually use it instead of somebody else
4403 * stealing it from us.
Miao Xie08e007d2012-10-16 11:33:38 +00004404 *
4405 * We make the other tasks wait for the flush only when we can flush
4406 * all things.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004407 */
Josef Bacik72bcd992012-12-18 15:16:34 -05004408 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004409 flushing = true;
4410 space_info->flush = 1;
Miao Xie21c7e752014-05-13 17:29:04 -07004411 } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
4412 used += orig_bytes;
4413 if (need_do_async_reclaim(space_info, root->fs_info, used) &&
4414 !work_busy(&root->fs_info->async_reclaim_work))
4415 queue_work(system_unbound_wq,
4416 &root->fs_info->async_reclaim_work);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004417 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004418 spin_unlock(&space_info->lock);
4419
Miao Xie08e007d2012-10-16 11:33:38 +00004420 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004421 goto out;
4422
Josef Bacik96c3f432012-06-21 14:05:49 -04004423 ret = flush_space(root, space_info, num_bytes, orig_bytes,
4424 flush_state);
4425 flush_state++;
Miao Xie08e007d2012-10-16 11:33:38 +00004426
4427 /*
4428 * If we are FLUSH_LIMIT, we can not flush delalloc, or the deadlock
4429 * would happen. So skip delalloc flush.
4430 */
4431 if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4432 (flush_state == FLUSH_DELALLOC ||
4433 flush_state == FLUSH_DELALLOC_WAIT))
4434 flush_state = ALLOC_CHUNK;
4435
Josef Bacik96c3f432012-06-21 14:05:49 -04004436 if (!ret)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004437 goto again;
Miao Xie08e007d2012-10-16 11:33:38 +00004438 else if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4439 flush_state < COMMIT_TRANS)
4440 goto again;
4441 else if (flush == BTRFS_RESERVE_FLUSH_ALL &&
4442 flush_state <= COMMIT_TRANS)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004443 goto again;
4444
4445out:
Josef Bacik5d803662013-02-07 16:06:02 -05004446 if (ret == -ENOSPC &&
4447 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
4448 struct btrfs_block_rsv *global_rsv =
4449 &root->fs_info->global_block_rsv;
4450
4451 if (block_rsv != global_rsv &&
4452 !block_rsv_use_bytes(global_rsv, orig_bytes))
4453 ret = 0;
4454 }
Jeff Mahoneycab45e22013-10-16 16:27:01 -04004455 if (ret == -ENOSPC)
4456 trace_btrfs_space_reservation(root->fs_info,
4457 "space_info:enospc",
4458 space_info->flags, orig_bytes, 1);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004459 if (flushing) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004460 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004461 space_info->flush = 0;
4462 wake_up_all(&space_info->wait);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004463 spin_unlock(&space_info->lock);
4464 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004465 return ret;
4466}
4467
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004468static struct btrfs_block_rsv *get_block_rsv(
4469 const struct btrfs_trans_handle *trans,
4470 const struct btrfs_root *root)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004471{
Josef Bacik4c13d752011-08-30 11:31:29 -04004472 struct btrfs_block_rsv *block_rsv = NULL;
4473
Miao Xie27cdeb72014-04-02 19:51:05 +08004474 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Josef Bacik0e721102012-06-26 16:13:18 -04004475 block_rsv = trans->block_rsv;
4476
4477 if (root == root->fs_info->csum_root && trans->adding_csums)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004478 block_rsv = trans->block_rsv;
Josef Bacik4c13d752011-08-30 11:31:29 -04004479
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004480 if (root == root->fs_info->uuid_root)
4481 block_rsv = trans->block_rsv;
4482
Josef Bacik4c13d752011-08-30 11:31:29 -04004483 if (!block_rsv)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004484 block_rsv = root->block_rsv;
4485
4486 if (!block_rsv)
4487 block_rsv = &root->fs_info->empty_block_rsv;
4488
4489 return block_rsv;
4490}
4491
4492static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
4493 u64 num_bytes)
4494{
4495 int ret = -ENOSPC;
4496 spin_lock(&block_rsv->lock);
4497 if (block_rsv->reserved >= num_bytes) {
4498 block_rsv->reserved -= num_bytes;
4499 if (block_rsv->reserved < block_rsv->size)
4500 block_rsv->full = 0;
4501 ret = 0;
4502 }
4503 spin_unlock(&block_rsv->lock);
4504 return ret;
4505}
4506
4507static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
4508 u64 num_bytes, int update_size)
4509{
4510 spin_lock(&block_rsv->lock);
4511 block_rsv->reserved += num_bytes;
4512 if (update_size)
4513 block_rsv->size += num_bytes;
4514 else if (block_rsv->reserved >= block_rsv->size)
4515 block_rsv->full = 1;
4516 spin_unlock(&block_rsv->lock);
4517}
4518
Josef Bacikd52be812013-05-29 14:54:47 -04004519int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
4520 struct btrfs_block_rsv *dest, u64 num_bytes,
4521 int min_factor)
4522{
4523 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
4524 u64 min_bytes;
4525
4526 if (global_rsv->space_info != dest->space_info)
4527 return -ENOSPC;
4528
4529 spin_lock(&global_rsv->lock);
4530 min_bytes = div_factor(global_rsv->size, min_factor);
4531 if (global_rsv->reserved < min_bytes + num_bytes) {
4532 spin_unlock(&global_rsv->lock);
4533 return -ENOSPC;
4534 }
4535 global_rsv->reserved -= num_bytes;
4536 if (global_rsv->reserved < global_rsv->size)
4537 global_rsv->full = 0;
4538 spin_unlock(&global_rsv->lock);
4539
4540 block_rsv_add_bytes(dest, num_bytes, 1);
4541 return 0;
4542}
4543
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004544static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
4545 struct btrfs_block_rsv *block_rsv,
David Sterba62a45b62011-04-20 15:52:26 +02004546 struct btrfs_block_rsv *dest, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004547{
4548 struct btrfs_space_info *space_info = block_rsv->space_info;
4549
4550 spin_lock(&block_rsv->lock);
4551 if (num_bytes == (u64)-1)
4552 num_bytes = block_rsv->size;
4553 block_rsv->size -= num_bytes;
4554 if (block_rsv->reserved >= block_rsv->size) {
4555 num_bytes = block_rsv->reserved - block_rsv->size;
4556 block_rsv->reserved = block_rsv->size;
4557 block_rsv->full = 1;
4558 } else {
4559 num_bytes = 0;
4560 }
4561 spin_unlock(&block_rsv->lock);
4562
4563 if (num_bytes > 0) {
4564 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00004565 spin_lock(&dest->lock);
4566 if (!dest->full) {
4567 u64 bytes_to_add;
4568
4569 bytes_to_add = dest->size - dest->reserved;
4570 bytes_to_add = min(num_bytes, bytes_to_add);
4571 dest->reserved += bytes_to_add;
4572 if (dest->reserved >= dest->size)
4573 dest->full = 1;
4574 num_bytes -= bytes_to_add;
4575 }
4576 spin_unlock(&dest->lock);
4577 }
4578 if (num_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04004579 spin_lock(&space_info->lock);
Josef Bacikfb25e912011-07-26 17:00:46 -04004580 space_info->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004581 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004582 space_info->flags, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004583 spin_unlock(&space_info->lock);
4584 }
4585 }
4586}
4587
4588static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src,
4589 struct btrfs_block_rsv *dst, u64 num_bytes)
4590{
4591 int ret;
4592
4593 ret = block_rsv_use_bytes(src, num_bytes);
4594 if (ret)
4595 return ret;
4596
4597 block_rsv_add_bytes(dst, num_bytes, 1);
4598 return 0;
4599}
4600
Miao Xie66d8f3d2012-09-06 04:02:28 -06004601void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004602{
4603 memset(rsv, 0, sizeof(*rsv));
4604 spin_lock_init(&rsv->lock);
Miao Xie66d8f3d2012-09-06 04:02:28 -06004605 rsv->type = type;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004606}
4607
Miao Xie66d8f3d2012-09-06 04:02:28 -06004608struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root,
4609 unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004610{
4611 struct btrfs_block_rsv *block_rsv;
4612 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004613
4614 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
4615 if (!block_rsv)
4616 return NULL;
4617
Miao Xie66d8f3d2012-09-06 04:02:28 -06004618 btrfs_init_block_rsv(block_rsv, type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004619 block_rsv->space_info = __find_space_info(fs_info,
4620 BTRFS_BLOCK_GROUP_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004621 return block_rsv;
4622}
4623
4624void btrfs_free_block_rsv(struct btrfs_root *root,
4625 struct btrfs_block_rsv *rsv)
4626{
Josef Bacik2aaa6652012-08-29 14:27:18 -04004627 if (!rsv)
4628 return;
Josef Bacikdabdb642011-08-08 12:50:18 -04004629 btrfs_block_rsv_release(root, rsv, (u64)-1);
4630 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004631}
4632
Miao Xie08e007d2012-10-16 11:33:38 +00004633int btrfs_block_rsv_add(struct btrfs_root *root,
4634 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
4635 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004636{
4637 int ret;
4638
4639 if (num_bytes == 0)
4640 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004641
Miao Xie61b520a2011-11-10 20:45:05 -05004642 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004643 if (!ret) {
4644 block_rsv_add_bytes(block_rsv, num_bytes, 1);
4645 return 0;
4646 }
4647
Yan, Zhengf0486c62010-05-16 10:46:25 -04004648 return ret;
4649}
4650
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004651int btrfs_block_rsv_check(struct btrfs_root *root,
Josef Bacik36ba0222011-10-18 12:15:48 -04004652 struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004653{
4654 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004655 int ret = -ENOSPC;
4656
4657 if (!block_rsv)
4658 return 0;
4659
4660 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04004661 num_bytes = div_factor(block_rsv->size, min_factor);
4662 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004663 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004664 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004665
Josef Bacik36ba0222011-10-18 12:15:48 -04004666 return ret;
4667}
4668
Miao Xie08e007d2012-10-16 11:33:38 +00004669int btrfs_block_rsv_refill(struct btrfs_root *root,
4670 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
4671 enum btrfs_reserve_flush_enum flush)
Josef Bacik36ba0222011-10-18 12:15:48 -04004672{
4673 u64 num_bytes = 0;
4674 int ret = -ENOSPC;
4675
4676 if (!block_rsv)
4677 return 0;
4678
4679 spin_lock(&block_rsv->lock);
4680 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04004681 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004682 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04004683 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04004684 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004685 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04004686
Yan, Zhengf0486c62010-05-16 10:46:25 -04004687 if (!ret)
4688 return 0;
4689
Miao Xieaa38a712011-11-18 17:43:00 +08004690 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Josef Bacikdabdb642011-08-08 12:50:18 -04004691 if (!ret) {
4692 block_rsv_add_bytes(block_rsv, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004693 return 0;
4694 }
4695
Josef Bacik13553e52011-08-08 13:33:21 -04004696 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004697}
4698
4699int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv,
4700 struct btrfs_block_rsv *dst_rsv,
4701 u64 num_bytes)
4702{
4703 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
4704}
4705
4706void btrfs_block_rsv_release(struct btrfs_root *root,
4707 struct btrfs_block_rsv *block_rsv,
4708 u64 num_bytes)
4709{
4710 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Liu Bo17504582013-12-29 21:44:50 +08004711 if (global_rsv == block_rsv ||
Yan, Zhengf0486c62010-05-16 10:46:25 -04004712 block_rsv->space_info != global_rsv->space_info)
4713 global_rsv = NULL;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004714 block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv,
4715 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004716}
4717
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004718/*
4719 * helper to calculate size of global block reservation.
4720 * the desired value is sum of space used by extent tree,
4721 * checksum tree and root tree
4722 */
4723static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info)
4724{
4725 struct btrfs_space_info *sinfo;
4726 u64 num_bytes;
4727 u64 meta_used;
4728 u64 data_used;
David Sterba6c417612011-04-13 15:41:04 +02004729 int csum_size = btrfs_super_csum_size(fs_info->super_copy);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004730
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004731 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA);
4732 spin_lock(&sinfo->lock);
4733 data_used = sinfo->bytes_used;
4734 spin_unlock(&sinfo->lock);
4735
4736 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4737 spin_lock(&sinfo->lock);
Josef Bacik6d487552010-10-15 15:13:32 -04004738 if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA)
4739 data_used = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004740 meta_used = sinfo->bytes_used;
4741 spin_unlock(&sinfo->lock);
4742
4743 num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) *
4744 csum_size * 2;
4745 num_bytes += div64_u64(data_used + meta_used, 50);
4746
4747 if (num_bytes * 3 > meta_used)
Chris Mason8e62c2d2012-04-12 13:46:48 -04004748 num_bytes = div64_u64(meta_used, 3);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004749
4750 return ALIGN(num_bytes, fs_info->extent_root->leafsize << 10);
4751}
4752
4753static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
4754{
4755 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
4756 struct btrfs_space_info *sinfo = block_rsv->space_info;
4757 u64 num_bytes;
4758
4759 num_bytes = calc_global_metadata_size(fs_info);
4760
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004761 spin_lock(&sinfo->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04004762 spin_lock(&block_rsv->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004763
Josef Bacikfdf30d12013-03-26 15:31:45 -04004764 block_rsv->size = min_t(u64, num_bytes, 512 * 1024 * 1024);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004765
4766 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
Josef Bacik6d487552010-10-15 15:13:32 -04004767 sinfo->bytes_reserved + sinfo->bytes_readonly +
4768 sinfo->bytes_may_use;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004769
4770 if (sinfo->total_bytes > num_bytes) {
4771 num_bytes = sinfo->total_bytes - num_bytes;
4772 block_rsv->reserved += num_bytes;
Josef Bacikfb25e912011-07-26 17:00:46 -04004773 sinfo->bytes_may_use += num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004774 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004775 sinfo->flags, num_bytes, 1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004776 }
4777
4778 if (block_rsv->reserved >= block_rsv->size) {
4779 num_bytes = block_rsv->reserved - block_rsv->size;
Josef Bacikfb25e912011-07-26 17:00:46 -04004780 sinfo->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004781 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004782 sinfo->flags, num_bytes, 0);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004783 block_rsv->reserved = block_rsv->size;
4784 block_rsv->full = 1;
4785 }
David Sterba182608c2011-05-05 13:13:16 +02004786
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004787 spin_unlock(&block_rsv->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04004788 spin_unlock(&sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004789}
4790
Yan, Zhengf0486c62010-05-16 10:46:25 -04004791static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
4792{
4793 struct btrfs_space_info *space_info;
4794
4795 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4796 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004797
4798 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004799 fs_info->global_block_rsv.space_info = space_info;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004800 fs_info->delalloc_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004801 fs_info->trans_block_rsv.space_info = space_info;
4802 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04004803 fs_info->delayed_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004804
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004805 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
4806 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
4807 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
4808 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Stefan Behrens3a6cad92013-05-16 14:48:19 +00004809 if (fs_info->quota_root)
4810 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004811 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004812
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004813 update_global_block_rsv(fs_info);
4814}
4815
4816static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
4817{
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004818 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
4819 (u64)-1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004820 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
4821 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
4822 WARN_ON(fs_info->trans_block_rsv.size > 0);
4823 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
4824 WARN_ON(fs_info->chunk_block_rsv.size > 0);
4825 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04004826 WARN_ON(fs_info->delayed_block_rsv.size > 0);
4827 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04004828}
4829
Yan, Zhenga22285a2010-05-16 10:48:46 -04004830void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
4831 struct btrfs_root *root)
4832{
Josef Bacik0e721102012-06-26 16:13:18 -04004833 if (!trans->block_rsv)
4834 return;
4835
Yan, Zhenga22285a2010-05-16 10:48:46 -04004836 if (!trans->bytes_reserved)
4837 return;
4838
Chris Masone77266e2012-02-24 10:39:05 -05004839 trace_btrfs_space_reservation(root->fs_info, "transaction",
Liu Bo2bcc0322012-03-29 09:57:44 -04004840 trans->transid, trans->bytes_reserved, 0);
Josef Bacikb24e03d2011-10-14 14:40:17 -04004841 btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004842 trans->bytes_reserved = 0;
4843}
4844
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004845/* Can only return 0 or -ENOSPC */
Yan, Zhengd68fc572010-05-16 10:49:58 -04004846int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
4847 struct inode *inode)
4848{
4849 struct btrfs_root *root = BTRFS_I(inode)->root;
4850 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
4851 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
4852
4853 /*
Josef Bacikfcb80c22011-05-03 10:40:22 -04004854 * We need to hold space in order to delete our orphan item once we've
4855 * added it, so this takes the reservation so we can release it later
4856 * when we are truly done with the orphan item.
Yan, Zhengd68fc572010-05-16 10:49:58 -04004857 */
Chris Masonff5714c2011-05-28 07:00:39 -04004858 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004859 trace_btrfs_space_reservation(root->fs_info, "orphan",
4860 btrfs_ino(inode), num_bytes, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04004861 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
4862}
4863
4864void btrfs_orphan_release_metadata(struct inode *inode)
4865{
4866 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonff5714c2011-05-28 07:00:39 -04004867 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004868 trace_btrfs_space_reservation(root->fs_info, "orphan",
4869 btrfs_ino(inode), num_bytes, 0);
Yan, Zhengd68fc572010-05-16 10:49:58 -04004870 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
4871}
4872
Miao Xied5c12072013-02-28 10:04:33 +00004873/*
4874 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
4875 * root: the root of the parent directory
4876 * rsv: block reservation
4877 * items: the number of items that we need do reservation
4878 * qgroup_reserved: used to return the reserved size in qgroup
4879 *
4880 * This function is used to reserve the space for snapshot/subvolume
4881 * creation and deletion. Those operations are different with the
4882 * common file/directory operations, they change two fs/file trees
4883 * and root tree, the number of items that the qgroup reserves is
4884 * different with the free space reservation. So we can not use
4885 * the space reseravtion mechanism in start_transaction().
4886 */
4887int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
4888 struct btrfs_block_rsv *rsv,
4889 int items,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04004890 u64 *qgroup_reserved,
4891 bool use_global_rsv)
Yan, Zhenga22285a2010-05-16 10:48:46 -04004892{
Miao Xied5c12072013-02-28 10:04:33 +00004893 u64 num_bytes;
4894 int ret;
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04004895 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Miao Xied5c12072013-02-28 10:04:33 +00004896
4897 if (root->fs_info->quota_enabled) {
4898 /* One for parent inode, two for dir entries */
4899 num_bytes = 3 * root->leafsize;
4900 ret = btrfs_qgroup_reserve(root, num_bytes);
4901 if (ret)
4902 return ret;
4903 } else {
4904 num_bytes = 0;
4905 }
4906
4907 *qgroup_reserved = num_bytes;
4908
4909 num_bytes = btrfs_calc_trans_metadata_size(root, items);
4910 rsv->space_info = __find_space_info(root->fs_info,
4911 BTRFS_BLOCK_GROUP_METADATA);
4912 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
4913 BTRFS_RESERVE_FLUSH_ALL);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04004914
4915 if (ret == -ENOSPC && use_global_rsv)
4916 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes);
4917
Miao Xied5c12072013-02-28 10:04:33 +00004918 if (ret) {
4919 if (*qgroup_reserved)
4920 btrfs_qgroup_free(root, *qgroup_reserved);
4921 }
4922
4923 return ret;
4924}
4925
4926void btrfs_subvolume_release_metadata(struct btrfs_root *root,
4927 struct btrfs_block_rsv *rsv,
4928 u64 qgroup_reserved)
4929{
4930 btrfs_block_rsv_release(root, rsv, (u64)-1);
4931 if (qgroup_reserved)
4932 btrfs_qgroup_free(root, qgroup_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004933}
4934
Josef Bacik7709cde2011-08-04 10:25:02 -04004935/**
4936 * drop_outstanding_extent - drop an outstanding extent
4937 * @inode: the inode we're dropping the extent for
4938 *
4939 * This is called when we are freeing up an outstanding extent, either called
4940 * after an error or after an extent is written. This will return the number of
4941 * reserved extents that need to be freed. This must be called with
4942 * BTRFS_I(inode)->lock held.
4943 */
Josef Bacik9e0baf62011-07-15 15:16:44 +00004944static unsigned drop_outstanding_extent(struct inode *inode)
4945{
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004946 unsigned drop_inode_space = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004947 unsigned dropped_extents = 0;
4948
Josef Bacik9e0baf62011-07-15 15:16:44 +00004949 BUG_ON(!BTRFS_I(inode)->outstanding_extents);
4950 BTRFS_I(inode)->outstanding_extents--;
4951
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004952 if (BTRFS_I(inode)->outstanding_extents == 0 &&
Josef Bacik72ac3c02012-05-23 14:13:11 -04004953 test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
4954 &BTRFS_I(inode)->runtime_flags))
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004955 drop_inode_space = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004956
Josef Bacik9e0baf62011-07-15 15:16:44 +00004957 /*
4958 * If we have more or the same amount of outsanding extents than we have
4959 * reserved then we need to leave the reserved extents count alone.
4960 */
4961 if (BTRFS_I(inode)->outstanding_extents >=
4962 BTRFS_I(inode)->reserved_extents)
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004963 return drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004964
4965 dropped_extents = BTRFS_I(inode)->reserved_extents -
4966 BTRFS_I(inode)->outstanding_extents;
4967 BTRFS_I(inode)->reserved_extents -= dropped_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004968 return dropped_extents + drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004969}
4970
Josef Bacik7709cde2011-08-04 10:25:02 -04004971/**
4972 * calc_csum_metadata_size - return the amount of metada space that must be
4973 * reserved/free'd for the given bytes.
4974 * @inode: the inode we're manipulating
4975 * @num_bytes: the number of bytes in question
4976 * @reserve: 1 if we are reserving space, 0 if we are freeing space
4977 *
4978 * This adjusts the number of csum_bytes in the inode and then returns the
4979 * correct amount of metadata that must either be reserved or freed. We
4980 * calculate how many checksums we can fit into one leaf and then divide the
4981 * number of bytes that will need to be checksumed by this value to figure out
4982 * how many checksums will be required. If we are adding bytes then the number
4983 * may go up and we will return the number of additional bytes that must be
4984 * reserved. If it is going down we will return the number of bytes that must
4985 * be freed.
4986 *
4987 * This must be called with BTRFS_I(inode)->lock held.
4988 */
4989static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes,
4990 int reserve)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004991{
Josef Bacik7709cde2011-08-04 10:25:02 -04004992 struct btrfs_root *root = BTRFS_I(inode)->root;
4993 u64 csum_size;
4994 int num_csums_per_leaf;
4995 int num_csums;
4996 int old_csums;
4997
4998 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM &&
4999 BTRFS_I(inode)->csum_bytes == 0)
5000 return 0;
5001
5002 old_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize);
5003 if (reserve)
5004 BTRFS_I(inode)->csum_bytes += num_bytes;
5005 else
5006 BTRFS_I(inode)->csum_bytes -= num_bytes;
5007 csum_size = BTRFS_LEAF_DATA_SIZE(root) - sizeof(struct btrfs_item);
5008 num_csums_per_leaf = (int)div64_u64(csum_size,
5009 sizeof(struct btrfs_csum_item) +
5010 sizeof(struct btrfs_disk_key));
5011 num_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize);
5012 num_csums = num_csums + num_csums_per_leaf - 1;
5013 num_csums = num_csums / num_csums_per_leaf;
5014
5015 old_csums = old_csums + num_csums_per_leaf - 1;
5016 old_csums = old_csums / num_csums_per_leaf;
5017
5018 /* No change, no need to reserve more */
5019 if (old_csums == num_csums)
5020 return 0;
5021
5022 if (reserve)
5023 return btrfs_calc_trans_metadata_size(root,
5024 num_csums - old_csums);
5025
5026 return btrfs_calc_trans_metadata_size(root, old_csums - num_csums);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005027}
5028
5029int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
5030{
5031 struct btrfs_root *root = BTRFS_I(inode)->root;
5032 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005033 u64 to_reserve = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05005034 u64 csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005035 unsigned nr_extents = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05005036 int extra_reserve = 0;
Miao Xie08e007d2012-10-16 11:33:38 +00005037 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
Jan Schmidteb6b88d2013-01-27 23:26:00 -07005038 int ret = 0;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005039 bool delalloc_lock = true;
Wang Shilong88e081bf2013-03-01 11:36:01 +00005040 u64 to_free = 0;
5041 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005042
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005043 /* If we are a free space inode we need to not flush since we will be in
5044 * the middle of a transaction commit. We also don't need the delalloc
5045 * mutex since we won't race with anybody. We need this mostly to make
5046 * lockdep shut its filthy mouth.
5047 */
5048 if (btrfs_is_free_space_inode(inode)) {
Miao Xie08e007d2012-10-16 11:33:38 +00005049 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005050 delalloc_lock = false;
5051 }
Josef Bacikc09544e2011-08-30 10:19:10 -04005052
Miao Xie08e007d2012-10-16 11:33:38 +00005053 if (flush != BTRFS_RESERVE_NO_FLUSH &&
5054 btrfs_transaction_in_commit(root->fs_info))
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005055 schedule_timeout(1);
5056
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005057 if (delalloc_lock)
5058 mutex_lock(&BTRFS_I(inode)->delalloc_mutex);
5059
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005060 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005061
Josef Bacik9e0baf62011-07-15 15:16:44 +00005062 spin_lock(&BTRFS_I(inode)->lock);
5063 BTRFS_I(inode)->outstanding_extents++;
Josef Bacik57a45ced2011-01-25 16:30:38 -05005064
Josef Bacik9e0baf62011-07-15 15:16:44 +00005065 if (BTRFS_I(inode)->outstanding_extents >
Josef Bacik660d3f62011-12-09 11:18:51 -05005066 BTRFS_I(inode)->reserved_extents)
Josef Bacik9e0baf62011-07-15 15:16:44 +00005067 nr_extents = BTRFS_I(inode)->outstanding_extents -
5068 BTRFS_I(inode)->reserved_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005069
5070 /*
5071 * Add an item to reserve for updating the inode when we complete the
5072 * delalloc io.
5073 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04005074 if (!test_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5075 &BTRFS_I(inode)->runtime_flags)) {
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005076 nr_extents++;
Josef Bacik660d3f62011-12-09 11:18:51 -05005077 extra_reserve = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005078 }
5079
5080 to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04005081 to_reserve += calc_csum_metadata_size(inode, num_bytes, 1);
Josef Bacik660d3f62011-12-09 11:18:51 -05005082 csum_bytes = BTRFS_I(inode)->csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005083 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05005084
Wang Shilong88e081bf2013-03-01 11:36:01 +00005085 if (root->fs_info->quota_enabled) {
Arne Jansenc5567232011-09-14 15:44:05 +02005086 ret = btrfs_qgroup_reserve(root, num_bytes +
5087 nr_extents * root->leafsize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005088 if (ret)
5089 goto out_fail;
Wang Shilonga9870c02013-03-01 11:33:01 +00005090 }
Arne Jansenc5567232011-09-14 15:44:05 +02005091
Wang Shilong88e081bf2013-03-01 11:36:01 +00005092 ret = reserve_metadata_bytes(root, block_rsv, to_reserve, flush);
5093 if (unlikely(ret)) {
5094 if (root->fs_info->quota_enabled)
Miao Xie4b5829a2012-12-05 10:53:25 +00005095 btrfs_qgroup_free(root, num_bytes +
5096 nr_extents * root->leafsize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005097 goto out_fail;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005098 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005099
Josef Bacik660d3f62011-12-09 11:18:51 -05005100 spin_lock(&BTRFS_I(inode)->lock);
5101 if (extra_reserve) {
Josef Bacik72ac3c02012-05-23 14:13:11 -04005102 set_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5103 &BTRFS_I(inode)->runtime_flags);
Josef Bacik660d3f62011-12-09 11:18:51 -05005104 nr_extents--;
5105 }
5106 BTRFS_I(inode)->reserved_extents += nr_extents;
5107 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005108
5109 if (delalloc_lock)
5110 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
Josef Bacik660d3f62011-12-09 11:18:51 -05005111
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005112 if (to_reserve)
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05305113 trace_btrfs_space_reservation(root->fs_info, "delalloc",
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005114 btrfs_ino(inode), to_reserve, 1);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005115 block_rsv_add_bytes(block_rsv, to_reserve, 1);
5116
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005117 return 0;
Wang Shilong88e081bf2013-03-01 11:36:01 +00005118
5119out_fail:
5120 spin_lock(&BTRFS_I(inode)->lock);
5121 dropped = drop_outstanding_extent(inode);
5122 /*
5123 * If the inodes csum_bytes is the same as the original
5124 * csum_bytes then we know we haven't raced with any free()ers
5125 * so we can just reduce our inodes csum bytes and carry on.
Wang Shilong88e081bf2013-03-01 11:36:01 +00005126 */
Josef Bacikf4881bc2013-03-25 16:03:35 -04005127 if (BTRFS_I(inode)->csum_bytes == csum_bytes) {
Wang Shilong88e081bf2013-03-01 11:36:01 +00005128 calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacikf4881bc2013-03-25 16:03:35 -04005129 } else {
5130 u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes;
5131 u64 bytes;
5132
5133 /*
5134 * This is tricky, but first we need to figure out how much we
5135 * free'd from any free-ers that occured during this
5136 * reservation, so we reset ->csum_bytes to the csum_bytes
5137 * before we dropped our lock, and then call the free for the
5138 * number of bytes that were freed while we were trying our
5139 * reservation.
5140 */
5141 bytes = csum_bytes - BTRFS_I(inode)->csum_bytes;
5142 BTRFS_I(inode)->csum_bytes = csum_bytes;
5143 to_free = calc_csum_metadata_size(inode, bytes, 0);
5144
5145
5146 /*
5147 * Now we need to see how much we would have freed had we not
5148 * been making this reservation and our ->csum_bytes were not
5149 * artificially inflated.
5150 */
5151 BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes;
5152 bytes = csum_bytes - orig_csum_bytes;
5153 bytes = calc_csum_metadata_size(inode, bytes, 0);
5154
5155 /*
5156 * Now reset ->csum_bytes to what it should be. If bytes is
5157 * more than to_free then we would have free'd more space had we
5158 * not had an artificially high ->csum_bytes, so we need to free
5159 * the remainder. If bytes is the same or less then we don't
5160 * need to do anything, the other free-ers did the correct
5161 * thing.
5162 */
5163 BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes;
5164 if (bytes > to_free)
5165 to_free = bytes - to_free;
5166 else
5167 to_free = 0;
5168 }
Wang Shilong88e081bf2013-03-01 11:36:01 +00005169 spin_unlock(&BTRFS_I(inode)->lock);
5170 if (dropped)
5171 to_free += btrfs_calc_trans_metadata_size(root, dropped);
5172
5173 if (to_free) {
5174 btrfs_block_rsv_release(root, block_rsv, to_free);
5175 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5176 btrfs_ino(inode), to_free, 0);
5177 }
5178 if (delalloc_lock)
5179 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
5180 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005181}
5182
Josef Bacik7709cde2011-08-04 10:25:02 -04005183/**
5184 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
5185 * @inode: the inode to release the reservation for
5186 * @num_bytes: the number of bytes we're releasing
5187 *
5188 * This will release the metadata reservation for an inode. This can be called
5189 * once we complete IO for a given set of bytes to release their metadata
5190 * reservations.
5191 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005192void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
5193{
5194 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005195 u64 to_free = 0;
5196 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005197
5198 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik7709cde2011-08-04 10:25:02 -04005199 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00005200 dropped = drop_outstanding_extent(inode);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005201
Miao Xie09348562013-02-07 10:12:07 +00005202 if (num_bytes)
5203 to_free = calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacik7709cde2011-08-04 10:25:02 -04005204 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00005205 if (dropped > 0)
5206 to_free += btrfs_calc_trans_metadata_size(root, dropped);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005207
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005208 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5209 btrfs_ino(inode), to_free, 0);
Arne Jansenc5567232011-09-14 15:44:05 +02005210 if (root->fs_info->quota_enabled) {
5211 btrfs_qgroup_free(root, num_bytes +
5212 dropped * root->leafsize);
5213 }
5214
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005215 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
5216 to_free);
5217}
5218
Josef Bacik7709cde2011-08-04 10:25:02 -04005219/**
5220 * btrfs_delalloc_reserve_space - reserve data and metadata space for delalloc
5221 * @inode: inode we're writing to
5222 * @num_bytes: the number of bytes we want to allocate
5223 *
5224 * This will do the following things
5225 *
5226 * o reserve space in the data space info for num_bytes
5227 * o reserve space in the metadata space info based on number of outstanding
5228 * extents and how much csums will be needed
5229 * o add to the inodes ->delalloc_bytes
5230 * o add it to the fs_info's delalloc inodes list.
5231 *
5232 * This will return 0 for success and -ENOSPC if there is no space left.
5233 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005234int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes)
5235{
5236 int ret;
5237
5238 ret = btrfs_check_data_free_space(inode, num_bytes);
5239 if (ret)
5240 return ret;
5241
5242 ret = btrfs_delalloc_reserve_metadata(inode, num_bytes);
5243 if (ret) {
5244 btrfs_free_reserved_data_space(inode, num_bytes);
5245 return ret;
5246 }
5247
5248 return 0;
5249}
5250
Josef Bacik7709cde2011-08-04 10:25:02 -04005251/**
5252 * btrfs_delalloc_release_space - release data and metadata space for delalloc
5253 * @inode: inode we're releasing space for
5254 * @num_bytes: the number of bytes we want to free up
5255 *
5256 * This must be matched with a call to btrfs_delalloc_reserve_space. This is
5257 * called in the case that we don't need the metadata AND data reservations
5258 * anymore. So if there is an error or we insert an inline extent.
5259 *
5260 * This function will release the metadata space that was not used and will
5261 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
5262 * list if there are no delalloc bytes left.
5263 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005264void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes)
5265{
5266 btrfs_delalloc_release_metadata(inode, num_bytes);
5267 btrfs_free_reserved_data_space(inode, num_bytes);
5268}
5269
Liu Boc53d6132012-12-27 09:01:19 +00005270static int update_block_group(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005271 u64 bytenr, u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04005272{
Josef Bacik0af3d002010-06-21 14:48:16 -04005273 struct btrfs_block_group_cache *cache = NULL;
Chris Mason9078a3e2007-04-26 16:46:15 -04005274 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04005275 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005276 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04005277 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04005278 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04005279
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005280 /* block accounting for super block */
Miao Xieeb73c1b2013-05-15 07:48:22 +00005281 spin_lock(&info->delalloc_root_lock);
David Sterba6c417612011-04-13 15:41:04 +02005282 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005283 if (alloc)
5284 old_val += num_bytes;
5285 else
5286 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02005287 btrfs_set_super_bytes_used(info->super_copy, old_val);
Miao Xieeb73c1b2013-05-15 07:48:22 +00005288 spin_unlock(&info->delalloc_root_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005289
Chris Masond3977122009-01-05 21:25:51 -05005290 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04005291 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05005292 if (!cache)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005293 return -ENOENT;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005294 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
5295 BTRFS_BLOCK_GROUP_RAID1 |
5296 BTRFS_BLOCK_GROUP_RAID10))
5297 factor = 2;
5298 else
5299 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04005300 /*
5301 * If this block group has free space cache written out, we
5302 * need to make sure to load it if we are removing space. This
5303 * is because we need the unpinning stage to actually add the
5304 * space back to the block group, otherwise we will leak space.
5305 */
5306 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Liu Bof6373bf2012-12-27 09:01:18 +00005307 cache_block_group(cache, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04005308
Chris Masondb945352007-10-15 16:15:53 -04005309 byte_in_group = bytenr - cache->key.objectid;
5310 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04005311
Josef Bacik25179202008-10-29 14:49:05 -04005312 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04005313 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04005314
Josef Bacik73bc1872011-10-03 14:07:49 -04005315 if (btrfs_test_opt(root, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04005316 cache->disk_cache_state < BTRFS_DC_CLEAR)
5317 cache->disk_cache_state = BTRFS_DC_CLEAR;
5318
Josef Bacik0f9dd462008-09-23 13:14:11 -04005319 cache->dirty = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04005320 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04005321 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04005322 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04005323 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04005324 btrfs_set_block_group_used(&cache->item, old_val);
5325 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04005326 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005327 cache->space_info->bytes_used += num_bytes;
5328 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04005329 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005330 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04005331 } else {
Chris Masondb945352007-10-15 16:15:53 -04005332 old_val -= num_bytes;
Chris Masonc286ac42008-07-22 23:06:41 -04005333 btrfs_set_block_group_used(&cache->item, old_val);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005334 cache->pinned += num_bytes;
5335 cache->space_info->bytes_pinned += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005336 cache->space_info->bytes_used -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005337 cache->space_info->disk_used -= num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04005338 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005339 spin_unlock(&cache->space_info->lock);
Liu Hui1f3c79a2009-01-05 15:57:51 -05005340
Yan, Zhengf0486c62010-05-16 10:46:25 -04005341 set_extent_dirty(info->pinned_extents,
5342 bytenr, bytenr + num_bytes - 1,
5343 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04005344 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04005345 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04005346 total -= num_bytes;
5347 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005348 }
5349 return 0;
5350}
Chris Mason6324fbf2008-03-24 15:01:59 -04005351
Chris Masona061fc82008-05-07 11:43:44 -04005352static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
5353{
Josef Bacik0f9dd462008-09-23 13:14:11 -04005354 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05005355 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005356
Liu Boa1897fd2012-12-27 09:01:23 +00005357 spin_lock(&root->fs_info->block_group_cache_lock);
5358 bytenr = root->fs_info->first_logical_byte;
5359 spin_unlock(&root->fs_info->block_group_cache_lock);
5360
5361 if (bytenr < (u64)-1)
5362 return bytenr;
5363
Josef Bacik0f9dd462008-09-23 13:14:11 -04005364 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
5365 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04005366 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005367
Yan Zhengd2fb3432008-12-11 16:30:39 -05005368 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005369 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05005370
5371 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04005372}
5373
Yan, Zhengf0486c62010-05-16 10:46:25 -04005374static int pin_down_extent(struct btrfs_root *root,
5375 struct btrfs_block_group_cache *cache,
5376 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05005377{
Yan Zheng11833d62009-09-11 16:11:19 -04005378 spin_lock(&cache->space_info->lock);
5379 spin_lock(&cache->lock);
5380 cache->pinned += num_bytes;
5381 cache->space_info->bytes_pinned += num_bytes;
5382 if (reserved) {
5383 cache->reserved -= num_bytes;
5384 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05005385 }
Yan Zheng11833d62009-09-11 16:11:19 -04005386 spin_unlock(&cache->lock);
5387 spin_unlock(&cache->space_info->lock);
5388
Yan, Zhengf0486c62010-05-16 10:46:25 -04005389 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
5390 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Josef Bacik0be5dc62013-10-07 15:18:52 -04005391 if (reserved)
5392 trace_btrfs_reserved_extent_free(root, bytenr, num_bytes);
Yan324ae4d2007-11-16 14:57:08 -05005393 return 0;
5394}
Chris Mason9078a3e2007-04-26 16:46:15 -04005395
Yan, Zhengf0486c62010-05-16 10:46:25 -04005396/*
5397 * this function must be called within transaction
5398 */
5399int btrfs_pin_extent(struct btrfs_root *root,
5400 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04005401{
Yan, Zhengf0486c62010-05-16 10:46:25 -04005402 struct btrfs_block_group_cache *cache;
5403
5404 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005405 BUG_ON(!cache); /* Logic error */
Yan, Zhengf0486c62010-05-16 10:46:25 -04005406
5407 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
5408
5409 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04005410 return 0;
5411}
Zheng Yane8569812008-09-26 10:05:48 -04005412
Yan, Zhengf0486c62010-05-16 10:46:25 -04005413/*
Chris Masone688b7252011-10-31 20:52:39 -04005414 * this function must be called within transaction
Yan, Zhengf0486c62010-05-16 10:46:25 -04005415 */
Liu Bodcfac412012-12-27 09:01:20 +00005416int btrfs_pin_extent_for_log_replay(struct btrfs_root *root,
Chris Masone688b7252011-10-31 20:52:39 -04005417 u64 bytenr, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005418{
Chris Masone688b7252011-10-31 20:52:39 -04005419 struct btrfs_block_group_cache *cache;
Josef Bacikb50c6e22013-04-25 15:55:30 -04005420 int ret;
Chris Masone688b7252011-10-31 20:52:39 -04005421
5422 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005423 if (!cache)
5424 return -EINVAL;
Chris Masone688b7252011-10-31 20:52:39 -04005425
5426 /*
5427 * pull in the free space cache (if any) so that our pin
5428 * removes the free space from the cache. We have load_only set
5429 * to one because the slow code to read in the free extents does check
5430 * the pinned extents.
5431 */
Liu Bof6373bf2012-12-27 09:01:18 +00005432 cache_block_group(cache, 1);
Chris Masone688b7252011-10-31 20:52:39 -04005433
5434 pin_down_extent(root, cache, bytenr, num_bytes, 0);
5435
5436 /* remove us from the free space cache (if we're there at all) */
Josef Bacikb50c6e22013-04-25 15:55:30 -04005437 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
Chris Masone688b7252011-10-31 20:52:39 -04005438 btrfs_put_block_group(cache);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005439 return ret;
Chris Masone688b7252011-10-31 20:52:39 -04005440}
5441
Josef Bacik8c2a1a32013-06-06 13:19:32 -04005442static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes)
5443{
5444 int ret;
5445 struct btrfs_block_group_cache *block_group;
5446 struct btrfs_caching_control *caching_ctl;
5447
5448 block_group = btrfs_lookup_block_group(root->fs_info, start);
5449 if (!block_group)
5450 return -EINVAL;
5451
5452 cache_block_group(block_group, 0);
5453 caching_ctl = get_caching_control(block_group);
5454
5455 if (!caching_ctl) {
5456 /* Logic error */
5457 BUG_ON(!block_group_cache_done(block_group));
5458 ret = btrfs_remove_free_space(block_group, start, num_bytes);
5459 } else {
5460 mutex_lock(&caching_ctl->mutex);
5461
5462 if (start >= caching_ctl->progress) {
5463 ret = add_excluded_extent(root, start, num_bytes);
5464 } else if (start + num_bytes <= caching_ctl->progress) {
5465 ret = btrfs_remove_free_space(block_group,
5466 start, num_bytes);
5467 } else {
5468 num_bytes = caching_ctl->progress - start;
5469 ret = btrfs_remove_free_space(block_group,
5470 start, num_bytes);
5471 if (ret)
5472 goto out_lock;
5473
5474 num_bytes = (start + num_bytes) -
5475 caching_ctl->progress;
5476 start = caching_ctl->progress;
5477 ret = add_excluded_extent(root, start, num_bytes);
5478 }
5479out_lock:
5480 mutex_unlock(&caching_ctl->mutex);
5481 put_caching_control(caching_ctl);
5482 }
5483 btrfs_put_block_group(block_group);
5484 return ret;
5485}
5486
5487int btrfs_exclude_logged_extents(struct btrfs_root *log,
5488 struct extent_buffer *eb)
5489{
5490 struct btrfs_file_extent_item *item;
5491 struct btrfs_key key;
5492 int found_type;
5493 int i;
5494
5495 if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS))
5496 return 0;
5497
5498 for (i = 0; i < btrfs_header_nritems(eb); i++) {
5499 btrfs_item_key_to_cpu(eb, &key, i);
5500 if (key.type != BTRFS_EXTENT_DATA_KEY)
5501 continue;
5502 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
5503 found_type = btrfs_file_extent_type(eb, item);
5504 if (found_type == BTRFS_FILE_EXTENT_INLINE)
5505 continue;
5506 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
5507 continue;
5508 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
5509 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
5510 __exclude_logged_extent(log, key.objectid, key.offset);
5511 }
5512
5513 return 0;
5514}
5515
Josef Bacikfb25e912011-07-26 17:00:46 -04005516/**
5517 * btrfs_update_reserved_bytes - update the block_group and space info counters
5518 * @cache: The cache we are manipulating
5519 * @num_bytes: The number of bytes in question
5520 * @reserve: One of the reservation enums
5521 *
5522 * This is called by the allocator when it reserves space, or by somebody who is
5523 * freeing space that was never actually used on disk. For example if you
5524 * reserve some space for a new leaf in transaction A and before transaction A
5525 * commits you free that leaf, you call this with reserve set to 0 in order to
5526 * clear the reservation.
5527 *
5528 * Metadata reservations should be called with RESERVE_ALLOC so we do the proper
5529 * ENOSPC accounting. For data we handle the reservation through clearing the
5530 * delalloc bits in the io_tree. We have to do this since we could end up
5531 * allocating less disk space for the amount of data we have reserved in the
5532 * case of compression.
5533 *
5534 * If this is a reservation and the block group has become read only we cannot
5535 * make the reservation and return -EAGAIN, otherwise this function always
5536 * succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04005537 */
Josef Bacikfb25e912011-07-26 17:00:46 -04005538static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
5539 u64 num_bytes, int reserve)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005540{
Josef Bacikfb25e912011-07-26 17:00:46 -04005541 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005542 int ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005543
Josef Bacikfb25e912011-07-26 17:00:46 -04005544 spin_lock(&space_info->lock);
5545 spin_lock(&cache->lock);
5546 if (reserve != RESERVE_FREE) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005547 if (cache->ro) {
5548 ret = -EAGAIN;
5549 } else {
Josef Bacikfb25e912011-07-26 17:00:46 -04005550 cache->reserved += num_bytes;
5551 space_info->bytes_reserved += num_bytes;
5552 if (reserve == RESERVE_ALLOC) {
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005553 trace_btrfs_space_reservation(cache->fs_info,
Liu Bo2bcc0322012-03-29 09:57:44 -04005554 "space_info", space_info->flags,
5555 num_bytes, 0);
Josef Bacikfb25e912011-07-26 17:00:46 -04005556 space_info->bytes_may_use -= num_bytes;
5557 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005558 }
Josef Bacikfb25e912011-07-26 17:00:46 -04005559 } else {
5560 if (cache->ro)
5561 space_info->bytes_readonly += num_bytes;
5562 cache->reserved -= num_bytes;
5563 space_info->bytes_reserved -= num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005564 }
Josef Bacikfb25e912011-07-26 17:00:46 -04005565 spin_unlock(&cache->lock);
5566 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005567 return ret;
5568}
5569
Jeff Mahoney143bede2012-03-01 14:56:26 +01005570void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04005571 struct btrfs_root *root)
5572{
5573 struct btrfs_fs_info *fs_info = root->fs_info;
5574 struct btrfs_caching_control *next;
5575 struct btrfs_caching_control *caching_ctl;
5576 struct btrfs_block_group_cache *cache;
Josef Bacikb150a4f2013-06-19 15:00:04 -04005577 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04005578
Josef Bacik9e351cc2014-03-13 15:42:13 -04005579 down_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04005580
5581 list_for_each_entry_safe(caching_ctl, next,
5582 &fs_info->caching_block_groups, list) {
5583 cache = caching_ctl->block_group;
5584 if (block_group_cache_done(cache)) {
5585 cache->last_byte_to_unpin = (u64)-1;
5586 list_del_init(&caching_ctl->list);
5587 put_caching_control(caching_ctl);
5588 } else {
5589 cache->last_byte_to_unpin = caching_ctl->progress;
5590 }
5591 }
5592
5593 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
5594 fs_info->pinned_extents = &fs_info->freed_extents[1];
5595 else
5596 fs_info->pinned_extents = &fs_info->freed_extents[0];
5597
Josef Bacik9e351cc2014-03-13 15:42:13 -04005598 up_write(&fs_info->commit_root_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005599
Josef Bacikb150a4f2013-06-19 15:00:04 -04005600 list_for_each_entry_rcu(space_info, &fs_info->space_info, list)
5601 percpu_counter_set(&space_info->total_bytes_pinned, 0);
5602
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005603 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04005604}
5605
5606static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
5607{
5608 struct btrfs_fs_info *fs_info = root->fs_info;
5609 struct btrfs_block_group_cache *cache = NULL;
Josef Bacik7b398f82012-10-22 15:52:28 -04005610 struct btrfs_space_info *space_info;
5611 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Yan Zheng11833d62009-09-11 16:11:19 -04005612 u64 len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005613 bool readonly;
Yan Zheng11833d62009-09-11 16:11:19 -04005614
5615 while (start <= end) {
Josef Bacik7b398f82012-10-22 15:52:28 -04005616 readonly = false;
Yan Zheng11833d62009-09-11 16:11:19 -04005617 if (!cache ||
5618 start >= cache->key.objectid + cache->key.offset) {
5619 if (cache)
5620 btrfs_put_block_group(cache);
5621 cache = btrfs_lookup_block_group(fs_info, start);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005622 BUG_ON(!cache); /* Logic error */
Yan Zheng11833d62009-09-11 16:11:19 -04005623 }
5624
5625 len = cache->key.objectid + cache->key.offset - start;
5626 len = min(len, end + 1 - start);
5627
5628 if (start < cache->last_byte_to_unpin) {
5629 len = min(len, cache->last_byte_to_unpin - start);
5630 btrfs_add_free_space(cache, start, len);
5631 }
Josef Bacik25179202008-10-29 14:49:05 -04005632
Yan, Zhengf0486c62010-05-16 10:46:25 -04005633 start += len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005634 space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005635
Josef Bacik7b398f82012-10-22 15:52:28 -04005636 spin_lock(&space_info->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005637 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04005638 cache->pinned -= len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005639 space_info->bytes_pinned -= len;
5640 if (cache->ro) {
5641 space_info->bytes_readonly += len;
5642 readonly = true;
5643 }
Josef Bacik25179202008-10-29 14:49:05 -04005644 spin_unlock(&cache->lock);
Josef Bacik7b398f82012-10-22 15:52:28 -04005645 if (!readonly && global_rsv->space_info == space_info) {
5646 spin_lock(&global_rsv->lock);
5647 if (!global_rsv->full) {
5648 len = min(len, global_rsv->size -
5649 global_rsv->reserved);
5650 global_rsv->reserved += len;
5651 space_info->bytes_may_use += len;
5652 if (global_rsv->reserved >= global_rsv->size)
5653 global_rsv->full = 1;
5654 }
5655 spin_unlock(&global_rsv->lock);
5656 }
5657 spin_unlock(&space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04005658 }
5659
5660 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04005661 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04005662 return 0;
5663}
5664
5665int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04005666 struct btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -05005667{
Yan Zheng11833d62009-09-11 16:11:19 -04005668 struct btrfs_fs_info *fs_info = root->fs_info;
5669 struct extent_io_tree *unpin;
Chris Mason1a5bc1672007-10-15 16:15:26 -04005670 u64 start;
5671 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05005672 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05005673
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005674 if (trans->aborted)
5675 return 0;
5676
Yan Zheng11833d62009-09-11 16:11:19 -04005677 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
5678 unpin = &fs_info->freed_extents[1];
5679 else
5680 unpin = &fs_info->freed_extents[0];
5681
Chris Masond3977122009-01-05 21:25:51 -05005682 while (1) {
Chris Mason1a5bc1672007-10-15 16:15:26 -04005683 ret = find_first_extent_bit(unpin, 0, &start, &end,
Josef Bacike6138872012-09-27 17:07:30 -04005684 EXTENT_DIRTY, NULL);
Chris Mason1a5bc1672007-10-15 16:15:26 -04005685 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05005686 break;
Liu Hui1f3c79a2009-01-05 15:57:51 -05005687
Li Dongyang5378e602011-03-24 10:24:27 +00005688 if (btrfs_test_opt(root, DISCARD))
5689 ret = btrfs_discard_extent(root, start,
5690 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05005691
Chris Mason1a5bc1672007-10-15 16:15:26 -04005692 clear_extent_dirty(unpin, start, end, GFP_NOFS);
Yan Zheng11833d62009-09-11 16:11:19 -04005693 unpin_extent_range(root, start, end);
Chris Masonb9473432009-03-13 11:00:37 -04005694 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05005695 }
Josef Bacik817d52f2009-07-13 21:29:25 -04005696
Chris Masone20d96d2007-03-22 12:13:20 -04005697 return 0;
5698}
5699
Josef Bacikb150a4f2013-06-19 15:00:04 -04005700static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes,
5701 u64 owner, u64 root_objectid)
5702{
5703 struct btrfs_space_info *space_info;
5704 u64 flags;
5705
5706 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
5707 if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID)
5708 flags = BTRFS_BLOCK_GROUP_SYSTEM;
5709 else
5710 flags = BTRFS_BLOCK_GROUP_METADATA;
5711 } else {
5712 flags = BTRFS_BLOCK_GROUP_DATA;
5713 }
5714
5715 space_info = __find_space_info(fs_info, flags);
5716 BUG_ON(!space_info); /* Logic bug */
5717 percpu_counter_add(&space_info->total_bytes_pinned, num_bytes);
5718}
5719
5720
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005721static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
5722 struct btrfs_root *root,
5723 u64 bytenr, u64 num_bytes, u64 parent,
5724 u64 root_objectid, u64 owner_objectid,
5725 u64 owner_offset, int refs_to_drop,
5726 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05005727{
Chris Masone2fa7222007-03-12 16:22:34 -04005728 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005729 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04005730 struct btrfs_fs_info *info = root->fs_info;
5731 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04005732 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005733 struct btrfs_extent_item *ei;
5734 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05005735 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005736 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05005737 int extent_slot = 0;
5738 int found_extent = 0;
5739 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005740 u32 item_size;
5741 u64 refs;
Josef Bacik3173a182013-03-07 14:22:04 -05005742 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
5743 SKINNY_METADATA);
Chris Mason037e6392007-03-07 11:50:24 -05005744
Chris Mason5caf2a02007-04-02 11:20:42 -04005745 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04005746 if (!path)
5747 return -ENOMEM;
5748
Chris Mason3c12ac72008-04-21 12:01:38 -04005749 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04005750 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005751
5752 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
5753 BUG_ON(!is_data && refs_to_drop != 1);
5754
Josef Bacik3173a182013-03-07 14:22:04 -05005755 if (is_data)
5756 skinny_metadata = 0;
5757
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005758 ret = lookup_extent_backref(trans, extent_root, path, &iref,
5759 bytenr, num_bytes, parent,
5760 root_objectid, owner_objectid,
5761 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05005762 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05005763 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005764 while (extent_slot >= 0) {
5765 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05005766 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005767 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05005768 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005769 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
5770 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05005771 found_extent = 1;
5772 break;
5773 }
Josef Bacik3173a182013-03-07 14:22:04 -05005774 if (key.type == BTRFS_METADATA_ITEM_KEY &&
5775 key.offset == owner_objectid) {
5776 found_extent = 1;
5777 break;
5778 }
Chris Mason952fcca2008-02-18 16:33:44 -05005779 if (path->slots[0] - extent_slot > 5)
5780 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005781 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05005782 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005783#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
5784 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
5785 if (found_extent && item_size < sizeof(*ei))
5786 found_extent = 0;
5787#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04005788 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005789 BUG_ON(iref);
Chris Mason56bec292009-03-13 10:10:06 -04005790 ret = remove_extent_backref(trans, extent_root, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005791 NULL, refs_to_drop,
5792 is_data);
David Sterba005d6422012-09-18 07:52:32 -06005793 if (ret) {
5794 btrfs_abort_transaction(trans, extent_root, ret);
5795 goto out;
5796 }
David Sterbab3b4aa72011-04-21 01:20:15 +02005797 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04005798 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005799
5800 key.objectid = bytenr;
5801 key.type = BTRFS_EXTENT_ITEM_KEY;
5802 key.offset = num_bytes;
5803
Josef Bacik3173a182013-03-07 14:22:04 -05005804 if (!is_data && skinny_metadata) {
5805 key.type = BTRFS_METADATA_ITEM_KEY;
5806 key.offset = owner_objectid;
5807 }
5808
Zheng Yan31840ae2008-09-23 13:14:14 -04005809 ret = btrfs_search_slot(trans, extent_root,
5810 &key, path, -1, 1);
Josef Bacik3173a182013-03-07 14:22:04 -05005811 if (ret > 0 && skinny_metadata && path->slots[0]) {
5812 /*
5813 * Couldn't find our skinny metadata item,
5814 * see if we have ye olde extent item.
5815 */
5816 path->slots[0]--;
5817 btrfs_item_key_to_cpu(path->nodes[0], &key,
5818 path->slots[0]);
5819 if (key.objectid == bytenr &&
5820 key.type == BTRFS_EXTENT_ITEM_KEY &&
5821 key.offset == num_bytes)
5822 ret = 0;
5823 }
5824
5825 if (ret > 0 && skinny_metadata) {
5826 skinny_metadata = false;
Filipe Manana9ce49a02014-04-24 15:15:28 +01005827 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05005828 key.type = BTRFS_EXTENT_ITEM_KEY;
5829 key.offset = num_bytes;
5830 btrfs_release_path(path);
5831 ret = btrfs_search_slot(trans, extent_root,
5832 &key, path, -1, 1);
5833 }
5834
Josef Bacikf3465ca2008-11-12 14:19:50 -05005835 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005836 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005837 ret, bytenr);
Josef Bacikb783e622011-07-13 15:03:50 +00005838 if (ret > 0)
5839 btrfs_print_leaf(extent_root,
5840 path->nodes[0]);
Josef Bacikf3465ca2008-11-12 14:19:50 -05005841 }
David Sterba005d6422012-09-18 07:52:32 -06005842 if (ret < 0) {
5843 btrfs_abort_transaction(trans, extent_root, ret);
5844 goto out;
5845 }
Zheng Yan31840ae2008-09-23 13:14:14 -04005846 extent_slot = path->slots[0];
5847 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05305848 } else if (WARN_ON(ret == -ENOENT)) {
Chris Mason7bb86312007-12-11 09:25:06 -05005849 btrfs_print_leaf(extent_root, path->nodes[0]);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005850 btrfs_err(info,
5851 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005852 bytenr, parent, root_objectid, owner_objectid,
5853 owner_offset);
Josef Bacikc4a050b2014-03-14 16:36:53 -04005854 btrfs_abort_transaction(trans, extent_root, ret);
5855 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005856 } else {
David Sterba005d6422012-09-18 07:52:32 -06005857 btrfs_abort_transaction(trans, extent_root, ret);
5858 goto out;
Chris Mason7bb86312007-12-11 09:25:06 -05005859 }
Chris Mason5f39d392007-10-15 16:14:19 -04005860
5861 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005862 item_size = btrfs_item_size_nr(leaf, extent_slot);
5863#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
5864 if (item_size < sizeof(*ei)) {
5865 BUG_ON(found_extent || extent_slot != path->slots[0]);
5866 ret = convert_extent_item_v0(trans, extent_root, path,
5867 owner_objectid, 0);
David Sterba005d6422012-09-18 07:52:32 -06005868 if (ret < 0) {
5869 btrfs_abort_transaction(trans, extent_root, ret);
5870 goto out;
5871 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005872
David Sterbab3b4aa72011-04-21 01:20:15 +02005873 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005874 path->leave_spinning = 1;
5875
5876 key.objectid = bytenr;
5877 key.type = BTRFS_EXTENT_ITEM_KEY;
5878 key.offset = num_bytes;
5879
5880 ret = btrfs_search_slot(trans, extent_root, &key, path,
5881 -1, 1);
5882 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005883 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005884 ret, bytenr);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005885 btrfs_print_leaf(extent_root, path->nodes[0]);
5886 }
David Sterba005d6422012-09-18 07:52:32 -06005887 if (ret < 0) {
5888 btrfs_abort_transaction(trans, extent_root, ret);
5889 goto out;
5890 }
5891
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005892 extent_slot = path->slots[0];
5893 leaf = path->nodes[0];
5894 item_size = btrfs_item_size_nr(leaf, extent_slot);
5895 }
5896#endif
5897 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05005898 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04005899 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05005900 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
5901 key.type == BTRFS_EXTENT_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005902 struct btrfs_tree_block_info *bi;
5903 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
5904 bi = (struct btrfs_tree_block_info *)(ei + 1);
5905 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05005906 }
5907
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005908 refs = btrfs_extent_refs(leaf, ei);
Josef Bacik32b02532013-04-24 16:38:50 -04005909 if (refs < refs_to_drop) {
5910 btrfs_err(info, "trying to drop %d refs but we only have %Lu "
5911 "for bytenr %Lu\n", refs_to_drop, refs, bytenr);
5912 ret = -EINVAL;
5913 btrfs_abort_transaction(trans, extent_root, ret);
5914 goto out;
5915 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005916 refs -= refs_to_drop;
5917
5918 if (refs > 0) {
5919 if (extent_op)
5920 __run_delayed_extent_op(extent_op, leaf, ei);
5921 /*
5922 * In the case of inline back ref, reference count will
5923 * be updated by remove_extent_backref
5924 */
5925 if (iref) {
5926 BUG_ON(!found_extent);
5927 } else {
5928 btrfs_set_extent_refs(leaf, ei, refs);
5929 btrfs_mark_buffer_dirty(leaf);
5930 }
5931 if (found_extent) {
5932 ret = remove_extent_backref(trans, extent_root, path,
5933 iref, refs_to_drop,
5934 is_data);
David Sterba005d6422012-09-18 07:52:32 -06005935 if (ret) {
5936 btrfs_abort_transaction(trans, extent_root, ret);
5937 goto out;
5938 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005939 }
Josef Bacikb150a4f2013-06-19 15:00:04 -04005940 add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid,
5941 root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005942 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005943 if (found_extent) {
5944 BUG_ON(is_data && refs_to_drop !=
5945 extent_data_ref_count(root, path, iref));
5946 if (iref) {
5947 BUG_ON(path->slots[0] != extent_slot);
5948 } else {
5949 BUG_ON(path->slots[0] != extent_slot + 1);
5950 path->slots[0] = extent_slot;
5951 num_to_del = 2;
5952 }
Chris Mason78fae272007-03-25 11:35:08 -04005953 }
Chris Masonb9473432009-03-13 11:00:37 -04005954
Chris Mason952fcca2008-02-18 16:33:44 -05005955 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
5956 num_to_del);
David Sterba005d6422012-09-18 07:52:32 -06005957 if (ret) {
5958 btrfs_abort_transaction(trans, extent_root, ret);
5959 goto out;
5960 }
David Sterbab3b4aa72011-04-21 01:20:15 +02005961 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01005962
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005963 if (is_data) {
Chris Mason459931e2008-12-10 09:10:46 -05005964 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
David Sterba005d6422012-09-18 07:52:32 -06005965 if (ret) {
5966 btrfs_abort_transaction(trans, extent_root, ret);
5967 goto out;
5968 }
Chris Mason459931e2008-12-10 09:10:46 -05005969 }
5970
Liu Boc53d6132012-12-27 09:01:19 +00005971 ret = update_block_group(root, bytenr, num_bytes, 0);
David Sterba005d6422012-09-18 07:52:32 -06005972 if (ret) {
5973 btrfs_abort_transaction(trans, extent_root, ret);
5974 goto out;
5975 }
Chris Masona28ec192007-03-06 20:08:01 -05005976 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005977out:
Chris Mason5caf2a02007-04-02 11:20:42 -04005978 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05005979 return ret;
5980}
5981
5982/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04005983 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04005984 * delayed ref for that extent as well. This searches the delayed ref tree for
5985 * a given extent, and if there are no other delayed refs to be processed, it
5986 * removes it from the tree.
5987 */
5988static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
5989 struct btrfs_root *root, u64 bytenr)
5990{
5991 struct btrfs_delayed_ref_head *head;
5992 struct btrfs_delayed_ref_root *delayed_refs;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005993 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04005994
5995 delayed_refs = &trans->transaction->delayed_refs;
5996 spin_lock(&delayed_refs->lock);
5997 head = btrfs_find_delayed_ref_head(trans, bytenr);
5998 if (!head)
Chris Masoncf93da72014-01-29 07:02:40 -08005999 goto out_delayed_unlock;
Chris Mason1887be62009-03-13 10:11:24 -04006000
Josef Bacikd7df2c72014-01-23 09:21:38 -05006001 spin_lock(&head->lock);
6002 if (rb_first(&head->ref_root))
Chris Mason1887be62009-03-13 10:11:24 -04006003 goto out;
6004
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006005 if (head->extent_op) {
6006 if (!head->must_insert_reserved)
6007 goto out;
Miao Xie78a61842012-11-21 02:21:28 +00006008 btrfs_free_delayed_extent_op(head->extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006009 head->extent_op = NULL;
6010 }
6011
Chris Mason1887be62009-03-13 10:11:24 -04006012 /*
6013 * waiting for the lock here would deadlock. If someone else has it
6014 * locked they are already in the process of dropping it anyway
6015 */
6016 if (!mutex_trylock(&head->mutex))
6017 goto out;
6018
6019 /*
6020 * at this point we have a head with no other entries. Go
6021 * ahead and process it.
6022 */
6023 head->node.in_tree = 0;
Liu Boc46effa2013-10-14 12:59:45 +08006024 rb_erase(&head->href_node, &delayed_refs->href_root);
Chris Masonc3e69d52009-03-13 10:17:05 -04006025
Josef Bacikd7df2c72014-01-23 09:21:38 -05006026 atomic_dec(&delayed_refs->num_entries);
Chris Mason1887be62009-03-13 10:11:24 -04006027
6028 /*
6029 * we don't take a ref on the node because we're removing it from the
6030 * tree, so we just steal the ref the tree was holding.
6031 */
Chris Masonc3e69d52009-03-13 10:17:05 -04006032 delayed_refs->num_heads--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05006033 if (head->processing == 0)
Chris Masonc3e69d52009-03-13 10:17:05 -04006034 delayed_refs->num_heads_ready--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05006035 head->processing = 0;
6036 spin_unlock(&head->lock);
Chris Mason1887be62009-03-13 10:11:24 -04006037 spin_unlock(&delayed_refs->lock);
6038
Yan, Zhengf0486c62010-05-16 10:46:25 -04006039 BUG_ON(head->extent_op);
6040 if (head->must_insert_reserved)
6041 ret = 1;
6042
6043 mutex_unlock(&head->mutex);
Chris Mason1887be62009-03-13 10:11:24 -04006044 btrfs_put_delayed_ref(&head->node);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006045 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04006046out:
Josef Bacikd7df2c72014-01-23 09:21:38 -05006047 spin_unlock(&head->lock);
Chris Masoncf93da72014-01-29 07:02:40 -08006048
6049out_delayed_unlock:
Chris Mason1887be62009-03-13 10:11:24 -04006050 spin_unlock(&delayed_refs->lock);
6051 return 0;
6052}
6053
Yan, Zhengf0486c62010-05-16 10:46:25 -04006054void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
6055 struct btrfs_root *root,
6056 struct extent_buffer *buf,
Jan Schmidt5581a512012-05-16 17:04:52 +02006057 u64 parent, int last_ref)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006058{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006059 struct btrfs_block_group_cache *cache = NULL;
Josef Bacikb150a4f2013-06-19 15:00:04 -04006060 int pin = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006061 int ret;
6062
6063 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006064 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
6065 buf->start, buf->len,
6066 parent, root->root_key.objectid,
6067 btrfs_header_level(buf),
Jan Schmidt5581a512012-05-16 17:04:52 +02006068 BTRFS_DROP_DELAYED_REF, NULL, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006069 BUG_ON(ret); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006070 }
6071
6072 if (!last_ref)
6073 return;
6074
Yan, Zhengf0486c62010-05-16 10:46:25 -04006075 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006076
6077 if (btrfs_header_generation(buf) == trans->transid) {
6078 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
6079 ret = check_ref_cleanup(trans, root, buf->start);
6080 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04006081 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006082 }
6083
6084 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
6085 pin_down_extent(root, cache, buf->start, buf->len, 1);
Josef Bacik37be25b2011-08-05 10:25:38 -04006086 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006087 }
6088
6089 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
6090
6091 btrfs_add_free_space(cache, buf->start, buf->len);
Josef Bacikfb25e912011-07-26 17:00:46 -04006092 btrfs_update_reserved_bytes(cache, buf->len, RESERVE_FREE);
Josef Bacik0be5dc62013-10-07 15:18:52 -04006093 trace_btrfs_reserved_extent_free(root, buf->start, buf->len);
Josef Bacikb150a4f2013-06-19 15:00:04 -04006094 pin = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006095 }
6096out:
Josef Bacikb150a4f2013-06-19 15:00:04 -04006097 if (pin)
6098 add_pinned_bytes(root->fs_info, buf->len,
6099 btrfs_header_level(buf),
6100 root->root_key.objectid);
6101
Josef Bacika826d6d2011-03-16 13:42:43 -04006102 /*
6103 * Deleting the buffer, clear the corrupt flag since it doesn't matter
6104 * anymore.
6105 */
6106 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006107 btrfs_put_block_group(cache);
6108}
6109
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006110/* Can return -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006111int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root,
6112 u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid,
6113 u64 owner, u64 offset, int for_cow)
Chris Mason925baed2008-06-25 16:01:30 -04006114{
6115 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006116 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason925baed2008-06-25 16:01:30 -04006117
Josef Bacikb150a4f2013-06-19 15:00:04 -04006118 add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid);
6119
Chris Mason56bec292009-03-13 10:10:06 -04006120 /*
6121 * tree log blocks never actually go into the extent allocation
6122 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04006123 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006124 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
6125 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04006126 /* unlocks the pinned mutex */
Yan Zheng11833d62009-09-11 16:11:19 -04006127 btrfs_pin_extent(root, bytenr, num_bytes, 1);
Chris Mason56bec292009-03-13 10:10:06 -04006128 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006129 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006130 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
6131 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006132 parent, root_objectid, (int)owner,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006133 BTRFS_DROP_DELAYED_REF, NULL, for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006134 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006135 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
6136 num_bytes,
6137 parent, root_objectid, owner,
6138 offset, BTRFS_DROP_DELAYED_REF,
6139 NULL, for_cow);
Chris Mason56bec292009-03-13 10:10:06 -04006140 }
Chris Mason925baed2008-06-25 16:01:30 -04006141 return ret;
6142}
6143
David Woodhouse53b381b2013-01-29 18:40:14 -05006144static u64 stripe_align(struct btrfs_root *root,
6145 struct btrfs_block_group_cache *cache,
6146 u64 val, u64 num_bytes)
Chris Mason87ee04e2007-11-30 11:30:34 -05006147{
Qu Wenruofda28322013-02-26 08:10:22 +00006148 u64 ret = ALIGN(val, root->stripesize);
Chris Mason87ee04e2007-11-30 11:30:34 -05006149 return ret;
6150}
6151
Chris Masonfec577f2007-02-26 10:40:21 -05006152/*
Josef Bacik817d52f2009-07-13 21:29:25 -04006153 * when we wait for progress in the block group caching, its because
6154 * our allocation attempt failed at least once. So, we must sleep
6155 * and let some progress happen before we try again.
6156 *
6157 * This function will sleep at least once waiting for new free space to
6158 * show up, and then it will check the block group free space numbers
6159 * for our min num_bytes. Another option is to have it go ahead
6160 * and look in the rbtree for a free extent of a given size, but this
6161 * is a good start.
Josef Bacik36cce922013-08-05 11:15:21 -04006162 *
6163 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
6164 * any of the information in this block group.
Josef Bacik817d52f2009-07-13 21:29:25 -04006165 */
Josef Bacik36cce922013-08-05 11:15:21 -04006166static noinline void
Josef Bacik817d52f2009-07-13 21:29:25 -04006167wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
6168 u64 num_bytes)
6169{
Yan Zheng11833d62009-09-11 16:11:19 -04006170 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04006171
Yan Zheng11833d62009-09-11 16:11:19 -04006172 caching_ctl = get_caching_control(cache);
6173 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04006174 return;
Josef Bacik817d52f2009-07-13 21:29:25 -04006175
Yan Zheng11833d62009-09-11 16:11:19 -04006176 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08006177 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04006178
6179 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -04006180}
6181
6182static noinline int
6183wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
6184{
6185 struct btrfs_caching_control *caching_ctl;
Josef Bacik36cce922013-08-05 11:15:21 -04006186 int ret = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006187
6188 caching_ctl = get_caching_control(cache);
6189 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04006190 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006191
6192 wait_event(caching_ctl->wait, block_group_cache_done(cache));
Josef Bacik36cce922013-08-05 11:15:21 -04006193 if (cache->cached == BTRFS_CACHE_ERROR)
6194 ret = -EIO;
Yan Zheng11833d62009-09-11 16:11:19 -04006195 put_caching_control(caching_ctl);
Josef Bacik36cce922013-08-05 11:15:21 -04006196 return ret;
Josef Bacik817d52f2009-07-13 21:29:25 -04006197}
6198
Liu Bo31e50222012-11-21 14:18:10 +00006199int __get_raid_index(u64 flags)
Yan, Zhengb742bb82010-05-16 10:46:24 -04006200{
Ilya Dryomov7738a532012-03-27 17:09:17 +03006201 if (flags & BTRFS_BLOCK_GROUP_RAID10)
Miao Xiee6ec7162013-01-17 05:38:51 +00006202 return BTRFS_RAID_RAID10;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006203 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
Miao Xiee6ec7162013-01-17 05:38:51 +00006204 return BTRFS_RAID_RAID1;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006205 else if (flags & BTRFS_BLOCK_GROUP_DUP)
Miao Xiee6ec7162013-01-17 05:38:51 +00006206 return BTRFS_RAID_DUP;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006207 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
Miao Xiee6ec7162013-01-17 05:38:51 +00006208 return BTRFS_RAID_RAID0;
David Woodhouse53b381b2013-01-29 18:40:14 -05006209 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
Chris Masone942f882013-02-20 14:06:05 -05006210 return BTRFS_RAID_RAID5;
David Woodhouse53b381b2013-01-29 18:40:14 -05006211 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
Chris Masone942f882013-02-20 14:06:05 -05006212 return BTRFS_RAID_RAID6;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006213
Chris Masone942f882013-02-20 14:06:05 -05006214 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
Yan, Zhengb742bb82010-05-16 10:46:24 -04006215}
6216
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04006217int get_block_group_index(struct btrfs_block_group_cache *cache)
Ilya Dryomov7738a532012-03-27 17:09:17 +03006218{
Liu Bo31e50222012-11-21 14:18:10 +00006219 return __get_raid_index(cache->flags);
Ilya Dryomov7738a532012-03-27 17:09:17 +03006220}
6221
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04006222static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = {
6223 [BTRFS_RAID_RAID10] = "raid10",
6224 [BTRFS_RAID_RAID1] = "raid1",
6225 [BTRFS_RAID_DUP] = "dup",
6226 [BTRFS_RAID_RAID0] = "raid0",
6227 [BTRFS_RAID_SINGLE] = "single",
6228 [BTRFS_RAID_RAID5] = "raid5",
6229 [BTRFS_RAID_RAID6] = "raid6",
6230};
6231
Jeff Mahoney1b8e5df2013-11-20 16:50:23 -05006232static const char *get_raid_name(enum btrfs_raid_types type)
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04006233{
6234 if (type >= BTRFS_NR_RAID_TYPES)
6235 return NULL;
6236
6237 return btrfs_raid_type_names[type];
6238}
6239
Josef Bacik817d52f2009-07-13 21:29:25 -04006240enum btrfs_loop_type {
Josef Bacik285ff5a2012-01-13 15:27:45 -05006241 LOOP_CACHING_NOWAIT = 0,
6242 LOOP_CACHING_WAIT = 1,
6243 LOOP_ALLOC_CHUNK = 2,
6244 LOOP_NO_EMPTY_SIZE = 3,
Josef Bacik817d52f2009-07-13 21:29:25 -04006245};
6246
6247/*
Chris Masonfec577f2007-02-26 10:40:21 -05006248 * walks the btree of allocated extents and find a hole of a given size.
6249 * The key ins is changed to record the hole:
Miao Xiea4820392013-09-09 13:19:42 +08006250 * ins->objectid == start position
Chris Mason62e27492007-03-15 12:56:47 -04006251 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Miao Xiea4820392013-09-09 13:19:42 +08006252 * ins->offset == the size of the hole.
Chris Masonfec577f2007-02-26 10:40:21 -05006253 * Any available blocks before search_start are skipped.
Miao Xiea4820392013-09-09 13:19:42 +08006254 *
6255 * If there is no suitable free space, we will record the max size of
6256 * the free space extent currently.
Chris Masonfec577f2007-02-26 10:40:21 -05006257 */
Josef Bacik00361582013-08-14 14:02:47 -04006258static noinline int find_free_extent(struct btrfs_root *orig_root,
Chris Mason98ed5172008-01-03 10:01:48 -05006259 u64 num_bytes, u64 empty_size,
Chris Mason98ed5172008-01-03 10:01:48 -05006260 u64 hint_byte, struct btrfs_key *ins,
David Sterbab6919a52013-04-29 13:39:40 +00006261 u64 flags)
Chris Masonfec577f2007-02-26 10:40:21 -05006262{
Josef Bacik80eb2342008-10-29 14:49:05 -04006263 int ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05006264 struct btrfs_root *root = orig_root->fs_info->extent_root;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006265 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04006266 struct btrfs_block_group_cache *block_group = NULL;
Josef Bacik81c9ad22012-01-18 10:56:06 -05006267 u64 search_start = 0;
Miao Xiea4820392013-09-09 13:19:42 +08006268 u64 max_extent_size = 0;
Chris Mason239b14b2008-03-24 15:02:07 -04006269 int empty_cluster = 2 * 1024 * 1024;
Josef Bacik80eb2342008-10-29 14:49:05 -04006270 struct btrfs_space_info *space_info;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006271 int loop = 0;
David Sterbab6919a52013-04-29 13:39:40 +00006272 int index = __get_raid_index(flags);
6273 int alloc_type = (flags & BTRFS_BLOCK_GROUP_DATA) ?
Josef Bacikfb25e912011-07-26 17:00:46 -04006274 RESERVE_ALLOC_NO_ACCOUNT : RESERVE_ALLOC;
Josef Bacik0a243252009-09-11 16:11:20 -04006275 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006276 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04006277 bool use_cluster = true;
Miao Xie60d2adb2011-09-09 17:34:35 +08006278 bool have_caching_bg = false;
Chris Masonfec577f2007-02-26 10:40:21 -05006279
Chris Masondb945352007-10-15 16:15:53 -04006280 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04006281 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
Josef Bacik80eb2342008-10-29 14:49:05 -04006282 ins->objectid = 0;
6283 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04006284
David Sterbab6919a52013-04-29 13:39:40 +00006285 trace_find_free_extent(orig_root, num_bytes, empty_size, flags);
Josef Bacik3f7de032011-11-10 08:29:20 -05006286
David Sterbab6919a52013-04-29 13:39:40 +00006287 space_info = __find_space_info(root->fs_info, flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00006288 if (!space_info) {
David Sterbab6919a52013-04-29 13:39:40 +00006289 btrfs_err(root->fs_info, "No space info for %llu", flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00006290 return -ENOSPC;
6291 }
Josef Bacik2552d172009-04-03 10:14:19 -04006292
Josef Bacik67377732010-09-16 16:19:09 -04006293 /*
6294 * If the space info is for both data and metadata it means we have a
6295 * small filesystem and we can't use the clustering stuff.
6296 */
6297 if (btrfs_mixed_space_info(space_info))
6298 use_cluster = false;
6299
David Sterbab6919a52013-04-29 13:39:40 +00006300 if (flags & BTRFS_BLOCK_GROUP_METADATA && use_cluster) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006301 last_ptr = &root->fs_info->meta_alloc_cluster;
Chris Mason536ac8a2009-02-12 09:41:38 -05006302 if (!btrfs_test_opt(root, SSD))
6303 empty_cluster = 64 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04006304 }
6305
David Sterbab6919a52013-04-29 13:39:40 +00006306 if ((flags & BTRFS_BLOCK_GROUP_DATA) && use_cluster &&
Josef Bacik67377732010-09-16 16:19:09 -04006307 btrfs_test_opt(root, SSD)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006308 last_ptr = &root->fs_info->data_alloc_cluster;
6309 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04006310
Chris Mason239b14b2008-03-24 15:02:07 -04006311 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006312 spin_lock(&last_ptr->lock);
6313 if (last_ptr->block_group)
6314 hint_byte = last_ptr->window_start;
6315 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04006316 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006317
Chris Masona061fc82008-05-07 11:43:44 -04006318 search_start = max(search_start, first_logical_byte(root, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04006319 search_start = max(search_start, hint_byte);
Chris Mason0b86a832008-03-24 15:01:56 -04006320
Josef Bacik817d52f2009-07-13 21:29:25 -04006321 if (!last_ptr)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006322 empty_cluster = 0;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006323
Josef Bacik2552d172009-04-03 10:14:19 -04006324 if (search_start == hint_byte) {
Josef Bacik2552d172009-04-03 10:14:19 -04006325 block_group = btrfs_lookup_block_group(root->fs_info,
6326 search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04006327 /*
6328 * we don't want to use the block group if it doesn't match our
6329 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05006330 *
6331 * However if we are re-searching with an ideal block group
6332 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04006333 */
David Sterbab6919a52013-04-29 13:39:40 +00006334 if (block_group && block_group_bits(block_group, flags) &&
Josef Bacik285ff5a2012-01-13 15:27:45 -05006335 block_group->cached != BTRFS_CACHE_NO) {
Josef Bacik2552d172009-04-03 10:14:19 -04006336 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04006337 if (list_empty(&block_group->list) ||
6338 block_group->ro) {
6339 /*
6340 * someone is removing this block group,
6341 * we can't jump into the have_block_group
6342 * target because our list pointers are not
6343 * valid
6344 */
6345 btrfs_put_block_group(block_group);
6346 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05006347 } else {
Yan, Zhengb742bb82010-05-16 10:46:24 -04006348 index = get_block_group_index(block_group);
Chris Mason44fb5512009-06-04 15:34:51 -04006349 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05006350 }
Josef Bacik2552d172009-04-03 10:14:19 -04006351 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006352 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006353 }
Chris Mason42e70e72008-11-07 18:17:11 -05006354 }
Josef Bacik2552d172009-04-03 10:14:19 -04006355search:
Miao Xie60d2adb2011-09-09 17:34:35 +08006356 have_caching_bg = false;
Josef Bacik80eb2342008-10-29 14:49:05 -04006357 down_read(&space_info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04006358 list_for_each_entry(block_group, &space_info->block_groups[index],
6359 list) {
Josef Bacik6226cb0a2009-04-03 10:14:18 -04006360 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04006361 int cached;
Chris Mason8a1413a2008-11-10 16:13:54 -05006362
Josef Bacik11dfe352009-11-13 20:12:59 +00006363 btrfs_get_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006364 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05006365
Chris Mason83a50de2010-12-13 15:06:46 -05006366 /*
6367 * this can happen if we end up cycling through all the
6368 * raid types, but we want to make sure we only allocate
6369 * for the proper type.
6370 */
David Sterbab6919a52013-04-29 13:39:40 +00006371 if (!block_group_bits(block_group, flags)) {
Chris Mason83a50de2010-12-13 15:06:46 -05006372 u64 extra = BTRFS_BLOCK_GROUP_DUP |
6373 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05006374 BTRFS_BLOCK_GROUP_RAID5 |
6375 BTRFS_BLOCK_GROUP_RAID6 |
Chris Mason83a50de2010-12-13 15:06:46 -05006376 BTRFS_BLOCK_GROUP_RAID10;
6377
6378 /*
6379 * if they asked for extra copies and this block group
6380 * doesn't provide them, bail. This does allow us to
6381 * fill raid0 from raid1.
6382 */
David Sterbab6919a52013-04-29 13:39:40 +00006383 if ((flags & extra) && !(block_group->flags & extra))
Chris Mason83a50de2010-12-13 15:06:46 -05006384 goto loop;
6385 }
6386
Josef Bacik2552d172009-04-03 10:14:19 -04006387have_block_group:
Josef Bacik291c7d22011-11-14 13:52:14 -05006388 cached = block_group_cache_done(block_group);
6389 if (unlikely(!cached)) {
Liu Bof6373bf2012-12-27 09:01:18 +00006390 ret = cache_block_group(block_group, 0);
Chris Mason1d4284b2012-03-28 20:31:37 -04006391 BUG_ON(ret < 0);
6392 ret = 0;
Josef Bacikea6a4782008-11-20 12:16:16 -05006393 }
6394
Josef Bacik36cce922013-08-05 11:15:21 -04006395 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
6396 goto loop;
Josef Bacikea6a4782008-11-20 12:16:16 -05006397 if (unlikely(block_group->ro))
Josef Bacik2552d172009-04-03 10:14:19 -04006398 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006399
Josef Bacik0a243252009-09-11 16:11:20 -04006400 /*
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006401 * Ok we want to try and use the cluster allocator, so
6402 * lets look there
Josef Bacik0a243252009-09-11 16:11:20 -04006403 */
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006404 if (last_ptr) {
Miao Xie215a63d2014-01-15 20:00:56 +08006405 struct btrfs_block_group_cache *used_block_group;
Chris Mason8de972b2013-01-04 15:39:43 -05006406 unsigned long aligned_cluster;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006407 /*
6408 * the refill lock keeps out other
6409 * people trying to start a new cluster
6410 */
6411 spin_lock(&last_ptr->refill_lock);
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006412 used_block_group = last_ptr->block_group;
6413 if (used_block_group != block_group &&
6414 (!used_block_group ||
6415 used_block_group->ro ||
Miao Xie215a63d2014-01-15 20:00:56 +08006416 !block_group_bits(used_block_group, flags)))
Chris Mason44fb5512009-06-04 15:34:51 -04006417 goto refill_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -04006418
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006419 if (used_block_group != block_group)
6420 btrfs_get_block_group(used_block_group);
6421
6422 offset = btrfs_alloc_from_cluster(used_block_group,
Miao Xiea4820392013-09-09 13:19:42 +08006423 last_ptr,
6424 num_bytes,
6425 used_block_group->key.objectid,
6426 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006427 if (offset) {
6428 /* we have a block, we're done */
6429 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05006430 trace_btrfs_reserve_extent_cluster(root,
Miao Xie89d43462014-01-15 20:00:57 +08006431 used_block_group,
6432 search_start, num_bytes);
Miao Xie215a63d2014-01-15 20:00:56 +08006433 if (used_block_group != block_group) {
6434 btrfs_put_block_group(block_group);
6435 block_group = used_block_group;
6436 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006437 goto checks;
6438 }
6439
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006440 WARN_ON(last_ptr->block_group != used_block_group);
Miao Xie215a63d2014-01-15 20:00:56 +08006441 if (used_block_group != block_group)
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006442 btrfs_put_block_group(used_block_group);
Chris Mason44fb5512009-06-04 15:34:51 -04006443refill_cluster:
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006444 /* If we are on LOOP_NO_EMPTY_SIZE, we can't
6445 * set up a new clusters, so lets just skip it
6446 * and let the allocator find whatever block
6447 * it can find. If we reach this point, we
6448 * will have tried the cluster allocator
6449 * plenty of times and not have found
6450 * anything, so we are likely way too
6451 * fragmented for the clustering stuff to find
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006452 * anything.
6453 *
6454 * However, if the cluster is taken from the
6455 * current block group, release the cluster
6456 * first, so that we stand a better chance of
6457 * succeeding in the unclustered
6458 * allocation. */
6459 if (loop >= LOOP_NO_EMPTY_SIZE &&
6460 last_ptr->block_group != block_group) {
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006461 spin_unlock(&last_ptr->refill_lock);
6462 goto unclustered_alloc;
6463 }
6464
Chris Masonfa9c0d792009-04-03 09:47:43 -04006465 /*
6466 * this cluster didn't work out, free it and
6467 * start over
6468 */
6469 btrfs_return_cluster_to_free_space(NULL, last_ptr);
6470
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006471 if (loop >= LOOP_NO_EMPTY_SIZE) {
6472 spin_unlock(&last_ptr->refill_lock);
6473 goto unclustered_alloc;
6474 }
6475
Chris Mason8de972b2013-01-04 15:39:43 -05006476 aligned_cluster = max_t(unsigned long,
6477 empty_cluster + empty_size,
6478 block_group->full_stripe_len);
6479
Chris Masonfa9c0d792009-04-03 09:47:43 -04006480 /* allocate a cluster in this block group */
Josef Bacik00361582013-08-14 14:02:47 -04006481 ret = btrfs_find_space_cluster(root, block_group,
6482 last_ptr, search_start,
6483 num_bytes,
6484 aligned_cluster);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006485 if (ret == 0) {
6486 /*
6487 * now pull our allocation out of this
6488 * cluster
6489 */
6490 offset = btrfs_alloc_from_cluster(block_group,
Miao Xiea4820392013-09-09 13:19:42 +08006491 last_ptr,
6492 num_bytes,
6493 search_start,
6494 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006495 if (offset) {
6496 /* we found one, proceed */
6497 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05006498 trace_btrfs_reserve_extent_cluster(root,
6499 block_group, search_start,
6500 num_bytes);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006501 goto checks;
6502 }
Josef Bacik0a243252009-09-11 16:11:20 -04006503 } else if (!cached && loop > LOOP_CACHING_NOWAIT
6504 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04006505 spin_unlock(&last_ptr->refill_lock);
6506
Josef Bacik0a243252009-09-11 16:11:20 -04006507 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04006508 wait_block_group_cache_progress(block_group,
6509 num_bytes + empty_cluster + empty_size);
6510 goto have_block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006511 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006512
Chris Masonfa9c0d792009-04-03 09:47:43 -04006513 /*
6514 * at this point we either didn't find a cluster
6515 * or we weren't able to allocate a block from our
6516 * cluster. Free the cluster we've been trying
6517 * to use, and go to the next block group
6518 */
Josef Bacik0a243252009-09-11 16:11:20 -04006519 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006520 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04006521 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006522 }
6523
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006524unclustered_alloc:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006525 spin_lock(&block_group->free_space_ctl->tree_lock);
6526 if (cached &&
6527 block_group->free_space_ctl->free_space <
6528 num_bytes + empty_cluster + empty_size) {
Miao Xiea4820392013-09-09 13:19:42 +08006529 if (block_group->free_space_ctl->free_space >
6530 max_extent_size)
6531 max_extent_size =
6532 block_group->free_space_ctl->free_space;
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006533 spin_unlock(&block_group->free_space_ctl->tree_lock);
6534 goto loop;
6535 }
6536 spin_unlock(&block_group->free_space_ctl->tree_lock);
6537
Josef Bacik6226cb0a2009-04-03 10:14:18 -04006538 offset = btrfs_find_space_for_alloc(block_group, search_start,
Miao Xiea4820392013-09-09 13:19:42 +08006539 num_bytes, empty_size,
6540 &max_extent_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006541 /*
6542 * If we didn't find a chunk, and we haven't failed on this
6543 * block group before, and this block group is in the middle of
6544 * caching and we are ok with waiting, then go ahead and wait
6545 * for progress to be made, and set failed_alloc to true.
6546 *
6547 * If failed_alloc is true then we've already waited on this
6548 * block group once and should move on to the next block group.
6549 */
6550 if (!offset && !failed_alloc && !cached &&
6551 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04006552 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006553 num_bytes + empty_size);
6554 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04006555 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006556 } else if (!offset) {
Miao Xie60d2adb2011-09-09 17:34:35 +08006557 if (!cached)
6558 have_caching_bg = true;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006559 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04006560 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006561checks:
Miao Xie215a63d2014-01-15 20:00:56 +08006562 search_start = stripe_align(root, block_group,
David Woodhouse53b381b2013-01-29 18:40:14 -05006563 offset, num_bytes);
Chris Masone37c9e62007-05-09 20:13:14 -04006564
Josef Bacik2552d172009-04-03 10:14:19 -04006565 /* move on to the next group */
6566 if (search_start + num_bytes >
Miao Xie215a63d2014-01-15 20:00:56 +08006567 block_group->key.objectid + block_group->key.offset) {
6568 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04006569 goto loop;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04006570 }
Josef Bacik80eb2342008-10-29 14:49:05 -04006571
Josef Bacik6226cb0a2009-04-03 10:14:18 -04006572 if (offset < search_start)
Miao Xie215a63d2014-01-15 20:00:56 +08006573 btrfs_add_free_space(block_group, offset,
Josef Bacik6226cb0a2009-04-03 10:14:18 -04006574 search_start - offset);
6575 BUG_ON(offset > search_start);
6576
Miao Xie215a63d2014-01-15 20:00:56 +08006577 ret = btrfs_update_reserved_bytes(block_group, num_bytes,
Josef Bacikfb25e912011-07-26 17:00:46 -04006578 alloc_type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006579 if (ret == -EAGAIN) {
Miao Xie215a63d2014-01-15 20:00:56 +08006580 btrfs_add_free_space(block_group, offset, num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006581 goto loop;
6582 }
Yan Zheng11833d62009-09-11 16:11:19 -04006583
Josef Bacik2552d172009-04-03 10:14:19 -04006584 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006585 ins->objectid = search_start;
6586 ins->offset = num_bytes;
6587
Josef Bacik3f7de032011-11-10 08:29:20 -05006588 trace_btrfs_reserve_extent(orig_root, block_group,
6589 search_start, num_bytes);
Josef Bacikd82a6f12011-05-11 15:26:06 -04006590 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006591 break;
6592loop:
Josef Bacik0a243252009-09-11 16:11:20 -04006593 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006594 failed_alloc = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04006595 BUG_ON(index != get_block_group_index(block_group));
Chris Masonfa9c0d792009-04-03 09:47:43 -04006596 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006597 }
6598 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05006599
Miao Xie60d2adb2011-09-09 17:34:35 +08006600 if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg)
6601 goto search;
6602
Yan, Zhengb742bb82010-05-16 10:46:24 -04006603 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
6604 goto search;
6605
Josef Bacik285ff5a2012-01-13 15:27:45 -05006606 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05006607 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
6608 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04006609 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
6610 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
6611 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
6612 * again
Chris Masonfa9c0d792009-04-03 09:47:43 -04006613 */
Josef Bacik723bda22011-05-27 16:11:38 -04006614 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) {
Yan, Zhengb742bb82010-05-16 10:46:24 -04006615 index = 0;
Josef Bacik723bda22011-05-27 16:11:38 -04006616 loop++;
Josef Bacik817d52f2009-07-13 21:29:25 -04006617 if (loop == LOOP_ALLOC_CHUNK) {
Josef Bacik00361582013-08-14 14:02:47 -04006618 struct btrfs_trans_handle *trans;
6619
6620 trans = btrfs_join_transaction(root);
6621 if (IS_ERR(trans)) {
6622 ret = PTR_ERR(trans);
6623 goto out;
6624 }
6625
David Sterbab6919a52013-04-29 13:39:40 +00006626 ret = do_chunk_alloc(trans, root, flags,
Josef Bacikea658ba2012-09-11 16:57:25 -04006627 CHUNK_ALLOC_FORCE);
6628 /*
6629 * Do not bail out on ENOSPC since we
6630 * can do more things.
6631 */
Josef Bacik00361582013-08-14 14:02:47 -04006632 if (ret < 0 && ret != -ENOSPC)
Josef Bacikea658ba2012-09-11 16:57:25 -04006633 btrfs_abort_transaction(trans,
6634 root, ret);
Josef Bacik00361582013-08-14 14:02:47 -04006635 else
6636 ret = 0;
6637 btrfs_end_transaction(trans, root);
6638 if (ret)
Josef Bacikea658ba2012-09-11 16:57:25 -04006639 goto out;
Josef Bacik723bda22011-05-27 16:11:38 -04006640 }
6641
6642 if (loop == LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006643 empty_size = 0;
6644 empty_cluster = 0;
6645 }
Chris Mason42e70e72008-11-07 18:17:11 -05006646
Josef Bacik723bda22011-05-27 16:11:38 -04006647 goto search;
Josef Bacik2552d172009-04-03 10:14:19 -04006648 } else if (!ins->objectid) {
6649 ret = -ENOSPC;
Josef Bacikd82a6f12011-05-11 15:26:06 -04006650 } else if (ins->objectid) {
Josef Bacik2552d172009-04-03 10:14:19 -04006651 ret = 0;
6652 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006653out:
Miao Xiea4820392013-09-09 13:19:42 +08006654 if (ret == -ENOSPC)
6655 ins->offset = max_extent_size;
Chris Mason0f70abe2007-02-28 16:46:22 -05006656 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05006657}
Chris Masonec44a352008-04-28 15:29:52 -04006658
Josef Bacik9ed74f22009-09-11 16:12:44 -04006659static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
6660 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04006661{
6662 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb82010-05-16 10:46:24 -04006663 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006664
Josef Bacik9ed74f22009-09-11 16:12:44 -04006665 spin_lock(&info->lock);
Frank Holtonefe120a2013-12-20 11:37:06 -05006666 printk(KERN_INFO "BTRFS: space_info %llu has %llu free, is %sfull\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006667 info->flags,
6668 info->total_bytes - info->bytes_used - info->bytes_pinned -
6669 info->bytes_reserved - info->bytes_readonly,
Chris Masond3977122009-01-05 21:25:51 -05006670 (info->full) ? "" : "not ");
Frank Holtonefe120a2013-12-20 11:37:06 -05006671 printk(KERN_INFO "BTRFS: space_info total=%llu, used=%llu, pinned=%llu, "
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006672 "reserved=%llu, may_use=%llu, readonly=%llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006673 info->total_bytes, info->bytes_used, info->bytes_pinned,
6674 info->bytes_reserved, info->bytes_may_use,
6675 info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006676 spin_unlock(&info->lock);
6677
6678 if (!dump_block_groups)
6679 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006680
Josef Bacik80eb2342008-10-29 14:49:05 -04006681 down_read(&info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04006682again:
6683 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04006684 spin_lock(&cache->lock);
Frank Holtonefe120a2013-12-20 11:37:06 -05006685 printk(KERN_INFO "BTRFS: "
6686 "block group %llu has %llu bytes, "
6687 "%llu used %llu pinned %llu reserved %s\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006688 cache->key.objectid, cache->key.offset,
6689 btrfs_block_group_used(&cache->item), cache->pinned,
6690 cache->reserved, cache->ro ? "[readonly]" : "");
Josef Bacik0f9dd462008-09-23 13:14:11 -04006691 btrfs_dump_free_space(cache, bytes);
6692 spin_unlock(&cache->lock);
6693 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04006694 if (++index < BTRFS_NR_RAID_TYPES)
6695 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04006696 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04006697}
Zheng Yane8569812008-09-26 10:05:48 -04006698
Josef Bacik00361582013-08-14 14:02:47 -04006699int btrfs_reserve_extent(struct btrfs_root *root,
Yan Zheng11833d62009-09-11 16:11:19 -04006700 u64 num_bytes, u64 min_alloc_size,
6701 u64 empty_size, u64 hint_byte,
David Sterbab6919a52013-04-29 13:39:40 +00006702 struct btrfs_key *ins, int is_data)
Chris Masonfec577f2007-02-26 10:40:21 -05006703{
Miao Xie9e622d62012-01-26 15:01:12 -05006704 bool final_tried = false;
David Sterbab6919a52013-04-29 13:39:40 +00006705 u64 flags;
Chris Masonfec577f2007-02-26 10:40:21 -05006706 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04006707
David Sterbab6919a52013-04-29 13:39:40 +00006708 flags = btrfs_get_alloc_profile(root, is_data);
Chris Mason98d20f62008-04-14 09:46:10 -04006709again:
Chris Masondb945352007-10-15 16:15:53 -04006710 WARN_ON(num_bytes < root->sectorsize);
Josef Bacik00361582013-08-14 14:02:47 -04006711 ret = find_free_extent(root, num_bytes, empty_size, hint_byte, ins,
6712 flags);
Chris Mason3b951512008-04-17 11:29:12 -04006713
Miao Xie9e622d62012-01-26 15:01:12 -05006714 if (ret == -ENOSPC) {
Miao Xiea4820392013-09-09 13:19:42 +08006715 if (!final_tried && ins->offset) {
6716 num_bytes = min(num_bytes >> 1, ins->offset);
Zach Brown24542bf2012-11-16 00:04:43 +00006717 num_bytes = round_down(num_bytes, root->sectorsize);
Miao Xie9e622d62012-01-26 15:01:12 -05006718 num_bytes = max(num_bytes, min_alloc_size);
Miao Xie9e622d62012-01-26 15:01:12 -05006719 if (num_bytes == min_alloc_size)
6720 final_tried = true;
6721 goto again;
6722 } else if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
6723 struct btrfs_space_info *sinfo;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006724
David Sterbab6919a52013-04-29 13:39:40 +00006725 sinfo = __find_space_info(root->fs_info, flags);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006726 btrfs_err(root->fs_info, "allocation failed flags %llu, wanted %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006727 flags, num_bytes);
Jeff Mahoney53804282012-03-01 14:56:28 +01006728 if (sinfo)
6729 dump_space_info(sinfo, num_bytes, 1);
Miao Xie9e622d62012-01-26 15:01:12 -05006730 }
Chris Mason925baed2008-06-25 16:01:30 -04006731 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04006732
6733 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006734}
6735
Chris Masone688b7252011-10-31 20:52:39 -04006736static int __btrfs_free_reserved_extent(struct btrfs_root *root,
6737 u64 start, u64 len, int pin)
Chris Mason65b51a02008-08-01 15:11:20 -04006738{
Josef Bacik0f9dd462008-09-23 13:14:11 -04006739 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05006740 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006741
Josef Bacik0f9dd462008-09-23 13:14:11 -04006742 cache = btrfs_lookup_block_group(root->fs_info, start);
6743 if (!cache) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006744 btrfs_err(root->fs_info, "Unable to find block group for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006745 start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04006746 return -ENOSPC;
6747 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05006748
Li Dongyang5378e602011-03-24 10:24:27 +00006749 if (btrfs_test_opt(root, DISCARD))
6750 ret = btrfs_discard_extent(root, start, len, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05006751
Chris Masone688b7252011-10-31 20:52:39 -04006752 if (pin)
6753 pin_down_extent(root, cache, start, len, 1);
6754 else {
6755 btrfs_add_free_space(cache, start, len);
6756 btrfs_update_reserved_bytes(cache, len, RESERVE_FREE);
6757 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006758 btrfs_put_block_group(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04006759
liubo1abe9b82011-03-24 11:18:59 +00006760 trace_btrfs_reserved_extent_free(root, start, len);
6761
Chris Masone6dcd2d2008-07-17 12:53:50 -04006762 return ret;
6763}
6764
Chris Masone688b7252011-10-31 20:52:39 -04006765int btrfs_free_reserved_extent(struct btrfs_root *root,
6766 u64 start, u64 len)
6767{
6768 return __btrfs_free_reserved_extent(root, start, len, 0);
6769}
6770
6771int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root,
6772 u64 start, u64 len)
6773{
6774 return __btrfs_free_reserved_extent(root, start, len, 1);
6775}
6776
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006777static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
6778 struct btrfs_root *root,
6779 u64 parent, u64 root_objectid,
6780 u64 flags, u64 owner, u64 offset,
6781 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006782{
6783 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006784 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006785 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006786 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006787 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006788 struct extent_buffer *leaf;
6789 int type;
6790 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04006791
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006792 if (parent > 0)
6793 type = BTRFS_SHARED_DATA_REF_KEY;
6794 else
6795 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04006796
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006797 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05006798
6799 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00006800 if (!path)
6801 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05006802
Chris Masonb9473432009-03-13 11:00:37 -04006803 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006804 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
6805 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006806 if (ret) {
6807 btrfs_free_path(path);
6808 return ret;
6809 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04006810
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006811 leaf = path->nodes[0];
6812 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05006813 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006814 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
6815 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
6816 btrfs_set_extent_flags(leaf, extent_item,
6817 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05006818
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006819 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
6820 btrfs_set_extent_inline_ref_type(leaf, iref, type);
6821 if (parent > 0) {
6822 struct btrfs_shared_data_ref *ref;
6823 ref = (struct btrfs_shared_data_ref *)(iref + 1);
6824 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
6825 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
6826 } else {
6827 struct btrfs_extent_data_ref *ref;
6828 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
6829 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
6830 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
6831 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
6832 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
6833 }
Chris Mason47e4bb92008-02-01 14:51:59 -05006834
6835 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05006836 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04006837
Liu Boc53d6132012-12-27 09:01:19 +00006838 ret = update_block_group(root, ins->objectid, ins->offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006839 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006840 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006841 ins->objectid, ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05006842 BUG();
6843 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04006844 trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006845 return ret;
6846}
6847
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006848static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
6849 struct btrfs_root *root,
6850 u64 parent, u64 root_objectid,
6851 u64 flags, struct btrfs_disk_key *key,
6852 int level, struct btrfs_key *ins)
6853{
6854 int ret;
6855 struct btrfs_fs_info *fs_info = root->fs_info;
6856 struct btrfs_extent_item *extent_item;
6857 struct btrfs_tree_block_info *block_info;
6858 struct btrfs_extent_inline_ref *iref;
6859 struct btrfs_path *path;
6860 struct extent_buffer *leaf;
Josef Bacik3173a182013-03-07 14:22:04 -05006861 u32 size = sizeof(*extent_item) + sizeof(*iref);
6862 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
6863 SKINNY_METADATA);
6864
6865 if (!skinny_metadata)
6866 size += sizeof(*block_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006867
6868 path = btrfs_alloc_path();
Josef Bacik857cc2f2013-10-07 15:21:08 -04006869 if (!path) {
6870 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
6871 root->leafsize);
Mark Fashehd8926bb2011-07-13 10:38:47 -07006872 return -ENOMEM;
Josef Bacik857cc2f2013-10-07 15:21:08 -04006873 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006874
6875 path->leave_spinning = 1;
6876 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
6877 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006878 if (ret) {
Josef Bacik857cc2f2013-10-07 15:21:08 -04006879 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
6880 root->leafsize);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006881 btrfs_free_path(path);
6882 return ret;
6883 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006884
6885 leaf = path->nodes[0];
6886 extent_item = btrfs_item_ptr(leaf, path->slots[0],
6887 struct btrfs_extent_item);
6888 btrfs_set_extent_refs(leaf, extent_item, 1);
6889 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
6890 btrfs_set_extent_flags(leaf, extent_item,
6891 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006892
Josef Bacik3173a182013-03-07 14:22:04 -05006893 if (skinny_metadata) {
6894 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
6895 } else {
6896 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
6897 btrfs_set_tree_block_key(leaf, block_info, key);
6898 btrfs_set_tree_block_level(leaf, block_info, level);
6899 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
6900 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006901
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006902 if (parent > 0) {
6903 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
6904 btrfs_set_extent_inline_ref_type(leaf, iref,
6905 BTRFS_SHARED_BLOCK_REF_KEY);
6906 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
6907 } else {
6908 btrfs_set_extent_inline_ref_type(leaf, iref,
6909 BTRFS_TREE_BLOCK_REF_KEY);
6910 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
6911 }
6912
6913 btrfs_mark_buffer_dirty(leaf);
6914 btrfs_free_path(path);
6915
Josef Bacik3173a182013-03-07 14:22:04 -05006916 ret = update_block_group(root, ins->objectid, root->leafsize, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006917 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006918 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006919 ins->objectid, ins->offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006920 BUG();
6921 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04006922
6923 trace_btrfs_reserved_extent_alloc(root, ins->objectid, root->leafsize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006924 return ret;
6925}
6926
6927int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
6928 struct btrfs_root *root,
6929 u64 root_objectid, u64 owner,
6930 u64 offset, struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006931{
6932 int ret;
Chris Mason1c2308f2008-09-23 13:14:13 -04006933
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006934 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04006935
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006936 ret = btrfs_add_delayed_data_ref(root->fs_info, trans, ins->objectid,
6937 ins->offset, 0,
6938 root_objectid, owner, offset,
6939 BTRFS_ADD_DELAYED_EXTENT, NULL, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006940 return ret;
6941}
Chris Masone02119d2008-09-05 16:13:11 -04006942
6943/*
6944 * this is used by the tree logging recovery code. It records that
6945 * an extent has been allocated and makes sure to clear the free
6946 * space cache bits as well
6947 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006948int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
6949 struct btrfs_root *root,
6950 u64 root_objectid, u64 owner, u64 offset,
6951 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04006952{
6953 int ret;
6954 struct btrfs_block_group_cache *block_group;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006955
6956 /*
6957 * Mixed block groups will exclude before processing the log so we only
6958 * need to do the exlude dance if this fs isn't mixed.
6959 */
6960 if (!btrfs_fs_incompat(root->fs_info, MIXED_GROUPS)) {
6961 ret = __exclude_logged_extent(root, ins->objectid, ins->offset);
6962 if (ret)
6963 return ret;
6964 }
Chris Masone02119d2008-09-05 16:13:11 -04006965
Chris Masone02119d2008-09-05 16:13:11 -04006966 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006967 if (!block_group)
6968 return -EINVAL;
Yan Zheng11833d62009-09-11 16:11:19 -04006969
Josef Bacikfb25e912011-07-26 17:00:46 -04006970 ret = btrfs_update_reserved_bytes(block_group, ins->offset,
6971 RESERVE_ALLOC_NO_ACCOUNT);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006972 BUG_ON(ret); /* logic error */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006973 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
6974 0, owner, offset, ins, 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006975 btrfs_put_block_group(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04006976 return ret;
6977}
6978
Eric Sandeen48a3b632013-04-25 20:41:01 +00006979static struct extent_buffer *
6980btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
6981 u64 bytenr, u32 blocksize, int level)
Chris Mason65b51a02008-08-01 15:11:20 -04006982{
6983 struct extent_buffer *buf;
6984
6985 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
6986 if (!buf)
6987 return ERR_PTR(-ENOMEM);
6988 btrfs_set_header_generation(buf, trans->transid);
Chris Mason85d4e462011-07-26 16:11:19 -04006989 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04006990 btrfs_tree_lock(buf);
6991 clean_tree_block(trans, root, buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05006992 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
Chris Masonb4ce94d2009-02-04 09:25:08 -05006993
6994 btrfs_set_lock_blocking(buf);
Chris Mason65b51a02008-08-01 15:11:20 -04006995 btrfs_set_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05006996
Chris Masond0c803c2008-09-11 16:17:57 -04006997 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +00006998 /*
6999 * we allow two log transactions at a time, use different
7000 * EXENT bit to differentiate dirty pages.
7001 */
7002 if (root->log_transid % 2 == 0)
7003 set_extent_dirty(&root->dirty_log_pages, buf->start,
7004 buf->start + buf->len - 1, GFP_NOFS);
7005 else
7006 set_extent_new(&root->dirty_log_pages, buf->start,
7007 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond0c803c2008-09-11 16:17:57 -04007008 } else {
7009 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
7010 buf->start + buf->len - 1, GFP_NOFS);
7011 }
Chris Mason65b51a02008-08-01 15:11:20 -04007012 trans->blocks_used++;
Chris Masonb4ce94d2009-02-04 09:25:08 -05007013 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04007014 return buf;
7015}
7016
Yan, Zhengf0486c62010-05-16 10:46:25 -04007017static struct btrfs_block_rsv *
7018use_block_rsv(struct btrfs_trans_handle *trans,
7019 struct btrfs_root *root, u32 blocksize)
7020{
7021 struct btrfs_block_rsv *block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00007022 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007023 int ret;
Miao Xied88033d2013-05-13 13:55:12 +00007024 bool global_updated = false;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007025
7026 block_rsv = get_block_rsv(trans, root);
7027
Miao Xieb586b322013-05-13 13:55:10 +00007028 if (unlikely(block_rsv->size == 0))
7029 goto try_reserve;
Miao Xied88033d2013-05-13 13:55:12 +00007030again:
Yan, Zhengf0486c62010-05-16 10:46:25 -04007031 ret = block_rsv_use_bytes(block_rsv, blocksize);
7032 if (!ret)
7033 return block_rsv;
7034
Miao Xieb586b322013-05-13 13:55:10 +00007035 if (block_rsv->failfast)
7036 return ERR_PTR(ret);
7037
Miao Xied88033d2013-05-13 13:55:12 +00007038 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
7039 global_updated = true;
7040 update_global_block_rsv(root->fs_info);
7041 goto again;
7042 }
7043
Miao Xieb586b322013-05-13 13:55:10 +00007044 if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
7045 static DEFINE_RATELIMIT_STATE(_rs,
7046 DEFAULT_RATELIMIT_INTERVAL * 10,
7047 /*DEFAULT_RATELIMIT_BURST*/ 1);
7048 if (__ratelimit(&_rs))
7049 WARN(1, KERN_DEBUG
Frank Holtonefe120a2013-12-20 11:37:06 -05007050 "BTRFS: block rsv returned %d\n", ret);
Miao Xieb586b322013-05-13 13:55:10 +00007051 }
7052try_reserve:
7053 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
7054 BTRFS_RESERVE_NO_FLUSH);
7055 if (!ret)
7056 return block_rsv;
7057 /*
7058 * If we couldn't reserve metadata bytes try and use some from
Miao Xie5881cfc2013-05-13 13:55:11 +00007059 * the global reserve if its space type is the same as the global
7060 * reservation.
Miao Xieb586b322013-05-13 13:55:10 +00007061 */
Miao Xie5881cfc2013-05-13 13:55:11 +00007062 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
7063 block_rsv->space_info == global_rsv->space_info) {
Miao Xieb586b322013-05-13 13:55:10 +00007064 ret = block_rsv_use_bytes(global_rsv, blocksize);
7065 if (!ret)
7066 return global_rsv;
7067 }
7068 return ERR_PTR(ret);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007069}
7070
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05007071static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
7072 struct btrfs_block_rsv *block_rsv, u32 blocksize)
Yan, Zhengf0486c62010-05-16 10:46:25 -04007073{
7074 block_rsv_add_bytes(block_rsv, blocksize, 0);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05007075 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007076}
7077
Chris Masonfec577f2007-02-26 10:40:21 -05007078/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04007079 * finds a free extent and does all the dirty work required for allocation
7080 * returns the key for the extent through ins, and a tree buffer for
7081 * the first block of the extent through buf.
7082 *
Chris Masonfec577f2007-02-26 10:40:21 -05007083 * returns the tree buffer or NULL.
7084 */
Chris Mason5f39d392007-10-15 16:14:19 -04007085struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007086 struct btrfs_root *root, u32 blocksize,
7087 u64 parent, u64 root_objectid,
7088 struct btrfs_disk_key *key, int level,
Jan Schmidt5581a512012-05-16 17:04:52 +02007089 u64 hint, u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05007090{
Chris Masone2fa7222007-03-12 16:22:34 -04007091 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007092 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04007093 struct extent_buffer *buf;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007094 u64 flags = 0;
7095 int ret;
Josef Bacik3173a182013-03-07 14:22:04 -05007096 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
7097 SKINNY_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007098
7099 block_rsv = use_block_rsv(trans, root, blocksize);
7100 if (IS_ERR(block_rsv))
7101 return ERR_CAST(block_rsv);
7102
Josef Bacik00361582013-08-14 14:02:47 -04007103 ret = btrfs_reserve_extent(root, blocksize, blocksize,
Josef Bacik81c9ad22012-01-18 10:56:06 -05007104 empty_size, hint, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05007105 if (ret) {
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05007106 unuse_block_rsv(root->fs_info, block_rsv, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04007107 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05007108 }
Chris Mason55c69072008-01-09 15:55:33 -05007109
Chris Mason4008c042009-02-12 14:09:45 -05007110 buf = btrfs_init_new_buffer(trans, root, ins.objectid,
7111 blocksize, level);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007112 BUG_ON(IS_ERR(buf)); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007113
7114 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
7115 if (parent == 0)
7116 parent = ins.objectid;
7117 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
7118 } else
7119 BUG_ON(parent > 0);
7120
7121 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
7122 struct btrfs_delayed_extent_op *extent_op;
Miao Xie78a61842012-11-21 02:21:28 +00007123 extent_op = btrfs_alloc_delayed_extent_op();
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007124 BUG_ON(!extent_op); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007125 if (key)
7126 memcpy(&extent_op->key, key, sizeof(extent_op->key));
7127 else
7128 memset(&extent_op->key, 0, sizeof(extent_op->key));
7129 extent_op->flags_to_set = flags;
Josef Bacik3173a182013-03-07 14:22:04 -05007130 if (skinny_metadata)
7131 extent_op->update_key = 0;
7132 else
7133 extent_op->update_key = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007134 extent_op->update_flags = 1;
7135 extent_op->is_data = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04007136 extent_op->level = level;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007137
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007138 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
7139 ins.objectid,
Yan, Zhengf0486c62010-05-16 10:46:25 -04007140 ins.offset, parent, root_objectid,
7141 level, BTRFS_ADD_DELAYED_EXTENT,
Jan Schmidt5581a512012-05-16 17:04:52 +02007142 extent_op, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007143 BUG_ON(ret); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007144 }
Chris Masonfec577f2007-02-26 10:40:21 -05007145 return buf;
7146}
Chris Masona28ec192007-03-06 20:08:01 -05007147
Yan Zheng2c47e6052009-06-27 21:07:35 -04007148struct walk_control {
7149 u64 refs[BTRFS_MAX_LEVEL];
7150 u64 flags[BTRFS_MAX_LEVEL];
7151 struct btrfs_key update_progress;
7152 int stage;
7153 int level;
7154 int shared_level;
7155 int update_ref;
7156 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007157 int reada_slot;
7158 int reada_count;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007159 int for_reloc;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007160};
7161
7162#define DROP_REFERENCE 1
7163#define UPDATE_BACKREF 2
7164
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007165static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
7166 struct btrfs_root *root,
7167 struct walk_control *wc,
7168 struct btrfs_path *path)
7169{
7170 u64 bytenr;
7171 u64 generation;
7172 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007173 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007174 u32 nritems;
7175 u32 blocksize;
7176 struct btrfs_key key;
7177 struct extent_buffer *eb;
7178 int ret;
7179 int slot;
7180 int nread = 0;
7181
7182 if (path->slots[wc->level] < wc->reada_slot) {
7183 wc->reada_count = wc->reada_count * 2 / 3;
7184 wc->reada_count = max(wc->reada_count, 2);
7185 } else {
7186 wc->reada_count = wc->reada_count * 3 / 2;
7187 wc->reada_count = min_t(int, wc->reada_count,
7188 BTRFS_NODEPTRS_PER_BLOCK(root));
7189 }
7190
7191 eb = path->nodes[wc->level];
7192 nritems = btrfs_header_nritems(eb);
7193 blocksize = btrfs_level_size(root, wc->level - 1);
7194
7195 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
7196 if (nread >= wc->reada_count)
7197 break;
7198
7199 cond_resched();
7200 bytenr = btrfs_node_blockptr(eb, slot);
7201 generation = btrfs_node_ptr_generation(eb, slot);
7202
7203 if (slot == path->slots[wc->level])
7204 goto reada;
7205
7206 if (wc->stage == UPDATE_BACKREF &&
7207 generation <= root->root_key.offset)
7208 continue;
7209
Yan, Zheng94fcca92009-10-09 09:25:16 -04007210 /* We don't lock the tree block, it's OK to be racy here */
Josef Bacik3173a182013-03-07 14:22:04 -05007211 ret = btrfs_lookup_extent_info(trans, root, bytenr,
7212 wc->level - 1, 1, &refs,
7213 &flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007214 /* We don't care about errors in readahead. */
7215 if (ret < 0)
7216 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007217 BUG_ON(refs == 0);
7218
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007219 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007220 if (refs == 1)
7221 goto reada;
7222
Yan, Zheng94fcca92009-10-09 09:25:16 -04007223 if (wc->level == 1 &&
7224 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7225 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007226 if (!wc->update_ref ||
7227 generation <= root->root_key.offset)
7228 continue;
7229 btrfs_node_key_to_cpu(eb, &key, slot);
7230 ret = btrfs_comp_cpu_keys(&key,
7231 &wc->update_progress);
7232 if (ret < 0)
7233 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007234 } else {
7235 if (wc->level == 1 &&
7236 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7237 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007238 }
7239reada:
7240 ret = readahead_tree_block(root, bytenr, blocksize,
7241 generation);
7242 if (ret)
7243 break;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007244 nread++;
7245 }
7246 wc->reada_slot = slot;
7247}
7248
Chris Mason9aca1d52007-03-13 11:09:37 -04007249/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007250 * helper to process tree block while walking down the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04007251 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04007252 * when wc->stage == UPDATE_BACKREF, this function updates
7253 * back refs for pointers in the block.
7254 *
7255 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04007256 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007257static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
7258 struct btrfs_root *root,
7259 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007260 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04007261{
7262 int level = wc->level;
7263 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04007264 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
7265 int ret;
7266
7267 if (wc->stage == UPDATE_BACKREF &&
7268 btrfs_header_owner(eb) != root->root_key.objectid)
7269 return 1;
7270
7271 /*
7272 * when reference count of tree block is 1, it won't increase
7273 * again. once full backref flag is set, we never clear it.
7274 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04007275 if (lookup_info &&
7276 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
7277 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007278 BUG_ON(!path->locks[level]);
7279 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05007280 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007281 &wc->refs[level],
7282 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007283 BUG_ON(ret == -ENOMEM);
7284 if (ret)
7285 return ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007286 BUG_ON(wc->refs[level] == 0);
7287 }
7288
Yan Zheng2c47e6052009-06-27 21:07:35 -04007289 if (wc->stage == DROP_REFERENCE) {
7290 if (wc->refs[level] > 1)
7291 return 1;
7292
7293 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04007294 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007295 path->locks[level] = 0;
7296 }
7297 return 0;
7298 }
7299
7300 /* wc->stage == UPDATE_BACKREF */
7301 if (!(wc->flags[level] & flag)) {
7302 BUG_ON(!path->locks[level]);
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007303 ret = btrfs_inc_ref(trans, root, eb, 1, wc->for_reloc);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007304 BUG_ON(ret); /* -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007305 ret = btrfs_dec_ref(trans, root, eb, 0, wc->for_reloc);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007306 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007307 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
Josef Bacikb1c79e02013-05-09 13:49:30 -04007308 eb->len, flag,
7309 btrfs_header_level(eb), 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007310 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007311 wc->flags[level] |= flag;
7312 }
7313
7314 /*
7315 * the block is shared by multiple trees, so it's not good to
7316 * keep the tree lock
7317 */
7318 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04007319 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007320 path->locks[level] = 0;
7321 }
7322 return 0;
7323}
7324
7325/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007326 * helper to process tree block pointer.
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007327 *
7328 * when wc->stage == DROP_REFERENCE, this function checks
7329 * reference count of the block pointed to. if the block
7330 * is shared and we need update back refs for the subtree
7331 * rooted at the block, this function changes wc->stage to
7332 * UPDATE_BACKREF. if the block is shared and there is no
7333 * need to update back, this function drops the reference
7334 * to the block.
7335 *
7336 * NOTE: return value 1 means we should stop walking down.
7337 */
7338static noinline int do_walk_down(struct btrfs_trans_handle *trans,
7339 struct btrfs_root *root,
7340 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007341 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007342{
7343 u64 bytenr;
7344 u64 generation;
7345 u64 parent;
7346 u32 blocksize;
7347 struct btrfs_key key;
7348 struct extent_buffer *next;
7349 int level = wc->level;
7350 int reada = 0;
7351 int ret = 0;
7352
7353 generation = btrfs_node_ptr_generation(path->nodes[level],
7354 path->slots[level]);
7355 /*
7356 * if the lower level block was created before the snapshot
7357 * was created, we know there is no need to update back refs
7358 * for the subtree
7359 */
7360 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04007361 generation <= root->root_key.offset) {
7362 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007363 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007364 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007365
7366 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
7367 blocksize = btrfs_level_size(root, level - 1);
7368
7369 next = btrfs_find_tree_block(root, bytenr, blocksize);
7370 if (!next) {
7371 next = btrfs_find_create_tree_block(root, bytenr, blocksize);
Miao Xie90d2c51d2010-03-25 12:37:12 +00007372 if (!next)
7373 return -ENOMEM;
Josef Bacikb2aaaa32013-07-05 17:05:38 -04007374 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
7375 level - 1);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007376 reada = 1;
7377 }
7378 btrfs_tree_lock(next);
7379 btrfs_set_lock_blocking(next);
7380
Josef Bacik3173a182013-03-07 14:22:04 -05007381 ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007382 &wc->refs[level - 1],
7383 &wc->flags[level - 1]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007384 if (ret < 0) {
7385 btrfs_tree_unlock(next);
7386 return ret;
7387 }
7388
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007389 if (unlikely(wc->refs[level - 1] == 0)) {
7390 btrfs_err(root->fs_info, "Missing references.");
7391 BUG();
7392 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04007393 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007394
Yan, Zheng94fcca92009-10-09 09:25:16 -04007395 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007396 if (wc->refs[level - 1] > 1) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04007397 if (level == 1 &&
7398 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7399 goto skip;
7400
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007401 if (!wc->update_ref ||
7402 generation <= root->root_key.offset)
7403 goto skip;
7404
7405 btrfs_node_key_to_cpu(path->nodes[level], &key,
7406 path->slots[level]);
7407 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
7408 if (ret < 0)
7409 goto skip;
7410
7411 wc->stage = UPDATE_BACKREF;
7412 wc->shared_level = level - 1;
7413 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04007414 } else {
7415 if (level == 1 &&
7416 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7417 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007418 }
7419
Chris Masonb9fab912012-05-06 07:23:47 -04007420 if (!btrfs_buffer_uptodate(next, generation, 0)) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007421 btrfs_tree_unlock(next);
7422 free_extent_buffer(next);
7423 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007424 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007425 }
7426
7427 if (!next) {
7428 if (reada && level == 1)
7429 reada_walk_down(trans, root, wc, path);
7430 next = read_tree_block(root, bytenr, blocksize, generation);
Josef Bacik416bc652013-04-23 14:17:42 -04007431 if (!next || !extent_buffer_uptodate(next)) {
7432 free_extent_buffer(next);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00007433 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04007434 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007435 btrfs_tree_lock(next);
7436 btrfs_set_lock_blocking(next);
7437 }
7438
7439 level--;
7440 BUG_ON(level != btrfs_header_level(next));
7441 path->nodes[level] = next;
7442 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04007443 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007444 wc->level = level;
7445 if (wc->level == 1)
7446 wc->reada_slot = 0;
7447 return 0;
7448skip:
7449 wc->refs[level - 1] = 0;
7450 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007451 if (wc->stage == DROP_REFERENCE) {
7452 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
7453 parent = path->nodes[level]->start;
7454 } else {
7455 BUG_ON(root->root_key.objectid !=
7456 btrfs_header_owner(path->nodes[level]));
7457 parent = 0;
7458 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007459
Yan, Zheng94fcca92009-10-09 09:25:16 -04007460 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007461 root->root_key.objectid, level - 1, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007462 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007463 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007464 btrfs_tree_unlock(next);
7465 free_extent_buffer(next);
Yan, Zheng94fcca92009-10-09 09:25:16 -04007466 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007467 return 1;
7468}
7469
7470/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007471 * helper to process tree block while walking up the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04007472 *
7473 * when wc->stage == DROP_REFERENCE, this function drops
7474 * reference count on the block.
7475 *
7476 * when wc->stage == UPDATE_BACKREF, this function changes
7477 * wc->stage back to DROP_REFERENCE if we changed wc->stage
7478 * to UPDATE_BACKREF previously while processing the block.
7479 *
7480 * NOTE: return value 1 means we should stop walking up.
7481 */
7482static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
7483 struct btrfs_root *root,
7484 struct btrfs_path *path,
7485 struct walk_control *wc)
7486{
Yan, Zhengf0486c62010-05-16 10:46:25 -04007487 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007488 int level = wc->level;
7489 struct extent_buffer *eb = path->nodes[level];
7490 u64 parent = 0;
7491
7492 if (wc->stage == UPDATE_BACKREF) {
7493 BUG_ON(wc->shared_level < level);
7494 if (level < wc->shared_level)
7495 goto out;
7496
Yan Zheng2c47e6052009-06-27 21:07:35 -04007497 ret = find_next_key(path, level + 1, &wc->update_progress);
7498 if (ret > 0)
7499 wc->update_ref = 0;
7500
7501 wc->stage = DROP_REFERENCE;
7502 wc->shared_level = -1;
7503 path->slots[level] = 0;
7504
7505 /*
7506 * check reference count again if the block isn't locked.
7507 * we should start walking down the tree again if reference
7508 * count is one.
7509 */
7510 if (!path->locks[level]) {
7511 BUG_ON(level == 0);
7512 btrfs_tree_lock(eb);
7513 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04007514 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007515
7516 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05007517 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007518 &wc->refs[level],
7519 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007520 if (ret < 0) {
7521 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00007522 path->locks[level] = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007523 return ret;
7524 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007525 BUG_ON(wc->refs[level] == 0);
7526 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04007527 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00007528 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007529 return 1;
7530 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007531 }
7532 }
7533
7534 /* wc->stage == DROP_REFERENCE */
7535 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
7536
7537 if (wc->refs[level] == 1) {
7538 if (level == 0) {
7539 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007540 ret = btrfs_dec_ref(trans, root, eb, 1,
7541 wc->for_reloc);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007542 else
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007543 ret = btrfs_dec_ref(trans, root, eb, 0,
7544 wc->for_reloc);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007545 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007546 }
7547 /* make block locked assertion in clean_tree_block happy */
7548 if (!path->locks[level] &&
7549 btrfs_header_generation(eb) == trans->transid) {
7550 btrfs_tree_lock(eb);
7551 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04007552 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007553 }
7554 clean_tree_block(trans, root, eb);
7555 }
7556
7557 if (eb == root->node) {
7558 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
7559 parent = eb->start;
7560 else
7561 BUG_ON(root->root_key.objectid !=
7562 btrfs_header_owner(eb));
7563 } else {
7564 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
7565 parent = path->nodes[level + 1]->start;
7566 else
7567 BUG_ON(root->root_key.objectid !=
7568 btrfs_header_owner(path->nodes[level + 1]));
7569 }
7570
Jan Schmidt5581a512012-05-16 17:04:52 +02007571 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007572out:
7573 wc->refs[level] = 0;
7574 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007575 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007576}
7577
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007578static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
7579 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007580 struct btrfs_path *path,
7581 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04007582{
Yan Zheng2c47e6052009-06-27 21:07:35 -04007583 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007584 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007585 int ret;
7586
Yan Zheng2c47e6052009-06-27 21:07:35 -04007587 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04007588 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007589 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04007590 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007591
Yan Zheng2c47e6052009-06-27 21:07:35 -04007592 if (level == 0)
7593 break;
7594
Yan, Zheng7a7965f2010-02-01 02:41:17 +00007595 if (path->slots[level] >=
7596 btrfs_header_nritems(path->nodes[level]))
7597 break;
7598
Yan, Zheng94fcca92009-10-09 09:25:16 -04007599 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007600 if (ret > 0) {
7601 path->slots[level]++;
7602 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00007603 } else if (ret < 0)
7604 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007605 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007606 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04007607 return 0;
7608}
7609
Chris Masond3977122009-01-05 21:25:51 -05007610static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05007611 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04007612 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007613 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05007614{
Yan Zheng2c47e6052009-06-27 21:07:35 -04007615 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05007616 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04007617
Yan Zheng2c47e6052009-06-27 21:07:35 -04007618 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
7619 while (level < max_level && path->nodes[level]) {
7620 wc->level = level;
7621 if (path->slots[level] + 1 <
7622 btrfs_header_nritems(path->nodes[level])) {
7623 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05007624 return 0;
7625 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007626 ret = walk_up_proc(trans, root, path, wc);
7627 if (ret > 0)
7628 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05007629
Yan Zheng2c47e6052009-06-27 21:07:35 -04007630 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04007631 btrfs_tree_unlock_rw(path->nodes[level],
7632 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007633 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007634 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007635 free_extent_buffer(path->nodes[level]);
7636 path->nodes[level] = NULL;
7637 level++;
Chris Mason20524f02007-03-10 06:35:47 -05007638 }
7639 }
7640 return 1;
7641}
7642
Chris Mason9aca1d52007-03-13 11:09:37 -04007643/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04007644 * drop a subvolume tree.
7645 *
7646 * this function traverses the tree freeing any blocks that only
7647 * referenced by the tree.
7648 *
7649 * when a shared tree block is found. this function decreases its
7650 * reference count by one. if update_ref is true, this function
7651 * also make sure backrefs for the shared block and all lower level
7652 * blocks are properly updated.
David Sterba9d1a2a32013-03-12 15:13:28 +00007653 *
7654 * If called with for_reloc == 0, may exit early with -EAGAIN
Chris Mason9aca1d52007-03-13 11:09:37 -04007655 */
Jeff Mahoney2c536792011-10-03 23:22:41 -04007656int btrfs_drop_snapshot(struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007657 struct btrfs_block_rsv *block_rsv, int update_ref,
7658 int for_reloc)
Chris Mason20524f02007-03-10 06:35:47 -05007659{
Chris Mason5caf2a02007-04-02 11:20:42 -04007660 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007661 struct btrfs_trans_handle *trans;
7662 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04007663 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007664 struct walk_control *wc;
7665 struct btrfs_key key;
7666 int err = 0;
7667 int ret;
7668 int level;
Josef Bacikd29a9f62013-07-17 19:30:20 -04007669 bool root_dropped = false;
Chris Mason20524f02007-03-10 06:35:47 -05007670
Chris Mason5caf2a02007-04-02 11:20:42 -04007671 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00007672 if (!path) {
7673 err = -ENOMEM;
7674 goto out;
7675 }
Chris Mason20524f02007-03-10 06:35:47 -05007676
Yan Zheng2c47e6052009-06-27 21:07:35 -04007677 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07007678 if (!wc) {
7679 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00007680 err = -ENOMEM;
7681 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07007682 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007683
Yan, Zhenga22285a2010-05-16 10:48:46 -04007684 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007685 if (IS_ERR(trans)) {
7686 err = PTR_ERR(trans);
7687 goto out_free;
7688 }
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00007689
Yan, Zheng3fd0a552010-05-16 10:49:59 -04007690 if (block_rsv)
7691 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007692
Chris Mason9f3a7422007-08-07 15:52:19 -04007693 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007694 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007695 path->nodes[level] = btrfs_lock_root_node(root);
7696 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04007697 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04007698 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007699 memset(&wc->update_progress, 0,
7700 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04007701 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04007702 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007703 memcpy(&wc->update_progress, &key,
7704 sizeof(wc->update_progress));
7705
Chris Mason6702ed42007-08-07 16:15:09 -04007706 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007707 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04007708 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007709 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
7710 path->lowest_level = 0;
7711 if (ret < 0) {
7712 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007713 goto out_end_trans;
Chris Mason9f3a7422007-08-07 15:52:19 -04007714 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007715 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007716
Chris Mason7d9eb122008-07-08 14:19:17 -04007717 /*
7718 * unlock our path, this is safe because only this
7719 * function is allowed to delete this snapshot
7720 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007721 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04007722
Yan Zheng2c47e6052009-06-27 21:07:35 -04007723 level = btrfs_header_level(root->node);
7724 while (1) {
7725 btrfs_tree_lock(path->nodes[level]);
7726 btrfs_set_lock_blocking(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04007727 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007728
7729 ret = btrfs_lookup_extent_info(trans, root,
7730 path->nodes[level]->start,
Josef Bacik3173a182013-03-07 14:22:04 -05007731 level, 1, &wc->refs[level],
Yan Zheng2c47e6052009-06-27 21:07:35 -04007732 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007733 if (ret < 0) {
7734 err = ret;
7735 goto out_end_trans;
7736 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007737 BUG_ON(wc->refs[level] == 0);
7738
7739 if (level == root_item->drop_level)
7740 break;
7741
7742 btrfs_tree_unlock(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04007743 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007744 WARN_ON(wc->refs[level] != 1);
7745 level--;
7746 }
7747 }
7748
7749 wc->level = level;
7750 wc->shared_level = -1;
7751 wc->stage = DROP_REFERENCE;
7752 wc->update_ref = update_ref;
7753 wc->keep_locks = 0;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007754 wc->for_reloc = for_reloc;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007755 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007756
7757 while (1) {
David Sterba9d1a2a32013-03-12 15:13:28 +00007758
Yan Zheng2c47e6052009-06-27 21:07:35 -04007759 ret = walk_down_tree(trans, root, path, wc);
7760 if (ret < 0) {
7761 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04007762 break;
7763 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007764
7765 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
7766 if (ret < 0) {
7767 err = ret;
7768 break;
7769 }
7770
7771 if (ret > 0) {
7772 BUG_ON(wc->stage != DROP_REFERENCE);
7773 break;
7774 }
7775
7776 if (wc->stage == DROP_REFERENCE) {
7777 level = wc->level;
7778 btrfs_node_key(path->nodes[level],
7779 &root_item->drop_progress,
7780 path->slots[level]);
7781 root_item->drop_level = level;
7782 }
7783
7784 BUG_ON(wc->level == 0);
Josef Bacik3c8f2422013-07-15 11:57:06 -04007785 if (btrfs_should_end_transaction(trans, tree_root) ||
7786 (!for_reloc && btrfs_need_cleaner_sleep(root))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007787 ret = btrfs_update_root(trans, tree_root,
7788 &root->root_key,
7789 root_item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007790 if (ret) {
7791 btrfs_abort_transaction(trans, tree_root, ret);
7792 err = ret;
7793 goto out_end_trans;
7794 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007795
Yan, Zheng3fd0a552010-05-16 10:49:59 -04007796 btrfs_end_transaction_throttle(trans, tree_root);
Josef Bacik3c8f2422013-07-15 11:57:06 -04007797 if (!for_reloc && btrfs_need_cleaner_sleep(root)) {
Frank Holtonefe120a2013-12-20 11:37:06 -05007798 pr_debug("BTRFS: drop snapshot early exit\n");
Josef Bacik3c8f2422013-07-15 11:57:06 -04007799 err = -EAGAIN;
7800 goto out_free;
7801 }
7802
Yan, Zhenga22285a2010-05-16 10:48:46 -04007803 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007804 if (IS_ERR(trans)) {
7805 err = PTR_ERR(trans);
7806 goto out_free;
7807 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04007808 if (block_rsv)
7809 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04007810 }
Chris Mason20524f02007-03-10 06:35:47 -05007811 }
David Sterbab3b4aa72011-04-21 01:20:15 +02007812 btrfs_release_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007813 if (err)
7814 goto out_end_trans;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007815
7816 ret = btrfs_del_root(trans, tree_root, &root->root_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007817 if (ret) {
7818 btrfs_abort_transaction(trans, tree_root, ret);
7819 goto out_end_trans;
7820 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007821
Yan, Zheng76dda932009-09-21 16:00:26 -04007822 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Miao Xiecb517ea2013-05-15 07:48:19 +00007823 ret = btrfs_find_root(tree_root, &root->root_key, path,
7824 NULL, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007825 if (ret < 0) {
7826 btrfs_abort_transaction(trans, tree_root, ret);
7827 err = ret;
7828 goto out_end_trans;
7829 } else if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05007830 /* if we fail to delete the orphan item this time
7831 * around, it'll get picked up the next time.
7832 *
7833 * The most common failure here is just -ENOENT.
7834 */
7835 btrfs_del_orphan_item(trans, tree_root,
7836 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04007837 }
7838 }
7839
Miao Xie27cdeb72014-04-02 19:51:05 +08007840 if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) {
Miao Xiecb517ea2013-05-15 07:48:19 +00007841 btrfs_drop_and_free_fs_root(tree_root->fs_info, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04007842 } else {
7843 free_extent_buffer(root->node);
7844 free_extent_buffer(root->commit_root);
Miao Xieb0feb9d2013-05-15 07:48:20 +00007845 btrfs_put_fs_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04007846 }
Josef Bacikd29a9f62013-07-17 19:30:20 -04007847 root_dropped = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007848out_end_trans:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04007849 btrfs_end_transaction_throttle(trans, tree_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007850out_free:
Yan Zheng2c47e6052009-06-27 21:07:35 -04007851 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04007852 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00007853out:
Josef Bacikd29a9f62013-07-17 19:30:20 -04007854 /*
7855 * So if we need to stop dropping the snapshot for whatever reason we
7856 * need to make sure to add it back to the dead root list so that we
7857 * keep trying to do the work later. This also cleans up roots if we
7858 * don't have it in the radix (like when we recover after a power fail
7859 * or unmount) so we don't leak memory.
7860 */
Josef Bacikb37b39c2013-07-23 16:57:15 -04007861 if (!for_reloc && root_dropped == false)
Josef Bacikd29a9f62013-07-17 19:30:20 -04007862 btrfs_add_dead_root(root);
Wang Shilong90515e72014-01-07 17:26:58 +08007863 if (err && err != -EAGAIN)
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00007864 btrfs_std_error(root->fs_info, err);
Jeff Mahoney2c536792011-10-03 23:22:41 -04007865 return err;
Chris Mason20524f02007-03-10 06:35:47 -05007866}
Chris Mason9078a3e2007-04-26 16:46:15 -04007867
Yan Zheng2c47e6052009-06-27 21:07:35 -04007868/*
7869 * drop subtree rooted at tree block 'node'.
7870 *
7871 * NOTE: this function will unlock and release tree block 'node'
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007872 * only used by relocation code
Yan Zheng2c47e6052009-06-27 21:07:35 -04007873 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04007874int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
7875 struct btrfs_root *root,
7876 struct extent_buffer *node,
7877 struct extent_buffer *parent)
7878{
7879 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007880 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007881 int level;
7882 int parent_level;
7883 int ret = 0;
7884 int wret;
7885
Yan Zheng2c47e6052009-06-27 21:07:35 -04007886 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
7887
Yan Zhengf82d02d2008-10-29 14:49:05 -04007888 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00007889 if (!path)
7890 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007891
Yan Zheng2c47e6052009-06-27 21:07:35 -04007892 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00007893 if (!wc) {
7894 btrfs_free_path(path);
7895 return -ENOMEM;
7896 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007897
Chris Masonb9447ef2009-03-09 11:45:38 -04007898 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007899 parent_level = btrfs_header_level(parent);
7900 extent_buffer_get(parent);
7901 path->nodes[parent_level] = parent;
7902 path->slots[parent_level] = btrfs_header_nritems(parent);
7903
Chris Masonb9447ef2009-03-09 11:45:38 -04007904 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007905 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007906 path->nodes[level] = node;
7907 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04007908 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007909
7910 wc->refs[parent_level] = 1;
7911 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
7912 wc->level = level;
7913 wc->shared_level = -1;
7914 wc->stage = DROP_REFERENCE;
7915 wc->update_ref = 0;
7916 wc->keep_locks = 1;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007917 wc->for_reloc = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007918 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007919
7920 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007921 wret = walk_down_tree(trans, root, path, wc);
7922 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04007923 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007924 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007925 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04007926
Yan Zheng2c47e6052009-06-27 21:07:35 -04007927 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007928 if (wret < 0)
7929 ret = wret;
7930 if (wret != 0)
7931 break;
7932 }
7933
Yan Zheng2c47e6052009-06-27 21:07:35 -04007934 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007935 btrfs_free_path(path);
7936 return ret;
7937}
7938
Chris Masonec44a352008-04-28 15:29:52 -04007939static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
7940{
7941 u64 num_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03007942 u64 stripped;
Chris Masonec44a352008-04-28 15:29:52 -04007943
Ilya Dryomovfc67c452012-03-27 17:09:17 +03007944 /*
7945 * if restripe for this chunk_type is on pick target profile and
7946 * return, otherwise do the usual balance
7947 */
7948 stripped = get_restripe_target(root->fs_info, flags);
7949 if (stripped)
7950 return extended_to_chunk(stripped);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02007951
Chris Masoncd02dca2010-12-13 14:56:23 -05007952 /*
7953 * we add in the count of missing devices because we want
7954 * to make sure that any RAID levels on a degraded FS
7955 * continue to be honored.
7956 */
7957 num_devices = root->fs_info->fs_devices->rw_devices +
7958 root->fs_info->fs_devices->missing_devices;
7959
Ilya Dryomovfc67c452012-03-27 17:09:17 +03007960 stripped = BTRFS_BLOCK_GROUP_RAID0 |
David Woodhouse53b381b2013-01-29 18:40:14 -05007961 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
Ilya Dryomovfc67c452012-03-27 17:09:17 +03007962 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
7963
Chris Masonec44a352008-04-28 15:29:52 -04007964 if (num_devices == 1) {
7965 stripped |= BTRFS_BLOCK_GROUP_DUP;
7966 stripped = flags & ~stripped;
7967
7968 /* turn raid0 into single device chunks */
7969 if (flags & BTRFS_BLOCK_GROUP_RAID0)
7970 return stripped;
7971
7972 /* turn mirroring into duplication */
7973 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
7974 BTRFS_BLOCK_GROUP_RAID10))
7975 return stripped | BTRFS_BLOCK_GROUP_DUP;
Chris Masonec44a352008-04-28 15:29:52 -04007976 } else {
7977 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04007978 if (flags & stripped)
7979 return flags;
7980
7981 stripped |= BTRFS_BLOCK_GROUP_DUP;
7982 stripped = flags & ~stripped;
7983
7984 /* switch duplicated blocks with raid1 */
7985 if (flags & BTRFS_BLOCK_GROUP_DUP)
7986 return stripped | BTRFS_BLOCK_GROUP_RAID1;
7987
Ilya Dryomove3176ca2012-03-27 17:09:16 +03007988 /* this is drive concat, leave it alone */
Chris Masonec44a352008-04-28 15:29:52 -04007989 }
Ilya Dryomove3176ca2012-03-27 17:09:16 +03007990
Chris Masonec44a352008-04-28 15:29:52 -04007991 return flags;
7992}
7993
Miao Xie199c36e2011-07-15 10:34:36 +00007994static int set_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04007995{
Yan, Zhengf0486c62010-05-16 10:46:25 -04007996 struct btrfs_space_info *sinfo = cache->space_info;
7997 u64 num_bytes;
Miao Xie199c36e2011-07-15 10:34:36 +00007998 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007999 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04008000
Chris Masonc286ac42008-07-22 23:06:41 -04008001
Miao Xie199c36e2011-07-15 10:34:36 +00008002 /*
8003 * We need some metadata space and system metadata space for
8004 * allocating chunks in some corner cases until we force to set
8005 * it to be readonly.
8006 */
8007 if ((sinfo->flags &
8008 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
8009 !force)
8010 min_allocable_bytes = 1 * 1024 * 1024;
8011 else
8012 min_allocable_bytes = 0;
8013
Yan, Zhengf0486c62010-05-16 10:46:25 -04008014 spin_lock(&sinfo->lock);
8015 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00008016
8017 if (cache->ro) {
8018 ret = 0;
8019 goto out;
8020 }
8021
Yan, Zhengf0486c62010-05-16 10:46:25 -04008022 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8023 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04008024
Yan, Zhengf0486c62010-05-16 10:46:25 -04008025 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
Josef Bacik37be25b2011-08-05 10:25:38 -04008026 sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes +
8027 min_allocable_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04008028 sinfo->bytes_readonly += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008029 cache->ro = 1;
8030 ret = 0;
8031 }
WuBo61cfea92011-07-26 03:30:11 +00008032out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04008033 spin_unlock(&cache->lock);
8034 spin_unlock(&sinfo->lock);
8035 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04008036}
8037
Yan, Zhengf0486c62010-05-16 10:46:25 -04008038int btrfs_set_block_group_ro(struct btrfs_root *root,
8039 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008040
8041{
Yan, Zhengf0486c62010-05-16 10:46:25 -04008042 struct btrfs_trans_handle *trans;
8043 u64 alloc_flags;
8044 int ret;
8045
8046 BUG_ON(cache->ro);
8047
Josef Bacik7a7eaa42011-04-13 12:54:33 -04008048 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008049 if (IS_ERR(trans))
8050 return PTR_ERR(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008051
8052 alloc_flags = update_block_group_flags(root, cache->flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008053 if (alloc_flags != cache->flags) {
Josef Bacik698d0082012-09-12 14:08:47 -04008054 ret = do_chunk_alloc(trans, root, alloc_flags,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008055 CHUNK_ALLOC_FORCE);
8056 if (ret < 0)
8057 goto out;
8058 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008059
Miao Xie199c36e2011-07-15 10:34:36 +00008060 ret = set_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008061 if (!ret)
8062 goto out;
8063 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
Josef Bacik698d0082012-09-12 14:08:47 -04008064 ret = do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04008065 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008066 if (ret < 0)
8067 goto out;
Miao Xie199c36e2011-07-15 10:34:36 +00008068 ret = set_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008069out:
8070 btrfs_end_transaction(trans, root);
8071 return ret;
8072}
8073
Chris Masonc87f08c2011-02-16 13:57:04 -05008074int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
8075 struct btrfs_root *root, u64 type)
8076{
8077 u64 alloc_flags = get_alloc_profile(root, type);
Josef Bacik698d0082012-09-12 14:08:47 -04008078 return do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04008079 CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05008080}
8081
Miao Xie6d07bce2011-01-05 10:07:31 +00008082/*
8083 * helper to account the unused space of all the readonly block group in the
8084 * list. takes mirrors into account.
8085 */
8086static u64 __btrfs_get_ro_block_group_free_space(struct list_head *groups_list)
8087{
8088 struct btrfs_block_group_cache *block_group;
8089 u64 free_bytes = 0;
8090 int factor;
8091
8092 list_for_each_entry(block_group, groups_list, list) {
8093 spin_lock(&block_group->lock);
8094
8095 if (!block_group->ro) {
8096 spin_unlock(&block_group->lock);
8097 continue;
8098 }
8099
8100 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
8101 BTRFS_BLOCK_GROUP_RAID10 |
8102 BTRFS_BLOCK_GROUP_DUP))
8103 factor = 2;
8104 else
8105 factor = 1;
8106
8107 free_bytes += (block_group->key.offset -
8108 btrfs_block_group_used(&block_group->item)) *
8109 factor;
8110
8111 spin_unlock(&block_group->lock);
8112 }
8113
8114 return free_bytes;
8115}
8116
8117/*
8118 * helper to account the unused space of all the readonly block group in the
8119 * space_info. takes mirrors into account.
8120 */
8121u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
8122{
8123 int i;
8124 u64 free_bytes = 0;
8125
8126 spin_lock(&sinfo->lock);
8127
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05308128 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
Miao Xie6d07bce2011-01-05 10:07:31 +00008129 if (!list_empty(&sinfo->block_groups[i]))
8130 free_bytes += __btrfs_get_ro_block_group_free_space(
8131 &sinfo->block_groups[i]);
8132
8133 spin_unlock(&sinfo->lock);
8134
8135 return free_bytes;
8136}
8137
Jeff Mahoney143bede2012-03-01 14:56:26 +01008138void btrfs_set_block_group_rw(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04008139 struct btrfs_block_group_cache *cache)
8140{
8141 struct btrfs_space_info *sinfo = cache->space_info;
8142 u64 num_bytes;
8143
8144 BUG_ON(!cache->ro);
8145
8146 spin_lock(&sinfo->lock);
8147 spin_lock(&cache->lock);
8148 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8149 cache->bytes_super - btrfs_block_group_used(&cache->item);
8150 sinfo->bytes_readonly -= num_bytes;
8151 cache->ro = 0;
8152 spin_unlock(&cache->lock);
8153 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008154}
8155
Josef Bacikba1bf482009-09-11 16:11:19 -04008156/*
8157 * checks to see if its even possible to relocate this block group.
8158 *
8159 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
8160 * ok to go ahead and try.
8161 */
8162int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04008163{
Zheng Yan1a40e232008-09-26 10:09:34 -04008164 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04008165 struct btrfs_space_info *space_info;
8166 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
8167 struct btrfs_device *device;
Josef Bacik6df9a952013-06-27 13:22:46 -04008168 struct btrfs_trans_handle *trans;
liubocdcb7252011-08-03 10:15:25 +00008169 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04008170 u64 dev_min = 1;
8171 u64 dev_nr = 0;
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008172 u64 target;
liubocdcb7252011-08-03 10:15:25 +00008173 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04008174 int full = 0;
8175 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05008176
Josef Bacikba1bf482009-09-11 16:11:19 -04008177 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04008178
Josef Bacikba1bf482009-09-11 16:11:19 -04008179 /* odd, couldn't find the block group, leave it alone */
8180 if (!block_group)
8181 return -1;
Chris Masonedbd8d42007-12-21 16:27:24 -05008182
liubocdcb7252011-08-03 10:15:25 +00008183 min_free = btrfs_block_group_used(&block_group->item);
8184
Josef Bacikba1bf482009-09-11 16:11:19 -04008185 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00008186 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04008187 goto out;
Chris Mason323da792008-05-09 11:46:48 -04008188
Josef Bacikba1bf482009-09-11 16:11:19 -04008189 space_info = block_group->space_info;
8190 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04008191
Josef Bacikba1bf482009-09-11 16:11:19 -04008192 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04008193
Josef Bacikba1bf482009-09-11 16:11:19 -04008194 /*
8195 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04008196 * relocate it unless we're able to allocate a new chunk below.
8197 *
8198 * Otherwise, we need to make sure we have room in the space to handle
8199 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04008200 */
Chris Mason7ce618d2009-09-22 14:48:44 -04008201 if ((space_info->total_bytes != block_group->key.offset) &&
liubocdcb7252011-08-03 10:15:25 +00008202 (space_info->bytes_used + space_info->bytes_reserved +
8203 space_info->bytes_pinned + space_info->bytes_readonly +
8204 min_free < space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04008205 spin_unlock(&space_info->lock);
8206 goto out;
8207 }
8208 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008209
Josef Bacikba1bf482009-09-11 16:11:19 -04008210 /*
8211 * ok we don't have enough space, but maybe we have free space on our
8212 * devices to allocate new chunks for relocation, so loop through our
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008213 * alloc devices and guess if we have enough space. if this block
8214 * group is going to be restriped, run checks against the target
8215 * profile instead of the current one.
Josef Bacikba1bf482009-09-11 16:11:19 -04008216 */
8217 ret = -1;
Chris Mason4313b392008-01-03 09:08:48 -05008218
liubocdcb7252011-08-03 10:15:25 +00008219 /*
8220 * index:
8221 * 0: raid10
8222 * 1: raid1
8223 * 2: dup
8224 * 3: raid0
8225 * 4: single
8226 */
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008227 target = get_restripe_target(root->fs_info, block_group->flags);
8228 if (target) {
Liu Bo31e50222012-11-21 14:18:10 +00008229 index = __get_raid_index(extended_to_chunk(target));
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008230 } else {
8231 /*
8232 * this is just a balance, so if we were marked as full
8233 * we know there is no space for a new chunk
8234 */
8235 if (full)
8236 goto out;
8237
8238 index = get_block_group_index(block_group);
8239 }
8240
Miao Xiee6ec7162013-01-17 05:38:51 +00008241 if (index == BTRFS_RAID_RAID10) {
liubocdcb7252011-08-03 10:15:25 +00008242 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04008243 /* Divide by 2 */
8244 min_free >>= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00008245 } else if (index == BTRFS_RAID_RAID1) {
liubocdcb7252011-08-03 10:15:25 +00008246 dev_min = 2;
Miao Xiee6ec7162013-01-17 05:38:51 +00008247 } else if (index == BTRFS_RAID_DUP) {
Josef Bacik6719db62011-08-20 08:29:51 -04008248 /* Multiply by 2 */
8249 min_free <<= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00008250 } else if (index == BTRFS_RAID_RAID0) {
liubocdcb7252011-08-03 10:15:25 +00008251 dev_min = fs_devices->rw_devices;
Josef Bacik6719db62011-08-20 08:29:51 -04008252 do_div(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00008253 }
8254
Josef Bacik6df9a952013-06-27 13:22:46 -04008255 /* We need to do this so that we can look at pending chunks */
8256 trans = btrfs_join_transaction(root);
8257 if (IS_ERR(trans)) {
8258 ret = PTR_ERR(trans);
8259 goto out;
8260 }
8261
Josef Bacikba1bf482009-09-11 16:11:19 -04008262 mutex_lock(&root->fs_info->chunk_mutex);
8263 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00008264 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04008265
Josef Bacikba1bf482009-09-11 16:11:19 -04008266 /*
8267 * check to make sure we can actually find a chunk with enough
8268 * space to fit our block group in.
8269 */
Stefan Behrens63a212a2012-11-05 18:29:28 +01008270 if (device->total_bytes > device->bytes_used + min_free &&
8271 !device->is_tgtdev_for_dev_replace) {
Josef Bacik6df9a952013-06-27 13:22:46 -04008272 ret = find_free_dev_extent(trans, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00008273 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04008274 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00008275 dev_nr++;
8276
8277 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05008278 break;
liubocdcb7252011-08-03 10:15:25 +00008279
Josef Bacikba1bf482009-09-11 16:11:19 -04008280 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05008281 }
Chris Masonedbd8d42007-12-21 16:27:24 -05008282 }
Josef Bacikba1bf482009-09-11 16:11:19 -04008283 mutex_unlock(&root->fs_info->chunk_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04008284 btrfs_end_transaction(trans, root);
Chris Masonedbd8d42007-12-21 16:27:24 -05008285out:
Josef Bacikba1bf482009-09-11 16:11:19 -04008286 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05008287 return ret;
8288}
8289
Christoph Hellwigb2950862008-12-02 09:54:17 -05008290static int find_first_block_group(struct btrfs_root *root,
8291 struct btrfs_path *path, struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04008292{
Chris Mason925baed2008-06-25 16:01:30 -04008293 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04008294 struct btrfs_key found_key;
8295 struct extent_buffer *leaf;
8296 int slot;
8297
8298 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
8299 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008300 goto out;
8301
Chris Masond3977122009-01-05 21:25:51 -05008302 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04008303 slot = path->slots[0];
8304 leaf = path->nodes[0];
8305 if (slot >= btrfs_header_nritems(leaf)) {
8306 ret = btrfs_next_leaf(root, path);
8307 if (ret == 0)
8308 continue;
8309 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008310 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04008311 break;
8312 }
8313 btrfs_item_key_to_cpu(leaf, &found_key, slot);
8314
8315 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04008316 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
8317 ret = 0;
8318 goto out;
8319 }
Chris Mason0b86a832008-03-24 15:01:56 -04008320 path->slots[0]++;
8321 }
Chris Mason925baed2008-06-25 16:01:30 -04008322out:
Chris Mason0b86a832008-03-24 15:01:56 -04008323 return ret;
8324}
8325
Josef Bacik0af3d002010-06-21 14:48:16 -04008326void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
8327{
8328 struct btrfs_block_group_cache *block_group;
8329 u64 last = 0;
8330
8331 while (1) {
8332 struct inode *inode;
8333
8334 block_group = btrfs_lookup_first_block_group(info, last);
8335 while (block_group) {
8336 spin_lock(&block_group->lock);
8337 if (block_group->iref)
8338 break;
8339 spin_unlock(&block_group->lock);
8340 block_group = next_block_group(info->tree_root,
8341 block_group);
8342 }
8343 if (!block_group) {
8344 if (last == 0)
8345 break;
8346 last = 0;
8347 continue;
8348 }
8349
8350 inode = block_group->inode;
8351 block_group->iref = 0;
8352 block_group->inode = NULL;
8353 spin_unlock(&block_group->lock);
8354 iput(inode);
8355 last = block_group->key.objectid + block_group->key.offset;
8356 btrfs_put_block_group(block_group);
8357 }
8358}
8359
Zheng Yan1a40e232008-09-26 10:09:34 -04008360int btrfs_free_block_groups(struct btrfs_fs_info *info)
8361{
8362 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04008363 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04008364 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04008365 struct rb_node *n;
8366
Josef Bacik9e351cc2014-03-13 15:42:13 -04008367 down_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04008368 while (!list_empty(&info->caching_block_groups)) {
8369 caching_ctl = list_entry(info->caching_block_groups.next,
8370 struct btrfs_caching_control, list);
8371 list_del(&caching_ctl->list);
8372 put_caching_control(caching_ctl);
8373 }
Josef Bacik9e351cc2014-03-13 15:42:13 -04008374 up_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04008375
Zheng Yan1a40e232008-09-26 10:09:34 -04008376 spin_lock(&info->block_group_cache_lock);
8377 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
8378 block_group = rb_entry(n, struct btrfs_block_group_cache,
8379 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04008380 rb_erase(&block_group->cache_node,
8381 &info->block_group_cache_tree);
Yan Zhengd899e052008-10-30 14:25:28 -04008382 spin_unlock(&info->block_group_cache_lock);
8383
Josef Bacik80eb2342008-10-29 14:49:05 -04008384 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04008385 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04008386 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05008387
Josef Bacik817d52f2009-07-13 21:29:25 -04008388 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04008389 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04008390
Josef Bacik3c148742011-02-02 15:53:47 +00008391 /*
8392 * We haven't cached this block group, which means we could
8393 * possibly have excluded extents on this block group.
8394 */
Josef Bacik36cce922013-08-05 11:15:21 -04008395 if (block_group->cached == BTRFS_CACHE_NO ||
8396 block_group->cached == BTRFS_CACHE_ERROR)
Josef Bacik3c148742011-02-02 15:53:47 +00008397 free_excluded_extents(info->extent_root, block_group);
8398
Josef Bacik817d52f2009-07-13 21:29:25 -04008399 btrfs_remove_free_space_cache(block_group);
Josef Bacik11dfe352009-11-13 20:12:59 +00008400 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04008401
8402 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008403 }
8404 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -04008405
8406 /* now that all the block groups are freed, go through and
8407 * free all the space_info structs. This is only called during
8408 * the final stages of unmount, and so we know nobody is
8409 * using them. We call synchronize_rcu() once before we start,
8410 * just to be on the safe side.
8411 */
8412 synchronize_rcu();
8413
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04008414 release_global_block_rsv(info);
8415
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05308416 while (!list_empty(&info->space_info)) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008417 int i;
8418
Chris Mason4184ea72009-03-10 12:39:20 -04008419 space_info = list_entry(info->space_info.next,
8420 struct btrfs_space_info,
8421 list);
David Sterbab069e0c2013-02-08 21:28:17 +00008422 if (btrfs_test_opt(info->tree_root, ENOSPC_DEBUG)) {
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05308423 if (WARN_ON(space_info->bytes_pinned > 0 ||
David Sterbab069e0c2013-02-08 21:28:17 +00008424 space_info->bytes_reserved > 0 ||
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05308425 space_info->bytes_may_use > 0)) {
David Sterbab069e0c2013-02-08 21:28:17 +00008426 dump_space_info(space_info, 0, 0);
8427 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008428 }
Chris Mason4184ea72009-03-10 12:39:20 -04008429 list_del(&space_info->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008430 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
8431 struct kobject *kobj;
8432 kobj = &space_info->block_group_kobjs[i];
8433 if (kobj->parent) {
8434 kobject_del(kobj);
8435 kobject_put(kobj);
8436 }
8437 }
8438 kobject_del(&space_info->kobj);
8439 kobject_put(&space_info->kobj);
Chris Mason4184ea72009-03-10 12:39:20 -04008440 }
Zheng Yan1a40e232008-09-26 10:09:34 -04008441 return 0;
8442}
8443
Yan, Zhengb742bb82010-05-16 10:46:24 -04008444static void __link_block_group(struct btrfs_space_info *space_info,
8445 struct btrfs_block_group_cache *cache)
8446{
8447 int index = get_block_group_index(cache);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -04008448 bool first = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04008449
8450 down_write(&space_info->groups_sem);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -04008451 if (list_empty(&space_info->block_groups[index]))
8452 first = true;
8453 list_add_tail(&cache->list, &space_info->block_groups[index]);
8454 up_write(&space_info->groups_sem);
8455
8456 if (first) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008457 struct kobject *kobj = &space_info->block_group_kobjs[index];
8458 int ret;
8459
8460 kobject_get(&space_info->kobj); /* put in release */
Miao Xie536cd962013-12-17 12:01:12 +08008461 ret = kobject_add(kobj, &space_info->kobj, "%s",
8462 get_raid_name(index));
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008463 if (ret) {
Frank Holtonefe120a2013-12-20 11:37:06 -05008464 pr_warn("BTRFS: failed to add kobject for block cache. ignoring.\n");
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008465 kobject_put(&space_info->kobj);
8466 }
8467 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04008468}
8469
Miao Xie920e4a52014-01-15 20:00:55 +08008470static struct btrfs_block_group_cache *
8471btrfs_create_block_group_cache(struct btrfs_root *root, u64 start, u64 size)
8472{
8473 struct btrfs_block_group_cache *cache;
8474
8475 cache = kzalloc(sizeof(*cache), GFP_NOFS);
8476 if (!cache)
8477 return NULL;
8478
8479 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
8480 GFP_NOFS);
8481 if (!cache->free_space_ctl) {
8482 kfree(cache);
8483 return NULL;
8484 }
8485
8486 cache->key.objectid = start;
8487 cache->key.offset = size;
8488 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
8489
8490 cache->sectorsize = root->sectorsize;
8491 cache->fs_info = root->fs_info;
8492 cache->full_stripe_len = btrfs_full_stripe_len(root,
8493 &root->fs_info->mapping_tree,
8494 start);
8495 atomic_set(&cache->count, 1);
8496 spin_lock_init(&cache->lock);
8497 INIT_LIST_HEAD(&cache->list);
8498 INIT_LIST_HEAD(&cache->cluster_list);
8499 INIT_LIST_HEAD(&cache->new_bg_list);
8500 btrfs_init_free_space_ctl(cache);
8501
8502 return cache;
8503}
8504
Chris Mason9078a3e2007-04-26 16:46:15 -04008505int btrfs_read_block_groups(struct btrfs_root *root)
8506{
8507 struct btrfs_path *path;
8508 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04008509 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04008510 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04008511 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04008512 struct btrfs_key key;
8513 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04008514 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -04008515 int need_clear = 0;
8516 u64 cache_gen;
Chris Mason96b51792007-10-15 16:15:19 -04008517
Chris Masonbe744172007-05-06 10:15:01 -04008518 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04008519 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04008520 key.offset = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04008521 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason9078a3e2007-04-26 16:46:15 -04008522 path = btrfs_alloc_path();
8523 if (!path)
8524 return -ENOMEM;
Josef Bacik026fd312011-05-13 10:32:11 -04008525 path->reada = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04008526
David Sterba6c417612011-04-13 15:41:04 +02008527 cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
Josef Bacik73bc1872011-10-03 14:07:49 -04008528 if (btrfs_test_opt(root, SPACE_CACHE) &&
David Sterba6c417612011-04-13 15:41:04 +02008529 btrfs_super_generation(root->fs_info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -04008530 need_clear = 1;
Josef Bacik88c2ba32010-09-21 14:21:34 -04008531 if (btrfs_test_opt(root, CLEAR_CACHE))
8532 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -04008533
Chris Masond3977122009-01-05 21:25:51 -05008534 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04008535 ret = find_first_block_group(root, path, &key);
Yan, Zhengb742bb82010-05-16 10:46:24 -04008536 if (ret > 0)
8537 break;
Chris Mason0b86a832008-03-24 15:01:56 -04008538 if (ret != 0)
8539 goto error;
Miao Xie920e4a52014-01-15 20:00:55 +08008540
Chris Mason5f39d392007-10-15 16:14:19 -04008541 leaf = path->nodes[0];
8542 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Miao Xie920e4a52014-01-15 20:00:55 +08008543
8544 cache = btrfs_create_block_group_cache(root, found_key.objectid,
8545 found_key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04008546 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04008547 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008548 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04008549 }
Josef Bacik96303082009-07-13 21:29:25 -04008550
Liu Bocf7c1ef2012-07-06 03:31:34 -06008551 if (need_clear) {
8552 /*
8553 * When we mount with old space cache, we need to
8554 * set BTRFS_DC_CLEAR and set dirty flag.
8555 *
8556 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
8557 * truncate the old free space cache inode and
8558 * setup a new one.
8559 * b) Setting 'dirty flag' makes sure that we flush
8560 * the new space cache info onto disk.
8561 */
Josef Bacik0af3d002010-06-21 14:48:16 -04008562 cache->disk_cache_state = BTRFS_DC_CLEAR;
Liu Bocf7c1ef2012-07-06 03:31:34 -06008563 if (btrfs_test_opt(root, SPACE_CACHE))
8564 cache->dirty = 1;
8565 }
Josef Bacik0af3d002010-06-21 14:48:16 -04008566
Chris Mason5f39d392007-10-15 16:14:19 -04008567 read_extent_buffer(leaf, &cache->item,
8568 btrfs_item_ptr_offset(leaf, path->slots[0]),
8569 sizeof(cache->item));
Miao Xie920e4a52014-01-15 20:00:55 +08008570 cache->flags = btrfs_block_group_flags(&cache->item);
Chris Mason0b86a832008-03-24 15:01:56 -04008571
Chris Mason9078a3e2007-04-26 16:46:15 -04008572 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +02008573 btrfs_release_path(path);
Li Zefan34d52cb2011-03-29 13:46:06 +08008574
Josef Bacik817d52f2009-07-13 21:29:25 -04008575 /*
Josef Bacik3c148742011-02-02 15:53:47 +00008576 * We need to exclude the super stripes now so that the space
8577 * info has super bytes accounted for, otherwise we'll think
8578 * we have more space than we actually do.
8579 */
Josef Bacik835d9742013-03-19 12:13:25 -04008580 ret = exclude_super_stripes(root, cache);
8581 if (ret) {
8582 /*
8583 * We may have excluded something, so call this just in
8584 * case.
8585 */
8586 free_excluded_extents(root, cache);
Miao Xie920e4a52014-01-15 20:00:55 +08008587 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -04008588 goto error;
8589 }
Josef Bacik3c148742011-02-02 15:53:47 +00008590
8591 /*
Josef Bacik817d52f2009-07-13 21:29:25 -04008592 * check for two cases, either we are full, and therefore
8593 * don't need to bother with the caching work since we won't
8594 * find any space, or we are empty, and we can just add all
8595 * the space in and be done with it. This saves us _alot_ of
8596 * time, particularly in the full case.
8597 */
8598 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -04008599 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008600 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik1b2da372009-09-11 16:11:20 -04008601 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04008602 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -04008603 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008604 cache->cached = BTRFS_CACHE_FINISHED;
8605 add_new_free_space(cache, root->fs_info,
8606 found_key.objectid,
8607 found_key.objectid +
8608 found_key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -04008609 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04008610 }
Chris Mason96b51792007-10-15 16:15:19 -04008611
Josef Bacik8c579fe2013-04-02 12:40:42 -04008612 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8613 if (ret) {
8614 btrfs_remove_free_space_cache(cache);
8615 btrfs_put_block_group(cache);
8616 goto error;
8617 }
8618
Chris Mason6324fbf2008-03-24 15:01:59 -04008619 ret = update_space_info(info, cache->flags, found_key.offset,
8620 btrfs_block_group_used(&cache->item),
8621 &space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -04008622 if (ret) {
8623 btrfs_remove_free_space_cache(cache);
8624 spin_lock(&info->block_group_cache_lock);
8625 rb_erase(&cache->cache_node,
8626 &info->block_group_cache_tree);
8627 spin_unlock(&info->block_group_cache_lock);
8628 btrfs_put_block_group(cache);
8629 goto error;
8630 }
8631
Chris Mason6324fbf2008-03-24 15:01:59 -04008632 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -04008633 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008634 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04008635 spin_unlock(&cache->space_info->lock);
8636
Yan, Zhengb742bb82010-05-16 10:46:24 -04008637 __link_block_group(space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04008638
Chris Mason75ccf472008-09-30 19:24:06 -04008639 set_avail_alloc_bits(root->fs_info, cache->flags);
Yan Zheng2b820322008-11-17 21:11:30 -05008640 if (btrfs_chunk_readonly(root, cache->key.objectid))
Miao Xie199c36e2011-07-15 10:34:36 +00008641 set_block_group_ro(cache, 1);
Chris Mason9078a3e2007-04-26 16:46:15 -04008642 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04008643
8644 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
8645 if (!(get_alloc_profile(root, space_info->flags) &
8646 (BTRFS_BLOCK_GROUP_RAID10 |
8647 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05008648 BTRFS_BLOCK_GROUP_RAID5 |
8649 BTRFS_BLOCK_GROUP_RAID6 |
Yan, Zhengb742bb82010-05-16 10:46:24 -04008650 BTRFS_BLOCK_GROUP_DUP)))
8651 continue;
8652 /*
8653 * avoid allocating from un-mirrored block group if there are
8654 * mirrored block groups.
8655 */
chandan1095cc02013-07-16 12:28:56 +05308656 list_for_each_entry(cache,
8657 &space_info->block_groups[BTRFS_RAID_RAID0],
8658 list)
Miao Xie199c36e2011-07-15 10:34:36 +00008659 set_block_group_ro(cache, 1);
chandan1095cc02013-07-16 12:28:56 +05308660 list_for_each_entry(cache,
8661 &space_info->block_groups[BTRFS_RAID_SINGLE],
8662 list)
Miao Xie199c36e2011-07-15 10:34:36 +00008663 set_block_group_ro(cache, 1);
Yan, Zhengb742bb82010-05-16 10:46:24 -04008664 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008665
8666 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -04008667 ret = 0;
8668error:
Chris Mason9078a3e2007-04-26 16:46:15 -04008669 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04008670 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04008671}
Chris Mason6324fbf2008-03-24 15:01:59 -04008672
Josef Bacikea658ba2012-09-11 16:57:25 -04008673void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans,
8674 struct btrfs_root *root)
8675{
8676 struct btrfs_block_group_cache *block_group, *tmp;
8677 struct btrfs_root *extent_root = root->fs_info->extent_root;
8678 struct btrfs_block_group_item item;
8679 struct btrfs_key key;
8680 int ret = 0;
8681
8682 list_for_each_entry_safe(block_group, tmp, &trans->new_bgs,
8683 new_bg_list) {
8684 list_del_init(&block_group->new_bg_list);
8685
8686 if (ret)
8687 continue;
8688
8689 spin_lock(&block_group->lock);
8690 memcpy(&item, &block_group->item, sizeof(item));
8691 memcpy(&key, &block_group->key, sizeof(key));
8692 spin_unlock(&block_group->lock);
8693
8694 ret = btrfs_insert_item(trans, extent_root, &key, &item,
8695 sizeof(item));
8696 if (ret)
8697 btrfs_abort_transaction(trans, extent_root, ret);
Josef Bacik6df9a952013-06-27 13:22:46 -04008698 ret = btrfs_finish_chunk_alloc(trans, extent_root,
8699 key.objectid, key.offset);
8700 if (ret)
8701 btrfs_abort_transaction(trans, extent_root, ret);
Josef Bacikea658ba2012-09-11 16:57:25 -04008702 }
8703}
8704
Chris Mason6324fbf2008-03-24 15:01:59 -04008705int btrfs_make_block_group(struct btrfs_trans_handle *trans,
8706 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04008707 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04008708 u64 size)
8709{
8710 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04008711 struct btrfs_root *extent_root;
8712 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -04008713
8714 extent_root = root->fs_info->extent_root;
Chris Mason6324fbf2008-03-24 15:01:59 -04008715
Miao Xie995946d2014-04-02 19:51:06 +08008716 btrfs_set_log_full_commit(root->fs_info, trans);
Chris Masone02119d2008-09-05 16:13:11 -04008717
Miao Xie920e4a52014-01-15 20:00:55 +08008718 cache = btrfs_create_block_group_cache(root, chunk_offset, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008719 if (!cache)
8720 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +08008721
Chris Mason6324fbf2008-03-24 15:01:59 -04008722 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04008723 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
Chris Mason6324fbf2008-03-24 15:01:59 -04008724 btrfs_set_block_group_flags(&cache->item, type);
8725
Miao Xie920e4a52014-01-15 20:00:55 +08008726 cache->flags = type;
Yan Zheng11833d62009-09-11 16:11:19 -04008727 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008728 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik835d9742013-03-19 12:13:25 -04008729 ret = exclude_super_stripes(root, cache);
8730 if (ret) {
8731 /*
8732 * We may have excluded something, so call this just in
8733 * case.
8734 */
8735 free_excluded_extents(root, cache);
Miao Xie920e4a52014-01-15 20:00:55 +08008736 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -04008737 return ret;
8738 }
Josef Bacik96303082009-07-13 21:29:25 -04008739
Josef Bacik817d52f2009-07-13 21:29:25 -04008740 add_new_free_space(cache, root->fs_info, chunk_offset,
8741 chunk_offset + size);
8742
Yan Zheng11833d62009-09-11 16:11:19 -04008743 free_excluded_extents(root, cache);
8744
Josef Bacik8c579fe2013-04-02 12:40:42 -04008745 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8746 if (ret) {
8747 btrfs_remove_free_space_cache(cache);
8748 btrfs_put_block_group(cache);
8749 return ret;
8750 }
8751
Chris Mason6324fbf2008-03-24 15:01:59 -04008752 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
8753 &cache->space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -04008754 if (ret) {
8755 btrfs_remove_free_space_cache(cache);
8756 spin_lock(&root->fs_info->block_group_cache_lock);
8757 rb_erase(&cache->cache_node,
8758 &root->fs_info->block_group_cache_tree);
8759 spin_unlock(&root->fs_info->block_group_cache_lock);
8760 btrfs_put_block_group(cache);
8761 return ret;
8762 }
Li Zefanc7c144d2011-12-07 10:39:22 +08008763 update_global_block_rsv(root->fs_info);
Josef Bacik1b2da372009-09-11 16:11:20 -04008764
8765 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008766 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04008767 spin_unlock(&cache->space_info->lock);
8768
Yan, Zhengb742bb82010-05-16 10:46:24 -04008769 __link_block_group(cache->space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04008770
Josef Bacikea658ba2012-09-11 16:57:25 -04008771 list_add_tail(&cache->new_bg_list, &trans->new_bgs);
Chris Mason6324fbf2008-03-24 15:01:59 -04008772
Chris Masond18a2c42008-04-04 15:40:00 -04008773 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason925baed2008-06-25 16:01:30 -04008774
Chris Mason6324fbf2008-03-24 15:01:59 -04008775 return 0;
8776}
Zheng Yan1a40e232008-09-26 10:09:34 -04008777
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008778static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
8779{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03008780 u64 extra_flags = chunk_to_extended(flags) &
8781 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008782
Miao Xiede98ced2013-01-29 10:13:12 +00008783 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008784 if (flags & BTRFS_BLOCK_GROUP_DATA)
8785 fs_info->avail_data_alloc_bits &= ~extra_flags;
8786 if (flags & BTRFS_BLOCK_GROUP_METADATA)
8787 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
8788 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
8789 fs_info->avail_system_alloc_bits &= ~extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00008790 write_sequnlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008791}
8792
Zheng Yan1a40e232008-09-26 10:09:34 -04008793int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
8794 struct btrfs_root *root, u64 group_start)
8795{
8796 struct btrfs_path *path;
8797 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -04008798 struct btrfs_free_cluster *cluster;
Josef Bacik0af3d002010-06-21 14:48:16 -04008799 struct btrfs_root *tree_root = root->fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -04008800 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -04008801 struct inode *inode;
Zheng Yan1a40e232008-09-26 10:09:34 -04008802 int ret;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008803 int index;
Josef Bacik89a55892010-10-14 14:52:27 -04008804 int factor;
Zheng Yan1a40e232008-09-26 10:09:34 -04008805
Zheng Yan1a40e232008-09-26 10:09:34 -04008806 root = root->fs_info->extent_root;
8807
8808 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
8809 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -05008810 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -04008811
liubo9f7c43c2011-03-07 02:13:33 +00008812 /*
8813 * Free the reserved super bytes from this block group before
8814 * remove it.
8815 */
8816 free_excluded_extents(root, block_group);
8817
Zheng Yan1a40e232008-09-26 10:09:34 -04008818 memcpy(&key, &block_group->key, sizeof(key));
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008819 index = get_block_group_index(block_group);
Josef Bacik89a55892010-10-14 14:52:27 -04008820 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
8821 BTRFS_BLOCK_GROUP_RAID1 |
8822 BTRFS_BLOCK_GROUP_RAID10))
8823 factor = 2;
8824 else
8825 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04008826
Chris Mason44fb5512009-06-04 15:34:51 -04008827 /* make sure this block group isn't part of an allocation cluster */
8828 cluster = &root->fs_info->data_alloc_cluster;
8829 spin_lock(&cluster->refill_lock);
8830 btrfs_return_cluster_to_free_space(block_group, cluster);
8831 spin_unlock(&cluster->refill_lock);
8832
8833 /*
8834 * make sure this block group isn't part of a metadata
8835 * allocation cluster
8836 */
8837 cluster = &root->fs_info->meta_alloc_cluster;
8838 spin_lock(&cluster->refill_lock);
8839 btrfs_return_cluster_to_free_space(block_group, cluster);
8840 spin_unlock(&cluster->refill_lock);
8841
Zheng Yan1a40e232008-09-26 10:09:34 -04008842 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07008843 if (!path) {
8844 ret = -ENOMEM;
8845 goto out;
8846 }
Zheng Yan1a40e232008-09-26 10:09:34 -04008847
Ilya Dryomov10b2f342011-10-02 13:56:53 +03008848 inode = lookup_free_space_inode(tree_root, block_group, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04008849 if (!IS_ERR(inode)) {
Tsutomu Itohb5324022011-07-19 07:27:20 +00008850 ret = btrfs_orphan_add(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008851 if (ret) {
8852 btrfs_add_delayed_iput(inode);
8853 goto out;
8854 }
Josef Bacik0af3d002010-06-21 14:48:16 -04008855 clear_nlink(inode);
8856 /* One for the block groups ref */
8857 spin_lock(&block_group->lock);
8858 if (block_group->iref) {
8859 block_group->iref = 0;
8860 block_group->inode = NULL;
8861 spin_unlock(&block_group->lock);
8862 iput(inode);
8863 } else {
8864 spin_unlock(&block_group->lock);
8865 }
8866 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -04008867 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04008868 }
8869
8870 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
8871 key.offset = block_group->key.objectid;
8872 key.type = 0;
8873
8874 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
8875 if (ret < 0)
8876 goto out;
8877 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +02008878 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04008879 if (ret == 0) {
8880 ret = btrfs_del_item(trans, tree_root, path);
8881 if (ret)
8882 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02008883 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04008884 }
8885
Yan Zheng3dfdb932009-01-21 10:49:16 -05008886 spin_lock(&root->fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008887 rb_erase(&block_group->cache_node,
8888 &root->fs_info->block_group_cache_tree);
Liu Boa1897fd2012-12-27 09:01:23 +00008889
8890 if (root->fs_info->first_logical_byte == block_group->key.objectid)
8891 root->fs_info->first_logical_byte = (u64)-1;
Yan Zheng3dfdb932009-01-21 10:49:16 -05008892 spin_unlock(&root->fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04008893
Josef Bacik80eb2342008-10-29 14:49:05 -04008894 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04008895 /*
8896 * we must use list_del_init so people can check to see if they
8897 * are still on the list after taking the semaphore
8898 */
8899 list_del_init(&block_group->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008900 if (list_empty(&block_group->space_info->block_groups[index])) {
8901 kobject_del(&block_group->space_info->block_group_kobjs[index]);
8902 kobject_put(&block_group->space_info->block_group_kobjs[index]);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008903 clear_avail_alloc_bits(root->fs_info, block_group->flags);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04008904 }
Josef Bacik80eb2342008-10-29 14:49:05 -04008905 up_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04008906
Josef Bacik817d52f2009-07-13 21:29:25 -04008907 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04008908 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04008909
8910 btrfs_remove_free_space_cache(block_group);
8911
Yan Zhengc146afa2008-11-12 14:34:12 -05008912 spin_lock(&block_group->space_info->lock);
8913 block_group->space_info->total_bytes -= block_group->key.offset;
8914 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -04008915 block_group->space_info->disk_total -= block_group->key.offset * factor;
Yan Zhengc146afa2008-11-12 14:34:12 -05008916 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -04008917
Josef Bacik0af3d002010-06-21 14:48:16 -04008918 memcpy(&key, &block_group->key, sizeof(key));
8919
Chris Mason283bb192009-07-24 16:30:55 -04008920 btrfs_clear_space_info_full(root->fs_info);
Yan Zhengc146afa2008-11-12 14:34:12 -05008921
Chris Masonfa9c0d792009-04-03 09:47:43 -04008922 btrfs_put_block_group(block_group);
8923 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -04008924
8925 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
8926 if (ret > 0)
8927 ret = -EIO;
8928 if (ret < 0)
8929 goto out;
8930
8931 ret = btrfs_del_item(trans, root, path);
8932out:
8933 btrfs_free_path(path);
8934 return ret;
8935}
liuboacce9522011-01-06 19:30:25 +08008936
liuboc59021f2011-03-07 02:13:14 +00008937int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
8938{
8939 struct btrfs_space_info *space_info;
liubo1aba86d2011-04-08 08:44:37 +00008940 struct btrfs_super_block *disk_super;
8941 u64 features;
8942 u64 flags;
8943 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +00008944 int ret;
8945
David Sterba6c417612011-04-13 15:41:04 +02008946 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +00008947 if (!btrfs_super_root(disk_super))
8948 return 1;
liuboc59021f2011-03-07 02:13:14 +00008949
liubo1aba86d2011-04-08 08:44:37 +00008950 features = btrfs_super_incompat_flags(disk_super);
8951 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
8952 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +00008953
liubo1aba86d2011-04-08 08:44:37 +00008954 flags = BTRFS_BLOCK_GROUP_SYSTEM;
8955 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
liuboc59021f2011-03-07 02:13:14 +00008956 if (ret)
liubo1aba86d2011-04-08 08:44:37 +00008957 goto out;
liuboc59021f2011-03-07 02:13:14 +00008958
liubo1aba86d2011-04-08 08:44:37 +00008959 if (mixed) {
8960 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
8961 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
8962 } else {
8963 flags = BTRFS_BLOCK_GROUP_METADATA;
8964 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
8965 if (ret)
8966 goto out;
8967
8968 flags = BTRFS_BLOCK_GROUP_DATA;
8969 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
8970 }
8971out:
liuboc59021f2011-03-07 02:13:14 +00008972 return ret;
8973}
8974
liuboacce9522011-01-06 19:30:25 +08008975int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
8976{
8977 return unpin_extent_range(root, start, end);
8978}
8979
8980int btrfs_error_discard_extent(struct btrfs_root *root, u64 bytenr,
Li Dongyang5378e602011-03-24 10:24:27 +00008981 u64 num_bytes, u64 *actual_bytes)
liuboacce9522011-01-06 19:30:25 +08008982{
Li Dongyang5378e602011-03-24 10:24:27 +00008983 return btrfs_discard_extent(root, bytenr, num_bytes, actual_bytes);
liuboacce9522011-01-06 19:30:25 +08008984}
Li Dongyangf7039b12011-03-24 10:24:28 +00008985
8986int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range)
8987{
8988 struct btrfs_fs_info *fs_info = root->fs_info;
8989 struct btrfs_block_group_cache *cache = NULL;
8990 u64 group_trimmed;
8991 u64 start;
8992 u64 end;
8993 u64 trimmed = 0;
Liu Bo2cac13e2012-02-09 18:17:41 +08008994 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +00008995 int ret = 0;
8996
Liu Bo2cac13e2012-02-09 18:17:41 +08008997 /*
8998 * try to trim all FS space, our block group may start from non-zero.
8999 */
9000 if (range->len == total_bytes)
9001 cache = btrfs_lookup_first_block_group(fs_info, range->start);
9002 else
9003 cache = btrfs_lookup_block_group(fs_info, range->start);
Li Dongyangf7039b12011-03-24 10:24:28 +00009004
9005 while (cache) {
9006 if (cache->key.objectid >= (range->start + range->len)) {
9007 btrfs_put_block_group(cache);
9008 break;
9009 }
9010
9011 start = max(range->start, cache->key.objectid);
9012 end = min(range->start + range->len,
9013 cache->key.objectid + cache->key.offset);
9014
9015 if (end - start >= range->minlen) {
9016 if (!block_group_cache_done(cache)) {
Liu Bof6373bf2012-12-27 09:01:18 +00009017 ret = cache_block_group(cache, 0);
Josef Bacik1be41b72013-06-12 13:56:06 -04009018 if (ret) {
9019 btrfs_put_block_group(cache);
9020 break;
9021 }
9022 ret = wait_block_group_cache_done(cache);
9023 if (ret) {
9024 btrfs_put_block_group(cache);
9025 break;
9026 }
Li Dongyangf7039b12011-03-24 10:24:28 +00009027 }
9028 ret = btrfs_trim_block_group(cache,
9029 &group_trimmed,
9030 start,
9031 end,
9032 range->minlen);
9033
9034 trimmed += group_trimmed;
9035 if (ret) {
9036 btrfs_put_block_group(cache);
9037 break;
9038 }
9039 }
9040
9041 cache = next_block_group(fs_info->tree_root, cache);
9042 }
9043
9044 range->len = trimmed;
9045 return ret;
9046}
Miao Xie8257b2d2014-03-06 13:38:19 +08009047
9048/*
9049 * btrfs_{start,end}_write() is similar to mnt_{want, drop}_write(),
9050 * they are used to prevent the some tasks writing data into the page cache
9051 * by nocow before the subvolume is snapshoted, but flush the data into
9052 * the disk after the snapshot creation.
9053 */
9054void btrfs_end_nocow_write(struct btrfs_root *root)
9055{
9056 percpu_counter_dec(&root->subv_writers->counter);
9057 /*
9058 * Make sure counter is updated before we wake up
9059 * waiters.
9060 */
9061 smp_mb();
9062 if (waitqueue_active(&root->subv_writers->wait))
9063 wake_up(&root->subv_writers->wait);
9064}
9065
9066int btrfs_start_nocow_write(struct btrfs_root *root)
9067{
9068 if (unlikely(atomic_read(&root->will_be_snapshoted)))
9069 return 0;
9070
9071 percpu_counter_inc(&root->subv_writers->counter);
9072 /*
9073 * Make sure counter is updated before we check for snapshot creation.
9074 */
9075 smp_mb();
9076 if (unlikely(atomic_read(&root->will_be_snapshoted))) {
9077 btrfs_end_nocow_write(root);
9078 return 0;
9079 }
9080 return 1;
9081}