blob: d8da538d01fb0a944599f4c4fb53393188a6f98b [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"
Chris Masonfec577f2007-02-26 10:40:21 -050029#include "ctree.h"
30#include "disk-io.h"
31#include "print-tree.h"
Chris Masone089f052007-03-16 16:20:31 -040032#include "transaction.h"
Chris Mason0b86a832008-03-24 15:01:56 -040033#include "volumes.h"
David Woodhouse53b381b2013-01-29 18:40:14 -050034#include "raid56.h"
Chris Mason925baed2008-06-25 16:01:30 -040035#include "locking.h"
Chris Masonfa9c0d792009-04-03 09:47:43 -040036#include "free-space-cache.h"
Miao Xie3fed40c2012-09-13 04:51:36 -060037#include "math.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
Josef Bacikbab39bf2011-06-30 14:42:28 -0400380static 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 */
421 down_read(&fs_info->extent_commit_sem);
422
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 Bacik0a3896d2013-04-19 14:37:26 -0400444 if (need_resched()) {
Josef Bacik589d8ad2011-05-11 17:30:53 -0400445 caching_ctl->progress = last;
Chris Masonff5714c2011-05-28 07:00:39 -0400446 btrfs_release_path(path);
Josef Bacik589d8ad2011-05-11 17:30:53 -0400447 up_read(&fs_info->extent_commit_sem);
448 mutex_unlock(&caching_ctl->mutex);
Yan Zheng11833d62009-09-11 16:11:19 -0400449 cond_resched();
Josef Bacik589d8ad2011-05-11 17:30:53 -0400450 goto again;
451 }
Josef Bacik0a3896d2013-04-19 14:37:26 -0400452
453 ret = btrfs_next_leaf(extent_root, path);
454 if (ret < 0)
455 goto err;
456 if (ret)
457 break;
Josef Bacik589d8ad2011-05-11 17:30:53 -0400458 leaf = path->nodes[0];
459 nritems = btrfs_header_nritems(leaf);
460 continue;
Yan Zheng11833d62009-09-11 16:11:19 -0400461 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400462
Liu Bo52ee28d2013-07-11 17:51:15 +0800463 if (key.objectid < last) {
464 key.objectid = last;
465 key.offset = 0;
466 key.type = BTRFS_EXTENT_ITEM_KEY;
467
468 caching_ctl->progress = last;
469 btrfs_release_path(path);
470 goto next;
471 }
472
Yan Zheng11833d62009-09-11 16:11:19 -0400473 if (key.objectid < block_group->key.objectid) {
474 path->slots[0]++;
Josef Bacik817d52f2009-07-13 21:29:25 -0400475 continue;
Chris Masone37c9e62007-05-09 20:13:14 -0400476 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400477
Chris Masone37c9e62007-05-09 20:13:14 -0400478 if (key.objectid >= block_group->key.objectid +
Josef Bacik0f9dd462008-09-23 13:14:11 -0400479 block_group->key.offset)
Yan7d7d6062007-09-14 16:15:28 -0400480 break;
Yan7d7d6062007-09-14 16:15:28 -0400481
Josef Bacik3173a182013-03-07 14:22:04 -0500482 if (key.type == BTRFS_EXTENT_ITEM_KEY ||
483 key.type == BTRFS_METADATA_ITEM_KEY) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400484 total_found += add_new_free_space(block_group,
485 fs_info, last,
486 key.objectid);
Josef Bacik3173a182013-03-07 14:22:04 -0500487 if (key.type == BTRFS_METADATA_ITEM_KEY)
488 last = key.objectid +
489 fs_info->tree_root->leafsize;
490 else
491 last = key.objectid + key.offset;
Josef Bacik817d52f2009-07-13 21:29:25 -0400492
Yan Zheng11833d62009-09-11 16:11:19 -0400493 if (total_found > (1024 * 1024 * 2)) {
494 total_found = 0;
495 wake_up(&caching_ctl->wait);
496 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400497 }
Chris Masone37c9e62007-05-09 20:13:14 -0400498 path->slots[0]++;
499 }
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400500 ret = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400501
502 total_found += add_new_free_space(block_group, fs_info, last,
503 block_group->key.objectid +
504 block_group->key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -0400505 caching_ctl->progress = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400506
507 spin_lock(&block_group->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400508 block_group->caching_ctl = NULL;
Josef Bacik817d52f2009-07-13 21:29:25 -0400509 block_group->cached = BTRFS_CACHE_FINISHED;
510 spin_unlock(&block_group->lock);
511
Chris Mason54aa1f42007-06-22 14:16:25 -0400512err:
Chris Masone37c9e62007-05-09 20:13:14 -0400513 btrfs_free_path(path);
Yan Zheng276e6802009-07-30 09:40:40 -0400514 up_read(&fs_info->extent_commit_sem);
Josef Bacik817d52f2009-07-13 21:29:25 -0400515
Yan Zheng11833d62009-09-11 16:11:19 -0400516 free_excluded_extents(extent_root, block_group);
517
518 mutex_unlock(&caching_ctl->mutex);
Josef Bacikbab39bf2011-06-30 14:42:28 -0400519out:
Josef Bacik36cce922013-08-05 11:15:21 -0400520 if (ret) {
521 spin_lock(&block_group->lock);
522 block_group->caching_ctl = NULL;
523 block_group->cached = BTRFS_CACHE_ERROR;
524 spin_unlock(&block_group->lock);
525 }
Yan Zheng11833d62009-09-11 16:11:19 -0400526 wake_up(&caching_ctl->wait);
527
528 put_caching_control(caching_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000529 btrfs_put_block_group(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -0400530}
531
Josef Bacik9d66e232010-08-25 16:54:15 -0400532static int cache_block_group(struct btrfs_block_group_cache *cache,
Josef Bacik9d66e232010-08-25 16:54:15 -0400533 int load_cache_only)
Josef Bacik817d52f2009-07-13 21:29:25 -0400534{
Josef Bacik291c7d22011-11-14 13:52:14 -0500535 DEFINE_WAIT(wait);
Yan Zheng11833d62009-09-11 16:11:19 -0400536 struct btrfs_fs_info *fs_info = cache->fs_info;
537 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400538 int ret = 0;
539
Josef Bacik291c7d22011-11-14 13:52:14 -0500540 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100541 if (!caching_ctl)
542 return -ENOMEM;
Josef Bacik291c7d22011-11-14 13:52:14 -0500543
544 INIT_LIST_HEAD(&caching_ctl->list);
545 mutex_init(&caching_ctl->mutex);
546 init_waitqueue_head(&caching_ctl->wait);
547 caching_ctl->block_group = cache;
548 caching_ctl->progress = cache->key.objectid;
549 atomic_set(&caching_ctl->count, 1);
550 caching_ctl->work.func = caching_thread;
551
552 spin_lock(&cache->lock);
553 /*
554 * This should be a rare occasion, but this could happen I think in the
555 * case where one thread starts to load the space cache info, and then
556 * some other thread starts a transaction commit which tries to do an
557 * allocation while the other thread is still loading the space cache
558 * info. The previous loop should have kept us from choosing this block
559 * group, but if we've moved to the state where we will wait on caching
560 * block groups we need to first check if we're doing a fast load here,
561 * so we can wait for it to finish, otherwise we could end up allocating
562 * from a block group who's cache gets evicted for one reason or
563 * another.
564 */
565 while (cache->cached == BTRFS_CACHE_FAST) {
566 struct btrfs_caching_control *ctl;
567
568 ctl = cache->caching_ctl;
569 atomic_inc(&ctl->count);
570 prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE);
571 spin_unlock(&cache->lock);
572
573 schedule();
574
575 finish_wait(&ctl->wait, &wait);
576 put_caching_control(ctl);
577 spin_lock(&cache->lock);
578 }
579
580 if (cache->cached != BTRFS_CACHE_NO) {
581 spin_unlock(&cache->lock);
582 kfree(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400583 return 0;
Josef Bacik291c7d22011-11-14 13:52:14 -0500584 }
585 WARN_ON(cache->caching_ctl);
586 cache->caching_ctl = caching_ctl;
587 cache->cached = BTRFS_CACHE_FAST;
588 spin_unlock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400589
Josef Bacikd53ba472012-04-12 16:03:57 -0400590 if (fs_info->mount_opt & BTRFS_MOUNT_SPACE_CACHE) {
Josef Bacik9d66e232010-08-25 16:54:15 -0400591 ret = load_free_space_cache(fs_info, cache);
592
593 spin_lock(&cache->lock);
594 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500595 cache->caching_ctl = NULL;
Josef Bacik9d66e232010-08-25 16:54:15 -0400596 cache->cached = BTRFS_CACHE_FINISHED;
597 cache->last_byte_to_unpin = (u64)-1;
598 } else {
Josef Bacik291c7d22011-11-14 13:52:14 -0500599 if (load_cache_only) {
600 cache->caching_ctl = NULL;
601 cache->cached = BTRFS_CACHE_NO;
602 } else {
603 cache->cached = BTRFS_CACHE_STARTED;
604 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400605 }
606 spin_unlock(&cache->lock);
Josef Bacik291c7d22011-11-14 13:52:14 -0500607 wake_up(&caching_ctl->wait);
Josef Bacik3c148742011-02-02 15:53:47 +0000608 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500609 put_caching_control(caching_ctl);
Josef Bacik3c148742011-02-02 15:53:47 +0000610 free_excluded_extents(fs_info->extent_root, cache);
Josef Bacik9d66e232010-08-25 16:54:15 -0400611 return 0;
Josef Bacik3c148742011-02-02 15:53:47 +0000612 }
Josef Bacik291c7d22011-11-14 13:52:14 -0500613 } else {
614 /*
615 * We are not going to do the fast caching, set cached to the
616 * appropriate value and wakeup any waiters.
617 */
618 spin_lock(&cache->lock);
619 if (load_cache_only) {
620 cache->caching_ctl = NULL;
621 cache->cached = BTRFS_CACHE_NO;
622 } else {
623 cache->cached = BTRFS_CACHE_STARTED;
624 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400625 spin_unlock(&cache->lock);
Josef Bacik291c7d22011-11-14 13:52:14 -0500626 wake_up(&caching_ctl->wait);
627 }
628
629 if (load_cache_only) {
630 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400631 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400632 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400633
Yan Zheng11833d62009-09-11 16:11:19 -0400634 down_write(&fs_info->extent_commit_sem);
Josef Bacik291c7d22011-11-14 13:52:14 -0500635 atomic_inc(&caching_ctl->count);
Yan Zheng11833d62009-09-11 16:11:19 -0400636 list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
637 up_write(&fs_info->extent_commit_sem);
638
Josef Bacik11dfe352009-11-13 20:12:59 +0000639 btrfs_get_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -0400640
Josef Bacikbab39bf2011-06-30 14:42:28 -0400641 btrfs_queue_worker(&fs_info->caching_workers, &caching_ctl->work);
Josef Bacik817d52f2009-07-13 21:29:25 -0400642
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400643 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -0400644}
645
Josef Bacik0f9dd462008-09-23 13:14:11 -0400646/*
647 * return the block group that starts at or after bytenr
648 */
Chris Masond3977122009-01-05 21:25:51 -0500649static struct btrfs_block_group_cache *
650btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
Chris Mason0ef3e662008-05-24 14:04:53 -0400651{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400652 struct btrfs_block_group_cache *cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400653
Josef Bacik0f9dd462008-09-23 13:14:11 -0400654 cache = block_group_cache_tree_search(info, bytenr, 0);
Chris Mason0ef3e662008-05-24 14:04:53 -0400655
Josef Bacik0f9dd462008-09-23 13:14:11 -0400656 return cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400657}
658
Josef Bacik0f9dd462008-09-23 13:14:11 -0400659/*
Sankar P9f556842009-05-14 13:52:22 -0400660 * return the block group that contains the given bytenr
Josef Bacik0f9dd462008-09-23 13:14:11 -0400661 */
Chris Masond3977122009-01-05 21:25:51 -0500662struct btrfs_block_group_cache *btrfs_lookup_block_group(
663 struct btrfs_fs_info *info,
664 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400665{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400666 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -0400667
Josef Bacik0f9dd462008-09-23 13:14:11 -0400668 cache = block_group_cache_tree_search(info, bytenr, 1);
Chris Mason96b51792007-10-15 16:15:19 -0400669
Josef Bacik0f9dd462008-09-23 13:14:11 -0400670 return cache;
Chris Masonbe744172007-05-06 10:15:01 -0400671}
Chris Mason0b86a832008-03-24 15:01:56 -0400672
Josef Bacik0f9dd462008-09-23 13:14:11 -0400673static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
674 u64 flags)
Chris Mason6324fbf2008-03-24 15:01:59 -0400675{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400676 struct list_head *head = &info->space_info;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400677 struct btrfs_space_info *found;
Chris Mason4184ea72009-03-10 12:39:20 -0400678
Ilya Dryomov52ba6922012-01-16 22:04:47 +0200679 flags &= BTRFS_BLOCK_GROUP_TYPE_MASK;
Yan, Zhengb742bb822010-05-16 10:46:24 -0400680
Chris Mason4184ea72009-03-10 12:39:20 -0400681 rcu_read_lock();
682 list_for_each_entry_rcu(found, head, list) {
Josef Bacik67377732010-09-16 16:19:09 -0400683 if (found->flags & flags) {
Chris Mason4184ea72009-03-10 12:39:20 -0400684 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400685 return found;
Chris Mason4184ea72009-03-10 12:39:20 -0400686 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400687 }
Chris Mason4184ea72009-03-10 12:39:20 -0400688 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400689 return NULL;
Chris Mason6324fbf2008-03-24 15:01:59 -0400690}
691
Chris Mason4184ea72009-03-10 12:39:20 -0400692/*
693 * after adding space to the filesystem, we need to clear the full flags
694 * on all the space infos.
695 */
696void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
697{
698 struct list_head *head = &info->space_info;
699 struct btrfs_space_info *found;
700
701 rcu_read_lock();
702 list_for_each_entry_rcu(found, head, list)
703 found->full = 0;
704 rcu_read_unlock();
705}
706
Chris Masone02119d2008-09-05 16:13:11 -0400707/* simple helper to search for an existing extent at a given offset */
Zheng Yan31840ae2008-09-23 13:14:14 -0400708int btrfs_lookup_extent(struct btrfs_root *root, u64 start, u64 len)
Chris Masone02119d2008-09-05 16:13:11 -0400709{
710 int ret;
711 struct btrfs_key key;
Zheng Yan31840ae2008-09-23 13:14:14 -0400712 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -0400713
Zheng Yan31840ae2008-09-23 13:14:14 -0400714 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700715 if (!path)
716 return -ENOMEM;
717
Chris Masone02119d2008-09-05 16:13:11 -0400718 key.objectid = start;
719 key.offset = len;
Josef Bacik3173a182013-03-07 14:22:04 -0500720 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -0400721 ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path,
722 0, 0);
Josef Bacik3173a182013-03-07 14:22:04 -0500723 if (ret > 0) {
724 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
725 if (key.objectid == start &&
726 key.type == BTRFS_METADATA_ITEM_KEY)
727 ret = 0;
728 }
Zheng Yan31840ae2008-09-23 13:14:14 -0400729 btrfs_free_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -0500730 return ret;
731}
732
Chris Masond8d5f3e2007-12-11 12:42:00 -0500733/*
Josef Bacik3173a182013-03-07 14:22:04 -0500734 * helper function to lookup reference count and flags of a tree block.
Yan, Zhenga22285a2010-05-16 10:48:46 -0400735 *
736 * the head node for delayed ref is used to store the sum of all the
737 * reference count modifications queued up in the rbtree. the head
738 * node may also store the extent flags to set. This way you can check
739 * to see what the reference count and extent flags would be if all of
740 * the delayed refs are not processed.
741 */
742int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
743 struct btrfs_root *root, u64 bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -0500744 u64 offset, int metadata, u64 *refs, u64 *flags)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400745{
746 struct btrfs_delayed_ref_head *head;
747 struct btrfs_delayed_ref_root *delayed_refs;
748 struct btrfs_path *path;
749 struct btrfs_extent_item *ei;
750 struct extent_buffer *leaf;
751 struct btrfs_key key;
752 u32 item_size;
753 u64 num_refs;
754 u64 extent_flags;
755 int ret;
756
Josef Bacik3173a182013-03-07 14:22:04 -0500757 /*
758 * If we don't have skinny metadata, don't bother doing anything
759 * different
760 */
761 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) {
762 offset = root->leafsize;
763 metadata = 0;
764 }
765
Yan, Zhenga22285a2010-05-16 10:48:46 -0400766 path = btrfs_alloc_path();
767 if (!path)
768 return -ENOMEM;
769
Josef Bacik3173a182013-03-07 14:22:04 -0500770 if (metadata) {
771 key.objectid = bytenr;
772 key.type = BTRFS_METADATA_ITEM_KEY;
773 key.offset = offset;
774 } else {
775 key.objectid = bytenr;
776 key.type = BTRFS_EXTENT_ITEM_KEY;
777 key.offset = offset;
778 }
779
Yan, Zhenga22285a2010-05-16 10:48:46 -0400780 if (!trans) {
781 path->skip_locking = 1;
782 path->search_commit_root = 1;
783 }
784again:
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 metadata = 0;
792 if (path->slots[0]) {
793 path->slots[0]--;
794 btrfs_item_key_to_cpu(path->nodes[0], &key,
795 path->slots[0]);
796 if (key.objectid == bytenr &&
797 key.type == BTRFS_EXTENT_ITEM_KEY &&
798 key.offset == root->leafsize)
799 ret = 0;
800 }
801 if (ret) {
802 key.objectid = bytenr;
803 key.type = BTRFS_EXTENT_ITEM_KEY;
804 key.offset = root->leafsize;
805 btrfs_release_path(path);
806 goto again;
807 }
Josef Bacik3173a182013-03-07 14:22:04 -0500808 }
809
Yan, Zhenga22285a2010-05-16 10:48:46 -0400810 if (ret == 0) {
811 leaf = path->nodes[0];
812 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
813 if (item_size >= sizeof(*ei)) {
814 ei = btrfs_item_ptr(leaf, path->slots[0],
815 struct btrfs_extent_item);
816 num_refs = btrfs_extent_refs(leaf, ei);
817 extent_flags = btrfs_extent_flags(leaf, ei);
818 } else {
819#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
820 struct btrfs_extent_item_v0 *ei0;
821 BUG_ON(item_size != sizeof(*ei0));
822 ei0 = btrfs_item_ptr(leaf, path->slots[0],
823 struct btrfs_extent_item_v0);
824 num_refs = btrfs_extent_refs_v0(leaf, ei0);
825 /* FIXME: this isn't correct for data */
826 extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
827#else
828 BUG();
829#endif
830 }
831 BUG_ON(num_refs == 0);
832 } else {
833 num_refs = 0;
834 extent_flags = 0;
835 ret = 0;
836 }
837
838 if (!trans)
839 goto out;
840
841 delayed_refs = &trans->transaction->delayed_refs;
842 spin_lock(&delayed_refs->lock);
843 head = btrfs_find_delayed_ref_head(trans, bytenr);
844 if (head) {
845 if (!mutex_trylock(&head->mutex)) {
846 atomic_inc(&head->node.refs);
847 spin_unlock(&delayed_refs->lock);
848
David Sterbab3b4aa72011-04-21 01:20:15 +0200849 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400850
David Sterba8cc33e52011-05-02 15:29:25 +0200851 /*
852 * Mutex was contended, block until it's released and try
853 * again
854 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400855 mutex_lock(&head->mutex);
856 mutex_unlock(&head->mutex);
857 btrfs_put_delayed_ref(&head->node);
858 goto again;
859 }
860 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;
866 mutex_unlock(&head->mutex);
867 }
868 spin_unlock(&delayed_refs->lock);
869out:
870 WARN_ON(num_refs == 0);
871 if (refs)
872 *refs = num_refs;
873 if (flags)
874 *flags = extent_flags;
875out_free:
876 btrfs_free_path(path);
877 return ret;
878}
879
880/*
Chris Masond8d5f3e2007-12-11 12:42:00 -0500881 * Back reference rules. Back refs have three main goals:
882 *
883 * 1) differentiate between all holders of references to an extent so that
884 * when a reference is dropped we can make sure it was a valid reference
885 * before freeing the extent.
886 *
887 * 2) Provide enough information to quickly find the holders of an extent
888 * if we notice a given block is corrupted or bad.
889 *
890 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
891 * maintenance. This is actually the same as #2, but with a slightly
892 * different use case.
893 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400894 * There are two kinds of back refs. The implicit back refs is optimized
895 * for pointers in non-shared tree blocks. For a given pointer in a block,
896 * back refs of this kind provide information about the block's owner tree
897 * and the pointer's key. These information allow us to find the block by
898 * b-tree searching. The full back refs is for pointers in tree blocks not
899 * referenced by their owner trees. The location of tree block is recorded
900 * in the back refs. Actually the full back refs is generic, and can be
901 * used in all cases the implicit back refs is used. The major shortcoming
902 * of the full back refs is its overhead. Every time a tree block gets
903 * COWed, we have to update back refs entry for all pointers in it.
904 *
905 * For a newly allocated tree block, we use implicit back refs for
906 * pointers in it. This means most tree related operations only involve
907 * implicit back refs. For a tree block created in old transaction, the
908 * only way to drop a reference to it is COW it. So we can detect the
909 * event that tree block loses its owner tree's reference and do the
910 * back refs conversion.
911 *
912 * When a tree block is COW'd through a tree, there are four cases:
913 *
914 * The reference count of the block is one and the tree is the block's
915 * owner tree. Nothing to do in this case.
916 *
917 * The reference count of the block is one and the tree is not the
918 * block's owner tree. In this case, full back refs is used for pointers
919 * in the block. Remove these full back refs, add implicit back refs for
920 * every pointers in the new block.
921 *
922 * The reference count of the block is greater than one and the tree is
923 * the block's owner tree. In this case, implicit back refs is used for
924 * pointers in the block. Add full back refs for every pointers in the
925 * block, increase lower level extents' reference counts. The original
926 * implicit back refs are entailed to the new block.
927 *
928 * The reference count of the block is greater than one and the tree is
929 * not the block's owner tree. Add implicit back refs for every pointer in
930 * the new block, increase lower level extents' reference count.
931 *
932 * Back Reference Key composing:
933 *
934 * The key objectid corresponds to the first byte in the extent,
935 * The key type is used to differentiate between types of back refs.
936 * There are different meanings of the key offset for different types
937 * of back refs.
938 *
Chris Masond8d5f3e2007-12-11 12:42:00 -0500939 * File extents can be referenced by:
940 *
941 * - multiple snapshots, subvolumes, or different generations in one subvol
Zheng Yan31840ae2008-09-23 13:14:14 -0400942 * - different files inside a single subvolume
Chris Masond8d5f3e2007-12-11 12:42:00 -0500943 * - different offsets inside a file (bookend extents in file.c)
944 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400945 * The extent ref structure for the implicit back refs has fields for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500946 *
947 * - Objectid of the subvolume root
Chris Masond8d5f3e2007-12-11 12:42:00 -0500948 * - objectid of the file holding the reference
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400949 * - original offset in the file
950 * - how many bookend extents
Zheng Yan31840ae2008-09-23 13:14:14 -0400951 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400952 * The key offset for the implicit back refs is hash of the first
953 * three fields.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500954 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400955 * The extent ref structure for the full back refs has field for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500956 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400957 * - number of pointers in the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500958 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400959 * The key offset for the implicit back refs is the first byte of
960 * the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500961 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400962 * When a file extent is allocated, The implicit back refs is used.
963 * the fields are filled in:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500964 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400965 * (root_key.objectid, inode objectid, offset in file, 1)
966 *
967 * When a file extent is removed file truncation, we find the
968 * corresponding implicit back refs and check the following fields:
969 *
970 * (btrfs_header_owner(leaf), inode objectid, offset in file)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500971 *
972 * Btree extents can be referenced by:
973 *
974 * - Different subvolumes
Chris Masond8d5f3e2007-12-11 12:42:00 -0500975 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400976 * Both the implicit back refs and the full back refs for tree blocks
977 * only consist of key. The key offset for the implicit back refs is
978 * objectid of block's owner tree. The key offset for the full back refs
979 * is the first byte of parent block.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500980 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400981 * When implicit back refs is used, information about the lowest key and
982 * level of the tree block are required. These information are stored in
983 * tree block info structure.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500984 */
Zheng Yan31840ae2008-09-23 13:14:14 -0400985
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400986#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
987static int convert_extent_item_v0(struct btrfs_trans_handle *trans,
988 struct btrfs_root *root,
989 struct btrfs_path *path,
990 u64 owner, u32 extra_size)
Chris Mason74493f72007-12-11 09:25:06 -0500991{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400992 struct btrfs_extent_item *item;
993 struct btrfs_extent_item_v0 *ei0;
994 struct btrfs_extent_ref_v0 *ref0;
995 struct btrfs_tree_block_info *bi;
Zheng Yan31840ae2008-09-23 13:14:14 -0400996 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400997 struct btrfs_key key;
998 struct btrfs_key found_key;
999 u32 new_size = sizeof(*item);
1000 u64 refs;
Chris Mason74493f72007-12-11 09:25:06 -05001001 int ret;
1002
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001003 leaf = path->nodes[0];
1004 BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0));
Chris Mason74493f72007-12-11 09:25:06 -05001005
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001006 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1007 ei0 = btrfs_item_ptr(leaf, path->slots[0],
1008 struct btrfs_extent_item_v0);
1009 refs = btrfs_extent_refs_v0(leaf, ei0);
1010
1011 if (owner == (u64)-1) {
1012 while (1) {
1013 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1014 ret = btrfs_next_leaf(root, path);
1015 if (ret < 0)
1016 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001017 BUG_ON(ret > 0); /* Corruption */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001018 leaf = path->nodes[0];
1019 }
1020 btrfs_item_key_to_cpu(leaf, &found_key,
1021 path->slots[0]);
1022 BUG_ON(key.objectid != found_key.objectid);
1023 if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) {
1024 path->slots[0]++;
1025 continue;
1026 }
1027 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1028 struct btrfs_extent_ref_v0);
1029 owner = btrfs_ref_objectid_v0(leaf, ref0);
1030 break;
1031 }
1032 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001033 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001034
1035 if (owner < BTRFS_FIRST_FREE_OBJECTID)
1036 new_size += sizeof(*bi);
1037
1038 new_size -= sizeof(*ei0);
1039 ret = btrfs_search_slot(trans, root, &key, path,
1040 new_size + extra_size, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04001041 if (ret < 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001042 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001043 BUG_ON(ret); /* Corruption */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001044
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00001045 btrfs_extend_item(root, path, new_size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001046
1047 leaf = path->nodes[0];
1048 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1049 btrfs_set_extent_refs(leaf, item, refs);
1050 /* FIXME: get real generation */
1051 btrfs_set_extent_generation(leaf, item, 0);
1052 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1053 btrfs_set_extent_flags(leaf, item,
1054 BTRFS_EXTENT_FLAG_TREE_BLOCK |
1055 BTRFS_BLOCK_FLAG_FULL_BACKREF);
1056 bi = (struct btrfs_tree_block_info *)(item + 1);
1057 /* FIXME: get first key of the block */
1058 memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi));
1059 btrfs_set_tree_block_level(leaf, bi, (int)owner);
1060 } else {
1061 btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA);
1062 }
1063 btrfs_mark_buffer_dirty(leaf);
1064 return 0;
1065}
1066#endif
1067
1068static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
1069{
1070 u32 high_crc = ~(u32)0;
1071 u32 low_crc = ~(u32)0;
1072 __le64 lenum;
1073
1074 lenum = cpu_to_le64(root_objectid);
David Woodhouse163e7832009-04-19 13:02:41 +01001075 high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001076 lenum = cpu_to_le64(owner);
David Woodhouse163e7832009-04-19 13:02:41 +01001077 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001078 lenum = cpu_to_le64(offset);
David Woodhouse163e7832009-04-19 13:02:41 +01001079 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001080
1081 return ((u64)high_crc << 31) ^ (u64)low_crc;
1082}
1083
1084static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
1085 struct btrfs_extent_data_ref *ref)
1086{
1087 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
1088 btrfs_extent_data_ref_objectid(leaf, ref),
1089 btrfs_extent_data_ref_offset(leaf, ref));
1090}
1091
1092static int match_extent_data_ref(struct extent_buffer *leaf,
1093 struct btrfs_extent_data_ref *ref,
1094 u64 root_objectid, u64 owner, u64 offset)
1095{
1096 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
1097 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
1098 btrfs_extent_data_ref_offset(leaf, ref) != offset)
1099 return 0;
1100 return 1;
1101}
1102
1103static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
1104 struct btrfs_root *root,
1105 struct btrfs_path *path,
1106 u64 bytenr, u64 parent,
1107 u64 root_objectid,
1108 u64 owner, u64 offset)
1109{
1110 struct btrfs_key key;
1111 struct btrfs_extent_data_ref *ref;
1112 struct extent_buffer *leaf;
1113 u32 nritems;
1114 int ret;
1115 int recow;
1116 int err = -ENOENT;
1117
1118 key.objectid = bytenr;
1119 if (parent) {
1120 key.type = BTRFS_SHARED_DATA_REF_KEY;
1121 key.offset = parent;
1122 } else {
1123 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1124 key.offset = hash_extent_data_ref(root_objectid,
1125 owner, offset);
1126 }
1127again:
1128 recow = 0;
1129 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1130 if (ret < 0) {
1131 err = ret;
1132 goto fail;
1133 }
1134
1135 if (parent) {
1136 if (!ret)
1137 return 0;
1138#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1139 key.type = BTRFS_EXTENT_REF_V0_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02001140 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001141 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1142 if (ret < 0) {
1143 err = ret;
1144 goto fail;
1145 }
1146 if (!ret)
1147 return 0;
1148#endif
1149 goto fail;
Zheng Yan31840ae2008-09-23 13:14:14 -04001150 }
1151
1152 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001153 nritems = btrfs_header_nritems(leaf);
1154 while (1) {
1155 if (path->slots[0] >= nritems) {
1156 ret = btrfs_next_leaf(root, path);
1157 if (ret < 0)
1158 err = ret;
1159 if (ret)
1160 goto fail;
1161
1162 leaf = path->nodes[0];
1163 nritems = btrfs_header_nritems(leaf);
1164 recow = 1;
1165 }
1166
1167 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1168 if (key.objectid != bytenr ||
1169 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1170 goto fail;
1171
1172 ref = btrfs_item_ptr(leaf, path->slots[0],
1173 struct btrfs_extent_data_ref);
1174
1175 if (match_extent_data_ref(leaf, ref, root_objectid,
1176 owner, offset)) {
1177 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001178 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001179 goto again;
1180 }
1181 err = 0;
1182 break;
1183 }
1184 path->slots[0]++;
Zheng Yan31840ae2008-09-23 13:14:14 -04001185 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001186fail:
1187 return err;
Zheng Yan31840ae2008-09-23 13:14:14 -04001188}
1189
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001190static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
1191 struct btrfs_root *root,
1192 struct btrfs_path *path,
1193 u64 bytenr, u64 parent,
1194 u64 root_objectid, u64 owner,
1195 u64 offset, int refs_to_add)
Zheng Yan31840ae2008-09-23 13:14:14 -04001196{
1197 struct btrfs_key key;
1198 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001199 u32 size;
Zheng Yan31840ae2008-09-23 13:14:14 -04001200 u32 num_refs;
1201 int ret;
1202
1203 key.objectid = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001204 if (parent) {
1205 key.type = BTRFS_SHARED_DATA_REF_KEY;
1206 key.offset = parent;
1207 size = sizeof(struct btrfs_shared_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001208 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001209 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1210 key.offset = hash_extent_data_ref(root_objectid,
1211 owner, offset);
1212 size = sizeof(struct btrfs_extent_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001213 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001214
1215 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1216 if (ret && ret != -EEXIST)
1217 goto fail;
1218
1219 leaf = path->nodes[0];
1220 if (parent) {
1221 struct btrfs_shared_data_ref *ref;
1222 ref = btrfs_item_ptr(leaf, path->slots[0],
1223 struct btrfs_shared_data_ref);
1224 if (ret == 0) {
1225 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1226 } else {
1227 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1228 num_refs += refs_to_add;
1229 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
1230 }
1231 } else {
1232 struct btrfs_extent_data_ref *ref;
1233 while (ret == -EEXIST) {
1234 ref = btrfs_item_ptr(leaf, path->slots[0],
1235 struct btrfs_extent_data_ref);
1236 if (match_extent_data_ref(leaf, ref, root_objectid,
1237 owner, offset))
1238 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02001239 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001240 key.offset++;
1241 ret = btrfs_insert_empty_item(trans, root, path, &key,
1242 size);
1243 if (ret && ret != -EEXIST)
1244 goto fail;
1245
1246 leaf = path->nodes[0];
1247 }
1248 ref = btrfs_item_ptr(leaf, path->slots[0],
1249 struct btrfs_extent_data_ref);
1250 if (ret == 0) {
1251 btrfs_set_extent_data_ref_root(leaf, ref,
1252 root_objectid);
1253 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1254 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1255 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1256 } else {
1257 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1258 num_refs += refs_to_add;
1259 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
1260 }
1261 }
1262 btrfs_mark_buffer_dirty(leaf);
1263 ret = 0;
1264fail:
David Sterbab3b4aa72011-04-21 01:20:15 +02001265 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05001266 return ret;
Chris Mason74493f72007-12-11 09:25:06 -05001267}
1268
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001269static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
1270 struct btrfs_root *root,
1271 struct btrfs_path *path,
1272 int refs_to_drop)
Zheng Yan31840ae2008-09-23 13:14:14 -04001273{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001274 struct btrfs_key key;
1275 struct btrfs_extent_data_ref *ref1 = NULL;
1276 struct btrfs_shared_data_ref *ref2 = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -04001277 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001278 u32 num_refs = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04001279 int ret = 0;
1280
1281 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001282 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1283
1284 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1285 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1286 struct btrfs_extent_data_ref);
1287 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1288 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1289 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1290 struct btrfs_shared_data_ref);
1291 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1292#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1293 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1294 struct btrfs_extent_ref_v0 *ref0;
1295 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1296 struct btrfs_extent_ref_v0);
1297 num_refs = btrfs_ref_count_v0(leaf, ref0);
1298#endif
1299 } else {
1300 BUG();
1301 }
1302
Chris Mason56bec292009-03-13 10:10:06 -04001303 BUG_ON(num_refs < refs_to_drop);
1304 num_refs -= refs_to_drop;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001305
Zheng Yan31840ae2008-09-23 13:14:14 -04001306 if (num_refs == 0) {
1307 ret = btrfs_del_item(trans, root, path);
1308 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001309 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1310 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1311 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1312 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
1313#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1314 else {
1315 struct btrfs_extent_ref_v0 *ref0;
1316 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1317 struct btrfs_extent_ref_v0);
1318 btrfs_set_ref_count_v0(leaf, ref0, num_refs);
1319 }
1320#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04001321 btrfs_mark_buffer_dirty(leaf);
1322 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001323 return ret;
1324}
1325
1326static noinline u32 extent_data_ref_count(struct btrfs_root *root,
1327 struct btrfs_path *path,
1328 struct btrfs_extent_inline_ref *iref)
1329{
1330 struct btrfs_key key;
1331 struct extent_buffer *leaf;
1332 struct btrfs_extent_data_ref *ref1;
1333 struct btrfs_shared_data_ref *ref2;
1334 u32 num_refs = 0;
1335
1336 leaf = path->nodes[0];
1337 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1338 if (iref) {
1339 if (btrfs_extent_inline_ref_type(leaf, iref) ==
1340 BTRFS_EXTENT_DATA_REF_KEY) {
1341 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1342 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1343 } else {
1344 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1345 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1346 }
1347 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1348 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1349 struct btrfs_extent_data_ref);
1350 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1351 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1352 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1353 struct btrfs_shared_data_ref);
1354 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1355#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1356 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1357 struct btrfs_extent_ref_v0 *ref0;
1358 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1359 struct btrfs_extent_ref_v0);
1360 num_refs = btrfs_ref_count_v0(leaf, ref0);
1361#endif
1362 } else {
1363 WARN_ON(1);
1364 }
1365 return num_refs;
1366}
1367
1368static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
1369 struct btrfs_root *root,
1370 struct btrfs_path *path,
1371 u64 bytenr, u64 parent,
1372 u64 root_objectid)
1373{
1374 struct btrfs_key key;
1375 int ret;
1376
1377 key.objectid = bytenr;
1378 if (parent) {
1379 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1380 key.offset = parent;
1381 } else {
1382 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1383 key.offset = root_objectid;
1384 }
1385
1386 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1387 if (ret > 0)
1388 ret = -ENOENT;
1389#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1390 if (ret == -ENOENT && parent) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001391 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001392 key.type = BTRFS_EXTENT_REF_V0_KEY;
1393 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1394 if (ret > 0)
1395 ret = -ENOENT;
1396 }
1397#endif
1398 return ret;
1399}
1400
1401static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
1402 struct btrfs_root *root,
1403 struct btrfs_path *path,
1404 u64 bytenr, u64 parent,
1405 u64 root_objectid)
1406{
1407 struct btrfs_key key;
1408 int ret;
1409
1410 key.objectid = bytenr;
1411 if (parent) {
1412 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1413 key.offset = parent;
1414 } else {
1415 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1416 key.offset = root_objectid;
1417 }
1418
1419 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
David Sterbab3b4aa72011-04-21 01:20:15 +02001420 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04001421 return ret;
1422}
1423
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001424static inline int extent_ref_type(u64 parent, u64 owner)
1425{
1426 int type;
1427 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1428 if (parent > 0)
1429 type = BTRFS_SHARED_BLOCK_REF_KEY;
1430 else
1431 type = BTRFS_TREE_BLOCK_REF_KEY;
1432 } else {
1433 if (parent > 0)
1434 type = BTRFS_SHARED_DATA_REF_KEY;
1435 else
1436 type = BTRFS_EXTENT_DATA_REF_KEY;
1437 }
1438 return type;
1439}
1440
Yan Zheng2c47e6052009-06-27 21:07:35 -04001441static int find_next_key(struct btrfs_path *path, int level,
1442 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001443
1444{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001445 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001446 if (!path->nodes[level])
1447 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001448 if (path->slots[level] + 1 >=
1449 btrfs_header_nritems(path->nodes[level]))
1450 continue;
1451 if (level == 0)
1452 btrfs_item_key_to_cpu(path->nodes[level], key,
1453 path->slots[level] + 1);
1454 else
1455 btrfs_node_key_to_cpu(path->nodes[level], key,
1456 path->slots[level] + 1);
1457 return 0;
1458 }
1459 return 1;
1460}
1461
1462/*
1463 * look for inline back ref. if back ref is found, *ref_ret is set
1464 * to the address of inline back ref, and 0 is returned.
1465 *
1466 * if back ref isn't found, *ref_ret is set to the address where it
1467 * should be inserted, and -ENOENT is returned.
1468 *
1469 * if insert is true and there are too many inline back refs, the path
1470 * points to the extent item, and -EAGAIN is returned.
1471 *
1472 * NOTE: inline back refs are ordered in the same way that back ref
1473 * items in the tree are ordered.
1474 */
1475static noinline_for_stack
1476int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
1477 struct btrfs_root *root,
1478 struct btrfs_path *path,
1479 struct btrfs_extent_inline_ref **ref_ret,
1480 u64 bytenr, u64 num_bytes,
1481 u64 parent, u64 root_objectid,
1482 u64 owner, u64 offset, int insert)
1483{
1484 struct btrfs_key key;
1485 struct extent_buffer *leaf;
1486 struct btrfs_extent_item *ei;
1487 struct btrfs_extent_inline_ref *iref;
1488 u64 flags;
1489 u64 item_size;
1490 unsigned long ptr;
1491 unsigned long end;
1492 int extra_size;
1493 int type;
1494 int want;
1495 int ret;
1496 int err = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05001497 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
1498 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001499
1500 key.objectid = bytenr;
1501 key.type = BTRFS_EXTENT_ITEM_KEY;
1502 key.offset = num_bytes;
1503
1504 want = extent_ref_type(parent, owner);
1505 if (insert) {
1506 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001507 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001508 } else
1509 extra_size = -1;
Josef Bacik3173a182013-03-07 14:22:04 -05001510
1511 /*
1512 * Owner is our parent level, so we can just add one to get the level
1513 * for the block we are interested in.
1514 */
1515 if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) {
1516 key.type = BTRFS_METADATA_ITEM_KEY;
1517 key.offset = owner;
1518 }
1519
1520again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001521 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1522 if (ret < 0) {
1523 err = ret;
1524 goto out;
1525 }
Josef Bacik3173a182013-03-07 14:22:04 -05001526
1527 /*
1528 * We may be a newly converted file system which still has the old fat
1529 * extent entries for metadata, so try and see if we have one of those.
1530 */
1531 if (ret > 0 && skinny_metadata) {
1532 skinny_metadata = false;
1533 if (path->slots[0]) {
1534 path->slots[0]--;
1535 btrfs_item_key_to_cpu(path->nodes[0], &key,
1536 path->slots[0]);
1537 if (key.objectid == bytenr &&
1538 key.type == BTRFS_EXTENT_ITEM_KEY &&
1539 key.offset == num_bytes)
1540 ret = 0;
1541 }
1542 if (ret) {
1543 key.type = BTRFS_EXTENT_ITEM_KEY;
1544 key.offset = num_bytes;
1545 btrfs_release_path(path);
1546 goto again;
1547 }
1548 }
1549
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001550 if (ret && !insert) {
1551 err = -ENOENT;
1552 goto out;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301553 } else if (WARN_ON(ret)) {
Josef Bacik492104c2013-03-08 15:41:02 -05001554 err = -EIO;
Josef Bacik492104c2013-03-08 15:41:02 -05001555 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001556 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001557
1558 leaf = path->nodes[0];
1559 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1560#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1561 if (item_size < sizeof(*ei)) {
1562 if (!insert) {
1563 err = -ENOENT;
1564 goto out;
1565 }
1566 ret = convert_extent_item_v0(trans, root, path, owner,
1567 extra_size);
1568 if (ret < 0) {
1569 err = ret;
1570 goto out;
1571 }
1572 leaf = path->nodes[0];
1573 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1574 }
1575#endif
1576 BUG_ON(item_size < sizeof(*ei));
1577
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001578 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1579 flags = btrfs_extent_flags(leaf, ei);
1580
1581 ptr = (unsigned long)(ei + 1);
1582 end = (unsigned long)ei + item_size;
1583
Josef Bacik3173a182013-03-07 14:22:04 -05001584 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001585 ptr += sizeof(struct btrfs_tree_block_info);
1586 BUG_ON(ptr > end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001587 }
1588
1589 err = -ENOENT;
1590 while (1) {
1591 if (ptr >= end) {
1592 WARN_ON(ptr > end);
1593 break;
1594 }
1595 iref = (struct btrfs_extent_inline_ref *)ptr;
1596 type = btrfs_extent_inline_ref_type(leaf, iref);
1597 if (want < type)
1598 break;
1599 if (want > type) {
1600 ptr += btrfs_extent_inline_ref_size(type);
1601 continue;
1602 }
1603
1604 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1605 struct btrfs_extent_data_ref *dref;
1606 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1607 if (match_extent_data_ref(leaf, dref, root_objectid,
1608 owner, offset)) {
1609 err = 0;
1610 break;
1611 }
1612 if (hash_extent_data_ref_item(leaf, dref) <
1613 hash_extent_data_ref(root_objectid, owner, offset))
1614 break;
1615 } else {
1616 u64 ref_offset;
1617 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1618 if (parent > 0) {
1619 if (parent == ref_offset) {
1620 err = 0;
1621 break;
1622 }
1623 if (ref_offset < parent)
1624 break;
1625 } else {
1626 if (root_objectid == ref_offset) {
1627 err = 0;
1628 break;
1629 }
1630 if (ref_offset < root_objectid)
1631 break;
1632 }
1633 }
1634 ptr += btrfs_extent_inline_ref_size(type);
1635 }
1636 if (err == -ENOENT && insert) {
1637 if (item_size + extra_size >=
1638 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1639 err = -EAGAIN;
1640 goto out;
1641 }
1642 /*
1643 * To add new inline back ref, we have to make sure
1644 * there is no corresponding back ref item.
1645 * For simplicity, we just do not add new inline back
1646 * ref if there is any kind of item for this block
1647 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001648 if (find_next_key(path, 0, &key) == 0 &&
1649 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001650 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001651 err = -EAGAIN;
1652 goto out;
1653 }
1654 }
1655 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1656out:
Yan Zheng85d41982009-06-11 08:51:10 -04001657 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001658 path->keep_locks = 0;
1659 btrfs_unlock_up_safe(path, 1);
1660 }
1661 return err;
1662}
1663
1664/*
1665 * helper to add new inline back ref
1666 */
1667static noinline_for_stack
Tsutomu Itohfd279fa2013-04-16 05:19:11 +00001668void setup_inline_extent_backref(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001669 struct btrfs_path *path,
1670 struct btrfs_extent_inline_ref *iref,
1671 u64 parent, u64 root_objectid,
1672 u64 owner, u64 offset, int refs_to_add,
1673 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001674{
1675 struct extent_buffer *leaf;
1676 struct btrfs_extent_item *ei;
1677 unsigned long ptr;
1678 unsigned long end;
1679 unsigned long item_offset;
1680 u64 refs;
1681 int size;
1682 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001683
1684 leaf = path->nodes[0];
1685 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1686 item_offset = (unsigned long)iref - (unsigned long)ei;
1687
1688 type = extent_ref_type(parent, owner);
1689 size = btrfs_extent_inline_ref_size(type);
1690
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00001691 btrfs_extend_item(root, path, size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001692
1693 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1694 refs = btrfs_extent_refs(leaf, ei);
1695 refs += refs_to_add;
1696 btrfs_set_extent_refs(leaf, ei, refs);
1697 if (extent_op)
1698 __run_delayed_extent_op(extent_op, leaf, ei);
1699
1700 ptr = (unsigned long)ei + item_offset;
1701 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1702 if (ptr < end - size)
1703 memmove_extent_buffer(leaf, ptr + size, ptr,
1704 end - size - ptr);
1705
1706 iref = (struct btrfs_extent_inline_ref *)ptr;
1707 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1708 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1709 struct btrfs_extent_data_ref *dref;
1710 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1711 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1712 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1713 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1714 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1715 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1716 struct btrfs_shared_data_ref *sref;
1717 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1718 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1719 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1720 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1721 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1722 } else {
1723 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1724 }
1725 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001726}
1727
1728static int lookup_extent_backref(struct btrfs_trans_handle *trans,
1729 struct btrfs_root *root,
1730 struct btrfs_path *path,
1731 struct btrfs_extent_inline_ref **ref_ret,
1732 u64 bytenr, u64 num_bytes, u64 parent,
1733 u64 root_objectid, u64 owner, u64 offset)
1734{
1735 int ret;
1736
1737 ret = lookup_inline_extent_backref(trans, root, path, ref_ret,
1738 bytenr, num_bytes, parent,
1739 root_objectid, owner, offset, 0);
1740 if (ret != -ENOENT)
1741 return ret;
1742
David Sterbab3b4aa72011-04-21 01:20:15 +02001743 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001744 *ref_ret = NULL;
1745
1746 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1747 ret = lookup_tree_block_ref(trans, root, path, bytenr, parent,
1748 root_objectid);
1749 } else {
1750 ret = lookup_extent_data_ref(trans, root, path, bytenr, parent,
1751 root_objectid, owner, offset);
1752 }
1753 return ret;
1754}
1755
1756/*
1757 * helper to update/remove inline back ref
1758 */
1759static noinline_for_stack
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001760void update_inline_extent_backref(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001761 struct btrfs_path *path,
1762 struct btrfs_extent_inline_ref *iref,
1763 int refs_to_mod,
1764 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001765{
1766 struct extent_buffer *leaf;
1767 struct btrfs_extent_item *ei;
1768 struct btrfs_extent_data_ref *dref = NULL;
1769 struct btrfs_shared_data_ref *sref = NULL;
1770 unsigned long ptr;
1771 unsigned long end;
1772 u32 item_size;
1773 int size;
1774 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001775 u64 refs;
1776
1777 leaf = path->nodes[0];
1778 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1779 refs = btrfs_extent_refs(leaf, ei);
1780 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1781 refs += refs_to_mod;
1782 btrfs_set_extent_refs(leaf, ei, refs);
1783 if (extent_op)
1784 __run_delayed_extent_op(extent_op, leaf, ei);
1785
1786 type = btrfs_extent_inline_ref_type(leaf, iref);
1787
1788 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1789 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1790 refs = btrfs_extent_data_ref_count(leaf, dref);
1791 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1792 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1793 refs = btrfs_shared_data_ref_count(leaf, sref);
1794 } else {
1795 refs = 1;
1796 BUG_ON(refs_to_mod != -1);
1797 }
1798
1799 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1800 refs += refs_to_mod;
1801
1802 if (refs > 0) {
1803 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1804 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1805 else
1806 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1807 } else {
1808 size = btrfs_extent_inline_ref_size(type);
1809 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1810 ptr = (unsigned long)iref;
1811 end = (unsigned long)ei + item_size;
1812 if (ptr + size < end)
1813 memmove_extent_buffer(leaf, ptr, ptr + size,
1814 end - ptr - size);
1815 item_size -= size;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001816 btrfs_truncate_item(root, path, item_size, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001817 }
1818 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001819}
1820
1821static noinline_for_stack
1822int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
1823 struct btrfs_root *root,
1824 struct btrfs_path *path,
1825 u64 bytenr, u64 num_bytes, u64 parent,
1826 u64 root_objectid, u64 owner,
1827 u64 offset, int refs_to_add,
1828 struct btrfs_delayed_extent_op *extent_op)
1829{
1830 struct btrfs_extent_inline_ref *iref;
1831 int ret;
1832
1833 ret = lookup_inline_extent_backref(trans, root, path, &iref,
1834 bytenr, num_bytes, parent,
1835 root_objectid, owner, offset, 1);
1836 if (ret == 0) {
1837 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001838 update_inline_extent_backref(root, path, iref,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001839 refs_to_add, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001840 } else if (ret == -ENOENT) {
Tsutomu Itohfd279fa2013-04-16 05:19:11 +00001841 setup_inline_extent_backref(root, path, iref, parent,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001842 root_objectid, owner, offset,
1843 refs_to_add, extent_op);
1844 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001845 }
1846 return ret;
1847}
1848
1849static int insert_extent_backref(struct btrfs_trans_handle *trans,
1850 struct btrfs_root *root,
1851 struct btrfs_path *path,
1852 u64 bytenr, u64 parent, u64 root_objectid,
1853 u64 owner, u64 offset, int refs_to_add)
1854{
1855 int ret;
1856 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1857 BUG_ON(refs_to_add != 1);
1858 ret = insert_tree_block_ref(trans, root, path, bytenr,
1859 parent, root_objectid);
1860 } else {
1861 ret = insert_extent_data_ref(trans, root, path, bytenr,
1862 parent, root_objectid,
1863 owner, offset, refs_to_add);
1864 }
1865 return ret;
1866}
1867
1868static int remove_extent_backref(struct btrfs_trans_handle *trans,
1869 struct btrfs_root *root,
1870 struct btrfs_path *path,
1871 struct btrfs_extent_inline_ref *iref,
1872 int refs_to_drop, int is_data)
1873{
Jeff Mahoney143bede2012-03-01 14:56:26 +01001874 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001875
1876 BUG_ON(!is_data && refs_to_drop != 1);
1877 if (iref) {
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001878 update_inline_extent_backref(root, path, iref,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001879 -refs_to_drop, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001880 } else if (is_data) {
1881 ret = remove_extent_data_ref(trans, root, path, refs_to_drop);
1882 } else {
1883 ret = btrfs_del_item(trans, root, path);
1884 }
1885 return ret;
1886}
1887
Li Dongyang5378e602011-03-24 10:24:27 +00001888static int btrfs_issue_discard(struct block_device *bdev,
Chris Mason15916de2008-11-19 21:17:22 -05001889 u64 start, u64 len)
1890{
Li Dongyang5378e602011-03-24 10:24:27 +00001891 return blkdev_issue_discard(bdev, start >> 9, len >> 9, GFP_NOFS, 0);
Chris Mason15916de2008-11-19 21:17:22 -05001892}
Chris Mason15916de2008-11-19 21:17:22 -05001893
Liu Hui1f3c79a2009-01-05 15:57:51 -05001894static int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr,
Li Dongyang5378e602011-03-24 10:24:27 +00001895 u64 num_bytes, u64 *actual_bytes)
Liu Hui1f3c79a2009-01-05 15:57:51 -05001896{
Liu Hui1f3c79a2009-01-05 15:57:51 -05001897 int ret;
Li Dongyang5378e602011-03-24 10:24:27 +00001898 u64 discarded_bytes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02001899 struct btrfs_bio *bbio = NULL;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001900
Christoph Hellwige244a0a2009-10-14 09:24:59 -04001901
Liu Hui1f3c79a2009-01-05 15:57:51 -05001902 /* Tell the block device(s) that the sectors can be discarded */
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001903 ret = btrfs_map_block(root->fs_info, REQ_DISCARD,
Jan Schmidta1d3c472011-08-04 17:15:33 +02001904 bytenr, &num_bytes, &bbio, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001905 /* Error condition is -ENOMEM */
Liu Hui1f3c79a2009-01-05 15:57:51 -05001906 if (!ret) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02001907 struct btrfs_bio_stripe *stripe = bbio->stripes;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001908 int i;
1909
Liu Hui1f3c79a2009-01-05 15:57:51 -05001910
Jan Schmidta1d3c472011-08-04 17:15:33 +02001911 for (i = 0; i < bbio->num_stripes; i++, stripe++) {
Josef Bacikd5e20032011-08-04 14:52:27 +00001912 if (!stripe->dev->can_discard)
1913 continue;
1914
Li Dongyang5378e602011-03-24 10:24:27 +00001915 ret = btrfs_issue_discard(stripe->dev->bdev,
1916 stripe->physical,
1917 stripe->length);
1918 if (!ret)
1919 discarded_bytes += stripe->length;
1920 else if (ret != -EOPNOTSUPP)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001921 break; /* Logic errors or -ENOMEM, or -EIO but I don't know how that could happen JDM */
Josef Bacikd5e20032011-08-04 14:52:27 +00001922
1923 /*
1924 * Just in case we get back EOPNOTSUPP for some reason,
1925 * just ignore the return value so we don't screw up
1926 * people calling discard_extent.
1927 */
1928 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001929 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02001930 kfree(bbio);
Liu Hui1f3c79a2009-01-05 15:57:51 -05001931 }
Li Dongyang5378e602011-03-24 10:24:27 +00001932
1933 if (actual_bytes)
1934 *actual_bytes = discarded_bytes;
1935
Liu Hui1f3c79a2009-01-05 15:57:51 -05001936
David Woodhouse53b381b2013-01-29 18:40:14 -05001937 if (ret == -EOPNOTSUPP)
1938 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001939 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001940}
1941
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001942/* Can return -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001943int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1944 struct btrfs_root *root,
1945 u64 bytenr, u64 num_bytes, u64 parent,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001946 u64 root_objectid, u64 owner, u64 offset, int for_cow)
Zheng Yan31840ae2008-09-23 13:14:14 -04001947{
1948 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001949 struct btrfs_fs_info *fs_info = root->fs_info;
1950
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001951 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
1952 root_objectid == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04001953
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001954 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001955 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
1956 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001957 parent, root_objectid, (int)owner,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001958 BTRFS_ADD_DELAYED_REF, NULL, for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001959 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001960 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
1961 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001962 parent, root_objectid, owner, offset,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001963 BTRFS_ADD_DELAYED_REF, NULL, for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001964 }
Zheng Yan31840ae2008-09-23 13:14:14 -04001965 return ret;
1966}
1967
Chris Mason925baed2008-06-25 16:01:30 -04001968static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001969 struct btrfs_root *root,
1970 u64 bytenr, u64 num_bytes,
1971 u64 parent, u64 root_objectid,
1972 u64 owner, u64 offset, int refs_to_add,
1973 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04001974{
Chris Mason5caf2a02007-04-02 11:20:42 -04001975 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001976 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04001977 struct btrfs_extent_item *item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001978 u64 refs;
1979 int ret;
Chris Mason037e6392007-03-07 11:50:24 -05001980
Chris Mason5caf2a02007-04-02 11:20:42 -04001981 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001982 if (!path)
1983 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04001984
Chris Mason3c12ac72008-04-21 12:01:38 -04001985 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04001986 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001987 /* this will setup the path even if it fails to insert the back ref */
1988 ret = insert_inline_extent_backref(trans, root->fs_info->extent_root,
1989 path, bytenr, num_bytes, parent,
1990 root_objectid, owner, offset,
1991 refs_to_add, extent_op);
Liu Bo30d133f2013-10-11 16:30:23 +08001992 if (ret != -EAGAIN)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001993 goto out;
Zheng Yan31840ae2008-09-23 13:14:14 -04001994
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001995 leaf = path->nodes[0];
1996 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1997 refs = btrfs_extent_refs(leaf, item);
1998 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
1999 if (extent_op)
2000 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04002001
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002002 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002003 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05002004
Chris Mason3c12ac72008-04-21 12:01:38 -04002005 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04002006 path->leave_spinning = 1;
2007
Chris Mason56bec292009-03-13 10:10:06 -04002008 /* now insert the actual backref */
Zheng Yan31840ae2008-09-23 13:14:14 -04002009 ret = insert_extent_backref(trans, root->fs_info->extent_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002010 path, bytenr, parent, root_objectid,
2011 owner, offset, refs_to_add);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002012 if (ret)
2013 btrfs_abort_transaction(trans, root, ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002014out:
Chris Mason74493f72007-12-11 09:25:06 -05002015 btrfs_free_path(path);
Liu Bo30d133f2013-10-11 16:30:23 +08002016 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002017}
2018
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002019static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
2020 struct btrfs_root *root,
2021 struct btrfs_delayed_ref_node *node,
2022 struct btrfs_delayed_extent_op *extent_op,
2023 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04002024{
Chris Mason56bec292009-03-13 10:10:06 -04002025 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002026 struct btrfs_delayed_data_ref *ref;
2027 struct btrfs_key ins;
2028 u64 parent = 0;
2029 u64 ref_root = 0;
2030 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002031
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002032 ins.objectid = node->bytenr;
2033 ins.offset = node->num_bytes;
2034 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04002035
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002036 ref = btrfs_delayed_node_to_data_ref(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002037 trace_run_delayed_data_ref(node, ref, node->action);
2038
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002039 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
2040 parent = ref->parent;
2041 else
2042 ref_root = ref->root;
2043
2044 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002045 if (extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002046 flags |= extent_op->flags_to_set;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002047 ret = alloc_reserved_file_extent(trans, root,
2048 parent, ref_root, flags,
2049 ref->objectid, ref->offset,
2050 &ins, node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002051 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
2052 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
2053 node->num_bytes, parent,
2054 ref_root, ref->objectid,
2055 ref->offset, node->ref_mod,
2056 extent_op);
2057 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
2058 ret = __btrfs_free_extent(trans, root, node->bytenr,
2059 node->num_bytes, parent,
2060 ref_root, ref->objectid,
2061 ref->offset, node->ref_mod,
2062 extent_op);
2063 } else {
2064 BUG();
2065 }
Chris Mason56bec292009-03-13 10:10:06 -04002066 return ret;
2067}
2068
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002069static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
2070 struct extent_buffer *leaf,
2071 struct btrfs_extent_item *ei)
2072{
2073 u64 flags = btrfs_extent_flags(leaf, ei);
2074 if (extent_op->update_flags) {
2075 flags |= extent_op->flags_to_set;
2076 btrfs_set_extent_flags(leaf, ei, flags);
2077 }
2078
2079 if (extent_op->update_key) {
2080 struct btrfs_tree_block_info *bi;
2081 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
2082 bi = (struct btrfs_tree_block_info *)(ei + 1);
2083 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
2084 }
2085}
2086
2087static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
2088 struct btrfs_root *root,
2089 struct btrfs_delayed_ref_node *node,
2090 struct btrfs_delayed_extent_op *extent_op)
2091{
2092 struct btrfs_key key;
2093 struct btrfs_path *path;
2094 struct btrfs_extent_item *ei;
2095 struct extent_buffer *leaf;
2096 u32 item_size;
2097 int ret;
2098 int err = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002099 int metadata = !extent_op->is_data;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002100
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002101 if (trans->aborted)
2102 return 0;
2103
Josef Bacik3173a182013-03-07 14:22:04 -05002104 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2105 metadata = 0;
2106
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002107 path = btrfs_alloc_path();
2108 if (!path)
2109 return -ENOMEM;
2110
2111 key.objectid = node->bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002112
Josef Bacik3173a182013-03-07 14:22:04 -05002113 if (metadata) {
Josef Bacik3173a182013-03-07 14:22:04 -05002114 key.type = BTRFS_METADATA_ITEM_KEY;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002115 key.offset = extent_op->level;
Josef Bacik3173a182013-03-07 14:22:04 -05002116 } else {
2117 key.type = BTRFS_EXTENT_ITEM_KEY;
2118 key.offset = node->num_bytes;
2119 }
2120
2121again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002122 path->reada = 1;
2123 path->leave_spinning = 1;
2124 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key,
2125 path, 0, 1);
2126 if (ret < 0) {
2127 err = ret;
2128 goto out;
2129 }
2130 if (ret > 0) {
Josef Bacik3173a182013-03-07 14:22:04 -05002131 if (metadata) {
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002132 if (path->slots[0] > 0) {
2133 path->slots[0]--;
2134 btrfs_item_key_to_cpu(path->nodes[0], &key,
2135 path->slots[0]);
2136 if (key.objectid == node->bytenr &&
2137 key.type == BTRFS_EXTENT_ITEM_KEY &&
2138 key.offset == node->num_bytes)
2139 ret = 0;
2140 }
2141 if (ret > 0) {
2142 btrfs_release_path(path);
2143 metadata = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002144
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002145 key.objectid = node->bytenr;
2146 key.offset = node->num_bytes;
2147 key.type = BTRFS_EXTENT_ITEM_KEY;
2148 goto again;
2149 }
2150 } else {
2151 err = -EIO;
2152 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05002153 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002154 }
2155
2156 leaf = path->nodes[0];
2157 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2158#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2159 if (item_size < sizeof(*ei)) {
2160 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
2161 path, (u64)-1, 0);
2162 if (ret < 0) {
2163 err = ret;
2164 goto out;
2165 }
2166 leaf = path->nodes[0];
2167 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2168 }
2169#endif
2170 BUG_ON(item_size < sizeof(*ei));
2171 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2172 __run_delayed_extent_op(extent_op, leaf, ei);
2173
2174 btrfs_mark_buffer_dirty(leaf);
2175out:
2176 btrfs_free_path(path);
2177 return err;
2178}
2179
2180static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
2181 struct btrfs_root *root,
2182 struct btrfs_delayed_ref_node *node,
2183 struct btrfs_delayed_extent_op *extent_op,
2184 int insert_reserved)
2185{
2186 int ret = 0;
2187 struct btrfs_delayed_tree_ref *ref;
2188 struct btrfs_key ins;
2189 u64 parent = 0;
2190 u64 ref_root = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002191 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
2192 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002193
2194 ref = btrfs_delayed_node_to_tree_ref(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002195 trace_run_delayed_tree_ref(node, ref, node->action);
2196
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002197 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2198 parent = ref->parent;
2199 else
2200 ref_root = ref->root;
2201
Josef Bacik3173a182013-03-07 14:22:04 -05002202 ins.objectid = node->bytenr;
2203 if (skinny_metadata) {
2204 ins.offset = ref->level;
2205 ins.type = BTRFS_METADATA_ITEM_KEY;
2206 } else {
2207 ins.offset = node->num_bytes;
2208 ins.type = BTRFS_EXTENT_ITEM_KEY;
2209 }
2210
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002211 BUG_ON(node->ref_mod != 1);
2212 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002213 BUG_ON(!extent_op || !extent_op->update_flags);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002214 ret = alloc_reserved_tree_block(trans, root,
2215 parent, ref_root,
2216 extent_op->flags_to_set,
2217 &extent_op->key,
2218 ref->level, &ins);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002219 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
2220 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
2221 node->num_bytes, parent, ref_root,
2222 ref->level, 0, 1, extent_op);
2223 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
2224 ret = __btrfs_free_extent(trans, root, node->bytenr,
2225 node->num_bytes, parent, ref_root,
2226 ref->level, 0, 1, extent_op);
2227 } else {
2228 BUG();
2229 }
2230 return ret;
2231}
2232
Chris Mason56bec292009-03-13 10:10:06 -04002233/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002234static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
2235 struct btrfs_root *root,
2236 struct btrfs_delayed_ref_node *node,
2237 struct btrfs_delayed_extent_op *extent_op,
2238 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002239{
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002240 int ret = 0;
2241
Josef Bacik857cc2f2013-10-07 15:21:08 -04002242 if (trans->aborted) {
2243 if (insert_reserved)
2244 btrfs_pin_extent(root, node->bytenr,
2245 node->num_bytes, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002246 return 0;
Josef Bacik857cc2f2013-10-07 15:21:08 -04002247 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002248
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002249 if (btrfs_delayed_ref_is_head(node)) {
Chris Mason56bec292009-03-13 10:10:06 -04002250 struct btrfs_delayed_ref_head *head;
2251 /*
2252 * we've hit the end of the chain and we were supposed
2253 * to insert this extent into the tree. But, it got
2254 * deleted before we ever needed to insert it, so all
2255 * we have to do is clean up the accounting
2256 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002257 BUG_ON(extent_op);
2258 head = btrfs_delayed_node_to_head(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002259 trace_run_delayed_ref_head(node, head, node->action);
2260
Chris Mason56bec292009-03-13 10:10:06 -04002261 if (insert_reserved) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04002262 btrfs_pin_extent(root, node->bytenr,
2263 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002264 if (head->is_data) {
2265 ret = btrfs_del_csums(trans, root,
2266 node->bytenr,
2267 node->num_bytes);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002268 }
Chris Mason56bec292009-03-13 10:10:06 -04002269 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002270 return ret;
Chris Mason56bec292009-03-13 10:10:06 -04002271 }
Josef Bacikeb099672009-02-12 09:27:38 -05002272
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002273 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2274 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2275 ret = run_delayed_tree_ref(trans, root, node, extent_op,
2276 insert_reserved);
2277 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2278 node->type == BTRFS_SHARED_DATA_REF_KEY)
2279 ret = run_delayed_data_ref(trans, root, node, extent_op,
2280 insert_reserved);
2281 else
2282 BUG();
2283 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002284}
2285
Chris Mason56bec292009-03-13 10:10:06 -04002286static noinline struct btrfs_delayed_ref_node *
2287select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002288{
Chris Mason56bec292009-03-13 10:10:06 -04002289 struct rb_node *node;
2290 struct btrfs_delayed_ref_node *ref;
2291 int action = BTRFS_ADD_DELAYED_REF;
2292again:
2293 /*
2294 * select delayed ref of type BTRFS_ADD_DELAYED_REF first.
2295 * this prevents ref count from going down to zero when
2296 * there still are pending delayed ref.
2297 */
2298 node = rb_prev(&head->node.rb_node);
2299 while (1) {
2300 if (!node)
2301 break;
2302 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2303 rb_node);
2304 if (ref->bytenr != head->node.bytenr)
2305 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002306 if (ref->action == action)
Chris Mason56bec292009-03-13 10:10:06 -04002307 return ref;
2308 node = rb_prev(node);
Chris Mason5f39d392007-10-15 16:14:19 -04002309 }
Chris Mason56bec292009-03-13 10:10:06 -04002310 if (action == BTRFS_ADD_DELAYED_REF) {
2311 action = BTRFS_DROP_DELAYED_REF;
2312 goto again;
2313 }
2314 return NULL;
2315}
2316
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002317/*
2318 * Returns 0 on success or if called with an already aborted transaction.
2319 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2320 */
Chris Masonc3e69d52009-03-13 10:17:05 -04002321static noinline int run_clustered_refs(struct btrfs_trans_handle *trans,
2322 struct btrfs_root *root,
2323 struct list_head *cluster)
Chris Mason56bec292009-03-13 10:10:06 -04002324{
Chris Mason56bec292009-03-13 10:10:06 -04002325 struct btrfs_delayed_ref_root *delayed_refs;
2326 struct btrfs_delayed_ref_node *ref;
2327 struct btrfs_delayed_ref_head *locked_ref = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002328 struct btrfs_delayed_extent_op *extent_op;
Jan Schmidt097b8a72012-06-21 11:08:04 +02002329 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason56bec292009-03-13 10:10:06 -04002330 int ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04002331 int count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002332 int must_insert_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002333
2334 delayed_refs = &trans->transaction->delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002335 while (1) {
2336 if (!locked_ref) {
Chris Masonc3e69d52009-03-13 10:17:05 -04002337 /* pick a new head ref from the cluster list */
2338 if (list_empty(cluster))
Chris Mason56bec292009-03-13 10:10:06 -04002339 break;
Chris Mason56bec292009-03-13 10:10:06 -04002340
Chris Masonc3e69d52009-03-13 10:17:05 -04002341 locked_ref = list_entry(cluster->next,
2342 struct btrfs_delayed_ref_head, cluster);
2343
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);
2347
2348 /*
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 */
2368 btrfs_merge_delayed_refs(trans, fs_info, delayed_refs,
2369 locked_ref);
2370
2371 /*
Arne Jansend1270cd2011-09-13 15:16:43 +02002372 * locked_ref is the head node, so we have to go one
2373 * node back for any delayed ref updates
2374 */
2375 ref = select_delayed_ref(locked_ref);
2376
2377 if (ref && ref->seq &&
Jan Schmidt097b8a72012-06-21 11:08:04 +02002378 btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) {
Arne Jansend1270cd2011-09-13 15:16:43 +02002379 /*
2380 * there are still refs with lower seq numbers in the
2381 * process of being added. Don't run this ref yet.
2382 */
2383 list_del_init(&locked_ref->cluster);
Miao Xie093486c2012-12-19 08:10:10 +00002384 btrfs_delayed_ref_unlock(locked_ref);
Arne Jansend1270cd2011-09-13 15:16:43 +02002385 locked_ref = NULL;
2386 delayed_refs->num_heads_ready++;
2387 spin_unlock(&delayed_refs->lock);
2388 cond_resched();
2389 spin_lock(&delayed_refs->lock);
2390 continue;
2391 }
2392
2393 /*
Chris Mason56bec292009-03-13 10:10:06 -04002394 * record the must insert reserved flag before we
2395 * drop the spin lock.
2396 */
2397 must_insert_reserved = locked_ref->must_insert_reserved;
2398 locked_ref->must_insert_reserved = 0;
2399
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002400 extent_op = locked_ref->extent_op;
2401 locked_ref->extent_op = NULL;
2402
Chris Mason56bec292009-03-13 10:10:06 -04002403 if (!ref) {
2404 /* All delayed refs have been processed, Go ahead
2405 * and send the head node to run_one_delayed_ref,
2406 * so that any accounting fixes can happen
2407 */
2408 ref = &locked_ref->node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002409
2410 if (extent_op && must_insert_reserved) {
Miao Xie78a61842012-11-21 02:21:28 +00002411 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002412 extent_op = NULL;
2413 }
2414
2415 if (extent_op) {
2416 spin_unlock(&delayed_refs->lock);
2417
2418 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;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002431 btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret);
Dan Carpenter253beeb2012-04-18 09:59:03 +03002432 spin_lock(&delayed_refs->lock);
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 }
2436
Chris Mason203bf282012-01-06 15:23:57 -05002437 goto next;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002438 }
Chris Mason56bec292009-03-13 10:10:06 -04002439 }
2440
2441 ref->in_tree = 0;
2442 rb_erase(&ref->rb_node, &delayed_refs->root);
2443 delayed_refs->num_entries--;
Miao Xie093486c2012-12-19 08:10:10 +00002444 if (!btrfs_delayed_ref_is_head(ref)) {
Arne Jansen22cd2e72012-08-09 00:16:53 -06002445 /*
2446 * when we play the delayed ref, also correct the
2447 * ref_mod on head
2448 */
2449 switch (ref->action) {
2450 case BTRFS_ADD_DELAYED_REF:
2451 case BTRFS_ADD_DELAYED_EXTENT:
2452 locked_ref->node.ref_mod -= ref->ref_mod;
2453 break;
2454 case BTRFS_DROP_DELAYED_REF:
2455 locked_ref->node.ref_mod += ref->ref_mod;
2456 break;
2457 default:
2458 WARN_ON(1);
2459 }
Josef Bacikb8d0c692013-08-22 17:03:29 -04002460 } else {
2461 list_del_init(&locked_ref->cluster);
Arne Jansen22cd2e72012-08-09 00:16:53 -06002462 }
Chris Mason56bec292009-03-13 10:10:06 -04002463 spin_unlock(&delayed_refs->lock);
2464
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002465 ret = run_one_delayed_ref(trans, root, ref, extent_op,
Chris Mason56bec292009-03-13 10:10:06 -04002466 must_insert_reserved);
Chris Mason56bec292009-03-13 10:10:06 -04002467
Miao Xie78a61842012-11-21 02:21:28 +00002468 btrfs_free_delayed_extent_op(extent_op);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002469 if (ret) {
Miao Xie093486c2012-12-19 08:10:10 +00002470 btrfs_delayed_ref_unlock(locked_ref);
2471 btrfs_put_delayed_ref(ref);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002472 btrfs_debug(fs_info, "run_one_delayed_ref returned %d", ret);
Dan Carpenter253beeb2012-04-18 09:59:03 +03002473 spin_lock(&delayed_refs->lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002474 return ret;
2475 }
2476
Miao Xie093486c2012-12-19 08:10:10 +00002477 /*
2478 * If this node is a head, that means all the refs in this head
2479 * have been dealt with, and we will pick the next head to deal
2480 * with, so we must unlock the head and drop it from the cluster
2481 * list before we release it.
2482 */
2483 if (btrfs_delayed_ref_is_head(ref)) {
Miao Xie093486c2012-12-19 08:10:10 +00002484 btrfs_delayed_ref_unlock(locked_ref);
2485 locked_ref = NULL;
2486 }
2487 btrfs_put_delayed_ref(ref);
2488 count++;
Chris Mason203bf282012-01-06 15:23:57 -05002489next:
Chris Mason1887be62009-03-13 10:11:24 -04002490 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002491 spin_lock(&delayed_refs->lock);
2492 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002493 return count;
2494}
2495
Arne Jansen709c0482011-09-12 12:22:57 +02002496#ifdef SCRAMBLE_DELAYED_REFS
2497/*
2498 * Normally delayed refs get processed in ascending bytenr order. This
2499 * correlates in most cases to the order added. To expose dependencies on this
2500 * order, we start to process the tree in the middle instead of the beginning
2501 */
2502static u64 find_middle(struct rb_root *root)
2503{
2504 struct rb_node *n = root->rb_node;
2505 struct btrfs_delayed_ref_node *entry;
2506 int alt = 1;
2507 u64 middle;
2508 u64 first = 0, last = 0;
2509
2510 n = rb_first(root);
2511 if (n) {
2512 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2513 first = entry->bytenr;
2514 }
2515 n = rb_last(root);
2516 if (n) {
2517 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2518 last = entry->bytenr;
2519 }
2520 n = root->rb_node;
2521
2522 while (n) {
2523 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2524 WARN_ON(!entry->in_tree);
2525
2526 middle = entry->bytenr;
2527
2528 if (alt)
2529 n = n->rb_left;
2530 else
2531 n = n->rb_right;
2532
2533 alt = 1 - alt;
2534 }
2535 return middle;
2536}
2537#endif
2538
Arne Jansenbed92ea2012-06-28 18:03:02 +02002539int btrfs_delayed_refs_qgroup_accounting(struct btrfs_trans_handle *trans,
2540 struct btrfs_fs_info *fs_info)
2541{
2542 struct qgroup_update *qgroup_update;
2543 int ret = 0;
2544
2545 if (list_empty(&trans->qgroup_ref_list) !=
2546 !trans->delayed_ref_elem.seq) {
2547 /* list without seq or seq without list */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002548 btrfs_err(fs_info,
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +00002549 "qgroup accounting update error, list is%s empty, seq is %#x.%x",
Arne Jansenbed92ea2012-06-28 18:03:02 +02002550 list_empty(&trans->qgroup_ref_list) ? "" : " not",
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +00002551 (u32)(trans->delayed_ref_elem.seq >> 32),
2552 (u32)trans->delayed_ref_elem.seq);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002553 BUG();
2554 }
2555
2556 if (!trans->delayed_ref_elem.seq)
2557 return 0;
2558
2559 while (!list_empty(&trans->qgroup_ref_list)) {
2560 qgroup_update = list_first_entry(&trans->qgroup_ref_list,
2561 struct qgroup_update, list);
2562 list_del(&qgroup_update->list);
2563 if (!ret)
2564 ret = btrfs_qgroup_account_ref(
2565 trans, fs_info, qgroup_update->node,
2566 qgroup_update->extent_op);
2567 kfree(qgroup_update);
2568 }
2569
2570 btrfs_put_tree_mod_seq(fs_info, &trans->delayed_ref_elem);
2571
2572 return ret;
2573}
2574
Chris Masonbb721702013-01-29 18:44:12 -05002575static int refs_newer(struct btrfs_delayed_ref_root *delayed_refs, int seq,
2576 int count)
2577{
2578 int val = atomic_read(&delayed_refs->ref_seq);
2579
2580 if (val < seq || val >= seq + count)
2581 return 1;
2582 return 0;
2583}
2584
Josef Bacik1be41b72013-06-12 13:56:06 -04002585static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads)
2586{
2587 u64 num_bytes;
2588
2589 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2590 sizeof(struct btrfs_extent_inline_ref));
2591 if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2592 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2593
2594 /*
2595 * We don't ever fill up leaves all the way so multiply by 2 just to be
2596 * closer to what we're really going to want to ouse.
2597 */
2598 return div64_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root));
2599}
2600
2601int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans,
2602 struct btrfs_root *root)
2603{
2604 struct btrfs_block_rsv *global_rsv;
2605 u64 num_heads = trans->transaction->delayed_refs.num_heads_ready;
2606 u64 num_bytes;
2607 int ret = 0;
2608
2609 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
2610 num_heads = heads_to_leaves(root, num_heads);
2611 if (num_heads > 1)
2612 num_bytes += (num_heads - 1) * root->leafsize;
2613 num_bytes <<= 1;
2614 global_rsv = &root->fs_info->global_block_rsv;
2615
2616 /*
2617 * If we can't allocate any more chunks lets make sure we have _lots_ of
2618 * wiggle room since running delayed refs can create more delayed refs.
2619 */
2620 if (global_rsv->space_info->full)
2621 num_bytes <<= 1;
2622
2623 spin_lock(&global_rsv->lock);
2624 if (global_rsv->reserved <= num_bytes)
2625 ret = 1;
2626 spin_unlock(&global_rsv->lock);
2627 return ret;
2628}
2629
Chris Masonc3e69d52009-03-13 10:17:05 -04002630/*
2631 * this starts processing the delayed reference count updates and
2632 * extent insertions we have queued up so far. count can be
2633 * 0, which means to process everything in the tree at the start
2634 * of the run (but not newly added entries), or it can be some target
2635 * number you'd like to process.
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002636 *
2637 * Returns 0 on success or if called with an aborted transaction
2638 * Returns <0 on error and aborts the transaction
Chris Masonc3e69d52009-03-13 10:17:05 -04002639 */
2640int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2641 struct btrfs_root *root, unsigned long count)
2642{
2643 struct rb_node *node;
2644 struct btrfs_delayed_ref_root *delayed_refs;
2645 struct btrfs_delayed_ref_node *ref;
2646 struct list_head cluster;
2647 int ret;
Jan Schmidta1686502011-12-12 16:10:07 +01002648 u64 delayed_start;
Chris Masonc3e69d52009-03-13 10:17:05 -04002649 int run_all = count == (unsigned long)-1;
2650 int run_most = 0;
Arne Jansen1fa11e22012-08-06 14:18:51 -06002651 int loops;
Chris Masonc3e69d52009-03-13 10:17:05 -04002652
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002653 /* We'll clean this up in btrfs_cleanup_transaction */
2654 if (trans->aborted)
2655 return 0;
2656
Chris Masonc3e69d52009-03-13 10:17:05 -04002657 if (root == root->fs_info->extent_root)
2658 root = root->fs_info->tree_root;
2659
Jan Schmidtedf39272012-06-28 18:04:55 +02002660 btrfs_delayed_refs_qgroup_accounting(trans, root->fs_info);
2661
Chris Masonc3e69d52009-03-13 10:17:05 -04002662 delayed_refs = &trans->transaction->delayed_refs;
2663 INIT_LIST_HEAD(&cluster);
Chris Masonbb721702013-01-29 18:44:12 -05002664 if (count == 0) {
2665 count = delayed_refs->num_entries * 2;
2666 run_most = 1;
2667 }
2668
2669 if (!run_all && !run_most) {
2670 int old;
2671 int seq = atomic_read(&delayed_refs->ref_seq);
2672
2673progress:
2674 old = atomic_cmpxchg(&delayed_refs->procs_running_refs, 0, 1);
2675 if (old) {
2676 DEFINE_WAIT(__wait);
Josef Bacik1be41b72013-06-12 13:56:06 -04002677 if (delayed_refs->flushing ||
2678 !btrfs_should_throttle_delayed_refs(trans, root))
Chris Masonbb721702013-01-29 18:44:12 -05002679 return 0;
2680
2681 prepare_to_wait(&delayed_refs->wait, &__wait,
2682 TASK_UNINTERRUPTIBLE);
2683
2684 old = atomic_cmpxchg(&delayed_refs->procs_running_refs, 0, 1);
2685 if (old) {
2686 schedule();
2687 finish_wait(&delayed_refs->wait, &__wait);
2688
2689 if (!refs_newer(delayed_refs, seq, 256))
2690 goto progress;
2691 else
2692 return 0;
2693 } else {
2694 finish_wait(&delayed_refs->wait, &__wait);
2695 goto again;
2696 }
2697 }
2698
2699 } else {
2700 atomic_inc(&delayed_refs->procs_running_refs);
2701 }
2702
Chris Masonc3e69d52009-03-13 10:17:05 -04002703again:
Arne Jansen1fa11e22012-08-06 14:18:51 -06002704 loops = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -04002705 spin_lock(&delayed_refs->lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +02002706
Arne Jansen709c0482011-09-12 12:22:57 +02002707#ifdef SCRAMBLE_DELAYED_REFS
2708 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
2709#endif
2710
Chris Masonc3e69d52009-03-13 10:17:05 -04002711 while (1) {
2712 if (!(run_all || run_most) &&
Josef Bacik1be41b72013-06-12 13:56:06 -04002713 !btrfs_should_throttle_delayed_refs(trans, root))
Chris Masonc3e69d52009-03-13 10:17:05 -04002714 break;
2715
2716 /*
2717 * go find something we can process in the rbtree. We start at
2718 * the beginning of the tree, and then build a cluster
2719 * of refs to process starting at the first one we are able to
2720 * lock
2721 */
Jan Schmidta1686502011-12-12 16:10:07 +01002722 delayed_start = delayed_refs->run_delayed_start;
Chris Masonc3e69d52009-03-13 10:17:05 -04002723 ret = btrfs_find_ref_cluster(trans, &cluster,
2724 delayed_refs->run_delayed_start);
2725 if (ret)
2726 break;
2727
2728 ret = run_clustered_refs(trans, root, &cluster);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002729 if (ret < 0) {
Miao Xie093486c2012-12-19 08:10:10 +00002730 btrfs_release_ref_cluster(&cluster);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002731 spin_unlock(&delayed_refs->lock);
2732 btrfs_abort_transaction(trans, root, ret);
Chris Masonbb721702013-01-29 18:44:12 -05002733 atomic_dec(&delayed_refs->procs_running_refs);
Josef Bacikf971fe22013-06-10 11:52:32 -04002734 wake_up(&delayed_refs->wait);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002735 return ret;
2736 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002737
Chris Masonbb721702013-01-29 18:44:12 -05002738 atomic_add(ret, &delayed_refs->ref_seq);
2739
Chris Masonc3e69d52009-03-13 10:17:05 -04002740 count -= min_t(unsigned long, ret, count);
2741
2742 if (count == 0)
2743 break;
Jan Schmidta1686502011-12-12 16:10:07 +01002744
Arne Jansen1fa11e22012-08-06 14:18:51 -06002745 if (delayed_start >= delayed_refs->run_delayed_start) {
2746 if (loops == 0) {
2747 /*
2748 * btrfs_find_ref_cluster looped. let's do one
2749 * more cycle. if we don't run any delayed ref
2750 * during that cycle (because we can't because
2751 * all of them are blocked), bail out.
2752 */
2753 loops = 1;
2754 } else {
2755 /*
2756 * no runnable refs left, stop trying
2757 */
2758 BUG_ON(run_all);
2759 break;
2760 }
2761 }
2762 if (ret) {
Jan Schmidta1686502011-12-12 16:10:07 +01002763 /* refs were run, let's reset staleness detection */
Arne Jansen1fa11e22012-08-06 14:18:51 -06002764 loops = 0;
Jan Schmidta1686502011-12-12 16:10:07 +01002765 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002766 }
2767
Chris Mason56bec292009-03-13 10:10:06 -04002768 if (run_all) {
Josef Bacikea658ba2012-09-11 16:57:25 -04002769 if (!list_empty(&trans->new_bgs)) {
2770 spin_unlock(&delayed_refs->lock);
2771 btrfs_create_pending_block_groups(trans, root);
2772 spin_lock(&delayed_refs->lock);
2773 }
2774
Chris Mason56bec292009-03-13 10:10:06 -04002775 node = rb_first(&delayed_refs->root);
Chris Masonc3e69d52009-03-13 10:17:05 -04002776 if (!node)
Chris Mason56bec292009-03-13 10:10:06 -04002777 goto out;
Chris Masonc3e69d52009-03-13 10:17:05 -04002778 count = (unsigned long)-1;
Chris Mason56bec292009-03-13 10:10:06 -04002779
2780 while (node) {
2781 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2782 rb_node);
2783 if (btrfs_delayed_ref_is_head(ref)) {
2784 struct btrfs_delayed_ref_head *head;
2785
2786 head = btrfs_delayed_node_to_head(ref);
2787 atomic_inc(&ref->refs);
2788
2789 spin_unlock(&delayed_refs->lock);
David Sterba8cc33e52011-05-02 15:29:25 +02002790 /*
2791 * Mutex was contended, block until it's
2792 * released and try again
2793 */
Chris Mason56bec292009-03-13 10:10:06 -04002794 mutex_lock(&head->mutex);
2795 mutex_unlock(&head->mutex);
2796
2797 btrfs_put_delayed_ref(ref);
Chris Mason1887be62009-03-13 10:11:24 -04002798 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002799 goto again;
2800 }
2801 node = rb_next(node);
2802 }
2803 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002804 schedule_timeout(1);
2805 goto again;
2806 }
Chris Mason54aa1f42007-06-22 14:16:25 -04002807out:
Chris Masonbb721702013-01-29 18:44:12 -05002808 atomic_dec(&delayed_refs->procs_running_refs);
2809 smp_mb();
2810 if (waitqueue_active(&delayed_refs->wait))
2811 wake_up(&delayed_refs->wait);
2812
Chris Masonc3e69d52009-03-13 10:17:05 -04002813 spin_unlock(&delayed_refs->lock);
Jan Schmidtedf39272012-06-28 18:04:55 +02002814 assert_qgroups_uptodate(trans);
Chris Masona28ec192007-03-06 20:08:01 -05002815 return 0;
2816}
2817
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002818int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
2819 struct btrfs_root *root,
2820 u64 bytenr, u64 num_bytes, u64 flags,
Josef Bacikb1c79e02013-05-09 13:49:30 -04002821 int level, int is_data)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002822{
2823 struct btrfs_delayed_extent_op *extent_op;
2824 int ret;
2825
Miao Xie78a61842012-11-21 02:21:28 +00002826 extent_op = btrfs_alloc_delayed_extent_op();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002827 if (!extent_op)
2828 return -ENOMEM;
2829
2830 extent_op->flags_to_set = flags;
2831 extent_op->update_flags = 1;
2832 extent_op->update_key = 0;
2833 extent_op->is_data = is_data ? 1 : 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002834 extent_op->level = level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002835
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002836 ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr,
2837 num_bytes, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002838 if (ret)
Miao Xie78a61842012-11-21 02:21:28 +00002839 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002840 return ret;
2841}
2842
2843static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
2844 struct btrfs_root *root,
2845 struct btrfs_path *path,
2846 u64 objectid, u64 offset, u64 bytenr)
2847{
2848 struct btrfs_delayed_ref_head *head;
2849 struct btrfs_delayed_ref_node *ref;
2850 struct btrfs_delayed_data_ref *data_ref;
2851 struct btrfs_delayed_ref_root *delayed_refs;
2852 struct rb_node *node;
2853 int ret = 0;
2854
2855 ret = -ENOENT;
2856 delayed_refs = &trans->transaction->delayed_refs;
2857 spin_lock(&delayed_refs->lock);
2858 head = btrfs_find_delayed_ref_head(trans, bytenr);
2859 if (!head)
2860 goto out;
2861
2862 if (!mutex_trylock(&head->mutex)) {
2863 atomic_inc(&head->node.refs);
2864 spin_unlock(&delayed_refs->lock);
2865
David Sterbab3b4aa72011-04-21 01:20:15 +02002866 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002867
David Sterba8cc33e52011-05-02 15:29:25 +02002868 /*
2869 * Mutex was contended, block until it's released and let
2870 * caller try again
2871 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002872 mutex_lock(&head->mutex);
2873 mutex_unlock(&head->mutex);
2874 btrfs_put_delayed_ref(&head->node);
2875 return -EAGAIN;
2876 }
2877
2878 node = rb_prev(&head->node.rb_node);
2879 if (!node)
2880 goto out_unlock;
2881
2882 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
2883
2884 if (ref->bytenr != bytenr)
2885 goto out_unlock;
2886
2887 ret = 1;
2888 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY)
2889 goto out_unlock;
2890
2891 data_ref = btrfs_delayed_node_to_data_ref(ref);
2892
2893 node = rb_prev(node);
2894 if (node) {
Liu Bodf57dbe2012-07-23 05:50:03 -06002895 int seq = ref->seq;
2896
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002897 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
Liu Bodf57dbe2012-07-23 05:50:03 -06002898 if (ref->bytenr == bytenr && ref->seq == seq)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002899 goto out_unlock;
2900 }
2901
2902 if (data_ref->root != root->root_key.objectid ||
2903 data_ref->objectid != objectid || data_ref->offset != offset)
2904 goto out_unlock;
2905
2906 ret = 0;
2907out_unlock:
2908 mutex_unlock(&head->mutex);
2909out:
2910 spin_unlock(&delayed_refs->lock);
2911 return ret;
2912}
2913
2914static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
2915 struct btrfs_root *root,
2916 struct btrfs_path *path,
2917 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05002918{
2919 struct btrfs_root *extent_root = root->fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04002920 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002921 struct btrfs_extent_data_ref *ref;
2922 struct btrfs_extent_inline_ref *iref;
2923 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05002924 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002925 u32 item_size;
Yan Zhengf321e492008-07-30 09:26:11 -04002926 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05002927
Chris Masonbe20aa92007-12-17 20:14:01 -05002928 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04002929 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04002930 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05002931
Chris Masonbe20aa92007-12-17 20:14:01 -05002932 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2933 if (ret < 0)
2934 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002935 BUG_ON(ret == 0); /* Corruption */
Yan Zheng80ff3852008-10-30 14:20:02 -04002936
2937 ret = -ENOENT;
2938 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04002939 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002940
Zheng Yan31840ae2008-09-23 13:14:14 -04002941 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04002942 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002943 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05002944
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002945 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05002946 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002947
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002948 ret = 1;
2949 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2950#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2951 if (item_size < sizeof(*ei)) {
2952 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
2953 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002954 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002955#endif
2956 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2957
2958 if (item_size != sizeof(*ei) +
2959 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
2960 goto out;
2961
2962 if (btrfs_extent_generation(leaf, ei) <=
2963 btrfs_root_last_snapshot(&root->root_item))
2964 goto out;
2965
2966 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
2967 if (btrfs_extent_inline_ref_type(leaf, iref) !=
2968 BTRFS_EXTENT_DATA_REF_KEY)
2969 goto out;
2970
2971 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
2972 if (btrfs_extent_refs(leaf, ei) !=
2973 btrfs_extent_data_ref_count(leaf, ref) ||
2974 btrfs_extent_data_ref_root(leaf, ref) !=
2975 root->root_key.objectid ||
2976 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
2977 btrfs_extent_data_ref_offset(leaf, ref) != offset)
2978 goto out;
2979
Yan Zhengf321e492008-07-30 09:26:11 -04002980 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05002981out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002982 return ret;
2983}
2984
2985int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
2986 struct btrfs_root *root,
2987 u64 objectid, u64 offset, u64 bytenr)
2988{
2989 struct btrfs_path *path;
2990 int ret;
2991 int ret2;
2992
2993 path = btrfs_alloc_path();
2994 if (!path)
2995 return -ENOENT;
2996
2997 do {
2998 ret = check_committed_ref(trans, root, path, objectid,
2999 offset, bytenr);
3000 if (ret && ret != -ENOENT)
3001 goto out;
3002
3003 ret2 = check_delayed_ref(trans, root, path, objectid,
3004 offset, bytenr);
3005 } while (ret2 == -EAGAIN);
3006
3007 if (ret2 && ret2 != -ENOENT) {
3008 ret = ret2;
3009 goto out;
3010 }
3011
3012 if (ret != -ENOENT || ret2 != -ENOENT)
3013 ret = 0;
3014out:
Yan Zhengf321e492008-07-30 09:26:11 -04003015 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003016 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3017 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04003018 return ret;
3019}
3020
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003021static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05003022 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003023 struct extent_buffer *buf,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003024 int full_backref, int inc, int for_cow)
Zheng Yan31840ae2008-09-23 13:14:14 -04003025{
3026 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003027 u64 num_bytes;
3028 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003029 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04003030 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04003031 struct btrfs_key key;
3032 struct btrfs_file_extent_item *fi;
3033 int i;
3034 int level;
3035 int ret = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04003036 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003037 u64, u64, u64, u64, u64, u64, int);
Zheng Yan31840ae2008-09-23 13:14:14 -04003038
3039 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04003040 nritems = btrfs_header_nritems(buf);
3041 level = btrfs_header_level(buf);
3042
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003043 if (!root->ref_cows && level == 0)
3044 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05003045
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003046 if (inc)
3047 process_func = btrfs_inc_extent_ref;
3048 else
3049 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003050
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003051 if (full_backref)
3052 parent = buf->start;
3053 else
3054 parent = 0;
3055
Zheng Yan31840ae2008-09-23 13:14:14 -04003056 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04003057 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003058 btrfs_item_key_to_cpu(buf, &key, i);
3059 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04003060 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003061 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04003062 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003063 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04003064 BTRFS_FILE_EXTENT_INLINE)
3065 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003066 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3067 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04003068 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003069
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003070 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3071 key.offset -= btrfs_file_extent_offset(buf, fi);
3072 ret = process_func(trans, root, bytenr, num_bytes,
3073 parent, ref_root, key.objectid,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003074 key.offset, for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003075 if (ret)
3076 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05003077 } else {
3078 bytenr = btrfs_node_blockptr(buf, i);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003079 num_bytes = btrfs_level_size(root, level - 1);
3080 ret = process_func(trans, root, bytenr, num_bytes,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003081 parent, ref_root, level - 1, 0,
3082 for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003083 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04003084 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04003085 }
3086 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003087 return 0;
3088fail:
Chris Mason54aa1f42007-06-22 14:16:25 -04003089 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05003090}
3091
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003092int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003093 struct extent_buffer *buf, int full_backref, int for_cow)
Zheng Yan31840ae2008-09-23 13:14:14 -04003094{
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003095 return __btrfs_mod_ref(trans, root, buf, full_backref, 1, for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003096}
Zheng Yan31840ae2008-09-23 13:14:14 -04003097
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003098int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003099 struct extent_buffer *buf, int full_backref, int for_cow)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003100{
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003101 return __btrfs_mod_ref(trans, root, buf, full_backref, 0, for_cow);
Zheng Yan31840ae2008-09-23 13:14:14 -04003102}
3103
Chris Mason9078a3e2007-04-26 16:46:15 -04003104static int write_one_cache_group(struct btrfs_trans_handle *trans,
3105 struct btrfs_root *root,
3106 struct btrfs_path *path,
3107 struct btrfs_block_group_cache *cache)
3108{
3109 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003110 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003111 unsigned long bi;
3112 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04003113
Chris Mason9078a3e2007-04-26 16:46:15 -04003114 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003115 if (ret < 0)
3116 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003117 BUG_ON(ret); /* Corruption */
Chris Mason5f39d392007-10-15 16:14:19 -04003118
3119 leaf = path->nodes[0];
3120 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3121 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3122 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003123 btrfs_release_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04003124fail:
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003125 if (ret) {
3126 btrfs_abort_transaction(trans, root, ret);
Chris Mason9078a3e2007-04-26 16:46:15 -04003127 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003128 }
Chris Mason9078a3e2007-04-26 16:46:15 -04003129 return 0;
3130
3131}
3132
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003133static struct btrfs_block_group_cache *
3134next_block_group(struct btrfs_root *root,
3135 struct btrfs_block_group_cache *cache)
3136{
3137 struct rb_node *node;
3138 spin_lock(&root->fs_info->block_group_cache_lock);
3139 node = rb_next(&cache->cache_node);
3140 btrfs_put_block_group(cache);
3141 if (node) {
3142 cache = rb_entry(node, struct btrfs_block_group_cache,
3143 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00003144 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003145 } else
3146 cache = NULL;
3147 spin_unlock(&root->fs_info->block_group_cache_lock);
3148 return cache;
3149}
3150
Josef Bacik0af3d002010-06-21 14:48:16 -04003151static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3152 struct btrfs_trans_handle *trans,
3153 struct btrfs_path *path)
3154{
3155 struct btrfs_root *root = block_group->fs_info->tree_root;
3156 struct inode *inode = NULL;
3157 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05003158 int dcs = BTRFS_DC_ERROR;
Josef Bacik0af3d002010-06-21 14:48:16 -04003159 int num_pages = 0;
3160 int retries = 0;
3161 int ret = 0;
3162
3163 /*
3164 * If this block group is smaller than 100 megs don't bother caching the
3165 * block group.
3166 */
3167 if (block_group->key.offset < (100 * 1024 * 1024)) {
3168 spin_lock(&block_group->lock);
3169 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3170 spin_unlock(&block_group->lock);
3171 return 0;
3172 }
3173
3174again:
3175 inode = lookup_free_space_inode(root, block_group, path);
3176 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3177 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02003178 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003179 goto out;
3180 }
3181
3182 if (IS_ERR(inode)) {
3183 BUG_ON(retries);
3184 retries++;
3185
3186 if (block_group->ro)
3187 goto out_free;
3188
3189 ret = create_free_space_inode(root, trans, block_group, path);
3190 if (ret)
3191 goto out_free;
3192 goto again;
3193 }
3194
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003195 /* We've already setup this transaction, go ahead and exit */
3196 if (block_group->cache_generation == trans->transid &&
3197 i_size_read(inode)) {
3198 dcs = BTRFS_DC_SETUP;
3199 goto out_put;
3200 }
3201
Josef Bacik0af3d002010-06-21 14:48:16 -04003202 /*
3203 * We want to set the generation to 0, that way if anything goes wrong
3204 * from here on out we know not to trust this cache when we load up next
3205 * time.
3206 */
3207 BTRFS_I(inode)->generation = 0;
3208 ret = btrfs_update_inode(trans, root, inode);
3209 WARN_ON(ret);
3210
3211 if (i_size_read(inode) > 0) {
Miao Xie7b61cd92013-05-13 13:55:09 +00003212 ret = btrfs_check_trunc_cache_free_space(root,
3213 &root->fs_info->global_block_rsv);
3214 if (ret)
3215 goto out_put;
3216
Filipe David Borba Manana74514322013-09-20 14:46:51 +01003217 ret = btrfs_truncate_free_space_cache(root, trans, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003218 if (ret)
3219 goto out_put;
3220 }
3221
3222 spin_lock(&block_group->lock);
Liu Bocf7c1ef2012-07-06 03:31:34 -06003223 if (block_group->cached != BTRFS_CACHE_FINISHED ||
3224 !btrfs_test_opt(root, SPACE_CACHE)) {
3225 /*
3226 * don't bother trying to write stuff out _if_
3227 * a) we're not cached,
3228 * b) we're with nospace_cache mount option.
3229 */
Josef Bacik2b209822010-12-03 13:17:53 -05003230 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04003231 spin_unlock(&block_group->lock);
3232 goto out_put;
3233 }
3234 spin_unlock(&block_group->lock);
3235
Josef Bacik6fc823b2012-08-06 13:46:38 -06003236 /*
3237 * Try to preallocate enough space based on how big the block group is.
3238 * Keep in mind this has to include any pinned space which could end up
3239 * taking up quite a bit since it's not folded into the other space
3240 * cache.
3241 */
3242 num_pages = (int)div64_u64(block_group->key.offset, 256 * 1024 * 1024);
Josef Bacik0af3d002010-06-21 14:48:16 -04003243 if (!num_pages)
3244 num_pages = 1;
3245
Josef Bacik0af3d002010-06-21 14:48:16 -04003246 num_pages *= 16;
3247 num_pages *= PAGE_CACHE_SIZE;
3248
3249 ret = btrfs_check_data_free_space(inode, num_pages);
3250 if (ret)
3251 goto out_put;
3252
3253 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3254 num_pages, num_pages,
3255 &alloc_hint);
Josef Bacik2b209822010-12-03 13:17:53 -05003256 if (!ret)
3257 dcs = BTRFS_DC_SETUP;
Josef Bacik0af3d002010-06-21 14:48:16 -04003258 btrfs_free_reserved_data_space(inode, num_pages);
Josef Bacikc09544e2011-08-30 10:19:10 -04003259
Josef Bacik0af3d002010-06-21 14:48:16 -04003260out_put:
3261 iput(inode);
3262out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02003263 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003264out:
3265 spin_lock(&block_group->lock);
Josef Bacike65cbb92011-12-13 16:04:54 -05003266 if (!ret && dcs == BTRFS_DC_SETUP)
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003267 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05003268 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04003269 spin_unlock(&block_group->lock);
3270
3271 return ret;
3272}
3273
Chris Mason96b51792007-10-15 16:15:19 -04003274int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
3275 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04003276{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003277 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04003278 int err = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003279 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -04003280 u64 last = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003281
3282 path = btrfs_alloc_path();
3283 if (!path)
3284 return -ENOMEM;
3285
Josef Bacik0af3d002010-06-21 14:48:16 -04003286again:
3287 while (1) {
3288 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3289 while (cache) {
3290 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3291 break;
3292 cache = next_block_group(root, cache);
3293 }
3294 if (!cache) {
3295 if (last == 0)
3296 break;
3297 last = 0;
3298 continue;
3299 }
3300 err = cache_save_setup(cache, trans, path);
3301 last = cache->key.objectid + cache->key.offset;
3302 btrfs_put_block_group(cache);
3303 }
3304
Chris Masond3977122009-01-05 21:25:51 -05003305 while (1) {
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003306 if (last == 0) {
3307 err = btrfs_run_delayed_refs(trans, root,
3308 (unsigned long)-1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003309 if (err) /* File system offline */
3310 goto out;
Josef Bacik0f9dd462008-09-23 13:14:11 -04003311 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04003312
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003313 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3314 while (cache) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003315 if (cache->disk_cache_state == BTRFS_DC_CLEAR) {
3316 btrfs_put_block_group(cache);
3317 goto again;
3318 }
3319
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003320 if (cache->dirty)
3321 break;
3322 cache = next_block_group(root, cache);
3323 }
3324 if (!cache) {
3325 if (last == 0)
3326 break;
3327 last = 0;
Chris Mason96b51792007-10-15 16:15:19 -04003328 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -04003329 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003330
Josef Bacik0cb59c92010-07-02 12:14:14 -04003331 if (cache->disk_cache_state == BTRFS_DC_SETUP)
3332 cache->disk_cache_state = BTRFS_DC_NEED_WRITE;
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003333 cache->dirty = 0;
3334 last = cache->key.objectid + cache->key.offset;
3335
3336 err = write_one_cache_group(trans, root, path, cache);
Filipe David Borba Mananae84cc142013-09-09 19:49:43 +01003337 btrfs_put_block_group(cache);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003338 if (err) /* File system offline */
3339 goto out;
Chris Mason9078a3e2007-04-26 16:46:15 -04003340 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003341
Josef Bacik0cb59c92010-07-02 12:14:14 -04003342 while (1) {
3343 /*
3344 * I don't think this is needed since we're just marking our
3345 * preallocated extent as written, but just in case it can't
3346 * hurt.
3347 */
3348 if (last == 0) {
3349 err = btrfs_run_delayed_refs(trans, root,
3350 (unsigned long)-1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003351 if (err) /* File system offline */
3352 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -04003353 }
3354
3355 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3356 while (cache) {
3357 /*
3358 * Really this shouldn't happen, but it could if we
3359 * couldn't write the entire preallocated extent and
3360 * splitting the extent resulted in a new block.
3361 */
3362 if (cache->dirty) {
3363 btrfs_put_block_group(cache);
3364 goto again;
3365 }
3366 if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
3367 break;
3368 cache = next_block_group(root, cache);
3369 }
3370 if (!cache) {
3371 if (last == 0)
3372 break;
3373 last = 0;
3374 continue;
3375 }
3376
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003377 err = btrfs_write_out_cache(root, trans, cache, path);
Josef Bacik0cb59c92010-07-02 12:14:14 -04003378
3379 /*
3380 * If we didn't have an error then the cache state is still
3381 * NEED_WRITE, so we can set it to WRITTEN.
3382 */
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003383 if (!err && cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
Josef Bacik0cb59c92010-07-02 12:14:14 -04003384 cache->disk_cache_state = BTRFS_DC_WRITTEN;
3385 last = cache->key.objectid + cache->key.offset;
3386 btrfs_put_block_group(cache);
3387 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003388out:
Josef Bacik0cb59c92010-07-02 12:14:14 -04003389
Chris Mason9078a3e2007-04-26 16:46:15 -04003390 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003391 return err;
Chris Mason9078a3e2007-04-26 16:46:15 -04003392}
3393
Yan Zhengd2fb3432008-12-11 16:30:39 -05003394int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
3395{
3396 struct btrfs_block_group_cache *block_group;
3397 int readonly = 0;
3398
3399 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
3400 if (!block_group || block_group->ro)
3401 readonly = 1;
3402 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04003403 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003404 return readonly;
3405}
3406
Chris Mason593060d2008-03-25 16:50:33 -04003407static int update_space_info(struct btrfs_fs_info *info, u64 flags,
3408 u64 total_bytes, u64 bytes_used,
3409 struct btrfs_space_info **space_info)
3410{
3411 struct btrfs_space_info *found;
Yan, Zhengb742bb822010-05-16 10:46:24 -04003412 int i;
3413 int factor;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003414 int ret;
Yan, Zhengb742bb822010-05-16 10:46:24 -04003415
3416 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
3417 BTRFS_BLOCK_GROUP_RAID10))
3418 factor = 2;
3419 else
3420 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04003421
3422 found = __find_space_info(info, flags);
3423 if (found) {
Josef Bacik25179202008-10-29 14:49:05 -04003424 spin_lock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003425 found->total_bytes += total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003426 found->disk_total += total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003427 found->bytes_used += bytes_used;
Yan, Zhengb742bb822010-05-16 10:46:24 -04003428 found->disk_used += bytes_used * factor;
Chris Mason8f18cf12008-04-25 16:53:30 -04003429 found->full = 0;
Josef Bacik25179202008-10-29 14:49:05 -04003430 spin_unlock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003431 *space_info = found;
3432 return 0;
3433 }
Yan Zhengc146afa2008-11-12 14:34:12 -05003434 found = kzalloc(sizeof(*found), GFP_NOFS);
Chris Mason593060d2008-03-25 16:50:33 -04003435 if (!found)
3436 return -ENOMEM;
3437
Josef Bacikb150a4f2013-06-19 15:00:04 -04003438 ret = percpu_counter_init(&found->total_bytes_pinned, 0);
3439 if (ret) {
3440 kfree(found);
3441 return ret;
3442 }
3443
Yan, Zhengb742bb822010-05-16 10:46:24 -04003444 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
3445 INIT_LIST_HEAD(&found->block_groups[i]);
Josef Bacik80eb2342008-10-29 14:49:05 -04003446 init_rwsem(&found->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003447 spin_lock_init(&found->lock);
Ilya Dryomov52ba6922012-01-16 22:04:47 +02003448 found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
Chris Mason593060d2008-03-25 16:50:33 -04003449 found->total_bytes = total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003450 found->disk_total = total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003451 found->bytes_used = bytes_used;
Yan, Zhengb742bb822010-05-16 10:46:24 -04003452 found->disk_used = bytes_used * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003453 found->bytes_pinned = 0;
Zheng Yane8569812008-09-26 10:05:48 -04003454 found->bytes_reserved = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003455 found->bytes_readonly = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003456 found->bytes_may_use = 0;
Chris Mason593060d2008-03-25 16:50:33 -04003457 found->full = 0;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003458 found->force_alloc = CHUNK_ALLOC_NO_FORCE;
Josef Bacik6d741192011-04-11 20:20:11 -04003459 found->chunk_alloc = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003460 found->flush = 0;
3461 init_waitqueue_head(&found->wait);
Chris Mason593060d2008-03-25 16:50:33 -04003462 *space_info = found;
Chris Mason4184ea72009-03-10 12:39:20 -04003463 list_add_rcu(&found->list, &info->space_info);
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003464 if (flags & BTRFS_BLOCK_GROUP_DATA)
3465 info->data_sinfo = found;
Chris Mason593060d2008-03-25 16:50:33 -04003466 return 0;
3467}
3468
Chris Mason8790d502008-04-03 16:29:03 -04003469static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3470{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003471 u64 extra_flags = chunk_to_extended(flags) &
3472 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003473
Miao Xiede98ced2013-01-29 10:13:12 +00003474 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003475 if (flags & BTRFS_BLOCK_GROUP_DATA)
3476 fs_info->avail_data_alloc_bits |= extra_flags;
3477 if (flags & BTRFS_BLOCK_GROUP_METADATA)
3478 fs_info->avail_metadata_alloc_bits |= extra_flags;
3479 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3480 fs_info->avail_system_alloc_bits |= extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003481 write_sequnlock(&fs_info->profiles_lock);
Chris Mason8790d502008-04-03 16:29:03 -04003482}
Chris Mason593060d2008-03-25 16:50:33 -04003483
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003484/*
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003485 * returns target flags in extended format or 0 if restripe for this
3486 * chunk_type is not in progress
Ilya Dryomovc6664b42012-04-12 16:03:56 -04003487 *
3488 * should be called with either volume_mutex or balance_lock held
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003489 */
3490static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
3491{
3492 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3493 u64 target = 0;
3494
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003495 if (!bctl)
3496 return 0;
3497
3498 if (flags & BTRFS_BLOCK_GROUP_DATA &&
3499 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3500 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
3501 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
3502 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3503 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
3504 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
3505 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3506 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
3507 }
3508
3509 return target;
3510}
3511
3512/*
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003513 * @flags: available profiles in extended format (see ctree.h)
3514 *
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003515 * Returns reduced profile in chunk format. If profile changing is in
3516 * progress (either running or paused) picks the target profile (if it's
3517 * already available), otherwise falls back to plain reducing.
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003518 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003519static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04003520{
Chris Masoncd02dca2010-12-13 14:56:23 -05003521 /*
3522 * we add in the count of missing devices because we want
3523 * to make sure that any RAID levels on a degraded FS
3524 * continue to be honored.
3525 */
3526 u64 num_devices = root->fs_info->fs_devices->rw_devices +
3527 root->fs_info->fs_devices->missing_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003528 u64 target;
David Woodhouse53b381b2013-01-29 18:40:14 -05003529 u64 tmp;
Chris Masona061fc82008-05-07 11:43:44 -04003530
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003531 /*
3532 * see if restripe for this chunk_type is in progress, if so
3533 * try to reduce to the target profile
3534 */
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003535 spin_lock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003536 target = get_restripe_target(root->fs_info, flags);
3537 if (target) {
3538 /* pick target profile only if it's already available */
3539 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003540 spin_unlock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003541 return extended_to_chunk(target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003542 }
3543 }
3544 spin_unlock(&root->fs_info->balance_lock);
3545
David Woodhouse53b381b2013-01-29 18:40:14 -05003546 /* First, mask out the RAID levels which aren't possible */
Chris Masona061fc82008-05-07 11:43:44 -04003547 if (num_devices == 1)
David Woodhouse53b381b2013-01-29 18:40:14 -05003548 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0 |
3549 BTRFS_BLOCK_GROUP_RAID5);
3550 if (num_devices < 3)
3551 flags &= ~BTRFS_BLOCK_GROUP_RAID6;
Chris Masona061fc82008-05-07 11:43:44 -04003552 if (num_devices < 4)
3553 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
3554
David Woodhouse53b381b2013-01-29 18:40:14 -05003555 tmp = flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID0 |
3556 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID5 |
3557 BTRFS_BLOCK_GROUP_RAID6 | BTRFS_BLOCK_GROUP_RAID10);
3558 flags &= ~tmp;
Chris Masonec44a352008-04-28 15:29:52 -04003559
David Woodhouse53b381b2013-01-29 18:40:14 -05003560 if (tmp & BTRFS_BLOCK_GROUP_RAID6)
3561 tmp = BTRFS_BLOCK_GROUP_RAID6;
3562 else if (tmp & BTRFS_BLOCK_GROUP_RAID5)
3563 tmp = BTRFS_BLOCK_GROUP_RAID5;
3564 else if (tmp & BTRFS_BLOCK_GROUP_RAID10)
3565 tmp = BTRFS_BLOCK_GROUP_RAID10;
3566 else if (tmp & BTRFS_BLOCK_GROUP_RAID1)
3567 tmp = BTRFS_BLOCK_GROUP_RAID1;
3568 else if (tmp & BTRFS_BLOCK_GROUP_RAID0)
3569 tmp = BTRFS_BLOCK_GROUP_RAID0;
Chris Masonec44a352008-04-28 15:29:52 -04003570
David Woodhouse53b381b2013-01-29 18:40:14 -05003571 return extended_to_chunk(flags | tmp);
Chris Masonec44a352008-04-28 15:29:52 -04003572}
3573
Yan, Zhengb742bb822010-05-16 10:46:24 -04003574static u64 get_alloc_profile(struct btrfs_root *root, u64 flags)
Josef Bacik6a632092009-02-20 11:00:09 -05003575{
Miao Xiede98ced2013-01-29 10:13:12 +00003576 unsigned seq;
3577
3578 do {
3579 seq = read_seqbegin(&root->fs_info->profiles_lock);
3580
3581 if (flags & BTRFS_BLOCK_GROUP_DATA)
3582 flags |= root->fs_info->avail_data_alloc_bits;
3583 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3584 flags |= root->fs_info->avail_system_alloc_bits;
3585 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
3586 flags |= root->fs_info->avail_metadata_alloc_bits;
3587 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02003588
Yan, Zhengb742bb822010-05-16 10:46:24 -04003589 return btrfs_reduce_alloc_profile(root, flags);
3590}
Josef Bacik6a632092009-02-20 11:00:09 -05003591
Miao Xie6d07bce2011-01-05 10:07:31 +00003592u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
Yan, Zhengb742bb822010-05-16 10:46:24 -04003593{
3594 u64 flags;
David Woodhouse53b381b2013-01-29 18:40:14 -05003595 u64 ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003596
Yan, Zhengb742bb822010-05-16 10:46:24 -04003597 if (data)
3598 flags = BTRFS_BLOCK_GROUP_DATA;
3599 else if (root == root->fs_info->chunk_root)
3600 flags = BTRFS_BLOCK_GROUP_SYSTEM;
3601 else
3602 flags = BTRFS_BLOCK_GROUP_METADATA;
3603
David Woodhouse53b381b2013-01-29 18:40:14 -05003604 ret = get_alloc_profile(root, flags);
3605 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003606}
3607
Josef Bacik6a632092009-02-20 11:00:09 -05003608/*
3609 * This will check the space that the inode allocates from to make sure we have
3610 * enough space for bytes.
3611 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003612int btrfs_check_data_free_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003613{
3614 struct btrfs_space_info *data_sinfo;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003615 struct btrfs_root *root = BTRFS_I(inode)->root;
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003616 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacikab6e24102010-03-19 14:38:13 +00003617 u64 used;
Josef Bacik0af3d002010-06-21 14:48:16 -04003618 int ret = 0, committed = 0, alloc_chunk = 1;
Josef Bacik6a632092009-02-20 11:00:09 -05003619
3620 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00003621 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05003622
Miao Xie9dced182013-10-25 17:33:36 +08003623 if (btrfs_is_free_space_inode(inode)) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003624 committed = 1;
Miao Xie9dced182013-10-25 17:33:36 +08003625 ASSERT(current->journal_info);
Josef Bacik0af3d002010-06-21 14:48:16 -04003626 }
3627
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003628 data_sinfo = fs_info->data_sinfo;
Chris Mason33b4d472009-09-22 14:45:50 -04003629 if (!data_sinfo)
3630 goto alloc;
3631
Josef Bacik6a632092009-02-20 11:00:09 -05003632again:
3633 /* make sure we have enough space to handle the data first */
3634 spin_lock(&data_sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003635 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
3636 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
3637 data_sinfo->bytes_may_use;
Josef Bacikab6e24102010-03-19 14:38:13 +00003638
3639 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003640 struct btrfs_trans_handle *trans;
3641
Josef Bacik6a632092009-02-20 11:00:09 -05003642 /*
3643 * if we don't have enough free bytes in this space then we need
3644 * to alloc a new chunk.
3645 */
Josef Bacik0af3d002010-06-21 14:48:16 -04003646 if (!data_sinfo->full && alloc_chunk) {
Josef Bacik6a632092009-02-20 11:00:09 -05003647 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05003648
Chris Mason0e4f8f82011-04-15 16:05:44 -04003649 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05003650 spin_unlock(&data_sinfo->lock);
Chris Mason33b4d472009-09-22 14:45:50 -04003651alloc:
Josef Bacik6a632092009-02-20 11:00:09 -05003652 alloc_target = btrfs_get_alloc_profile(root, 1);
Miao Xie9dced182013-10-25 17:33:36 +08003653 /*
3654 * It is ugly that we don't call nolock join
3655 * transaction for the free space inode case here.
3656 * But it is safe because we only do the data space
3657 * reservation for the free space cache in the
3658 * transaction context, the common join transaction
3659 * just increase the counter of the current transaction
3660 * handler, doesn't try to acquire the trans_lock of
3661 * the fs.
3662 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003663 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003664 if (IS_ERR(trans))
3665 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05003666
3667 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0e4f8f82011-04-15 16:05:44 -04003668 alloc_target,
3669 CHUNK_ALLOC_NO_FORCE);
Josef Bacik6a632092009-02-20 11:00:09 -05003670 btrfs_end_transaction(trans, root);
Miao Xied52a5b52011-01-05 10:07:18 +00003671 if (ret < 0) {
3672 if (ret != -ENOSPC)
3673 return ret;
3674 else
3675 goto commit_trans;
3676 }
Chris Mason33b4d472009-09-22 14:45:50 -04003677
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003678 if (!data_sinfo)
3679 data_sinfo = fs_info->data_sinfo;
3680
Josef Bacik6a632092009-02-20 11:00:09 -05003681 goto again;
3682 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003683
3684 /*
Josef Bacikb150a4f2013-06-19 15:00:04 -04003685 * If we don't have enough pinned space to deal with this
3686 * allocation don't bother committing the transaction.
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003687 */
Josef Bacikb150a4f2013-06-19 15:00:04 -04003688 if (percpu_counter_compare(&data_sinfo->total_bytes_pinned,
3689 bytes) < 0)
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003690 committed = 1;
Josef Bacik6a632092009-02-20 11:00:09 -05003691 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003692
3693 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00003694commit_trans:
Josef Bacika4abeea2011-04-11 17:25:13 -04003695 if (!committed &&
3696 !atomic_read(&root->fs_info->open_ioctl_trans)) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003697 committed = 1;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003698
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003699 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003700 if (IS_ERR(trans))
3701 return PTR_ERR(trans);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003702 ret = btrfs_commit_transaction(trans, root);
3703 if (ret)
3704 return ret;
3705 goto again;
3706 }
3707
Jeff Mahoneycab45e22013-10-16 16:27:01 -04003708 trace_btrfs_space_reservation(root->fs_info,
3709 "space_info:enospc",
3710 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05003711 return -ENOSPC;
3712 }
3713 data_sinfo->bytes_may_use += bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05003714 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04003715 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05003716 spin_unlock(&data_sinfo->lock);
3717
Josef Bacik9ed74f22009-09-11 16:12:44 -04003718 return 0;
Josef Bacik6a632092009-02-20 11:00:09 -05003719}
3720
3721/*
Josef Bacikfb25e912011-07-26 17:00:46 -04003722 * Called if we need to clear a data reservation for this inode.
Josef Bacik6a632092009-02-20 11:00:09 -05003723 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003724void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003725{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003726 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003727 struct btrfs_space_info *data_sinfo;
3728
3729 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00003730 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05003731
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003732 data_sinfo = root->fs_info->data_sinfo;
Josef Bacik6a632092009-02-20 11:00:09 -05003733 spin_lock(&data_sinfo->lock);
Josef Bacik7ee9e442013-06-21 16:37:03 -04003734 WARN_ON(data_sinfo->bytes_may_use < bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05003735 data_sinfo->bytes_may_use -= bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05003736 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04003737 data_sinfo->flags, bytes, 0);
Josef Bacik6a632092009-02-20 11:00:09 -05003738 spin_unlock(&data_sinfo->lock);
3739}
3740
Josef Bacik97e728d2009-04-21 17:40:57 -04003741static void force_metadata_allocation(struct btrfs_fs_info *info)
3742{
3743 struct list_head *head = &info->space_info;
3744 struct btrfs_space_info *found;
3745
3746 rcu_read_lock();
3747 list_for_each_entry_rcu(found, head, list) {
3748 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04003749 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04003750 }
3751 rcu_read_unlock();
3752}
3753
Miao Xie3c76cd82013-04-25 10:12:38 +00003754static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
3755{
3756 return (global->size << 1);
3757}
3758
Chris Masone5bc2452010-10-26 13:37:56 -04003759static int should_alloc_chunk(struct btrfs_root *root,
Josef Bacik698d0082012-09-12 14:08:47 -04003760 struct btrfs_space_info *sinfo, int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04003761{
Josef Bacikfb25e912011-07-26 17:00:46 -04003762 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zheng424499d2010-05-16 10:46:25 -04003763 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003764 u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved;
Chris Masone5bc2452010-10-26 13:37:56 -04003765 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04003766
Chris Mason0e4f8f82011-04-15 16:05:44 -04003767 if (force == CHUNK_ALLOC_FORCE)
3768 return 1;
3769
3770 /*
Josef Bacikfb25e912011-07-26 17:00:46 -04003771 * We need to take into account the global rsv because for all intents
3772 * and purposes it's used space. Don't worry about locking the
3773 * global_rsv, it doesn't change except when the transaction commits.
3774 */
Josef Bacik54338b52012-08-14 16:20:52 -04003775 if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA)
Miao Xie3c76cd82013-04-25 10:12:38 +00003776 num_allocated += calc_global_rsv_need_space(global_rsv);
Josef Bacikfb25e912011-07-26 17:00:46 -04003777
3778 /*
Chris Mason0e4f8f82011-04-15 16:05:44 -04003779 * in limited mode, we want to have some free space up to
3780 * about 1% of the FS size.
3781 */
3782 if (force == CHUNK_ALLOC_LIMITED) {
David Sterba6c417612011-04-13 15:41:04 +02003783 thresh = btrfs_super_total_bytes(root->fs_info->super_copy);
Chris Mason0e4f8f82011-04-15 16:05:44 -04003784 thresh = max_t(u64, 64 * 1024 * 1024,
3785 div_factor_fine(thresh, 1));
3786
3787 if (num_bytes - num_allocated < thresh)
3788 return 1;
3789 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04003790
Josef Bacik698d0082012-09-12 14:08:47 -04003791 if (num_allocated + 2 * 1024 * 1024 < div_factor(num_bytes, 8))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04003792 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04003793 return 1;
3794}
3795
Liu Bo15d1ff82012-03-29 09:57:44 -04003796static u64 get_system_chunk_thresh(struct btrfs_root *root, u64 type)
3797{
3798 u64 num_dev;
3799
David Woodhouse53b381b2013-01-29 18:40:14 -05003800 if (type & (BTRFS_BLOCK_GROUP_RAID10 |
3801 BTRFS_BLOCK_GROUP_RAID0 |
3802 BTRFS_BLOCK_GROUP_RAID5 |
3803 BTRFS_BLOCK_GROUP_RAID6))
Liu Bo15d1ff82012-03-29 09:57:44 -04003804 num_dev = root->fs_info->fs_devices->rw_devices;
3805 else if (type & BTRFS_BLOCK_GROUP_RAID1)
3806 num_dev = 2;
3807 else
3808 num_dev = 1; /* DUP or single */
3809
3810 /* metadata for updaing devices and chunk tree */
3811 return btrfs_calc_trans_metadata_size(root, num_dev + 1);
3812}
3813
3814static void check_system_chunk(struct btrfs_trans_handle *trans,
3815 struct btrfs_root *root, u64 type)
3816{
3817 struct btrfs_space_info *info;
3818 u64 left;
3819 u64 thresh;
3820
3821 info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
3822 spin_lock(&info->lock);
3823 left = info->total_bytes - info->bytes_used - info->bytes_pinned -
3824 info->bytes_reserved - info->bytes_readonly;
3825 spin_unlock(&info->lock);
3826
3827 thresh = get_system_chunk_thresh(root, type);
3828 if (left < thresh && btrfs_test_opt(root, ENOSPC_DEBUG)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003829 btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu",
3830 left, thresh, type);
Liu Bo15d1ff82012-03-29 09:57:44 -04003831 dump_space_info(info, 0, 0);
3832 }
3833
3834 if (left < thresh) {
3835 u64 flags;
3836
3837 flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0);
3838 btrfs_alloc_chunk(trans, root, flags);
3839 }
3840}
3841
Chris Mason6324fbf2008-03-24 15:01:59 -04003842static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Josef Bacik698d0082012-09-12 14:08:47 -04003843 struct btrfs_root *extent_root, u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04003844{
3845 struct btrfs_space_info *space_info;
Josef Bacik97e728d2009-04-21 17:40:57 -04003846 struct btrfs_fs_info *fs_info = extent_root->fs_info;
Josef Bacik6d741192011-04-11 20:20:11 -04003847 int wait_for_alloc = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003848 int ret = 0;
3849
Josef Bacikc6b305a2012-12-18 09:16:16 -05003850 /* Don't re-enter if we're already allocating a chunk */
3851 if (trans->allocating_chunk)
3852 return -ENOSPC;
3853
Chris Mason6324fbf2008-03-24 15:01:59 -04003854 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04003855 if (!space_info) {
3856 ret = update_space_info(extent_root->fs_info, flags,
3857 0, 0, &space_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003858 BUG_ON(ret); /* -ENOMEM */
Chris Mason593060d2008-03-25 16:50:33 -04003859 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003860 BUG_ON(!space_info); /* Logic error */
Chris Mason6324fbf2008-03-24 15:01:59 -04003861
Josef Bacik6d741192011-04-11 20:20:11 -04003862again:
Josef Bacik25179202008-10-29 14:49:05 -04003863 spin_lock(&space_info->lock);
Miao Xie9e622d62012-01-26 15:01:12 -05003864 if (force < space_info->force_alloc)
Chris Mason0e4f8f82011-04-15 16:05:44 -04003865 force = space_info->force_alloc;
Josef Bacik25179202008-10-29 14:49:05 -04003866 if (space_info->full) {
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01003867 if (should_alloc_chunk(extent_root, space_info, force))
3868 ret = -ENOSPC;
3869 else
3870 ret = 0;
Josef Bacik25179202008-10-29 14:49:05 -04003871 spin_unlock(&space_info->lock);
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01003872 return ret;
Josef Bacik25179202008-10-29 14:49:05 -04003873 }
Chris Mason6324fbf2008-03-24 15:01:59 -04003874
Josef Bacik698d0082012-09-12 14:08:47 -04003875 if (!should_alloc_chunk(extent_root, space_info, force)) {
Josef Bacik25179202008-10-29 14:49:05 -04003876 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04003877 return 0;
3878 } else if (space_info->chunk_alloc) {
3879 wait_for_alloc = 1;
3880 } else {
3881 space_info->chunk_alloc = 1;
Josef Bacik25179202008-10-29 14:49:05 -04003882 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04003883
Josef Bacik25179202008-10-29 14:49:05 -04003884 spin_unlock(&space_info->lock);
3885
Josef Bacik6d741192011-04-11 20:20:11 -04003886 mutex_lock(&fs_info->chunk_mutex);
3887
3888 /*
3889 * The chunk_mutex is held throughout the entirety of a chunk
3890 * allocation, so once we've acquired the chunk_mutex we know that the
3891 * other guy is done and we need to recheck and see if we should
3892 * allocate.
3893 */
3894 if (wait_for_alloc) {
3895 mutex_unlock(&fs_info->chunk_mutex);
3896 wait_for_alloc = 0;
3897 goto again;
3898 }
3899
Josef Bacikc6b305a2012-12-18 09:16:16 -05003900 trans->allocating_chunk = true;
3901
Josef Bacik97e728d2009-04-21 17:40:57 -04003902 /*
Josef Bacik67377732010-09-16 16:19:09 -04003903 * If we have mixed data/metadata chunks we want to make sure we keep
3904 * allocating mixed chunks instead of individual chunks.
3905 */
3906 if (btrfs_mixed_space_info(space_info))
3907 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
3908
3909 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04003910 * if we're doing a data chunk, go ahead and make sure that
3911 * we keep a reasonable number of metadata chunks allocated in the
3912 * FS as well.
3913 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04003914 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04003915 fs_info->data_chunk_allocations++;
3916 if (!(fs_info->data_chunk_allocations %
3917 fs_info->metadata_ratio))
3918 force_metadata_allocation(fs_info);
3919 }
3920
Liu Bo15d1ff82012-03-29 09:57:44 -04003921 /*
3922 * Check if we have enough space in SYSTEM chunk because we may need
3923 * to update devices.
3924 */
3925 check_system_chunk(trans, extent_root, flags);
3926
Yan Zheng2b820322008-11-17 21:11:30 -05003927 ret = btrfs_alloc_chunk(trans, extent_root, flags);
Josef Bacikc6b305a2012-12-18 09:16:16 -05003928 trans->allocating_chunk = false;
Mark Fasheh92b8e8972011-07-12 10:57:59 -07003929
Josef Bacik9ed74f22009-09-11 16:12:44 -04003930 spin_lock(&space_info->lock);
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00003931 if (ret < 0 && ret != -ENOSPC)
3932 goto out;
Chris Masond3977122009-01-05 21:25:51 -05003933 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04003934 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04003935 else
3936 ret = 1;
Josef Bacik6d741192011-04-11 20:20:11 -04003937
Chris Mason0e4f8f82011-04-15 16:05:44 -04003938 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00003939out:
Josef Bacik6d741192011-04-11 20:20:11 -04003940 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003941 spin_unlock(&space_info->lock);
Dan Carpentera25c75d2012-04-18 09:59:29 +03003942 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003943 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04003944}
3945
Josef Bacika80c8dc2012-09-06 16:59:33 -04003946static int can_overcommit(struct btrfs_root *root,
3947 struct btrfs_space_info *space_info, u64 bytes,
Miao Xie08e007d2012-10-16 11:33:38 +00003948 enum btrfs_reserve_flush_enum flush)
Josef Bacika80c8dc2012-09-06 16:59:33 -04003949{
Josef Bacik96f1bb52013-01-30 17:02:51 -05003950 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Josef Bacika80c8dc2012-09-06 16:59:33 -04003951 u64 profile = btrfs_get_alloc_profile(root, 0);
Miao Xie3c76cd82013-04-25 10:12:38 +00003952 u64 space_size;
Josef Bacika80c8dc2012-09-06 16:59:33 -04003953 u64 avail;
3954 u64 used;
3955
3956 used = space_info->bytes_used + space_info->bytes_reserved +
Josef Bacik96f1bb52013-01-30 17:02:51 -05003957 space_info->bytes_pinned + space_info->bytes_readonly;
3958
Josef Bacik96f1bb52013-01-30 17:02:51 -05003959 /*
3960 * We only want to allow over committing if we have lots of actual space
3961 * free, but if we don't have enough space to handle the global reserve
3962 * space then we could end up having a real enospc problem when trying
3963 * to allocate a chunk or some other such important allocation.
3964 */
Miao Xie3c76cd82013-04-25 10:12:38 +00003965 spin_lock(&global_rsv->lock);
3966 space_size = calc_global_rsv_need_space(global_rsv);
3967 spin_unlock(&global_rsv->lock);
3968 if (used + space_size >= space_info->total_bytes)
Josef Bacik96f1bb52013-01-30 17:02:51 -05003969 return 0;
3970
3971 used += space_info->bytes_may_use;
Josef Bacika80c8dc2012-09-06 16:59:33 -04003972
3973 spin_lock(&root->fs_info->free_chunk_lock);
3974 avail = root->fs_info->free_chunk_space;
3975 spin_unlock(&root->fs_info->free_chunk_lock);
3976
3977 /*
3978 * If we have dup, raid1 or raid10 then only half of the free
David Woodhouse53b381b2013-01-29 18:40:14 -05003979 * space is actually useable. For raid56, the space info used
3980 * doesn't include the parity drive, so we don't have to
3981 * change the math
Josef Bacika80c8dc2012-09-06 16:59:33 -04003982 */
3983 if (profile & (BTRFS_BLOCK_GROUP_DUP |
3984 BTRFS_BLOCK_GROUP_RAID1 |
3985 BTRFS_BLOCK_GROUP_RAID10))
3986 avail >>= 1;
3987
3988 /*
Miao Xie561c2942012-10-16 11:32:18 +00003989 * If we aren't flushing all things, let us overcommit up to
3990 * 1/2th of the space. If we can flush, don't let us overcommit
3991 * too much, let it overcommit up to 1/8 of the space.
Josef Bacika80c8dc2012-09-06 16:59:33 -04003992 */
Miao Xie08e007d2012-10-16 11:33:38 +00003993 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacik14575ae2013-09-17 10:48:00 -04003994 avail >>= 3;
Josef Bacika80c8dc2012-09-06 16:59:33 -04003995 else
Josef Bacik14575ae2013-09-17 10:48:00 -04003996 avail >>= 1;
Josef Bacika80c8dc2012-09-06 16:59:33 -04003997
Josef Bacik14575ae2013-09-17 10:48:00 -04003998 if (used + bytes < space_info->total_bytes + avail)
Josef Bacika80c8dc2012-09-06 16:59:33 -04003999 return 1;
4000 return 0;
4001}
4002
Eric Sandeen48a3b632013-04-25 20:41:01 +00004003static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root,
4004 unsigned long nr_pages)
Miao Xieda633a42012-12-20 11:19:09 +00004005{
4006 struct super_block *sb = root->fs_info->sb;
Miao Xieda633a42012-12-20 11:19:09 +00004007
Josef Bacik925a6ef2013-06-20 12:31:27 -04004008 if (down_read_trylock(&sb->s_umount)) {
4009 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
4010 up_read(&sb->s_umount);
4011 } else {
Miao Xieda633a42012-12-20 11:19:09 +00004012 /*
4013 * We needn't worry the filesystem going from r/w to r/o though
4014 * we don't acquire ->s_umount mutex, because the filesystem
4015 * should guarantee the delalloc inodes list be empty after
4016 * the filesystem is readonly(all dirty pages are written to
4017 * the disk).
4018 */
Miao Xieeb73c1b2013-05-15 07:48:22 +00004019 btrfs_start_all_delalloc_inodes(root->fs_info, 0);
Josef Bacik98ad69c2013-04-04 11:55:49 -04004020 if (!current->journal_info)
Josef Bacikf0de1812013-09-17 10:55:51 -04004021 btrfs_wait_all_ordered_extents(root->fs_info);
Miao Xieda633a42012-12-20 11:19:09 +00004022 }
4023}
4024
Miao Xie18cd8ea2013-11-04 23:13:22 +08004025static inline int calc_reclaim_items_nr(struct btrfs_root *root, u64 to_reclaim)
4026{
4027 u64 bytes;
4028 int nr;
4029
4030 bytes = btrfs_calc_trans_metadata_size(root, 1);
4031 nr = (int)div64_u64(to_reclaim, bytes);
4032 if (!nr)
4033 nr = 1;
4034 return nr;
4035}
4036
Miao Xiec61a16a2013-11-04 23:13:23 +08004037#define EXTENT_SIZE_PER_ITEM (256 * 1024)
4038
Yan, Zheng5da9d012010-05-16 10:46:25 -04004039/*
4040 * shrink metadata reservation for delalloc
4041 */
Josef Bacikf4c738c2012-07-02 17:10:51 -04004042static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig,
4043 bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04004044{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004045 struct btrfs_block_rsv *block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004046 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04004047 struct btrfs_trans_handle *trans;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004048 u64 delalloc_bytes;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004049 u64 max_reclaim;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004050 long time_left;
Miao Xied3ee29e32013-11-04 23:13:20 +08004051 unsigned long nr_pages;
4052 int loops;
Miao Xie08e007d2012-10-16 11:33:38 +00004053 enum btrfs_reserve_flush_enum flush;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004054
Miao Xiec61a16a2013-11-04 23:13:23 +08004055 /* Calc the number of the pages we need flush for space reservation */
4056 to_reclaim = calc_reclaim_items_nr(root, to_reclaim);
4057 to_reclaim *= EXTENT_SIZE_PER_ITEM;
4058
Josef Bacik663350a2011-11-03 22:54:25 -04004059 trans = (struct btrfs_trans_handle *)current->journal_info;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004060 block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004061 space_info = block_rsv->space_info;
Chris Masonbf9022e2010-10-26 13:40:45 -04004062
Miao Xie963d6782013-01-29 10:10:51 +00004063 delalloc_bytes = percpu_counter_sum_positive(
4064 &root->fs_info->delalloc_bytes);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004065 if (delalloc_bytes == 0) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004066 if (trans)
Josef Bacikf4c738c2012-07-02 17:10:51 -04004067 return;
Miao Xie38c135a2013-11-04 23:13:21 +08004068 if (wait_ordered)
4069 btrfs_wait_all_ordered_extents(root->fs_info);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004070 return;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004071 }
4072
Miao Xied3ee29e32013-11-04 23:13:20 +08004073 loops = 0;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004074 while (delalloc_bytes && loops < 3) {
4075 max_reclaim = min(delalloc_bytes, to_reclaim);
4076 nr_pages = max_reclaim >> PAGE_CACHE_SHIFT;
Miao Xieda633a42012-12-20 11:19:09 +00004077 btrfs_writeback_inodes_sb_nr(root, nr_pages);
Josef Bacikdea31f52012-09-06 16:47:00 -04004078 /*
4079 * We need to wait for the async pages to actually start before
4080 * we do anything.
4081 */
4082 wait_event(root->fs_info->async_submit_wait,
4083 !atomic_read(&root->fs_info->async_delalloc_pages));
4084
Miao Xie08e007d2012-10-16 11:33:38 +00004085 if (!trans)
4086 flush = BTRFS_RESERVE_FLUSH_ALL;
4087 else
4088 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacik0019f102010-10-15 15:18:40 -04004089 spin_lock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00004090 if (can_overcommit(root, space_info, orig, flush)) {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004091 spin_unlock(&space_info->lock);
4092 break;
4093 }
Josef Bacik0019f102010-10-15 15:18:40 -04004094 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004095
Chris Mason36e39c42011-03-12 07:08:42 -05004096 loops++;
Josef Bacikf104d042011-10-14 13:56:58 -04004097 if (wait_ordered && !trans) {
Josef Bacikf0de1812013-09-17 10:55:51 -04004098 btrfs_wait_all_ordered_extents(root->fs_info);
Josef Bacikf104d042011-10-14 13:56:58 -04004099 } else {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004100 time_left = schedule_timeout_killable(1);
Josef Bacikf104d042011-10-14 13:56:58 -04004101 if (time_left)
4102 break;
4103 }
Miao Xie963d6782013-01-29 10:10:51 +00004104 delalloc_bytes = percpu_counter_sum_positive(
4105 &root->fs_info->delalloc_bytes);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004106 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04004107}
4108
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004109/**
Josef Bacik663350a2011-11-03 22:54:25 -04004110 * maybe_commit_transaction - possibly commit the transaction if its ok to
4111 * @root - the root we're allocating for
4112 * @bytes - the number of bytes we want to reserve
4113 * @force - force the commit
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004114 *
Josef Bacik663350a2011-11-03 22:54:25 -04004115 * This will check to make sure that committing the transaction will actually
4116 * get us somewhere and then commit the transaction if it does. Otherwise it
4117 * will return -ENOSPC.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004118 */
Josef Bacik663350a2011-11-03 22:54:25 -04004119static int may_commit_transaction(struct btrfs_root *root,
4120 struct btrfs_space_info *space_info,
4121 u64 bytes, int force)
4122{
4123 struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv;
4124 struct btrfs_trans_handle *trans;
4125
4126 trans = (struct btrfs_trans_handle *)current->journal_info;
4127 if (trans)
4128 return -EAGAIN;
4129
4130 if (force)
4131 goto commit;
4132
4133 /* See if there is enough pinned space to make this reservation */
4134 spin_lock(&space_info->lock);
Josef Bacikb150a4f2013-06-19 15:00:04 -04004135 if (percpu_counter_compare(&space_info->total_bytes_pinned,
4136 bytes) >= 0) {
Josef Bacik663350a2011-11-03 22:54:25 -04004137 spin_unlock(&space_info->lock);
4138 goto commit;
4139 }
4140 spin_unlock(&space_info->lock);
4141
4142 /*
4143 * See if there is some space in the delayed insertion reservation for
4144 * this reservation.
4145 */
4146 if (space_info != delayed_rsv->space_info)
4147 return -ENOSPC;
4148
Liu Bod9b02182012-02-16 18:34:39 +08004149 spin_lock(&space_info->lock);
Josef Bacik663350a2011-11-03 22:54:25 -04004150 spin_lock(&delayed_rsv->lock);
Josef Bacikb150a4f2013-06-19 15:00:04 -04004151 if (percpu_counter_compare(&space_info->total_bytes_pinned,
4152 bytes - delayed_rsv->size) >= 0) {
Josef Bacik663350a2011-11-03 22:54:25 -04004153 spin_unlock(&delayed_rsv->lock);
Liu Bod9b02182012-02-16 18:34:39 +08004154 spin_unlock(&space_info->lock);
Josef Bacik663350a2011-11-03 22:54:25 -04004155 return -ENOSPC;
4156 }
4157 spin_unlock(&delayed_rsv->lock);
Liu Bod9b02182012-02-16 18:34:39 +08004158 spin_unlock(&space_info->lock);
Josef Bacik663350a2011-11-03 22:54:25 -04004159
4160commit:
4161 trans = btrfs_join_transaction(root);
4162 if (IS_ERR(trans))
4163 return -ENOSPC;
4164
4165 return btrfs_commit_transaction(trans, root);
4166}
4167
Josef Bacik96c3f432012-06-21 14:05:49 -04004168enum flush_state {
Josef Bacik67b0fd62012-09-24 13:42:00 -04004169 FLUSH_DELAYED_ITEMS_NR = 1,
4170 FLUSH_DELAYED_ITEMS = 2,
4171 FLUSH_DELALLOC = 3,
4172 FLUSH_DELALLOC_WAIT = 4,
Josef Bacikea658ba2012-09-11 16:57:25 -04004173 ALLOC_CHUNK = 5,
4174 COMMIT_TRANS = 6,
Josef Bacik96c3f432012-06-21 14:05:49 -04004175};
4176
4177static int flush_space(struct btrfs_root *root,
4178 struct btrfs_space_info *space_info, u64 num_bytes,
4179 u64 orig_bytes, int state)
4180{
4181 struct btrfs_trans_handle *trans;
4182 int nr;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004183 int ret = 0;
Josef Bacik96c3f432012-06-21 14:05:49 -04004184
4185 switch (state) {
Josef Bacik96c3f432012-06-21 14:05:49 -04004186 case FLUSH_DELAYED_ITEMS_NR:
4187 case FLUSH_DELAYED_ITEMS:
Miao Xie18cd8ea2013-11-04 23:13:22 +08004188 if (state == FLUSH_DELAYED_ITEMS_NR)
4189 nr = calc_reclaim_items_nr(root, num_bytes) * 2;
4190 else
Josef Bacik96c3f432012-06-21 14:05:49 -04004191 nr = -1;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004192
Josef Bacik96c3f432012-06-21 14:05:49 -04004193 trans = btrfs_join_transaction(root);
4194 if (IS_ERR(trans)) {
4195 ret = PTR_ERR(trans);
4196 break;
4197 }
4198 ret = btrfs_run_delayed_items_nr(trans, root, nr);
4199 btrfs_end_transaction(trans, root);
4200 break;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004201 case FLUSH_DELALLOC:
4202 case FLUSH_DELALLOC_WAIT:
4203 shrink_delalloc(root, num_bytes, orig_bytes,
4204 state == FLUSH_DELALLOC_WAIT);
4205 break;
Josef Bacikea658ba2012-09-11 16:57:25 -04004206 case ALLOC_CHUNK:
4207 trans = btrfs_join_transaction(root);
4208 if (IS_ERR(trans)) {
4209 ret = PTR_ERR(trans);
4210 break;
4211 }
4212 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Josef Bacikea658ba2012-09-11 16:57:25 -04004213 btrfs_get_alloc_profile(root, 0),
4214 CHUNK_ALLOC_NO_FORCE);
4215 btrfs_end_transaction(trans, root);
4216 if (ret == -ENOSPC)
4217 ret = 0;
4218 break;
Josef Bacik96c3f432012-06-21 14:05:49 -04004219 case COMMIT_TRANS:
4220 ret = may_commit_transaction(root, space_info, orig_bytes, 0);
4221 break;
4222 default:
4223 ret = -ENOSPC;
4224 break;
4225 }
4226
4227 return ret;
4228}
Josef Bacik663350a2011-11-03 22:54:25 -04004229/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004230 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
4231 * @root - the root we're allocating for
4232 * @block_rsv - the block_rsv we're allocating for
4233 * @orig_bytes - the number of bytes we want
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04004234 * @flush - whether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004235 *
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004236 * This will reserve orgi_bytes number of bytes from the space info associated
4237 * with the block_rsv. If there is not enough space it will make an attempt to
4238 * flush out space to make room. It will do this by flushing delalloc if
4239 * possible or committing the transaction. If flush is 0 then no attempts to
4240 * regain reservations will be made and this will fail if there is not enough
4241 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004242 */
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004243static int reserve_metadata_bytes(struct btrfs_root *root,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004244 struct btrfs_block_rsv *block_rsv,
Miao Xie08e007d2012-10-16 11:33:38 +00004245 u64 orig_bytes,
4246 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004247{
4248 struct btrfs_space_info *space_info = block_rsv->space_info;
Josef Bacik2bf64752011-09-26 17:12:22 -04004249 u64 used;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004250 u64 num_bytes = orig_bytes;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004251 int flush_state = FLUSH_DELAYED_ITEMS_NR;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004252 int ret = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004253 bool flushing = false;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004254
4255again:
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004256 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004257 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004258 /*
Miao Xie08e007d2012-10-16 11:33:38 +00004259 * We only want to wait if somebody other than us is flushing and we
4260 * are actually allowed to flush all things.
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004261 */
Miao Xie08e007d2012-10-16 11:33:38 +00004262 while (flush == BTRFS_RESERVE_FLUSH_ALL && !flushing &&
4263 space_info->flush) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004264 spin_unlock(&space_info->lock);
4265 /*
4266 * If we have a trans handle we can't wait because the flusher
4267 * may have to commit the transaction, which would mean we would
4268 * deadlock since we are waiting for the flusher to finish, but
4269 * hold the current transaction open.
4270 */
Josef Bacik663350a2011-11-03 22:54:25 -04004271 if (current->journal_info)
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004272 return -EAGAIN;
Arne Jansenb9688bb2012-04-18 10:27:16 +02004273 ret = wait_event_killable(space_info->wait, !space_info->flush);
4274 /* Must have been killed, return */
4275 if (ret)
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004276 return -EINTR;
4277
4278 spin_lock(&space_info->lock);
4279 }
4280
4281 ret = -ENOSPC;
Josef Bacik2bf64752011-09-26 17:12:22 -04004282 used = space_info->bytes_used + space_info->bytes_reserved +
4283 space_info->bytes_pinned + space_info->bytes_readonly +
4284 space_info->bytes_may_use;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004285
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004286 /*
4287 * The idea here is that we've not already over-reserved the block group
4288 * then we can go ahead and save our reservation first and then start
4289 * flushing if we need to. Otherwise if we've already overcommitted
4290 * lets start flushing stuff first and then come back and try to make
4291 * our reservation.
4292 */
Josef Bacik2bf64752011-09-26 17:12:22 -04004293 if (used <= space_info->total_bytes) {
4294 if (used + orig_bytes <= space_info->total_bytes) {
Josef Bacikfb25e912011-07-26 17:00:46 -04004295 space_info->bytes_may_use += orig_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004296 trace_btrfs_space_reservation(root->fs_info,
Liu Bo2bcc0322012-03-29 09:57:44 -04004297 "space_info", space_info->flags, orig_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004298 ret = 0;
4299 } else {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004300 /*
4301 * Ok set num_bytes to orig_bytes since we aren't
4302 * overocmmitted, this way we only try and reclaim what
4303 * we need.
4304 */
4305 num_bytes = orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004306 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004307 } else {
4308 /*
4309 * Ok we're over committed, set num_bytes to the overcommitted
4310 * amount plus the amount of bytes that we need for this
4311 * reservation.
4312 */
Josef Bacik2bf64752011-09-26 17:12:22 -04004313 num_bytes = used - space_info->total_bytes +
Josef Bacik96c3f432012-06-21 14:05:49 -04004314 (orig_bytes * 2);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004315 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004316
Josef Bacik44734ed2012-09-28 16:04:19 -04004317 if (ret && can_overcommit(root, space_info, orig_bytes, flush)) {
4318 space_info->bytes_may_use += orig_bytes;
4319 trace_btrfs_space_reservation(root->fs_info, "space_info",
4320 space_info->flags, orig_bytes,
4321 1);
4322 ret = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04004323 }
4324
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004325 /*
4326 * Couldn't make our reservation, save our place so while we're trying
4327 * to reclaim space we can actually use it instead of somebody else
4328 * stealing it from us.
Miao Xie08e007d2012-10-16 11:33:38 +00004329 *
4330 * We make the other tasks wait for the flush only when we can flush
4331 * all things.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004332 */
Josef Bacik72bcd992012-12-18 15:16:34 -05004333 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004334 flushing = true;
4335 space_info->flush = 1;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004336 }
4337
Yan, Zhengf0486c62010-05-16 10:46:25 -04004338 spin_unlock(&space_info->lock);
4339
Miao Xie08e007d2012-10-16 11:33:38 +00004340 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004341 goto out;
4342
Josef Bacik96c3f432012-06-21 14:05:49 -04004343 ret = flush_space(root, space_info, num_bytes, orig_bytes,
4344 flush_state);
4345 flush_state++;
Miao Xie08e007d2012-10-16 11:33:38 +00004346
4347 /*
4348 * If we are FLUSH_LIMIT, we can not flush delalloc, or the deadlock
4349 * would happen. So skip delalloc flush.
4350 */
4351 if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4352 (flush_state == FLUSH_DELALLOC ||
4353 flush_state == FLUSH_DELALLOC_WAIT))
4354 flush_state = ALLOC_CHUNK;
4355
Josef Bacik96c3f432012-06-21 14:05:49 -04004356 if (!ret)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004357 goto again;
Miao Xie08e007d2012-10-16 11:33:38 +00004358 else if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4359 flush_state < COMMIT_TRANS)
4360 goto again;
4361 else if (flush == BTRFS_RESERVE_FLUSH_ALL &&
4362 flush_state <= COMMIT_TRANS)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004363 goto again;
4364
4365out:
Josef Bacik5d803662013-02-07 16:06:02 -05004366 if (ret == -ENOSPC &&
4367 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
4368 struct btrfs_block_rsv *global_rsv =
4369 &root->fs_info->global_block_rsv;
4370
4371 if (block_rsv != global_rsv &&
4372 !block_rsv_use_bytes(global_rsv, orig_bytes))
4373 ret = 0;
4374 }
Jeff Mahoneycab45e22013-10-16 16:27:01 -04004375 if (ret == -ENOSPC)
4376 trace_btrfs_space_reservation(root->fs_info,
4377 "space_info:enospc",
4378 space_info->flags, orig_bytes, 1);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004379 if (flushing) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004380 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004381 space_info->flush = 0;
4382 wake_up_all(&space_info->wait);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004383 spin_unlock(&space_info->lock);
4384 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004385 return ret;
4386}
4387
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004388static struct btrfs_block_rsv *get_block_rsv(
4389 const struct btrfs_trans_handle *trans,
4390 const struct btrfs_root *root)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004391{
Josef Bacik4c13d752011-08-30 11:31:29 -04004392 struct btrfs_block_rsv *block_rsv = NULL;
4393
Josef Bacik0e721102012-06-26 16:13:18 -04004394 if (root->ref_cows)
4395 block_rsv = trans->block_rsv;
4396
4397 if (root == root->fs_info->csum_root && trans->adding_csums)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004398 block_rsv = trans->block_rsv;
Josef Bacik4c13d752011-08-30 11:31:29 -04004399
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004400 if (root == root->fs_info->uuid_root)
4401 block_rsv = trans->block_rsv;
4402
Josef Bacik4c13d752011-08-30 11:31:29 -04004403 if (!block_rsv)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004404 block_rsv = root->block_rsv;
4405
4406 if (!block_rsv)
4407 block_rsv = &root->fs_info->empty_block_rsv;
4408
4409 return block_rsv;
4410}
4411
4412static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
4413 u64 num_bytes)
4414{
4415 int ret = -ENOSPC;
4416 spin_lock(&block_rsv->lock);
4417 if (block_rsv->reserved >= num_bytes) {
4418 block_rsv->reserved -= num_bytes;
4419 if (block_rsv->reserved < block_rsv->size)
4420 block_rsv->full = 0;
4421 ret = 0;
4422 }
4423 spin_unlock(&block_rsv->lock);
4424 return ret;
4425}
4426
4427static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
4428 u64 num_bytes, int update_size)
4429{
4430 spin_lock(&block_rsv->lock);
4431 block_rsv->reserved += num_bytes;
4432 if (update_size)
4433 block_rsv->size += num_bytes;
4434 else if (block_rsv->reserved >= block_rsv->size)
4435 block_rsv->full = 1;
4436 spin_unlock(&block_rsv->lock);
4437}
4438
Josef Bacikd52be812013-05-29 14:54:47 -04004439int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
4440 struct btrfs_block_rsv *dest, u64 num_bytes,
4441 int min_factor)
4442{
4443 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
4444 u64 min_bytes;
4445
4446 if (global_rsv->space_info != dest->space_info)
4447 return -ENOSPC;
4448
4449 spin_lock(&global_rsv->lock);
4450 min_bytes = div_factor(global_rsv->size, min_factor);
4451 if (global_rsv->reserved < min_bytes + num_bytes) {
4452 spin_unlock(&global_rsv->lock);
4453 return -ENOSPC;
4454 }
4455 global_rsv->reserved -= num_bytes;
4456 if (global_rsv->reserved < global_rsv->size)
4457 global_rsv->full = 0;
4458 spin_unlock(&global_rsv->lock);
4459
4460 block_rsv_add_bytes(dest, num_bytes, 1);
4461 return 0;
4462}
4463
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004464static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
4465 struct btrfs_block_rsv *block_rsv,
David Sterba62a45b62011-04-20 15:52:26 +02004466 struct btrfs_block_rsv *dest, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004467{
4468 struct btrfs_space_info *space_info = block_rsv->space_info;
4469
4470 spin_lock(&block_rsv->lock);
4471 if (num_bytes == (u64)-1)
4472 num_bytes = block_rsv->size;
4473 block_rsv->size -= num_bytes;
4474 if (block_rsv->reserved >= block_rsv->size) {
4475 num_bytes = block_rsv->reserved - block_rsv->size;
4476 block_rsv->reserved = block_rsv->size;
4477 block_rsv->full = 1;
4478 } else {
4479 num_bytes = 0;
4480 }
4481 spin_unlock(&block_rsv->lock);
4482
4483 if (num_bytes > 0) {
4484 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00004485 spin_lock(&dest->lock);
4486 if (!dest->full) {
4487 u64 bytes_to_add;
4488
4489 bytes_to_add = dest->size - dest->reserved;
4490 bytes_to_add = min(num_bytes, bytes_to_add);
4491 dest->reserved += bytes_to_add;
4492 if (dest->reserved >= dest->size)
4493 dest->full = 1;
4494 num_bytes -= bytes_to_add;
4495 }
4496 spin_unlock(&dest->lock);
4497 }
4498 if (num_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04004499 spin_lock(&space_info->lock);
Josef Bacikfb25e912011-07-26 17:00:46 -04004500 space_info->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004501 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004502 space_info->flags, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004503 spin_unlock(&space_info->lock);
4504 }
4505 }
4506}
4507
4508static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src,
4509 struct btrfs_block_rsv *dst, u64 num_bytes)
4510{
4511 int ret;
4512
4513 ret = block_rsv_use_bytes(src, num_bytes);
4514 if (ret)
4515 return ret;
4516
4517 block_rsv_add_bytes(dst, num_bytes, 1);
4518 return 0;
4519}
4520
Miao Xie66d8f3d2012-09-06 04:02:28 -06004521void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004522{
4523 memset(rsv, 0, sizeof(*rsv));
4524 spin_lock_init(&rsv->lock);
Miao Xie66d8f3d2012-09-06 04:02:28 -06004525 rsv->type = type;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004526}
4527
Miao Xie66d8f3d2012-09-06 04:02:28 -06004528struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root,
4529 unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004530{
4531 struct btrfs_block_rsv *block_rsv;
4532 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004533
4534 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
4535 if (!block_rsv)
4536 return NULL;
4537
Miao Xie66d8f3d2012-09-06 04:02:28 -06004538 btrfs_init_block_rsv(block_rsv, type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004539 block_rsv->space_info = __find_space_info(fs_info,
4540 BTRFS_BLOCK_GROUP_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004541 return block_rsv;
4542}
4543
4544void btrfs_free_block_rsv(struct btrfs_root *root,
4545 struct btrfs_block_rsv *rsv)
4546{
Josef Bacik2aaa6652012-08-29 14:27:18 -04004547 if (!rsv)
4548 return;
Josef Bacikdabdb642011-08-08 12:50:18 -04004549 btrfs_block_rsv_release(root, rsv, (u64)-1);
4550 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004551}
4552
Miao Xie08e007d2012-10-16 11:33:38 +00004553int btrfs_block_rsv_add(struct btrfs_root *root,
4554 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
4555 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004556{
4557 int ret;
4558
4559 if (num_bytes == 0)
4560 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004561
Miao Xie61b520a2011-11-10 20:45:05 -05004562 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004563 if (!ret) {
4564 block_rsv_add_bytes(block_rsv, num_bytes, 1);
4565 return 0;
4566 }
4567
Yan, Zhengf0486c62010-05-16 10:46:25 -04004568 return ret;
4569}
4570
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004571int btrfs_block_rsv_check(struct btrfs_root *root,
Josef Bacik36ba0222011-10-18 12:15:48 -04004572 struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004573{
4574 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004575 int ret = -ENOSPC;
4576
4577 if (!block_rsv)
4578 return 0;
4579
4580 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04004581 num_bytes = div_factor(block_rsv->size, min_factor);
4582 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004583 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004584 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004585
Josef Bacik36ba0222011-10-18 12:15:48 -04004586 return ret;
4587}
4588
Miao Xie08e007d2012-10-16 11:33:38 +00004589int btrfs_block_rsv_refill(struct btrfs_root *root,
4590 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
4591 enum btrfs_reserve_flush_enum flush)
Josef Bacik36ba0222011-10-18 12:15:48 -04004592{
4593 u64 num_bytes = 0;
4594 int ret = -ENOSPC;
4595
4596 if (!block_rsv)
4597 return 0;
4598
4599 spin_lock(&block_rsv->lock);
4600 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04004601 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004602 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04004603 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04004604 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004605 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04004606
Yan, Zhengf0486c62010-05-16 10:46:25 -04004607 if (!ret)
4608 return 0;
4609
Miao Xieaa38a712011-11-18 17:43:00 +08004610 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Josef Bacikdabdb642011-08-08 12:50:18 -04004611 if (!ret) {
4612 block_rsv_add_bytes(block_rsv, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004613 return 0;
4614 }
4615
Josef Bacik13553e52011-08-08 13:33:21 -04004616 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004617}
4618
4619int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv,
4620 struct btrfs_block_rsv *dst_rsv,
4621 u64 num_bytes)
4622{
4623 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
4624}
4625
4626void btrfs_block_rsv_release(struct btrfs_root *root,
4627 struct btrfs_block_rsv *block_rsv,
4628 u64 num_bytes)
4629{
4630 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
4631 if (global_rsv->full || global_rsv == block_rsv ||
4632 block_rsv->space_info != global_rsv->space_info)
4633 global_rsv = NULL;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004634 block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv,
4635 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004636}
4637
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004638/*
4639 * helper to calculate size of global block reservation.
4640 * the desired value is sum of space used by extent tree,
4641 * checksum tree and root tree
4642 */
4643static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info)
4644{
4645 struct btrfs_space_info *sinfo;
4646 u64 num_bytes;
4647 u64 meta_used;
4648 u64 data_used;
David Sterba6c417612011-04-13 15:41:04 +02004649 int csum_size = btrfs_super_csum_size(fs_info->super_copy);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004650
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004651 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA);
4652 spin_lock(&sinfo->lock);
4653 data_used = sinfo->bytes_used;
4654 spin_unlock(&sinfo->lock);
4655
4656 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4657 spin_lock(&sinfo->lock);
Josef Bacik6d487552010-10-15 15:13:32 -04004658 if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA)
4659 data_used = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004660 meta_used = sinfo->bytes_used;
4661 spin_unlock(&sinfo->lock);
4662
4663 num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) *
4664 csum_size * 2;
4665 num_bytes += div64_u64(data_used + meta_used, 50);
4666
4667 if (num_bytes * 3 > meta_used)
Chris Mason8e62c2d2012-04-12 13:46:48 -04004668 num_bytes = div64_u64(meta_used, 3);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004669
4670 return ALIGN(num_bytes, fs_info->extent_root->leafsize << 10);
4671}
4672
4673static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
4674{
4675 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
4676 struct btrfs_space_info *sinfo = block_rsv->space_info;
4677 u64 num_bytes;
4678
4679 num_bytes = calc_global_metadata_size(fs_info);
4680
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004681 spin_lock(&sinfo->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04004682 spin_lock(&block_rsv->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004683
Josef Bacikfdf30d12013-03-26 15:31:45 -04004684 block_rsv->size = min_t(u64, num_bytes, 512 * 1024 * 1024);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004685
4686 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
Josef Bacik6d487552010-10-15 15:13:32 -04004687 sinfo->bytes_reserved + sinfo->bytes_readonly +
4688 sinfo->bytes_may_use;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004689
4690 if (sinfo->total_bytes > num_bytes) {
4691 num_bytes = sinfo->total_bytes - num_bytes;
4692 block_rsv->reserved += num_bytes;
Josef Bacikfb25e912011-07-26 17:00:46 -04004693 sinfo->bytes_may_use += num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004694 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004695 sinfo->flags, num_bytes, 1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004696 }
4697
4698 if (block_rsv->reserved >= block_rsv->size) {
4699 num_bytes = block_rsv->reserved - block_rsv->size;
Josef Bacikfb25e912011-07-26 17:00:46 -04004700 sinfo->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004701 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004702 sinfo->flags, num_bytes, 0);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004703 block_rsv->reserved = block_rsv->size;
4704 block_rsv->full = 1;
4705 }
David Sterba182608c2011-05-05 13:13:16 +02004706
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004707 spin_unlock(&block_rsv->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04004708 spin_unlock(&sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004709}
4710
Yan, Zhengf0486c62010-05-16 10:46:25 -04004711static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
4712{
4713 struct btrfs_space_info *space_info;
4714
4715 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4716 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004717
4718 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004719 fs_info->global_block_rsv.space_info = space_info;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004720 fs_info->delalloc_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004721 fs_info->trans_block_rsv.space_info = space_info;
4722 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04004723 fs_info->delayed_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004724
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004725 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
4726 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
4727 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
4728 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Stefan Behrens3a6cad92013-05-16 14:48:19 +00004729 if (fs_info->quota_root)
4730 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004731 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004732
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004733 update_global_block_rsv(fs_info);
4734}
4735
4736static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
4737{
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004738 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
4739 (u64)-1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004740 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
4741 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
4742 WARN_ON(fs_info->trans_block_rsv.size > 0);
4743 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
4744 WARN_ON(fs_info->chunk_block_rsv.size > 0);
4745 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04004746 WARN_ON(fs_info->delayed_block_rsv.size > 0);
4747 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04004748}
4749
Yan, Zhenga22285a2010-05-16 10:48:46 -04004750void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
4751 struct btrfs_root *root)
4752{
Josef Bacik0e721102012-06-26 16:13:18 -04004753 if (!trans->block_rsv)
4754 return;
4755
Yan, Zhenga22285a2010-05-16 10:48:46 -04004756 if (!trans->bytes_reserved)
4757 return;
4758
Chris Masone77266e2012-02-24 10:39:05 -05004759 trace_btrfs_space_reservation(root->fs_info, "transaction",
Liu Bo2bcc0322012-03-29 09:57:44 -04004760 trans->transid, trans->bytes_reserved, 0);
Josef Bacikb24e03d2011-10-14 14:40:17 -04004761 btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004762 trans->bytes_reserved = 0;
4763}
4764
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004765/* Can only return 0 or -ENOSPC */
Yan, Zhengd68fc572010-05-16 10:49:58 -04004766int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
4767 struct inode *inode)
4768{
4769 struct btrfs_root *root = BTRFS_I(inode)->root;
4770 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
4771 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
4772
4773 /*
Josef Bacikfcb80c22011-05-03 10:40:22 -04004774 * We need to hold space in order to delete our orphan item once we've
4775 * added it, so this takes the reservation so we can release it later
4776 * when we are truly done with the orphan item.
Yan, Zhengd68fc572010-05-16 10:49:58 -04004777 */
Chris Masonff5714c2011-05-28 07:00:39 -04004778 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004779 trace_btrfs_space_reservation(root->fs_info, "orphan",
4780 btrfs_ino(inode), num_bytes, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04004781 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
4782}
4783
4784void btrfs_orphan_release_metadata(struct inode *inode)
4785{
4786 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonff5714c2011-05-28 07:00:39 -04004787 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004788 trace_btrfs_space_reservation(root->fs_info, "orphan",
4789 btrfs_ino(inode), num_bytes, 0);
Yan, Zhengd68fc572010-05-16 10:49:58 -04004790 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
4791}
4792
Miao Xied5c12072013-02-28 10:04:33 +00004793/*
4794 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
4795 * root: the root of the parent directory
4796 * rsv: block reservation
4797 * items: the number of items that we need do reservation
4798 * qgroup_reserved: used to return the reserved size in qgroup
4799 *
4800 * This function is used to reserve the space for snapshot/subvolume
4801 * creation and deletion. Those operations are different with the
4802 * common file/directory operations, they change two fs/file trees
4803 * and root tree, the number of items that the qgroup reserves is
4804 * different with the free space reservation. So we can not use
4805 * the space reseravtion mechanism in start_transaction().
4806 */
4807int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
4808 struct btrfs_block_rsv *rsv,
4809 int items,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04004810 u64 *qgroup_reserved,
4811 bool use_global_rsv)
Yan, Zhenga22285a2010-05-16 10:48:46 -04004812{
Miao Xied5c12072013-02-28 10:04:33 +00004813 u64 num_bytes;
4814 int ret;
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04004815 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Miao Xied5c12072013-02-28 10:04:33 +00004816
4817 if (root->fs_info->quota_enabled) {
4818 /* One for parent inode, two for dir entries */
4819 num_bytes = 3 * root->leafsize;
4820 ret = btrfs_qgroup_reserve(root, num_bytes);
4821 if (ret)
4822 return ret;
4823 } else {
4824 num_bytes = 0;
4825 }
4826
4827 *qgroup_reserved = num_bytes;
4828
4829 num_bytes = btrfs_calc_trans_metadata_size(root, items);
4830 rsv->space_info = __find_space_info(root->fs_info,
4831 BTRFS_BLOCK_GROUP_METADATA);
4832 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
4833 BTRFS_RESERVE_FLUSH_ALL);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04004834
4835 if (ret == -ENOSPC && use_global_rsv)
4836 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes);
4837
Miao Xied5c12072013-02-28 10:04:33 +00004838 if (ret) {
4839 if (*qgroup_reserved)
4840 btrfs_qgroup_free(root, *qgroup_reserved);
4841 }
4842
4843 return ret;
4844}
4845
4846void btrfs_subvolume_release_metadata(struct btrfs_root *root,
4847 struct btrfs_block_rsv *rsv,
4848 u64 qgroup_reserved)
4849{
4850 btrfs_block_rsv_release(root, rsv, (u64)-1);
4851 if (qgroup_reserved)
4852 btrfs_qgroup_free(root, qgroup_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004853}
4854
Josef Bacik7709cde2011-08-04 10:25:02 -04004855/**
4856 * drop_outstanding_extent - drop an outstanding extent
4857 * @inode: the inode we're dropping the extent for
4858 *
4859 * This is called when we are freeing up an outstanding extent, either called
4860 * after an error or after an extent is written. This will return the number of
4861 * reserved extents that need to be freed. This must be called with
4862 * BTRFS_I(inode)->lock held.
4863 */
Josef Bacik9e0baf62011-07-15 15:16:44 +00004864static unsigned drop_outstanding_extent(struct inode *inode)
4865{
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004866 unsigned drop_inode_space = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004867 unsigned dropped_extents = 0;
4868
Josef Bacik9e0baf62011-07-15 15:16:44 +00004869 BUG_ON(!BTRFS_I(inode)->outstanding_extents);
4870 BTRFS_I(inode)->outstanding_extents--;
4871
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004872 if (BTRFS_I(inode)->outstanding_extents == 0 &&
Josef Bacik72ac3c02012-05-23 14:13:11 -04004873 test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
4874 &BTRFS_I(inode)->runtime_flags))
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004875 drop_inode_space = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004876
Josef Bacik9e0baf62011-07-15 15:16:44 +00004877 /*
4878 * If we have more or the same amount of outsanding extents than we have
4879 * reserved then we need to leave the reserved extents count alone.
4880 */
4881 if (BTRFS_I(inode)->outstanding_extents >=
4882 BTRFS_I(inode)->reserved_extents)
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004883 return drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004884
4885 dropped_extents = BTRFS_I(inode)->reserved_extents -
4886 BTRFS_I(inode)->outstanding_extents;
4887 BTRFS_I(inode)->reserved_extents -= dropped_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004888 return dropped_extents + drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004889}
4890
Josef Bacik7709cde2011-08-04 10:25:02 -04004891/**
4892 * calc_csum_metadata_size - return the amount of metada space that must be
4893 * reserved/free'd for the given bytes.
4894 * @inode: the inode we're manipulating
4895 * @num_bytes: the number of bytes in question
4896 * @reserve: 1 if we are reserving space, 0 if we are freeing space
4897 *
4898 * This adjusts the number of csum_bytes in the inode and then returns the
4899 * correct amount of metadata that must either be reserved or freed. We
4900 * calculate how many checksums we can fit into one leaf and then divide the
4901 * number of bytes that will need to be checksumed by this value to figure out
4902 * how many checksums will be required. If we are adding bytes then the number
4903 * may go up and we will return the number of additional bytes that must be
4904 * reserved. If it is going down we will return the number of bytes that must
4905 * be freed.
4906 *
4907 * This must be called with BTRFS_I(inode)->lock held.
4908 */
4909static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes,
4910 int reserve)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004911{
Josef Bacik7709cde2011-08-04 10:25:02 -04004912 struct btrfs_root *root = BTRFS_I(inode)->root;
4913 u64 csum_size;
4914 int num_csums_per_leaf;
4915 int num_csums;
4916 int old_csums;
4917
4918 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM &&
4919 BTRFS_I(inode)->csum_bytes == 0)
4920 return 0;
4921
4922 old_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize);
4923 if (reserve)
4924 BTRFS_I(inode)->csum_bytes += num_bytes;
4925 else
4926 BTRFS_I(inode)->csum_bytes -= num_bytes;
4927 csum_size = BTRFS_LEAF_DATA_SIZE(root) - sizeof(struct btrfs_item);
4928 num_csums_per_leaf = (int)div64_u64(csum_size,
4929 sizeof(struct btrfs_csum_item) +
4930 sizeof(struct btrfs_disk_key));
4931 num_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize);
4932 num_csums = num_csums + num_csums_per_leaf - 1;
4933 num_csums = num_csums / num_csums_per_leaf;
4934
4935 old_csums = old_csums + num_csums_per_leaf - 1;
4936 old_csums = old_csums / num_csums_per_leaf;
4937
4938 /* No change, no need to reserve more */
4939 if (old_csums == num_csums)
4940 return 0;
4941
4942 if (reserve)
4943 return btrfs_calc_trans_metadata_size(root,
4944 num_csums - old_csums);
4945
4946 return btrfs_calc_trans_metadata_size(root, old_csums - num_csums);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004947}
4948
4949int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
4950{
4951 struct btrfs_root *root = BTRFS_I(inode)->root;
4952 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004953 u64 to_reserve = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05004954 u64 csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004955 unsigned nr_extents = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05004956 int extra_reserve = 0;
Miao Xie08e007d2012-10-16 11:33:38 +00004957 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
Jan Schmidteb6b88d2013-01-27 23:26:00 -07004958 int ret = 0;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05004959 bool delalloc_lock = true;
Wang Shilong88e081bf2013-03-01 11:36:01 +00004960 u64 to_free = 0;
4961 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004962
Josef Bacikc64c2bd2012-12-14 13:48:14 -05004963 /* If we are a free space inode we need to not flush since we will be in
4964 * the middle of a transaction commit. We also don't need the delalloc
4965 * mutex since we won't race with anybody. We need this mostly to make
4966 * lockdep shut its filthy mouth.
4967 */
4968 if (btrfs_is_free_space_inode(inode)) {
Miao Xie08e007d2012-10-16 11:33:38 +00004969 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05004970 delalloc_lock = false;
4971 }
Josef Bacikc09544e2011-08-30 10:19:10 -04004972
Miao Xie08e007d2012-10-16 11:33:38 +00004973 if (flush != BTRFS_RESERVE_NO_FLUSH &&
4974 btrfs_transaction_in_commit(root->fs_info))
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004975 schedule_timeout(1);
4976
Josef Bacikc64c2bd2012-12-14 13:48:14 -05004977 if (delalloc_lock)
4978 mutex_lock(&BTRFS_I(inode)->delalloc_mutex);
4979
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004980 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004981
Josef Bacik9e0baf62011-07-15 15:16:44 +00004982 spin_lock(&BTRFS_I(inode)->lock);
4983 BTRFS_I(inode)->outstanding_extents++;
Josef Bacik57a45ced2011-01-25 16:30:38 -05004984
Josef Bacik9e0baf62011-07-15 15:16:44 +00004985 if (BTRFS_I(inode)->outstanding_extents >
Josef Bacik660d3f62011-12-09 11:18:51 -05004986 BTRFS_I(inode)->reserved_extents)
Josef Bacik9e0baf62011-07-15 15:16:44 +00004987 nr_extents = BTRFS_I(inode)->outstanding_extents -
4988 BTRFS_I(inode)->reserved_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004989
4990 /*
4991 * Add an item to reserve for updating the inode when we complete the
4992 * delalloc io.
4993 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04004994 if (!test_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
4995 &BTRFS_I(inode)->runtime_flags)) {
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004996 nr_extents++;
Josef Bacik660d3f62011-12-09 11:18:51 -05004997 extra_reserve = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004998 }
4999
5000 to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04005001 to_reserve += calc_csum_metadata_size(inode, num_bytes, 1);
Josef Bacik660d3f62011-12-09 11:18:51 -05005002 csum_bytes = BTRFS_I(inode)->csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005003 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05005004
Wang Shilong88e081bf2013-03-01 11:36:01 +00005005 if (root->fs_info->quota_enabled) {
Arne Jansenc5567232011-09-14 15:44:05 +02005006 ret = btrfs_qgroup_reserve(root, num_bytes +
5007 nr_extents * root->leafsize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005008 if (ret)
5009 goto out_fail;
Wang Shilonga9870c02013-03-01 11:33:01 +00005010 }
Arne Jansenc5567232011-09-14 15:44:05 +02005011
Wang Shilong88e081bf2013-03-01 11:36:01 +00005012 ret = reserve_metadata_bytes(root, block_rsv, to_reserve, flush);
5013 if (unlikely(ret)) {
5014 if (root->fs_info->quota_enabled)
Miao Xie4b5829a2012-12-05 10:53:25 +00005015 btrfs_qgroup_free(root, num_bytes +
5016 nr_extents * root->leafsize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00005017 goto out_fail;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005018 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005019
Josef Bacik660d3f62011-12-09 11:18:51 -05005020 spin_lock(&BTRFS_I(inode)->lock);
5021 if (extra_reserve) {
Josef Bacik72ac3c02012-05-23 14:13:11 -04005022 set_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5023 &BTRFS_I(inode)->runtime_flags);
Josef Bacik660d3f62011-12-09 11:18:51 -05005024 nr_extents--;
5025 }
5026 BTRFS_I(inode)->reserved_extents += nr_extents;
5027 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005028
5029 if (delalloc_lock)
5030 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
Josef Bacik660d3f62011-12-09 11:18:51 -05005031
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005032 if (to_reserve)
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05305033 trace_btrfs_space_reservation(root->fs_info, "delalloc",
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005034 btrfs_ino(inode), to_reserve, 1);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005035 block_rsv_add_bytes(block_rsv, to_reserve, 1);
5036
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005037 return 0;
Wang Shilong88e081bf2013-03-01 11:36:01 +00005038
5039out_fail:
5040 spin_lock(&BTRFS_I(inode)->lock);
5041 dropped = drop_outstanding_extent(inode);
5042 /*
5043 * If the inodes csum_bytes is the same as the original
5044 * csum_bytes then we know we haven't raced with any free()ers
5045 * so we can just reduce our inodes csum bytes and carry on.
Wang Shilong88e081bf2013-03-01 11:36:01 +00005046 */
Josef Bacikf4881bc2013-03-25 16:03:35 -04005047 if (BTRFS_I(inode)->csum_bytes == csum_bytes) {
Wang Shilong88e081bf2013-03-01 11:36:01 +00005048 calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacikf4881bc2013-03-25 16:03:35 -04005049 } else {
5050 u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes;
5051 u64 bytes;
5052
5053 /*
5054 * This is tricky, but first we need to figure out how much we
5055 * free'd from any free-ers that occured during this
5056 * reservation, so we reset ->csum_bytes to the csum_bytes
5057 * before we dropped our lock, and then call the free for the
5058 * number of bytes that were freed while we were trying our
5059 * reservation.
5060 */
5061 bytes = csum_bytes - BTRFS_I(inode)->csum_bytes;
5062 BTRFS_I(inode)->csum_bytes = csum_bytes;
5063 to_free = calc_csum_metadata_size(inode, bytes, 0);
5064
5065
5066 /*
5067 * Now we need to see how much we would have freed had we not
5068 * been making this reservation and our ->csum_bytes were not
5069 * artificially inflated.
5070 */
5071 BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes;
5072 bytes = csum_bytes - orig_csum_bytes;
5073 bytes = calc_csum_metadata_size(inode, bytes, 0);
5074
5075 /*
5076 * Now reset ->csum_bytes to what it should be. If bytes is
5077 * more than to_free then we would have free'd more space had we
5078 * not had an artificially high ->csum_bytes, so we need to free
5079 * the remainder. If bytes is the same or less then we don't
5080 * need to do anything, the other free-ers did the correct
5081 * thing.
5082 */
5083 BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes;
5084 if (bytes > to_free)
5085 to_free = bytes - to_free;
5086 else
5087 to_free = 0;
5088 }
Wang Shilong88e081bf2013-03-01 11:36:01 +00005089 spin_unlock(&BTRFS_I(inode)->lock);
5090 if (dropped)
5091 to_free += btrfs_calc_trans_metadata_size(root, dropped);
5092
5093 if (to_free) {
5094 btrfs_block_rsv_release(root, block_rsv, to_free);
5095 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5096 btrfs_ino(inode), to_free, 0);
5097 }
5098 if (delalloc_lock)
5099 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
5100 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005101}
5102
Josef Bacik7709cde2011-08-04 10:25:02 -04005103/**
5104 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
5105 * @inode: the inode to release the reservation for
5106 * @num_bytes: the number of bytes we're releasing
5107 *
5108 * This will release the metadata reservation for an inode. This can be called
5109 * once we complete IO for a given set of bytes to release their metadata
5110 * reservations.
5111 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005112void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
5113{
5114 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005115 u64 to_free = 0;
5116 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005117
5118 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik7709cde2011-08-04 10:25:02 -04005119 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00005120 dropped = drop_outstanding_extent(inode);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005121
Miao Xie09348562013-02-07 10:12:07 +00005122 if (num_bytes)
5123 to_free = calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacik7709cde2011-08-04 10:25:02 -04005124 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00005125 if (dropped > 0)
5126 to_free += btrfs_calc_trans_metadata_size(root, dropped);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005127
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005128 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5129 btrfs_ino(inode), to_free, 0);
Arne Jansenc5567232011-09-14 15:44:05 +02005130 if (root->fs_info->quota_enabled) {
5131 btrfs_qgroup_free(root, num_bytes +
5132 dropped * root->leafsize);
5133 }
5134
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005135 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
5136 to_free);
5137}
5138
Josef Bacik7709cde2011-08-04 10:25:02 -04005139/**
5140 * btrfs_delalloc_reserve_space - reserve data and metadata space for delalloc
5141 * @inode: inode we're writing to
5142 * @num_bytes: the number of bytes we want to allocate
5143 *
5144 * This will do the following things
5145 *
5146 * o reserve space in the data space info for num_bytes
5147 * o reserve space in the metadata space info based on number of outstanding
5148 * extents and how much csums will be needed
5149 * o add to the inodes ->delalloc_bytes
5150 * o add it to the fs_info's delalloc inodes list.
5151 *
5152 * This will return 0 for success and -ENOSPC if there is no space left.
5153 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005154int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes)
5155{
5156 int ret;
5157
5158 ret = btrfs_check_data_free_space(inode, num_bytes);
5159 if (ret)
5160 return ret;
5161
5162 ret = btrfs_delalloc_reserve_metadata(inode, num_bytes);
5163 if (ret) {
5164 btrfs_free_reserved_data_space(inode, num_bytes);
5165 return ret;
5166 }
5167
5168 return 0;
5169}
5170
Josef Bacik7709cde2011-08-04 10:25:02 -04005171/**
5172 * btrfs_delalloc_release_space - release data and metadata space for delalloc
5173 * @inode: inode we're releasing space for
5174 * @num_bytes: the number of bytes we want to free up
5175 *
5176 * This must be matched with a call to btrfs_delalloc_reserve_space. This is
5177 * called in the case that we don't need the metadata AND data reservations
5178 * anymore. So if there is an error or we insert an inline extent.
5179 *
5180 * This function will release the metadata space that was not used and will
5181 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
5182 * list if there are no delalloc bytes left.
5183 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005184void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes)
5185{
5186 btrfs_delalloc_release_metadata(inode, num_bytes);
5187 btrfs_free_reserved_data_space(inode, num_bytes);
5188}
5189
Liu Boc53d6132012-12-27 09:01:19 +00005190static int update_block_group(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005191 u64 bytenr, u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04005192{
Josef Bacik0af3d002010-06-21 14:48:16 -04005193 struct btrfs_block_group_cache *cache = NULL;
Chris Mason9078a3e2007-04-26 16:46:15 -04005194 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04005195 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005196 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04005197 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04005198 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04005199
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005200 /* block accounting for super block */
Miao Xieeb73c1b2013-05-15 07:48:22 +00005201 spin_lock(&info->delalloc_root_lock);
David Sterba6c417612011-04-13 15:41:04 +02005202 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005203 if (alloc)
5204 old_val += num_bytes;
5205 else
5206 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02005207 btrfs_set_super_bytes_used(info->super_copy, old_val);
Miao Xieeb73c1b2013-05-15 07:48:22 +00005208 spin_unlock(&info->delalloc_root_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005209
Chris Masond3977122009-01-05 21:25:51 -05005210 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04005211 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05005212 if (!cache)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005213 return -ENOENT;
Yan, Zhengb742bb822010-05-16 10:46:24 -04005214 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
5215 BTRFS_BLOCK_GROUP_RAID1 |
5216 BTRFS_BLOCK_GROUP_RAID10))
5217 factor = 2;
5218 else
5219 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04005220 /*
5221 * If this block group has free space cache written out, we
5222 * need to make sure to load it if we are removing space. This
5223 * is because we need the unpinning stage to actually add the
5224 * space back to the block group, otherwise we will leak space.
5225 */
5226 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Liu Bof6373bf2012-12-27 09:01:18 +00005227 cache_block_group(cache, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04005228
Chris Masondb945352007-10-15 16:15:53 -04005229 byte_in_group = bytenr - cache->key.objectid;
5230 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04005231
Josef Bacik25179202008-10-29 14:49:05 -04005232 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04005233 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04005234
Josef Bacik73bc1872011-10-03 14:07:49 -04005235 if (btrfs_test_opt(root, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04005236 cache->disk_cache_state < BTRFS_DC_CLEAR)
5237 cache->disk_cache_state = BTRFS_DC_CLEAR;
5238
Josef Bacik0f9dd462008-09-23 13:14:11 -04005239 cache->dirty = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04005240 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04005241 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04005242 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04005243 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04005244 btrfs_set_block_group_used(&cache->item, old_val);
5245 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04005246 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb822010-05-16 10:46:24 -04005247 cache->space_info->bytes_used += num_bytes;
5248 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04005249 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005250 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04005251 } else {
Chris Masondb945352007-10-15 16:15:53 -04005252 old_val -= num_bytes;
Chris Masonc286ac42008-07-22 23:06:41 -04005253 btrfs_set_block_group_used(&cache->item, old_val);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005254 cache->pinned += num_bytes;
5255 cache->space_info->bytes_pinned += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005256 cache->space_info->bytes_used -= num_bytes;
Yan, Zhengb742bb822010-05-16 10:46:24 -04005257 cache->space_info->disk_used -= num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04005258 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005259 spin_unlock(&cache->space_info->lock);
Liu Hui1f3c79a2009-01-05 15:57:51 -05005260
Yan, Zhengf0486c62010-05-16 10:46:25 -04005261 set_extent_dirty(info->pinned_extents,
5262 bytenr, bytenr + num_bytes - 1,
5263 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04005264 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04005265 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04005266 total -= num_bytes;
5267 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005268 }
5269 return 0;
5270}
Chris Mason6324fbf2008-03-24 15:01:59 -04005271
Chris Masona061fc82008-05-07 11:43:44 -04005272static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
5273{
Josef Bacik0f9dd462008-09-23 13:14:11 -04005274 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05005275 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005276
Liu Boa1897fd2012-12-27 09:01:23 +00005277 spin_lock(&root->fs_info->block_group_cache_lock);
5278 bytenr = root->fs_info->first_logical_byte;
5279 spin_unlock(&root->fs_info->block_group_cache_lock);
5280
5281 if (bytenr < (u64)-1)
5282 return bytenr;
5283
Josef Bacik0f9dd462008-09-23 13:14:11 -04005284 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
5285 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04005286 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005287
Yan Zhengd2fb3432008-12-11 16:30:39 -05005288 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005289 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05005290
5291 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04005292}
5293
Yan, Zhengf0486c62010-05-16 10:46:25 -04005294static int pin_down_extent(struct btrfs_root *root,
5295 struct btrfs_block_group_cache *cache,
5296 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05005297{
Yan Zheng11833d62009-09-11 16:11:19 -04005298 spin_lock(&cache->space_info->lock);
5299 spin_lock(&cache->lock);
5300 cache->pinned += num_bytes;
5301 cache->space_info->bytes_pinned += num_bytes;
5302 if (reserved) {
5303 cache->reserved -= num_bytes;
5304 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05005305 }
Yan Zheng11833d62009-09-11 16:11:19 -04005306 spin_unlock(&cache->lock);
5307 spin_unlock(&cache->space_info->lock);
5308
Yan, Zhengf0486c62010-05-16 10:46:25 -04005309 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
5310 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Josef Bacik0be5dc62013-10-07 15:18:52 -04005311 if (reserved)
5312 trace_btrfs_reserved_extent_free(root, bytenr, num_bytes);
Yan324ae4d2007-11-16 14:57:08 -05005313 return 0;
5314}
Chris Mason9078a3e2007-04-26 16:46:15 -04005315
Yan, Zhengf0486c62010-05-16 10:46:25 -04005316/*
5317 * this function must be called within transaction
5318 */
5319int btrfs_pin_extent(struct btrfs_root *root,
5320 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04005321{
Yan, Zhengf0486c62010-05-16 10:46:25 -04005322 struct btrfs_block_group_cache *cache;
5323
5324 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005325 BUG_ON(!cache); /* Logic error */
Yan, Zhengf0486c62010-05-16 10:46:25 -04005326
5327 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
5328
5329 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04005330 return 0;
5331}
Zheng Yane8569812008-09-26 10:05:48 -04005332
Yan, Zhengf0486c62010-05-16 10:46:25 -04005333/*
Chris Masone688b7252011-10-31 20:52:39 -04005334 * this function must be called within transaction
Yan, Zhengf0486c62010-05-16 10:46:25 -04005335 */
Liu Bodcfac412012-12-27 09:01:20 +00005336int btrfs_pin_extent_for_log_replay(struct btrfs_root *root,
Chris Masone688b7252011-10-31 20:52:39 -04005337 u64 bytenr, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005338{
Chris Masone688b7252011-10-31 20:52:39 -04005339 struct btrfs_block_group_cache *cache;
Josef Bacikb50c6e22013-04-25 15:55:30 -04005340 int ret;
Chris Masone688b7252011-10-31 20:52:39 -04005341
5342 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005343 if (!cache)
5344 return -EINVAL;
Chris Masone688b7252011-10-31 20:52:39 -04005345
5346 /*
5347 * pull in the free space cache (if any) so that our pin
5348 * removes the free space from the cache. We have load_only set
5349 * to one because the slow code to read in the free extents does check
5350 * the pinned extents.
5351 */
Liu Bof6373bf2012-12-27 09:01:18 +00005352 cache_block_group(cache, 1);
Chris Masone688b7252011-10-31 20:52:39 -04005353
5354 pin_down_extent(root, cache, bytenr, num_bytes, 0);
5355
5356 /* remove us from the free space cache (if we're there at all) */
Josef Bacikb50c6e22013-04-25 15:55:30 -04005357 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
Chris Masone688b7252011-10-31 20:52:39 -04005358 btrfs_put_block_group(cache);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005359 return ret;
Chris Masone688b7252011-10-31 20:52:39 -04005360}
5361
Josef Bacik8c2a1a32013-06-06 13:19:32 -04005362static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes)
5363{
5364 int ret;
5365 struct btrfs_block_group_cache *block_group;
5366 struct btrfs_caching_control *caching_ctl;
5367
5368 block_group = btrfs_lookup_block_group(root->fs_info, start);
5369 if (!block_group)
5370 return -EINVAL;
5371
5372 cache_block_group(block_group, 0);
5373 caching_ctl = get_caching_control(block_group);
5374
5375 if (!caching_ctl) {
5376 /* Logic error */
5377 BUG_ON(!block_group_cache_done(block_group));
5378 ret = btrfs_remove_free_space(block_group, start, num_bytes);
5379 } else {
5380 mutex_lock(&caching_ctl->mutex);
5381
5382 if (start >= caching_ctl->progress) {
5383 ret = add_excluded_extent(root, start, num_bytes);
5384 } else if (start + num_bytes <= caching_ctl->progress) {
5385 ret = btrfs_remove_free_space(block_group,
5386 start, num_bytes);
5387 } else {
5388 num_bytes = caching_ctl->progress - start;
5389 ret = btrfs_remove_free_space(block_group,
5390 start, num_bytes);
5391 if (ret)
5392 goto out_lock;
5393
5394 num_bytes = (start + num_bytes) -
5395 caching_ctl->progress;
5396 start = caching_ctl->progress;
5397 ret = add_excluded_extent(root, start, num_bytes);
5398 }
5399out_lock:
5400 mutex_unlock(&caching_ctl->mutex);
5401 put_caching_control(caching_ctl);
5402 }
5403 btrfs_put_block_group(block_group);
5404 return ret;
5405}
5406
5407int btrfs_exclude_logged_extents(struct btrfs_root *log,
5408 struct extent_buffer *eb)
5409{
5410 struct btrfs_file_extent_item *item;
5411 struct btrfs_key key;
5412 int found_type;
5413 int i;
5414
5415 if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS))
5416 return 0;
5417
5418 for (i = 0; i < btrfs_header_nritems(eb); i++) {
5419 btrfs_item_key_to_cpu(eb, &key, i);
5420 if (key.type != BTRFS_EXTENT_DATA_KEY)
5421 continue;
5422 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
5423 found_type = btrfs_file_extent_type(eb, item);
5424 if (found_type == BTRFS_FILE_EXTENT_INLINE)
5425 continue;
5426 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
5427 continue;
5428 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
5429 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
5430 __exclude_logged_extent(log, key.objectid, key.offset);
5431 }
5432
5433 return 0;
5434}
5435
Josef Bacikfb25e912011-07-26 17:00:46 -04005436/**
5437 * btrfs_update_reserved_bytes - update the block_group and space info counters
5438 * @cache: The cache we are manipulating
5439 * @num_bytes: The number of bytes in question
5440 * @reserve: One of the reservation enums
5441 *
5442 * This is called by the allocator when it reserves space, or by somebody who is
5443 * freeing space that was never actually used on disk. For example if you
5444 * reserve some space for a new leaf in transaction A and before transaction A
5445 * commits you free that leaf, you call this with reserve set to 0 in order to
5446 * clear the reservation.
5447 *
5448 * Metadata reservations should be called with RESERVE_ALLOC so we do the proper
5449 * ENOSPC accounting. For data we handle the reservation through clearing the
5450 * delalloc bits in the io_tree. We have to do this since we could end up
5451 * allocating less disk space for the amount of data we have reserved in the
5452 * case of compression.
5453 *
5454 * If this is a reservation and the block group has become read only we cannot
5455 * make the reservation and return -EAGAIN, otherwise this function always
5456 * succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04005457 */
Josef Bacikfb25e912011-07-26 17:00:46 -04005458static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
5459 u64 num_bytes, int reserve)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005460{
Josef Bacikfb25e912011-07-26 17:00:46 -04005461 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005462 int ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005463
Josef Bacikfb25e912011-07-26 17:00:46 -04005464 spin_lock(&space_info->lock);
5465 spin_lock(&cache->lock);
5466 if (reserve != RESERVE_FREE) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005467 if (cache->ro) {
5468 ret = -EAGAIN;
5469 } else {
Josef Bacikfb25e912011-07-26 17:00:46 -04005470 cache->reserved += num_bytes;
5471 space_info->bytes_reserved += num_bytes;
5472 if (reserve == RESERVE_ALLOC) {
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005473 trace_btrfs_space_reservation(cache->fs_info,
Liu Bo2bcc0322012-03-29 09:57:44 -04005474 "space_info", space_info->flags,
5475 num_bytes, 0);
Josef Bacikfb25e912011-07-26 17:00:46 -04005476 space_info->bytes_may_use -= num_bytes;
5477 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005478 }
Josef Bacikfb25e912011-07-26 17:00:46 -04005479 } else {
5480 if (cache->ro)
5481 space_info->bytes_readonly += num_bytes;
5482 cache->reserved -= num_bytes;
5483 space_info->bytes_reserved -= num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005484 }
Josef Bacikfb25e912011-07-26 17:00:46 -04005485 spin_unlock(&cache->lock);
5486 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005487 return ret;
5488}
5489
Jeff Mahoney143bede2012-03-01 14:56:26 +01005490void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04005491 struct btrfs_root *root)
5492{
5493 struct btrfs_fs_info *fs_info = root->fs_info;
5494 struct btrfs_caching_control *next;
5495 struct btrfs_caching_control *caching_ctl;
5496 struct btrfs_block_group_cache *cache;
Josef Bacikb150a4f2013-06-19 15:00:04 -04005497 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04005498
5499 down_write(&fs_info->extent_commit_sem);
5500
5501 list_for_each_entry_safe(caching_ctl, next,
5502 &fs_info->caching_block_groups, list) {
5503 cache = caching_ctl->block_group;
5504 if (block_group_cache_done(cache)) {
5505 cache->last_byte_to_unpin = (u64)-1;
5506 list_del_init(&caching_ctl->list);
5507 put_caching_control(caching_ctl);
5508 } else {
5509 cache->last_byte_to_unpin = caching_ctl->progress;
5510 }
5511 }
5512
5513 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
5514 fs_info->pinned_extents = &fs_info->freed_extents[1];
5515 else
5516 fs_info->pinned_extents = &fs_info->freed_extents[0];
5517
5518 up_write(&fs_info->extent_commit_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005519
Josef Bacikb150a4f2013-06-19 15:00:04 -04005520 list_for_each_entry_rcu(space_info, &fs_info->space_info, list)
5521 percpu_counter_set(&space_info->total_bytes_pinned, 0);
5522
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005523 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04005524}
5525
5526static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
5527{
5528 struct btrfs_fs_info *fs_info = root->fs_info;
5529 struct btrfs_block_group_cache *cache = NULL;
Josef Bacik7b398f82012-10-22 15:52:28 -04005530 struct btrfs_space_info *space_info;
5531 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Yan Zheng11833d62009-09-11 16:11:19 -04005532 u64 len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005533 bool readonly;
Yan Zheng11833d62009-09-11 16:11:19 -04005534
5535 while (start <= end) {
Josef Bacik7b398f82012-10-22 15:52:28 -04005536 readonly = false;
Yan Zheng11833d62009-09-11 16:11:19 -04005537 if (!cache ||
5538 start >= cache->key.objectid + cache->key.offset) {
5539 if (cache)
5540 btrfs_put_block_group(cache);
5541 cache = btrfs_lookup_block_group(fs_info, start);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005542 BUG_ON(!cache); /* Logic error */
Yan Zheng11833d62009-09-11 16:11:19 -04005543 }
5544
5545 len = cache->key.objectid + cache->key.offset - start;
5546 len = min(len, end + 1 - start);
5547
5548 if (start < cache->last_byte_to_unpin) {
5549 len = min(len, cache->last_byte_to_unpin - start);
5550 btrfs_add_free_space(cache, start, len);
5551 }
Josef Bacik25179202008-10-29 14:49:05 -04005552
Yan, Zhengf0486c62010-05-16 10:46:25 -04005553 start += len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005554 space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005555
Josef Bacik7b398f82012-10-22 15:52:28 -04005556 spin_lock(&space_info->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005557 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04005558 cache->pinned -= len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005559 space_info->bytes_pinned -= len;
5560 if (cache->ro) {
5561 space_info->bytes_readonly += len;
5562 readonly = true;
5563 }
Josef Bacik25179202008-10-29 14:49:05 -04005564 spin_unlock(&cache->lock);
Josef Bacik7b398f82012-10-22 15:52:28 -04005565 if (!readonly && global_rsv->space_info == space_info) {
5566 spin_lock(&global_rsv->lock);
5567 if (!global_rsv->full) {
5568 len = min(len, global_rsv->size -
5569 global_rsv->reserved);
5570 global_rsv->reserved += len;
5571 space_info->bytes_may_use += len;
5572 if (global_rsv->reserved >= global_rsv->size)
5573 global_rsv->full = 1;
5574 }
5575 spin_unlock(&global_rsv->lock);
5576 }
5577 spin_unlock(&space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04005578 }
5579
5580 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04005581 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04005582 return 0;
5583}
5584
5585int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04005586 struct btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -05005587{
Yan Zheng11833d62009-09-11 16:11:19 -04005588 struct btrfs_fs_info *fs_info = root->fs_info;
5589 struct extent_io_tree *unpin;
Chris Mason1a5bc162007-10-15 16:15:26 -04005590 u64 start;
5591 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05005592 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05005593
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005594 if (trans->aborted)
5595 return 0;
5596
Yan Zheng11833d62009-09-11 16:11:19 -04005597 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
5598 unpin = &fs_info->freed_extents[1];
5599 else
5600 unpin = &fs_info->freed_extents[0];
5601
Chris Masond3977122009-01-05 21:25:51 -05005602 while (1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04005603 ret = find_first_extent_bit(unpin, 0, &start, &end,
Josef Bacike6138872012-09-27 17:07:30 -04005604 EXTENT_DIRTY, NULL);
Chris Mason1a5bc162007-10-15 16:15:26 -04005605 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05005606 break;
Liu Hui1f3c79a2009-01-05 15:57:51 -05005607
Li Dongyang5378e602011-03-24 10:24:27 +00005608 if (btrfs_test_opt(root, DISCARD))
5609 ret = btrfs_discard_extent(root, start,
5610 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05005611
Chris Mason1a5bc162007-10-15 16:15:26 -04005612 clear_extent_dirty(unpin, start, end, GFP_NOFS);
Yan Zheng11833d62009-09-11 16:11:19 -04005613 unpin_extent_range(root, start, end);
Chris Masonb9473432009-03-13 11:00:37 -04005614 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05005615 }
Josef Bacik817d52f2009-07-13 21:29:25 -04005616
Chris Masone20d96d2007-03-22 12:13:20 -04005617 return 0;
5618}
5619
Josef Bacikb150a4f2013-06-19 15:00:04 -04005620static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes,
5621 u64 owner, u64 root_objectid)
5622{
5623 struct btrfs_space_info *space_info;
5624 u64 flags;
5625
5626 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
5627 if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID)
5628 flags = BTRFS_BLOCK_GROUP_SYSTEM;
5629 else
5630 flags = BTRFS_BLOCK_GROUP_METADATA;
5631 } else {
5632 flags = BTRFS_BLOCK_GROUP_DATA;
5633 }
5634
5635 space_info = __find_space_info(fs_info, flags);
5636 BUG_ON(!space_info); /* Logic bug */
5637 percpu_counter_add(&space_info->total_bytes_pinned, num_bytes);
5638}
5639
5640
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005641static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
5642 struct btrfs_root *root,
5643 u64 bytenr, u64 num_bytes, u64 parent,
5644 u64 root_objectid, u64 owner_objectid,
5645 u64 owner_offset, int refs_to_drop,
5646 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05005647{
Chris Masone2fa7222007-03-12 16:22:34 -04005648 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005649 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04005650 struct btrfs_fs_info *info = root->fs_info;
5651 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04005652 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005653 struct btrfs_extent_item *ei;
5654 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05005655 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005656 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05005657 int extent_slot = 0;
5658 int found_extent = 0;
5659 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005660 u32 item_size;
5661 u64 refs;
Josef Bacik3173a182013-03-07 14:22:04 -05005662 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
5663 SKINNY_METADATA);
Chris Mason037e6392007-03-07 11:50:24 -05005664
Chris Mason5caf2a02007-04-02 11:20:42 -04005665 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04005666 if (!path)
5667 return -ENOMEM;
5668
Chris Mason3c12ac72008-04-21 12:01:38 -04005669 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04005670 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005671
5672 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
5673 BUG_ON(!is_data && refs_to_drop != 1);
5674
Josef Bacik3173a182013-03-07 14:22:04 -05005675 if (is_data)
5676 skinny_metadata = 0;
5677
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005678 ret = lookup_extent_backref(trans, extent_root, path, &iref,
5679 bytenr, num_bytes, parent,
5680 root_objectid, owner_objectid,
5681 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05005682 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05005683 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005684 while (extent_slot >= 0) {
5685 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05005686 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005687 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05005688 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005689 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
5690 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05005691 found_extent = 1;
5692 break;
5693 }
Josef Bacik3173a182013-03-07 14:22:04 -05005694 if (key.type == BTRFS_METADATA_ITEM_KEY &&
5695 key.offset == owner_objectid) {
5696 found_extent = 1;
5697 break;
5698 }
Chris Mason952fcca2008-02-18 16:33:44 -05005699 if (path->slots[0] - extent_slot > 5)
5700 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005701 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05005702 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005703#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
5704 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
5705 if (found_extent && item_size < sizeof(*ei))
5706 found_extent = 0;
5707#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04005708 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005709 BUG_ON(iref);
Chris Mason56bec292009-03-13 10:10:06 -04005710 ret = remove_extent_backref(trans, extent_root, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005711 NULL, refs_to_drop,
5712 is_data);
David Sterba005d6422012-09-18 07:52:32 -06005713 if (ret) {
5714 btrfs_abort_transaction(trans, extent_root, ret);
5715 goto out;
5716 }
David Sterbab3b4aa72011-04-21 01:20:15 +02005717 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04005718 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005719
5720 key.objectid = bytenr;
5721 key.type = BTRFS_EXTENT_ITEM_KEY;
5722 key.offset = num_bytes;
5723
Josef Bacik3173a182013-03-07 14:22:04 -05005724 if (!is_data && skinny_metadata) {
5725 key.type = BTRFS_METADATA_ITEM_KEY;
5726 key.offset = owner_objectid;
5727 }
5728
Zheng Yan31840ae2008-09-23 13:14:14 -04005729 ret = btrfs_search_slot(trans, extent_root,
5730 &key, path, -1, 1);
Josef Bacik3173a182013-03-07 14:22:04 -05005731 if (ret > 0 && skinny_metadata && path->slots[0]) {
5732 /*
5733 * Couldn't find our skinny metadata item,
5734 * see if we have ye olde extent item.
5735 */
5736 path->slots[0]--;
5737 btrfs_item_key_to_cpu(path->nodes[0], &key,
5738 path->slots[0]);
5739 if (key.objectid == bytenr &&
5740 key.type == BTRFS_EXTENT_ITEM_KEY &&
5741 key.offset == num_bytes)
5742 ret = 0;
5743 }
5744
5745 if (ret > 0 && skinny_metadata) {
5746 skinny_metadata = false;
5747 key.type = BTRFS_EXTENT_ITEM_KEY;
5748 key.offset = num_bytes;
5749 btrfs_release_path(path);
5750 ret = btrfs_search_slot(trans, extent_root,
5751 &key, path, -1, 1);
5752 }
5753
Josef Bacikf3465ca2008-11-12 14:19:50 -05005754 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005755 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005756 ret, bytenr);
Josef Bacikb783e622011-07-13 15:03:50 +00005757 if (ret > 0)
5758 btrfs_print_leaf(extent_root,
5759 path->nodes[0]);
Josef Bacikf3465ca2008-11-12 14:19:50 -05005760 }
David Sterba005d6422012-09-18 07:52:32 -06005761 if (ret < 0) {
5762 btrfs_abort_transaction(trans, extent_root, ret);
5763 goto out;
5764 }
Zheng Yan31840ae2008-09-23 13:14:14 -04005765 extent_slot = path->slots[0];
5766 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05305767 } else if (WARN_ON(ret == -ENOENT)) {
Chris Mason7bb86312007-12-11 09:25:06 -05005768 btrfs_print_leaf(extent_root, path->nodes[0]);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005769 btrfs_err(info,
5770 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005771 bytenr, parent, root_objectid, owner_objectid,
5772 owner_offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005773 } else {
David Sterba005d6422012-09-18 07:52:32 -06005774 btrfs_abort_transaction(trans, extent_root, ret);
5775 goto out;
Chris Mason7bb86312007-12-11 09:25:06 -05005776 }
Chris Mason5f39d392007-10-15 16:14:19 -04005777
5778 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005779 item_size = btrfs_item_size_nr(leaf, extent_slot);
5780#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
5781 if (item_size < sizeof(*ei)) {
5782 BUG_ON(found_extent || extent_slot != path->slots[0]);
5783 ret = convert_extent_item_v0(trans, extent_root, path,
5784 owner_objectid, 0);
David Sterba005d6422012-09-18 07:52:32 -06005785 if (ret < 0) {
5786 btrfs_abort_transaction(trans, extent_root, ret);
5787 goto out;
5788 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005789
David Sterbab3b4aa72011-04-21 01:20:15 +02005790 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005791 path->leave_spinning = 1;
5792
5793 key.objectid = bytenr;
5794 key.type = BTRFS_EXTENT_ITEM_KEY;
5795 key.offset = num_bytes;
5796
5797 ret = btrfs_search_slot(trans, extent_root, &key, path,
5798 -1, 1);
5799 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005800 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005801 ret, bytenr);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005802 btrfs_print_leaf(extent_root, path->nodes[0]);
5803 }
David Sterba005d6422012-09-18 07:52:32 -06005804 if (ret < 0) {
5805 btrfs_abort_transaction(trans, extent_root, ret);
5806 goto out;
5807 }
5808
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005809 extent_slot = path->slots[0];
5810 leaf = path->nodes[0];
5811 item_size = btrfs_item_size_nr(leaf, extent_slot);
5812 }
5813#endif
5814 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05005815 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04005816 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05005817 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
5818 key.type == BTRFS_EXTENT_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005819 struct btrfs_tree_block_info *bi;
5820 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
5821 bi = (struct btrfs_tree_block_info *)(ei + 1);
5822 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05005823 }
5824
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005825 refs = btrfs_extent_refs(leaf, ei);
Josef Bacik32b02532013-04-24 16:38:50 -04005826 if (refs < refs_to_drop) {
5827 btrfs_err(info, "trying to drop %d refs but we only have %Lu "
5828 "for bytenr %Lu\n", refs_to_drop, refs, bytenr);
5829 ret = -EINVAL;
5830 btrfs_abort_transaction(trans, extent_root, ret);
5831 goto out;
5832 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005833 refs -= refs_to_drop;
5834
5835 if (refs > 0) {
5836 if (extent_op)
5837 __run_delayed_extent_op(extent_op, leaf, ei);
5838 /*
5839 * In the case of inline back ref, reference count will
5840 * be updated by remove_extent_backref
5841 */
5842 if (iref) {
5843 BUG_ON(!found_extent);
5844 } else {
5845 btrfs_set_extent_refs(leaf, ei, refs);
5846 btrfs_mark_buffer_dirty(leaf);
5847 }
5848 if (found_extent) {
5849 ret = remove_extent_backref(trans, extent_root, path,
5850 iref, refs_to_drop,
5851 is_data);
David Sterba005d6422012-09-18 07:52:32 -06005852 if (ret) {
5853 btrfs_abort_transaction(trans, extent_root, ret);
5854 goto out;
5855 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005856 }
Josef Bacikb150a4f2013-06-19 15:00:04 -04005857 add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid,
5858 root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005859 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005860 if (found_extent) {
5861 BUG_ON(is_data && refs_to_drop !=
5862 extent_data_ref_count(root, path, iref));
5863 if (iref) {
5864 BUG_ON(path->slots[0] != extent_slot);
5865 } else {
5866 BUG_ON(path->slots[0] != extent_slot + 1);
5867 path->slots[0] = extent_slot;
5868 num_to_del = 2;
5869 }
Chris Mason78fae272007-03-25 11:35:08 -04005870 }
Chris Masonb9473432009-03-13 11:00:37 -04005871
Chris Mason952fcca2008-02-18 16:33:44 -05005872 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
5873 num_to_del);
David Sterba005d6422012-09-18 07:52:32 -06005874 if (ret) {
5875 btrfs_abort_transaction(trans, extent_root, ret);
5876 goto out;
5877 }
David Sterbab3b4aa72011-04-21 01:20:15 +02005878 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01005879
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005880 if (is_data) {
Chris Mason459931e2008-12-10 09:10:46 -05005881 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
David Sterba005d6422012-09-18 07:52:32 -06005882 if (ret) {
5883 btrfs_abort_transaction(trans, extent_root, ret);
5884 goto out;
5885 }
Chris Mason459931e2008-12-10 09:10:46 -05005886 }
5887
Liu Boc53d6132012-12-27 09:01:19 +00005888 ret = update_block_group(root, bytenr, num_bytes, 0);
David Sterba005d6422012-09-18 07:52:32 -06005889 if (ret) {
5890 btrfs_abort_transaction(trans, extent_root, ret);
5891 goto out;
5892 }
Chris Masona28ec192007-03-06 20:08:01 -05005893 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005894out:
Chris Mason5caf2a02007-04-02 11:20:42 -04005895 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05005896 return ret;
5897}
5898
5899/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04005900 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04005901 * delayed ref for that extent as well. This searches the delayed ref tree for
5902 * a given extent, and if there are no other delayed refs to be processed, it
5903 * removes it from the tree.
5904 */
5905static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
5906 struct btrfs_root *root, u64 bytenr)
5907{
5908 struct btrfs_delayed_ref_head *head;
5909 struct btrfs_delayed_ref_root *delayed_refs;
5910 struct btrfs_delayed_ref_node *ref;
5911 struct rb_node *node;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005912 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04005913
5914 delayed_refs = &trans->transaction->delayed_refs;
5915 spin_lock(&delayed_refs->lock);
5916 head = btrfs_find_delayed_ref_head(trans, bytenr);
5917 if (!head)
5918 goto out;
5919
5920 node = rb_prev(&head->node.rb_node);
5921 if (!node)
5922 goto out;
5923
5924 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
5925
5926 /* there are still entries for this ref, we can't drop it */
5927 if (ref->bytenr == bytenr)
5928 goto out;
5929
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005930 if (head->extent_op) {
5931 if (!head->must_insert_reserved)
5932 goto out;
Miao Xie78a61842012-11-21 02:21:28 +00005933 btrfs_free_delayed_extent_op(head->extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005934 head->extent_op = NULL;
5935 }
5936
Chris Mason1887be62009-03-13 10:11:24 -04005937 /*
5938 * waiting for the lock here would deadlock. If someone else has it
5939 * locked they are already in the process of dropping it anyway
5940 */
5941 if (!mutex_trylock(&head->mutex))
5942 goto out;
5943
5944 /*
5945 * at this point we have a head with no other entries. Go
5946 * ahead and process it.
5947 */
5948 head->node.in_tree = 0;
5949 rb_erase(&head->node.rb_node, &delayed_refs->root);
Chris Masonc3e69d52009-03-13 10:17:05 -04005950
Chris Mason1887be62009-03-13 10:11:24 -04005951 delayed_refs->num_entries--;
5952
5953 /*
5954 * we don't take a ref on the node because we're removing it from the
5955 * tree, so we just steal the ref the tree was holding.
5956 */
Chris Masonc3e69d52009-03-13 10:17:05 -04005957 delayed_refs->num_heads--;
5958 if (list_empty(&head->cluster))
5959 delayed_refs->num_heads_ready--;
5960
5961 list_del_init(&head->cluster);
Chris Mason1887be62009-03-13 10:11:24 -04005962 spin_unlock(&delayed_refs->lock);
5963
Yan, Zhengf0486c62010-05-16 10:46:25 -04005964 BUG_ON(head->extent_op);
5965 if (head->must_insert_reserved)
5966 ret = 1;
5967
5968 mutex_unlock(&head->mutex);
Chris Mason1887be62009-03-13 10:11:24 -04005969 btrfs_put_delayed_ref(&head->node);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005970 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04005971out:
5972 spin_unlock(&delayed_refs->lock);
5973 return 0;
5974}
5975
Yan, Zhengf0486c62010-05-16 10:46:25 -04005976void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
5977 struct btrfs_root *root,
5978 struct extent_buffer *buf,
Jan Schmidt5581a512012-05-16 17:04:52 +02005979 u64 parent, int last_ref)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005980{
Yan, Zhengf0486c62010-05-16 10:46:25 -04005981 struct btrfs_block_group_cache *cache = NULL;
Josef Bacikb150a4f2013-06-19 15:00:04 -04005982 int pin = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005983 int ret;
5984
5985 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02005986 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
5987 buf->start, buf->len,
5988 parent, root->root_key.objectid,
5989 btrfs_header_level(buf),
Jan Schmidt5581a512012-05-16 17:04:52 +02005990 BTRFS_DROP_DELAYED_REF, NULL, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005991 BUG_ON(ret); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04005992 }
5993
5994 if (!last_ref)
5995 return;
5996
Yan, Zhengf0486c62010-05-16 10:46:25 -04005997 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005998
5999 if (btrfs_header_generation(buf) == trans->transid) {
6000 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
6001 ret = check_ref_cleanup(trans, root, buf->start);
6002 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04006003 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006004 }
6005
6006 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
6007 pin_down_extent(root, cache, buf->start, buf->len, 1);
Josef Bacik37be25b2011-08-05 10:25:38 -04006008 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006009 }
6010
6011 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
6012
6013 btrfs_add_free_space(cache, buf->start, buf->len);
Josef Bacikfb25e912011-07-26 17:00:46 -04006014 btrfs_update_reserved_bytes(cache, buf->len, RESERVE_FREE);
Josef Bacik0be5dc62013-10-07 15:18:52 -04006015 trace_btrfs_reserved_extent_free(root, buf->start, buf->len);
Josef Bacikb150a4f2013-06-19 15:00:04 -04006016 pin = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006017 }
6018out:
Josef Bacikb150a4f2013-06-19 15:00:04 -04006019 if (pin)
6020 add_pinned_bytes(root->fs_info, buf->len,
6021 btrfs_header_level(buf),
6022 root->root_key.objectid);
6023
Josef Bacika826d6d2011-03-16 13:42:43 -04006024 /*
6025 * Deleting the buffer, clear the corrupt flag since it doesn't matter
6026 * anymore.
6027 */
6028 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006029 btrfs_put_block_group(cache);
6030}
6031
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006032/* Can return -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006033int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root,
6034 u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid,
6035 u64 owner, u64 offset, int for_cow)
Chris Mason925baed2008-06-25 16:01:30 -04006036{
6037 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006038 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason925baed2008-06-25 16:01:30 -04006039
Josef Bacikb150a4f2013-06-19 15:00:04 -04006040 add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid);
6041
Chris Mason56bec292009-03-13 10:10:06 -04006042 /*
6043 * tree log blocks never actually go into the extent allocation
6044 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04006045 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006046 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
6047 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04006048 /* unlocks the pinned mutex */
Yan Zheng11833d62009-09-11 16:11:19 -04006049 btrfs_pin_extent(root, bytenr, num_bytes, 1);
Chris Mason56bec292009-03-13 10:10:06 -04006050 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006051 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006052 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
6053 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006054 parent, root_objectid, (int)owner,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006055 BTRFS_DROP_DELAYED_REF, NULL, for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006056 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006057 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
6058 num_bytes,
6059 parent, root_objectid, owner,
6060 offset, BTRFS_DROP_DELAYED_REF,
6061 NULL, for_cow);
Chris Mason56bec292009-03-13 10:10:06 -04006062 }
Chris Mason925baed2008-06-25 16:01:30 -04006063 return ret;
6064}
6065
David Woodhouse53b381b2013-01-29 18:40:14 -05006066static u64 stripe_align(struct btrfs_root *root,
6067 struct btrfs_block_group_cache *cache,
6068 u64 val, u64 num_bytes)
Chris Mason87ee04e2007-11-30 11:30:34 -05006069{
Qu Wenruofda28322013-02-26 08:10:22 +00006070 u64 ret = ALIGN(val, root->stripesize);
Chris Mason87ee04e2007-11-30 11:30:34 -05006071 return ret;
6072}
6073
Chris Masonfec577f2007-02-26 10:40:21 -05006074/*
Josef Bacik817d52f2009-07-13 21:29:25 -04006075 * when we wait for progress in the block group caching, its because
6076 * our allocation attempt failed at least once. So, we must sleep
6077 * and let some progress happen before we try again.
6078 *
6079 * This function will sleep at least once waiting for new free space to
6080 * show up, and then it will check the block group free space numbers
6081 * for our min num_bytes. Another option is to have it go ahead
6082 * and look in the rbtree for a free extent of a given size, but this
6083 * is a good start.
Josef Bacik36cce922013-08-05 11:15:21 -04006084 *
6085 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
6086 * any of the information in this block group.
Josef Bacik817d52f2009-07-13 21:29:25 -04006087 */
Josef Bacik36cce922013-08-05 11:15:21 -04006088static noinline void
Josef Bacik817d52f2009-07-13 21:29:25 -04006089wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
6090 u64 num_bytes)
6091{
Yan Zheng11833d62009-09-11 16:11:19 -04006092 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04006093
Yan Zheng11833d62009-09-11 16:11:19 -04006094 caching_ctl = get_caching_control(cache);
6095 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04006096 return;
Josef Bacik817d52f2009-07-13 21:29:25 -04006097
Yan Zheng11833d62009-09-11 16:11:19 -04006098 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08006099 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04006100
6101 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -04006102}
6103
6104static noinline int
6105wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
6106{
6107 struct btrfs_caching_control *caching_ctl;
Josef Bacik36cce922013-08-05 11:15:21 -04006108 int ret = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006109
6110 caching_ctl = get_caching_control(cache);
6111 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04006112 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006113
6114 wait_event(caching_ctl->wait, block_group_cache_done(cache));
Josef Bacik36cce922013-08-05 11:15:21 -04006115 if (cache->cached == BTRFS_CACHE_ERROR)
6116 ret = -EIO;
Yan Zheng11833d62009-09-11 16:11:19 -04006117 put_caching_control(caching_ctl);
Josef Bacik36cce922013-08-05 11:15:21 -04006118 return ret;
Josef Bacik817d52f2009-07-13 21:29:25 -04006119}
6120
Liu Bo31e50222012-11-21 14:18:10 +00006121int __get_raid_index(u64 flags)
Yan, Zhengb742bb822010-05-16 10:46:24 -04006122{
Ilya Dryomov7738a532012-03-27 17:09:17 +03006123 if (flags & BTRFS_BLOCK_GROUP_RAID10)
Miao Xiee6ec7162013-01-17 05:38:51 +00006124 return BTRFS_RAID_RAID10;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006125 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
Miao Xiee6ec7162013-01-17 05:38:51 +00006126 return BTRFS_RAID_RAID1;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006127 else if (flags & BTRFS_BLOCK_GROUP_DUP)
Miao Xiee6ec7162013-01-17 05:38:51 +00006128 return BTRFS_RAID_DUP;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006129 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
Miao Xiee6ec7162013-01-17 05:38:51 +00006130 return BTRFS_RAID_RAID0;
David Woodhouse53b381b2013-01-29 18:40:14 -05006131 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
Chris Masone942f882013-02-20 14:06:05 -05006132 return BTRFS_RAID_RAID5;
David Woodhouse53b381b2013-01-29 18:40:14 -05006133 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
Chris Masone942f882013-02-20 14:06:05 -05006134 return BTRFS_RAID_RAID6;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006135
Chris Masone942f882013-02-20 14:06:05 -05006136 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
Yan, Zhengb742bb822010-05-16 10:46:24 -04006137}
6138
Ilya Dryomov7738a532012-03-27 17:09:17 +03006139static int get_block_group_index(struct btrfs_block_group_cache *cache)
6140{
Liu Bo31e50222012-11-21 14:18:10 +00006141 return __get_raid_index(cache->flags);
Ilya Dryomov7738a532012-03-27 17:09:17 +03006142}
6143
Josef Bacik817d52f2009-07-13 21:29:25 -04006144enum btrfs_loop_type {
Josef Bacik285ff5a2012-01-13 15:27:45 -05006145 LOOP_CACHING_NOWAIT = 0,
6146 LOOP_CACHING_WAIT = 1,
6147 LOOP_ALLOC_CHUNK = 2,
6148 LOOP_NO_EMPTY_SIZE = 3,
Josef Bacik817d52f2009-07-13 21:29:25 -04006149};
6150
6151/*
Chris Masonfec577f2007-02-26 10:40:21 -05006152 * walks the btree of allocated extents and find a hole of a given size.
6153 * The key ins is changed to record the hole:
Miao Xiea4820392013-09-09 13:19:42 +08006154 * ins->objectid == start position
Chris Mason62e27492007-03-15 12:56:47 -04006155 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Miao Xiea4820392013-09-09 13:19:42 +08006156 * ins->offset == the size of the hole.
Chris Masonfec577f2007-02-26 10:40:21 -05006157 * Any available blocks before search_start are skipped.
Miao Xiea4820392013-09-09 13:19:42 +08006158 *
6159 * If there is no suitable free space, we will record the max size of
6160 * the free space extent currently.
Chris Masonfec577f2007-02-26 10:40:21 -05006161 */
Josef Bacik00361582013-08-14 14:02:47 -04006162static noinline int find_free_extent(struct btrfs_root *orig_root,
Chris Mason98ed5172008-01-03 10:01:48 -05006163 u64 num_bytes, u64 empty_size,
Chris Mason98ed5172008-01-03 10:01:48 -05006164 u64 hint_byte, struct btrfs_key *ins,
David Sterbab6919a52013-04-29 13:39:40 +00006165 u64 flags)
Chris Masonfec577f2007-02-26 10:40:21 -05006166{
Josef Bacik80eb2342008-10-29 14:49:05 -04006167 int ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05006168 struct btrfs_root *root = orig_root->fs_info->extent_root;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006169 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04006170 struct btrfs_block_group_cache *block_group = NULL;
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006171 struct btrfs_block_group_cache *used_block_group;
Josef Bacik81c9ad22012-01-18 10:56:06 -05006172 u64 search_start = 0;
Miao Xiea4820392013-09-09 13:19:42 +08006173 u64 max_extent_size = 0;
Chris Mason239b14b2008-03-24 15:02:07 -04006174 int empty_cluster = 2 * 1024 * 1024;
Josef Bacik80eb2342008-10-29 14:49:05 -04006175 struct btrfs_space_info *space_info;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006176 int loop = 0;
David Sterbab6919a52013-04-29 13:39:40 +00006177 int index = __get_raid_index(flags);
6178 int alloc_type = (flags & BTRFS_BLOCK_GROUP_DATA) ?
Josef Bacikfb25e912011-07-26 17:00:46 -04006179 RESERVE_ALLOC_NO_ACCOUNT : RESERVE_ALLOC;
Josef Bacik817d52f2009-07-13 21:29:25 -04006180 bool found_uncached_bg = false;
Josef Bacik0a243252009-09-11 16:11:20 -04006181 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006182 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04006183 bool use_cluster = true;
Miao Xie60d2adb2011-09-09 17:34:35 +08006184 bool have_caching_bg = false;
Chris Masonfec577f2007-02-26 10:40:21 -05006185
Chris Masondb945352007-10-15 16:15:53 -04006186 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04006187 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
Josef Bacik80eb2342008-10-29 14:49:05 -04006188 ins->objectid = 0;
6189 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04006190
David Sterbab6919a52013-04-29 13:39:40 +00006191 trace_find_free_extent(orig_root, num_bytes, empty_size, flags);
Josef Bacik3f7de032011-11-10 08:29:20 -05006192
David Sterbab6919a52013-04-29 13:39:40 +00006193 space_info = __find_space_info(root->fs_info, flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00006194 if (!space_info) {
David Sterbab6919a52013-04-29 13:39:40 +00006195 btrfs_err(root->fs_info, "No space info for %llu", flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00006196 return -ENOSPC;
6197 }
Josef Bacik2552d172009-04-03 10:14:19 -04006198
Josef Bacik67377732010-09-16 16:19:09 -04006199 /*
6200 * If the space info is for both data and metadata it means we have a
6201 * small filesystem and we can't use the clustering stuff.
6202 */
6203 if (btrfs_mixed_space_info(space_info))
6204 use_cluster = false;
6205
David Sterbab6919a52013-04-29 13:39:40 +00006206 if (flags & BTRFS_BLOCK_GROUP_METADATA && use_cluster) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006207 last_ptr = &root->fs_info->meta_alloc_cluster;
Chris Mason536ac8a2009-02-12 09:41:38 -05006208 if (!btrfs_test_opt(root, SSD))
6209 empty_cluster = 64 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04006210 }
6211
David Sterbab6919a52013-04-29 13:39:40 +00006212 if ((flags & BTRFS_BLOCK_GROUP_DATA) && use_cluster &&
Josef Bacik67377732010-09-16 16:19:09 -04006213 btrfs_test_opt(root, SSD)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006214 last_ptr = &root->fs_info->data_alloc_cluster;
6215 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04006216
Chris Mason239b14b2008-03-24 15:02:07 -04006217 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006218 spin_lock(&last_ptr->lock);
6219 if (last_ptr->block_group)
6220 hint_byte = last_ptr->window_start;
6221 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04006222 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006223
Chris Masona061fc82008-05-07 11:43:44 -04006224 search_start = max(search_start, first_logical_byte(root, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04006225 search_start = max(search_start, hint_byte);
Chris Mason0b86a832008-03-24 15:01:56 -04006226
Josef Bacik817d52f2009-07-13 21:29:25 -04006227 if (!last_ptr)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006228 empty_cluster = 0;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006229
Josef Bacik2552d172009-04-03 10:14:19 -04006230 if (search_start == hint_byte) {
Josef Bacik2552d172009-04-03 10:14:19 -04006231 block_group = btrfs_lookup_block_group(root->fs_info,
6232 search_start);
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006233 used_block_group = block_group;
Josef Bacik817d52f2009-07-13 21:29:25 -04006234 /*
6235 * we don't want to use the block group if it doesn't match our
6236 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05006237 *
6238 * However if we are re-searching with an ideal block group
6239 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04006240 */
David Sterbab6919a52013-04-29 13:39:40 +00006241 if (block_group && block_group_bits(block_group, flags) &&
Josef Bacik285ff5a2012-01-13 15:27:45 -05006242 block_group->cached != BTRFS_CACHE_NO) {
Josef Bacik2552d172009-04-03 10:14:19 -04006243 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04006244 if (list_empty(&block_group->list) ||
6245 block_group->ro) {
6246 /*
6247 * someone is removing this block group,
6248 * we can't jump into the have_block_group
6249 * target because our list pointers are not
6250 * valid
6251 */
6252 btrfs_put_block_group(block_group);
6253 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05006254 } else {
Yan, Zhengb742bb822010-05-16 10:46:24 -04006255 index = get_block_group_index(block_group);
Chris Mason44fb5512009-06-04 15:34:51 -04006256 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05006257 }
Josef Bacik2552d172009-04-03 10:14:19 -04006258 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006259 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006260 }
Chris Mason42e70e72008-11-07 18:17:11 -05006261 }
Josef Bacik2552d172009-04-03 10:14:19 -04006262search:
Miao Xie60d2adb2011-09-09 17:34:35 +08006263 have_caching_bg = false;
Josef Bacik80eb2342008-10-29 14:49:05 -04006264 down_read(&space_info->groups_sem);
Yan, Zhengb742bb822010-05-16 10:46:24 -04006265 list_for_each_entry(block_group, &space_info->block_groups[index],
6266 list) {
Josef Bacik6226cb02009-04-03 10:14:18 -04006267 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04006268 int cached;
Chris Mason8a1413a22008-11-10 16:13:54 -05006269
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006270 used_block_group = block_group;
Josef Bacik11dfe352009-11-13 20:12:59 +00006271 btrfs_get_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006272 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05006273
Chris Mason83a50de2010-12-13 15:06:46 -05006274 /*
6275 * this can happen if we end up cycling through all the
6276 * raid types, but we want to make sure we only allocate
6277 * for the proper type.
6278 */
David Sterbab6919a52013-04-29 13:39:40 +00006279 if (!block_group_bits(block_group, flags)) {
Chris Mason83a50de2010-12-13 15:06:46 -05006280 u64 extra = BTRFS_BLOCK_GROUP_DUP |
6281 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05006282 BTRFS_BLOCK_GROUP_RAID5 |
6283 BTRFS_BLOCK_GROUP_RAID6 |
Chris Mason83a50de2010-12-13 15:06:46 -05006284 BTRFS_BLOCK_GROUP_RAID10;
6285
6286 /*
6287 * if they asked for extra copies and this block group
6288 * doesn't provide them, bail. This does allow us to
6289 * fill raid0 from raid1.
6290 */
David Sterbab6919a52013-04-29 13:39:40 +00006291 if ((flags & extra) && !(block_group->flags & extra))
Chris Mason83a50de2010-12-13 15:06:46 -05006292 goto loop;
6293 }
6294
Josef Bacik2552d172009-04-03 10:14:19 -04006295have_block_group:
Josef Bacik291c7d22011-11-14 13:52:14 -05006296 cached = block_group_cache_done(block_group);
6297 if (unlikely(!cached)) {
Josef Bacik291c7d22011-11-14 13:52:14 -05006298 found_uncached_bg = true;
Liu Bof6373bf2012-12-27 09:01:18 +00006299 ret = cache_block_group(block_group, 0);
Chris Mason1d4284b2012-03-28 20:31:37 -04006300 BUG_ON(ret < 0);
6301 ret = 0;
Josef Bacikea6a4782008-11-20 12:16:16 -05006302 }
6303
Josef Bacik36cce922013-08-05 11:15:21 -04006304 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
6305 goto loop;
Josef Bacikea6a4782008-11-20 12:16:16 -05006306 if (unlikely(block_group->ro))
Josef Bacik2552d172009-04-03 10:14:19 -04006307 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006308
Josef Bacik0a243252009-09-11 16:11:20 -04006309 /*
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006310 * Ok we want to try and use the cluster allocator, so
6311 * lets look there
Josef Bacik0a243252009-09-11 16:11:20 -04006312 */
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006313 if (last_ptr) {
Chris Mason8de972b2013-01-04 15:39:43 -05006314 unsigned long aligned_cluster;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006315 /*
6316 * the refill lock keeps out other
6317 * people trying to start a new cluster
6318 */
6319 spin_lock(&last_ptr->refill_lock);
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006320 used_block_group = last_ptr->block_group;
6321 if (used_block_group != block_group &&
6322 (!used_block_group ||
6323 used_block_group->ro ||
David Sterbab6919a52013-04-29 13:39:40 +00006324 !block_group_bits(used_block_group, flags))) {
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006325 used_block_group = block_group;
Chris Mason44fb5512009-06-04 15:34:51 -04006326 goto refill_cluster;
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006327 }
Chris Mason44fb5512009-06-04 15:34:51 -04006328
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006329 if (used_block_group != block_group)
6330 btrfs_get_block_group(used_block_group);
6331
6332 offset = btrfs_alloc_from_cluster(used_block_group,
Miao Xiea4820392013-09-09 13:19:42 +08006333 last_ptr,
6334 num_bytes,
6335 used_block_group->key.objectid,
6336 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006337 if (offset) {
6338 /* we have a block, we're done */
6339 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05006340 trace_btrfs_reserve_extent_cluster(root,
6341 block_group, search_start, num_bytes);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006342 goto checks;
6343 }
6344
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006345 WARN_ON(last_ptr->block_group != used_block_group);
6346 if (used_block_group != block_group) {
6347 btrfs_put_block_group(used_block_group);
6348 used_block_group = block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006349 }
Chris Mason44fb5512009-06-04 15:34:51 -04006350refill_cluster:
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006351 BUG_ON(used_block_group != block_group);
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006352 /* If we are on LOOP_NO_EMPTY_SIZE, we can't
6353 * set up a new clusters, so lets just skip it
6354 * and let the allocator find whatever block
6355 * it can find. If we reach this point, we
6356 * will have tried the cluster allocator
6357 * plenty of times and not have found
6358 * anything, so we are likely way too
6359 * fragmented for the clustering stuff to find
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006360 * anything.
6361 *
6362 * However, if the cluster is taken from the
6363 * current block group, release the cluster
6364 * first, so that we stand a better chance of
6365 * succeeding in the unclustered
6366 * allocation. */
6367 if (loop >= LOOP_NO_EMPTY_SIZE &&
6368 last_ptr->block_group != block_group) {
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006369 spin_unlock(&last_ptr->refill_lock);
6370 goto unclustered_alloc;
6371 }
6372
Chris Masonfa9c0d792009-04-03 09:47:43 -04006373 /*
6374 * this cluster didn't work out, free it and
6375 * start over
6376 */
6377 btrfs_return_cluster_to_free_space(NULL, last_ptr);
6378
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006379 if (loop >= LOOP_NO_EMPTY_SIZE) {
6380 spin_unlock(&last_ptr->refill_lock);
6381 goto unclustered_alloc;
6382 }
6383
Chris Mason8de972b2013-01-04 15:39:43 -05006384 aligned_cluster = max_t(unsigned long,
6385 empty_cluster + empty_size,
6386 block_group->full_stripe_len);
6387
Chris Masonfa9c0d792009-04-03 09:47:43 -04006388 /* allocate a cluster in this block group */
Josef Bacik00361582013-08-14 14:02:47 -04006389 ret = btrfs_find_space_cluster(root, block_group,
6390 last_ptr, search_start,
6391 num_bytes,
6392 aligned_cluster);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006393 if (ret == 0) {
6394 /*
6395 * now pull our allocation out of this
6396 * cluster
6397 */
6398 offset = btrfs_alloc_from_cluster(block_group,
Miao Xiea4820392013-09-09 13:19:42 +08006399 last_ptr,
6400 num_bytes,
6401 search_start,
6402 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006403 if (offset) {
6404 /* we found one, proceed */
6405 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05006406 trace_btrfs_reserve_extent_cluster(root,
6407 block_group, search_start,
6408 num_bytes);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006409 goto checks;
6410 }
Josef Bacik0a243252009-09-11 16:11:20 -04006411 } else if (!cached && loop > LOOP_CACHING_NOWAIT
6412 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04006413 spin_unlock(&last_ptr->refill_lock);
6414
Josef Bacik0a243252009-09-11 16:11:20 -04006415 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04006416 wait_block_group_cache_progress(block_group,
6417 num_bytes + empty_cluster + empty_size);
6418 goto have_block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006419 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006420
Chris Masonfa9c0d792009-04-03 09:47:43 -04006421 /*
6422 * at this point we either didn't find a cluster
6423 * or we weren't able to allocate a block from our
6424 * cluster. Free the cluster we've been trying
6425 * to use, and go to the next block group
6426 */
Josef Bacik0a243252009-09-11 16:11:20 -04006427 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006428 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04006429 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006430 }
6431
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006432unclustered_alloc:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006433 spin_lock(&block_group->free_space_ctl->tree_lock);
6434 if (cached &&
6435 block_group->free_space_ctl->free_space <
6436 num_bytes + empty_cluster + empty_size) {
Miao Xiea4820392013-09-09 13:19:42 +08006437 if (block_group->free_space_ctl->free_space >
6438 max_extent_size)
6439 max_extent_size =
6440 block_group->free_space_ctl->free_space;
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006441 spin_unlock(&block_group->free_space_ctl->tree_lock);
6442 goto loop;
6443 }
6444 spin_unlock(&block_group->free_space_ctl->tree_lock);
6445
Josef Bacik6226cb02009-04-03 10:14:18 -04006446 offset = btrfs_find_space_for_alloc(block_group, search_start,
Miao Xiea4820392013-09-09 13:19:42 +08006447 num_bytes, empty_size,
6448 &max_extent_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006449 /*
6450 * If we didn't find a chunk, and we haven't failed on this
6451 * block group before, and this block group is in the middle of
6452 * caching and we are ok with waiting, then go ahead and wait
6453 * for progress to be made, and set failed_alloc to true.
6454 *
6455 * If failed_alloc is true then we've already waited on this
6456 * block group once and should move on to the next block group.
6457 */
6458 if (!offset && !failed_alloc && !cached &&
6459 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04006460 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006461 num_bytes + empty_size);
6462 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04006463 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006464 } else if (!offset) {
Miao Xie60d2adb2011-09-09 17:34:35 +08006465 if (!cached)
6466 have_caching_bg = true;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006467 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04006468 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006469checks:
David Woodhouse53b381b2013-01-29 18:40:14 -05006470 search_start = stripe_align(root, used_block_group,
6471 offset, num_bytes);
Chris Masone37c9e62007-05-09 20:13:14 -04006472
Josef Bacik2552d172009-04-03 10:14:19 -04006473 /* move on to the next group */
6474 if (search_start + num_bytes >
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006475 used_block_group->key.objectid + used_block_group->key.offset) {
6476 btrfs_add_free_space(used_block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04006477 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04006478 }
Josef Bacik80eb2342008-10-29 14:49:05 -04006479
Josef Bacik6226cb02009-04-03 10:14:18 -04006480 if (offset < search_start)
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006481 btrfs_add_free_space(used_block_group, offset,
Josef Bacik6226cb02009-04-03 10:14:18 -04006482 search_start - offset);
6483 BUG_ON(offset > search_start);
6484
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006485 ret = btrfs_update_reserved_bytes(used_block_group, num_bytes,
Josef Bacikfb25e912011-07-26 17:00:46 -04006486 alloc_type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006487 if (ret == -EAGAIN) {
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006488 btrfs_add_free_space(used_block_group, offset, num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006489 goto loop;
6490 }
Yan Zheng11833d62009-09-11 16:11:19 -04006491
Josef Bacik2552d172009-04-03 10:14:19 -04006492 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006493 ins->objectid = search_start;
6494 ins->offset = num_bytes;
6495
Josef Bacik3f7de032011-11-10 08:29:20 -05006496 trace_btrfs_reserve_extent(orig_root, block_group,
6497 search_start, num_bytes);
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006498 if (used_block_group != block_group)
6499 btrfs_put_block_group(used_block_group);
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04006500 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006501 break;
6502loop:
Josef Bacik0a243252009-09-11 16:11:20 -04006503 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006504 failed_alloc = false;
Yan, Zhengb742bb822010-05-16 10:46:24 -04006505 BUG_ON(index != get_block_group_index(block_group));
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006506 if (used_block_group != block_group)
6507 btrfs_put_block_group(used_block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006508 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006509 }
6510 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05006511
Miao Xie60d2adb2011-09-09 17:34:35 +08006512 if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg)
6513 goto search;
6514
Yan, Zhengb742bb822010-05-16 10:46:24 -04006515 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
6516 goto search;
6517
Josef Bacik285ff5a2012-01-13 15:27:45 -05006518 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05006519 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
6520 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04006521 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
6522 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
6523 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
6524 * again
Chris Masonfa9c0d792009-04-03 09:47:43 -04006525 */
Josef Bacik723bda22011-05-27 16:11:38 -04006526 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) {
Yan, Zhengb742bb822010-05-16 10:46:24 -04006527 index = 0;
Josef Bacik723bda22011-05-27 16:11:38 -04006528 loop++;
Josef Bacik817d52f2009-07-13 21:29:25 -04006529 if (loop == LOOP_ALLOC_CHUNK) {
Josef Bacik00361582013-08-14 14:02:47 -04006530 struct btrfs_trans_handle *trans;
6531
6532 trans = btrfs_join_transaction(root);
6533 if (IS_ERR(trans)) {
6534 ret = PTR_ERR(trans);
6535 goto out;
6536 }
6537
David Sterbab6919a52013-04-29 13:39:40 +00006538 ret = do_chunk_alloc(trans, root, flags,
Josef Bacikea658ba2012-09-11 16:57:25 -04006539 CHUNK_ALLOC_FORCE);
6540 /*
6541 * Do not bail out on ENOSPC since we
6542 * can do more things.
6543 */
Josef Bacik00361582013-08-14 14:02:47 -04006544 if (ret < 0 && ret != -ENOSPC)
Josef Bacikea658ba2012-09-11 16:57:25 -04006545 btrfs_abort_transaction(trans,
6546 root, ret);
Josef Bacik00361582013-08-14 14:02:47 -04006547 else
6548 ret = 0;
6549 btrfs_end_transaction(trans, root);
6550 if (ret)
Josef Bacikea658ba2012-09-11 16:57:25 -04006551 goto out;
Josef Bacik723bda22011-05-27 16:11:38 -04006552 }
6553
6554 if (loop == LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006555 empty_size = 0;
6556 empty_cluster = 0;
6557 }
Chris Mason42e70e72008-11-07 18:17:11 -05006558
Josef Bacik723bda22011-05-27 16:11:38 -04006559 goto search;
Josef Bacik2552d172009-04-03 10:14:19 -04006560 } else if (!ins->objectid) {
6561 ret = -ENOSPC;
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04006562 } else if (ins->objectid) {
Josef Bacik2552d172009-04-03 10:14:19 -04006563 ret = 0;
6564 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006565out:
Miao Xiea4820392013-09-09 13:19:42 +08006566 if (ret == -ENOSPC)
6567 ins->offset = max_extent_size;
Chris Mason0f70abe2007-02-28 16:46:22 -05006568 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05006569}
Chris Masonec44a352008-04-28 15:29:52 -04006570
Josef Bacik9ed74f22009-09-11 16:12:44 -04006571static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
6572 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04006573{
6574 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb822010-05-16 10:46:24 -04006575 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006576
Josef Bacik9ed74f22009-09-11 16:12:44 -04006577 spin_lock(&info->lock);
Josef Bacikfb25e912011-07-26 17:00:46 -04006578 printk(KERN_INFO "space_info %llu has %llu free, is %sfull\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006579 info->flags,
6580 info->total_bytes - info->bytes_used - info->bytes_pinned -
6581 info->bytes_reserved - info->bytes_readonly,
Chris Masond3977122009-01-05 21:25:51 -05006582 (info->full) ? "" : "not ");
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006583 printk(KERN_INFO "space_info total=%llu, used=%llu, pinned=%llu, "
6584 "reserved=%llu, may_use=%llu, readonly=%llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006585 info->total_bytes, info->bytes_used, info->bytes_pinned,
6586 info->bytes_reserved, info->bytes_may_use,
6587 info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006588 spin_unlock(&info->lock);
6589
6590 if (!dump_block_groups)
6591 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006592
Josef Bacik80eb2342008-10-29 14:49:05 -04006593 down_read(&info->groups_sem);
Yan, Zhengb742bb822010-05-16 10:46:24 -04006594again:
6595 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04006596 spin_lock(&cache->lock);
Liu Bo799ffc32012-07-06 03:31:35 -06006597 printk(KERN_INFO "block group %llu has %llu bytes, %llu used %llu pinned %llu reserved %s\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006598 cache->key.objectid, cache->key.offset,
6599 btrfs_block_group_used(&cache->item), cache->pinned,
6600 cache->reserved, cache->ro ? "[readonly]" : "");
Josef Bacik0f9dd462008-09-23 13:14:11 -04006601 btrfs_dump_free_space(cache, bytes);
6602 spin_unlock(&cache->lock);
6603 }
Yan, Zhengb742bb822010-05-16 10:46:24 -04006604 if (++index < BTRFS_NR_RAID_TYPES)
6605 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04006606 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04006607}
Zheng Yane8569812008-09-26 10:05:48 -04006608
Josef Bacik00361582013-08-14 14:02:47 -04006609int btrfs_reserve_extent(struct btrfs_root *root,
Yan Zheng11833d62009-09-11 16:11:19 -04006610 u64 num_bytes, u64 min_alloc_size,
6611 u64 empty_size, u64 hint_byte,
David Sterbab6919a52013-04-29 13:39:40 +00006612 struct btrfs_key *ins, int is_data)
Chris Masonfec577f2007-02-26 10:40:21 -05006613{
Miao Xie9e622d62012-01-26 15:01:12 -05006614 bool final_tried = false;
David Sterbab6919a52013-04-29 13:39:40 +00006615 u64 flags;
Chris Masonfec577f2007-02-26 10:40:21 -05006616 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04006617
David Sterbab6919a52013-04-29 13:39:40 +00006618 flags = btrfs_get_alloc_profile(root, is_data);
Chris Mason98d20f62008-04-14 09:46:10 -04006619again:
Chris Masondb945352007-10-15 16:15:53 -04006620 WARN_ON(num_bytes < root->sectorsize);
Josef Bacik00361582013-08-14 14:02:47 -04006621 ret = find_free_extent(root, num_bytes, empty_size, hint_byte, ins,
6622 flags);
Chris Mason3b951512008-04-17 11:29:12 -04006623
Miao Xie9e622d62012-01-26 15:01:12 -05006624 if (ret == -ENOSPC) {
Miao Xiea4820392013-09-09 13:19:42 +08006625 if (!final_tried && ins->offset) {
6626 num_bytes = min(num_bytes >> 1, ins->offset);
Zach Brown24542bf2012-11-16 00:04:43 +00006627 num_bytes = round_down(num_bytes, root->sectorsize);
Miao Xie9e622d62012-01-26 15:01:12 -05006628 num_bytes = max(num_bytes, min_alloc_size);
Miao Xie9e622d62012-01-26 15:01:12 -05006629 if (num_bytes == min_alloc_size)
6630 final_tried = true;
6631 goto again;
6632 } else if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
6633 struct btrfs_space_info *sinfo;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006634
David Sterbab6919a52013-04-29 13:39:40 +00006635 sinfo = __find_space_info(root->fs_info, flags);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006636 btrfs_err(root->fs_info, "allocation failed flags %llu, wanted %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006637 flags, num_bytes);
Jeff Mahoney53804282012-03-01 14:56:28 +01006638 if (sinfo)
6639 dump_space_info(sinfo, num_bytes, 1);
Miao Xie9e622d62012-01-26 15:01:12 -05006640 }
Chris Mason925baed2008-06-25 16:01:30 -04006641 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04006642
6643 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006644}
6645
Chris Masone688b7252011-10-31 20:52:39 -04006646static int __btrfs_free_reserved_extent(struct btrfs_root *root,
6647 u64 start, u64 len, int pin)
Chris Mason65b51a02008-08-01 15:11:20 -04006648{
Josef Bacik0f9dd462008-09-23 13:14:11 -04006649 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05006650 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006651
Josef Bacik0f9dd462008-09-23 13:14:11 -04006652 cache = btrfs_lookup_block_group(root->fs_info, start);
6653 if (!cache) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006654 btrfs_err(root->fs_info, "Unable to find block group for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006655 start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04006656 return -ENOSPC;
6657 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05006658
Li Dongyang5378e602011-03-24 10:24:27 +00006659 if (btrfs_test_opt(root, DISCARD))
6660 ret = btrfs_discard_extent(root, start, len, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05006661
Chris Masone688b7252011-10-31 20:52:39 -04006662 if (pin)
6663 pin_down_extent(root, cache, start, len, 1);
6664 else {
6665 btrfs_add_free_space(cache, start, len);
6666 btrfs_update_reserved_bytes(cache, len, RESERVE_FREE);
6667 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006668 btrfs_put_block_group(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04006669
liubo1abe9b82011-03-24 11:18:59 +00006670 trace_btrfs_reserved_extent_free(root, start, len);
6671
Chris Masone6dcd2d2008-07-17 12:53:50 -04006672 return ret;
6673}
6674
Chris Masone688b7252011-10-31 20:52:39 -04006675int btrfs_free_reserved_extent(struct btrfs_root *root,
6676 u64 start, u64 len)
6677{
6678 return __btrfs_free_reserved_extent(root, start, len, 0);
6679}
6680
6681int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root,
6682 u64 start, u64 len)
6683{
6684 return __btrfs_free_reserved_extent(root, start, len, 1);
6685}
6686
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006687static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
6688 struct btrfs_root *root,
6689 u64 parent, u64 root_objectid,
6690 u64 flags, u64 owner, u64 offset,
6691 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006692{
6693 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006694 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006695 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006696 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006697 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006698 struct extent_buffer *leaf;
6699 int type;
6700 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04006701
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006702 if (parent > 0)
6703 type = BTRFS_SHARED_DATA_REF_KEY;
6704 else
6705 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04006706
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006707 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05006708
6709 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00006710 if (!path)
6711 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05006712
Chris Masonb9473432009-03-13 11:00:37 -04006713 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006714 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
6715 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006716 if (ret) {
6717 btrfs_free_path(path);
6718 return ret;
6719 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04006720
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006721 leaf = path->nodes[0];
6722 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05006723 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006724 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
6725 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
6726 btrfs_set_extent_flags(leaf, extent_item,
6727 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05006728
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006729 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
6730 btrfs_set_extent_inline_ref_type(leaf, iref, type);
6731 if (parent > 0) {
6732 struct btrfs_shared_data_ref *ref;
6733 ref = (struct btrfs_shared_data_ref *)(iref + 1);
6734 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
6735 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
6736 } else {
6737 struct btrfs_extent_data_ref *ref;
6738 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
6739 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
6740 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
6741 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
6742 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
6743 }
Chris Mason47e4bb92008-02-01 14:51:59 -05006744
6745 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05006746 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04006747
Liu Boc53d6132012-12-27 09:01:19 +00006748 ret = update_block_group(root, ins->objectid, ins->offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006749 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006750 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006751 ins->objectid, ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05006752 BUG();
6753 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04006754 trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006755 return ret;
6756}
6757
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006758static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
6759 struct btrfs_root *root,
6760 u64 parent, u64 root_objectid,
6761 u64 flags, struct btrfs_disk_key *key,
6762 int level, struct btrfs_key *ins)
6763{
6764 int ret;
6765 struct btrfs_fs_info *fs_info = root->fs_info;
6766 struct btrfs_extent_item *extent_item;
6767 struct btrfs_tree_block_info *block_info;
6768 struct btrfs_extent_inline_ref *iref;
6769 struct btrfs_path *path;
6770 struct extent_buffer *leaf;
Josef Bacik3173a182013-03-07 14:22:04 -05006771 u32 size = sizeof(*extent_item) + sizeof(*iref);
6772 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
6773 SKINNY_METADATA);
6774
6775 if (!skinny_metadata)
6776 size += sizeof(*block_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006777
6778 path = btrfs_alloc_path();
Josef Bacik857cc2f2013-10-07 15:21:08 -04006779 if (!path) {
6780 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
6781 root->leafsize);
Mark Fashehd8926bb2011-07-13 10:38:47 -07006782 return -ENOMEM;
Josef Bacik857cc2f2013-10-07 15:21:08 -04006783 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006784
6785 path->leave_spinning = 1;
6786 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
6787 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006788 if (ret) {
Josef Bacik857cc2f2013-10-07 15:21:08 -04006789 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
6790 root->leafsize);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006791 btrfs_free_path(path);
6792 return ret;
6793 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006794
6795 leaf = path->nodes[0];
6796 extent_item = btrfs_item_ptr(leaf, path->slots[0],
6797 struct btrfs_extent_item);
6798 btrfs_set_extent_refs(leaf, extent_item, 1);
6799 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
6800 btrfs_set_extent_flags(leaf, extent_item,
6801 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006802
Josef Bacik3173a182013-03-07 14:22:04 -05006803 if (skinny_metadata) {
6804 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
6805 } else {
6806 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
6807 btrfs_set_tree_block_key(leaf, block_info, key);
6808 btrfs_set_tree_block_level(leaf, block_info, level);
6809 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
6810 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006811
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006812 if (parent > 0) {
6813 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
6814 btrfs_set_extent_inline_ref_type(leaf, iref,
6815 BTRFS_SHARED_BLOCK_REF_KEY);
6816 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
6817 } else {
6818 btrfs_set_extent_inline_ref_type(leaf, iref,
6819 BTRFS_TREE_BLOCK_REF_KEY);
6820 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
6821 }
6822
6823 btrfs_mark_buffer_dirty(leaf);
6824 btrfs_free_path(path);
6825
Josef Bacik3173a182013-03-07 14:22:04 -05006826 ret = update_block_group(root, ins->objectid, root->leafsize, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006827 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006828 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006829 ins->objectid, ins->offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006830 BUG();
6831 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04006832
6833 trace_btrfs_reserved_extent_alloc(root, ins->objectid, root->leafsize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006834 return ret;
6835}
6836
6837int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
6838 struct btrfs_root *root,
6839 u64 root_objectid, u64 owner,
6840 u64 offset, struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006841{
6842 int ret;
Chris Mason1c2308f82008-09-23 13:14:13 -04006843
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006844 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04006845
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006846 ret = btrfs_add_delayed_data_ref(root->fs_info, trans, ins->objectid,
6847 ins->offset, 0,
6848 root_objectid, owner, offset,
6849 BTRFS_ADD_DELAYED_EXTENT, NULL, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006850 return ret;
6851}
Chris Masone02119d2008-09-05 16:13:11 -04006852
6853/*
6854 * this is used by the tree logging recovery code. It records that
6855 * an extent has been allocated and makes sure to clear the free
6856 * space cache bits as well
6857 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006858int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
6859 struct btrfs_root *root,
6860 u64 root_objectid, u64 owner, u64 offset,
6861 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04006862{
6863 int ret;
6864 struct btrfs_block_group_cache *block_group;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006865
6866 /*
6867 * Mixed block groups will exclude before processing the log so we only
6868 * need to do the exlude dance if this fs isn't mixed.
6869 */
6870 if (!btrfs_fs_incompat(root->fs_info, MIXED_GROUPS)) {
6871 ret = __exclude_logged_extent(root, ins->objectid, ins->offset);
6872 if (ret)
6873 return ret;
6874 }
Chris Masone02119d2008-09-05 16:13:11 -04006875
Chris Masone02119d2008-09-05 16:13:11 -04006876 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006877 if (!block_group)
6878 return -EINVAL;
Yan Zheng11833d62009-09-11 16:11:19 -04006879
Josef Bacikfb25e912011-07-26 17:00:46 -04006880 ret = btrfs_update_reserved_bytes(block_group, ins->offset,
6881 RESERVE_ALLOC_NO_ACCOUNT);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006882 BUG_ON(ret); /* logic error */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006883 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
6884 0, owner, offset, ins, 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006885 btrfs_put_block_group(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04006886 return ret;
6887}
6888
Eric Sandeen48a3b632013-04-25 20:41:01 +00006889static struct extent_buffer *
6890btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
6891 u64 bytenr, u32 blocksize, int level)
Chris Mason65b51a02008-08-01 15:11:20 -04006892{
6893 struct extent_buffer *buf;
6894
6895 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
6896 if (!buf)
6897 return ERR_PTR(-ENOMEM);
6898 btrfs_set_header_generation(buf, trans->transid);
Chris Mason85d4e462011-07-26 16:11:19 -04006899 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04006900 btrfs_tree_lock(buf);
6901 clean_tree_block(trans, root, buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05006902 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
Chris Masonb4ce94d2009-02-04 09:25:08 -05006903
6904 btrfs_set_lock_blocking(buf);
Chris Mason65b51a02008-08-01 15:11:20 -04006905 btrfs_set_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05006906
Chris Masond0c803c2008-09-11 16:17:57 -04006907 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +00006908 /*
6909 * we allow two log transactions at a time, use different
6910 * EXENT bit to differentiate dirty pages.
6911 */
6912 if (root->log_transid % 2 == 0)
6913 set_extent_dirty(&root->dirty_log_pages, buf->start,
6914 buf->start + buf->len - 1, GFP_NOFS);
6915 else
6916 set_extent_new(&root->dirty_log_pages, buf->start,
6917 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond0c803c2008-09-11 16:17:57 -04006918 } else {
6919 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
6920 buf->start + buf->len - 1, GFP_NOFS);
6921 }
Chris Mason65b51a02008-08-01 15:11:20 -04006922 trans->blocks_used++;
Chris Masonb4ce94d2009-02-04 09:25:08 -05006923 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04006924 return buf;
6925}
6926
Yan, Zhengf0486c62010-05-16 10:46:25 -04006927static struct btrfs_block_rsv *
6928use_block_rsv(struct btrfs_trans_handle *trans,
6929 struct btrfs_root *root, u32 blocksize)
6930{
6931 struct btrfs_block_rsv *block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00006932 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006933 int ret;
Miao Xied88033d2013-05-13 13:55:12 +00006934 bool global_updated = false;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006935
6936 block_rsv = get_block_rsv(trans, root);
6937
Miao Xieb586b322013-05-13 13:55:10 +00006938 if (unlikely(block_rsv->size == 0))
6939 goto try_reserve;
Miao Xied88033d2013-05-13 13:55:12 +00006940again:
Yan, Zhengf0486c62010-05-16 10:46:25 -04006941 ret = block_rsv_use_bytes(block_rsv, blocksize);
6942 if (!ret)
6943 return block_rsv;
6944
Miao Xieb586b322013-05-13 13:55:10 +00006945 if (block_rsv->failfast)
6946 return ERR_PTR(ret);
6947
Miao Xied88033d2013-05-13 13:55:12 +00006948 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
6949 global_updated = true;
6950 update_global_block_rsv(root->fs_info);
6951 goto again;
6952 }
6953
Miao Xieb586b322013-05-13 13:55:10 +00006954 if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
6955 static DEFINE_RATELIMIT_STATE(_rs,
6956 DEFAULT_RATELIMIT_INTERVAL * 10,
6957 /*DEFAULT_RATELIMIT_BURST*/ 1);
6958 if (__ratelimit(&_rs))
6959 WARN(1, KERN_DEBUG
6960 "btrfs: block rsv returned %d\n", ret);
6961 }
6962try_reserve:
6963 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
6964 BTRFS_RESERVE_NO_FLUSH);
6965 if (!ret)
6966 return block_rsv;
6967 /*
6968 * If we couldn't reserve metadata bytes try and use some from
Miao Xie5881cfc2013-05-13 13:55:11 +00006969 * the global reserve if its space type is the same as the global
6970 * reservation.
Miao Xieb586b322013-05-13 13:55:10 +00006971 */
Miao Xie5881cfc2013-05-13 13:55:11 +00006972 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
6973 block_rsv->space_info == global_rsv->space_info) {
Miao Xieb586b322013-05-13 13:55:10 +00006974 ret = block_rsv_use_bytes(global_rsv, blocksize);
6975 if (!ret)
6976 return global_rsv;
6977 }
6978 return ERR_PTR(ret);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006979}
6980
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006981static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
6982 struct btrfs_block_rsv *block_rsv, u32 blocksize)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006983{
6984 block_rsv_add_bytes(block_rsv, blocksize, 0);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006985 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006986}
6987
Chris Masonfec577f2007-02-26 10:40:21 -05006988/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04006989 * finds a free extent and does all the dirty work required for allocation
6990 * returns the key for the extent through ins, and a tree buffer for
6991 * the first block of the extent through buf.
6992 *
Chris Masonfec577f2007-02-26 10:40:21 -05006993 * returns the tree buffer or NULL.
6994 */
Chris Mason5f39d392007-10-15 16:14:19 -04006995struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006996 struct btrfs_root *root, u32 blocksize,
6997 u64 parent, u64 root_objectid,
6998 struct btrfs_disk_key *key, int level,
Jan Schmidt5581a512012-05-16 17:04:52 +02006999 u64 hint, u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05007000{
Chris Masone2fa7222007-03-12 16:22:34 -04007001 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007002 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04007003 struct extent_buffer *buf;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007004 u64 flags = 0;
7005 int ret;
Josef Bacik3173a182013-03-07 14:22:04 -05007006 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
7007 SKINNY_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007008
7009 block_rsv = use_block_rsv(trans, root, blocksize);
7010 if (IS_ERR(block_rsv))
7011 return ERR_CAST(block_rsv);
7012
Josef Bacik00361582013-08-14 14:02:47 -04007013 ret = btrfs_reserve_extent(root, blocksize, blocksize,
Josef Bacik81c9ad22012-01-18 10:56:06 -05007014 empty_size, hint, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05007015 if (ret) {
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05007016 unuse_block_rsv(root->fs_info, block_rsv, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04007017 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05007018 }
Chris Mason55c69072008-01-09 15:55:33 -05007019
Chris Mason4008c042009-02-12 14:09:45 -05007020 buf = btrfs_init_new_buffer(trans, root, ins.objectid,
7021 blocksize, level);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007022 BUG_ON(IS_ERR(buf)); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007023
7024 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
7025 if (parent == 0)
7026 parent = ins.objectid;
7027 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
7028 } else
7029 BUG_ON(parent > 0);
7030
7031 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
7032 struct btrfs_delayed_extent_op *extent_op;
Miao Xie78a61842012-11-21 02:21:28 +00007033 extent_op = btrfs_alloc_delayed_extent_op();
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007034 BUG_ON(!extent_op); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007035 if (key)
7036 memcpy(&extent_op->key, key, sizeof(extent_op->key));
7037 else
7038 memset(&extent_op->key, 0, sizeof(extent_op->key));
7039 extent_op->flags_to_set = flags;
Josef Bacik3173a182013-03-07 14:22:04 -05007040 if (skinny_metadata)
7041 extent_op->update_key = 0;
7042 else
7043 extent_op->update_key = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007044 extent_op->update_flags = 1;
7045 extent_op->is_data = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04007046 extent_op->level = level;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007047
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007048 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
7049 ins.objectid,
Yan, Zhengf0486c62010-05-16 10:46:25 -04007050 ins.offset, parent, root_objectid,
7051 level, BTRFS_ADD_DELAYED_EXTENT,
Jan Schmidt5581a512012-05-16 17:04:52 +02007052 extent_op, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007053 BUG_ON(ret); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007054 }
Chris Masonfec577f2007-02-26 10:40:21 -05007055 return buf;
7056}
Chris Masona28ec192007-03-06 20:08:01 -05007057
Yan Zheng2c47e6052009-06-27 21:07:35 -04007058struct walk_control {
7059 u64 refs[BTRFS_MAX_LEVEL];
7060 u64 flags[BTRFS_MAX_LEVEL];
7061 struct btrfs_key update_progress;
7062 int stage;
7063 int level;
7064 int shared_level;
7065 int update_ref;
7066 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007067 int reada_slot;
7068 int reada_count;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007069 int for_reloc;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007070};
7071
7072#define DROP_REFERENCE 1
7073#define UPDATE_BACKREF 2
7074
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007075static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
7076 struct btrfs_root *root,
7077 struct walk_control *wc,
7078 struct btrfs_path *path)
7079{
7080 u64 bytenr;
7081 u64 generation;
7082 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007083 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007084 u32 nritems;
7085 u32 blocksize;
7086 struct btrfs_key key;
7087 struct extent_buffer *eb;
7088 int ret;
7089 int slot;
7090 int nread = 0;
7091
7092 if (path->slots[wc->level] < wc->reada_slot) {
7093 wc->reada_count = wc->reada_count * 2 / 3;
7094 wc->reada_count = max(wc->reada_count, 2);
7095 } else {
7096 wc->reada_count = wc->reada_count * 3 / 2;
7097 wc->reada_count = min_t(int, wc->reada_count,
7098 BTRFS_NODEPTRS_PER_BLOCK(root));
7099 }
7100
7101 eb = path->nodes[wc->level];
7102 nritems = btrfs_header_nritems(eb);
7103 blocksize = btrfs_level_size(root, wc->level - 1);
7104
7105 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
7106 if (nread >= wc->reada_count)
7107 break;
7108
7109 cond_resched();
7110 bytenr = btrfs_node_blockptr(eb, slot);
7111 generation = btrfs_node_ptr_generation(eb, slot);
7112
7113 if (slot == path->slots[wc->level])
7114 goto reada;
7115
7116 if (wc->stage == UPDATE_BACKREF &&
7117 generation <= root->root_key.offset)
7118 continue;
7119
Yan, Zheng94fcca92009-10-09 09:25:16 -04007120 /* We don't lock the tree block, it's OK to be racy here */
Josef Bacik3173a182013-03-07 14:22:04 -05007121 ret = btrfs_lookup_extent_info(trans, root, bytenr,
7122 wc->level - 1, 1, &refs,
7123 &flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007124 /* We don't care about errors in readahead. */
7125 if (ret < 0)
7126 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007127 BUG_ON(refs == 0);
7128
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007129 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007130 if (refs == 1)
7131 goto reada;
7132
Yan, Zheng94fcca92009-10-09 09:25:16 -04007133 if (wc->level == 1 &&
7134 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7135 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007136 if (!wc->update_ref ||
7137 generation <= root->root_key.offset)
7138 continue;
7139 btrfs_node_key_to_cpu(eb, &key, slot);
7140 ret = btrfs_comp_cpu_keys(&key,
7141 &wc->update_progress);
7142 if (ret < 0)
7143 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007144 } else {
7145 if (wc->level == 1 &&
7146 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7147 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007148 }
7149reada:
7150 ret = readahead_tree_block(root, bytenr, blocksize,
7151 generation);
7152 if (ret)
7153 break;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007154 nread++;
7155 }
7156 wc->reada_slot = slot;
7157}
7158
Chris Mason9aca1d52007-03-13 11:09:37 -04007159/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007160 * helper to process tree block while walking down the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04007161 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04007162 * when wc->stage == UPDATE_BACKREF, this function updates
7163 * back refs for pointers in the block.
7164 *
7165 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04007166 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007167static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
7168 struct btrfs_root *root,
7169 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007170 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04007171{
7172 int level = wc->level;
7173 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04007174 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
7175 int ret;
7176
7177 if (wc->stage == UPDATE_BACKREF &&
7178 btrfs_header_owner(eb) != root->root_key.objectid)
7179 return 1;
7180
7181 /*
7182 * when reference count of tree block is 1, it won't increase
7183 * again. once full backref flag is set, we never clear it.
7184 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04007185 if (lookup_info &&
7186 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
7187 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007188 BUG_ON(!path->locks[level]);
7189 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05007190 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007191 &wc->refs[level],
7192 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007193 BUG_ON(ret == -ENOMEM);
7194 if (ret)
7195 return ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007196 BUG_ON(wc->refs[level] == 0);
7197 }
7198
Yan Zheng2c47e6052009-06-27 21:07:35 -04007199 if (wc->stage == DROP_REFERENCE) {
7200 if (wc->refs[level] > 1)
7201 return 1;
7202
7203 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04007204 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007205 path->locks[level] = 0;
7206 }
7207 return 0;
7208 }
7209
7210 /* wc->stage == UPDATE_BACKREF */
7211 if (!(wc->flags[level] & flag)) {
7212 BUG_ON(!path->locks[level]);
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007213 ret = btrfs_inc_ref(trans, root, eb, 1, wc->for_reloc);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007214 BUG_ON(ret); /* -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007215 ret = btrfs_dec_ref(trans, root, eb, 0, wc->for_reloc);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007216 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007217 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
Josef Bacikb1c79e02013-05-09 13:49:30 -04007218 eb->len, flag,
7219 btrfs_header_level(eb), 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007220 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007221 wc->flags[level] |= flag;
7222 }
7223
7224 /*
7225 * the block is shared by multiple trees, so it's not good to
7226 * keep the tree lock
7227 */
7228 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04007229 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007230 path->locks[level] = 0;
7231 }
7232 return 0;
7233}
7234
7235/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007236 * helper to process tree block pointer.
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007237 *
7238 * when wc->stage == DROP_REFERENCE, this function checks
7239 * reference count of the block pointed to. if the block
7240 * is shared and we need update back refs for the subtree
7241 * rooted at the block, this function changes wc->stage to
7242 * UPDATE_BACKREF. if the block is shared and there is no
7243 * need to update back, this function drops the reference
7244 * to the block.
7245 *
7246 * NOTE: return value 1 means we should stop walking down.
7247 */
7248static noinline int do_walk_down(struct btrfs_trans_handle *trans,
7249 struct btrfs_root *root,
7250 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007251 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007252{
7253 u64 bytenr;
7254 u64 generation;
7255 u64 parent;
7256 u32 blocksize;
7257 struct btrfs_key key;
7258 struct extent_buffer *next;
7259 int level = wc->level;
7260 int reada = 0;
7261 int ret = 0;
7262
7263 generation = btrfs_node_ptr_generation(path->nodes[level],
7264 path->slots[level]);
7265 /*
7266 * if the lower level block was created before the snapshot
7267 * was created, we know there is no need to update back refs
7268 * for the subtree
7269 */
7270 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04007271 generation <= root->root_key.offset) {
7272 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007273 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007274 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007275
7276 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
7277 blocksize = btrfs_level_size(root, level - 1);
7278
7279 next = btrfs_find_tree_block(root, bytenr, blocksize);
7280 if (!next) {
7281 next = btrfs_find_create_tree_block(root, bytenr, blocksize);
Miao Xie90d2c51d2010-03-25 12:37:12 +00007282 if (!next)
7283 return -ENOMEM;
Josef Bacikb2aaaa32013-07-05 17:05:38 -04007284 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
7285 level - 1);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007286 reada = 1;
7287 }
7288 btrfs_tree_lock(next);
7289 btrfs_set_lock_blocking(next);
7290
Josef Bacik3173a182013-03-07 14:22:04 -05007291 ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007292 &wc->refs[level - 1],
7293 &wc->flags[level - 1]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007294 if (ret < 0) {
7295 btrfs_tree_unlock(next);
7296 return ret;
7297 }
7298
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007299 if (unlikely(wc->refs[level - 1] == 0)) {
7300 btrfs_err(root->fs_info, "Missing references.");
7301 BUG();
7302 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04007303 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007304
Yan, Zheng94fcca92009-10-09 09:25:16 -04007305 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007306 if (wc->refs[level - 1] > 1) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04007307 if (level == 1 &&
7308 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7309 goto skip;
7310
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007311 if (!wc->update_ref ||
7312 generation <= root->root_key.offset)
7313 goto skip;
7314
7315 btrfs_node_key_to_cpu(path->nodes[level], &key,
7316 path->slots[level]);
7317 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
7318 if (ret < 0)
7319 goto skip;
7320
7321 wc->stage = UPDATE_BACKREF;
7322 wc->shared_level = level - 1;
7323 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04007324 } else {
7325 if (level == 1 &&
7326 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7327 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007328 }
7329
Chris Masonb9fab912012-05-06 07:23:47 -04007330 if (!btrfs_buffer_uptodate(next, generation, 0)) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007331 btrfs_tree_unlock(next);
7332 free_extent_buffer(next);
7333 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007334 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007335 }
7336
7337 if (!next) {
7338 if (reada && level == 1)
7339 reada_walk_down(trans, root, wc, path);
7340 next = read_tree_block(root, bytenr, blocksize, generation);
Josef Bacik416bc652013-04-23 14:17:42 -04007341 if (!next || !extent_buffer_uptodate(next)) {
7342 free_extent_buffer(next);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00007343 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04007344 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007345 btrfs_tree_lock(next);
7346 btrfs_set_lock_blocking(next);
7347 }
7348
7349 level--;
7350 BUG_ON(level != btrfs_header_level(next));
7351 path->nodes[level] = next;
7352 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04007353 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007354 wc->level = level;
7355 if (wc->level == 1)
7356 wc->reada_slot = 0;
7357 return 0;
7358skip:
7359 wc->refs[level - 1] = 0;
7360 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007361 if (wc->stage == DROP_REFERENCE) {
7362 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
7363 parent = path->nodes[level]->start;
7364 } else {
7365 BUG_ON(root->root_key.objectid !=
7366 btrfs_header_owner(path->nodes[level]));
7367 parent = 0;
7368 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007369
Yan, Zheng94fcca92009-10-09 09:25:16 -04007370 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007371 root->root_key.objectid, level - 1, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007372 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007373 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007374 btrfs_tree_unlock(next);
7375 free_extent_buffer(next);
Yan, Zheng94fcca92009-10-09 09:25:16 -04007376 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007377 return 1;
7378}
7379
7380/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007381 * helper to process tree block while walking up the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04007382 *
7383 * when wc->stage == DROP_REFERENCE, this function drops
7384 * reference count on the block.
7385 *
7386 * when wc->stage == UPDATE_BACKREF, this function changes
7387 * wc->stage back to DROP_REFERENCE if we changed wc->stage
7388 * to UPDATE_BACKREF previously while processing the block.
7389 *
7390 * NOTE: return value 1 means we should stop walking up.
7391 */
7392static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
7393 struct btrfs_root *root,
7394 struct btrfs_path *path,
7395 struct walk_control *wc)
7396{
Yan, Zhengf0486c62010-05-16 10:46:25 -04007397 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007398 int level = wc->level;
7399 struct extent_buffer *eb = path->nodes[level];
7400 u64 parent = 0;
7401
7402 if (wc->stage == UPDATE_BACKREF) {
7403 BUG_ON(wc->shared_level < level);
7404 if (level < wc->shared_level)
7405 goto out;
7406
Yan Zheng2c47e6052009-06-27 21:07:35 -04007407 ret = find_next_key(path, level + 1, &wc->update_progress);
7408 if (ret > 0)
7409 wc->update_ref = 0;
7410
7411 wc->stage = DROP_REFERENCE;
7412 wc->shared_level = -1;
7413 path->slots[level] = 0;
7414
7415 /*
7416 * check reference count again if the block isn't locked.
7417 * we should start walking down the tree again if reference
7418 * count is one.
7419 */
7420 if (!path->locks[level]) {
7421 BUG_ON(level == 0);
7422 btrfs_tree_lock(eb);
7423 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04007424 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007425
7426 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05007427 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007428 &wc->refs[level],
7429 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007430 if (ret < 0) {
7431 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00007432 path->locks[level] = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007433 return ret;
7434 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007435 BUG_ON(wc->refs[level] == 0);
7436 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04007437 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00007438 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007439 return 1;
7440 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007441 }
7442 }
7443
7444 /* wc->stage == DROP_REFERENCE */
7445 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
7446
7447 if (wc->refs[level] == 1) {
7448 if (level == 0) {
7449 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007450 ret = btrfs_dec_ref(trans, root, eb, 1,
7451 wc->for_reloc);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007452 else
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007453 ret = btrfs_dec_ref(trans, root, eb, 0,
7454 wc->for_reloc);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007455 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007456 }
7457 /* make block locked assertion in clean_tree_block happy */
7458 if (!path->locks[level] &&
7459 btrfs_header_generation(eb) == trans->transid) {
7460 btrfs_tree_lock(eb);
7461 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04007462 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007463 }
7464 clean_tree_block(trans, root, eb);
7465 }
7466
7467 if (eb == root->node) {
7468 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
7469 parent = eb->start;
7470 else
7471 BUG_ON(root->root_key.objectid !=
7472 btrfs_header_owner(eb));
7473 } else {
7474 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
7475 parent = path->nodes[level + 1]->start;
7476 else
7477 BUG_ON(root->root_key.objectid !=
7478 btrfs_header_owner(path->nodes[level + 1]));
7479 }
7480
Jan Schmidt5581a512012-05-16 17:04:52 +02007481 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007482out:
7483 wc->refs[level] = 0;
7484 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007485 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007486}
7487
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007488static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
7489 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007490 struct btrfs_path *path,
7491 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04007492{
Yan Zheng2c47e6052009-06-27 21:07:35 -04007493 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007494 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007495 int ret;
7496
Yan Zheng2c47e6052009-06-27 21:07:35 -04007497 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04007498 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007499 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04007500 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007501
Yan Zheng2c47e6052009-06-27 21:07:35 -04007502 if (level == 0)
7503 break;
7504
Yan, Zheng7a7965f2010-02-01 02:41:17 +00007505 if (path->slots[level] >=
7506 btrfs_header_nritems(path->nodes[level]))
7507 break;
7508
Yan, Zheng94fcca92009-10-09 09:25:16 -04007509 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007510 if (ret > 0) {
7511 path->slots[level]++;
7512 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00007513 } else if (ret < 0)
7514 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007515 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007516 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04007517 return 0;
7518}
7519
Chris Masond3977122009-01-05 21:25:51 -05007520static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05007521 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04007522 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007523 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05007524{
Yan Zheng2c47e6052009-06-27 21:07:35 -04007525 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05007526 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04007527
Yan Zheng2c47e6052009-06-27 21:07:35 -04007528 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
7529 while (level < max_level && path->nodes[level]) {
7530 wc->level = level;
7531 if (path->slots[level] + 1 <
7532 btrfs_header_nritems(path->nodes[level])) {
7533 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05007534 return 0;
7535 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007536 ret = walk_up_proc(trans, root, path, wc);
7537 if (ret > 0)
7538 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05007539
Yan Zheng2c47e6052009-06-27 21:07:35 -04007540 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04007541 btrfs_tree_unlock_rw(path->nodes[level],
7542 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007543 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007544 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007545 free_extent_buffer(path->nodes[level]);
7546 path->nodes[level] = NULL;
7547 level++;
Chris Mason20524f02007-03-10 06:35:47 -05007548 }
7549 }
7550 return 1;
7551}
7552
Chris Mason9aca1d52007-03-13 11:09:37 -04007553/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04007554 * drop a subvolume tree.
7555 *
7556 * this function traverses the tree freeing any blocks that only
7557 * referenced by the tree.
7558 *
7559 * when a shared tree block is found. this function decreases its
7560 * reference count by one. if update_ref is true, this function
7561 * also make sure backrefs for the shared block and all lower level
7562 * blocks are properly updated.
David Sterba9d1a2a32013-03-12 15:13:28 +00007563 *
7564 * If called with for_reloc == 0, may exit early with -EAGAIN
Chris Mason9aca1d52007-03-13 11:09:37 -04007565 */
Jeff Mahoney2c536792011-10-03 23:22:41 -04007566int btrfs_drop_snapshot(struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007567 struct btrfs_block_rsv *block_rsv, int update_ref,
7568 int for_reloc)
Chris Mason20524f02007-03-10 06:35:47 -05007569{
Chris Mason5caf2a02007-04-02 11:20:42 -04007570 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007571 struct btrfs_trans_handle *trans;
7572 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04007573 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007574 struct walk_control *wc;
7575 struct btrfs_key key;
7576 int err = 0;
7577 int ret;
7578 int level;
Josef Bacikd29a9f62013-07-17 19:30:20 -04007579 bool root_dropped = false;
Chris Mason20524f02007-03-10 06:35:47 -05007580
Chris Mason5caf2a02007-04-02 11:20:42 -04007581 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00007582 if (!path) {
7583 err = -ENOMEM;
7584 goto out;
7585 }
Chris Mason20524f02007-03-10 06:35:47 -05007586
Yan Zheng2c47e6052009-06-27 21:07:35 -04007587 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07007588 if (!wc) {
7589 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00007590 err = -ENOMEM;
7591 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07007592 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007593
Yan, Zhenga22285a2010-05-16 10:48:46 -04007594 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007595 if (IS_ERR(trans)) {
7596 err = PTR_ERR(trans);
7597 goto out_free;
7598 }
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00007599
Yan, Zheng3fd0a552010-05-16 10:49:59 -04007600 if (block_rsv)
7601 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007602
Chris Mason9f3a7422007-08-07 15:52:19 -04007603 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007604 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007605 path->nodes[level] = btrfs_lock_root_node(root);
7606 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04007607 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04007608 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007609 memset(&wc->update_progress, 0,
7610 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04007611 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04007612 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007613 memcpy(&wc->update_progress, &key,
7614 sizeof(wc->update_progress));
7615
Chris Mason6702ed42007-08-07 16:15:09 -04007616 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007617 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04007618 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007619 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
7620 path->lowest_level = 0;
7621 if (ret < 0) {
7622 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007623 goto out_end_trans;
Chris Mason9f3a7422007-08-07 15:52:19 -04007624 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007625 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007626
Chris Mason7d9eb122008-07-08 14:19:17 -04007627 /*
7628 * unlock our path, this is safe because only this
7629 * function is allowed to delete this snapshot
7630 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007631 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04007632
Yan Zheng2c47e6052009-06-27 21:07:35 -04007633 level = btrfs_header_level(root->node);
7634 while (1) {
7635 btrfs_tree_lock(path->nodes[level]);
7636 btrfs_set_lock_blocking(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04007637 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007638
7639 ret = btrfs_lookup_extent_info(trans, root,
7640 path->nodes[level]->start,
Josef Bacik3173a182013-03-07 14:22:04 -05007641 level, 1, &wc->refs[level],
Yan Zheng2c47e6052009-06-27 21:07:35 -04007642 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007643 if (ret < 0) {
7644 err = ret;
7645 goto out_end_trans;
7646 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007647 BUG_ON(wc->refs[level] == 0);
7648
7649 if (level == root_item->drop_level)
7650 break;
7651
7652 btrfs_tree_unlock(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04007653 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007654 WARN_ON(wc->refs[level] != 1);
7655 level--;
7656 }
7657 }
7658
7659 wc->level = level;
7660 wc->shared_level = -1;
7661 wc->stage = DROP_REFERENCE;
7662 wc->update_ref = update_ref;
7663 wc->keep_locks = 0;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007664 wc->for_reloc = for_reloc;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007665 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007666
7667 while (1) {
David Sterba9d1a2a32013-03-12 15:13:28 +00007668
Yan Zheng2c47e6052009-06-27 21:07:35 -04007669 ret = walk_down_tree(trans, root, path, wc);
7670 if (ret < 0) {
7671 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04007672 break;
7673 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007674
7675 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
7676 if (ret < 0) {
7677 err = ret;
7678 break;
7679 }
7680
7681 if (ret > 0) {
7682 BUG_ON(wc->stage != DROP_REFERENCE);
7683 break;
7684 }
7685
7686 if (wc->stage == DROP_REFERENCE) {
7687 level = wc->level;
7688 btrfs_node_key(path->nodes[level],
7689 &root_item->drop_progress,
7690 path->slots[level]);
7691 root_item->drop_level = level;
7692 }
7693
7694 BUG_ON(wc->level == 0);
Josef Bacik3c8f2422013-07-15 11:57:06 -04007695 if (btrfs_should_end_transaction(trans, tree_root) ||
7696 (!for_reloc && btrfs_need_cleaner_sleep(root))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007697 ret = btrfs_update_root(trans, tree_root,
7698 &root->root_key,
7699 root_item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007700 if (ret) {
7701 btrfs_abort_transaction(trans, tree_root, ret);
7702 err = ret;
7703 goto out_end_trans;
7704 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007705
Yan, Zheng3fd0a552010-05-16 10:49:59 -04007706 btrfs_end_transaction_throttle(trans, tree_root);
Josef Bacik3c8f2422013-07-15 11:57:06 -04007707 if (!for_reloc && btrfs_need_cleaner_sleep(root)) {
7708 pr_debug("btrfs: drop snapshot early exit\n");
7709 err = -EAGAIN;
7710 goto out_free;
7711 }
7712
Yan, Zhenga22285a2010-05-16 10:48:46 -04007713 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007714 if (IS_ERR(trans)) {
7715 err = PTR_ERR(trans);
7716 goto out_free;
7717 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04007718 if (block_rsv)
7719 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04007720 }
Chris Mason20524f02007-03-10 06:35:47 -05007721 }
David Sterbab3b4aa72011-04-21 01:20:15 +02007722 btrfs_release_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007723 if (err)
7724 goto out_end_trans;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007725
7726 ret = btrfs_del_root(trans, tree_root, &root->root_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007727 if (ret) {
7728 btrfs_abort_transaction(trans, tree_root, ret);
7729 goto out_end_trans;
7730 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007731
Yan, Zheng76dda932009-09-21 16:00:26 -04007732 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Miao Xiecb517ea2013-05-15 07:48:19 +00007733 ret = btrfs_find_root(tree_root, &root->root_key, path,
7734 NULL, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007735 if (ret < 0) {
7736 btrfs_abort_transaction(trans, tree_root, ret);
7737 err = ret;
7738 goto out_end_trans;
7739 } else if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05007740 /* if we fail to delete the orphan item this time
7741 * around, it'll get picked up the next time.
7742 *
7743 * The most common failure here is just -ENOENT.
7744 */
7745 btrfs_del_orphan_item(trans, tree_root,
7746 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04007747 }
7748 }
7749
7750 if (root->in_radix) {
Miao Xiecb517ea2013-05-15 07:48:19 +00007751 btrfs_drop_and_free_fs_root(tree_root->fs_info, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04007752 } else {
7753 free_extent_buffer(root->node);
7754 free_extent_buffer(root->commit_root);
Miao Xieb0feb9d2013-05-15 07:48:20 +00007755 btrfs_put_fs_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04007756 }
Josef Bacikd29a9f62013-07-17 19:30:20 -04007757 root_dropped = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007758out_end_trans:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04007759 btrfs_end_transaction_throttle(trans, tree_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007760out_free:
Yan Zheng2c47e6052009-06-27 21:07:35 -04007761 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04007762 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00007763out:
Josef Bacikd29a9f62013-07-17 19:30:20 -04007764 /*
7765 * So if we need to stop dropping the snapshot for whatever reason we
7766 * need to make sure to add it back to the dead root list so that we
7767 * keep trying to do the work later. This also cleans up roots if we
7768 * don't have it in the radix (like when we recover after a power fail
7769 * or unmount) so we don't leak memory.
7770 */
Josef Bacikb37b39c2013-07-23 16:57:15 -04007771 if (!for_reloc && root_dropped == false)
Josef Bacikd29a9f62013-07-17 19:30:20 -04007772 btrfs_add_dead_root(root);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00007773 if (err)
7774 btrfs_std_error(root->fs_info, err);
Jeff Mahoney2c536792011-10-03 23:22:41 -04007775 return err;
Chris Mason20524f02007-03-10 06:35:47 -05007776}
Chris Mason9078a3e2007-04-26 16:46:15 -04007777
Yan Zheng2c47e6052009-06-27 21:07:35 -04007778/*
7779 * drop subtree rooted at tree block 'node'.
7780 *
7781 * NOTE: this function will unlock and release tree block 'node'
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007782 * only used by relocation code
Yan Zheng2c47e6052009-06-27 21:07:35 -04007783 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04007784int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
7785 struct btrfs_root *root,
7786 struct extent_buffer *node,
7787 struct extent_buffer *parent)
7788{
7789 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007790 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007791 int level;
7792 int parent_level;
7793 int ret = 0;
7794 int wret;
7795
Yan Zheng2c47e6052009-06-27 21:07:35 -04007796 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
7797
Yan Zhengf82d02d2008-10-29 14:49:05 -04007798 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00007799 if (!path)
7800 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007801
Yan Zheng2c47e6052009-06-27 21:07:35 -04007802 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00007803 if (!wc) {
7804 btrfs_free_path(path);
7805 return -ENOMEM;
7806 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007807
Chris Masonb9447ef82009-03-09 11:45:38 -04007808 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007809 parent_level = btrfs_header_level(parent);
7810 extent_buffer_get(parent);
7811 path->nodes[parent_level] = parent;
7812 path->slots[parent_level] = btrfs_header_nritems(parent);
7813
Chris Masonb9447ef82009-03-09 11:45:38 -04007814 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007815 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007816 path->nodes[level] = node;
7817 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04007818 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007819
7820 wc->refs[parent_level] = 1;
7821 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
7822 wc->level = level;
7823 wc->shared_level = -1;
7824 wc->stage = DROP_REFERENCE;
7825 wc->update_ref = 0;
7826 wc->keep_locks = 1;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007827 wc->for_reloc = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007828 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007829
7830 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007831 wret = walk_down_tree(trans, root, path, wc);
7832 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04007833 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007834 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007835 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04007836
Yan Zheng2c47e6052009-06-27 21:07:35 -04007837 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007838 if (wret < 0)
7839 ret = wret;
7840 if (wret != 0)
7841 break;
7842 }
7843
Yan Zheng2c47e6052009-06-27 21:07:35 -04007844 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007845 btrfs_free_path(path);
7846 return ret;
7847}
7848
Chris Masonec44a352008-04-28 15:29:52 -04007849static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
7850{
7851 u64 num_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03007852 u64 stripped;
Chris Masonec44a352008-04-28 15:29:52 -04007853
Ilya Dryomovfc67c452012-03-27 17:09:17 +03007854 /*
7855 * if restripe for this chunk_type is on pick target profile and
7856 * return, otherwise do the usual balance
7857 */
7858 stripped = get_restripe_target(root->fs_info, flags);
7859 if (stripped)
7860 return extended_to_chunk(stripped);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02007861
Chris Masoncd02dca2010-12-13 14:56:23 -05007862 /*
7863 * we add in the count of missing devices because we want
7864 * to make sure that any RAID levels on a degraded FS
7865 * continue to be honored.
7866 */
7867 num_devices = root->fs_info->fs_devices->rw_devices +
7868 root->fs_info->fs_devices->missing_devices;
7869
Ilya Dryomovfc67c452012-03-27 17:09:17 +03007870 stripped = BTRFS_BLOCK_GROUP_RAID0 |
David Woodhouse53b381b2013-01-29 18:40:14 -05007871 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
Ilya Dryomovfc67c452012-03-27 17:09:17 +03007872 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
7873
Chris Masonec44a352008-04-28 15:29:52 -04007874 if (num_devices == 1) {
7875 stripped |= BTRFS_BLOCK_GROUP_DUP;
7876 stripped = flags & ~stripped;
7877
7878 /* turn raid0 into single device chunks */
7879 if (flags & BTRFS_BLOCK_GROUP_RAID0)
7880 return stripped;
7881
7882 /* turn mirroring into duplication */
7883 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
7884 BTRFS_BLOCK_GROUP_RAID10))
7885 return stripped | BTRFS_BLOCK_GROUP_DUP;
Chris Masonec44a352008-04-28 15:29:52 -04007886 } else {
7887 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04007888 if (flags & stripped)
7889 return flags;
7890
7891 stripped |= BTRFS_BLOCK_GROUP_DUP;
7892 stripped = flags & ~stripped;
7893
7894 /* switch duplicated blocks with raid1 */
7895 if (flags & BTRFS_BLOCK_GROUP_DUP)
7896 return stripped | BTRFS_BLOCK_GROUP_RAID1;
7897
Ilya Dryomove3176ca2012-03-27 17:09:16 +03007898 /* this is drive concat, leave it alone */
Chris Masonec44a352008-04-28 15:29:52 -04007899 }
Ilya Dryomove3176ca2012-03-27 17:09:16 +03007900
Chris Masonec44a352008-04-28 15:29:52 -04007901 return flags;
7902}
7903
Miao Xie199c36e2011-07-15 10:34:36 +00007904static int set_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04007905{
Yan, Zhengf0486c62010-05-16 10:46:25 -04007906 struct btrfs_space_info *sinfo = cache->space_info;
7907 u64 num_bytes;
Miao Xie199c36e2011-07-15 10:34:36 +00007908 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007909 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04007910
Chris Masonc286ac42008-07-22 23:06:41 -04007911
Miao Xie199c36e2011-07-15 10:34:36 +00007912 /*
7913 * We need some metadata space and system metadata space for
7914 * allocating chunks in some corner cases until we force to set
7915 * it to be readonly.
7916 */
7917 if ((sinfo->flags &
7918 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
7919 !force)
7920 min_allocable_bytes = 1 * 1024 * 1024;
7921 else
7922 min_allocable_bytes = 0;
7923
Yan, Zhengf0486c62010-05-16 10:46:25 -04007924 spin_lock(&sinfo->lock);
7925 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00007926
7927 if (cache->ro) {
7928 ret = 0;
7929 goto out;
7930 }
7931
Yan, Zhengf0486c62010-05-16 10:46:25 -04007932 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
7933 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04007934
Yan, Zhengf0486c62010-05-16 10:46:25 -04007935 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
Josef Bacik37be25b2011-08-05 10:25:38 -04007936 sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes +
7937 min_allocable_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04007938 sinfo->bytes_readonly += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007939 cache->ro = 1;
7940 ret = 0;
7941 }
WuBo61cfea92011-07-26 03:30:11 +00007942out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04007943 spin_unlock(&cache->lock);
7944 spin_unlock(&sinfo->lock);
7945 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04007946}
7947
Yan, Zhengf0486c62010-05-16 10:46:25 -04007948int btrfs_set_block_group_ro(struct btrfs_root *root,
7949 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007950
7951{
Yan, Zhengf0486c62010-05-16 10:46:25 -04007952 struct btrfs_trans_handle *trans;
7953 u64 alloc_flags;
7954 int ret;
7955
7956 BUG_ON(cache->ro);
7957
Josef Bacik7a7eaa42011-04-13 12:54:33 -04007958 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007959 if (IS_ERR(trans))
7960 return PTR_ERR(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007961
7962 alloc_flags = update_block_group_flags(root, cache->flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007963 if (alloc_flags != cache->flags) {
Josef Bacik698d0082012-09-12 14:08:47 -04007964 ret = do_chunk_alloc(trans, root, alloc_flags,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007965 CHUNK_ALLOC_FORCE);
7966 if (ret < 0)
7967 goto out;
7968 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04007969
Miao Xie199c36e2011-07-15 10:34:36 +00007970 ret = set_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007971 if (!ret)
7972 goto out;
7973 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
Josef Bacik698d0082012-09-12 14:08:47 -04007974 ret = do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04007975 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007976 if (ret < 0)
7977 goto out;
Miao Xie199c36e2011-07-15 10:34:36 +00007978 ret = set_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007979out:
7980 btrfs_end_transaction(trans, root);
7981 return ret;
7982}
7983
Chris Masonc87f08c2011-02-16 13:57:04 -05007984int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
7985 struct btrfs_root *root, u64 type)
7986{
7987 u64 alloc_flags = get_alloc_profile(root, type);
Josef Bacik698d0082012-09-12 14:08:47 -04007988 return do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04007989 CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05007990}
7991
Miao Xie6d07bce2011-01-05 10:07:31 +00007992/*
7993 * helper to account the unused space of all the readonly block group in the
7994 * list. takes mirrors into account.
7995 */
7996static u64 __btrfs_get_ro_block_group_free_space(struct list_head *groups_list)
7997{
7998 struct btrfs_block_group_cache *block_group;
7999 u64 free_bytes = 0;
8000 int factor;
8001
8002 list_for_each_entry(block_group, groups_list, list) {
8003 spin_lock(&block_group->lock);
8004
8005 if (!block_group->ro) {
8006 spin_unlock(&block_group->lock);
8007 continue;
8008 }
8009
8010 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
8011 BTRFS_BLOCK_GROUP_RAID10 |
8012 BTRFS_BLOCK_GROUP_DUP))
8013 factor = 2;
8014 else
8015 factor = 1;
8016
8017 free_bytes += (block_group->key.offset -
8018 btrfs_block_group_used(&block_group->item)) *
8019 factor;
8020
8021 spin_unlock(&block_group->lock);
8022 }
8023
8024 return free_bytes;
8025}
8026
8027/*
8028 * helper to account the unused space of all the readonly block group in the
8029 * space_info. takes mirrors into account.
8030 */
8031u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
8032{
8033 int i;
8034 u64 free_bytes = 0;
8035
8036 spin_lock(&sinfo->lock);
8037
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05308038 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
Miao Xie6d07bce2011-01-05 10:07:31 +00008039 if (!list_empty(&sinfo->block_groups[i]))
8040 free_bytes += __btrfs_get_ro_block_group_free_space(
8041 &sinfo->block_groups[i]);
8042
8043 spin_unlock(&sinfo->lock);
8044
8045 return free_bytes;
8046}
8047
Jeff Mahoney143bede2012-03-01 14:56:26 +01008048void btrfs_set_block_group_rw(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04008049 struct btrfs_block_group_cache *cache)
8050{
8051 struct btrfs_space_info *sinfo = cache->space_info;
8052 u64 num_bytes;
8053
8054 BUG_ON(!cache->ro);
8055
8056 spin_lock(&sinfo->lock);
8057 spin_lock(&cache->lock);
8058 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8059 cache->bytes_super - btrfs_block_group_used(&cache->item);
8060 sinfo->bytes_readonly -= num_bytes;
8061 cache->ro = 0;
8062 spin_unlock(&cache->lock);
8063 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008064}
8065
Josef Bacikba1bf482009-09-11 16:11:19 -04008066/*
8067 * checks to see if its even possible to relocate this block group.
8068 *
8069 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
8070 * ok to go ahead and try.
8071 */
8072int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04008073{
Zheng Yan1a40e232008-09-26 10:09:34 -04008074 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04008075 struct btrfs_space_info *space_info;
8076 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
8077 struct btrfs_device *device;
Josef Bacik6df9a952013-06-27 13:22:46 -04008078 struct btrfs_trans_handle *trans;
liubocdcb7252011-08-03 10:15:25 +00008079 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04008080 u64 dev_min = 1;
8081 u64 dev_nr = 0;
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008082 u64 target;
liubocdcb7252011-08-03 10:15:25 +00008083 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04008084 int full = 0;
8085 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05008086
Josef Bacikba1bf482009-09-11 16:11:19 -04008087 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04008088
Josef Bacikba1bf482009-09-11 16:11:19 -04008089 /* odd, couldn't find the block group, leave it alone */
8090 if (!block_group)
8091 return -1;
Chris Masonedbd8d42007-12-21 16:27:24 -05008092
liubocdcb7252011-08-03 10:15:25 +00008093 min_free = btrfs_block_group_used(&block_group->item);
8094
Josef Bacikba1bf482009-09-11 16:11:19 -04008095 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00008096 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04008097 goto out;
Chris Mason323da792008-05-09 11:46:48 -04008098
Josef Bacikba1bf482009-09-11 16:11:19 -04008099 space_info = block_group->space_info;
8100 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04008101
Josef Bacikba1bf482009-09-11 16:11:19 -04008102 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04008103
Josef Bacikba1bf482009-09-11 16:11:19 -04008104 /*
8105 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04008106 * relocate it unless we're able to allocate a new chunk below.
8107 *
8108 * Otherwise, we need to make sure we have room in the space to handle
8109 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04008110 */
Chris Mason7ce618d2009-09-22 14:48:44 -04008111 if ((space_info->total_bytes != block_group->key.offset) &&
liubocdcb7252011-08-03 10:15:25 +00008112 (space_info->bytes_used + space_info->bytes_reserved +
8113 space_info->bytes_pinned + space_info->bytes_readonly +
8114 min_free < space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04008115 spin_unlock(&space_info->lock);
8116 goto out;
8117 }
8118 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008119
Josef Bacikba1bf482009-09-11 16:11:19 -04008120 /*
8121 * ok we don't have enough space, but maybe we have free space on our
8122 * devices to allocate new chunks for relocation, so loop through our
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008123 * alloc devices and guess if we have enough space. if this block
8124 * group is going to be restriped, run checks against the target
8125 * profile instead of the current one.
Josef Bacikba1bf482009-09-11 16:11:19 -04008126 */
8127 ret = -1;
Chris Mason4313b392008-01-03 09:08:48 -05008128
liubocdcb7252011-08-03 10:15:25 +00008129 /*
8130 * index:
8131 * 0: raid10
8132 * 1: raid1
8133 * 2: dup
8134 * 3: raid0
8135 * 4: single
8136 */
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008137 target = get_restripe_target(root->fs_info, block_group->flags);
8138 if (target) {
Liu Bo31e50222012-11-21 14:18:10 +00008139 index = __get_raid_index(extended_to_chunk(target));
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008140 } else {
8141 /*
8142 * this is just a balance, so if we were marked as full
8143 * we know there is no space for a new chunk
8144 */
8145 if (full)
8146 goto out;
8147
8148 index = get_block_group_index(block_group);
8149 }
8150
Miao Xiee6ec7162013-01-17 05:38:51 +00008151 if (index == BTRFS_RAID_RAID10) {
liubocdcb7252011-08-03 10:15:25 +00008152 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04008153 /* Divide by 2 */
8154 min_free >>= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00008155 } else if (index == BTRFS_RAID_RAID1) {
liubocdcb7252011-08-03 10:15:25 +00008156 dev_min = 2;
Miao Xiee6ec7162013-01-17 05:38:51 +00008157 } else if (index == BTRFS_RAID_DUP) {
Josef Bacik6719db62011-08-20 08:29:51 -04008158 /* Multiply by 2 */
8159 min_free <<= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00008160 } else if (index == BTRFS_RAID_RAID0) {
liubocdcb7252011-08-03 10:15:25 +00008161 dev_min = fs_devices->rw_devices;
Josef Bacik6719db62011-08-20 08:29:51 -04008162 do_div(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00008163 }
8164
Josef Bacik6df9a952013-06-27 13:22:46 -04008165 /* We need to do this so that we can look at pending chunks */
8166 trans = btrfs_join_transaction(root);
8167 if (IS_ERR(trans)) {
8168 ret = PTR_ERR(trans);
8169 goto out;
8170 }
8171
Josef Bacikba1bf482009-09-11 16:11:19 -04008172 mutex_lock(&root->fs_info->chunk_mutex);
8173 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00008174 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04008175
Josef Bacikba1bf482009-09-11 16:11:19 -04008176 /*
8177 * check to make sure we can actually find a chunk with enough
8178 * space to fit our block group in.
8179 */
Stefan Behrens63a212a2012-11-05 18:29:28 +01008180 if (device->total_bytes > device->bytes_used + min_free &&
8181 !device->is_tgtdev_for_dev_replace) {
Josef Bacik6df9a952013-06-27 13:22:46 -04008182 ret = find_free_dev_extent(trans, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00008183 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04008184 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00008185 dev_nr++;
8186
8187 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05008188 break;
liubocdcb7252011-08-03 10:15:25 +00008189
Josef Bacikba1bf482009-09-11 16:11:19 -04008190 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05008191 }
Chris Masonedbd8d42007-12-21 16:27:24 -05008192 }
Josef Bacikba1bf482009-09-11 16:11:19 -04008193 mutex_unlock(&root->fs_info->chunk_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04008194 btrfs_end_transaction(trans, root);
Chris Masonedbd8d42007-12-21 16:27:24 -05008195out:
Josef Bacikba1bf482009-09-11 16:11:19 -04008196 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05008197 return ret;
8198}
8199
Christoph Hellwigb2950862008-12-02 09:54:17 -05008200static int find_first_block_group(struct btrfs_root *root,
8201 struct btrfs_path *path, struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04008202{
Chris Mason925baed2008-06-25 16:01:30 -04008203 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04008204 struct btrfs_key found_key;
8205 struct extent_buffer *leaf;
8206 int slot;
8207
8208 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
8209 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008210 goto out;
8211
Chris Masond3977122009-01-05 21:25:51 -05008212 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04008213 slot = path->slots[0];
8214 leaf = path->nodes[0];
8215 if (slot >= btrfs_header_nritems(leaf)) {
8216 ret = btrfs_next_leaf(root, path);
8217 if (ret == 0)
8218 continue;
8219 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008220 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04008221 break;
8222 }
8223 btrfs_item_key_to_cpu(leaf, &found_key, slot);
8224
8225 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04008226 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
8227 ret = 0;
8228 goto out;
8229 }
Chris Mason0b86a832008-03-24 15:01:56 -04008230 path->slots[0]++;
8231 }
Chris Mason925baed2008-06-25 16:01:30 -04008232out:
Chris Mason0b86a832008-03-24 15:01:56 -04008233 return ret;
8234}
8235
Josef Bacik0af3d002010-06-21 14:48:16 -04008236void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
8237{
8238 struct btrfs_block_group_cache *block_group;
8239 u64 last = 0;
8240
8241 while (1) {
8242 struct inode *inode;
8243
8244 block_group = btrfs_lookup_first_block_group(info, last);
8245 while (block_group) {
8246 spin_lock(&block_group->lock);
8247 if (block_group->iref)
8248 break;
8249 spin_unlock(&block_group->lock);
8250 block_group = next_block_group(info->tree_root,
8251 block_group);
8252 }
8253 if (!block_group) {
8254 if (last == 0)
8255 break;
8256 last = 0;
8257 continue;
8258 }
8259
8260 inode = block_group->inode;
8261 block_group->iref = 0;
8262 block_group->inode = NULL;
8263 spin_unlock(&block_group->lock);
8264 iput(inode);
8265 last = block_group->key.objectid + block_group->key.offset;
8266 btrfs_put_block_group(block_group);
8267 }
8268}
8269
Zheng Yan1a40e232008-09-26 10:09:34 -04008270int btrfs_free_block_groups(struct btrfs_fs_info *info)
8271{
8272 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04008273 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04008274 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04008275 struct rb_node *n;
8276
Yan Zheng11833d62009-09-11 16:11:19 -04008277 down_write(&info->extent_commit_sem);
8278 while (!list_empty(&info->caching_block_groups)) {
8279 caching_ctl = list_entry(info->caching_block_groups.next,
8280 struct btrfs_caching_control, list);
8281 list_del(&caching_ctl->list);
8282 put_caching_control(caching_ctl);
8283 }
8284 up_write(&info->extent_commit_sem);
8285
Zheng Yan1a40e232008-09-26 10:09:34 -04008286 spin_lock(&info->block_group_cache_lock);
8287 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
8288 block_group = rb_entry(n, struct btrfs_block_group_cache,
8289 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04008290 rb_erase(&block_group->cache_node,
8291 &info->block_group_cache_tree);
Yan Zhengd899e052008-10-30 14:25:28 -04008292 spin_unlock(&info->block_group_cache_lock);
8293
Josef Bacik80eb2342008-10-29 14:49:05 -04008294 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04008295 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04008296 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05008297
Josef Bacik817d52f2009-07-13 21:29:25 -04008298 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04008299 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04008300
Josef Bacik3c148742011-02-02 15:53:47 +00008301 /*
8302 * We haven't cached this block group, which means we could
8303 * possibly have excluded extents on this block group.
8304 */
Josef Bacik36cce922013-08-05 11:15:21 -04008305 if (block_group->cached == BTRFS_CACHE_NO ||
8306 block_group->cached == BTRFS_CACHE_ERROR)
Josef Bacik3c148742011-02-02 15:53:47 +00008307 free_excluded_extents(info->extent_root, block_group);
8308
Josef Bacik817d52f2009-07-13 21:29:25 -04008309 btrfs_remove_free_space_cache(block_group);
Josef Bacik11dfe352009-11-13 20:12:59 +00008310 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04008311
8312 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008313 }
8314 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -04008315
8316 /* now that all the block groups are freed, go through and
8317 * free all the space_info structs. This is only called during
8318 * the final stages of unmount, and so we know nobody is
8319 * using them. We call synchronize_rcu() once before we start,
8320 * just to be on the safe side.
8321 */
8322 synchronize_rcu();
8323
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04008324 release_global_block_rsv(info);
8325
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05308326 while (!list_empty(&info->space_info)) {
Chris Mason4184ea72009-03-10 12:39:20 -04008327 space_info = list_entry(info->space_info.next,
8328 struct btrfs_space_info,
8329 list);
David Sterbab069e0c2013-02-08 21:28:17 +00008330 if (btrfs_test_opt(info->tree_root, ENOSPC_DEBUG)) {
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05308331 if (WARN_ON(space_info->bytes_pinned > 0 ||
David Sterbab069e0c2013-02-08 21:28:17 +00008332 space_info->bytes_reserved > 0 ||
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05308333 space_info->bytes_may_use > 0)) {
David Sterbab069e0c2013-02-08 21:28:17 +00008334 dump_space_info(space_info, 0, 0);
8335 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008336 }
Josef Bacikb150a4f2013-06-19 15:00:04 -04008337 percpu_counter_destroy(&space_info->total_bytes_pinned);
Chris Mason4184ea72009-03-10 12:39:20 -04008338 list_del(&space_info->list);
8339 kfree(space_info);
8340 }
Zheng Yan1a40e232008-09-26 10:09:34 -04008341 return 0;
8342}
8343
Yan, Zhengb742bb822010-05-16 10:46:24 -04008344static void __link_block_group(struct btrfs_space_info *space_info,
8345 struct btrfs_block_group_cache *cache)
8346{
8347 int index = get_block_group_index(cache);
8348
8349 down_write(&space_info->groups_sem);
8350 list_add_tail(&cache->list, &space_info->block_groups[index]);
8351 up_write(&space_info->groups_sem);
8352}
8353
Chris Mason9078a3e2007-04-26 16:46:15 -04008354int btrfs_read_block_groups(struct btrfs_root *root)
8355{
8356 struct btrfs_path *path;
8357 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04008358 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04008359 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04008360 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04008361 struct btrfs_key key;
8362 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04008363 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -04008364 int need_clear = 0;
8365 u64 cache_gen;
Chris Mason96b51792007-10-15 16:15:19 -04008366
Chris Masonbe744172007-05-06 10:15:01 -04008367 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04008368 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04008369 key.offset = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04008370 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason9078a3e2007-04-26 16:46:15 -04008371 path = btrfs_alloc_path();
8372 if (!path)
8373 return -ENOMEM;
Josef Bacik026fd312011-05-13 10:32:11 -04008374 path->reada = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04008375
David Sterba6c417612011-04-13 15:41:04 +02008376 cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
Josef Bacik73bc1872011-10-03 14:07:49 -04008377 if (btrfs_test_opt(root, SPACE_CACHE) &&
David Sterba6c417612011-04-13 15:41:04 +02008378 btrfs_super_generation(root->fs_info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -04008379 need_clear = 1;
Josef Bacik88c2ba32010-09-21 14:21:34 -04008380 if (btrfs_test_opt(root, CLEAR_CACHE))
8381 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -04008382
Chris Masond3977122009-01-05 21:25:51 -05008383 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04008384 ret = find_first_block_group(root, path, &key);
Yan, Zhengb742bb822010-05-16 10:46:24 -04008385 if (ret > 0)
8386 break;
Chris Mason0b86a832008-03-24 15:01:56 -04008387 if (ret != 0)
8388 goto error;
Chris Mason5f39d392007-10-15 16:14:19 -04008389 leaf = path->nodes[0];
8390 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason8f18cf12008-04-25 16:53:30 -04008391 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04008392 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04008393 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008394 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04008395 }
Li Zefan34d52cb2011-03-29 13:46:06 +08008396 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
8397 GFP_NOFS);
8398 if (!cache->free_space_ctl) {
8399 kfree(cache);
8400 ret = -ENOMEM;
8401 goto error;
8402 }
Chris Mason3e1ad542007-05-07 20:03:49 -04008403
Yan Zhengd2fb3432008-12-11 16:30:39 -05008404 atomic_set(&cache->count, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04008405 spin_lock_init(&cache->lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04008406 cache->fs_info = info;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008407 INIT_LIST_HEAD(&cache->list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04008408 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik96303082009-07-13 21:29:25 -04008409
Liu Bocf7c1ef2012-07-06 03:31:34 -06008410 if (need_clear) {
8411 /*
8412 * When we mount with old space cache, we need to
8413 * set BTRFS_DC_CLEAR and set dirty flag.
8414 *
8415 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
8416 * truncate the old free space cache inode and
8417 * setup a new one.
8418 * b) Setting 'dirty flag' makes sure that we flush
8419 * the new space cache info onto disk.
8420 */
Josef Bacik0af3d002010-06-21 14:48:16 -04008421 cache->disk_cache_state = BTRFS_DC_CLEAR;
Liu Bocf7c1ef2012-07-06 03:31:34 -06008422 if (btrfs_test_opt(root, SPACE_CACHE))
8423 cache->dirty = 1;
8424 }
Josef Bacik0af3d002010-06-21 14:48:16 -04008425
Chris Mason5f39d392007-10-15 16:14:19 -04008426 read_extent_buffer(leaf, &cache->item,
8427 btrfs_item_ptr_offset(leaf, path->slots[0]),
8428 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04008429 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Mason0b86a832008-03-24 15:01:56 -04008430
Chris Mason9078a3e2007-04-26 16:46:15 -04008431 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +02008432 btrfs_release_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04008433 cache->flags = btrfs_block_group_flags(&cache->item);
Josef Bacik817d52f2009-07-13 21:29:25 -04008434 cache->sectorsize = root->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05008435 cache->full_stripe_len = btrfs_full_stripe_len(root,
8436 &root->fs_info->mapping_tree,
8437 found_key.objectid);
Li Zefan34d52cb2011-03-29 13:46:06 +08008438 btrfs_init_free_space_ctl(cache);
8439
Josef Bacik817d52f2009-07-13 21:29:25 -04008440 /*
Josef Bacik3c148742011-02-02 15:53:47 +00008441 * We need to exclude the super stripes now so that the space
8442 * info has super bytes accounted for, otherwise we'll think
8443 * we have more space than we actually do.
8444 */
Josef Bacik835d9742013-03-19 12:13:25 -04008445 ret = exclude_super_stripes(root, cache);
8446 if (ret) {
8447 /*
8448 * We may have excluded something, so call this just in
8449 * case.
8450 */
8451 free_excluded_extents(root, cache);
8452 kfree(cache->free_space_ctl);
8453 kfree(cache);
8454 goto error;
8455 }
Josef Bacik3c148742011-02-02 15:53:47 +00008456
8457 /*
Josef Bacik817d52f2009-07-13 21:29:25 -04008458 * check for two cases, either we are full, and therefore
8459 * don't need to bother with the caching work since we won't
8460 * find any space, or we are empty, and we can just add all
8461 * the space in and be done with it. This saves us _alot_ of
8462 * time, particularly in the full case.
8463 */
8464 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -04008465 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008466 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik1b2da372009-09-11 16:11:20 -04008467 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04008468 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -04008469 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008470 cache->cached = BTRFS_CACHE_FINISHED;
8471 add_new_free_space(cache, root->fs_info,
8472 found_key.objectid,
8473 found_key.objectid +
8474 found_key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -04008475 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04008476 }
Chris Mason96b51792007-10-15 16:15:19 -04008477
Josef Bacik8c579fe2013-04-02 12:40:42 -04008478 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8479 if (ret) {
8480 btrfs_remove_free_space_cache(cache);
8481 btrfs_put_block_group(cache);
8482 goto error;
8483 }
8484
Chris Mason6324fbf2008-03-24 15:01:59 -04008485 ret = update_space_info(info, cache->flags, found_key.offset,
8486 btrfs_block_group_used(&cache->item),
8487 &space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -04008488 if (ret) {
8489 btrfs_remove_free_space_cache(cache);
8490 spin_lock(&info->block_group_cache_lock);
8491 rb_erase(&cache->cache_node,
8492 &info->block_group_cache_tree);
8493 spin_unlock(&info->block_group_cache_lock);
8494 btrfs_put_block_group(cache);
8495 goto error;
8496 }
8497
Chris Mason6324fbf2008-03-24 15:01:59 -04008498 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -04008499 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008500 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04008501 spin_unlock(&cache->space_info->lock);
8502
Yan, Zhengb742bb822010-05-16 10:46:24 -04008503 __link_block_group(space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04008504
Chris Mason75ccf472008-09-30 19:24:06 -04008505 set_avail_alloc_bits(root->fs_info, cache->flags);
Yan Zheng2b820322008-11-17 21:11:30 -05008506 if (btrfs_chunk_readonly(root, cache->key.objectid))
Miao Xie199c36e2011-07-15 10:34:36 +00008507 set_block_group_ro(cache, 1);
Chris Mason9078a3e2007-04-26 16:46:15 -04008508 }
Yan, Zhengb742bb822010-05-16 10:46:24 -04008509
8510 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
8511 if (!(get_alloc_profile(root, space_info->flags) &
8512 (BTRFS_BLOCK_GROUP_RAID10 |
8513 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05008514 BTRFS_BLOCK_GROUP_RAID5 |
8515 BTRFS_BLOCK_GROUP_RAID6 |
Yan, Zhengb742bb822010-05-16 10:46:24 -04008516 BTRFS_BLOCK_GROUP_DUP)))
8517 continue;
8518 /*
8519 * avoid allocating from un-mirrored block group if there are
8520 * mirrored block groups.
8521 */
chandan1095cc02013-07-16 12:28:56 +05308522 list_for_each_entry(cache,
8523 &space_info->block_groups[BTRFS_RAID_RAID0],
8524 list)
Miao Xie199c36e2011-07-15 10:34:36 +00008525 set_block_group_ro(cache, 1);
chandan1095cc02013-07-16 12:28:56 +05308526 list_for_each_entry(cache,
8527 &space_info->block_groups[BTRFS_RAID_SINGLE],
8528 list)
Miao Xie199c36e2011-07-15 10:34:36 +00008529 set_block_group_ro(cache, 1);
Yan, Zhengb742bb822010-05-16 10:46:24 -04008530 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008531
8532 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -04008533 ret = 0;
8534error:
Chris Mason9078a3e2007-04-26 16:46:15 -04008535 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04008536 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04008537}
Chris Mason6324fbf2008-03-24 15:01:59 -04008538
Josef Bacikea658ba2012-09-11 16:57:25 -04008539void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans,
8540 struct btrfs_root *root)
8541{
8542 struct btrfs_block_group_cache *block_group, *tmp;
8543 struct btrfs_root *extent_root = root->fs_info->extent_root;
8544 struct btrfs_block_group_item item;
8545 struct btrfs_key key;
8546 int ret = 0;
8547
8548 list_for_each_entry_safe(block_group, tmp, &trans->new_bgs,
8549 new_bg_list) {
8550 list_del_init(&block_group->new_bg_list);
8551
8552 if (ret)
8553 continue;
8554
8555 spin_lock(&block_group->lock);
8556 memcpy(&item, &block_group->item, sizeof(item));
8557 memcpy(&key, &block_group->key, sizeof(key));
8558 spin_unlock(&block_group->lock);
8559
8560 ret = btrfs_insert_item(trans, extent_root, &key, &item,
8561 sizeof(item));
8562 if (ret)
8563 btrfs_abort_transaction(trans, extent_root, ret);
Josef Bacik6df9a952013-06-27 13:22:46 -04008564 ret = btrfs_finish_chunk_alloc(trans, extent_root,
8565 key.objectid, key.offset);
8566 if (ret)
8567 btrfs_abort_transaction(trans, extent_root, ret);
Josef Bacikea658ba2012-09-11 16:57:25 -04008568 }
8569}
8570
Chris Mason6324fbf2008-03-24 15:01:59 -04008571int btrfs_make_block_group(struct btrfs_trans_handle *trans,
8572 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04008573 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04008574 u64 size)
8575{
8576 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04008577 struct btrfs_root *extent_root;
8578 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -04008579
8580 extent_root = root->fs_info->extent_root;
Chris Mason6324fbf2008-03-24 15:01:59 -04008581
Chris Mason12fcfd22009-03-24 10:24:20 -04008582 root->fs_info->last_trans_log_full_commit = trans->transid;
Chris Masone02119d2008-09-05 16:13:11 -04008583
Chris Mason8f18cf12008-04-25 16:53:30 -04008584 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008585 if (!cache)
8586 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +08008587 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
8588 GFP_NOFS);
8589 if (!cache->free_space_ctl) {
8590 kfree(cache);
8591 return -ENOMEM;
8592 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04008593
Chris Masone17cade2008-04-15 15:41:47 -04008594 cache->key.objectid = chunk_offset;
Chris Mason6324fbf2008-03-24 15:01:59 -04008595 cache->key.offset = size;
Yan Zhengd2fb3432008-12-11 16:30:39 -05008596 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Josef Bacik96303082009-07-13 21:29:25 -04008597 cache->sectorsize = root->sectorsize;
Josef Bacik0af3d002010-06-21 14:48:16 -04008598 cache->fs_info = root->fs_info;
David Woodhouse53b381b2013-01-29 18:40:14 -05008599 cache->full_stripe_len = btrfs_full_stripe_len(root,
8600 &root->fs_info->mapping_tree,
8601 chunk_offset);
Josef Bacik96303082009-07-13 21:29:25 -04008602
Yan Zhengd2fb3432008-12-11 16:30:39 -05008603 atomic_set(&cache->count, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04008604 spin_lock_init(&cache->lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008605 INIT_LIST_HEAD(&cache->list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04008606 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacikea658ba2012-09-11 16:57:25 -04008607 INIT_LIST_HEAD(&cache->new_bg_list);
Chris Mason0ef3e662008-05-24 14:04:53 -04008608
Li Zefan34d52cb2011-03-29 13:46:06 +08008609 btrfs_init_free_space_ctl(cache);
8610
Chris Mason6324fbf2008-03-24 15:01:59 -04008611 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04008612 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
8613 cache->flags = type;
8614 btrfs_set_block_group_flags(&cache->item, type);
8615
Yan Zheng11833d62009-09-11 16:11:19 -04008616 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008617 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik835d9742013-03-19 12:13:25 -04008618 ret = exclude_super_stripes(root, cache);
8619 if (ret) {
8620 /*
8621 * We may have excluded something, so call this just in
8622 * case.
8623 */
8624 free_excluded_extents(root, cache);
8625 kfree(cache->free_space_ctl);
8626 kfree(cache);
8627 return ret;
8628 }
Josef Bacik96303082009-07-13 21:29:25 -04008629
Josef Bacik817d52f2009-07-13 21:29:25 -04008630 add_new_free_space(cache, root->fs_info, chunk_offset,
8631 chunk_offset + size);
8632
Yan Zheng11833d62009-09-11 16:11:19 -04008633 free_excluded_extents(root, cache);
8634
Josef Bacik8c579fe2013-04-02 12:40:42 -04008635 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8636 if (ret) {
8637 btrfs_remove_free_space_cache(cache);
8638 btrfs_put_block_group(cache);
8639 return ret;
8640 }
8641
Chris Mason6324fbf2008-03-24 15:01:59 -04008642 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
8643 &cache->space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -04008644 if (ret) {
8645 btrfs_remove_free_space_cache(cache);
8646 spin_lock(&root->fs_info->block_group_cache_lock);
8647 rb_erase(&cache->cache_node,
8648 &root->fs_info->block_group_cache_tree);
8649 spin_unlock(&root->fs_info->block_group_cache_lock);
8650 btrfs_put_block_group(cache);
8651 return ret;
8652 }
Li Zefanc7c144d2011-12-07 10:39:22 +08008653 update_global_block_rsv(root->fs_info);
Josef Bacik1b2da372009-09-11 16:11:20 -04008654
8655 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008656 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04008657 spin_unlock(&cache->space_info->lock);
8658
Yan, Zhengb742bb822010-05-16 10:46:24 -04008659 __link_block_group(cache->space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04008660
Josef Bacikea658ba2012-09-11 16:57:25 -04008661 list_add_tail(&cache->new_bg_list, &trans->new_bgs);
Chris Mason6324fbf2008-03-24 15:01:59 -04008662
Chris Masond18a2c42008-04-04 15:40:00 -04008663 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason925baed2008-06-25 16:01:30 -04008664
Chris Mason6324fbf2008-03-24 15:01:59 -04008665 return 0;
8666}
Zheng Yan1a40e232008-09-26 10:09:34 -04008667
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008668static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
8669{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03008670 u64 extra_flags = chunk_to_extended(flags) &
8671 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008672
Miao Xiede98ced2013-01-29 10:13:12 +00008673 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008674 if (flags & BTRFS_BLOCK_GROUP_DATA)
8675 fs_info->avail_data_alloc_bits &= ~extra_flags;
8676 if (flags & BTRFS_BLOCK_GROUP_METADATA)
8677 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
8678 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
8679 fs_info->avail_system_alloc_bits &= ~extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00008680 write_sequnlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008681}
8682
Zheng Yan1a40e232008-09-26 10:09:34 -04008683int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
8684 struct btrfs_root *root, u64 group_start)
8685{
8686 struct btrfs_path *path;
8687 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -04008688 struct btrfs_free_cluster *cluster;
Josef Bacik0af3d002010-06-21 14:48:16 -04008689 struct btrfs_root *tree_root = root->fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -04008690 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -04008691 struct inode *inode;
Zheng Yan1a40e232008-09-26 10:09:34 -04008692 int ret;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008693 int index;
Josef Bacik89a55892010-10-14 14:52:27 -04008694 int factor;
Zheng Yan1a40e232008-09-26 10:09:34 -04008695
Zheng Yan1a40e232008-09-26 10:09:34 -04008696 root = root->fs_info->extent_root;
8697
8698 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
8699 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -05008700 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -04008701
liubo9f7c43c2011-03-07 02:13:33 +00008702 /*
8703 * Free the reserved super bytes from this block group before
8704 * remove it.
8705 */
8706 free_excluded_extents(root, block_group);
8707
Zheng Yan1a40e232008-09-26 10:09:34 -04008708 memcpy(&key, &block_group->key, sizeof(key));
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008709 index = get_block_group_index(block_group);
Josef Bacik89a55892010-10-14 14:52:27 -04008710 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
8711 BTRFS_BLOCK_GROUP_RAID1 |
8712 BTRFS_BLOCK_GROUP_RAID10))
8713 factor = 2;
8714 else
8715 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04008716
Chris Mason44fb5512009-06-04 15:34:51 -04008717 /* make sure this block group isn't part of an allocation cluster */
8718 cluster = &root->fs_info->data_alloc_cluster;
8719 spin_lock(&cluster->refill_lock);
8720 btrfs_return_cluster_to_free_space(block_group, cluster);
8721 spin_unlock(&cluster->refill_lock);
8722
8723 /*
8724 * make sure this block group isn't part of a metadata
8725 * allocation cluster
8726 */
8727 cluster = &root->fs_info->meta_alloc_cluster;
8728 spin_lock(&cluster->refill_lock);
8729 btrfs_return_cluster_to_free_space(block_group, cluster);
8730 spin_unlock(&cluster->refill_lock);
8731
Zheng Yan1a40e232008-09-26 10:09:34 -04008732 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07008733 if (!path) {
8734 ret = -ENOMEM;
8735 goto out;
8736 }
Zheng Yan1a40e232008-09-26 10:09:34 -04008737
Ilya Dryomov10b2f342011-10-02 13:56:53 +03008738 inode = lookup_free_space_inode(tree_root, block_group, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04008739 if (!IS_ERR(inode)) {
Tsutomu Itohb5324022011-07-19 07:27:20 +00008740 ret = btrfs_orphan_add(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008741 if (ret) {
8742 btrfs_add_delayed_iput(inode);
8743 goto out;
8744 }
Josef Bacik0af3d002010-06-21 14:48:16 -04008745 clear_nlink(inode);
8746 /* One for the block groups ref */
8747 spin_lock(&block_group->lock);
8748 if (block_group->iref) {
8749 block_group->iref = 0;
8750 block_group->inode = NULL;
8751 spin_unlock(&block_group->lock);
8752 iput(inode);
8753 } else {
8754 spin_unlock(&block_group->lock);
8755 }
8756 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -04008757 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04008758 }
8759
8760 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
8761 key.offset = block_group->key.objectid;
8762 key.type = 0;
8763
8764 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
8765 if (ret < 0)
8766 goto out;
8767 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +02008768 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04008769 if (ret == 0) {
8770 ret = btrfs_del_item(trans, tree_root, path);
8771 if (ret)
8772 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02008773 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04008774 }
8775
Yan Zheng3dfdb932009-01-21 10:49:16 -05008776 spin_lock(&root->fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008777 rb_erase(&block_group->cache_node,
8778 &root->fs_info->block_group_cache_tree);
Liu Boa1897fd2012-12-27 09:01:23 +00008779
8780 if (root->fs_info->first_logical_byte == block_group->key.objectid)
8781 root->fs_info->first_logical_byte = (u64)-1;
Yan Zheng3dfdb932009-01-21 10:49:16 -05008782 spin_unlock(&root->fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04008783
Josef Bacik80eb2342008-10-29 14:49:05 -04008784 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04008785 /*
8786 * we must use list_del_init so people can check to see if they
8787 * are still on the list after taking the semaphore
8788 */
8789 list_del_init(&block_group->list);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008790 if (list_empty(&block_group->space_info->block_groups[index]))
8791 clear_avail_alloc_bits(root->fs_info, block_group->flags);
Josef Bacik80eb2342008-10-29 14:49:05 -04008792 up_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04008793
Josef Bacik817d52f2009-07-13 21:29:25 -04008794 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04008795 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04008796
8797 btrfs_remove_free_space_cache(block_group);
8798
Yan Zhengc146afa2008-11-12 14:34:12 -05008799 spin_lock(&block_group->space_info->lock);
8800 block_group->space_info->total_bytes -= block_group->key.offset;
8801 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -04008802 block_group->space_info->disk_total -= block_group->key.offset * factor;
Yan Zhengc146afa2008-11-12 14:34:12 -05008803 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -04008804
Josef Bacik0af3d002010-06-21 14:48:16 -04008805 memcpy(&key, &block_group->key, sizeof(key));
8806
Chris Mason283bb192009-07-24 16:30:55 -04008807 btrfs_clear_space_info_full(root->fs_info);
Yan Zhengc146afa2008-11-12 14:34:12 -05008808
Chris Masonfa9c0d792009-04-03 09:47:43 -04008809 btrfs_put_block_group(block_group);
8810 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -04008811
8812 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
8813 if (ret > 0)
8814 ret = -EIO;
8815 if (ret < 0)
8816 goto out;
8817
8818 ret = btrfs_del_item(trans, root, path);
8819out:
8820 btrfs_free_path(path);
8821 return ret;
8822}
liuboacce9522011-01-06 19:30:25 +08008823
liuboc59021f2011-03-07 02:13:14 +00008824int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
8825{
8826 struct btrfs_space_info *space_info;
liubo1aba86d2011-04-08 08:44:37 +00008827 struct btrfs_super_block *disk_super;
8828 u64 features;
8829 u64 flags;
8830 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +00008831 int ret;
8832
David Sterba6c417612011-04-13 15:41:04 +02008833 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +00008834 if (!btrfs_super_root(disk_super))
8835 return 1;
liuboc59021f2011-03-07 02:13:14 +00008836
liubo1aba86d2011-04-08 08:44:37 +00008837 features = btrfs_super_incompat_flags(disk_super);
8838 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
8839 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +00008840
liubo1aba86d2011-04-08 08:44:37 +00008841 flags = BTRFS_BLOCK_GROUP_SYSTEM;
8842 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
liuboc59021f2011-03-07 02:13:14 +00008843 if (ret)
liubo1aba86d2011-04-08 08:44:37 +00008844 goto out;
liuboc59021f2011-03-07 02:13:14 +00008845
liubo1aba86d2011-04-08 08:44:37 +00008846 if (mixed) {
8847 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
8848 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
8849 } else {
8850 flags = BTRFS_BLOCK_GROUP_METADATA;
8851 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
8852 if (ret)
8853 goto out;
8854
8855 flags = BTRFS_BLOCK_GROUP_DATA;
8856 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
8857 }
8858out:
liuboc59021f2011-03-07 02:13:14 +00008859 return ret;
8860}
8861
liuboacce9522011-01-06 19:30:25 +08008862int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
8863{
8864 return unpin_extent_range(root, start, end);
8865}
8866
8867int btrfs_error_discard_extent(struct btrfs_root *root, u64 bytenr,
Li Dongyang5378e602011-03-24 10:24:27 +00008868 u64 num_bytes, u64 *actual_bytes)
liuboacce9522011-01-06 19:30:25 +08008869{
Li Dongyang5378e602011-03-24 10:24:27 +00008870 return btrfs_discard_extent(root, bytenr, num_bytes, actual_bytes);
liuboacce9522011-01-06 19:30:25 +08008871}
Li Dongyangf7039b12011-03-24 10:24:28 +00008872
8873int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range)
8874{
8875 struct btrfs_fs_info *fs_info = root->fs_info;
8876 struct btrfs_block_group_cache *cache = NULL;
8877 u64 group_trimmed;
8878 u64 start;
8879 u64 end;
8880 u64 trimmed = 0;
Liu Bo2cac13e2012-02-09 18:17:41 +08008881 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +00008882 int ret = 0;
8883
Liu Bo2cac13e2012-02-09 18:17:41 +08008884 /*
8885 * try to trim all FS space, our block group may start from non-zero.
8886 */
8887 if (range->len == total_bytes)
8888 cache = btrfs_lookup_first_block_group(fs_info, range->start);
8889 else
8890 cache = btrfs_lookup_block_group(fs_info, range->start);
Li Dongyangf7039b12011-03-24 10:24:28 +00008891
8892 while (cache) {
8893 if (cache->key.objectid >= (range->start + range->len)) {
8894 btrfs_put_block_group(cache);
8895 break;
8896 }
8897
8898 start = max(range->start, cache->key.objectid);
8899 end = min(range->start + range->len,
8900 cache->key.objectid + cache->key.offset);
8901
8902 if (end - start >= range->minlen) {
8903 if (!block_group_cache_done(cache)) {
Liu Bof6373bf2012-12-27 09:01:18 +00008904 ret = cache_block_group(cache, 0);
Josef Bacik1be41b72013-06-12 13:56:06 -04008905 if (ret) {
8906 btrfs_put_block_group(cache);
8907 break;
8908 }
8909 ret = wait_block_group_cache_done(cache);
8910 if (ret) {
8911 btrfs_put_block_group(cache);
8912 break;
8913 }
Li Dongyangf7039b12011-03-24 10:24:28 +00008914 }
8915 ret = btrfs_trim_block_group(cache,
8916 &group_trimmed,
8917 start,
8918 end,
8919 range->minlen);
8920
8921 trimmed += group_trimmed;
8922 if (ret) {
8923 btrfs_put_block_group(cache);
8924 break;
8925 }
8926 }
8927
8928 cache = next_block_group(fs_info->tree_root, cache);
8929 }
8930
8931 range->len = trimmed;
8932 return ret;
8933}