blob: 4595a65db7293ee3569cf00e31d258626b2f2b3e [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 Masonfa9c0d72009-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 Zefan34d52cb6c2011-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, Zhengb742bb82010-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;
Josef Bacik492104c2013-03-08 15:41:02 -05001553 } else if (ret) {
1554 err = -EIO;
1555 WARN_ON(1);
1556 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001557 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001558
1559 leaf = path->nodes[0];
1560 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1561#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1562 if (item_size < sizeof(*ei)) {
1563 if (!insert) {
1564 err = -ENOENT;
1565 goto out;
1566 }
1567 ret = convert_extent_item_v0(trans, root, path, owner,
1568 extra_size);
1569 if (ret < 0) {
1570 err = ret;
1571 goto out;
1572 }
1573 leaf = path->nodes[0];
1574 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1575 }
1576#endif
1577 BUG_ON(item_size < sizeof(*ei));
1578
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001579 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1580 flags = btrfs_extent_flags(leaf, ei);
1581
1582 ptr = (unsigned long)(ei + 1);
1583 end = (unsigned long)ei + item_size;
1584
Josef Bacik3173a182013-03-07 14:22:04 -05001585 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001586 ptr += sizeof(struct btrfs_tree_block_info);
1587 BUG_ON(ptr > end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001588 }
1589
1590 err = -ENOENT;
1591 while (1) {
1592 if (ptr >= end) {
1593 WARN_ON(ptr > end);
1594 break;
1595 }
1596 iref = (struct btrfs_extent_inline_ref *)ptr;
1597 type = btrfs_extent_inline_ref_type(leaf, iref);
1598 if (want < type)
1599 break;
1600 if (want > type) {
1601 ptr += btrfs_extent_inline_ref_size(type);
1602 continue;
1603 }
1604
1605 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1606 struct btrfs_extent_data_ref *dref;
1607 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1608 if (match_extent_data_ref(leaf, dref, root_objectid,
1609 owner, offset)) {
1610 err = 0;
1611 break;
1612 }
1613 if (hash_extent_data_ref_item(leaf, dref) <
1614 hash_extent_data_ref(root_objectid, owner, offset))
1615 break;
1616 } else {
1617 u64 ref_offset;
1618 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1619 if (parent > 0) {
1620 if (parent == ref_offset) {
1621 err = 0;
1622 break;
1623 }
1624 if (ref_offset < parent)
1625 break;
1626 } else {
1627 if (root_objectid == ref_offset) {
1628 err = 0;
1629 break;
1630 }
1631 if (ref_offset < root_objectid)
1632 break;
1633 }
1634 }
1635 ptr += btrfs_extent_inline_ref_size(type);
1636 }
1637 if (err == -ENOENT && insert) {
1638 if (item_size + extra_size >=
1639 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1640 err = -EAGAIN;
1641 goto out;
1642 }
1643 /*
1644 * To add new inline back ref, we have to make sure
1645 * there is no corresponding back ref item.
1646 * For simplicity, we just do not add new inline back
1647 * ref if there is any kind of item for this block
1648 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001649 if (find_next_key(path, 0, &key) == 0 &&
1650 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001651 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001652 err = -EAGAIN;
1653 goto out;
1654 }
1655 }
1656 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1657out:
Yan Zheng85d41982009-06-11 08:51:10 -04001658 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001659 path->keep_locks = 0;
1660 btrfs_unlock_up_safe(path, 1);
1661 }
1662 return err;
1663}
1664
1665/*
1666 * helper to add new inline back ref
1667 */
1668static noinline_for_stack
Tsutomu Itohfd279fa2013-04-16 05:19:11 +00001669void setup_inline_extent_backref(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001670 struct btrfs_path *path,
1671 struct btrfs_extent_inline_ref *iref,
1672 u64 parent, u64 root_objectid,
1673 u64 owner, u64 offset, int refs_to_add,
1674 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001675{
1676 struct extent_buffer *leaf;
1677 struct btrfs_extent_item *ei;
1678 unsigned long ptr;
1679 unsigned long end;
1680 unsigned long item_offset;
1681 u64 refs;
1682 int size;
1683 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001684
1685 leaf = path->nodes[0];
1686 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1687 item_offset = (unsigned long)iref - (unsigned long)ei;
1688
1689 type = extent_ref_type(parent, owner);
1690 size = btrfs_extent_inline_ref_size(type);
1691
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00001692 btrfs_extend_item(root, path, size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001693
1694 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1695 refs = btrfs_extent_refs(leaf, ei);
1696 refs += refs_to_add;
1697 btrfs_set_extent_refs(leaf, ei, refs);
1698 if (extent_op)
1699 __run_delayed_extent_op(extent_op, leaf, ei);
1700
1701 ptr = (unsigned long)ei + item_offset;
1702 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1703 if (ptr < end - size)
1704 memmove_extent_buffer(leaf, ptr + size, ptr,
1705 end - size - ptr);
1706
1707 iref = (struct btrfs_extent_inline_ref *)ptr;
1708 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1709 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1710 struct btrfs_extent_data_ref *dref;
1711 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1712 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1713 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1714 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1715 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1716 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1717 struct btrfs_shared_data_ref *sref;
1718 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1719 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1720 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1721 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1722 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1723 } else {
1724 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1725 }
1726 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001727}
1728
1729static int lookup_extent_backref(struct btrfs_trans_handle *trans,
1730 struct btrfs_root *root,
1731 struct btrfs_path *path,
1732 struct btrfs_extent_inline_ref **ref_ret,
1733 u64 bytenr, u64 num_bytes, u64 parent,
1734 u64 root_objectid, u64 owner, u64 offset)
1735{
1736 int ret;
1737
1738 ret = lookup_inline_extent_backref(trans, root, path, ref_ret,
1739 bytenr, num_bytes, parent,
1740 root_objectid, owner, offset, 0);
1741 if (ret != -ENOENT)
1742 return ret;
1743
David Sterbab3b4aa72011-04-21 01:20:15 +02001744 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001745 *ref_ret = NULL;
1746
1747 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1748 ret = lookup_tree_block_ref(trans, root, path, bytenr, parent,
1749 root_objectid);
1750 } else {
1751 ret = lookup_extent_data_ref(trans, root, path, bytenr, parent,
1752 root_objectid, owner, offset);
1753 }
1754 return ret;
1755}
1756
1757/*
1758 * helper to update/remove inline back ref
1759 */
1760static noinline_for_stack
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001761void update_inline_extent_backref(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001762 struct btrfs_path *path,
1763 struct btrfs_extent_inline_ref *iref,
1764 int refs_to_mod,
1765 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001766{
1767 struct extent_buffer *leaf;
1768 struct btrfs_extent_item *ei;
1769 struct btrfs_extent_data_ref *dref = NULL;
1770 struct btrfs_shared_data_ref *sref = NULL;
1771 unsigned long ptr;
1772 unsigned long end;
1773 u32 item_size;
1774 int size;
1775 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001776 u64 refs;
1777
1778 leaf = path->nodes[0];
1779 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1780 refs = btrfs_extent_refs(leaf, ei);
1781 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1782 refs += refs_to_mod;
1783 btrfs_set_extent_refs(leaf, ei, refs);
1784 if (extent_op)
1785 __run_delayed_extent_op(extent_op, leaf, ei);
1786
1787 type = btrfs_extent_inline_ref_type(leaf, iref);
1788
1789 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1790 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1791 refs = btrfs_extent_data_ref_count(leaf, dref);
1792 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1793 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1794 refs = btrfs_shared_data_ref_count(leaf, sref);
1795 } else {
1796 refs = 1;
1797 BUG_ON(refs_to_mod != -1);
1798 }
1799
1800 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1801 refs += refs_to_mod;
1802
1803 if (refs > 0) {
1804 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1805 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1806 else
1807 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1808 } else {
1809 size = btrfs_extent_inline_ref_size(type);
1810 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1811 ptr = (unsigned long)iref;
1812 end = (unsigned long)ei + item_size;
1813 if (ptr + size < end)
1814 memmove_extent_buffer(leaf, ptr, ptr + size,
1815 end - ptr - size);
1816 item_size -= size;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001817 btrfs_truncate_item(root, path, item_size, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001818 }
1819 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001820}
1821
1822static noinline_for_stack
1823int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
1824 struct btrfs_root *root,
1825 struct btrfs_path *path,
1826 u64 bytenr, u64 num_bytes, u64 parent,
1827 u64 root_objectid, u64 owner,
1828 u64 offset, int refs_to_add,
1829 struct btrfs_delayed_extent_op *extent_op)
1830{
1831 struct btrfs_extent_inline_ref *iref;
1832 int ret;
1833
1834 ret = lookup_inline_extent_backref(trans, root, path, &iref,
1835 bytenr, num_bytes, parent,
1836 root_objectid, owner, offset, 1);
1837 if (ret == 0) {
1838 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001839 update_inline_extent_backref(root, path, iref,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001840 refs_to_add, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001841 } else if (ret == -ENOENT) {
Tsutomu Itohfd279fa2013-04-16 05:19:11 +00001842 setup_inline_extent_backref(root, path, iref, parent,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001843 root_objectid, owner, offset,
1844 refs_to_add, extent_op);
1845 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001846 }
1847 return ret;
1848}
1849
1850static int insert_extent_backref(struct btrfs_trans_handle *trans,
1851 struct btrfs_root *root,
1852 struct btrfs_path *path,
1853 u64 bytenr, u64 parent, u64 root_objectid,
1854 u64 owner, u64 offset, int refs_to_add)
1855{
1856 int ret;
1857 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1858 BUG_ON(refs_to_add != 1);
1859 ret = insert_tree_block_ref(trans, root, path, bytenr,
1860 parent, root_objectid);
1861 } else {
1862 ret = insert_extent_data_ref(trans, root, path, bytenr,
1863 parent, root_objectid,
1864 owner, offset, refs_to_add);
1865 }
1866 return ret;
1867}
1868
1869static int remove_extent_backref(struct btrfs_trans_handle *trans,
1870 struct btrfs_root *root,
1871 struct btrfs_path *path,
1872 struct btrfs_extent_inline_ref *iref,
1873 int refs_to_drop, int is_data)
1874{
Jeff Mahoney143bede2012-03-01 14:56:26 +01001875 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001876
1877 BUG_ON(!is_data && refs_to_drop != 1);
1878 if (iref) {
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001879 update_inline_extent_backref(root, path, iref,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001880 -refs_to_drop, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001881 } else if (is_data) {
1882 ret = remove_extent_data_ref(trans, root, path, refs_to_drop);
1883 } else {
1884 ret = btrfs_del_item(trans, root, path);
1885 }
1886 return ret;
1887}
1888
Li Dongyang5378e602011-03-24 10:24:27 +00001889static int btrfs_issue_discard(struct block_device *bdev,
Chris Mason15916de2008-11-19 21:17:22 -05001890 u64 start, u64 len)
1891{
Li Dongyang5378e602011-03-24 10:24:27 +00001892 return blkdev_issue_discard(bdev, start >> 9, len >> 9, GFP_NOFS, 0);
Chris Mason15916de2008-11-19 21:17:22 -05001893}
Chris Mason15916de2008-11-19 21:17:22 -05001894
Liu Hui1f3c79a2009-01-05 15:57:51 -05001895static int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr,
Li Dongyang5378e602011-03-24 10:24:27 +00001896 u64 num_bytes, u64 *actual_bytes)
Liu Hui1f3c79a2009-01-05 15:57:51 -05001897{
Liu Hui1f3c79a2009-01-05 15:57:51 -05001898 int ret;
Li Dongyang5378e602011-03-24 10:24:27 +00001899 u64 discarded_bytes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02001900 struct btrfs_bio *bbio = NULL;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001901
Christoph Hellwige244a0a2009-10-14 09:24:59 -04001902
Liu Hui1f3c79a2009-01-05 15:57:51 -05001903 /* Tell the block device(s) that the sectors can be discarded */
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001904 ret = btrfs_map_block(root->fs_info, REQ_DISCARD,
Jan Schmidta1d3c472011-08-04 17:15:33 +02001905 bytenr, &num_bytes, &bbio, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001906 /* Error condition is -ENOMEM */
Liu Hui1f3c79a2009-01-05 15:57:51 -05001907 if (!ret) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02001908 struct btrfs_bio_stripe *stripe = bbio->stripes;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001909 int i;
1910
Liu Hui1f3c79a2009-01-05 15:57:51 -05001911
Jan Schmidta1d3c472011-08-04 17:15:33 +02001912 for (i = 0; i < bbio->num_stripes; i++, stripe++) {
Josef Bacikd5e20032011-08-04 14:52:27 +00001913 if (!stripe->dev->can_discard)
1914 continue;
1915
Li Dongyang5378e602011-03-24 10:24:27 +00001916 ret = btrfs_issue_discard(stripe->dev->bdev,
1917 stripe->physical,
1918 stripe->length);
1919 if (!ret)
1920 discarded_bytes += stripe->length;
1921 else if (ret != -EOPNOTSUPP)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001922 break; /* Logic errors or -ENOMEM, or -EIO but I don't know how that could happen JDM */
Josef Bacikd5e20032011-08-04 14:52:27 +00001923
1924 /*
1925 * Just in case we get back EOPNOTSUPP for some reason,
1926 * just ignore the return value so we don't screw up
1927 * people calling discard_extent.
1928 */
1929 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001930 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02001931 kfree(bbio);
Liu Hui1f3c79a2009-01-05 15:57:51 -05001932 }
Li Dongyang5378e602011-03-24 10:24:27 +00001933
1934 if (actual_bytes)
1935 *actual_bytes = discarded_bytes;
1936
Liu Hui1f3c79a2009-01-05 15:57:51 -05001937
David Woodhouse53b381b2013-01-29 18:40:14 -05001938 if (ret == -EOPNOTSUPP)
1939 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001940 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001941}
1942
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001943/* Can return -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001944int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1945 struct btrfs_root *root,
1946 u64 bytenr, u64 num_bytes, u64 parent,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001947 u64 root_objectid, u64 owner, u64 offset, int for_cow)
Zheng Yan31840ae2008-09-23 13:14:14 -04001948{
1949 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001950 struct btrfs_fs_info *fs_info = root->fs_info;
1951
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001952 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
1953 root_objectid == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04001954
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001955 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001956 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
1957 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001958 parent, root_objectid, (int)owner,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001959 BTRFS_ADD_DELAYED_REF, NULL, for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001960 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001961 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
1962 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001963 parent, root_objectid, owner, offset,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001964 BTRFS_ADD_DELAYED_REF, NULL, for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001965 }
Zheng Yan31840ae2008-09-23 13:14:14 -04001966 return ret;
1967}
1968
Chris Mason925baed2008-06-25 16:01:30 -04001969static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001970 struct btrfs_root *root,
1971 u64 bytenr, u64 num_bytes,
1972 u64 parent, u64 root_objectid,
1973 u64 owner, u64 offset, int refs_to_add,
1974 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04001975{
Chris Mason5caf2a02007-04-02 11:20:42 -04001976 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001977 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04001978 struct btrfs_extent_item *item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001979 u64 refs;
1980 int ret;
Chris Mason037e6392007-03-07 11:50:24 -05001981
Chris Mason5caf2a02007-04-02 11:20:42 -04001982 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001983 if (!path)
1984 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04001985
Chris Mason3c12ac72008-04-21 12:01:38 -04001986 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04001987 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001988 /* this will setup the path even if it fails to insert the back ref */
1989 ret = insert_inline_extent_backref(trans, root->fs_info->extent_root,
1990 path, bytenr, num_bytes, parent,
1991 root_objectid, owner, offset,
1992 refs_to_add, extent_op);
Liu Bo30d133f2013-10-11 16:30:23 +08001993 if (ret != -EAGAIN)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001994 goto out;
Zheng Yan31840ae2008-09-23 13:14:14 -04001995
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001996 leaf = path->nodes[0];
1997 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1998 refs = btrfs_extent_refs(leaf, item);
1999 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
2000 if (extent_op)
2001 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04002002
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002003 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002004 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05002005
Chris Mason3c12ac72008-04-21 12:01:38 -04002006 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04002007 path->leave_spinning = 1;
2008
Chris Mason56bec292009-03-13 10:10:06 -04002009 /* now insert the actual backref */
Zheng Yan31840ae2008-09-23 13:14:14 -04002010 ret = insert_extent_backref(trans, root->fs_info->extent_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002011 path, bytenr, parent, root_objectid,
2012 owner, offset, refs_to_add);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002013 if (ret)
2014 btrfs_abort_transaction(trans, root, ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002015out:
Chris Mason74493f72007-12-11 09:25:06 -05002016 btrfs_free_path(path);
Liu Bo30d133f2013-10-11 16:30:23 +08002017 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002018}
2019
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002020static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
2021 struct btrfs_root *root,
2022 struct btrfs_delayed_ref_node *node,
2023 struct btrfs_delayed_extent_op *extent_op,
2024 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04002025{
Chris Mason56bec292009-03-13 10:10:06 -04002026 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002027 struct btrfs_delayed_data_ref *ref;
2028 struct btrfs_key ins;
2029 u64 parent = 0;
2030 u64 ref_root = 0;
2031 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002032
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002033 ins.objectid = node->bytenr;
2034 ins.offset = node->num_bytes;
2035 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04002036
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002037 ref = btrfs_delayed_node_to_data_ref(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002038 trace_run_delayed_data_ref(node, ref, node->action);
2039
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002040 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
2041 parent = ref->parent;
2042 else
2043 ref_root = ref->root;
2044
2045 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002046 if (extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002047 flags |= extent_op->flags_to_set;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002048 ret = alloc_reserved_file_extent(trans, root,
2049 parent, ref_root, flags,
2050 ref->objectid, ref->offset,
2051 &ins, node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002052 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
2053 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
2054 node->num_bytes, parent,
2055 ref_root, ref->objectid,
2056 ref->offset, node->ref_mod,
2057 extent_op);
2058 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
2059 ret = __btrfs_free_extent(trans, root, node->bytenr,
2060 node->num_bytes, parent,
2061 ref_root, ref->objectid,
2062 ref->offset, node->ref_mod,
2063 extent_op);
2064 } else {
2065 BUG();
2066 }
Chris Mason56bec292009-03-13 10:10:06 -04002067 return ret;
2068}
2069
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002070static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
2071 struct extent_buffer *leaf,
2072 struct btrfs_extent_item *ei)
2073{
2074 u64 flags = btrfs_extent_flags(leaf, ei);
2075 if (extent_op->update_flags) {
2076 flags |= extent_op->flags_to_set;
2077 btrfs_set_extent_flags(leaf, ei, flags);
2078 }
2079
2080 if (extent_op->update_key) {
2081 struct btrfs_tree_block_info *bi;
2082 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
2083 bi = (struct btrfs_tree_block_info *)(ei + 1);
2084 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
2085 }
2086}
2087
2088static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
2089 struct btrfs_root *root,
2090 struct btrfs_delayed_ref_node *node,
2091 struct btrfs_delayed_extent_op *extent_op)
2092{
2093 struct btrfs_key key;
2094 struct btrfs_path *path;
2095 struct btrfs_extent_item *ei;
2096 struct extent_buffer *leaf;
2097 u32 item_size;
2098 int ret;
2099 int err = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002100 int metadata = !extent_op->is_data;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002101
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002102 if (trans->aborted)
2103 return 0;
2104
Josef Bacik3173a182013-03-07 14:22:04 -05002105 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2106 metadata = 0;
2107
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002108 path = btrfs_alloc_path();
2109 if (!path)
2110 return -ENOMEM;
2111
2112 key.objectid = node->bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002113
Josef Bacik3173a182013-03-07 14:22:04 -05002114 if (metadata) {
Josef Bacik3173a182013-03-07 14:22:04 -05002115 key.type = BTRFS_METADATA_ITEM_KEY;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002116 key.offset = extent_op->level;
Josef Bacik3173a182013-03-07 14:22:04 -05002117 } else {
2118 key.type = BTRFS_EXTENT_ITEM_KEY;
2119 key.offset = node->num_bytes;
2120 }
2121
2122again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002123 path->reada = 1;
2124 path->leave_spinning = 1;
2125 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key,
2126 path, 0, 1);
2127 if (ret < 0) {
2128 err = ret;
2129 goto out;
2130 }
2131 if (ret > 0) {
Josef Bacik3173a182013-03-07 14:22:04 -05002132 if (metadata) {
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002133 if (path->slots[0] > 0) {
2134 path->slots[0]--;
2135 btrfs_item_key_to_cpu(path->nodes[0], &key,
2136 path->slots[0]);
2137 if (key.objectid == node->bytenr &&
2138 key.type == BTRFS_EXTENT_ITEM_KEY &&
2139 key.offset == node->num_bytes)
2140 ret = 0;
2141 }
2142 if (ret > 0) {
2143 btrfs_release_path(path);
2144 metadata = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002145
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002146 key.objectid = node->bytenr;
2147 key.offset = node->num_bytes;
2148 key.type = BTRFS_EXTENT_ITEM_KEY;
2149 goto again;
2150 }
2151 } else {
2152 err = -EIO;
2153 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05002154 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002155 }
2156
2157 leaf = path->nodes[0];
2158 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2159#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2160 if (item_size < sizeof(*ei)) {
2161 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
2162 path, (u64)-1, 0);
2163 if (ret < 0) {
2164 err = ret;
2165 goto out;
2166 }
2167 leaf = path->nodes[0];
2168 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2169 }
2170#endif
2171 BUG_ON(item_size < sizeof(*ei));
2172 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2173 __run_delayed_extent_op(extent_op, leaf, ei);
2174
2175 btrfs_mark_buffer_dirty(leaf);
2176out:
2177 btrfs_free_path(path);
2178 return err;
2179}
2180
2181static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
2182 struct btrfs_root *root,
2183 struct btrfs_delayed_ref_node *node,
2184 struct btrfs_delayed_extent_op *extent_op,
2185 int insert_reserved)
2186{
2187 int ret = 0;
2188 struct btrfs_delayed_tree_ref *ref;
2189 struct btrfs_key ins;
2190 u64 parent = 0;
2191 u64 ref_root = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002192 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
2193 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002194
2195 ref = btrfs_delayed_node_to_tree_ref(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002196 trace_run_delayed_tree_ref(node, ref, node->action);
2197
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002198 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2199 parent = ref->parent;
2200 else
2201 ref_root = ref->root;
2202
Josef Bacik3173a182013-03-07 14:22:04 -05002203 ins.objectid = node->bytenr;
2204 if (skinny_metadata) {
2205 ins.offset = ref->level;
2206 ins.type = BTRFS_METADATA_ITEM_KEY;
2207 } else {
2208 ins.offset = node->num_bytes;
2209 ins.type = BTRFS_EXTENT_ITEM_KEY;
2210 }
2211
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002212 BUG_ON(node->ref_mod != 1);
2213 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002214 BUG_ON(!extent_op || !extent_op->update_flags);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002215 ret = alloc_reserved_tree_block(trans, root,
2216 parent, ref_root,
2217 extent_op->flags_to_set,
2218 &extent_op->key,
2219 ref->level, &ins);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002220 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
2221 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
2222 node->num_bytes, parent, ref_root,
2223 ref->level, 0, 1, extent_op);
2224 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
2225 ret = __btrfs_free_extent(trans, root, node->bytenr,
2226 node->num_bytes, parent, ref_root,
2227 ref->level, 0, 1, extent_op);
2228 } else {
2229 BUG();
2230 }
2231 return ret;
2232}
2233
Chris Mason56bec292009-03-13 10:10:06 -04002234/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002235static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
2236 struct btrfs_root *root,
2237 struct btrfs_delayed_ref_node *node,
2238 struct btrfs_delayed_extent_op *extent_op,
2239 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002240{
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002241 int ret = 0;
2242
Josef Bacik857cc2f2013-10-07 15:21:08 -04002243 if (trans->aborted) {
2244 if (insert_reserved)
2245 btrfs_pin_extent(root, node->bytenr,
2246 node->num_bytes, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002247 return 0;
Josef Bacik857cc2f2013-10-07 15:21:08 -04002248 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002249
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002250 if (btrfs_delayed_ref_is_head(node)) {
Chris Mason56bec292009-03-13 10:10:06 -04002251 struct btrfs_delayed_ref_head *head;
2252 /*
2253 * we've hit the end of the chain and we were supposed
2254 * to insert this extent into the tree. But, it got
2255 * deleted before we ever needed to insert it, so all
2256 * we have to do is clean up the accounting
2257 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002258 BUG_ON(extent_op);
2259 head = btrfs_delayed_node_to_head(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002260 trace_run_delayed_ref_head(node, head, node->action);
2261
Chris Mason56bec292009-03-13 10:10:06 -04002262 if (insert_reserved) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04002263 btrfs_pin_extent(root, node->bytenr,
2264 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002265 if (head->is_data) {
2266 ret = btrfs_del_csums(trans, root,
2267 node->bytenr,
2268 node->num_bytes);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002269 }
Chris Mason56bec292009-03-13 10:10:06 -04002270 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002271 return ret;
Chris Mason56bec292009-03-13 10:10:06 -04002272 }
Josef Bacikeb099672009-02-12 09:27:38 -05002273
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002274 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2275 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2276 ret = run_delayed_tree_ref(trans, root, node, extent_op,
2277 insert_reserved);
2278 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2279 node->type == BTRFS_SHARED_DATA_REF_KEY)
2280 ret = run_delayed_data_ref(trans, root, node, extent_op,
2281 insert_reserved);
2282 else
2283 BUG();
2284 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002285}
2286
Chris Mason56bec292009-03-13 10:10:06 -04002287static noinline struct btrfs_delayed_ref_node *
2288select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002289{
Chris Mason56bec292009-03-13 10:10:06 -04002290 struct rb_node *node;
2291 struct btrfs_delayed_ref_node *ref;
2292 int action = BTRFS_ADD_DELAYED_REF;
2293again:
2294 /*
2295 * select delayed ref of type BTRFS_ADD_DELAYED_REF first.
2296 * this prevents ref count from going down to zero when
2297 * there still are pending delayed ref.
2298 */
2299 node = rb_prev(&head->node.rb_node);
2300 while (1) {
2301 if (!node)
2302 break;
2303 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2304 rb_node);
2305 if (ref->bytenr != head->node.bytenr)
2306 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002307 if (ref->action == action)
Chris Mason56bec292009-03-13 10:10:06 -04002308 return ref;
2309 node = rb_prev(node);
Chris Mason5f39d392007-10-15 16:14:19 -04002310 }
Chris Mason56bec292009-03-13 10:10:06 -04002311 if (action == BTRFS_ADD_DELAYED_REF) {
2312 action = BTRFS_DROP_DELAYED_REF;
2313 goto again;
2314 }
2315 return NULL;
2316}
2317
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002318/*
2319 * Returns 0 on success or if called with an already aborted transaction.
2320 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2321 */
Chris Masonc3e69d52009-03-13 10:17:05 -04002322static noinline int run_clustered_refs(struct btrfs_trans_handle *trans,
2323 struct btrfs_root *root,
2324 struct list_head *cluster)
Chris Mason56bec292009-03-13 10:10:06 -04002325{
Chris Mason56bec292009-03-13 10:10:06 -04002326 struct btrfs_delayed_ref_root *delayed_refs;
2327 struct btrfs_delayed_ref_node *ref;
2328 struct btrfs_delayed_ref_head *locked_ref = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002329 struct btrfs_delayed_extent_op *extent_op;
Jan Schmidt097b8a72012-06-21 11:08:04 +02002330 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason56bec292009-03-13 10:10:06 -04002331 int ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04002332 int count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002333 int must_insert_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002334
2335 delayed_refs = &trans->transaction->delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002336 while (1) {
2337 if (!locked_ref) {
Chris Masonc3e69d52009-03-13 10:17:05 -04002338 /* pick a new head ref from the cluster list */
2339 if (list_empty(cluster))
Chris Mason56bec292009-03-13 10:10:06 -04002340 break;
Chris Mason56bec292009-03-13 10:10:06 -04002341
Chris Masonc3e69d52009-03-13 10:17:05 -04002342 locked_ref = list_entry(cluster->next,
2343 struct btrfs_delayed_ref_head, cluster);
2344
2345 /* grab the lock that says we are going to process
2346 * all the refs for this head */
2347 ret = btrfs_delayed_ref_lock(trans, locked_ref);
2348
2349 /*
2350 * we may have dropped the spin lock to get the head
2351 * mutex lock, and that might have given someone else
2352 * time to free the head. If that's true, it has been
2353 * removed from our list and we can move on.
2354 */
2355 if (ret == -EAGAIN) {
2356 locked_ref = NULL;
2357 count++;
2358 continue;
Chris Mason56bec292009-03-13 10:10:06 -04002359 }
2360 }
2361
2362 /*
Josef Bacikae1e2062012-08-07 16:00:32 -04002363 * We need to try and merge add/drops of the same ref since we
2364 * can run into issues with relocate dropping the implicit ref
2365 * and then it being added back again before the drop can
2366 * finish. If we merged anything we need to re-loop so we can
2367 * get a good ref.
2368 */
2369 btrfs_merge_delayed_refs(trans, fs_info, delayed_refs,
2370 locked_ref);
2371
2372 /*
Arne Jansend1270cd2011-09-13 15:16:43 +02002373 * locked_ref is the head node, so we have to go one
2374 * node back for any delayed ref updates
2375 */
2376 ref = select_delayed_ref(locked_ref);
2377
2378 if (ref && ref->seq &&
Jan Schmidt097b8a72012-06-21 11:08:04 +02002379 btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) {
Arne Jansend1270cd2011-09-13 15:16:43 +02002380 /*
2381 * there are still refs with lower seq numbers in the
2382 * process of being added. Don't run this ref yet.
2383 */
2384 list_del_init(&locked_ref->cluster);
Miao Xie093486c2012-12-19 08:10:10 +00002385 btrfs_delayed_ref_unlock(locked_ref);
Arne Jansend1270cd2011-09-13 15:16:43 +02002386 locked_ref = NULL;
2387 delayed_refs->num_heads_ready++;
2388 spin_unlock(&delayed_refs->lock);
2389 cond_resched();
2390 spin_lock(&delayed_refs->lock);
2391 continue;
2392 }
2393
2394 /*
Chris Mason56bec292009-03-13 10:10:06 -04002395 * record the must insert reserved flag before we
2396 * drop the spin lock.
2397 */
2398 must_insert_reserved = locked_ref->must_insert_reserved;
2399 locked_ref->must_insert_reserved = 0;
2400
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002401 extent_op = locked_ref->extent_op;
2402 locked_ref->extent_op = NULL;
2403
Chris Mason56bec292009-03-13 10:10:06 -04002404 if (!ref) {
2405 /* All delayed refs have been processed, Go ahead
2406 * and send the head node to run_one_delayed_ref,
2407 * so that any accounting fixes can happen
2408 */
2409 ref = &locked_ref->node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002410
2411 if (extent_op && must_insert_reserved) {
Miao Xie78a61842012-11-21 02:21:28 +00002412 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002413 extent_op = NULL;
2414 }
2415
2416 if (extent_op) {
2417 spin_unlock(&delayed_refs->lock);
2418
2419 ret = run_delayed_extent_op(trans, root,
2420 ref, extent_op);
Miao Xie78a61842012-11-21 02:21:28 +00002421 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002422
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002423 if (ret) {
Josef Bacik857cc2f2013-10-07 15:21:08 -04002424 /*
2425 * Need to reset must_insert_reserved if
2426 * there was an error so the abort stuff
2427 * can cleanup the reserved space
2428 * properly.
2429 */
2430 if (must_insert_reserved)
2431 locked_ref->must_insert_reserved = 1;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002432 btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret);
Dan Carpenter253beeb2012-04-18 09:59:03 +03002433 spin_lock(&delayed_refs->lock);
Miao Xie093486c2012-12-19 08:10:10 +00002434 btrfs_delayed_ref_unlock(locked_ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002435 return ret;
2436 }
2437
Chris Mason203bf282012-01-06 15:23:57 -05002438 goto next;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002439 }
Chris Mason56bec292009-03-13 10:10:06 -04002440 }
2441
2442 ref->in_tree = 0;
2443 rb_erase(&ref->rb_node, &delayed_refs->root);
2444 delayed_refs->num_entries--;
Miao Xie093486c2012-12-19 08:10:10 +00002445 if (!btrfs_delayed_ref_is_head(ref)) {
Arne Jansen22cd2e72012-08-09 00:16:53 -06002446 /*
2447 * when we play the delayed ref, also correct the
2448 * ref_mod on head
2449 */
2450 switch (ref->action) {
2451 case BTRFS_ADD_DELAYED_REF:
2452 case BTRFS_ADD_DELAYED_EXTENT:
2453 locked_ref->node.ref_mod -= ref->ref_mod;
2454 break;
2455 case BTRFS_DROP_DELAYED_REF:
2456 locked_ref->node.ref_mod += ref->ref_mod;
2457 break;
2458 default:
2459 WARN_ON(1);
2460 }
Josef Bacikb8d0c692013-08-22 17:03:29 -04002461 } else {
2462 list_del_init(&locked_ref->cluster);
Arne Jansen22cd2e72012-08-09 00:16:53 -06002463 }
Chris Mason56bec292009-03-13 10:10:06 -04002464 spin_unlock(&delayed_refs->lock);
2465
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002466 ret = run_one_delayed_ref(trans, root, ref, extent_op,
Chris Mason56bec292009-03-13 10:10:06 -04002467 must_insert_reserved);
Chris Mason56bec292009-03-13 10:10:06 -04002468
Miao Xie78a61842012-11-21 02:21:28 +00002469 btrfs_free_delayed_extent_op(extent_op);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002470 if (ret) {
Miao Xie093486c2012-12-19 08:10:10 +00002471 btrfs_delayed_ref_unlock(locked_ref);
2472 btrfs_put_delayed_ref(ref);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002473 btrfs_debug(fs_info, "run_one_delayed_ref returned %d", ret);
Dan Carpenter253beeb2012-04-18 09:59:03 +03002474 spin_lock(&delayed_refs->lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002475 return ret;
2476 }
2477
Miao Xie093486c2012-12-19 08:10:10 +00002478 /*
2479 * If this node is a head, that means all the refs in this head
2480 * have been dealt with, and we will pick the next head to deal
2481 * with, so we must unlock the head and drop it from the cluster
2482 * list before we release it.
2483 */
2484 if (btrfs_delayed_ref_is_head(ref)) {
Miao Xie093486c2012-12-19 08:10:10 +00002485 btrfs_delayed_ref_unlock(locked_ref);
2486 locked_ref = NULL;
2487 }
2488 btrfs_put_delayed_ref(ref);
2489 count++;
Chris Mason203bf282012-01-06 15:23:57 -05002490next:
Chris Mason1887be62009-03-13 10:11:24 -04002491 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002492 spin_lock(&delayed_refs->lock);
2493 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002494 return count;
2495}
2496
Arne Jansen709c0482011-09-12 12:22:57 +02002497#ifdef SCRAMBLE_DELAYED_REFS
2498/*
2499 * Normally delayed refs get processed in ascending bytenr order. This
2500 * correlates in most cases to the order added. To expose dependencies on this
2501 * order, we start to process the tree in the middle instead of the beginning
2502 */
2503static u64 find_middle(struct rb_root *root)
2504{
2505 struct rb_node *n = root->rb_node;
2506 struct btrfs_delayed_ref_node *entry;
2507 int alt = 1;
2508 u64 middle;
2509 u64 first = 0, last = 0;
2510
2511 n = rb_first(root);
2512 if (n) {
2513 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2514 first = entry->bytenr;
2515 }
2516 n = rb_last(root);
2517 if (n) {
2518 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2519 last = entry->bytenr;
2520 }
2521 n = root->rb_node;
2522
2523 while (n) {
2524 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2525 WARN_ON(!entry->in_tree);
2526
2527 middle = entry->bytenr;
2528
2529 if (alt)
2530 n = n->rb_left;
2531 else
2532 n = n->rb_right;
2533
2534 alt = 1 - alt;
2535 }
2536 return middle;
2537}
2538#endif
2539
Arne Jansenbed92ea2012-06-28 18:03:02 +02002540int btrfs_delayed_refs_qgroup_accounting(struct btrfs_trans_handle *trans,
2541 struct btrfs_fs_info *fs_info)
2542{
2543 struct qgroup_update *qgroup_update;
2544 int ret = 0;
2545
2546 if (list_empty(&trans->qgroup_ref_list) !=
2547 !trans->delayed_ref_elem.seq) {
2548 /* list without seq or seq without list */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002549 btrfs_err(fs_info,
Jan Schmidtfc36ed72013-04-24 16:57:33 +00002550 "qgroup accounting update error, list is%s empty, seq is %#x.%x",
Arne Jansenbed92ea2012-06-28 18:03:02 +02002551 list_empty(&trans->qgroup_ref_list) ? "" : " not",
Jan Schmidtfc36ed72013-04-24 16:57:33 +00002552 (u32)(trans->delayed_ref_elem.seq >> 32),
2553 (u32)trans->delayed_ref_elem.seq);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002554 BUG();
2555 }
2556
2557 if (!trans->delayed_ref_elem.seq)
2558 return 0;
2559
2560 while (!list_empty(&trans->qgroup_ref_list)) {
2561 qgroup_update = list_first_entry(&trans->qgroup_ref_list,
2562 struct qgroup_update, list);
2563 list_del(&qgroup_update->list);
2564 if (!ret)
2565 ret = btrfs_qgroup_account_ref(
2566 trans, fs_info, qgroup_update->node,
2567 qgroup_update->extent_op);
2568 kfree(qgroup_update);
2569 }
2570
2571 btrfs_put_tree_mod_seq(fs_info, &trans->delayed_ref_elem);
2572
2573 return ret;
2574}
2575
Chris Masonbb721702013-01-29 18:44:12 -05002576static int refs_newer(struct btrfs_delayed_ref_root *delayed_refs, int seq,
2577 int count)
2578{
2579 int val = atomic_read(&delayed_refs->ref_seq);
2580
2581 if (val < seq || val >= seq + count)
2582 return 1;
2583 return 0;
2584}
2585
Josef Bacik1be41b72013-06-12 13:56:06 -04002586static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads)
2587{
2588 u64 num_bytes;
2589
2590 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2591 sizeof(struct btrfs_extent_inline_ref));
2592 if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2593 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2594
2595 /*
2596 * We don't ever fill up leaves all the way so multiply by 2 just to be
2597 * closer to what we're really going to want to ouse.
2598 */
2599 return div64_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root));
2600}
2601
2602int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans,
2603 struct btrfs_root *root)
2604{
2605 struct btrfs_block_rsv *global_rsv;
2606 u64 num_heads = trans->transaction->delayed_refs.num_heads_ready;
2607 u64 num_bytes;
2608 int ret = 0;
2609
2610 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
2611 num_heads = heads_to_leaves(root, num_heads);
2612 if (num_heads > 1)
2613 num_bytes += (num_heads - 1) * root->leafsize;
2614 num_bytes <<= 1;
2615 global_rsv = &root->fs_info->global_block_rsv;
2616
2617 /*
2618 * If we can't allocate any more chunks lets make sure we have _lots_ of
2619 * wiggle room since running delayed refs can create more delayed refs.
2620 */
2621 if (global_rsv->space_info->full)
2622 num_bytes <<= 1;
2623
2624 spin_lock(&global_rsv->lock);
2625 if (global_rsv->reserved <= num_bytes)
2626 ret = 1;
2627 spin_unlock(&global_rsv->lock);
2628 return ret;
2629}
2630
Chris Masonc3e69d52009-03-13 10:17:05 -04002631/*
2632 * this starts processing the delayed reference count updates and
2633 * extent insertions we have queued up so far. count can be
2634 * 0, which means to process everything in the tree at the start
2635 * of the run (but not newly added entries), or it can be some target
2636 * number you'd like to process.
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002637 *
2638 * Returns 0 on success or if called with an aborted transaction
2639 * Returns <0 on error and aborts the transaction
Chris Masonc3e69d52009-03-13 10:17:05 -04002640 */
2641int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2642 struct btrfs_root *root, unsigned long count)
2643{
2644 struct rb_node *node;
2645 struct btrfs_delayed_ref_root *delayed_refs;
2646 struct btrfs_delayed_ref_node *ref;
2647 struct list_head cluster;
2648 int ret;
Jan Schmidta1686502011-12-12 16:10:07 +01002649 u64 delayed_start;
Chris Masonc3e69d52009-03-13 10:17:05 -04002650 int run_all = count == (unsigned long)-1;
2651 int run_most = 0;
Arne Jansen1fa11e22012-08-06 14:18:51 -06002652 int loops;
Chris Masonc3e69d52009-03-13 10:17:05 -04002653
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002654 /* We'll clean this up in btrfs_cleanup_transaction */
2655 if (trans->aborted)
2656 return 0;
2657
Chris Masonc3e69d52009-03-13 10:17:05 -04002658 if (root == root->fs_info->extent_root)
2659 root = root->fs_info->tree_root;
2660
Jan Schmidtedf39272012-06-28 18:04:55 +02002661 btrfs_delayed_refs_qgroup_accounting(trans, root->fs_info);
2662
Chris Masonc3e69d52009-03-13 10:17:05 -04002663 delayed_refs = &trans->transaction->delayed_refs;
2664 INIT_LIST_HEAD(&cluster);
Chris Masonbb721702013-01-29 18:44:12 -05002665 if (count == 0) {
2666 count = delayed_refs->num_entries * 2;
2667 run_most = 1;
2668 }
2669
2670 if (!run_all && !run_most) {
2671 int old;
2672 int seq = atomic_read(&delayed_refs->ref_seq);
2673
2674progress:
2675 old = atomic_cmpxchg(&delayed_refs->procs_running_refs, 0, 1);
2676 if (old) {
2677 DEFINE_WAIT(__wait);
Josef Bacik1be41b72013-06-12 13:56:06 -04002678 if (delayed_refs->flushing ||
2679 !btrfs_should_throttle_delayed_refs(trans, root))
Chris Masonbb721702013-01-29 18:44:12 -05002680 return 0;
2681
2682 prepare_to_wait(&delayed_refs->wait, &__wait,
2683 TASK_UNINTERRUPTIBLE);
2684
2685 old = atomic_cmpxchg(&delayed_refs->procs_running_refs, 0, 1);
2686 if (old) {
2687 schedule();
2688 finish_wait(&delayed_refs->wait, &__wait);
2689
2690 if (!refs_newer(delayed_refs, seq, 256))
2691 goto progress;
2692 else
2693 return 0;
2694 } else {
2695 finish_wait(&delayed_refs->wait, &__wait);
2696 goto again;
2697 }
2698 }
2699
2700 } else {
2701 atomic_inc(&delayed_refs->procs_running_refs);
2702 }
2703
Chris Masonc3e69d52009-03-13 10:17:05 -04002704again:
Arne Jansen1fa11e22012-08-06 14:18:51 -06002705 loops = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -04002706 spin_lock(&delayed_refs->lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +02002707
Arne Jansen709c0482011-09-12 12:22:57 +02002708#ifdef SCRAMBLE_DELAYED_REFS
2709 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
2710#endif
2711
Chris Masonc3e69d52009-03-13 10:17:05 -04002712 while (1) {
2713 if (!(run_all || run_most) &&
Josef Bacik1be41b72013-06-12 13:56:06 -04002714 !btrfs_should_throttle_delayed_refs(trans, root))
Chris Masonc3e69d52009-03-13 10:17:05 -04002715 break;
2716
2717 /*
2718 * go find something we can process in the rbtree. We start at
2719 * the beginning of the tree, and then build a cluster
2720 * of refs to process starting at the first one we are able to
2721 * lock
2722 */
Jan Schmidta1686502011-12-12 16:10:07 +01002723 delayed_start = delayed_refs->run_delayed_start;
Chris Masonc3e69d52009-03-13 10:17:05 -04002724 ret = btrfs_find_ref_cluster(trans, &cluster,
2725 delayed_refs->run_delayed_start);
2726 if (ret)
2727 break;
2728
2729 ret = run_clustered_refs(trans, root, &cluster);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002730 if (ret < 0) {
Miao Xie093486c2012-12-19 08:10:10 +00002731 btrfs_release_ref_cluster(&cluster);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002732 spin_unlock(&delayed_refs->lock);
2733 btrfs_abort_transaction(trans, root, ret);
Chris Masonbb721702013-01-29 18:44:12 -05002734 atomic_dec(&delayed_refs->procs_running_refs);
Josef Bacikf971fe22013-06-10 11:52:32 -04002735 wake_up(&delayed_refs->wait);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002736 return ret;
2737 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002738
Chris Masonbb721702013-01-29 18:44:12 -05002739 atomic_add(ret, &delayed_refs->ref_seq);
2740
Chris Masonc3e69d52009-03-13 10:17:05 -04002741 count -= min_t(unsigned long, ret, count);
2742
2743 if (count == 0)
2744 break;
Jan Schmidta1686502011-12-12 16:10:07 +01002745
Arne Jansen1fa11e22012-08-06 14:18:51 -06002746 if (delayed_start >= delayed_refs->run_delayed_start) {
2747 if (loops == 0) {
2748 /*
2749 * btrfs_find_ref_cluster looped. let's do one
2750 * more cycle. if we don't run any delayed ref
2751 * during that cycle (because we can't because
2752 * all of them are blocked), bail out.
2753 */
2754 loops = 1;
2755 } else {
2756 /*
2757 * no runnable refs left, stop trying
2758 */
2759 BUG_ON(run_all);
2760 break;
2761 }
2762 }
2763 if (ret) {
Jan Schmidta1686502011-12-12 16:10:07 +01002764 /* refs were run, let's reset staleness detection */
Arne Jansen1fa11e22012-08-06 14:18:51 -06002765 loops = 0;
Jan Schmidta1686502011-12-12 16:10:07 +01002766 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002767 }
2768
Chris Mason56bec292009-03-13 10:10:06 -04002769 if (run_all) {
Josef Bacikea658ba2012-09-11 16:57:25 -04002770 if (!list_empty(&trans->new_bgs)) {
2771 spin_unlock(&delayed_refs->lock);
2772 btrfs_create_pending_block_groups(trans, root);
2773 spin_lock(&delayed_refs->lock);
2774 }
2775
Chris Mason56bec292009-03-13 10:10:06 -04002776 node = rb_first(&delayed_refs->root);
Chris Masonc3e69d52009-03-13 10:17:05 -04002777 if (!node)
Chris Mason56bec292009-03-13 10:10:06 -04002778 goto out;
Chris Masonc3e69d52009-03-13 10:17:05 -04002779 count = (unsigned long)-1;
Chris Mason56bec292009-03-13 10:10:06 -04002780
2781 while (node) {
2782 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2783 rb_node);
2784 if (btrfs_delayed_ref_is_head(ref)) {
2785 struct btrfs_delayed_ref_head *head;
2786
2787 head = btrfs_delayed_node_to_head(ref);
2788 atomic_inc(&ref->refs);
2789
2790 spin_unlock(&delayed_refs->lock);
David Sterba8cc33e52011-05-02 15:29:25 +02002791 /*
2792 * Mutex was contended, block until it's
2793 * released and try again
2794 */
Chris Mason56bec292009-03-13 10:10:06 -04002795 mutex_lock(&head->mutex);
2796 mutex_unlock(&head->mutex);
2797
2798 btrfs_put_delayed_ref(ref);
Chris Mason1887be62009-03-13 10:11:24 -04002799 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002800 goto again;
2801 }
2802 node = rb_next(node);
2803 }
2804 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002805 schedule_timeout(1);
2806 goto again;
2807 }
Chris Mason54aa1f42007-06-22 14:16:25 -04002808out:
Chris Masonbb721702013-01-29 18:44:12 -05002809 atomic_dec(&delayed_refs->procs_running_refs);
2810 smp_mb();
2811 if (waitqueue_active(&delayed_refs->wait))
2812 wake_up(&delayed_refs->wait);
2813
Chris Masonc3e69d52009-03-13 10:17:05 -04002814 spin_unlock(&delayed_refs->lock);
Jan Schmidtedf39272012-06-28 18:04:55 +02002815 assert_qgroups_uptodate(trans);
Chris Masona28ec192007-03-06 20:08:01 -05002816 return 0;
2817}
2818
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002819int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
2820 struct btrfs_root *root,
2821 u64 bytenr, u64 num_bytes, u64 flags,
Josef Bacikb1c79e02013-05-09 13:49:30 -04002822 int level, int is_data)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002823{
2824 struct btrfs_delayed_extent_op *extent_op;
2825 int ret;
2826
Miao Xie78a61842012-11-21 02:21:28 +00002827 extent_op = btrfs_alloc_delayed_extent_op();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002828 if (!extent_op)
2829 return -ENOMEM;
2830
2831 extent_op->flags_to_set = flags;
2832 extent_op->update_flags = 1;
2833 extent_op->update_key = 0;
2834 extent_op->is_data = is_data ? 1 : 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002835 extent_op->level = level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002836
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002837 ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr,
2838 num_bytes, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002839 if (ret)
Miao Xie78a61842012-11-21 02:21:28 +00002840 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002841 return ret;
2842}
2843
2844static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
2845 struct btrfs_root *root,
2846 struct btrfs_path *path,
2847 u64 objectid, u64 offset, u64 bytenr)
2848{
2849 struct btrfs_delayed_ref_head *head;
2850 struct btrfs_delayed_ref_node *ref;
2851 struct btrfs_delayed_data_ref *data_ref;
2852 struct btrfs_delayed_ref_root *delayed_refs;
2853 struct rb_node *node;
2854 int ret = 0;
2855
2856 ret = -ENOENT;
2857 delayed_refs = &trans->transaction->delayed_refs;
2858 spin_lock(&delayed_refs->lock);
2859 head = btrfs_find_delayed_ref_head(trans, bytenr);
2860 if (!head)
2861 goto out;
2862
2863 if (!mutex_trylock(&head->mutex)) {
2864 atomic_inc(&head->node.refs);
2865 spin_unlock(&delayed_refs->lock);
2866
David Sterbab3b4aa72011-04-21 01:20:15 +02002867 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002868
David Sterba8cc33e52011-05-02 15:29:25 +02002869 /*
2870 * Mutex was contended, block until it's released and let
2871 * caller try again
2872 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002873 mutex_lock(&head->mutex);
2874 mutex_unlock(&head->mutex);
2875 btrfs_put_delayed_ref(&head->node);
2876 return -EAGAIN;
2877 }
2878
2879 node = rb_prev(&head->node.rb_node);
2880 if (!node)
2881 goto out_unlock;
2882
2883 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
2884
2885 if (ref->bytenr != bytenr)
2886 goto out_unlock;
2887
2888 ret = 1;
2889 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY)
2890 goto out_unlock;
2891
2892 data_ref = btrfs_delayed_node_to_data_ref(ref);
2893
2894 node = rb_prev(node);
2895 if (node) {
Liu Bodf57dbe2012-07-23 05:50:03 -06002896 int seq = ref->seq;
2897
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002898 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
Liu Bodf57dbe2012-07-23 05:50:03 -06002899 if (ref->bytenr == bytenr && ref->seq == seq)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002900 goto out_unlock;
2901 }
2902
2903 if (data_ref->root != root->root_key.objectid ||
2904 data_ref->objectid != objectid || data_ref->offset != offset)
2905 goto out_unlock;
2906
2907 ret = 0;
2908out_unlock:
2909 mutex_unlock(&head->mutex);
2910out:
2911 spin_unlock(&delayed_refs->lock);
2912 return ret;
2913}
2914
2915static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
2916 struct btrfs_root *root,
2917 struct btrfs_path *path,
2918 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05002919{
2920 struct btrfs_root *extent_root = root->fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04002921 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002922 struct btrfs_extent_data_ref *ref;
2923 struct btrfs_extent_inline_ref *iref;
2924 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05002925 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002926 u32 item_size;
Yan Zhengf321e492008-07-30 09:26:11 -04002927 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05002928
Chris Masonbe20aa92007-12-17 20:14:01 -05002929 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04002930 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04002931 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05002932
Chris Masonbe20aa92007-12-17 20:14:01 -05002933 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2934 if (ret < 0)
2935 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002936 BUG_ON(ret == 0); /* Corruption */
Yan Zheng80ff3852008-10-30 14:20:02 -04002937
2938 ret = -ENOENT;
2939 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04002940 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002941
Zheng Yan31840ae2008-09-23 13:14:14 -04002942 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04002943 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002944 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05002945
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002946 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05002947 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002948
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002949 ret = 1;
2950 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2951#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2952 if (item_size < sizeof(*ei)) {
2953 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
2954 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002955 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002956#endif
2957 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2958
2959 if (item_size != sizeof(*ei) +
2960 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
2961 goto out;
2962
2963 if (btrfs_extent_generation(leaf, ei) <=
2964 btrfs_root_last_snapshot(&root->root_item))
2965 goto out;
2966
2967 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
2968 if (btrfs_extent_inline_ref_type(leaf, iref) !=
2969 BTRFS_EXTENT_DATA_REF_KEY)
2970 goto out;
2971
2972 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
2973 if (btrfs_extent_refs(leaf, ei) !=
2974 btrfs_extent_data_ref_count(leaf, ref) ||
2975 btrfs_extent_data_ref_root(leaf, ref) !=
2976 root->root_key.objectid ||
2977 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
2978 btrfs_extent_data_ref_offset(leaf, ref) != offset)
2979 goto out;
2980
Yan Zhengf321e492008-07-30 09:26:11 -04002981 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05002982out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002983 return ret;
2984}
2985
2986int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
2987 struct btrfs_root *root,
2988 u64 objectid, u64 offset, u64 bytenr)
2989{
2990 struct btrfs_path *path;
2991 int ret;
2992 int ret2;
2993
2994 path = btrfs_alloc_path();
2995 if (!path)
2996 return -ENOENT;
2997
2998 do {
2999 ret = check_committed_ref(trans, root, path, objectid,
3000 offset, bytenr);
3001 if (ret && ret != -ENOENT)
3002 goto out;
3003
3004 ret2 = check_delayed_ref(trans, root, path, objectid,
3005 offset, bytenr);
3006 } while (ret2 == -EAGAIN);
3007
3008 if (ret2 && ret2 != -ENOENT) {
3009 ret = ret2;
3010 goto out;
3011 }
3012
3013 if (ret != -ENOENT || ret2 != -ENOENT)
3014 ret = 0;
3015out:
Yan Zhengf321e492008-07-30 09:26:11 -04003016 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003017 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3018 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04003019 return ret;
3020}
3021
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003022static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05003023 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003024 struct extent_buffer *buf,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003025 int full_backref, int inc, int for_cow)
Zheng Yan31840ae2008-09-23 13:14:14 -04003026{
3027 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003028 u64 num_bytes;
3029 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003030 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04003031 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04003032 struct btrfs_key key;
3033 struct btrfs_file_extent_item *fi;
3034 int i;
3035 int level;
3036 int ret = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04003037 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003038 u64, u64, u64, u64, u64, u64, int);
Zheng Yan31840ae2008-09-23 13:14:14 -04003039
3040 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04003041 nritems = btrfs_header_nritems(buf);
3042 level = btrfs_header_level(buf);
3043
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003044 if (!root->ref_cows && level == 0)
3045 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05003046
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003047 if (inc)
3048 process_func = btrfs_inc_extent_ref;
3049 else
3050 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003051
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003052 if (full_backref)
3053 parent = buf->start;
3054 else
3055 parent = 0;
3056
Zheng Yan31840ae2008-09-23 13:14:14 -04003057 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04003058 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003059 btrfs_item_key_to_cpu(buf, &key, i);
3060 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04003061 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003062 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04003063 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003064 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04003065 BTRFS_FILE_EXTENT_INLINE)
3066 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003067 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3068 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04003069 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003070
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003071 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3072 key.offset -= btrfs_file_extent_offset(buf, fi);
3073 ret = process_func(trans, root, bytenr, num_bytes,
3074 parent, ref_root, key.objectid,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003075 key.offset, for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003076 if (ret)
3077 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05003078 } else {
3079 bytenr = btrfs_node_blockptr(buf, i);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003080 num_bytes = btrfs_level_size(root, level - 1);
3081 ret = process_func(trans, root, bytenr, num_bytes,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003082 parent, ref_root, level - 1, 0,
3083 for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003084 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04003085 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04003086 }
3087 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003088 return 0;
3089fail:
Chris Mason54aa1f42007-06-22 14:16:25 -04003090 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05003091}
3092
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003093int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003094 struct extent_buffer *buf, int full_backref, int for_cow)
Zheng Yan31840ae2008-09-23 13:14:14 -04003095{
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003096 return __btrfs_mod_ref(trans, root, buf, full_backref, 1, for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003097}
Zheng Yan31840ae2008-09-23 13:14:14 -04003098
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003099int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003100 struct extent_buffer *buf, int full_backref, int for_cow)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003101{
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003102 return __btrfs_mod_ref(trans, root, buf, full_backref, 0, for_cow);
Zheng Yan31840ae2008-09-23 13:14:14 -04003103}
3104
Chris Mason9078a3e2007-04-26 16:46:15 -04003105static int write_one_cache_group(struct btrfs_trans_handle *trans,
3106 struct btrfs_root *root,
3107 struct btrfs_path *path,
3108 struct btrfs_block_group_cache *cache)
3109{
3110 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003111 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003112 unsigned long bi;
3113 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04003114
Chris Mason9078a3e2007-04-26 16:46:15 -04003115 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003116 if (ret < 0)
3117 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003118 BUG_ON(ret); /* Corruption */
Chris Mason5f39d392007-10-15 16:14:19 -04003119
3120 leaf = path->nodes[0];
3121 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3122 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3123 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003124 btrfs_release_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04003125fail:
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003126 if (ret) {
3127 btrfs_abort_transaction(trans, root, ret);
Chris Mason9078a3e2007-04-26 16:46:15 -04003128 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003129 }
Chris Mason9078a3e2007-04-26 16:46:15 -04003130 return 0;
3131
3132}
3133
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003134static struct btrfs_block_group_cache *
3135next_block_group(struct btrfs_root *root,
3136 struct btrfs_block_group_cache *cache)
3137{
3138 struct rb_node *node;
3139 spin_lock(&root->fs_info->block_group_cache_lock);
3140 node = rb_next(&cache->cache_node);
3141 btrfs_put_block_group(cache);
3142 if (node) {
3143 cache = rb_entry(node, struct btrfs_block_group_cache,
3144 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00003145 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003146 } else
3147 cache = NULL;
3148 spin_unlock(&root->fs_info->block_group_cache_lock);
3149 return cache;
3150}
3151
Josef Bacik0af3d002010-06-21 14:48:16 -04003152static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3153 struct btrfs_trans_handle *trans,
3154 struct btrfs_path *path)
3155{
3156 struct btrfs_root *root = block_group->fs_info->tree_root;
3157 struct inode *inode = NULL;
3158 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05003159 int dcs = BTRFS_DC_ERROR;
Josef Bacik0af3d002010-06-21 14:48:16 -04003160 int num_pages = 0;
3161 int retries = 0;
3162 int ret = 0;
3163
3164 /*
3165 * If this block group is smaller than 100 megs don't bother caching the
3166 * block group.
3167 */
3168 if (block_group->key.offset < (100 * 1024 * 1024)) {
3169 spin_lock(&block_group->lock);
3170 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3171 spin_unlock(&block_group->lock);
3172 return 0;
3173 }
3174
3175again:
3176 inode = lookup_free_space_inode(root, block_group, path);
3177 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3178 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02003179 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003180 goto out;
3181 }
3182
3183 if (IS_ERR(inode)) {
3184 BUG_ON(retries);
3185 retries++;
3186
3187 if (block_group->ro)
3188 goto out_free;
3189
3190 ret = create_free_space_inode(root, trans, block_group, path);
3191 if (ret)
3192 goto out_free;
3193 goto again;
3194 }
3195
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003196 /* We've already setup this transaction, go ahead and exit */
3197 if (block_group->cache_generation == trans->transid &&
3198 i_size_read(inode)) {
3199 dcs = BTRFS_DC_SETUP;
3200 goto out_put;
3201 }
3202
Josef Bacik0af3d002010-06-21 14:48:16 -04003203 /*
3204 * We want to set the generation to 0, that way if anything goes wrong
3205 * from here on out we know not to trust this cache when we load up next
3206 * time.
3207 */
3208 BTRFS_I(inode)->generation = 0;
3209 ret = btrfs_update_inode(trans, root, inode);
3210 WARN_ON(ret);
3211
3212 if (i_size_read(inode) > 0) {
Miao Xie7b61cd92013-05-13 13:55:09 +00003213 ret = btrfs_check_trunc_cache_free_space(root,
3214 &root->fs_info->global_block_rsv);
3215 if (ret)
3216 goto out_put;
3217
Filipe David Borba Manana74514322013-09-20 14:46:51 +01003218 ret = btrfs_truncate_free_space_cache(root, trans, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003219 if (ret)
3220 goto out_put;
3221 }
3222
3223 spin_lock(&block_group->lock);
Liu Bocf7c1ef2012-07-06 03:31:34 -06003224 if (block_group->cached != BTRFS_CACHE_FINISHED ||
3225 !btrfs_test_opt(root, SPACE_CACHE)) {
3226 /*
3227 * don't bother trying to write stuff out _if_
3228 * a) we're not cached,
3229 * b) we're with nospace_cache mount option.
3230 */
Josef Bacik2b209822010-12-03 13:17:53 -05003231 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04003232 spin_unlock(&block_group->lock);
3233 goto out_put;
3234 }
3235 spin_unlock(&block_group->lock);
3236
Josef Bacik6fc823b2012-08-06 13:46:38 -06003237 /*
3238 * Try to preallocate enough space based on how big the block group is.
3239 * Keep in mind this has to include any pinned space which could end up
3240 * taking up quite a bit since it's not folded into the other space
3241 * cache.
3242 */
3243 num_pages = (int)div64_u64(block_group->key.offset, 256 * 1024 * 1024);
Josef Bacik0af3d002010-06-21 14:48:16 -04003244 if (!num_pages)
3245 num_pages = 1;
3246
Josef Bacik0af3d002010-06-21 14:48:16 -04003247 num_pages *= 16;
3248 num_pages *= PAGE_CACHE_SIZE;
3249
3250 ret = btrfs_check_data_free_space(inode, num_pages);
3251 if (ret)
3252 goto out_put;
3253
3254 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3255 num_pages, num_pages,
3256 &alloc_hint);
Josef Bacik2b209822010-12-03 13:17:53 -05003257 if (!ret)
3258 dcs = BTRFS_DC_SETUP;
Josef Bacik0af3d002010-06-21 14:48:16 -04003259 btrfs_free_reserved_data_space(inode, num_pages);
Josef Bacikc09544e2011-08-30 10:19:10 -04003260
Josef Bacik0af3d002010-06-21 14:48:16 -04003261out_put:
3262 iput(inode);
3263out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02003264 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003265out:
3266 spin_lock(&block_group->lock);
Josef Bacike65cbb92011-12-13 16:04:54 -05003267 if (!ret && dcs == BTRFS_DC_SETUP)
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003268 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05003269 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04003270 spin_unlock(&block_group->lock);
3271
3272 return ret;
3273}
3274
Chris Mason96b51792007-10-15 16:15:19 -04003275int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
3276 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04003277{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003278 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04003279 int err = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003280 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -04003281 u64 last = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003282
3283 path = btrfs_alloc_path();
3284 if (!path)
3285 return -ENOMEM;
3286
Josef Bacik0af3d002010-06-21 14:48:16 -04003287again:
3288 while (1) {
3289 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3290 while (cache) {
3291 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3292 break;
3293 cache = next_block_group(root, cache);
3294 }
3295 if (!cache) {
3296 if (last == 0)
3297 break;
3298 last = 0;
3299 continue;
3300 }
3301 err = cache_save_setup(cache, trans, path);
3302 last = cache->key.objectid + cache->key.offset;
3303 btrfs_put_block_group(cache);
3304 }
3305
Chris Masond3977122009-01-05 21:25:51 -05003306 while (1) {
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003307 if (last == 0) {
3308 err = btrfs_run_delayed_refs(trans, root,
3309 (unsigned long)-1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003310 if (err) /* File system offline */
3311 goto out;
Josef Bacik0f9dd462008-09-23 13:14:11 -04003312 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04003313
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003314 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3315 while (cache) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003316 if (cache->disk_cache_state == BTRFS_DC_CLEAR) {
3317 btrfs_put_block_group(cache);
3318 goto again;
3319 }
3320
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003321 if (cache->dirty)
3322 break;
3323 cache = next_block_group(root, cache);
3324 }
3325 if (!cache) {
3326 if (last == 0)
3327 break;
3328 last = 0;
Chris Mason96b51792007-10-15 16:15:19 -04003329 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -04003330 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003331
Josef Bacik0cb59c92010-07-02 12:14:14 -04003332 if (cache->disk_cache_state == BTRFS_DC_SETUP)
3333 cache->disk_cache_state = BTRFS_DC_NEED_WRITE;
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003334 cache->dirty = 0;
3335 last = cache->key.objectid + cache->key.offset;
3336
3337 err = write_one_cache_group(trans, root, path, cache);
Filipe David Borba Mananae84cc142013-09-09 19:49:43 +01003338 btrfs_put_block_group(cache);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003339 if (err) /* File system offline */
3340 goto out;
Chris Mason9078a3e2007-04-26 16:46:15 -04003341 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003342
Josef Bacik0cb59c92010-07-02 12:14:14 -04003343 while (1) {
3344 /*
3345 * I don't think this is needed since we're just marking our
3346 * preallocated extent as written, but just in case it can't
3347 * hurt.
3348 */
3349 if (last == 0) {
3350 err = btrfs_run_delayed_refs(trans, root,
3351 (unsigned long)-1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003352 if (err) /* File system offline */
3353 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -04003354 }
3355
3356 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3357 while (cache) {
3358 /*
3359 * Really this shouldn't happen, but it could if we
3360 * couldn't write the entire preallocated extent and
3361 * splitting the extent resulted in a new block.
3362 */
3363 if (cache->dirty) {
3364 btrfs_put_block_group(cache);
3365 goto again;
3366 }
3367 if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
3368 break;
3369 cache = next_block_group(root, cache);
3370 }
3371 if (!cache) {
3372 if (last == 0)
3373 break;
3374 last = 0;
3375 continue;
3376 }
3377
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003378 err = btrfs_write_out_cache(root, trans, cache, path);
Josef Bacik0cb59c92010-07-02 12:14:14 -04003379
3380 /*
3381 * If we didn't have an error then the cache state is still
3382 * NEED_WRITE, so we can set it to WRITTEN.
3383 */
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003384 if (!err && cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
Josef Bacik0cb59c92010-07-02 12:14:14 -04003385 cache->disk_cache_state = BTRFS_DC_WRITTEN;
3386 last = cache->key.objectid + cache->key.offset;
3387 btrfs_put_block_group(cache);
3388 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003389out:
Josef Bacik0cb59c92010-07-02 12:14:14 -04003390
Chris Mason9078a3e2007-04-26 16:46:15 -04003391 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003392 return err;
Chris Mason9078a3e2007-04-26 16:46:15 -04003393}
3394
Yan Zhengd2fb3432008-12-11 16:30:39 -05003395int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
3396{
3397 struct btrfs_block_group_cache *block_group;
3398 int readonly = 0;
3399
3400 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
3401 if (!block_group || block_group->ro)
3402 readonly = 1;
3403 if (block_group)
Chris Masonfa9c0d72009-04-03 09:47:43 -04003404 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003405 return readonly;
3406}
3407
Chris Mason593060d2008-03-25 16:50:33 -04003408static int update_space_info(struct btrfs_fs_info *info, u64 flags,
3409 u64 total_bytes, u64 bytes_used,
3410 struct btrfs_space_info **space_info)
3411{
3412 struct btrfs_space_info *found;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003413 int i;
3414 int factor;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003415 int ret;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003416
3417 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
3418 BTRFS_BLOCK_GROUP_RAID10))
3419 factor = 2;
3420 else
3421 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04003422
3423 found = __find_space_info(info, flags);
3424 if (found) {
Josef Bacik25179202008-10-29 14:49:05 -04003425 spin_lock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003426 found->total_bytes += total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003427 found->disk_total += total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003428 found->bytes_used += bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003429 found->disk_used += bytes_used * factor;
Chris Mason8f18cf12008-04-25 16:53:30 -04003430 found->full = 0;
Josef Bacik25179202008-10-29 14:49:05 -04003431 spin_unlock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003432 *space_info = found;
3433 return 0;
3434 }
Yan Zhengc146afa2008-11-12 14:34:12 -05003435 found = kzalloc(sizeof(*found), GFP_NOFS);
Chris Mason593060d2008-03-25 16:50:33 -04003436 if (!found)
3437 return -ENOMEM;
3438
Josef Bacikb150a4f2013-06-19 15:00:04 -04003439 ret = percpu_counter_init(&found->total_bytes_pinned, 0);
3440 if (ret) {
3441 kfree(found);
3442 return ret;
3443 }
3444
Yan, Zhengb742bb82010-05-16 10:46:24 -04003445 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
3446 INIT_LIST_HEAD(&found->block_groups[i]);
Josef Bacik80eb2342008-10-29 14:49:05 -04003447 init_rwsem(&found->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003448 spin_lock_init(&found->lock);
Ilya Dryomov52ba6922012-01-16 22:04:47 +02003449 found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
Chris Mason593060d2008-03-25 16:50:33 -04003450 found->total_bytes = total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003451 found->disk_total = total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003452 found->bytes_used = bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003453 found->disk_used = bytes_used * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003454 found->bytes_pinned = 0;
Zheng Yane8569812008-09-26 10:05:48 -04003455 found->bytes_reserved = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003456 found->bytes_readonly = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003457 found->bytes_may_use = 0;
Chris Mason593060d2008-03-25 16:50:33 -04003458 found->full = 0;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003459 found->force_alloc = CHUNK_ALLOC_NO_FORCE;
Josef Bacik6d741192011-04-11 20:20:11 -04003460 found->chunk_alloc = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003461 found->flush = 0;
3462 init_waitqueue_head(&found->wait);
Chris Mason593060d2008-03-25 16:50:33 -04003463 *space_info = found;
Chris Mason4184ea72009-03-10 12:39:20 -04003464 list_add_rcu(&found->list, &info->space_info);
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003465 if (flags & BTRFS_BLOCK_GROUP_DATA)
3466 info->data_sinfo = found;
Chris Mason593060d2008-03-25 16:50:33 -04003467 return 0;
3468}
3469
Chris Mason8790d502008-04-03 16:29:03 -04003470static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3471{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003472 u64 extra_flags = chunk_to_extended(flags) &
3473 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003474
Miao Xiede98ced2013-01-29 10:13:12 +00003475 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003476 if (flags & BTRFS_BLOCK_GROUP_DATA)
3477 fs_info->avail_data_alloc_bits |= extra_flags;
3478 if (flags & BTRFS_BLOCK_GROUP_METADATA)
3479 fs_info->avail_metadata_alloc_bits |= extra_flags;
3480 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3481 fs_info->avail_system_alloc_bits |= extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003482 write_sequnlock(&fs_info->profiles_lock);
Chris Mason8790d502008-04-03 16:29:03 -04003483}
Chris Mason593060d2008-03-25 16:50:33 -04003484
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003485/*
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003486 * returns target flags in extended format or 0 if restripe for this
3487 * chunk_type is not in progress
Ilya Dryomovc6664b42012-04-12 16:03:56 -04003488 *
3489 * should be called with either volume_mutex or balance_lock held
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003490 */
3491static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
3492{
3493 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3494 u64 target = 0;
3495
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003496 if (!bctl)
3497 return 0;
3498
3499 if (flags & BTRFS_BLOCK_GROUP_DATA &&
3500 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3501 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
3502 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
3503 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3504 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
3505 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
3506 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3507 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
3508 }
3509
3510 return target;
3511}
3512
3513/*
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003514 * @flags: available profiles in extended format (see ctree.h)
3515 *
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003516 * Returns reduced profile in chunk format. If profile changing is in
3517 * progress (either running or paused) picks the target profile (if it's
3518 * already available), otherwise falls back to plain reducing.
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003519 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003520static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04003521{
Chris Masoncd02dca2010-12-13 14:56:23 -05003522 /*
3523 * we add in the count of missing devices because we want
3524 * to make sure that any RAID levels on a degraded FS
3525 * continue to be honored.
3526 */
3527 u64 num_devices = root->fs_info->fs_devices->rw_devices +
3528 root->fs_info->fs_devices->missing_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003529 u64 target;
David Woodhouse53b381b2013-01-29 18:40:14 -05003530 u64 tmp;
Chris Masona061fc82008-05-07 11:43:44 -04003531
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003532 /*
3533 * see if restripe for this chunk_type is in progress, if so
3534 * try to reduce to the target profile
3535 */
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003536 spin_lock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003537 target = get_restripe_target(root->fs_info, flags);
3538 if (target) {
3539 /* pick target profile only if it's already available */
3540 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003541 spin_unlock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003542 return extended_to_chunk(target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003543 }
3544 }
3545 spin_unlock(&root->fs_info->balance_lock);
3546
David Woodhouse53b381b2013-01-29 18:40:14 -05003547 /* First, mask out the RAID levels which aren't possible */
Chris Masona061fc82008-05-07 11:43:44 -04003548 if (num_devices == 1)
David Woodhouse53b381b2013-01-29 18:40:14 -05003549 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0 |
3550 BTRFS_BLOCK_GROUP_RAID5);
3551 if (num_devices < 3)
3552 flags &= ~BTRFS_BLOCK_GROUP_RAID6;
Chris Masona061fc82008-05-07 11:43:44 -04003553 if (num_devices < 4)
3554 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
3555
David Woodhouse53b381b2013-01-29 18:40:14 -05003556 tmp = flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID0 |
3557 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID5 |
3558 BTRFS_BLOCK_GROUP_RAID6 | BTRFS_BLOCK_GROUP_RAID10);
3559 flags &= ~tmp;
Chris Masonec44a352008-04-28 15:29:52 -04003560
David Woodhouse53b381b2013-01-29 18:40:14 -05003561 if (tmp & BTRFS_BLOCK_GROUP_RAID6)
3562 tmp = BTRFS_BLOCK_GROUP_RAID6;
3563 else if (tmp & BTRFS_BLOCK_GROUP_RAID5)
3564 tmp = BTRFS_BLOCK_GROUP_RAID5;
3565 else if (tmp & BTRFS_BLOCK_GROUP_RAID10)
3566 tmp = BTRFS_BLOCK_GROUP_RAID10;
3567 else if (tmp & BTRFS_BLOCK_GROUP_RAID1)
3568 tmp = BTRFS_BLOCK_GROUP_RAID1;
3569 else if (tmp & BTRFS_BLOCK_GROUP_RAID0)
3570 tmp = BTRFS_BLOCK_GROUP_RAID0;
Chris Masonec44a352008-04-28 15:29:52 -04003571
David Woodhouse53b381b2013-01-29 18:40:14 -05003572 return extended_to_chunk(flags | tmp);
Chris Masonec44a352008-04-28 15:29:52 -04003573}
3574
Yan, Zhengb742bb82010-05-16 10:46:24 -04003575static u64 get_alloc_profile(struct btrfs_root *root, u64 flags)
Josef Bacik6a632092009-02-20 11:00:09 -05003576{
Miao Xiede98ced2013-01-29 10:13:12 +00003577 unsigned seq;
3578
3579 do {
3580 seq = read_seqbegin(&root->fs_info->profiles_lock);
3581
3582 if (flags & BTRFS_BLOCK_GROUP_DATA)
3583 flags |= root->fs_info->avail_data_alloc_bits;
3584 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3585 flags |= root->fs_info->avail_system_alloc_bits;
3586 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
3587 flags |= root->fs_info->avail_metadata_alloc_bits;
3588 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02003589
Yan, Zhengb742bb82010-05-16 10:46:24 -04003590 return btrfs_reduce_alloc_profile(root, flags);
3591}
Josef Bacik6a632092009-02-20 11:00:09 -05003592
Miao Xie6d07bce2011-01-05 10:07:31 +00003593u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
Yan, Zhengb742bb82010-05-16 10:46:24 -04003594{
3595 u64 flags;
David Woodhouse53b381b2013-01-29 18:40:14 -05003596 u64 ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003597
Yan, Zhengb742bb82010-05-16 10:46:24 -04003598 if (data)
3599 flags = BTRFS_BLOCK_GROUP_DATA;
3600 else if (root == root->fs_info->chunk_root)
3601 flags = BTRFS_BLOCK_GROUP_SYSTEM;
3602 else
3603 flags = BTRFS_BLOCK_GROUP_METADATA;
3604
David Woodhouse53b381b2013-01-29 18:40:14 -05003605 ret = get_alloc_profile(root, flags);
3606 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003607}
3608
Josef Bacik6a632092009-02-20 11:00:09 -05003609/*
3610 * This will check the space that the inode allocates from to make sure we have
3611 * enough space for bytes.
3612 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003613int btrfs_check_data_free_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003614{
3615 struct btrfs_space_info *data_sinfo;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003616 struct btrfs_root *root = BTRFS_I(inode)->root;
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003617 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacikab6e24102010-03-19 14:38:13 +00003618 u64 used;
Josef Bacik0af3d002010-06-21 14:48:16 -04003619 int ret = 0, committed = 0, alloc_chunk = 1;
Josef Bacik6a632092009-02-20 11:00:09 -05003620
3621 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00003622 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05003623
Li Zefan82d59022011-04-20 10:33:24 +08003624 if (root == root->fs_info->tree_root ||
3625 BTRFS_I(inode)->location.objectid == BTRFS_FREE_INO_OBJECTID) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003626 alloc_chunk = 0;
3627 committed = 1;
3628 }
3629
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003630 data_sinfo = fs_info->data_sinfo;
Chris Mason33b4d472009-09-22 14:45:50 -04003631 if (!data_sinfo)
3632 goto alloc;
3633
Josef Bacik6a632092009-02-20 11:00:09 -05003634again:
3635 /* make sure we have enough space to handle the data first */
3636 spin_lock(&data_sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003637 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
3638 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
3639 data_sinfo->bytes_may_use;
Josef Bacikab6e24102010-03-19 14:38:13 +00003640
3641 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003642 struct btrfs_trans_handle *trans;
3643
Josef Bacik6a632092009-02-20 11:00:09 -05003644 /*
3645 * if we don't have enough free bytes in this space then we need
3646 * to alloc a new chunk.
3647 */
Josef Bacik0af3d002010-06-21 14:48:16 -04003648 if (!data_sinfo->full && alloc_chunk) {
Josef Bacik6a632092009-02-20 11:00:09 -05003649 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05003650
Chris Mason0e4f8f82011-04-15 16:05:44 -04003651 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05003652 spin_unlock(&data_sinfo->lock);
Chris Mason33b4d472009-09-22 14:45:50 -04003653alloc:
Josef Bacik6a632092009-02-20 11:00:09 -05003654 alloc_target = btrfs_get_alloc_profile(root, 1);
Josef Bacik7a7eaa402011-04-13 12:54:33 -04003655 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003656 if (IS_ERR(trans))
3657 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05003658
3659 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0e4f8f82011-04-15 16:05:44 -04003660 alloc_target,
3661 CHUNK_ALLOC_NO_FORCE);
Josef Bacik6a632092009-02-20 11:00:09 -05003662 btrfs_end_transaction(trans, root);
Miao Xied52a5b52011-01-05 10:07:18 +00003663 if (ret < 0) {
3664 if (ret != -ENOSPC)
3665 return ret;
3666 else
3667 goto commit_trans;
3668 }
Chris Mason33b4d472009-09-22 14:45:50 -04003669
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003670 if (!data_sinfo)
3671 data_sinfo = fs_info->data_sinfo;
3672
Josef Bacik6a632092009-02-20 11:00:09 -05003673 goto again;
3674 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003675
3676 /*
Josef Bacikb150a4f2013-06-19 15:00:04 -04003677 * If we don't have enough pinned space to deal with this
3678 * allocation don't bother committing the transaction.
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003679 */
Josef Bacikb150a4f2013-06-19 15:00:04 -04003680 if (percpu_counter_compare(&data_sinfo->total_bytes_pinned,
3681 bytes) < 0)
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003682 committed = 1;
Josef Bacik6a632092009-02-20 11:00:09 -05003683 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003684
3685 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00003686commit_trans:
Josef Bacika4abeea2011-04-11 17:25:13 -04003687 if (!committed &&
3688 !atomic_read(&root->fs_info->open_ioctl_trans)) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003689 committed = 1;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003690
Josef Bacik7a7eaa402011-04-13 12:54:33 -04003691 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003692 if (IS_ERR(trans))
3693 return PTR_ERR(trans);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003694 ret = btrfs_commit_transaction(trans, root);
3695 if (ret)
3696 return ret;
3697 goto again;
3698 }
3699
Jeff Mahoneycab45e22013-10-16 16:27:01 -04003700 trace_btrfs_space_reservation(root->fs_info,
3701 "space_info:enospc",
3702 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05003703 return -ENOSPC;
3704 }
3705 data_sinfo->bytes_may_use += bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05003706 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04003707 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05003708 spin_unlock(&data_sinfo->lock);
3709
Josef Bacik9ed74f22009-09-11 16:12:44 -04003710 return 0;
Josef Bacik6a632092009-02-20 11:00:09 -05003711}
3712
3713/*
Josef Bacikfb25e912011-07-26 17:00:46 -04003714 * Called if we need to clear a data reservation for this inode.
Josef Bacik6a632092009-02-20 11:00:09 -05003715 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003716void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003717{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003718 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003719 struct btrfs_space_info *data_sinfo;
3720
3721 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00003722 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05003723
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003724 data_sinfo = root->fs_info->data_sinfo;
Josef Bacik6a632092009-02-20 11:00:09 -05003725 spin_lock(&data_sinfo->lock);
Josef Bacik7ee9e442013-06-21 16:37:03 -04003726 WARN_ON(data_sinfo->bytes_may_use < bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05003727 data_sinfo->bytes_may_use -= bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05003728 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04003729 data_sinfo->flags, bytes, 0);
Josef Bacik6a632092009-02-20 11:00:09 -05003730 spin_unlock(&data_sinfo->lock);
3731}
3732
Josef Bacik97e728d2009-04-21 17:40:57 -04003733static void force_metadata_allocation(struct btrfs_fs_info *info)
3734{
3735 struct list_head *head = &info->space_info;
3736 struct btrfs_space_info *found;
3737
3738 rcu_read_lock();
3739 list_for_each_entry_rcu(found, head, list) {
3740 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04003741 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04003742 }
3743 rcu_read_unlock();
3744}
3745
Miao Xie3c76cd82013-04-25 10:12:38 +00003746static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
3747{
3748 return (global->size << 1);
3749}
3750
Chris Masone5bc2452010-10-26 13:37:56 -04003751static int should_alloc_chunk(struct btrfs_root *root,
Josef Bacik698d0082012-09-12 14:08:47 -04003752 struct btrfs_space_info *sinfo, int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04003753{
Josef Bacikfb25e912011-07-26 17:00:46 -04003754 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zheng424499d2010-05-16 10:46:25 -04003755 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003756 u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved;
Chris Masone5bc2452010-10-26 13:37:56 -04003757 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04003758
Chris Mason0e4f8f82011-04-15 16:05:44 -04003759 if (force == CHUNK_ALLOC_FORCE)
3760 return 1;
3761
3762 /*
Josef Bacikfb25e912011-07-26 17:00:46 -04003763 * We need to take into account the global rsv because for all intents
3764 * and purposes it's used space. Don't worry about locking the
3765 * global_rsv, it doesn't change except when the transaction commits.
3766 */
Josef Bacik54338b52012-08-14 16:20:52 -04003767 if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA)
Miao Xie3c76cd82013-04-25 10:12:38 +00003768 num_allocated += calc_global_rsv_need_space(global_rsv);
Josef Bacikfb25e912011-07-26 17:00:46 -04003769
3770 /*
Chris Mason0e4f8f82011-04-15 16:05:44 -04003771 * in limited mode, we want to have some free space up to
3772 * about 1% of the FS size.
3773 */
3774 if (force == CHUNK_ALLOC_LIMITED) {
David Sterba6c417612011-04-13 15:41:04 +02003775 thresh = btrfs_super_total_bytes(root->fs_info->super_copy);
Chris Mason0e4f8f82011-04-15 16:05:44 -04003776 thresh = max_t(u64, 64 * 1024 * 1024,
3777 div_factor_fine(thresh, 1));
3778
3779 if (num_bytes - num_allocated < thresh)
3780 return 1;
3781 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04003782
Josef Bacik698d0082012-09-12 14:08:47 -04003783 if (num_allocated + 2 * 1024 * 1024 < div_factor(num_bytes, 8))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04003784 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04003785 return 1;
3786}
3787
Liu Bo15d1ff82012-03-29 09:57:44 -04003788static u64 get_system_chunk_thresh(struct btrfs_root *root, u64 type)
3789{
3790 u64 num_dev;
3791
David Woodhouse53b381b2013-01-29 18:40:14 -05003792 if (type & (BTRFS_BLOCK_GROUP_RAID10 |
3793 BTRFS_BLOCK_GROUP_RAID0 |
3794 BTRFS_BLOCK_GROUP_RAID5 |
3795 BTRFS_BLOCK_GROUP_RAID6))
Liu Bo15d1ff82012-03-29 09:57:44 -04003796 num_dev = root->fs_info->fs_devices->rw_devices;
3797 else if (type & BTRFS_BLOCK_GROUP_RAID1)
3798 num_dev = 2;
3799 else
3800 num_dev = 1; /* DUP or single */
3801
3802 /* metadata for updaing devices and chunk tree */
3803 return btrfs_calc_trans_metadata_size(root, num_dev + 1);
3804}
3805
3806static void check_system_chunk(struct btrfs_trans_handle *trans,
3807 struct btrfs_root *root, u64 type)
3808{
3809 struct btrfs_space_info *info;
3810 u64 left;
3811 u64 thresh;
3812
3813 info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
3814 spin_lock(&info->lock);
3815 left = info->total_bytes - info->bytes_used - info->bytes_pinned -
3816 info->bytes_reserved - info->bytes_readonly;
3817 spin_unlock(&info->lock);
3818
3819 thresh = get_system_chunk_thresh(root, type);
3820 if (left < thresh && btrfs_test_opt(root, ENOSPC_DEBUG)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003821 btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu",
3822 left, thresh, type);
Liu Bo15d1ff82012-03-29 09:57:44 -04003823 dump_space_info(info, 0, 0);
3824 }
3825
3826 if (left < thresh) {
3827 u64 flags;
3828
3829 flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0);
3830 btrfs_alloc_chunk(trans, root, flags);
3831 }
3832}
3833
Chris Mason6324fbf2008-03-24 15:01:59 -04003834static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Josef Bacik698d0082012-09-12 14:08:47 -04003835 struct btrfs_root *extent_root, u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04003836{
3837 struct btrfs_space_info *space_info;
Josef Bacik97e728d2009-04-21 17:40:57 -04003838 struct btrfs_fs_info *fs_info = extent_root->fs_info;
Josef Bacik6d741192011-04-11 20:20:11 -04003839 int wait_for_alloc = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003840 int ret = 0;
3841
Josef Bacikc6b305a2012-12-18 09:16:16 -05003842 /* Don't re-enter if we're already allocating a chunk */
3843 if (trans->allocating_chunk)
3844 return -ENOSPC;
3845
Chris Mason6324fbf2008-03-24 15:01:59 -04003846 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04003847 if (!space_info) {
3848 ret = update_space_info(extent_root->fs_info, flags,
3849 0, 0, &space_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003850 BUG_ON(ret); /* -ENOMEM */
Chris Mason593060d2008-03-25 16:50:33 -04003851 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003852 BUG_ON(!space_info); /* Logic error */
Chris Mason6324fbf2008-03-24 15:01:59 -04003853
Josef Bacik6d741192011-04-11 20:20:11 -04003854again:
Josef Bacik25179202008-10-29 14:49:05 -04003855 spin_lock(&space_info->lock);
Miao Xie9e622d62012-01-26 15:01:12 -05003856 if (force < space_info->force_alloc)
Chris Mason0e4f8f82011-04-15 16:05:44 -04003857 force = space_info->force_alloc;
Josef Bacik25179202008-10-29 14:49:05 -04003858 if (space_info->full) {
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01003859 if (should_alloc_chunk(extent_root, space_info, force))
3860 ret = -ENOSPC;
3861 else
3862 ret = 0;
Josef Bacik25179202008-10-29 14:49:05 -04003863 spin_unlock(&space_info->lock);
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01003864 return ret;
Josef Bacik25179202008-10-29 14:49:05 -04003865 }
Chris Mason6324fbf2008-03-24 15:01:59 -04003866
Josef Bacik698d0082012-09-12 14:08:47 -04003867 if (!should_alloc_chunk(extent_root, space_info, force)) {
Josef Bacik25179202008-10-29 14:49:05 -04003868 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04003869 return 0;
3870 } else if (space_info->chunk_alloc) {
3871 wait_for_alloc = 1;
3872 } else {
3873 space_info->chunk_alloc = 1;
Josef Bacik25179202008-10-29 14:49:05 -04003874 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04003875
Josef Bacik25179202008-10-29 14:49:05 -04003876 spin_unlock(&space_info->lock);
3877
Josef Bacik6d741192011-04-11 20:20:11 -04003878 mutex_lock(&fs_info->chunk_mutex);
3879
3880 /*
3881 * The chunk_mutex is held throughout the entirety of a chunk
3882 * allocation, so once we've acquired the chunk_mutex we know that the
3883 * other guy is done and we need to recheck and see if we should
3884 * allocate.
3885 */
3886 if (wait_for_alloc) {
3887 mutex_unlock(&fs_info->chunk_mutex);
3888 wait_for_alloc = 0;
3889 goto again;
3890 }
3891
Josef Bacikc6b305a2012-12-18 09:16:16 -05003892 trans->allocating_chunk = true;
3893
Josef Bacik97e728d2009-04-21 17:40:57 -04003894 /*
Josef Bacik67377732010-09-16 16:19:09 -04003895 * If we have mixed data/metadata chunks we want to make sure we keep
3896 * allocating mixed chunks instead of individual chunks.
3897 */
3898 if (btrfs_mixed_space_info(space_info))
3899 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
3900
3901 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04003902 * if we're doing a data chunk, go ahead and make sure that
3903 * we keep a reasonable number of metadata chunks allocated in the
3904 * FS as well.
3905 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04003906 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04003907 fs_info->data_chunk_allocations++;
3908 if (!(fs_info->data_chunk_allocations %
3909 fs_info->metadata_ratio))
3910 force_metadata_allocation(fs_info);
3911 }
3912
Liu Bo15d1ff82012-03-29 09:57:44 -04003913 /*
3914 * Check if we have enough space in SYSTEM chunk because we may need
3915 * to update devices.
3916 */
3917 check_system_chunk(trans, extent_root, flags);
3918
Yan Zheng2b820322008-11-17 21:11:30 -05003919 ret = btrfs_alloc_chunk(trans, extent_root, flags);
Josef Bacikc6b305a2012-12-18 09:16:16 -05003920 trans->allocating_chunk = false;
Mark Fasheh92b8e892011-07-12 10:57:59 -07003921
Josef Bacik9ed74f22009-09-11 16:12:44 -04003922 spin_lock(&space_info->lock);
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00003923 if (ret < 0 && ret != -ENOSPC)
3924 goto out;
Chris Masond3977122009-01-05 21:25:51 -05003925 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04003926 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04003927 else
3928 ret = 1;
Josef Bacik6d741192011-04-11 20:20:11 -04003929
Chris Mason0e4f8f82011-04-15 16:05:44 -04003930 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00003931out:
Josef Bacik6d741192011-04-11 20:20:11 -04003932 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003933 spin_unlock(&space_info->lock);
Dan Carpentera25c75d2012-04-18 09:59:29 +03003934 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003935 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04003936}
3937
Josef Bacika80c8dc2012-09-06 16:59:33 -04003938static int can_overcommit(struct btrfs_root *root,
3939 struct btrfs_space_info *space_info, u64 bytes,
Miao Xie08e007d2012-10-16 11:33:38 +00003940 enum btrfs_reserve_flush_enum flush)
Josef Bacika80c8dc2012-09-06 16:59:33 -04003941{
Josef Bacik96f1bb52013-01-30 17:02:51 -05003942 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Josef Bacika80c8dc2012-09-06 16:59:33 -04003943 u64 profile = btrfs_get_alloc_profile(root, 0);
Miao Xie3c76cd82013-04-25 10:12:38 +00003944 u64 space_size;
Josef Bacika80c8dc2012-09-06 16:59:33 -04003945 u64 avail;
3946 u64 used;
3947
3948 used = space_info->bytes_used + space_info->bytes_reserved +
Josef Bacik96f1bb52013-01-30 17:02:51 -05003949 space_info->bytes_pinned + space_info->bytes_readonly;
3950
Josef Bacik96f1bb52013-01-30 17:02:51 -05003951 /*
3952 * We only want to allow over committing if we have lots of actual space
3953 * free, but if we don't have enough space to handle the global reserve
3954 * space then we could end up having a real enospc problem when trying
3955 * to allocate a chunk or some other such important allocation.
3956 */
Miao Xie3c76cd82013-04-25 10:12:38 +00003957 spin_lock(&global_rsv->lock);
3958 space_size = calc_global_rsv_need_space(global_rsv);
3959 spin_unlock(&global_rsv->lock);
3960 if (used + space_size >= space_info->total_bytes)
Josef Bacik96f1bb52013-01-30 17:02:51 -05003961 return 0;
3962
3963 used += space_info->bytes_may_use;
Josef Bacika80c8dc2012-09-06 16:59:33 -04003964
3965 spin_lock(&root->fs_info->free_chunk_lock);
3966 avail = root->fs_info->free_chunk_space;
3967 spin_unlock(&root->fs_info->free_chunk_lock);
3968
3969 /*
3970 * If we have dup, raid1 or raid10 then only half of the free
David Woodhouse53b381b2013-01-29 18:40:14 -05003971 * space is actually useable. For raid56, the space info used
3972 * doesn't include the parity drive, so we don't have to
3973 * change the math
Josef Bacika80c8dc2012-09-06 16:59:33 -04003974 */
3975 if (profile & (BTRFS_BLOCK_GROUP_DUP |
3976 BTRFS_BLOCK_GROUP_RAID1 |
3977 BTRFS_BLOCK_GROUP_RAID10))
3978 avail >>= 1;
3979
3980 /*
Miao Xie561c2942012-10-16 11:32:18 +00003981 * If we aren't flushing all things, let us overcommit up to
3982 * 1/2th of the space. If we can flush, don't let us overcommit
3983 * too much, let it overcommit up to 1/8 of the space.
Josef Bacika80c8dc2012-09-06 16:59:33 -04003984 */
Miao Xie08e007d2012-10-16 11:33:38 +00003985 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacik14575ae2013-09-17 10:48:00 -04003986 avail >>= 3;
Josef Bacika80c8dc2012-09-06 16:59:33 -04003987 else
Josef Bacik14575ae2013-09-17 10:48:00 -04003988 avail >>= 1;
Josef Bacika80c8dc2012-09-06 16:59:33 -04003989
Josef Bacik14575ae2013-09-17 10:48:00 -04003990 if (used + bytes < space_info->total_bytes + avail)
Josef Bacika80c8dc2012-09-06 16:59:33 -04003991 return 1;
3992 return 0;
3993}
3994
Eric Sandeen48a3b632013-04-25 20:41:01 +00003995static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root,
3996 unsigned long nr_pages)
Miao Xieda633a42012-12-20 11:19:09 +00003997{
3998 struct super_block *sb = root->fs_info->sb;
Miao Xieda633a42012-12-20 11:19:09 +00003999
Josef Bacik925a6ef2013-06-20 12:31:27 -04004000 if (down_read_trylock(&sb->s_umount)) {
4001 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
4002 up_read(&sb->s_umount);
4003 } else {
Miao Xieda633a42012-12-20 11:19:09 +00004004 /*
4005 * We needn't worry the filesystem going from r/w to r/o though
4006 * we don't acquire ->s_umount mutex, because the filesystem
4007 * should guarantee the delalloc inodes list be empty after
4008 * the filesystem is readonly(all dirty pages are written to
4009 * the disk).
4010 */
Miao Xieeb73c1b2013-05-15 07:48:22 +00004011 btrfs_start_all_delalloc_inodes(root->fs_info, 0);
Josef Bacik98ad69c2013-04-04 11:55:49 -04004012 if (!current->journal_info)
Josef Bacikf0de1812013-09-17 10:55:51 -04004013 btrfs_wait_all_ordered_extents(root->fs_info);
Miao Xieda633a42012-12-20 11:19:09 +00004014 }
4015}
4016
Yan, Zheng5da9d012010-05-16 10:46:25 -04004017/*
4018 * shrink metadata reservation for delalloc
4019 */
Josef Bacikf4c738c2012-07-02 17:10:51 -04004020static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig,
4021 bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04004022{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004023 struct btrfs_block_rsv *block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004024 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04004025 struct btrfs_trans_handle *trans;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004026 u64 delalloc_bytes;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004027 u64 max_reclaim;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004028 long time_left;
Josef Bacik877da172011-10-14 14:02:10 -04004029 unsigned long nr_pages = (2 * 1024 * 1024) >> PAGE_CACHE_SHIFT;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004030 int loops = 0;
Miao Xie08e007d2012-10-16 11:33:38 +00004031 enum btrfs_reserve_flush_enum flush;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004032
Josef Bacik663350a2011-11-03 22:54:25 -04004033 trans = (struct btrfs_trans_handle *)current->journal_info;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004034 block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004035 space_info = block_rsv->space_info;
Chris Masonbf9022e2010-10-26 13:40:45 -04004036
4037 smp_mb();
Miao Xie963d6782013-01-29 10:10:51 +00004038 delalloc_bytes = percpu_counter_sum_positive(
4039 &root->fs_info->delalloc_bytes);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004040 if (delalloc_bytes == 0) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004041 if (trans)
Josef Bacikf4c738c2012-07-02 17:10:51 -04004042 return;
Josef Bacikf0de1812013-09-17 10:55:51 -04004043 btrfs_wait_all_ordered_extents(root->fs_info);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004044 return;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004045 }
4046
Josef Bacikf4c738c2012-07-02 17:10:51 -04004047 while (delalloc_bytes && loops < 3) {
4048 max_reclaim = min(delalloc_bytes, to_reclaim);
4049 nr_pages = max_reclaim >> PAGE_CACHE_SHIFT;
Miao Xieda633a42012-12-20 11:19:09 +00004050 btrfs_writeback_inodes_sb_nr(root, nr_pages);
Josef Bacikdea31f52012-09-06 16:47:00 -04004051 /*
4052 * We need to wait for the async pages to actually start before
4053 * we do anything.
4054 */
4055 wait_event(root->fs_info->async_submit_wait,
4056 !atomic_read(&root->fs_info->async_delalloc_pages));
4057
Miao Xie08e007d2012-10-16 11:33:38 +00004058 if (!trans)
4059 flush = BTRFS_RESERVE_FLUSH_ALL;
4060 else
4061 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacik0019f102010-10-15 15:18:40 -04004062 spin_lock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00004063 if (can_overcommit(root, space_info, orig, flush)) {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004064 spin_unlock(&space_info->lock);
4065 break;
4066 }
Josef Bacik0019f102010-10-15 15:18:40 -04004067 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004068
Chris Mason36e39c42011-03-12 07:08:42 -05004069 loops++;
Josef Bacikf104d042011-10-14 13:56:58 -04004070 if (wait_ordered && !trans) {
Josef Bacikf0de1812013-09-17 10:55:51 -04004071 btrfs_wait_all_ordered_extents(root->fs_info);
Josef Bacikf104d042011-10-14 13:56:58 -04004072 } else {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004073 time_left = schedule_timeout_killable(1);
Josef Bacikf104d042011-10-14 13:56:58 -04004074 if (time_left)
4075 break;
4076 }
Josef Bacikf4c738c2012-07-02 17:10:51 -04004077 smp_mb();
Miao Xie963d6782013-01-29 10:10:51 +00004078 delalloc_bytes = percpu_counter_sum_positive(
4079 &root->fs_info->delalloc_bytes);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004080 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04004081}
4082
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004083/**
Josef Bacik663350a2011-11-03 22:54:25 -04004084 * maybe_commit_transaction - possibly commit the transaction if its ok to
4085 * @root - the root we're allocating for
4086 * @bytes - the number of bytes we want to reserve
4087 * @force - force the commit
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004088 *
Josef Bacik663350a2011-11-03 22:54:25 -04004089 * This will check to make sure that committing the transaction will actually
4090 * get us somewhere and then commit the transaction if it does. Otherwise it
4091 * will return -ENOSPC.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004092 */
Josef Bacik663350a2011-11-03 22:54:25 -04004093static int may_commit_transaction(struct btrfs_root *root,
4094 struct btrfs_space_info *space_info,
4095 u64 bytes, int force)
4096{
4097 struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv;
4098 struct btrfs_trans_handle *trans;
4099
4100 trans = (struct btrfs_trans_handle *)current->journal_info;
4101 if (trans)
4102 return -EAGAIN;
4103
4104 if (force)
4105 goto commit;
4106
4107 /* See if there is enough pinned space to make this reservation */
4108 spin_lock(&space_info->lock);
Josef Bacikb150a4f2013-06-19 15:00:04 -04004109 if (percpu_counter_compare(&space_info->total_bytes_pinned,
4110 bytes) >= 0) {
Josef Bacik663350a2011-11-03 22:54:25 -04004111 spin_unlock(&space_info->lock);
4112 goto commit;
4113 }
4114 spin_unlock(&space_info->lock);
4115
4116 /*
4117 * See if there is some space in the delayed insertion reservation for
4118 * this reservation.
4119 */
4120 if (space_info != delayed_rsv->space_info)
4121 return -ENOSPC;
4122
Liu Bod9b02182012-02-16 18:34:39 +08004123 spin_lock(&space_info->lock);
Josef Bacik663350a2011-11-03 22:54:25 -04004124 spin_lock(&delayed_rsv->lock);
Josef Bacikb150a4f2013-06-19 15:00:04 -04004125 if (percpu_counter_compare(&space_info->total_bytes_pinned,
4126 bytes - delayed_rsv->size) >= 0) {
Josef Bacik663350a2011-11-03 22:54:25 -04004127 spin_unlock(&delayed_rsv->lock);
Liu Bod9b02182012-02-16 18:34:39 +08004128 spin_unlock(&space_info->lock);
Josef Bacik663350a2011-11-03 22:54:25 -04004129 return -ENOSPC;
4130 }
4131 spin_unlock(&delayed_rsv->lock);
Liu Bod9b02182012-02-16 18:34:39 +08004132 spin_unlock(&space_info->lock);
Josef Bacik663350a2011-11-03 22:54:25 -04004133
4134commit:
4135 trans = btrfs_join_transaction(root);
4136 if (IS_ERR(trans))
4137 return -ENOSPC;
4138
4139 return btrfs_commit_transaction(trans, root);
4140}
4141
Josef Bacik96c3f432012-06-21 14:05:49 -04004142enum flush_state {
Josef Bacik67b0fd62012-09-24 13:42:00 -04004143 FLUSH_DELAYED_ITEMS_NR = 1,
4144 FLUSH_DELAYED_ITEMS = 2,
4145 FLUSH_DELALLOC = 3,
4146 FLUSH_DELALLOC_WAIT = 4,
Josef Bacikea658ba2012-09-11 16:57:25 -04004147 ALLOC_CHUNK = 5,
4148 COMMIT_TRANS = 6,
Josef Bacik96c3f432012-06-21 14:05:49 -04004149};
4150
4151static int flush_space(struct btrfs_root *root,
4152 struct btrfs_space_info *space_info, u64 num_bytes,
4153 u64 orig_bytes, int state)
4154{
4155 struct btrfs_trans_handle *trans;
4156 int nr;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004157 int ret = 0;
Josef Bacik96c3f432012-06-21 14:05:49 -04004158
4159 switch (state) {
Josef Bacik96c3f432012-06-21 14:05:49 -04004160 case FLUSH_DELAYED_ITEMS_NR:
4161 case FLUSH_DELAYED_ITEMS:
4162 if (state == FLUSH_DELAYED_ITEMS_NR) {
4163 u64 bytes = btrfs_calc_trans_metadata_size(root, 1);
4164
4165 nr = (int)div64_u64(num_bytes, bytes);
4166 if (!nr)
4167 nr = 1;
4168 nr *= 2;
4169 } else {
4170 nr = -1;
4171 }
4172 trans = btrfs_join_transaction(root);
4173 if (IS_ERR(trans)) {
4174 ret = PTR_ERR(trans);
4175 break;
4176 }
4177 ret = btrfs_run_delayed_items_nr(trans, root, nr);
4178 btrfs_end_transaction(trans, root);
4179 break;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004180 case FLUSH_DELALLOC:
4181 case FLUSH_DELALLOC_WAIT:
4182 shrink_delalloc(root, num_bytes, orig_bytes,
4183 state == FLUSH_DELALLOC_WAIT);
4184 break;
Josef Bacikea658ba2012-09-11 16:57:25 -04004185 case ALLOC_CHUNK:
4186 trans = btrfs_join_transaction(root);
4187 if (IS_ERR(trans)) {
4188 ret = PTR_ERR(trans);
4189 break;
4190 }
4191 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Josef Bacikea658ba2012-09-11 16:57:25 -04004192 btrfs_get_alloc_profile(root, 0),
4193 CHUNK_ALLOC_NO_FORCE);
4194 btrfs_end_transaction(trans, root);
4195 if (ret == -ENOSPC)
4196 ret = 0;
4197 break;
Josef Bacik96c3f432012-06-21 14:05:49 -04004198 case COMMIT_TRANS:
4199 ret = may_commit_transaction(root, space_info, orig_bytes, 0);
4200 break;
4201 default:
4202 ret = -ENOSPC;
4203 break;
4204 }
4205
4206 return ret;
4207}
Josef Bacik663350a2011-11-03 22:54:25 -04004208/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004209 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
4210 * @root - the root we're allocating for
4211 * @block_rsv - the block_rsv we're allocating for
4212 * @orig_bytes - the number of bytes we want
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04004213 * @flush - whether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004214 *
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004215 * This will reserve orgi_bytes number of bytes from the space info associated
4216 * with the block_rsv. If there is not enough space it will make an attempt to
4217 * flush out space to make room. It will do this by flushing delalloc if
4218 * possible or committing the transaction. If flush is 0 then no attempts to
4219 * regain reservations will be made and this will fail if there is not enough
4220 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004221 */
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004222static int reserve_metadata_bytes(struct btrfs_root *root,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004223 struct btrfs_block_rsv *block_rsv,
Miao Xie08e007d2012-10-16 11:33:38 +00004224 u64 orig_bytes,
4225 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004226{
4227 struct btrfs_space_info *space_info = block_rsv->space_info;
Josef Bacik2bf64752011-09-26 17:12:22 -04004228 u64 used;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004229 u64 num_bytes = orig_bytes;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004230 int flush_state = FLUSH_DELAYED_ITEMS_NR;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004231 int ret = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004232 bool flushing = false;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004233
4234again:
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004235 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004236 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004237 /*
Miao Xie08e007d2012-10-16 11:33:38 +00004238 * We only want to wait if somebody other than us is flushing and we
4239 * are actually allowed to flush all things.
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004240 */
Miao Xie08e007d2012-10-16 11:33:38 +00004241 while (flush == BTRFS_RESERVE_FLUSH_ALL && !flushing &&
4242 space_info->flush) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004243 spin_unlock(&space_info->lock);
4244 /*
4245 * If we have a trans handle we can't wait because the flusher
4246 * may have to commit the transaction, which would mean we would
4247 * deadlock since we are waiting for the flusher to finish, but
4248 * hold the current transaction open.
4249 */
Josef Bacik663350a2011-11-03 22:54:25 -04004250 if (current->journal_info)
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004251 return -EAGAIN;
Arne Jansenb9688bb2012-04-18 10:27:16 +02004252 ret = wait_event_killable(space_info->wait, !space_info->flush);
4253 /* Must have been killed, return */
4254 if (ret)
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004255 return -EINTR;
4256
4257 spin_lock(&space_info->lock);
4258 }
4259
4260 ret = -ENOSPC;
Josef Bacik2bf64752011-09-26 17:12:22 -04004261 used = space_info->bytes_used + space_info->bytes_reserved +
4262 space_info->bytes_pinned + space_info->bytes_readonly +
4263 space_info->bytes_may_use;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004264
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004265 /*
4266 * The idea here is that we've not already over-reserved the block group
4267 * then we can go ahead and save our reservation first and then start
4268 * flushing if we need to. Otherwise if we've already overcommitted
4269 * lets start flushing stuff first and then come back and try to make
4270 * our reservation.
4271 */
Josef Bacik2bf64752011-09-26 17:12:22 -04004272 if (used <= space_info->total_bytes) {
4273 if (used + orig_bytes <= space_info->total_bytes) {
Josef Bacikfb25e912011-07-26 17:00:46 -04004274 space_info->bytes_may_use += orig_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004275 trace_btrfs_space_reservation(root->fs_info,
Liu Bo2bcc0322012-03-29 09:57:44 -04004276 "space_info", space_info->flags, orig_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004277 ret = 0;
4278 } else {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004279 /*
4280 * Ok set num_bytes to orig_bytes since we aren't
4281 * overocmmitted, this way we only try and reclaim what
4282 * we need.
4283 */
4284 num_bytes = orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004285 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004286 } else {
4287 /*
4288 * Ok we're over committed, set num_bytes to the overcommitted
4289 * amount plus the amount of bytes that we need for this
4290 * reservation.
4291 */
Josef Bacik2bf64752011-09-26 17:12:22 -04004292 num_bytes = used - space_info->total_bytes +
Josef Bacik96c3f432012-06-21 14:05:49 -04004293 (orig_bytes * 2);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004294 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004295
Josef Bacik44734ed2012-09-28 16:04:19 -04004296 if (ret && can_overcommit(root, space_info, orig_bytes, flush)) {
4297 space_info->bytes_may_use += orig_bytes;
4298 trace_btrfs_space_reservation(root->fs_info, "space_info",
4299 space_info->flags, orig_bytes,
4300 1);
4301 ret = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04004302 }
4303
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004304 /*
4305 * Couldn't make our reservation, save our place so while we're trying
4306 * to reclaim space we can actually use it instead of somebody else
4307 * stealing it from us.
Miao Xie08e007d2012-10-16 11:33:38 +00004308 *
4309 * We make the other tasks wait for the flush only when we can flush
4310 * all things.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004311 */
Josef Bacik72bcd992012-12-18 15:16:34 -05004312 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004313 flushing = true;
4314 space_info->flush = 1;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004315 }
4316
Yan, Zhengf0486c62010-05-16 10:46:25 -04004317 spin_unlock(&space_info->lock);
4318
Miao Xie08e007d2012-10-16 11:33:38 +00004319 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004320 goto out;
4321
Josef Bacik96c3f432012-06-21 14:05:49 -04004322 ret = flush_space(root, space_info, num_bytes, orig_bytes,
4323 flush_state);
4324 flush_state++;
Miao Xie08e007d2012-10-16 11:33:38 +00004325
4326 /*
4327 * If we are FLUSH_LIMIT, we can not flush delalloc, or the deadlock
4328 * would happen. So skip delalloc flush.
4329 */
4330 if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4331 (flush_state == FLUSH_DELALLOC ||
4332 flush_state == FLUSH_DELALLOC_WAIT))
4333 flush_state = ALLOC_CHUNK;
4334
Josef Bacik96c3f432012-06-21 14:05:49 -04004335 if (!ret)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004336 goto again;
Miao Xie08e007d2012-10-16 11:33:38 +00004337 else if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4338 flush_state < COMMIT_TRANS)
4339 goto again;
4340 else if (flush == BTRFS_RESERVE_FLUSH_ALL &&
4341 flush_state <= COMMIT_TRANS)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004342 goto again;
4343
4344out:
Josef Bacik5d803662013-02-07 16:06:02 -05004345 if (ret == -ENOSPC &&
4346 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
4347 struct btrfs_block_rsv *global_rsv =
4348 &root->fs_info->global_block_rsv;
4349
4350 if (block_rsv != global_rsv &&
4351 !block_rsv_use_bytes(global_rsv, orig_bytes))
4352 ret = 0;
4353 }
Jeff Mahoneycab45e22013-10-16 16:27:01 -04004354 if (ret == -ENOSPC)
4355 trace_btrfs_space_reservation(root->fs_info,
4356 "space_info:enospc",
4357 space_info->flags, orig_bytes, 1);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004358 if (flushing) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004359 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004360 space_info->flush = 0;
4361 wake_up_all(&space_info->wait);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004362 spin_unlock(&space_info->lock);
4363 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004364 return ret;
4365}
4366
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004367static struct btrfs_block_rsv *get_block_rsv(
4368 const struct btrfs_trans_handle *trans,
4369 const struct btrfs_root *root)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004370{
Josef Bacik4c13d752011-08-30 11:31:29 -04004371 struct btrfs_block_rsv *block_rsv = NULL;
4372
Josef Bacik0e721102012-06-26 16:13:18 -04004373 if (root->ref_cows)
4374 block_rsv = trans->block_rsv;
4375
4376 if (root == root->fs_info->csum_root && trans->adding_csums)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004377 block_rsv = trans->block_rsv;
Josef Bacik4c13d752011-08-30 11:31:29 -04004378
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004379 if (root == root->fs_info->uuid_root)
4380 block_rsv = trans->block_rsv;
4381
Josef Bacik4c13d752011-08-30 11:31:29 -04004382 if (!block_rsv)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004383 block_rsv = root->block_rsv;
4384
4385 if (!block_rsv)
4386 block_rsv = &root->fs_info->empty_block_rsv;
4387
4388 return block_rsv;
4389}
4390
4391static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
4392 u64 num_bytes)
4393{
4394 int ret = -ENOSPC;
4395 spin_lock(&block_rsv->lock);
4396 if (block_rsv->reserved >= num_bytes) {
4397 block_rsv->reserved -= num_bytes;
4398 if (block_rsv->reserved < block_rsv->size)
4399 block_rsv->full = 0;
4400 ret = 0;
4401 }
4402 spin_unlock(&block_rsv->lock);
4403 return ret;
4404}
4405
4406static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
4407 u64 num_bytes, int update_size)
4408{
4409 spin_lock(&block_rsv->lock);
4410 block_rsv->reserved += num_bytes;
4411 if (update_size)
4412 block_rsv->size += num_bytes;
4413 else if (block_rsv->reserved >= block_rsv->size)
4414 block_rsv->full = 1;
4415 spin_unlock(&block_rsv->lock);
4416}
4417
Josef Bacikd52be812013-05-29 14:54:47 -04004418int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
4419 struct btrfs_block_rsv *dest, u64 num_bytes,
4420 int min_factor)
4421{
4422 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
4423 u64 min_bytes;
4424
4425 if (global_rsv->space_info != dest->space_info)
4426 return -ENOSPC;
4427
4428 spin_lock(&global_rsv->lock);
4429 min_bytes = div_factor(global_rsv->size, min_factor);
4430 if (global_rsv->reserved < min_bytes + num_bytes) {
4431 spin_unlock(&global_rsv->lock);
4432 return -ENOSPC;
4433 }
4434 global_rsv->reserved -= num_bytes;
4435 if (global_rsv->reserved < global_rsv->size)
4436 global_rsv->full = 0;
4437 spin_unlock(&global_rsv->lock);
4438
4439 block_rsv_add_bytes(dest, num_bytes, 1);
4440 return 0;
4441}
4442
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004443static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
4444 struct btrfs_block_rsv *block_rsv,
David Sterba62a45b62011-04-20 15:52:26 +02004445 struct btrfs_block_rsv *dest, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004446{
4447 struct btrfs_space_info *space_info = block_rsv->space_info;
4448
4449 spin_lock(&block_rsv->lock);
4450 if (num_bytes == (u64)-1)
4451 num_bytes = block_rsv->size;
4452 block_rsv->size -= num_bytes;
4453 if (block_rsv->reserved >= block_rsv->size) {
4454 num_bytes = block_rsv->reserved - block_rsv->size;
4455 block_rsv->reserved = block_rsv->size;
4456 block_rsv->full = 1;
4457 } else {
4458 num_bytes = 0;
4459 }
4460 spin_unlock(&block_rsv->lock);
4461
4462 if (num_bytes > 0) {
4463 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00004464 spin_lock(&dest->lock);
4465 if (!dest->full) {
4466 u64 bytes_to_add;
4467
4468 bytes_to_add = dest->size - dest->reserved;
4469 bytes_to_add = min(num_bytes, bytes_to_add);
4470 dest->reserved += bytes_to_add;
4471 if (dest->reserved >= dest->size)
4472 dest->full = 1;
4473 num_bytes -= bytes_to_add;
4474 }
4475 spin_unlock(&dest->lock);
4476 }
4477 if (num_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04004478 spin_lock(&space_info->lock);
Josef Bacikfb25e912011-07-26 17:00:46 -04004479 space_info->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004480 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004481 space_info->flags, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004482 spin_unlock(&space_info->lock);
4483 }
4484 }
4485}
4486
4487static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src,
4488 struct btrfs_block_rsv *dst, u64 num_bytes)
4489{
4490 int ret;
4491
4492 ret = block_rsv_use_bytes(src, num_bytes);
4493 if (ret)
4494 return ret;
4495
4496 block_rsv_add_bytes(dst, num_bytes, 1);
4497 return 0;
4498}
4499
Miao Xie66d8f3d2012-09-06 04:02:28 -06004500void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004501{
4502 memset(rsv, 0, sizeof(*rsv));
4503 spin_lock_init(&rsv->lock);
Miao Xie66d8f3d2012-09-06 04:02:28 -06004504 rsv->type = type;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004505}
4506
Miao Xie66d8f3d2012-09-06 04:02:28 -06004507struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root,
4508 unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004509{
4510 struct btrfs_block_rsv *block_rsv;
4511 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004512
4513 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
4514 if (!block_rsv)
4515 return NULL;
4516
Miao Xie66d8f3d2012-09-06 04:02:28 -06004517 btrfs_init_block_rsv(block_rsv, type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004518 block_rsv->space_info = __find_space_info(fs_info,
4519 BTRFS_BLOCK_GROUP_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004520 return block_rsv;
4521}
4522
4523void btrfs_free_block_rsv(struct btrfs_root *root,
4524 struct btrfs_block_rsv *rsv)
4525{
Josef Bacik2aaa6652012-08-29 14:27:18 -04004526 if (!rsv)
4527 return;
Josef Bacikdabdb642011-08-08 12:50:18 -04004528 btrfs_block_rsv_release(root, rsv, (u64)-1);
4529 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004530}
4531
Miao Xie08e007d2012-10-16 11:33:38 +00004532int btrfs_block_rsv_add(struct btrfs_root *root,
4533 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
4534 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004535{
4536 int ret;
4537
4538 if (num_bytes == 0)
4539 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004540
Miao Xie61b520a2011-11-10 20:45:05 -05004541 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004542 if (!ret) {
4543 block_rsv_add_bytes(block_rsv, num_bytes, 1);
4544 return 0;
4545 }
4546
Yan, Zhengf0486c62010-05-16 10:46:25 -04004547 return ret;
4548}
4549
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004550int btrfs_block_rsv_check(struct btrfs_root *root,
Josef Bacik36ba0222011-10-18 12:15:48 -04004551 struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004552{
4553 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004554 int ret = -ENOSPC;
4555
4556 if (!block_rsv)
4557 return 0;
4558
4559 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04004560 num_bytes = div_factor(block_rsv->size, min_factor);
4561 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004562 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004563 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004564
Josef Bacik36ba0222011-10-18 12:15:48 -04004565 return ret;
4566}
4567
Miao Xie08e007d2012-10-16 11:33:38 +00004568int btrfs_block_rsv_refill(struct btrfs_root *root,
4569 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
4570 enum btrfs_reserve_flush_enum flush)
Josef Bacik36ba0222011-10-18 12:15:48 -04004571{
4572 u64 num_bytes = 0;
4573 int ret = -ENOSPC;
4574
4575 if (!block_rsv)
4576 return 0;
4577
4578 spin_lock(&block_rsv->lock);
4579 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04004580 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004581 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04004582 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04004583 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004584 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04004585
Yan, Zhengf0486c62010-05-16 10:46:25 -04004586 if (!ret)
4587 return 0;
4588
Miao Xieaa38a712011-11-18 17:43:00 +08004589 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Josef Bacikdabdb642011-08-08 12:50:18 -04004590 if (!ret) {
4591 block_rsv_add_bytes(block_rsv, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004592 return 0;
4593 }
4594
Josef Bacik13553e52011-08-08 13:33:21 -04004595 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004596}
4597
4598int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv,
4599 struct btrfs_block_rsv *dst_rsv,
4600 u64 num_bytes)
4601{
4602 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
4603}
4604
4605void btrfs_block_rsv_release(struct btrfs_root *root,
4606 struct btrfs_block_rsv *block_rsv,
4607 u64 num_bytes)
4608{
4609 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
4610 if (global_rsv->full || global_rsv == block_rsv ||
4611 block_rsv->space_info != global_rsv->space_info)
4612 global_rsv = NULL;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004613 block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv,
4614 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004615}
4616
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004617/*
4618 * helper to calculate size of global block reservation.
4619 * the desired value is sum of space used by extent tree,
4620 * checksum tree and root tree
4621 */
4622static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info)
4623{
4624 struct btrfs_space_info *sinfo;
4625 u64 num_bytes;
4626 u64 meta_used;
4627 u64 data_used;
David Sterba6c417612011-04-13 15:41:04 +02004628 int csum_size = btrfs_super_csum_size(fs_info->super_copy);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004629
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004630 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA);
4631 spin_lock(&sinfo->lock);
4632 data_used = sinfo->bytes_used;
4633 spin_unlock(&sinfo->lock);
4634
4635 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4636 spin_lock(&sinfo->lock);
Josef Bacik6d487552010-10-15 15:13:32 -04004637 if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA)
4638 data_used = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004639 meta_used = sinfo->bytes_used;
4640 spin_unlock(&sinfo->lock);
4641
4642 num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) *
4643 csum_size * 2;
4644 num_bytes += div64_u64(data_used + meta_used, 50);
4645
4646 if (num_bytes * 3 > meta_used)
Chris Mason8e62c2d2012-04-12 13:46:48 -04004647 num_bytes = div64_u64(meta_used, 3);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004648
4649 return ALIGN(num_bytes, fs_info->extent_root->leafsize << 10);
4650}
4651
4652static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
4653{
4654 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
4655 struct btrfs_space_info *sinfo = block_rsv->space_info;
4656 u64 num_bytes;
4657
4658 num_bytes = calc_global_metadata_size(fs_info);
4659
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004660 spin_lock(&sinfo->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04004661 spin_lock(&block_rsv->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004662
Josef Bacikfdf30d12013-03-26 15:31:45 -04004663 block_rsv->size = min_t(u64, num_bytes, 512 * 1024 * 1024);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004664
4665 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
Josef Bacik6d487552010-10-15 15:13:32 -04004666 sinfo->bytes_reserved + sinfo->bytes_readonly +
4667 sinfo->bytes_may_use;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004668
4669 if (sinfo->total_bytes > num_bytes) {
4670 num_bytes = sinfo->total_bytes - num_bytes;
4671 block_rsv->reserved += num_bytes;
Josef Bacikfb25e912011-07-26 17:00:46 -04004672 sinfo->bytes_may_use += num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004673 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004674 sinfo->flags, num_bytes, 1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004675 }
4676
4677 if (block_rsv->reserved >= block_rsv->size) {
4678 num_bytes = block_rsv->reserved - block_rsv->size;
Josef Bacikfb25e912011-07-26 17:00:46 -04004679 sinfo->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004680 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004681 sinfo->flags, num_bytes, 0);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004682 block_rsv->reserved = block_rsv->size;
4683 block_rsv->full = 1;
4684 }
David Sterba182608c2011-05-05 13:13:16 +02004685
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004686 spin_unlock(&block_rsv->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04004687 spin_unlock(&sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004688}
4689
Yan, Zhengf0486c62010-05-16 10:46:25 -04004690static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
4691{
4692 struct btrfs_space_info *space_info;
4693
4694 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4695 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004696
4697 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004698 fs_info->global_block_rsv.space_info = space_info;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004699 fs_info->delalloc_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004700 fs_info->trans_block_rsv.space_info = space_info;
4701 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04004702 fs_info->delayed_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004703
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004704 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
4705 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
4706 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
4707 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Stefan Behrens3a6cad92013-05-16 14:48:19 +00004708 if (fs_info->quota_root)
4709 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004710 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004711
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004712 update_global_block_rsv(fs_info);
4713}
4714
4715static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
4716{
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004717 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
4718 (u64)-1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004719 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
4720 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
4721 WARN_ON(fs_info->trans_block_rsv.size > 0);
4722 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
4723 WARN_ON(fs_info->chunk_block_rsv.size > 0);
4724 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04004725 WARN_ON(fs_info->delayed_block_rsv.size > 0);
4726 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04004727}
4728
Yan, Zhenga22285a2010-05-16 10:48:46 -04004729void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
4730 struct btrfs_root *root)
4731{
Josef Bacik0e721102012-06-26 16:13:18 -04004732 if (!trans->block_rsv)
4733 return;
4734
Yan, Zhenga22285a2010-05-16 10:48:46 -04004735 if (!trans->bytes_reserved)
4736 return;
4737
Chris Masone77266e2012-02-24 10:39:05 -05004738 trace_btrfs_space_reservation(root->fs_info, "transaction",
Liu Bo2bcc0322012-03-29 09:57:44 -04004739 trans->transid, trans->bytes_reserved, 0);
Josef Bacikb24e03d2011-10-14 14:40:17 -04004740 btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004741 trans->bytes_reserved = 0;
4742}
4743
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004744/* Can only return 0 or -ENOSPC */
Yan, Zhengd68fc572010-05-16 10:49:58 -04004745int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
4746 struct inode *inode)
4747{
4748 struct btrfs_root *root = BTRFS_I(inode)->root;
4749 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
4750 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
4751
4752 /*
Josef Bacikfcb80c22011-05-03 10:40:22 -04004753 * We need to hold space in order to delete our orphan item once we've
4754 * added it, so this takes the reservation so we can release it later
4755 * when we are truly done with the orphan item.
Yan, Zhengd68fc572010-05-16 10:49:58 -04004756 */
Chris Masonff5714c2011-05-28 07:00:39 -04004757 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004758 trace_btrfs_space_reservation(root->fs_info, "orphan",
4759 btrfs_ino(inode), num_bytes, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04004760 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
4761}
4762
4763void btrfs_orphan_release_metadata(struct inode *inode)
4764{
4765 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonff5714c2011-05-28 07:00:39 -04004766 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004767 trace_btrfs_space_reservation(root->fs_info, "orphan",
4768 btrfs_ino(inode), num_bytes, 0);
Yan, Zhengd68fc572010-05-16 10:49:58 -04004769 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
4770}
4771
Miao Xied5c12072013-02-28 10:04:33 +00004772/*
4773 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
4774 * root: the root of the parent directory
4775 * rsv: block reservation
4776 * items: the number of items that we need do reservation
4777 * qgroup_reserved: used to return the reserved size in qgroup
4778 *
4779 * This function is used to reserve the space for snapshot/subvolume
4780 * creation and deletion. Those operations are different with the
4781 * common file/directory operations, they change two fs/file trees
4782 * and root tree, the number of items that the qgroup reserves is
4783 * different with the free space reservation. So we can not use
4784 * the space reseravtion mechanism in start_transaction().
4785 */
4786int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
4787 struct btrfs_block_rsv *rsv,
4788 int items,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04004789 u64 *qgroup_reserved,
4790 bool use_global_rsv)
Yan, Zhenga22285a2010-05-16 10:48:46 -04004791{
Miao Xied5c12072013-02-28 10:04:33 +00004792 u64 num_bytes;
4793 int ret;
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04004794 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Miao Xied5c12072013-02-28 10:04:33 +00004795
4796 if (root->fs_info->quota_enabled) {
4797 /* One for parent inode, two for dir entries */
4798 num_bytes = 3 * root->leafsize;
4799 ret = btrfs_qgroup_reserve(root, num_bytes);
4800 if (ret)
4801 return ret;
4802 } else {
4803 num_bytes = 0;
4804 }
4805
4806 *qgroup_reserved = num_bytes;
4807
4808 num_bytes = btrfs_calc_trans_metadata_size(root, items);
4809 rsv->space_info = __find_space_info(root->fs_info,
4810 BTRFS_BLOCK_GROUP_METADATA);
4811 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
4812 BTRFS_RESERVE_FLUSH_ALL);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04004813
4814 if (ret == -ENOSPC && use_global_rsv)
4815 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes);
4816
Miao Xied5c12072013-02-28 10:04:33 +00004817 if (ret) {
4818 if (*qgroup_reserved)
4819 btrfs_qgroup_free(root, *qgroup_reserved);
4820 }
4821
4822 return ret;
4823}
4824
4825void btrfs_subvolume_release_metadata(struct btrfs_root *root,
4826 struct btrfs_block_rsv *rsv,
4827 u64 qgroup_reserved)
4828{
4829 btrfs_block_rsv_release(root, rsv, (u64)-1);
4830 if (qgroup_reserved)
4831 btrfs_qgroup_free(root, qgroup_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004832}
4833
Josef Bacik7709cde2011-08-04 10:25:02 -04004834/**
4835 * drop_outstanding_extent - drop an outstanding extent
4836 * @inode: the inode we're dropping the extent for
4837 *
4838 * This is called when we are freeing up an outstanding extent, either called
4839 * after an error or after an extent is written. This will return the number of
4840 * reserved extents that need to be freed. This must be called with
4841 * BTRFS_I(inode)->lock held.
4842 */
Josef Bacik9e0baf62011-07-15 15:16:44 +00004843static unsigned drop_outstanding_extent(struct inode *inode)
4844{
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004845 unsigned drop_inode_space = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004846 unsigned dropped_extents = 0;
4847
Josef Bacik9e0baf62011-07-15 15:16:44 +00004848 BUG_ON(!BTRFS_I(inode)->outstanding_extents);
4849 BTRFS_I(inode)->outstanding_extents--;
4850
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004851 if (BTRFS_I(inode)->outstanding_extents == 0 &&
Josef Bacik72ac3c02012-05-23 14:13:11 -04004852 test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
4853 &BTRFS_I(inode)->runtime_flags))
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004854 drop_inode_space = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004855
Josef Bacik9e0baf62011-07-15 15:16:44 +00004856 /*
4857 * If we have more or the same amount of outsanding extents than we have
4858 * reserved then we need to leave the reserved extents count alone.
4859 */
4860 if (BTRFS_I(inode)->outstanding_extents >=
4861 BTRFS_I(inode)->reserved_extents)
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004862 return drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004863
4864 dropped_extents = BTRFS_I(inode)->reserved_extents -
4865 BTRFS_I(inode)->outstanding_extents;
4866 BTRFS_I(inode)->reserved_extents -= dropped_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004867 return dropped_extents + drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004868}
4869
Josef Bacik7709cde2011-08-04 10:25:02 -04004870/**
4871 * calc_csum_metadata_size - return the amount of metada space that must be
4872 * reserved/free'd for the given bytes.
4873 * @inode: the inode we're manipulating
4874 * @num_bytes: the number of bytes in question
4875 * @reserve: 1 if we are reserving space, 0 if we are freeing space
4876 *
4877 * This adjusts the number of csum_bytes in the inode and then returns the
4878 * correct amount of metadata that must either be reserved or freed. We
4879 * calculate how many checksums we can fit into one leaf and then divide the
4880 * number of bytes that will need to be checksumed by this value to figure out
4881 * how many checksums will be required. If we are adding bytes then the number
4882 * may go up and we will return the number of additional bytes that must be
4883 * reserved. If it is going down we will return the number of bytes that must
4884 * be freed.
4885 *
4886 * This must be called with BTRFS_I(inode)->lock held.
4887 */
4888static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes,
4889 int reserve)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004890{
Josef Bacik7709cde2011-08-04 10:25:02 -04004891 struct btrfs_root *root = BTRFS_I(inode)->root;
4892 u64 csum_size;
4893 int num_csums_per_leaf;
4894 int num_csums;
4895 int old_csums;
4896
4897 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM &&
4898 BTRFS_I(inode)->csum_bytes == 0)
4899 return 0;
4900
4901 old_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize);
4902 if (reserve)
4903 BTRFS_I(inode)->csum_bytes += num_bytes;
4904 else
4905 BTRFS_I(inode)->csum_bytes -= num_bytes;
4906 csum_size = BTRFS_LEAF_DATA_SIZE(root) - sizeof(struct btrfs_item);
4907 num_csums_per_leaf = (int)div64_u64(csum_size,
4908 sizeof(struct btrfs_csum_item) +
4909 sizeof(struct btrfs_disk_key));
4910 num_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize);
4911 num_csums = num_csums + num_csums_per_leaf - 1;
4912 num_csums = num_csums / num_csums_per_leaf;
4913
4914 old_csums = old_csums + num_csums_per_leaf - 1;
4915 old_csums = old_csums / num_csums_per_leaf;
4916
4917 /* No change, no need to reserve more */
4918 if (old_csums == num_csums)
4919 return 0;
4920
4921 if (reserve)
4922 return btrfs_calc_trans_metadata_size(root,
4923 num_csums - old_csums);
4924
4925 return btrfs_calc_trans_metadata_size(root, old_csums - num_csums);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004926}
4927
4928int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
4929{
4930 struct btrfs_root *root = BTRFS_I(inode)->root;
4931 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004932 u64 to_reserve = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05004933 u64 csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004934 unsigned nr_extents = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05004935 int extra_reserve = 0;
Miao Xie08e007d2012-10-16 11:33:38 +00004936 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
Jan Schmidteb6b88d2013-01-27 23:26:00 -07004937 int ret = 0;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05004938 bool delalloc_lock = true;
Wang Shilong88e081bf2013-03-01 11:36:01 +00004939 u64 to_free = 0;
4940 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004941
Josef Bacikc64c2bd2012-12-14 13:48:14 -05004942 /* If we are a free space inode we need to not flush since we will be in
4943 * the middle of a transaction commit. We also don't need the delalloc
4944 * mutex since we won't race with anybody. We need this mostly to make
4945 * lockdep shut its filthy mouth.
4946 */
4947 if (btrfs_is_free_space_inode(inode)) {
Miao Xie08e007d2012-10-16 11:33:38 +00004948 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05004949 delalloc_lock = false;
4950 }
Josef Bacikc09544e2011-08-30 10:19:10 -04004951
Miao Xie08e007d2012-10-16 11:33:38 +00004952 if (flush != BTRFS_RESERVE_NO_FLUSH &&
4953 btrfs_transaction_in_commit(root->fs_info))
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004954 schedule_timeout(1);
4955
Josef Bacikc64c2bd2012-12-14 13:48:14 -05004956 if (delalloc_lock)
4957 mutex_lock(&BTRFS_I(inode)->delalloc_mutex);
4958
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004959 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004960
Josef Bacik9e0baf62011-07-15 15:16:44 +00004961 spin_lock(&BTRFS_I(inode)->lock);
4962 BTRFS_I(inode)->outstanding_extents++;
Josef Bacik57a45ced2011-01-25 16:30:38 -05004963
Josef Bacik9e0baf62011-07-15 15:16:44 +00004964 if (BTRFS_I(inode)->outstanding_extents >
Josef Bacik660d3f62011-12-09 11:18:51 -05004965 BTRFS_I(inode)->reserved_extents)
Josef Bacik9e0baf62011-07-15 15:16:44 +00004966 nr_extents = BTRFS_I(inode)->outstanding_extents -
4967 BTRFS_I(inode)->reserved_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004968
4969 /*
4970 * Add an item to reserve for updating the inode when we complete the
4971 * delalloc io.
4972 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04004973 if (!test_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
4974 &BTRFS_I(inode)->runtime_flags)) {
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004975 nr_extents++;
Josef Bacik660d3f62011-12-09 11:18:51 -05004976 extra_reserve = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004977 }
4978
4979 to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04004980 to_reserve += calc_csum_metadata_size(inode, num_bytes, 1);
Josef Bacik660d3f62011-12-09 11:18:51 -05004981 csum_bytes = BTRFS_I(inode)->csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004982 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05004983
Wang Shilong88e081bf2013-03-01 11:36:01 +00004984 if (root->fs_info->quota_enabled) {
Arne Jansenc5567232011-09-14 15:44:05 +02004985 ret = btrfs_qgroup_reserve(root, num_bytes +
4986 nr_extents * root->leafsize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00004987 if (ret)
4988 goto out_fail;
Wang Shilonga9870c02013-03-01 11:33:01 +00004989 }
Arne Jansenc5567232011-09-14 15:44:05 +02004990
Wang Shilong88e081bf2013-03-01 11:36:01 +00004991 ret = reserve_metadata_bytes(root, block_rsv, to_reserve, flush);
4992 if (unlikely(ret)) {
4993 if (root->fs_info->quota_enabled)
Miao Xie4b5829a2012-12-05 10:53:25 +00004994 btrfs_qgroup_free(root, num_bytes +
4995 nr_extents * root->leafsize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00004996 goto out_fail;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004997 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004998
Josef Bacik660d3f62011-12-09 11:18:51 -05004999 spin_lock(&BTRFS_I(inode)->lock);
5000 if (extra_reserve) {
Josef Bacik72ac3c02012-05-23 14:13:11 -04005001 set_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
5002 &BTRFS_I(inode)->runtime_flags);
Josef Bacik660d3f62011-12-09 11:18:51 -05005003 nr_extents--;
5004 }
5005 BTRFS_I(inode)->reserved_extents += nr_extents;
5006 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05005007
5008 if (delalloc_lock)
5009 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
Josef Bacik660d3f62011-12-09 11:18:51 -05005010
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005011 if (to_reserve)
5012 trace_btrfs_space_reservation(root->fs_info,"delalloc",
5013 btrfs_ino(inode), to_reserve, 1);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005014 block_rsv_add_bytes(block_rsv, to_reserve, 1);
5015
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005016 return 0;
Wang Shilong88e081bf2013-03-01 11:36:01 +00005017
5018out_fail:
5019 spin_lock(&BTRFS_I(inode)->lock);
5020 dropped = drop_outstanding_extent(inode);
5021 /*
5022 * If the inodes csum_bytes is the same as the original
5023 * csum_bytes then we know we haven't raced with any free()ers
5024 * so we can just reduce our inodes csum bytes and carry on.
Wang Shilong88e081bf2013-03-01 11:36:01 +00005025 */
Josef Bacikf4881bc2013-03-25 16:03:35 -04005026 if (BTRFS_I(inode)->csum_bytes == csum_bytes) {
Wang Shilong88e081bf2013-03-01 11:36:01 +00005027 calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacikf4881bc2013-03-25 16:03:35 -04005028 } else {
5029 u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes;
5030 u64 bytes;
5031
5032 /*
5033 * This is tricky, but first we need to figure out how much we
5034 * free'd from any free-ers that occured during this
5035 * reservation, so we reset ->csum_bytes to the csum_bytes
5036 * before we dropped our lock, and then call the free for the
5037 * number of bytes that were freed while we were trying our
5038 * reservation.
5039 */
5040 bytes = csum_bytes - BTRFS_I(inode)->csum_bytes;
5041 BTRFS_I(inode)->csum_bytes = csum_bytes;
5042 to_free = calc_csum_metadata_size(inode, bytes, 0);
5043
5044
5045 /*
5046 * Now we need to see how much we would have freed had we not
5047 * been making this reservation and our ->csum_bytes were not
5048 * artificially inflated.
5049 */
5050 BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes;
5051 bytes = csum_bytes - orig_csum_bytes;
5052 bytes = calc_csum_metadata_size(inode, bytes, 0);
5053
5054 /*
5055 * Now reset ->csum_bytes to what it should be. If bytes is
5056 * more than to_free then we would have free'd more space had we
5057 * not had an artificially high ->csum_bytes, so we need to free
5058 * the remainder. If bytes is the same or less then we don't
5059 * need to do anything, the other free-ers did the correct
5060 * thing.
5061 */
5062 BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes;
5063 if (bytes > to_free)
5064 to_free = bytes - to_free;
5065 else
5066 to_free = 0;
5067 }
Wang Shilong88e081bf2013-03-01 11:36:01 +00005068 spin_unlock(&BTRFS_I(inode)->lock);
5069 if (dropped)
5070 to_free += btrfs_calc_trans_metadata_size(root, dropped);
5071
5072 if (to_free) {
5073 btrfs_block_rsv_release(root, block_rsv, to_free);
5074 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5075 btrfs_ino(inode), to_free, 0);
5076 }
5077 if (delalloc_lock)
5078 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
5079 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005080}
5081
Josef Bacik7709cde2011-08-04 10:25:02 -04005082/**
5083 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
5084 * @inode: the inode to release the reservation for
5085 * @num_bytes: the number of bytes we're releasing
5086 *
5087 * This will release the metadata reservation for an inode. This can be called
5088 * once we complete IO for a given set of bytes to release their metadata
5089 * reservations.
5090 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005091void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
5092{
5093 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005094 u64 to_free = 0;
5095 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005096
5097 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik7709cde2011-08-04 10:25:02 -04005098 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00005099 dropped = drop_outstanding_extent(inode);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005100
Miao Xie09348562013-02-07 10:12:07 +00005101 if (num_bytes)
5102 to_free = calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacik7709cde2011-08-04 10:25:02 -04005103 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00005104 if (dropped > 0)
5105 to_free += btrfs_calc_trans_metadata_size(root, dropped);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005106
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005107 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5108 btrfs_ino(inode), to_free, 0);
Arne Jansenc5567232011-09-14 15:44:05 +02005109 if (root->fs_info->quota_enabled) {
5110 btrfs_qgroup_free(root, num_bytes +
5111 dropped * root->leafsize);
5112 }
5113
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005114 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
5115 to_free);
5116}
5117
Josef Bacik7709cde2011-08-04 10:25:02 -04005118/**
5119 * btrfs_delalloc_reserve_space - reserve data and metadata space for delalloc
5120 * @inode: inode we're writing to
5121 * @num_bytes: the number of bytes we want to allocate
5122 *
5123 * This will do the following things
5124 *
5125 * o reserve space in the data space info for num_bytes
5126 * o reserve space in the metadata space info based on number of outstanding
5127 * extents and how much csums will be needed
5128 * o add to the inodes ->delalloc_bytes
5129 * o add it to the fs_info's delalloc inodes list.
5130 *
5131 * This will return 0 for success and -ENOSPC if there is no space left.
5132 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005133int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes)
5134{
5135 int ret;
5136
5137 ret = btrfs_check_data_free_space(inode, num_bytes);
5138 if (ret)
5139 return ret;
5140
5141 ret = btrfs_delalloc_reserve_metadata(inode, num_bytes);
5142 if (ret) {
5143 btrfs_free_reserved_data_space(inode, num_bytes);
5144 return ret;
5145 }
5146
5147 return 0;
5148}
5149
Josef Bacik7709cde2011-08-04 10:25:02 -04005150/**
5151 * btrfs_delalloc_release_space - release data and metadata space for delalloc
5152 * @inode: inode we're releasing space for
5153 * @num_bytes: the number of bytes we want to free up
5154 *
5155 * This must be matched with a call to btrfs_delalloc_reserve_space. This is
5156 * called in the case that we don't need the metadata AND data reservations
5157 * anymore. So if there is an error or we insert an inline extent.
5158 *
5159 * This function will release the metadata space that was not used and will
5160 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
5161 * list if there are no delalloc bytes left.
5162 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005163void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes)
5164{
5165 btrfs_delalloc_release_metadata(inode, num_bytes);
5166 btrfs_free_reserved_data_space(inode, num_bytes);
5167}
5168
Liu Boc53d6132012-12-27 09:01:19 +00005169static int update_block_group(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005170 u64 bytenr, u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04005171{
Josef Bacik0af3d002010-06-21 14:48:16 -04005172 struct btrfs_block_group_cache *cache = NULL;
Chris Mason9078a3e2007-04-26 16:46:15 -04005173 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04005174 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005175 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04005176 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04005177 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04005178
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005179 /* block accounting for super block */
Miao Xieeb73c1b2013-05-15 07:48:22 +00005180 spin_lock(&info->delalloc_root_lock);
David Sterba6c417612011-04-13 15:41:04 +02005181 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005182 if (alloc)
5183 old_val += num_bytes;
5184 else
5185 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02005186 btrfs_set_super_bytes_used(info->super_copy, old_val);
Miao Xieeb73c1b2013-05-15 07:48:22 +00005187 spin_unlock(&info->delalloc_root_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005188
Chris Masond3977122009-01-05 21:25:51 -05005189 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04005190 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05005191 if (!cache)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005192 return -ENOENT;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005193 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
5194 BTRFS_BLOCK_GROUP_RAID1 |
5195 BTRFS_BLOCK_GROUP_RAID10))
5196 factor = 2;
5197 else
5198 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04005199 /*
5200 * If this block group has free space cache written out, we
5201 * need to make sure to load it if we are removing space. This
5202 * is because we need the unpinning stage to actually add the
5203 * space back to the block group, otherwise we will leak space.
5204 */
5205 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Liu Bof6373bf2012-12-27 09:01:18 +00005206 cache_block_group(cache, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04005207
Chris Masondb945352007-10-15 16:15:53 -04005208 byte_in_group = bytenr - cache->key.objectid;
5209 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04005210
Josef Bacik25179202008-10-29 14:49:05 -04005211 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04005212 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04005213
Josef Bacik73bc1872011-10-03 14:07:49 -04005214 if (btrfs_test_opt(root, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04005215 cache->disk_cache_state < BTRFS_DC_CLEAR)
5216 cache->disk_cache_state = BTRFS_DC_CLEAR;
5217
Josef Bacik0f9dd462008-09-23 13:14:11 -04005218 cache->dirty = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04005219 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04005220 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04005221 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04005222 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04005223 btrfs_set_block_group_used(&cache->item, old_val);
5224 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04005225 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005226 cache->space_info->bytes_used += num_bytes;
5227 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04005228 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005229 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04005230 } else {
Chris Masondb945352007-10-15 16:15:53 -04005231 old_val -= num_bytes;
Chris Masonc286ac42008-07-22 23:06:41 -04005232 btrfs_set_block_group_used(&cache->item, old_val);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005233 cache->pinned += num_bytes;
5234 cache->space_info->bytes_pinned += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005235 cache->space_info->bytes_used -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005236 cache->space_info->disk_used -= num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04005237 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005238 spin_unlock(&cache->space_info->lock);
Liu Hui1f3c79a2009-01-05 15:57:51 -05005239
Yan, Zhengf0486c62010-05-16 10:46:25 -04005240 set_extent_dirty(info->pinned_extents,
5241 bytenr, bytenr + num_bytes - 1,
5242 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04005243 }
Chris Masonfa9c0d72009-04-03 09:47:43 -04005244 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04005245 total -= num_bytes;
5246 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005247 }
5248 return 0;
5249}
Chris Mason6324fbf2008-03-24 15:01:59 -04005250
Chris Masona061fc82008-05-07 11:43:44 -04005251static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
5252{
Josef Bacik0f9dd462008-09-23 13:14:11 -04005253 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05005254 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005255
Liu Boa1897fd2012-12-27 09:01:23 +00005256 spin_lock(&root->fs_info->block_group_cache_lock);
5257 bytenr = root->fs_info->first_logical_byte;
5258 spin_unlock(&root->fs_info->block_group_cache_lock);
5259
5260 if (bytenr < (u64)-1)
5261 return bytenr;
5262
Josef Bacik0f9dd462008-09-23 13:14:11 -04005263 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
5264 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04005265 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005266
Yan Zhengd2fb3432008-12-11 16:30:39 -05005267 bytenr = cache->key.objectid;
Chris Masonfa9c0d72009-04-03 09:47:43 -04005268 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05005269
5270 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04005271}
5272
Yan, Zhengf0486c62010-05-16 10:46:25 -04005273static int pin_down_extent(struct btrfs_root *root,
5274 struct btrfs_block_group_cache *cache,
5275 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05005276{
Yan Zheng11833d62009-09-11 16:11:19 -04005277 spin_lock(&cache->space_info->lock);
5278 spin_lock(&cache->lock);
5279 cache->pinned += num_bytes;
5280 cache->space_info->bytes_pinned += num_bytes;
5281 if (reserved) {
5282 cache->reserved -= num_bytes;
5283 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05005284 }
Yan Zheng11833d62009-09-11 16:11:19 -04005285 spin_unlock(&cache->lock);
5286 spin_unlock(&cache->space_info->lock);
5287
Yan, Zhengf0486c62010-05-16 10:46:25 -04005288 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
5289 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Josef Bacik0be5dc62013-10-07 15:18:52 -04005290 if (reserved)
5291 trace_btrfs_reserved_extent_free(root, bytenr, num_bytes);
Yan324ae4d2007-11-16 14:57:08 -05005292 return 0;
5293}
Chris Mason9078a3e2007-04-26 16:46:15 -04005294
Yan, Zhengf0486c62010-05-16 10:46:25 -04005295/*
5296 * this function must be called within transaction
5297 */
5298int btrfs_pin_extent(struct btrfs_root *root,
5299 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04005300{
Yan, Zhengf0486c62010-05-16 10:46:25 -04005301 struct btrfs_block_group_cache *cache;
5302
5303 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005304 BUG_ON(!cache); /* Logic error */
Yan, Zhengf0486c62010-05-16 10:46:25 -04005305
5306 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
5307
5308 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04005309 return 0;
5310}
Zheng Yane8569812008-09-26 10:05:48 -04005311
Yan, Zhengf0486c62010-05-16 10:46:25 -04005312/*
Chris Masone688b722011-10-31 20:52:39 -04005313 * this function must be called within transaction
Yan, Zhengf0486c62010-05-16 10:46:25 -04005314 */
Liu Bodcfac412012-12-27 09:01:20 +00005315int btrfs_pin_extent_for_log_replay(struct btrfs_root *root,
Chris Masone688b722011-10-31 20:52:39 -04005316 u64 bytenr, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005317{
Chris Masone688b722011-10-31 20:52:39 -04005318 struct btrfs_block_group_cache *cache;
Josef Bacikb50c6e22013-04-25 15:55:30 -04005319 int ret;
Chris Masone688b722011-10-31 20:52:39 -04005320
5321 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005322 if (!cache)
5323 return -EINVAL;
Chris Masone688b722011-10-31 20:52:39 -04005324
5325 /*
5326 * pull in the free space cache (if any) so that our pin
5327 * removes the free space from the cache. We have load_only set
5328 * to one because the slow code to read in the free extents does check
5329 * the pinned extents.
5330 */
Liu Bof6373bf2012-12-27 09:01:18 +00005331 cache_block_group(cache, 1);
Chris Masone688b722011-10-31 20:52:39 -04005332
5333 pin_down_extent(root, cache, bytenr, num_bytes, 0);
5334
5335 /* remove us from the free space cache (if we're there at all) */
Josef Bacikb50c6e22013-04-25 15:55:30 -04005336 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
Chris Masone688b722011-10-31 20:52:39 -04005337 btrfs_put_block_group(cache);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005338 return ret;
Chris Masone688b722011-10-31 20:52:39 -04005339}
5340
Josef Bacik8c2a1a32013-06-06 13:19:32 -04005341static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes)
5342{
5343 int ret;
5344 struct btrfs_block_group_cache *block_group;
5345 struct btrfs_caching_control *caching_ctl;
5346
5347 block_group = btrfs_lookup_block_group(root->fs_info, start);
5348 if (!block_group)
5349 return -EINVAL;
5350
5351 cache_block_group(block_group, 0);
5352 caching_ctl = get_caching_control(block_group);
5353
5354 if (!caching_ctl) {
5355 /* Logic error */
5356 BUG_ON(!block_group_cache_done(block_group));
5357 ret = btrfs_remove_free_space(block_group, start, num_bytes);
5358 } else {
5359 mutex_lock(&caching_ctl->mutex);
5360
5361 if (start >= caching_ctl->progress) {
5362 ret = add_excluded_extent(root, start, num_bytes);
5363 } else if (start + num_bytes <= caching_ctl->progress) {
5364 ret = btrfs_remove_free_space(block_group,
5365 start, num_bytes);
5366 } else {
5367 num_bytes = caching_ctl->progress - start;
5368 ret = btrfs_remove_free_space(block_group,
5369 start, num_bytes);
5370 if (ret)
5371 goto out_lock;
5372
5373 num_bytes = (start + num_bytes) -
5374 caching_ctl->progress;
5375 start = caching_ctl->progress;
5376 ret = add_excluded_extent(root, start, num_bytes);
5377 }
5378out_lock:
5379 mutex_unlock(&caching_ctl->mutex);
5380 put_caching_control(caching_ctl);
5381 }
5382 btrfs_put_block_group(block_group);
5383 return ret;
5384}
5385
5386int btrfs_exclude_logged_extents(struct btrfs_root *log,
5387 struct extent_buffer *eb)
5388{
5389 struct btrfs_file_extent_item *item;
5390 struct btrfs_key key;
5391 int found_type;
5392 int i;
5393
5394 if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS))
5395 return 0;
5396
5397 for (i = 0; i < btrfs_header_nritems(eb); i++) {
5398 btrfs_item_key_to_cpu(eb, &key, i);
5399 if (key.type != BTRFS_EXTENT_DATA_KEY)
5400 continue;
5401 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
5402 found_type = btrfs_file_extent_type(eb, item);
5403 if (found_type == BTRFS_FILE_EXTENT_INLINE)
5404 continue;
5405 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
5406 continue;
5407 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
5408 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
5409 __exclude_logged_extent(log, key.objectid, key.offset);
5410 }
5411
5412 return 0;
5413}
5414
Josef Bacikfb25e912011-07-26 17:00:46 -04005415/**
5416 * btrfs_update_reserved_bytes - update the block_group and space info counters
5417 * @cache: The cache we are manipulating
5418 * @num_bytes: The number of bytes in question
5419 * @reserve: One of the reservation enums
5420 *
5421 * This is called by the allocator when it reserves space, or by somebody who is
5422 * freeing space that was never actually used on disk. For example if you
5423 * reserve some space for a new leaf in transaction A and before transaction A
5424 * commits you free that leaf, you call this with reserve set to 0 in order to
5425 * clear the reservation.
5426 *
5427 * Metadata reservations should be called with RESERVE_ALLOC so we do the proper
5428 * ENOSPC accounting. For data we handle the reservation through clearing the
5429 * delalloc bits in the io_tree. We have to do this since we could end up
5430 * allocating less disk space for the amount of data we have reserved in the
5431 * case of compression.
5432 *
5433 * If this is a reservation and the block group has become read only we cannot
5434 * make the reservation and return -EAGAIN, otherwise this function always
5435 * succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04005436 */
Josef Bacikfb25e912011-07-26 17:00:46 -04005437static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
5438 u64 num_bytes, int reserve)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005439{
Josef Bacikfb25e912011-07-26 17:00:46 -04005440 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005441 int ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005442
Josef Bacikfb25e912011-07-26 17:00:46 -04005443 spin_lock(&space_info->lock);
5444 spin_lock(&cache->lock);
5445 if (reserve != RESERVE_FREE) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005446 if (cache->ro) {
5447 ret = -EAGAIN;
5448 } else {
Josef Bacikfb25e912011-07-26 17:00:46 -04005449 cache->reserved += num_bytes;
5450 space_info->bytes_reserved += num_bytes;
5451 if (reserve == RESERVE_ALLOC) {
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005452 trace_btrfs_space_reservation(cache->fs_info,
Liu Bo2bcc0322012-03-29 09:57:44 -04005453 "space_info", space_info->flags,
5454 num_bytes, 0);
Josef Bacikfb25e912011-07-26 17:00:46 -04005455 space_info->bytes_may_use -= num_bytes;
5456 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005457 }
Josef Bacikfb25e912011-07-26 17:00:46 -04005458 } else {
5459 if (cache->ro)
5460 space_info->bytes_readonly += num_bytes;
5461 cache->reserved -= num_bytes;
5462 space_info->bytes_reserved -= num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005463 }
Josef Bacikfb25e912011-07-26 17:00:46 -04005464 spin_unlock(&cache->lock);
5465 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005466 return ret;
5467}
5468
Jeff Mahoney143bede2012-03-01 14:56:26 +01005469void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04005470 struct btrfs_root *root)
5471{
5472 struct btrfs_fs_info *fs_info = root->fs_info;
5473 struct btrfs_caching_control *next;
5474 struct btrfs_caching_control *caching_ctl;
5475 struct btrfs_block_group_cache *cache;
Josef Bacikb150a4f2013-06-19 15:00:04 -04005476 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04005477
5478 down_write(&fs_info->extent_commit_sem);
5479
5480 list_for_each_entry_safe(caching_ctl, next,
5481 &fs_info->caching_block_groups, list) {
5482 cache = caching_ctl->block_group;
5483 if (block_group_cache_done(cache)) {
5484 cache->last_byte_to_unpin = (u64)-1;
5485 list_del_init(&caching_ctl->list);
5486 put_caching_control(caching_ctl);
5487 } else {
5488 cache->last_byte_to_unpin = caching_ctl->progress;
5489 }
5490 }
5491
5492 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
5493 fs_info->pinned_extents = &fs_info->freed_extents[1];
5494 else
5495 fs_info->pinned_extents = &fs_info->freed_extents[0];
5496
5497 up_write(&fs_info->extent_commit_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005498
Josef Bacikb150a4f2013-06-19 15:00:04 -04005499 list_for_each_entry_rcu(space_info, &fs_info->space_info, list)
5500 percpu_counter_set(&space_info->total_bytes_pinned, 0);
5501
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005502 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04005503}
5504
5505static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
5506{
5507 struct btrfs_fs_info *fs_info = root->fs_info;
5508 struct btrfs_block_group_cache *cache = NULL;
Josef Bacik7b398f82012-10-22 15:52:28 -04005509 struct btrfs_space_info *space_info;
5510 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Yan Zheng11833d62009-09-11 16:11:19 -04005511 u64 len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005512 bool readonly;
Yan Zheng11833d62009-09-11 16:11:19 -04005513
5514 while (start <= end) {
Josef Bacik7b398f82012-10-22 15:52:28 -04005515 readonly = false;
Yan Zheng11833d62009-09-11 16:11:19 -04005516 if (!cache ||
5517 start >= cache->key.objectid + cache->key.offset) {
5518 if (cache)
5519 btrfs_put_block_group(cache);
5520 cache = btrfs_lookup_block_group(fs_info, start);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005521 BUG_ON(!cache); /* Logic error */
Yan Zheng11833d62009-09-11 16:11:19 -04005522 }
5523
5524 len = cache->key.objectid + cache->key.offset - start;
5525 len = min(len, end + 1 - start);
5526
5527 if (start < cache->last_byte_to_unpin) {
5528 len = min(len, cache->last_byte_to_unpin - start);
5529 btrfs_add_free_space(cache, start, len);
5530 }
Josef Bacik25179202008-10-29 14:49:05 -04005531
Yan, Zhengf0486c62010-05-16 10:46:25 -04005532 start += len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005533 space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005534
Josef Bacik7b398f82012-10-22 15:52:28 -04005535 spin_lock(&space_info->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005536 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04005537 cache->pinned -= len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005538 space_info->bytes_pinned -= len;
5539 if (cache->ro) {
5540 space_info->bytes_readonly += len;
5541 readonly = true;
5542 }
Josef Bacik25179202008-10-29 14:49:05 -04005543 spin_unlock(&cache->lock);
Josef Bacik7b398f82012-10-22 15:52:28 -04005544 if (!readonly && global_rsv->space_info == space_info) {
5545 spin_lock(&global_rsv->lock);
5546 if (!global_rsv->full) {
5547 len = min(len, global_rsv->size -
5548 global_rsv->reserved);
5549 global_rsv->reserved += len;
5550 space_info->bytes_may_use += len;
5551 if (global_rsv->reserved >= global_rsv->size)
5552 global_rsv->full = 1;
5553 }
5554 spin_unlock(&global_rsv->lock);
5555 }
5556 spin_unlock(&space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04005557 }
5558
5559 if (cache)
Chris Masonfa9c0d72009-04-03 09:47:43 -04005560 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04005561 return 0;
5562}
5563
5564int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04005565 struct btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -05005566{
Yan Zheng11833d62009-09-11 16:11:19 -04005567 struct btrfs_fs_info *fs_info = root->fs_info;
5568 struct extent_io_tree *unpin;
Chris Mason1a5bc162007-10-15 16:15:26 -04005569 u64 start;
5570 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05005571 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05005572
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005573 if (trans->aborted)
5574 return 0;
5575
Yan Zheng11833d62009-09-11 16:11:19 -04005576 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
5577 unpin = &fs_info->freed_extents[1];
5578 else
5579 unpin = &fs_info->freed_extents[0];
5580
Chris Masond3977122009-01-05 21:25:51 -05005581 while (1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04005582 ret = find_first_extent_bit(unpin, 0, &start, &end,
Josef Bacike6138872012-09-27 17:07:30 -04005583 EXTENT_DIRTY, NULL);
Chris Mason1a5bc162007-10-15 16:15:26 -04005584 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05005585 break;
Liu Hui1f3c79a2009-01-05 15:57:51 -05005586
Li Dongyang5378e602011-03-24 10:24:27 +00005587 if (btrfs_test_opt(root, DISCARD))
5588 ret = btrfs_discard_extent(root, start,
5589 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05005590
Chris Mason1a5bc162007-10-15 16:15:26 -04005591 clear_extent_dirty(unpin, start, end, GFP_NOFS);
Yan Zheng11833d62009-09-11 16:11:19 -04005592 unpin_extent_range(root, start, end);
Chris Masonb9473432009-03-13 11:00:37 -04005593 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05005594 }
Josef Bacik817d52f2009-07-13 21:29:25 -04005595
Chris Masone20d96d2007-03-22 12:13:20 -04005596 return 0;
5597}
5598
Josef Bacikb150a4f2013-06-19 15:00:04 -04005599static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes,
5600 u64 owner, u64 root_objectid)
5601{
5602 struct btrfs_space_info *space_info;
5603 u64 flags;
5604
5605 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
5606 if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID)
5607 flags = BTRFS_BLOCK_GROUP_SYSTEM;
5608 else
5609 flags = BTRFS_BLOCK_GROUP_METADATA;
5610 } else {
5611 flags = BTRFS_BLOCK_GROUP_DATA;
5612 }
5613
5614 space_info = __find_space_info(fs_info, flags);
5615 BUG_ON(!space_info); /* Logic bug */
5616 percpu_counter_add(&space_info->total_bytes_pinned, num_bytes);
5617}
5618
5619
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005620static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
5621 struct btrfs_root *root,
5622 u64 bytenr, u64 num_bytes, u64 parent,
5623 u64 root_objectid, u64 owner_objectid,
5624 u64 owner_offset, int refs_to_drop,
5625 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05005626{
Chris Masone2fa7222007-03-12 16:22:34 -04005627 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005628 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04005629 struct btrfs_fs_info *info = root->fs_info;
5630 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04005631 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005632 struct btrfs_extent_item *ei;
5633 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05005634 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005635 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05005636 int extent_slot = 0;
5637 int found_extent = 0;
5638 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005639 u32 item_size;
5640 u64 refs;
Josef Bacik3173a182013-03-07 14:22:04 -05005641 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
5642 SKINNY_METADATA);
Chris Mason037e6392007-03-07 11:50:24 -05005643
Chris Mason5caf2a02007-04-02 11:20:42 -04005644 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04005645 if (!path)
5646 return -ENOMEM;
5647
Chris Mason3c12ac72008-04-21 12:01:38 -04005648 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04005649 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005650
5651 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
5652 BUG_ON(!is_data && refs_to_drop != 1);
5653
Josef Bacik3173a182013-03-07 14:22:04 -05005654 if (is_data)
5655 skinny_metadata = 0;
5656
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005657 ret = lookup_extent_backref(trans, extent_root, path, &iref,
5658 bytenr, num_bytes, parent,
5659 root_objectid, owner_objectid,
5660 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05005661 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05005662 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005663 while (extent_slot >= 0) {
5664 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05005665 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005666 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05005667 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005668 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
5669 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05005670 found_extent = 1;
5671 break;
5672 }
Josef Bacik3173a182013-03-07 14:22:04 -05005673 if (key.type == BTRFS_METADATA_ITEM_KEY &&
5674 key.offset == owner_objectid) {
5675 found_extent = 1;
5676 break;
5677 }
Chris Mason952fcca2008-02-18 16:33:44 -05005678 if (path->slots[0] - extent_slot > 5)
5679 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005680 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05005681 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005682#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
5683 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
5684 if (found_extent && item_size < sizeof(*ei))
5685 found_extent = 0;
5686#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04005687 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005688 BUG_ON(iref);
Chris Mason56bec292009-03-13 10:10:06 -04005689 ret = remove_extent_backref(trans, extent_root, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005690 NULL, refs_to_drop,
5691 is_data);
David Sterba005d6422012-09-18 07:52:32 -06005692 if (ret) {
5693 btrfs_abort_transaction(trans, extent_root, ret);
5694 goto out;
5695 }
David Sterbab3b4aa72011-04-21 01:20:15 +02005696 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04005697 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005698
5699 key.objectid = bytenr;
5700 key.type = BTRFS_EXTENT_ITEM_KEY;
5701 key.offset = num_bytes;
5702
Josef Bacik3173a182013-03-07 14:22:04 -05005703 if (!is_data && skinny_metadata) {
5704 key.type = BTRFS_METADATA_ITEM_KEY;
5705 key.offset = owner_objectid;
5706 }
5707
Zheng Yan31840ae2008-09-23 13:14:14 -04005708 ret = btrfs_search_slot(trans, extent_root,
5709 &key, path, -1, 1);
Josef Bacik3173a182013-03-07 14:22:04 -05005710 if (ret > 0 && skinny_metadata && path->slots[0]) {
5711 /*
5712 * Couldn't find our skinny metadata item,
5713 * see if we have ye olde extent item.
5714 */
5715 path->slots[0]--;
5716 btrfs_item_key_to_cpu(path->nodes[0], &key,
5717 path->slots[0]);
5718 if (key.objectid == bytenr &&
5719 key.type == BTRFS_EXTENT_ITEM_KEY &&
5720 key.offset == num_bytes)
5721 ret = 0;
5722 }
5723
5724 if (ret > 0 && skinny_metadata) {
5725 skinny_metadata = false;
5726 key.type = BTRFS_EXTENT_ITEM_KEY;
5727 key.offset = num_bytes;
5728 btrfs_release_path(path);
5729 ret = btrfs_search_slot(trans, extent_root,
5730 &key, path, -1, 1);
5731 }
5732
Josef Bacikf3465ca2008-11-12 14:19:50 -05005733 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005734 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005735 ret, bytenr);
Josef Bacikb783e622011-07-13 15:03:50 +00005736 if (ret > 0)
5737 btrfs_print_leaf(extent_root,
5738 path->nodes[0]);
Josef Bacikf3465ca2008-11-12 14:19:50 -05005739 }
David Sterba005d6422012-09-18 07:52:32 -06005740 if (ret < 0) {
5741 btrfs_abort_transaction(trans, extent_root, ret);
5742 goto out;
5743 }
Zheng Yan31840ae2008-09-23 13:14:14 -04005744 extent_slot = path->slots[0];
5745 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005746 } else if (ret == -ENOENT) {
Chris Mason7bb86312007-12-11 09:25:06 -05005747 btrfs_print_leaf(extent_root, path->nodes[0]);
5748 WARN_ON(1);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005749 btrfs_err(info,
5750 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005751 bytenr, parent, root_objectid, owner_objectid,
5752 owner_offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005753 } else {
David Sterba005d6422012-09-18 07:52:32 -06005754 btrfs_abort_transaction(trans, extent_root, ret);
5755 goto out;
Chris Mason7bb86312007-12-11 09:25:06 -05005756 }
Chris Mason5f39d392007-10-15 16:14:19 -04005757
5758 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005759 item_size = btrfs_item_size_nr(leaf, extent_slot);
5760#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
5761 if (item_size < sizeof(*ei)) {
5762 BUG_ON(found_extent || extent_slot != path->slots[0]);
5763 ret = convert_extent_item_v0(trans, extent_root, path,
5764 owner_objectid, 0);
David Sterba005d6422012-09-18 07:52:32 -06005765 if (ret < 0) {
5766 btrfs_abort_transaction(trans, extent_root, ret);
5767 goto out;
5768 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005769
David Sterbab3b4aa72011-04-21 01:20:15 +02005770 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005771 path->leave_spinning = 1;
5772
5773 key.objectid = bytenr;
5774 key.type = BTRFS_EXTENT_ITEM_KEY;
5775 key.offset = num_bytes;
5776
5777 ret = btrfs_search_slot(trans, extent_root, &key, path,
5778 -1, 1);
5779 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005780 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005781 ret, bytenr);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005782 btrfs_print_leaf(extent_root, path->nodes[0]);
5783 }
David Sterba005d6422012-09-18 07:52:32 -06005784 if (ret < 0) {
5785 btrfs_abort_transaction(trans, extent_root, ret);
5786 goto out;
5787 }
5788
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005789 extent_slot = path->slots[0];
5790 leaf = path->nodes[0];
5791 item_size = btrfs_item_size_nr(leaf, extent_slot);
5792 }
5793#endif
5794 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05005795 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04005796 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05005797 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
5798 key.type == BTRFS_EXTENT_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005799 struct btrfs_tree_block_info *bi;
5800 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
5801 bi = (struct btrfs_tree_block_info *)(ei + 1);
5802 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05005803 }
5804
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005805 refs = btrfs_extent_refs(leaf, ei);
Josef Bacik32b02532013-04-24 16:38:50 -04005806 if (refs < refs_to_drop) {
5807 btrfs_err(info, "trying to drop %d refs but we only have %Lu "
5808 "for bytenr %Lu\n", refs_to_drop, refs, bytenr);
5809 ret = -EINVAL;
5810 btrfs_abort_transaction(trans, extent_root, ret);
5811 goto out;
5812 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005813 refs -= refs_to_drop;
5814
5815 if (refs > 0) {
5816 if (extent_op)
5817 __run_delayed_extent_op(extent_op, leaf, ei);
5818 /*
5819 * In the case of inline back ref, reference count will
5820 * be updated by remove_extent_backref
5821 */
5822 if (iref) {
5823 BUG_ON(!found_extent);
5824 } else {
5825 btrfs_set_extent_refs(leaf, ei, refs);
5826 btrfs_mark_buffer_dirty(leaf);
5827 }
5828 if (found_extent) {
5829 ret = remove_extent_backref(trans, extent_root, path,
5830 iref, refs_to_drop,
5831 is_data);
David Sterba005d6422012-09-18 07:52:32 -06005832 if (ret) {
5833 btrfs_abort_transaction(trans, extent_root, ret);
5834 goto out;
5835 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005836 }
Josef Bacikb150a4f2013-06-19 15:00:04 -04005837 add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid,
5838 root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005839 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005840 if (found_extent) {
5841 BUG_ON(is_data && refs_to_drop !=
5842 extent_data_ref_count(root, path, iref));
5843 if (iref) {
5844 BUG_ON(path->slots[0] != extent_slot);
5845 } else {
5846 BUG_ON(path->slots[0] != extent_slot + 1);
5847 path->slots[0] = extent_slot;
5848 num_to_del = 2;
5849 }
Chris Mason78fae272007-03-25 11:35:08 -04005850 }
Chris Masonb9473432009-03-13 11:00:37 -04005851
Chris Mason952fcca2008-02-18 16:33:44 -05005852 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
5853 num_to_del);
David Sterba005d6422012-09-18 07:52:32 -06005854 if (ret) {
5855 btrfs_abort_transaction(trans, extent_root, ret);
5856 goto out;
5857 }
David Sterbab3b4aa72011-04-21 01:20:15 +02005858 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01005859
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005860 if (is_data) {
Chris Mason459931e2008-12-10 09:10:46 -05005861 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
David Sterba005d6422012-09-18 07:52:32 -06005862 if (ret) {
5863 btrfs_abort_transaction(trans, extent_root, ret);
5864 goto out;
5865 }
Chris Mason459931e2008-12-10 09:10:46 -05005866 }
5867
Liu Boc53d6132012-12-27 09:01:19 +00005868 ret = update_block_group(root, bytenr, num_bytes, 0);
David Sterba005d6422012-09-18 07:52:32 -06005869 if (ret) {
5870 btrfs_abort_transaction(trans, extent_root, ret);
5871 goto out;
5872 }
Chris Masona28ec192007-03-06 20:08:01 -05005873 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005874out:
Chris Mason5caf2a02007-04-02 11:20:42 -04005875 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05005876 return ret;
5877}
5878
5879/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04005880 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04005881 * delayed ref for that extent as well. This searches the delayed ref tree for
5882 * a given extent, and if there are no other delayed refs to be processed, it
5883 * removes it from the tree.
5884 */
5885static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
5886 struct btrfs_root *root, u64 bytenr)
5887{
5888 struct btrfs_delayed_ref_head *head;
5889 struct btrfs_delayed_ref_root *delayed_refs;
5890 struct btrfs_delayed_ref_node *ref;
5891 struct rb_node *node;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005892 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04005893
5894 delayed_refs = &trans->transaction->delayed_refs;
5895 spin_lock(&delayed_refs->lock);
5896 head = btrfs_find_delayed_ref_head(trans, bytenr);
5897 if (!head)
5898 goto out;
5899
5900 node = rb_prev(&head->node.rb_node);
5901 if (!node)
5902 goto out;
5903
5904 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
5905
5906 /* there are still entries for this ref, we can't drop it */
5907 if (ref->bytenr == bytenr)
5908 goto out;
5909
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005910 if (head->extent_op) {
5911 if (!head->must_insert_reserved)
5912 goto out;
Miao Xie78a61842012-11-21 02:21:28 +00005913 btrfs_free_delayed_extent_op(head->extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005914 head->extent_op = NULL;
5915 }
5916
Chris Mason1887be62009-03-13 10:11:24 -04005917 /*
5918 * waiting for the lock here would deadlock. If someone else has it
5919 * locked they are already in the process of dropping it anyway
5920 */
5921 if (!mutex_trylock(&head->mutex))
5922 goto out;
5923
5924 /*
5925 * at this point we have a head with no other entries. Go
5926 * ahead and process it.
5927 */
5928 head->node.in_tree = 0;
5929 rb_erase(&head->node.rb_node, &delayed_refs->root);
Chris Masonc3e69d52009-03-13 10:17:05 -04005930
Chris Mason1887be62009-03-13 10:11:24 -04005931 delayed_refs->num_entries--;
5932
5933 /*
5934 * we don't take a ref on the node because we're removing it from the
5935 * tree, so we just steal the ref the tree was holding.
5936 */
Chris Masonc3e69d52009-03-13 10:17:05 -04005937 delayed_refs->num_heads--;
5938 if (list_empty(&head->cluster))
5939 delayed_refs->num_heads_ready--;
5940
5941 list_del_init(&head->cluster);
Chris Mason1887be62009-03-13 10:11:24 -04005942 spin_unlock(&delayed_refs->lock);
5943
Yan, Zhengf0486c62010-05-16 10:46:25 -04005944 BUG_ON(head->extent_op);
5945 if (head->must_insert_reserved)
5946 ret = 1;
5947
5948 mutex_unlock(&head->mutex);
Chris Mason1887be62009-03-13 10:11:24 -04005949 btrfs_put_delayed_ref(&head->node);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005950 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04005951out:
5952 spin_unlock(&delayed_refs->lock);
5953 return 0;
5954}
5955
Yan, Zhengf0486c62010-05-16 10:46:25 -04005956void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
5957 struct btrfs_root *root,
5958 struct extent_buffer *buf,
Jan Schmidt5581a512012-05-16 17:04:52 +02005959 u64 parent, int last_ref)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005960{
Yan, Zhengf0486c62010-05-16 10:46:25 -04005961 struct btrfs_block_group_cache *cache = NULL;
Josef Bacikb150a4f2013-06-19 15:00:04 -04005962 int pin = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005963 int ret;
5964
5965 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02005966 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
5967 buf->start, buf->len,
5968 parent, root->root_key.objectid,
5969 btrfs_header_level(buf),
Jan Schmidt5581a512012-05-16 17:04:52 +02005970 BTRFS_DROP_DELAYED_REF, NULL, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005971 BUG_ON(ret); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04005972 }
5973
5974 if (!last_ref)
5975 return;
5976
Yan, Zhengf0486c62010-05-16 10:46:25 -04005977 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005978
5979 if (btrfs_header_generation(buf) == trans->transid) {
5980 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
5981 ret = check_ref_cleanup(trans, root, buf->start);
5982 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04005983 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005984 }
5985
5986 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
5987 pin_down_extent(root, cache, buf->start, buf->len, 1);
Josef Bacik37be25b2011-08-05 10:25:38 -04005988 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005989 }
5990
5991 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
5992
5993 btrfs_add_free_space(cache, buf->start, buf->len);
Josef Bacikfb25e912011-07-26 17:00:46 -04005994 btrfs_update_reserved_bytes(cache, buf->len, RESERVE_FREE);
Josef Bacik0be5dc62013-10-07 15:18:52 -04005995 trace_btrfs_reserved_extent_free(root, buf->start, buf->len);
Josef Bacikb150a4f2013-06-19 15:00:04 -04005996 pin = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005997 }
5998out:
Josef Bacikb150a4f2013-06-19 15:00:04 -04005999 if (pin)
6000 add_pinned_bytes(root->fs_info, buf->len,
6001 btrfs_header_level(buf),
6002 root->root_key.objectid);
6003
Josef Bacika826d6d2011-03-16 13:42:43 -04006004 /*
6005 * Deleting the buffer, clear the corrupt flag since it doesn't matter
6006 * anymore.
6007 */
6008 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006009 btrfs_put_block_group(cache);
6010}
6011
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006012/* Can return -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006013int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root,
6014 u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid,
6015 u64 owner, u64 offset, int for_cow)
Chris Mason925baed2008-06-25 16:01:30 -04006016{
6017 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006018 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason925baed2008-06-25 16:01:30 -04006019
Josef Bacikb150a4f2013-06-19 15:00:04 -04006020 add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid);
6021
Chris Mason56bec292009-03-13 10:10:06 -04006022 /*
6023 * tree log blocks never actually go into the extent allocation
6024 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04006025 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006026 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
6027 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04006028 /* unlocks the pinned mutex */
Yan Zheng11833d62009-09-11 16:11:19 -04006029 btrfs_pin_extent(root, bytenr, num_bytes, 1);
Chris Mason56bec292009-03-13 10:10:06 -04006030 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006031 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006032 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
6033 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006034 parent, root_objectid, (int)owner,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006035 BTRFS_DROP_DELAYED_REF, NULL, for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006036 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006037 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
6038 num_bytes,
6039 parent, root_objectid, owner,
6040 offset, BTRFS_DROP_DELAYED_REF,
6041 NULL, for_cow);
Chris Mason56bec292009-03-13 10:10:06 -04006042 }
Chris Mason925baed2008-06-25 16:01:30 -04006043 return ret;
6044}
6045
David Woodhouse53b381b2013-01-29 18:40:14 -05006046static u64 stripe_align(struct btrfs_root *root,
6047 struct btrfs_block_group_cache *cache,
6048 u64 val, u64 num_bytes)
Chris Mason87ee04e2007-11-30 11:30:34 -05006049{
Qu Wenruofda28322013-02-26 08:10:22 +00006050 u64 ret = ALIGN(val, root->stripesize);
Chris Mason87ee04e2007-11-30 11:30:34 -05006051 return ret;
6052}
6053
Chris Masonfec577f2007-02-26 10:40:21 -05006054/*
Josef Bacik817d52f2009-07-13 21:29:25 -04006055 * when we wait for progress in the block group caching, its because
6056 * our allocation attempt failed at least once. So, we must sleep
6057 * and let some progress happen before we try again.
6058 *
6059 * This function will sleep at least once waiting for new free space to
6060 * show up, and then it will check the block group free space numbers
6061 * for our min num_bytes. Another option is to have it go ahead
6062 * and look in the rbtree for a free extent of a given size, but this
6063 * is a good start.
Josef Bacik36cce922013-08-05 11:15:21 -04006064 *
6065 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
6066 * any of the information in this block group.
Josef Bacik817d52f2009-07-13 21:29:25 -04006067 */
Josef Bacik36cce922013-08-05 11:15:21 -04006068static noinline void
Josef Bacik817d52f2009-07-13 21:29:25 -04006069wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
6070 u64 num_bytes)
6071{
Yan Zheng11833d62009-09-11 16:11:19 -04006072 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04006073
Yan Zheng11833d62009-09-11 16:11:19 -04006074 caching_ctl = get_caching_control(cache);
6075 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04006076 return;
Josef Bacik817d52f2009-07-13 21:29:25 -04006077
Yan Zheng11833d62009-09-11 16:11:19 -04006078 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb6c2011-03-29 13:46:06 +08006079 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04006080
6081 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -04006082}
6083
6084static noinline int
6085wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
6086{
6087 struct btrfs_caching_control *caching_ctl;
Josef Bacik36cce922013-08-05 11:15:21 -04006088 int ret = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006089
6090 caching_ctl = get_caching_control(cache);
6091 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04006092 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006093
6094 wait_event(caching_ctl->wait, block_group_cache_done(cache));
Josef Bacik36cce922013-08-05 11:15:21 -04006095 if (cache->cached == BTRFS_CACHE_ERROR)
6096 ret = -EIO;
Yan Zheng11833d62009-09-11 16:11:19 -04006097 put_caching_control(caching_ctl);
Josef Bacik36cce922013-08-05 11:15:21 -04006098 return ret;
Josef Bacik817d52f2009-07-13 21:29:25 -04006099}
6100
Liu Bo31e50222012-11-21 14:18:10 +00006101int __get_raid_index(u64 flags)
Yan, Zhengb742bb82010-05-16 10:46:24 -04006102{
Ilya Dryomov7738a532012-03-27 17:09:17 +03006103 if (flags & BTRFS_BLOCK_GROUP_RAID10)
Miao Xiee6ec7162013-01-17 05:38:51 +00006104 return BTRFS_RAID_RAID10;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006105 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
Miao Xiee6ec7162013-01-17 05:38:51 +00006106 return BTRFS_RAID_RAID1;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006107 else if (flags & BTRFS_BLOCK_GROUP_DUP)
Miao Xiee6ec7162013-01-17 05:38:51 +00006108 return BTRFS_RAID_DUP;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006109 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
Miao Xiee6ec7162013-01-17 05:38:51 +00006110 return BTRFS_RAID_RAID0;
David Woodhouse53b381b2013-01-29 18:40:14 -05006111 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
Chris Masone942f882013-02-20 14:06:05 -05006112 return BTRFS_RAID_RAID5;
David Woodhouse53b381b2013-01-29 18:40:14 -05006113 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
Chris Masone942f882013-02-20 14:06:05 -05006114 return BTRFS_RAID_RAID6;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006115
Chris Masone942f882013-02-20 14:06:05 -05006116 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
Yan, Zhengb742bb82010-05-16 10:46:24 -04006117}
6118
Ilya Dryomov7738a532012-03-27 17:09:17 +03006119static int get_block_group_index(struct btrfs_block_group_cache *cache)
6120{
Liu Bo31e50222012-11-21 14:18:10 +00006121 return __get_raid_index(cache->flags);
Ilya Dryomov7738a532012-03-27 17:09:17 +03006122}
6123
Josef Bacik817d52f2009-07-13 21:29:25 -04006124enum btrfs_loop_type {
Josef Bacik285ff5a2012-01-13 15:27:45 -05006125 LOOP_CACHING_NOWAIT = 0,
6126 LOOP_CACHING_WAIT = 1,
6127 LOOP_ALLOC_CHUNK = 2,
6128 LOOP_NO_EMPTY_SIZE = 3,
Josef Bacik817d52f2009-07-13 21:29:25 -04006129};
6130
6131/*
Chris Masonfec577f2007-02-26 10:40:21 -05006132 * walks the btree of allocated extents and find a hole of a given size.
6133 * The key ins is changed to record the hole:
Miao Xiea4820392013-09-09 13:19:42 +08006134 * ins->objectid == start position
Chris Mason62e27492007-03-15 12:56:47 -04006135 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Miao Xiea4820392013-09-09 13:19:42 +08006136 * ins->offset == the size of the hole.
Chris Masonfec577f2007-02-26 10:40:21 -05006137 * Any available blocks before search_start are skipped.
Miao Xiea4820392013-09-09 13:19:42 +08006138 *
6139 * If there is no suitable free space, we will record the max size of
6140 * the free space extent currently.
Chris Masonfec577f2007-02-26 10:40:21 -05006141 */
Josef Bacik00361582013-08-14 14:02:47 -04006142static noinline int find_free_extent(struct btrfs_root *orig_root,
Chris Mason98ed5172008-01-03 10:01:48 -05006143 u64 num_bytes, u64 empty_size,
Chris Mason98ed5172008-01-03 10:01:48 -05006144 u64 hint_byte, struct btrfs_key *ins,
David Sterbab6919a52013-04-29 13:39:40 +00006145 u64 flags)
Chris Masonfec577f2007-02-26 10:40:21 -05006146{
Josef Bacik80eb2342008-10-29 14:49:05 -04006147 int ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05006148 struct btrfs_root *root = orig_root->fs_info->extent_root;
Chris Masonfa9c0d72009-04-03 09:47:43 -04006149 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04006150 struct btrfs_block_group_cache *block_group = NULL;
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006151 struct btrfs_block_group_cache *used_block_group;
Josef Bacik81c9ad22012-01-18 10:56:06 -05006152 u64 search_start = 0;
Miao Xiea4820392013-09-09 13:19:42 +08006153 u64 max_extent_size = 0;
Chris Mason239b14b2008-03-24 15:02:07 -04006154 int empty_cluster = 2 * 1024 * 1024;
Josef Bacik80eb2342008-10-29 14:49:05 -04006155 struct btrfs_space_info *space_info;
Chris Masonfa9c0d72009-04-03 09:47:43 -04006156 int loop = 0;
David Sterbab6919a52013-04-29 13:39:40 +00006157 int index = __get_raid_index(flags);
6158 int alloc_type = (flags & BTRFS_BLOCK_GROUP_DATA) ?
Josef Bacikfb25e912011-07-26 17:00:46 -04006159 RESERVE_ALLOC_NO_ACCOUNT : RESERVE_ALLOC;
Josef Bacik817d52f2009-07-13 21:29:25 -04006160 bool found_uncached_bg = false;
Josef Bacik0a243252009-09-11 16:11:20 -04006161 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006162 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04006163 bool use_cluster = true;
Miao Xie60d2adb2011-09-09 17:34:35 +08006164 bool have_caching_bg = false;
Chris Masonfec577f2007-02-26 10:40:21 -05006165
Chris Masondb945352007-10-15 16:15:53 -04006166 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04006167 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
Josef Bacik80eb2342008-10-29 14:49:05 -04006168 ins->objectid = 0;
6169 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04006170
David Sterbab6919a52013-04-29 13:39:40 +00006171 trace_find_free_extent(orig_root, num_bytes, empty_size, flags);
Josef Bacik3f7de032011-11-10 08:29:20 -05006172
David Sterbab6919a52013-04-29 13:39:40 +00006173 space_info = __find_space_info(root->fs_info, flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00006174 if (!space_info) {
David Sterbab6919a52013-04-29 13:39:40 +00006175 btrfs_err(root->fs_info, "No space info for %llu", flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00006176 return -ENOSPC;
6177 }
Josef Bacik2552d172009-04-03 10:14:19 -04006178
Josef Bacik67377732010-09-16 16:19:09 -04006179 /*
6180 * If the space info is for both data and metadata it means we have a
6181 * small filesystem and we can't use the clustering stuff.
6182 */
6183 if (btrfs_mixed_space_info(space_info))
6184 use_cluster = false;
6185
David Sterbab6919a52013-04-29 13:39:40 +00006186 if (flags & BTRFS_BLOCK_GROUP_METADATA && use_cluster) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04006187 last_ptr = &root->fs_info->meta_alloc_cluster;
Chris Mason536ac8a2009-02-12 09:41:38 -05006188 if (!btrfs_test_opt(root, SSD))
6189 empty_cluster = 64 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04006190 }
6191
David Sterbab6919a52013-04-29 13:39:40 +00006192 if ((flags & BTRFS_BLOCK_GROUP_DATA) && use_cluster &&
Josef Bacik67377732010-09-16 16:19:09 -04006193 btrfs_test_opt(root, SSD)) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04006194 last_ptr = &root->fs_info->data_alloc_cluster;
6195 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04006196
Chris Mason239b14b2008-03-24 15:02:07 -04006197 if (last_ptr) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04006198 spin_lock(&last_ptr->lock);
6199 if (last_ptr->block_group)
6200 hint_byte = last_ptr->window_start;
6201 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04006202 }
Chris Masonfa9c0d72009-04-03 09:47:43 -04006203
Chris Masona061fc82008-05-07 11:43:44 -04006204 search_start = max(search_start, first_logical_byte(root, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04006205 search_start = max(search_start, hint_byte);
Chris Mason0b86a832008-03-24 15:01:56 -04006206
Josef Bacik817d52f2009-07-13 21:29:25 -04006207 if (!last_ptr)
Chris Masonfa9c0d72009-04-03 09:47:43 -04006208 empty_cluster = 0;
Chris Masonfa9c0d72009-04-03 09:47:43 -04006209
Josef Bacik2552d172009-04-03 10:14:19 -04006210 if (search_start == hint_byte) {
Josef Bacik2552d172009-04-03 10:14:19 -04006211 block_group = btrfs_lookup_block_group(root->fs_info,
6212 search_start);
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006213 used_block_group = block_group;
Josef Bacik817d52f2009-07-13 21:29:25 -04006214 /*
6215 * we don't want to use the block group if it doesn't match our
6216 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05006217 *
6218 * However if we are re-searching with an ideal block group
6219 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04006220 */
David Sterbab6919a52013-04-29 13:39:40 +00006221 if (block_group && block_group_bits(block_group, flags) &&
Josef Bacik285ff5a2012-01-13 15:27:45 -05006222 block_group->cached != BTRFS_CACHE_NO) {
Josef Bacik2552d172009-04-03 10:14:19 -04006223 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04006224 if (list_empty(&block_group->list) ||
6225 block_group->ro) {
6226 /*
6227 * someone is removing this block group,
6228 * we can't jump into the have_block_group
6229 * target because our list pointers are not
6230 * valid
6231 */
6232 btrfs_put_block_group(block_group);
6233 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05006234 } else {
Yan, Zhengb742bb82010-05-16 10:46:24 -04006235 index = get_block_group_index(block_group);
Chris Mason44fb5512009-06-04 15:34:51 -04006236 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05006237 }
Josef Bacik2552d172009-04-03 10:14:19 -04006238 } else if (block_group) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04006239 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006240 }
Chris Mason42e70e72008-11-07 18:17:11 -05006241 }
Josef Bacik2552d172009-04-03 10:14:19 -04006242search:
Miao Xie60d2adb2011-09-09 17:34:35 +08006243 have_caching_bg = false;
Josef Bacik80eb2342008-10-29 14:49:05 -04006244 down_read(&space_info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04006245 list_for_each_entry(block_group, &space_info->block_groups[index],
6246 list) {
Josef Bacik6226cb02009-04-03 10:14:18 -04006247 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04006248 int cached;
Chris Mason8a1413a2008-11-10 16:13:54 -05006249
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006250 used_block_group = block_group;
Josef Bacik11dfe352009-11-13 20:12:59 +00006251 btrfs_get_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006252 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05006253
Chris Mason83a50de2010-12-13 15:06:46 -05006254 /*
6255 * this can happen if we end up cycling through all the
6256 * raid types, but we want to make sure we only allocate
6257 * for the proper type.
6258 */
David Sterbab6919a52013-04-29 13:39:40 +00006259 if (!block_group_bits(block_group, flags)) {
Chris Mason83a50de2010-12-13 15:06:46 -05006260 u64 extra = BTRFS_BLOCK_GROUP_DUP |
6261 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05006262 BTRFS_BLOCK_GROUP_RAID5 |
6263 BTRFS_BLOCK_GROUP_RAID6 |
Chris Mason83a50de2010-12-13 15:06:46 -05006264 BTRFS_BLOCK_GROUP_RAID10;
6265
6266 /*
6267 * if they asked for extra copies and this block group
6268 * doesn't provide them, bail. This does allow us to
6269 * fill raid0 from raid1.
6270 */
David Sterbab6919a52013-04-29 13:39:40 +00006271 if ((flags & extra) && !(block_group->flags & extra))
Chris Mason83a50de2010-12-13 15:06:46 -05006272 goto loop;
6273 }
6274
Josef Bacik2552d172009-04-03 10:14:19 -04006275have_block_group:
Josef Bacik291c7d22011-11-14 13:52:14 -05006276 cached = block_group_cache_done(block_group);
6277 if (unlikely(!cached)) {
Josef Bacik291c7d22011-11-14 13:52:14 -05006278 found_uncached_bg = true;
Liu Bof6373bf2012-12-27 09:01:18 +00006279 ret = cache_block_group(block_group, 0);
Chris Mason1d4284b2012-03-28 20:31:37 -04006280 BUG_ON(ret < 0);
6281 ret = 0;
Josef Bacikea6a4782008-11-20 12:16:16 -05006282 }
6283
Josef Bacik36cce922013-08-05 11:15:21 -04006284 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
6285 goto loop;
Josef Bacikea6a4782008-11-20 12:16:16 -05006286 if (unlikely(block_group->ro))
Josef Bacik2552d172009-04-03 10:14:19 -04006287 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006288
Josef Bacik0a243252009-09-11 16:11:20 -04006289 /*
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006290 * Ok we want to try and use the cluster allocator, so
6291 * lets look there
Josef Bacik0a243252009-09-11 16:11:20 -04006292 */
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006293 if (last_ptr) {
Chris Mason8de972b2013-01-04 15:39:43 -05006294 unsigned long aligned_cluster;
Chris Masonfa9c0d72009-04-03 09:47:43 -04006295 /*
6296 * the refill lock keeps out other
6297 * people trying to start a new cluster
6298 */
6299 spin_lock(&last_ptr->refill_lock);
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006300 used_block_group = last_ptr->block_group;
6301 if (used_block_group != block_group &&
6302 (!used_block_group ||
6303 used_block_group->ro ||
David Sterbab6919a52013-04-29 13:39:40 +00006304 !block_group_bits(used_block_group, flags))) {
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006305 used_block_group = block_group;
Chris Mason44fb5512009-06-04 15:34:51 -04006306 goto refill_cluster;
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006307 }
Chris Mason44fb5512009-06-04 15:34:51 -04006308
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006309 if (used_block_group != block_group)
6310 btrfs_get_block_group(used_block_group);
6311
6312 offset = btrfs_alloc_from_cluster(used_block_group,
Miao Xiea4820392013-09-09 13:19:42 +08006313 last_ptr,
6314 num_bytes,
6315 used_block_group->key.objectid,
6316 &max_extent_size);
Chris Masonfa9c0d72009-04-03 09:47:43 -04006317 if (offset) {
6318 /* we have a block, we're done */
6319 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05006320 trace_btrfs_reserve_extent_cluster(root,
6321 block_group, search_start, num_bytes);
Chris Masonfa9c0d72009-04-03 09:47:43 -04006322 goto checks;
6323 }
6324
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006325 WARN_ON(last_ptr->block_group != used_block_group);
6326 if (used_block_group != block_group) {
6327 btrfs_put_block_group(used_block_group);
6328 used_block_group = block_group;
Chris Masonfa9c0d72009-04-03 09:47:43 -04006329 }
Chris Mason44fb5512009-06-04 15:34:51 -04006330refill_cluster:
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006331 BUG_ON(used_block_group != block_group);
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006332 /* If we are on LOOP_NO_EMPTY_SIZE, we can't
6333 * set up a new clusters, so lets just skip it
6334 * and let the allocator find whatever block
6335 * it can find. If we reach this point, we
6336 * will have tried the cluster allocator
6337 * plenty of times and not have found
6338 * anything, so we are likely way too
6339 * fragmented for the clustering stuff to find
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006340 * anything.
6341 *
6342 * However, if the cluster is taken from the
6343 * current block group, release the cluster
6344 * first, so that we stand a better chance of
6345 * succeeding in the unclustered
6346 * allocation. */
6347 if (loop >= LOOP_NO_EMPTY_SIZE &&
6348 last_ptr->block_group != block_group) {
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006349 spin_unlock(&last_ptr->refill_lock);
6350 goto unclustered_alloc;
6351 }
6352
Chris Masonfa9c0d72009-04-03 09:47:43 -04006353 /*
6354 * this cluster didn't work out, free it and
6355 * start over
6356 */
6357 btrfs_return_cluster_to_free_space(NULL, last_ptr);
6358
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006359 if (loop >= LOOP_NO_EMPTY_SIZE) {
6360 spin_unlock(&last_ptr->refill_lock);
6361 goto unclustered_alloc;
6362 }
6363
Chris Mason8de972b2013-01-04 15:39:43 -05006364 aligned_cluster = max_t(unsigned long,
6365 empty_cluster + empty_size,
6366 block_group->full_stripe_len);
6367
Chris Masonfa9c0d72009-04-03 09:47:43 -04006368 /* allocate a cluster in this block group */
Josef Bacik00361582013-08-14 14:02:47 -04006369 ret = btrfs_find_space_cluster(root, block_group,
6370 last_ptr, search_start,
6371 num_bytes,
6372 aligned_cluster);
Chris Masonfa9c0d72009-04-03 09:47:43 -04006373 if (ret == 0) {
6374 /*
6375 * now pull our allocation out of this
6376 * cluster
6377 */
6378 offset = btrfs_alloc_from_cluster(block_group,
Miao Xiea4820392013-09-09 13:19:42 +08006379 last_ptr,
6380 num_bytes,
6381 search_start,
6382 &max_extent_size);
Chris Masonfa9c0d72009-04-03 09:47:43 -04006383 if (offset) {
6384 /* we found one, proceed */
6385 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05006386 trace_btrfs_reserve_extent_cluster(root,
6387 block_group, search_start,
6388 num_bytes);
Chris Masonfa9c0d72009-04-03 09:47:43 -04006389 goto checks;
6390 }
Josef Bacik0a243252009-09-11 16:11:20 -04006391 } else if (!cached && loop > LOOP_CACHING_NOWAIT
6392 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04006393 spin_unlock(&last_ptr->refill_lock);
6394
Josef Bacik0a243252009-09-11 16:11:20 -04006395 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04006396 wait_block_group_cache_progress(block_group,
6397 num_bytes + empty_cluster + empty_size);
6398 goto have_block_group;
Chris Masonfa9c0d72009-04-03 09:47:43 -04006399 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006400
Chris Masonfa9c0d72009-04-03 09:47:43 -04006401 /*
6402 * at this point we either didn't find a cluster
6403 * or we weren't able to allocate a block from our
6404 * cluster. Free the cluster we've been trying
6405 * to use, and go to the next block group
6406 */
Josef Bacik0a243252009-09-11 16:11:20 -04006407 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d72009-04-03 09:47:43 -04006408 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04006409 goto loop;
Chris Masonfa9c0d72009-04-03 09:47:43 -04006410 }
6411
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006412unclustered_alloc:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006413 spin_lock(&block_group->free_space_ctl->tree_lock);
6414 if (cached &&
6415 block_group->free_space_ctl->free_space <
6416 num_bytes + empty_cluster + empty_size) {
Miao Xiea4820392013-09-09 13:19:42 +08006417 if (block_group->free_space_ctl->free_space >
6418 max_extent_size)
6419 max_extent_size =
6420 block_group->free_space_ctl->free_space;
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006421 spin_unlock(&block_group->free_space_ctl->tree_lock);
6422 goto loop;
6423 }
6424 spin_unlock(&block_group->free_space_ctl->tree_lock);
6425
Josef Bacik6226cb02009-04-03 10:14:18 -04006426 offset = btrfs_find_space_for_alloc(block_group, search_start,
Miao Xiea4820392013-09-09 13:19:42 +08006427 num_bytes, empty_size,
6428 &max_extent_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006429 /*
6430 * If we didn't find a chunk, and we haven't failed on this
6431 * block group before, and this block group is in the middle of
6432 * caching and we are ok with waiting, then go ahead and wait
6433 * for progress to be made, and set failed_alloc to true.
6434 *
6435 * If failed_alloc is true then we've already waited on this
6436 * block group once and should move on to the next block group.
6437 */
6438 if (!offset && !failed_alloc && !cached &&
6439 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04006440 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006441 num_bytes + empty_size);
6442 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04006443 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006444 } else if (!offset) {
Miao Xie60d2adb2011-09-09 17:34:35 +08006445 if (!cached)
6446 have_caching_bg = true;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006447 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04006448 }
Chris Masonfa9c0d72009-04-03 09:47:43 -04006449checks:
David Woodhouse53b381b2013-01-29 18:40:14 -05006450 search_start = stripe_align(root, used_block_group,
6451 offset, num_bytes);
Chris Masone37c9e62007-05-09 20:13:14 -04006452
Josef Bacik2552d172009-04-03 10:14:19 -04006453 /* move on to the next group */
6454 if (search_start + num_bytes >
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006455 used_block_group->key.objectid + used_block_group->key.offset) {
6456 btrfs_add_free_space(used_block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04006457 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04006458 }
Josef Bacik80eb2342008-10-29 14:49:05 -04006459
Josef Bacik6226cb02009-04-03 10:14:18 -04006460 if (offset < search_start)
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006461 btrfs_add_free_space(used_block_group, offset,
Josef Bacik6226cb02009-04-03 10:14:18 -04006462 search_start - offset);
6463 BUG_ON(offset > search_start);
6464
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006465 ret = btrfs_update_reserved_bytes(used_block_group, num_bytes,
Josef Bacikfb25e912011-07-26 17:00:46 -04006466 alloc_type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006467 if (ret == -EAGAIN) {
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006468 btrfs_add_free_space(used_block_group, offset, num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006469 goto loop;
6470 }
Yan Zheng11833d62009-09-11 16:11:19 -04006471
Josef Bacik2552d172009-04-03 10:14:19 -04006472 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006473 ins->objectid = search_start;
6474 ins->offset = num_bytes;
6475
Josef Bacik3f7de032011-11-10 08:29:20 -05006476 trace_btrfs_reserve_extent(orig_root, block_group,
6477 search_start, num_bytes);
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006478 if (used_block_group != block_group)
6479 btrfs_put_block_group(used_block_group);
Josef Bacikd82a6f12011-05-11 15:26:06 -04006480 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006481 break;
6482loop:
Josef Bacik0a243252009-09-11 16:11:20 -04006483 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006484 failed_alloc = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04006485 BUG_ON(index != get_block_group_index(block_group));
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006486 if (used_block_group != block_group)
6487 btrfs_put_block_group(used_block_group);
Chris Masonfa9c0d72009-04-03 09:47:43 -04006488 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006489 }
6490 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05006491
Miao Xie60d2adb2011-09-09 17:34:35 +08006492 if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg)
6493 goto search;
6494
Yan, Zhengb742bb82010-05-16 10:46:24 -04006495 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
6496 goto search;
6497
Josef Bacik285ff5a2012-01-13 15:27:45 -05006498 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05006499 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
6500 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04006501 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
6502 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
6503 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
6504 * again
Chris Masonfa9c0d72009-04-03 09:47:43 -04006505 */
Josef Bacik723bda22011-05-27 16:11:38 -04006506 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) {
Yan, Zhengb742bb82010-05-16 10:46:24 -04006507 index = 0;
Josef Bacik723bda22011-05-27 16:11:38 -04006508 loop++;
Josef Bacik817d52f2009-07-13 21:29:25 -04006509 if (loop == LOOP_ALLOC_CHUNK) {
Josef Bacik00361582013-08-14 14:02:47 -04006510 struct btrfs_trans_handle *trans;
6511
6512 trans = btrfs_join_transaction(root);
6513 if (IS_ERR(trans)) {
6514 ret = PTR_ERR(trans);
6515 goto out;
6516 }
6517
David Sterbab6919a52013-04-29 13:39:40 +00006518 ret = do_chunk_alloc(trans, root, flags,
Josef Bacikea658ba2012-09-11 16:57:25 -04006519 CHUNK_ALLOC_FORCE);
6520 /*
6521 * Do not bail out on ENOSPC since we
6522 * can do more things.
6523 */
Josef Bacik00361582013-08-14 14:02:47 -04006524 if (ret < 0 && ret != -ENOSPC)
Josef Bacikea658ba2012-09-11 16:57:25 -04006525 btrfs_abort_transaction(trans,
6526 root, ret);
Josef Bacik00361582013-08-14 14:02:47 -04006527 else
6528 ret = 0;
6529 btrfs_end_transaction(trans, root);
6530 if (ret)
Josef Bacikea658ba2012-09-11 16:57:25 -04006531 goto out;
Josef Bacik723bda22011-05-27 16:11:38 -04006532 }
6533
6534 if (loop == LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d72009-04-03 09:47:43 -04006535 empty_size = 0;
6536 empty_cluster = 0;
6537 }
Chris Mason42e70e72008-11-07 18:17:11 -05006538
Josef Bacik723bda22011-05-27 16:11:38 -04006539 goto search;
Josef Bacik2552d172009-04-03 10:14:19 -04006540 } else if (!ins->objectid) {
6541 ret = -ENOSPC;
Josef Bacikd82a6f12011-05-11 15:26:06 -04006542 } else if (ins->objectid) {
Josef Bacik2552d172009-04-03 10:14:19 -04006543 ret = 0;
6544 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006545out:
Miao Xiea4820392013-09-09 13:19:42 +08006546 if (ret == -ENOSPC)
6547 ins->offset = max_extent_size;
Chris Mason0f70abe2007-02-28 16:46:22 -05006548 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05006549}
Chris Masonec44a352008-04-28 15:29:52 -04006550
Josef Bacik9ed74f22009-09-11 16:12:44 -04006551static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
6552 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04006553{
6554 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb82010-05-16 10:46:24 -04006555 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006556
Josef Bacik9ed74f22009-09-11 16:12:44 -04006557 spin_lock(&info->lock);
Josef Bacikfb25e912011-07-26 17:00:46 -04006558 printk(KERN_INFO "space_info %llu has %llu free, is %sfull\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006559 info->flags,
6560 info->total_bytes - info->bytes_used - info->bytes_pinned -
6561 info->bytes_reserved - info->bytes_readonly,
Chris Masond3977122009-01-05 21:25:51 -05006562 (info->full) ? "" : "not ");
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006563 printk(KERN_INFO "space_info total=%llu, used=%llu, pinned=%llu, "
6564 "reserved=%llu, may_use=%llu, readonly=%llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006565 info->total_bytes, info->bytes_used, info->bytes_pinned,
6566 info->bytes_reserved, info->bytes_may_use,
6567 info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006568 spin_unlock(&info->lock);
6569
6570 if (!dump_block_groups)
6571 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006572
Josef Bacik80eb2342008-10-29 14:49:05 -04006573 down_read(&info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04006574again:
6575 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04006576 spin_lock(&cache->lock);
Liu Bo799ffc32012-07-06 03:31:35 -06006577 printk(KERN_INFO "block group %llu has %llu bytes, %llu used %llu pinned %llu reserved %s\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006578 cache->key.objectid, cache->key.offset,
6579 btrfs_block_group_used(&cache->item), cache->pinned,
6580 cache->reserved, cache->ro ? "[readonly]" : "");
Josef Bacik0f9dd462008-09-23 13:14:11 -04006581 btrfs_dump_free_space(cache, bytes);
6582 spin_unlock(&cache->lock);
6583 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04006584 if (++index < BTRFS_NR_RAID_TYPES)
6585 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04006586 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04006587}
Zheng Yane8569812008-09-26 10:05:48 -04006588
Josef Bacik00361582013-08-14 14:02:47 -04006589int btrfs_reserve_extent(struct btrfs_root *root,
Yan Zheng11833d62009-09-11 16:11:19 -04006590 u64 num_bytes, u64 min_alloc_size,
6591 u64 empty_size, u64 hint_byte,
David Sterbab6919a52013-04-29 13:39:40 +00006592 struct btrfs_key *ins, int is_data)
Chris Masonfec577f2007-02-26 10:40:21 -05006593{
Miao Xie9e622d62012-01-26 15:01:12 -05006594 bool final_tried = false;
David Sterbab6919a52013-04-29 13:39:40 +00006595 u64 flags;
Chris Masonfec577f2007-02-26 10:40:21 -05006596 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04006597
David Sterbab6919a52013-04-29 13:39:40 +00006598 flags = btrfs_get_alloc_profile(root, is_data);
Chris Mason98d20f62008-04-14 09:46:10 -04006599again:
Chris Masondb945352007-10-15 16:15:53 -04006600 WARN_ON(num_bytes < root->sectorsize);
Josef Bacik00361582013-08-14 14:02:47 -04006601 ret = find_free_extent(root, num_bytes, empty_size, hint_byte, ins,
6602 flags);
Chris Mason3b951512008-04-17 11:29:12 -04006603
Miao Xie9e622d62012-01-26 15:01:12 -05006604 if (ret == -ENOSPC) {
Miao Xiea4820392013-09-09 13:19:42 +08006605 if (!final_tried && ins->offset) {
6606 num_bytes = min(num_bytes >> 1, ins->offset);
Zach Brown24542bf2012-11-16 00:04:43 +00006607 num_bytes = round_down(num_bytes, root->sectorsize);
Miao Xie9e622d62012-01-26 15:01:12 -05006608 num_bytes = max(num_bytes, min_alloc_size);
Miao Xie9e622d62012-01-26 15:01:12 -05006609 if (num_bytes == min_alloc_size)
6610 final_tried = true;
6611 goto again;
6612 } else if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
6613 struct btrfs_space_info *sinfo;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006614
David Sterbab6919a52013-04-29 13:39:40 +00006615 sinfo = __find_space_info(root->fs_info, flags);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006616 btrfs_err(root->fs_info, "allocation failed flags %llu, wanted %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006617 flags, num_bytes);
Jeff Mahoney53804282012-03-01 14:56:28 +01006618 if (sinfo)
6619 dump_space_info(sinfo, num_bytes, 1);
Miao Xie9e622d62012-01-26 15:01:12 -05006620 }
Chris Mason925baed2008-06-25 16:01:30 -04006621 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04006622
6623 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006624}
6625
Chris Masone688b722011-10-31 20:52:39 -04006626static int __btrfs_free_reserved_extent(struct btrfs_root *root,
6627 u64 start, u64 len, int pin)
Chris Mason65b51a02008-08-01 15:11:20 -04006628{
Josef Bacik0f9dd462008-09-23 13:14:11 -04006629 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05006630 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006631
Josef Bacik0f9dd462008-09-23 13:14:11 -04006632 cache = btrfs_lookup_block_group(root->fs_info, start);
6633 if (!cache) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006634 btrfs_err(root->fs_info, "Unable to find block group for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006635 start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04006636 return -ENOSPC;
6637 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05006638
Li Dongyang5378e602011-03-24 10:24:27 +00006639 if (btrfs_test_opt(root, DISCARD))
6640 ret = btrfs_discard_extent(root, start, len, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05006641
Chris Masone688b722011-10-31 20:52:39 -04006642 if (pin)
6643 pin_down_extent(root, cache, start, len, 1);
6644 else {
6645 btrfs_add_free_space(cache, start, len);
6646 btrfs_update_reserved_bytes(cache, len, RESERVE_FREE);
6647 }
Chris Masonfa9c0d72009-04-03 09:47:43 -04006648 btrfs_put_block_group(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04006649
liubo1abe9b82011-03-24 11:18:59 +00006650 trace_btrfs_reserved_extent_free(root, start, len);
6651
Chris Masone6dcd2d2008-07-17 12:53:50 -04006652 return ret;
6653}
6654
Chris Masone688b722011-10-31 20:52:39 -04006655int btrfs_free_reserved_extent(struct btrfs_root *root,
6656 u64 start, u64 len)
6657{
6658 return __btrfs_free_reserved_extent(root, start, len, 0);
6659}
6660
6661int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root,
6662 u64 start, u64 len)
6663{
6664 return __btrfs_free_reserved_extent(root, start, len, 1);
6665}
6666
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006667static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
6668 struct btrfs_root *root,
6669 u64 parent, u64 root_objectid,
6670 u64 flags, u64 owner, u64 offset,
6671 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006672{
6673 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006674 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006675 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006676 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006677 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006678 struct extent_buffer *leaf;
6679 int type;
6680 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04006681
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006682 if (parent > 0)
6683 type = BTRFS_SHARED_DATA_REF_KEY;
6684 else
6685 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04006686
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006687 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05006688
6689 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00006690 if (!path)
6691 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05006692
Chris Masonb9473432009-03-13 11:00:37 -04006693 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006694 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
6695 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006696 if (ret) {
6697 btrfs_free_path(path);
6698 return ret;
6699 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04006700
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006701 leaf = path->nodes[0];
6702 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05006703 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006704 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
6705 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
6706 btrfs_set_extent_flags(leaf, extent_item,
6707 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05006708
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006709 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
6710 btrfs_set_extent_inline_ref_type(leaf, iref, type);
6711 if (parent > 0) {
6712 struct btrfs_shared_data_ref *ref;
6713 ref = (struct btrfs_shared_data_ref *)(iref + 1);
6714 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
6715 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
6716 } else {
6717 struct btrfs_extent_data_ref *ref;
6718 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
6719 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
6720 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
6721 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
6722 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
6723 }
Chris Mason47e4bb92008-02-01 14:51:59 -05006724
6725 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05006726 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04006727
Liu Boc53d6132012-12-27 09:01:19 +00006728 ret = update_block_group(root, ins->objectid, ins->offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006729 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006730 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006731 ins->objectid, ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05006732 BUG();
6733 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04006734 trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006735 return ret;
6736}
6737
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006738static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
6739 struct btrfs_root *root,
6740 u64 parent, u64 root_objectid,
6741 u64 flags, struct btrfs_disk_key *key,
6742 int level, struct btrfs_key *ins)
6743{
6744 int ret;
6745 struct btrfs_fs_info *fs_info = root->fs_info;
6746 struct btrfs_extent_item *extent_item;
6747 struct btrfs_tree_block_info *block_info;
6748 struct btrfs_extent_inline_ref *iref;
6749 struct btrfs_path *path;
6750 struct extent_buffer *leaf;
Josef Bacik3173a182013-03-07 14:22:04 -05006751 u32 size = sizeof(*extent_item) + sizeof(*iref);
6752 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
6753 SKINNY_METADATA);
6754
6755 if (!skinny_metadata)
6756 size += sizeof(*block_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006757
6758 path = btrfs_alloc_path();
Josef Bacik857cc2f2013-10-07 15:21:08 -04006759 if (!path) {
6760 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
6761 root->leafsize);
Mark Fashehd8926bb2011-07-13 10:38:47 -07006762 return -ENOMEM;
Josef Bacik857cc2f2013-10-07 15:21:08 -04006763 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006764
6765 path->leave_spinning = 1;
6766 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
6767 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006768 if (ret) {
Josef Bacik857cc2f2013-10-07 15:21:08 -04006769 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
6770 root->leafsize);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006771 btrfs_free_path(path);
6772 return ret;
6773 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006774
6775 leaf = path->nodes[0];
6776 extent_item = btrfs_item_ptr(leaf, path->slots[0],
6777 struct btrfs_extent_item);
6778 btrfs_set_extent_refs(leaf, extent_item, 1);
6779 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
6780 btrfs_set_extent_flags(leaf, extent_item,
6781 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006782
Josef Bacik3173a182013-03-07 14:22:04 -05006783 if (skinny_metadata) {
6784 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
6785 } else {
6786 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
6787 btrfs_set_tree_block_key(leaf, block_info, key);
6788 btrfs_set_tree_block_level(leaf, block_info, level);
6789 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
6790 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006791
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006792 if (parent > 0) {
6793 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
6794 btrfs_set_extent_inline_ref_type(leaf, iref,
6795 BTRFS_SHARED_BLOCK_REF_KEY);
6796 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
6797 } else {
6798 btrfs_set_extent_inline_ref_type(leaf, iref,
6799 BTRFS_TREE_BLOCK_REF_KEY);
6800 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
6801 }
6802
6803 btrfs_mark_buffer_dirty(leaf);
6804 btrfs_free_path(path);
6805
Josef Bacik3173a182013-03-07 14:22:04 -05006806 ret = update_block_group(root, ins->objectid, root->leafsize, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006807 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006808 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006809 ins->objectid, ins->offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006810 BUG();
6811 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04006812
6813 trace_btrfs_reserved_extent_alloc(root, ins->objectid, root->leafsize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006814 return ret;
6815}
6816
6817int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
6818 struct btrfs_root *root,
6819 u64 root_objectid, u64 owner,
6820 u64 offset, struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006821{
6822 int ret;
Chris Mason1c2308f2008-09-23 13:14:13 -04006823
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006824 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04006825
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006826 ret = btrfs_add_delayed_data_ref(root->fs_info, trans, ins->objectid,
6827 ins->offset, 0,
6828 root_objectid, owner, offset,
6829 BTRFS_ADD_DELAYED_EXTENT, NULL, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006830 return ret;
6831}
Chris Masone02119d2008-09-05 16:13:11 -04006832
6833/*
6834 * this is used by the tree logging recovery code. It records that
6835 * an extent has been allocated and makes sure to clear the free
6836 * space cache bits as well
6837 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006838int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
6839 struct btrfs_root *root,
6840 u64 root_objectid, u64 owner, u64 offset,
6841 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04006842{
6843 int ret;
6844 struct btrfs_block_group_cache *block_group;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006845
6846 /*
6847 * Mixed block groups will exclude before processing the log so we only
6848 * need to do the exlude dance if this fs isn't mixed.
6849 */
6850 if (!btrfs_fs_incompat(root->fs_info, MIXED_GROUPS)) {
6851 ret = __exclude_logged_extent(root, ins->objectid, ins->offset);
6852 if (ret)
6853 return ret;
6854 }
Chris Masone02119d2008-09-05 16:13:11 -04006855
Chris Masone02119d2008-09-05 16:13:11 -04006856 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006857 if (!block_group)
6858 return -EINVAL;
Yan Zheng11833d62009-09-11 16:11:19 -04006859
Josef Bacikfb25e912011-07-26 17:00:46 -04006860 ret = btrfs_update_reserved_bytes(block_group, ins->offset,
6861 RESERVE_ALLOC_NO_ACCOUNT);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006862 BUG_ON(ret); /* logic error */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006863 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
6864 0, owner, offset, ins, 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006865 btrfs_put_block_group(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04006866 return ret;
6867}
6868
Eric Sandeen48a3b632013-04-25 20:41:01 +00006869static struct extent_buffer *
6870btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
6871 u64 bytenr, u32 blocksize, int level)
Chris Mason65b51a02008-08-01 15:11:20 -04006872{
6873 struct extent_buffer *buf;
6874
6875 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
6876 if (!buf)
6877 return ERR_PTR(-ENOMEM);
6878 btrfs_set_header_generation(buf, trans->transid);
Chris Mason85d4e462011-07-26 16:11:19 -04006879 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04006880 btrfs_tree_lock(buf);
6881 clean_tree_block(trans, root, buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05006882 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
Chris Masonb4ce94d2009-02-04 09:25:08 -05006883
6884 btrfs_set_lock_blocking(buf);
Chris Mason65b51a02008-08-01 15:11:20 -04006885 btrfs_set_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05006886
Chris Masond0c803c2008-09-11 16:17:57 -04006887 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +00006888 /*
6889 * we allow two log transactions at a time, use different
6890 * EXENT bit to differentiate dirty pages.
6891 */
6892 if (root->log_transid % 2 == 0)
6893 set_extent_dirty(&root->dirty_log_pages, buf->start,
6894 buf->start + buf->len - 1, GFP_NOFS);
6895 else
6896 set_extent_new(&root->dirty_log_pages, buf->start,
6897 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond0c803c2008-09-11 16:17:57 -04006898 } else {
6899 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
6900 buf->start + buf->len - 1, GFP_NOFS);
6901 }
Chris Mason65b51a02008-08-01 15:11:20 -04006902 trans->blocks_used++;
Chris Masonb4ce94d2009-02-04 09:25:08 -05006903 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04006904 return buf;
6905}
6906
Yan, Zhengf0486c62010-05-16 10:46:25 -04006907static struct btrfs_block_rsv *
6908use_block_rsv(struct btrfs_trans_handle *trans,
6909 struct btrfs_root *root, u32 blocksize)
6910{
6911 struct btrfs_block_rsv *block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00006912 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006913 int ret;
Miao Xied88033d2013-05-13 13:55:12 +00006914 bool global_updated = false;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006915
6916 block_rsv = get_block_rsv(trans, root);
6917
Miao Xieb586b322013-05-13 13:55:10 +00006918 if (unlikely(block_rsv->size == 0))
6919 goto try_reserve;
Miao Xied88033d2013-05-13 13:55:12 +00006920again:
Yan, Zhengf0486c62010-05-16 10:46:25 -04006921 ret = block_rsv_use_bytes(block_rsv, blocksize);
6922 if (!ret)
6923 return block_rsv;
6924
Miao Xieb586b322013-05-13 13:55:10 +00006925 if (block_rsv->failfast)
6926 return ERR_PTR(ret);
6927
Miao Xied88033d2013-05-13 13:55:12 +00006928 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
6929 global_updated = true;
6930 update_global_block_rsv(root->fs_info);
6931 goto again;
6932 }
6933
Miao Xieb586b322013-05-13 13:55:10 +00006934 if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
6935 static DEFINE_RATELIMIT_STATE(_rs,
6936 DEFAULT_RATELIMIT_INTERVAL * 10,
6937 /*DEFAULT_RATELIMIT_BURST*/ 1);
6938 if (__ratelimit(&_rs))
6939 WARN(1, KERN_DEBUG
6940 "btrfs: block rsv returned %d\n", ret);
6941 }
6942try_reserve:
6943 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
6944 BTRFS_RESERVE_NO_FLUSH);
6945 if (!ret)
6946 return block_rsv;
6947 /*
6948 * If we couldn't reserve metadata bytes try and use some from
Miao Xie5881cfc2013-05-13 13:55:11 +00006949 * the global reserve if its space type is the same as the global
6950 * reservation.
Miao Xieb586b322013-05-13 13:55:10 +00006951 */
Miao Xie5881cfc2013-05-13 13:55:11 +00006952 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
6953 block_rsv->space_info == global_rsv->space_info) {
Miao Xieb586b322013-05-13 13:55:10 +00006954 ret = block_rsv_use_bytes(global_rsv, blocksize);
6955 if (!ret)
6956 return global_rsv;
6957 }
6958 return ERR_PTR(ret);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006959}
6960
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006961static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
6962 struct btrfs_block_rsv *block_rsv, u32 blocksize)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006963{
6964 block_rsv_add_bytes(block_rsv, blocksize, 0);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006965 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006966}
6967
Chris Masonfec577f2007-02-26 10:40:21 -05006968/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04006969 * finds a free extent and does all the dirty work required for allocation
6970 * returns the key for the extent through ins, and a tree buffer for
6971 * the first block of the extent through buf.
6972 *
Chris Masonfec577f2007-02-26 10:40:21 -05006973 * returns the tree buffer or NULL.
6974 */
Chris Mason5f39d392007-10-15 16:14:19 -04006975struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006976 struct btrfs_root *root, u32 blocksize,
6977 u64 parent, u64 root_objectid,
6978 struct btrfs_disk_key *key, int level,
Jan Schmidt5581a512012-05-16 17:04:52 +02006979 u64 hint, u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05006980{
Chris Masone2fa7222007-03-12 16:22:34 -04006981 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006982 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04006983 struct extent_buffer *buf;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006984 u64 flags = 0;
6985 int ret;
Josef Bacik3173a182013-03-07 14:22:04 -05006986 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
6987 SKINNY_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006988
6989 block_rsv = use_block_rsv(trans, root, blocksize);
6990 if (IS_ERR(block_rsv))
6991 return ERR_CAST(block_rsv);
6992
Josef Bacik00361582013-08-14 14:02:47 -04006993 ret = btrfs_reserve_extent(root, blocksize, blocksize,
Josef Bacik81c9ad22012-01-18 10:56:06 -05006994 empty_size, hint, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05006995 if (ret) {
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006996 unuse_block_rsv(root->fs_info, block_rsv, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04006997 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05006998 }
Chris Mason55c69072008-01-09 15:55:33 -05006999
Chris Mason4008c042009-02-12 14:09:45 -05007000 buf = btrfs_init_new_buffer(trans, root, ins.objectid,
7001 blocksize, level);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007002 BUG_ON(IS_ERR(buf)); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007003
7004 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
7005 if (parent == 0)
7006 parent = ins.objectid;
7007 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
7008 } else
7009 BUG_ON(parent > 0);
7010
7011 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
7012 struct btrfs_delayed_extent_op *extent_op;
Miao Xie78a61842012-11-21 02:21:28 +00007013 extent_op = btrfs_alloc_delayed_extent_op();
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007014 BUG_ON(!extent_op); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007015 if (key)
7016 memcpy(&extent_op->key, key, sizeof(extent_op->key));
7017 else
7018 memset(&extent_op->key, 0, sizeof(extent_op->key));
7019 extent_op->flags_to_set = flags;
Josef Bacik3173a182013-03-07 14:22:04 -05007020 if (skinny_metadata)
7021 extent_op->update_key = 0;
7022 else
7023 extent_op->update_key = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007024 extent_op->update_flags = 1;
7025 extent_op->is_data = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04007026 extent_op->level = level;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007027
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007028 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
7029 ins.objectid,
Yan, Zhengf0486c62010-05-16 10:46:25 -04007030 ins.offset, parent, root_objectid,
7031 level, BTRFS_ADD_DELAYED_EXTENT,
Jan Schmidt5581a512012-05-16 17:04:52 +02007032 extent_op, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007033 BUG_ON(ret); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007034 }
Chris Masonfec577f2007-02-26 10:40:21 -05007035 return buf;
7036}
Chris Masona28ec192007-03-06 20:08:01 -05007037
Yan Zheng2c47e6052009-06-27 21:07:35 -04007038struct walk_control {
7039 u64 refs[BTRFS_MAX_LEVEL];
7040 u64 flags[BTRFS_MAX_LEVEL];
7041 struct btrfs_key update_progress;
7042 int stage;
7043 int level;
7044 int shared_level;
7045 int update_ref;
7046 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007047 int reada_slot;
7048 int reada_count;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007049 int for_reloc;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007050};
7051
7052#define DROP_REFERENCE 1
7053#define UPDATE_BACKREF 2
7054
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007055static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
7056 struct btrfs_root *root,
7057 struct walk_control *wc,
7058 struct btrfs_path *path)
7059{
7060 u64 bytenr;
7061 u64 generation;
7062 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007063 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007064 u32 nritems;
7065 u32 blocksize;
7066 struct btrfs_key key;
7067 struct extent_buffer *eb;
7068 int ret;
7069 int slot;
7070 int nread = 0;
7071
7072 if (path->slots[wc->level] < wc->reada_slot) {
7073 wc->reada_count = wc->reada_count * 2 / 3;
7074 wc->reada_count = max(wc->reada_count, 2);
7075 } else {
7076 wc->reada_count = wc->reada_count * 3 / 2;
7077 wc->reada_count = min_t(int, wc->reada_count,
7078 BTRFS_NODEPTRS_PER_BLOCK(root));
7079 }
7080
7081 eb = path->nodes[wc->level];
7082 nritems = btrfs_header_nritems(eb);
7083 blocksize = btrfs_level_size(root, wc->level - 1);
7084
7085 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
7086 if (nread >= wc->reada_count)
7087 break;
7088
7089 cond_resched();
7090 bytenr = btrfs_node_blockptr(eb, slot);
7091 generation = btrfs_node_ptr_generation(eb, slot);
7092
7093 if (slot == path->slots[wc->level])
7094 goto reada;
7095
7096 if (wc->stage == UPDATE_BACKREF &&
7097 generation <= root->root_key.offset)
7098 continue;
7099
Yan, Zheng94fcca92009-10-09 09:25:16 -04007100 /* We don't lock the tree block, it's OK to be racy here */
Josef Bacik3173a182013-03-07 14:22:04 -05007101 ret = btrfs_lookup_extent_info(trans, root, bytenr,
7102 wc->level - 1, 1, &refs,
7103 &flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007104 /* We don't care about errors in readahead. */
7105 if (ret < 0)
7106 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007107 BUG_ON(refs == 0);
7108
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007109 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007110 if (refs == 1)
7111 goto reada;
7112
Yan, Zheng94fcca92009-10-09 09:25:16 -04007113 if (wc->level == 1 &&
7114 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7115 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007116 if (!wc->update_ref ||
7117 generation <= root->root_key.offset)
7118 continue;
7119 btrfs_node_key_to_cpu(eb, &key, slot);
7120 ret = btrfs_comp_cpu_keys(&key,
7121 &wc->update_progress);
7122 if (ret < 0)
7123 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007124 } else {
7125 if (wc->level == 1 &&
7126 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7127 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007128 }
7129reada:
7130 ret = readahead_tree_block(root, bytenr, blocksize,
7131 generation);
7132 if (ret)
7133 break;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007134 nread++;
7135 }
7136 wc->reada_slot = slot;
7137}
7138
Chris Mason9aca1d52007-03-13 11:09:37 -04007139/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007140 * helper to process tree block while walking down the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04007141 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04007142 * when wc->stage == UPDATE_BACKREF, this function updates
7143 * back refs for pointers in the block.
7144 *
7145 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04007146 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007147static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
7148 struct btrfs_root *root,
7149 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007150 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04007151{
7152 int level = wc->level;
7153 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04007154 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
7155 int ret;
7156
7157 if (wc->stage == UPDATE_BACKREF &&
7158 btrfs_header_owner(eb) != root->root_key.objectid)
7159 return 1;
7160
7161 /*
7162 * when reference count of tree block is 1, it won't increase
7163 * again. once full backref flag is set, we never clear it.
7164 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04007165 if (lookup_info &&
7166 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
7167 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007168 BUG_ON(!path->locks[level]);
7169 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05007170 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007171 &wc->refs[level],
7172 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007173 BUG_ON(ret == -ENOMEM);
7174 if (ret)
7175 return ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007176 BUG_ON(wc->refs[level] == 0);
7177 }
7178
Yan Zheng2c47e6052009-06-27 21:07:35 -04007179 if (wc->stage == DROP_REFERENCE) {
7180 if (wc->refs[level] > 1)
7181 return 1;
7182
7183 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04007184 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007185 path->locks[level] = 0;
7186 }
7187 return 0;
7188 }
7189
7190 /* wc->stage == UPDATE_BACKREF */
7191 if (!(wc->flags[level] & flag)) {
7192 BUG_ON(!path->locks[level]);
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007193 ret = btrfs_inc_ref(trans, root, eb, 1, wc->for_reloc);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007194 BUG_ON(ret); /* -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007195 ret = btrfs_dec_ref(trans, root, eb, 0, wc->for_reloc);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007196 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007197 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
Josef Bacikb1c79e02013-05-09 13:49:30 -04007198 eb->len, flag,
7199 btrfs_header_level(eb), 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007200 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007201 wc->flags[level] |= flag;
7202 }
7203
7204 /*
7205 * the block is shared by multiple trees, so it's not good to
7206 * keep the tree lock
7207 */
7208 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04007209 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007210 path->locks[level] = 0;
7211 }
7212 return 0;
7213}
7214
7215/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007216 * helper to process tree block pointer.
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007217 *
7218 * when wc->stage == DROP_REFERENCE, this function checks
7219 * reference count of the block pointed to. if the block
7220 * is shared and we need update back refs for the subtree
7221 * rooted at the block, this function changes wc->stage to
7222 * UPDATE_BACKREF. if the block is shared and there is no
7223 * need to update back, this function drops the reference
7224 * to the block.
7225 *
7226 * NOTE: return value 1 means we should stop walking down.
7227 */
7228static noinline int do_walk_down(struct btrfs_trans_handle *trans,
7229 struct btrfs_root *root,
7230 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007231 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007232{
7233 u64 bytenr;
7234 u64 generation;
7235 u64 parent;
7236 u32 blocksize;
7237 struct btrfs_key key;
7238 struct extent_buffer *next;
7239 int level = wc->level;
7240 int reada = 0;
7241 int ret = 0;
7242
7243 generation = btrfs_node_ptr_generation(path->nodes[level],
7244 path->slots[level]);
7245 /*
7246 * if the lower level block was created before the snapshot
7247 * was created, we know there is no need to update back refs
7248 * for the subtree
7249 */
7250 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04007251 generation <= root->root_key.offset) {
7252 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007253 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007254 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007255
7256 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
7257 blocksize = btrfs_level_size(root, level - 1);
7258
7259 next = btrfs_find_tree_block(root, bytenr, blocksize);
7260 if (!next) {
7261 next = btrfs_find_create_tree_block(root, bytenr, blocksize);
Miao Xie90d2c512010-03-25 12:37:12 +00007262 if (!next)
7263 return -ENOMEM;
Josef Bacikb2aaaa32013-07-05 17:05:38 -04007264 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
7265 level - 1);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007266 reada = 1;
7267 }
7268 btrfs_tree_lock(next);
7269 btrfs_set_lock_blocking(next);
7270
Josef Bacik3173a182013-03-07 14:22:04 -05007271 ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007272 &wc->refs[level - 1],
7273 &wc->flags[level - 1]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007274 if (ret < 0) {
7275 btrfs_tree_unlock(next);
7276 return ret;
7277 }
7278
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007279 if (unlikely(wc->refs[level - 1] == 0)) {
7280 btrfs_err(root->fs_info, "Missing references.");
7281 BUG();
7282 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04007283 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007284
Yan, Zheng94fcca92009-10-09 09:25:16 -04007285 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007286 if (wc->refs[level - 1] > 1) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04007287 if (level == 1 &&
7288 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7289 goto skip;
7290
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007291 if (!wc->update_ref ||
7292 generation <= root->root_key.offset)
7293 goto skip;
7294
7295 btrfs_node_key_to_cpu(path->nodes[level], &key,
7296 path->slots[level]);
7297 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
7298 if (ret < 0)
7299 goto skip;
7300
7301 wc->stage = UPDATE_BACKREF;
7302 wc->shared_level = level - 1;
7303 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04007304 } else {
7305 if (level == 1 &&
7306 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7307 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007308 }
7309
Chris Masonb9fab912012-05-06 07:23:47 -04007310 if (!btrfs_buffer_uptodate(next, generation, 0)) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007311 btrfs_tree_unlock(next);
7312 free_extent_buffer(next);
7313 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007314 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007315 }
7316
7317 if (!next) {
7318 if (reada && level == 1)
7319 reada_walk_down(trans, root, wc, path);
7320 next = read_tree_block(root, bytenr, blocksize, generation);
Josef Bacik416bc652013-04-23 14:17:42 -04007321 if (!next || !extent_buffer_uptodate(next)) {
7322 free_extent_buffer(next);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00007323 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04007324 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007325 btrfs_tree_lock(next);
7326 btrfs_set_lock_blocking(next);
7327 }
7328
7329 level--;
7330 BUG_ON(level != btrfs_header_level(next));
7331 path->nodes[level] = next;
7332 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04007333 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007334 wc->level = level;
7335 if (wc->level == 1)
7336 wc->reada_slot = 0;
7337 return 0;
7338skip:
7339 wc->refs[level - 1] = 0;
7340 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007341 if (wc->stage == DROP_REFERENCE) {
7342 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
7343 parent = path->nodes[level]->start;
7344 } else {
7345 BUG_ON(root->root_key.objectid !=
7346 btrfs_header_owner(path->nodes[level]));
7347 parent = 0;
7348 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007349
Yan, Zheng94fcca92009-10-09 09:25:16 -04007350 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007351 root->root_key.objectid, level - 1, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007352 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007353 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007354 btrfs_tree_unlock(next);
7355 free_extent_buffer(next);
Yan, Zheng94fcca92009-10-09 09:25:16 -04007356 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007357 return 1;
7358}
7359
7360/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007361 * helper to process tree block while walking up the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04007362 *
7363 * when wc->stage == DROP_REFERENCE, this function drops
7364 * reference count on the block.
7365 *
7366 * when wc->stage == UPDATE_BACKREF, this function changes
7367 * wc->stage back to DROP_REFERENCE if we changed wc->stage
7368 * to UPDATE_BACKREF previously while processing the block.
7369 *
7370 * NOTE: return value 1 means we should stop walking up.
7371 */
7372static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
7373 struct btrfs_root *root,
7374 struct btrfs_path *path,
7375 struct walk_control *wc)
7376{
Yan, Zhengf0486c62010-05-16 10:46:25 -04007377 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007378 int level = wc->level;
7379 struct extent_buffer *eb = path->nodes[level];
7380 u64 parent = 0;
7381
7382 if (wc->stage == UPDATE_BACKREF) {
7383 BUG_ON(wc->shared_level < level);
7384 if (level < wc->shared_level)
7385 goto out;
7386
Yan Zheng2c47e6052009-06-27 21:07:35 -04007387 ret = find_next_key(path, level + 1, &wc->update_progress);
7388 if (ret > 0)
7389 wc->update_ref = 0;
7390
7391 wc->stage = DROP_REFERENCE;
7392 wc->shared_level = -1;
7393 path->slots[level] = 0;
7394
7395 /*
7396 * check reference count again if the block isn't locked.
7397 * we should start walking down the tree again if reference
7398 * count is one.
7399 */
7400 if (!path->locks[level]) {
7401 BUG_ON(level == 0);
7402 btrfs_tree_lock(eb);
7403 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04007404 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007405
7406 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05007407 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007408 &wc->refs[level],
7409 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007410 if (ret < 0) {
7411 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00007412 path->locks[level] = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007413 return ret;
7414 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007415 BUG_ON(wc->refs[level] == 0);
7416 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04007417 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00007418 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007419 return 1;
7420 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007421 }
7422 }
7423
7424 /* wc->stage == DROP_REFERENCE */
7425 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
7426
7427 if (wc->refs[level] == 1) {
7428 if (level == 0) {
7429 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007430 ret = btrfs_dec_ref(trans, root, eb, 1,
7431 wc->for_reloc);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007432 else
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007433 ret = btrfs_dec_ref(trans, root, eb, 0,
7434 wc->for_reloc);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007435 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007436 }
7437 /* make block locked assertion in clean_tree_block happy */
7438 if (!path->locks[level] &&
7439 btrfs_header_generation(eb) == trans->transid) {
7440 btrfs_tree_lock(eb);
7441 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04007442 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007443 }
7444 clean_tree_block(trans, root, eb);
7445 }
7446
7447 if (eb == root->node) {
7448 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
7449 parent = eb->start;
7450 else
7451 BUG_ON(root->root_key.objectid !=
7452 btrfs_header_owner(eb));
7453 } else {
7454 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
7455 parent = path->nodes[level + 1]->start;
7456 else
7457 BUG_ON(root->root_key.objectid !=
7458 btrfs_header_owner(path->nodes[level + 1]));
7459 }
7460
Jan Schmidt5581a512012-05-16 17:04:52 +02007461 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007462out:
7463 wc->refs[level] = 0;
7464 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007465 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007466}
7467
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007468static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
7469 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007470 struct btrfs_path *path,
7471 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04007472{
Yan Zheng2c47e6052009-06-27 21:07:35 -04007473 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007474 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007475 int ret;
7476
Yan Zheng2c47e6052009-06-27 21:07:35 -04007477 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04007478 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007479 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04007480 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007481
Yan Zheng2c47e6052009-06-27 21:07:35 -04007482 if (level == 0)
7483 break;
7484
Yan, Zheng7a7965f2010-02-01 02:41:17 +00007485 if (path->slots[level] >=
7486 btrfs_header_nritems(path->nodes[level]))
7487 break;
7488
Yan, Zheng94fcca92009-10-09 09:25:16 -04007489 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007490 if (ret > 0) {
7491 path->slots[level]++;
7492 continue;
Miao Xie90d2c512010-03-25 12:37:12 +00007493 } else if (ret < 0)
7494 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007495 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007496 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04007497 return 0;
7498}
7499
Chris Masond3977122009-01-05 21:25:51 -05007500static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05007501 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04007502 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007503 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05007504{
Yan Zheng2c47e6052009-06-27 21:07:35 -04007505 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05007506 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04007507
Yan Zheng2c47e6052009-06-27 21:07:35 -04007508 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
7509 while (level < max_level && path->nodes[level]) {
7510 wc->level = level;
7511 if (path->slots[level] + 1 <
7512 btrfs_header_nritems(path->nodes[level])) {
7513 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05007514 return 0;
7515 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007516 ret = walk_up_proc(trans, root, path, wc);
7517 if (ret > 0)
7518 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05007519
Yan Zheng2c47e6052009-06-27 21:07:35 -04007520 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04007521 btrfs_tree_unlock_rw(path->nodes[level],
7522 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007523 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007524 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007525 free_extent_buffer(path->nodes[level]);
7526 path->nodes[level] = NULL;
7527 level++;
Chris Mason20524f02007-03-10 06:35:47 -05007528 }
7529 }
7530 return 1;
7531}
7532
Chris Mason9aca1d52007-03-13 11:09:37 -04007533/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04007534 * drop a subvolume tree.
7535 *
7536 * this function traverses the tree freeing any blocks that only
7537 * referenced by the tree.
7538 *
7539 * when a shared tree block is found. this function decreases its
7540 * reference count by one. if update_ref is true, this function
7541 * also make sure backrefs for the shared block and all lower level
7542 * blocks are properly updated.
David Sterba9d1a2a32013-03-12 15:13:28 +00007543 *
7544 * If called with for_reloc == 0, may exit early with -EAGAIN
Chris Mason9aca1d52007-03-13 11:09:37 -04007545 */
Jeff Mahoney2c536792011-10-03 23:22:41 -04007546int btrfs_drop_snapshot(struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007547 struct btrfs_block_rsv *block_rsv, int update_ref,
7548 int for_reloc)
Chris Mason20524f02007-03-10 06:35:47 -05007549{
Chris Mason5caf2a02007-04-02 11:20:42 -04007550 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007551 struct btrfs_trans_handle *trans;
7552 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04007553 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007554 struct walk_control *wc;
7555 struct btrfs_key key;
7556 int err = 0;
7557 int ret;
7558 int level;
Josef Bacikd29a9f62013-07-17 19:30:20 -04007559 bool root_dropped = false;
Chris Mason20524f02007-03-10 06:35:47 -05007560
Chris Mason5caf2a02007-04-02 11:20:42 -04007561 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00007562 if (!path) {
7563 err = -ENOMEM;
7564 goto out;
7565 }
Chris Mason20524f02007-03-10 06:35:47 -05007566
Yan Zheng2c47e6052009-06-27 21:07:35 -04007567 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07007568 if (!wc) {
7569 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00007570 err = -ENOMEM;
7571 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07007572 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007573
Yan, Zhenga22285a2010-05-16 10:48:46 -04007574 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007575 if (IS_ERR(trans)) {
7576 err = PTR_ERR(trans);
7577 goto out_free;
7578 }
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00007579
Yan, Zheng3fd0a552010-05-16 10:49:59 -04007580 if (block_rsv)
7581 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007582
Chris Mason9f3a7422007-08-07 15:52:19 -04007583 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007584 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007585 path->nodes[level] = btrfs_lock_root_node(root);
7586 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04007587 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04007588 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007589 memset(&wc->update_progress, 0,
7590 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04007591 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04007592 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007593 memcpy(&wc->update_progress, &key,
7594 sizeof(wc->update_progress));
7595
Chris Mason6702ed42007-08-07 16:15:09 -04007596 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007597 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04007598 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007599 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
7600 path->lowest_level = 0;
7601 if (ret < 0) {
7602 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007603 goto out_end_trans;
Chris Mason9f3a7422007-08-07 15:52:19 -04007604 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007605 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007606
Chris Mason7d9eb122008-07-08 14:19:17 -04007607 /*
7608 * unlock our path, this is safe because only this
7609 * function is allowed to delete this snapshot
7610 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007611 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04007612
Yan Zheng2c47e6052009-06-27 21:07:35 -04007613 level = btrfs_header_level(root->node);
7614 while (1) {
7615 btrfs_tree_lock(path->nodes[level]);
7616 btrfs_set_lock_blocking(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04007617 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007618
7619 ret = btrfs_lookup_extent_info(trans, root,
7620 path->nodes[level]->start,
Josef Bacik3173a182013-03-07 14:22:04 -05007621 level, 1, &wc->refs[level],
Yan Zheng2c47e6052009-06-27 21:07:35 -04007622 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007623 if (ret < 0) {
7624 err = ret;
7625 goto out_end_trans;
7626 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007627 BUG_ON(wc->refs[level] == 0);
7628
7629 if (level == root_item->drop_level)
7630 break;
7631
7632 btrfs_tree_unlock(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04007633 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007634 WARN_ON(wc->refs[level] != 1);
7635 level--;
7636 }
7637 }
7638
7639 wc->level = level;
7640 wc->shared_level = -1;
7641 wc->stage = DROP_REFERENCE;
7642 wc->update_ref = update_ref;
7643 wc->keep_locks = 0;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007644 wc->for_reloc = for_reloc;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007645 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007646
7647 while (1) {
David Sterba9d1a2a32013-03-12 15:13:28 +00007648
Yan Zheng2c47e6052009-06-27 21:07:35 -04007649 ret = walk_down_tree(trans, root, path, wc);
7650 if (ret < 0) {
7651 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04007652 break;
7653 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007654
7655 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
7656 if (ret < 0) {
7657 err = ret;
7658 break;
7659 }
7660
7661 if (ret > 0) {
7662 BUG_ON(wc->stage != DROP_REFERENCE);
7663 break;
7664 }
7665
7666 if (wc->stage == DROP_REFERENCE) {
7667 level = wc->level;
7668 btrfs_node_key(path->nodes[level],
7669 &root_item->drop_progress,
7670 path->slots[level]);
7671 root_item->drop_level = level;
7672 }
7673
7674 BUG_ON(wc->level == 0);
Josef Bacik3c8f2422013-07-15 11:57:06 -04007675 if (btrfs_should_end_transaction(trans, tree_root) ||
7676 (!for_reloc && btrfs_need_cleaner_sleep(root))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007677 ret = btrfs_update_root(trans, tree_root,
7678 &root->root_key,
7679 root_item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007680 if (ret) {
7681 btrfs_abort_transaction(trans, tree_root, ret);
7682 err = ret;
7683 goto out_end_trans;
7684 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007685
Yan, Zheng3fd0a552010-05-16 10:49:59 -04007686 btrfs_end_transaction_throttle(trans, tree_root);
Josef Bacik3c8f2422013-07-15 11:57:06 -04007687 if (!for_reloc && btrfs_need_cleaner_sleep(root)) {
7688 pr_debug("btrfs: drop snapshot early exit\n");
7689 err = -EAGAIN;
7690 goto out_free;
7691 }
7692
Yan, Zhenga22285a2010-05-16 10:48:46 -04007693 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007694 if (IS_ERR(trans)) {
7695 err = PTR_ERR(trans);
7696 goto out_free;
7697 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04007698 if (block_rsv)
7699 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04007700 }
Chris Mason20524f02007-03-10 06:35:47 -05007701 }
David Sterbab3b4aa72011-04-21 01:20:15 +02007702 btrfs_release_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007703 if (err)
7704 goto out_end_trans;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007705
7706 ret = btrfs_del_root(trans, tree_root, &root->root_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007707 if (ret) {
7708 btrfs_abort_transaction(trans, tree_root, ret);
7709 goto out_end_trans;
7710 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007711
Yan, Zheng76dda932009-09-21 16:00:26 -04007712 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Miao Xiecb517ea2013-05-15 07:48:19 +00007713 ret = btrfs_find_root(tree_root, &root->root_key, path,
7714 NULL, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007715 if (ret < 0) {
7716 btrfs_abort_transaction(trans, tree_root, ret);
7717 err = ret;
7718 goto out_end_trans;
7719 } else if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05007720 /* if we fail to delete the orphan item this time
7721 * around, it'll get picked up the next time.
7722 *
7723 * The most common failure here is just -ENOENT.
7724 */
7725 btrfs_del_orphan_item(trans, tree_root,
7726 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04007727 }
7728 }
7729
7730 if (root->in_radix) {
Miao Xiecb517ea2013-05-15 07:48:19 +00007731 btrfs_drop_and_free_fs_root(tree_root->fs_info, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04007732 } else {
7733 free_extent_buffer(root->node);
7734 free_extent_buffer(root->commit_root);
Miao Xieb0feb9d2013-05-15 07:48:20 +00007735 btrfs_put_fs_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04007736 }
Josef Bacikd29a9f62013-07-17 19:30:20 -04007737 root_dropped = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007738out_end_trans:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04007739 btrfs_end_transaction_throttle(trans, tree_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007740out_free:
Yan Zheng2c47e6052009-06-27 21:07:35 -04007741 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04007742 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00007743out:
Josef Bacikd29a9f62013-07-17 19:30:20 -04007744 /*
7745 * So if we need to stop dropping the snapshot for whatever reason we
7746 * need to make sure to add it back to the dead root list so that we
7747 * keep trying to do the work later. This also cleans up roots if we
7748 * don't have it in the radix (like when we recover after a power fail
7749 * or unmount) so we don't leak memory.
7750 */
Josef Bacikb37b39c2013-07-23 16:57:15 -04007751 if (!for_reloc && root_dropped == false)
Josef Bacikd29a9f62013-07-17 19:30:20 -04007752 btrfs_add_dead_root(root);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00007753 if (err)
7754 btrfs_std_error(root->fs_info, err);
Jeff Mahoney2c536792011-10-03 23:22:41 -04007755 return err;
Chris Mason20524f02007-03-10 06:35:47 -05007756}
Chris Mason9078a3e2007-04-26 16:46:15 -04007757
Yan Zheng2c47e6052009-06-27 21:07:35 -04007758/*
7759 * drop subtree rooted at tree block 'node'.
7760 *
7761 * NOTE: this function will unlock and release tree block 'node'
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007762 * only used by relocation code
Yan Zheng2c47e6052009-06-27 21:07:35 -04007763 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04007764int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
7765 struct btrfs_root *root,
7766 struct extent_buffer *node,
7767 struct extent_buffer *parent)
7768{
7769 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007770 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007771 int level;
7772 int parent_level;
7773 int ret = 0;
7774 int wret;
7775
Yan Zheng2c47e6052009-06-27 21:07:35 -04007776 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
7777
Yan Zhengf82d02d2008-10-29 14:49:05 -04007778 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00007779 if (!path)
7780 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007781
Yan Zheng2c47e6052009-06-27 21:07:35 -04007782 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00007783 if (!wc) {
7784 btrfs_free_path(path);
7785 return -ENOMEM;
7786 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007787
Chris Masonb9447ef2009-03-09 11:45:38 -04007788 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007789 parent_level = btrfs_header_level(parent);
7790 extent_buffer_get(parent);
7791 path->nodes[parent_level] = parent;
7792 path->slots[parent_level] = btrfs_header_nritems(parent);
7793
Chris Masonb9447ef2009-03-09 11:45:38 -04007794 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007795 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007796 path->nodes[level] = node;
7797 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04007798 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007799
7800 wc->refs[parent_level] = 1;
7801 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
7802 wc->level = level;
7803 wc->shared_level = -1;
7804 wc->stage = DROP_REFERENCE;
7805 wc->update_ref = 0;
7806 wc->keep_locks = 1;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007807 wc->for_reloc = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007808 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007809
7810 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007811 wret = walk_down_tree(trans, root, path, wc);
7812 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04007813 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007814 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007815 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04007816
Yan Zheng2c47e6052009-06-27 21:07:35 -04007817 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007818 if (wret < 0)
7819 ret = wret;
7820 if (wret != 0)
7821 break;
7822 }
7823
Yan Zheng2c47e6052009-06-27 21:07:35 -04007824 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007825 btrfs_free_path(path);
7826 return ret;
7827}
7828
Chris Masonec44a352008-04-28 15:29:52 -04007829static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
7830{
7831 u64 num_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03007832 u64 stripped;
Chris Masonec44a352008-04-28 15:29:52 -04007833
Ilya Dryomovfc67c452012-03-27 17:09:17 +03007834 /*
7835 * if restripe for this chunk_type is on pick target profile and
7836 * return, otherwise do the usual balance
7837 */
7838 stripped = get_restripe_target(root->fs_info, flags);
7839 if (stripped)
7840 return extended_to_chunk(stripped);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02007841
Chris Masoncd02dca2010-12-13 14:56:23 -05007842 /*
7843 * we add in the count of missing devices because we want
7844 * to make sure that any RAID levels on a degraded FS
7845 * continue to be honored.
7846 */
7847 num_devices = root->fs_info->fs_devices->rw_devices +
7848 root->fs_info->fs_devices->missing_devices;
7849
Ilya Dryomovfc67c452012-03-27 17:09:17 +03007850 stripped = BTRFS_BLOCK_GROUP_RAID0 |
David Woodhouse53b381b2013-01-29 18:40:14 -05007851 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
Ilya Dryomovfc67c452012-03-27 17:09:17 +03007852 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
7853
Chris Masonec44a352008-04-28 15:29:52 -04007854 if (num_devices == 1) {
7855 stripped |= BTRFS_BLOCK_GROUP_DUP;
7856 stripped = flags & ~stripped;
7857
7858 /* turn raid0 into single device chunks */
7859 if (flags & BTRFS_BLOCK_GROUP_RAID0)
7860 return stripped;
7861
7862 /* turn mirroring into duplication */
7863 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
7864 BTRFS_BLOCK_GROUP_RAID10))
7865 return stripped | BTRFS_BLOCK_GROUP_DUP;
Chris Masonec44a352008-04-28 15:29:52 -04007866 } else {
7867 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04007868 if (flags & stripped)
7869 return flags;
7870
7871 stripped |= BTRFS_BLOCK_GROUP_DUP;
7872 stripped = flags & ~stripped;
7873
7874 /* switch duplicated blocks with raid1 */
7875 if (flags & BTRFS_BLOCK_GROUP_DUP)
7876 return stripped | BTRFS_BLOCK_GROUP_RAID1;
7877
Ilya Dryomove3176ca2012-03-27 17:09:16 +03007878 /* this is drive concat, leave it alone */
Chris Masonec44a352008-04-28 15:29:52 -04007879 }
Ilya Dryomove3176ca2012-03-27 17:09:16 +03007880
Chris Masonec44a352008-04-28 15:29:52 -04007881 return flags;
7882}
7883
Miao Xie199c36e2011-07-15 10:34:36 +00007884static int set_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04007885{
Yan, Zhengf0486c62010-05-16 10:46:25 -04007886 struct btrfs_space_info *sinfo = cache->space_info;
7887 u64 num_bytes;
Miao Xie199c36e2011-07-15 10:34:36 +00007888 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007889 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04007890
Chris Masonc286ac42008-07-22 23:06:41 -04007891
Miao Xie199c36e2011-07-15 10:34:36 +00007892 /*
7893 * We need some metadata space and system metadata space for
7894 * allocating chunks in some corner cases until we force to set
7895 * it to be readonly.
7896 */
7897 if ((sinfo->flags &
7898 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
7899 !force)
7900 min_allocable_bytes = 1 * 1024 * 1024;
7901 else
7902 min_allocable_bytes = 0;
7903
Yan, Zhengf0486c62010-05-16 10:46:25 -04007904 spin_lock(&sinfo->lock);
7905 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00007906
7907 if (cache->ro) {
7908 ret = 0;
7909 goto out;
7910 }
7911
Yan, Zhengf0486c62010-05-16 10:46:25 -04007912 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
7913 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04007914
Yan, Zhengf0486c62010-05-16 10:46:25 -04007915 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
Josef Bacik37be25b2011-08-05 10:25:38 -04007916 sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes +
7917 min_allocable_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04007918 sinfo->bytes_readonly += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007919 cache->ro = 1;
7920 ret = 0;
7921 }
WuBo61cfea92011-07-26 03:30:11 +00007922out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04007923 spin_unlock(&cache->lock);
7924 spin_unlock(&sinfo->lock);
7925 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04007926}
7927
Yan, Zhengf0486c62010-05-16 10:46:25 -04007928int btrfs_set_block_group_ro(struct btrfs_root *root,
7929 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007930
7931{
Yan, Zhengf0486c62010-05-16 10:46:25 -04007932 struct btrfs_trans_handle *trans;
7933 u64 alloc_flags;
7934 int ret;
7935
7936 BUG_ON(cache->ro);
7937
Josef Bacik7a7eaa402011-04-13 12:54:33 -04007938 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007939 if (IS_ERR(trans))
7940 return PTR_ERR(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007941
7942 alloc_flags = update_block_group_flags(root, cache->flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007943 if (alloc_flags != cache->flags) {
Josef Bacik698d0082012-09-12 14:08:47 -04007944 ret = do_chunk_alloc(trans, root, alloc_flags,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007945 CHUNK_ALLOC_FORCE);
7946 if (ret < 0)
7947 goto out;
7948 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04007949
Miao Xie199c36e2011-07-15 10:34:36 +00007950 ret = set_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007951 if (!ret)
7952 goto out;
7953 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
Josef Bacik698d0082012-09-12 14:08:47 -04007954 ret = do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04007955 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007956 if (ret < 0)
7957 goto out;
Miao Xie199c36e2011-07-15 10:34:36 +00007958 ret = set_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007959out:
7960 btrfs_end_transaction(trans, root);
7961 return ret;
7962}
7963
Chris Masonc87f08c2011-02-16 13:57:04 -05007964int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
7965 struct btrfs_root *root, u64 type)
7966{
7967 u64 alloc_flags = get_alloc_profile(root, type);
Josef Bacik698d0082012-09-12 14:08:47 -04007968 return do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04007969 CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05007970}
7971
Miao Xie6d07bce2011-01-05 10:07:31 +00007972/*
7973 * helper to account the unused space of all the readonly block group in the
7974 * list. takes mirrors into account.
7975 */
7976static u64 __btrfs_get_ro_block_group_free_space(struct list_head *groups_list)
7977{
7978 struct btrfs_block_group_cache *block_group;
7979 u64 free_bytes = 0;
7980 int factor;
7981
7982 list_for_each_entry(block_group, groups_list, list) {
7983 spin_lock(&block_group->lock);
7984
7985 if (!block_group->ro) {
7986 spin_unlock(&block_group->lock);
7987 continue;
7988 }
7989
7990 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
7991 BTRFS_BLOCK_GROUP_RAID10 |
7992 BTRFS_BLOCK_GROUP_DUP))
7993 factor = 2;
7994 else
7995 factor = 1;
7996
7997 free_bytes += (block_group->key.offset -
7998 btrfs_block_group_used(&block_group->item)) *
7999 factor;
8000
8001 spin_unlock(&block_group->lock);
8002 }
8003
8004 return free_bytes;
8005}
8006
8007/*
8008 * helper to account the unused space of all the readonly block group in the
8009 * space_info. takes mirrors into account.
8010 */
8011u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
8012{
8013 int i;
8014 u64 free_bytes = 0;
8015
8016 spin_lock(&sinfo->lock);
8017
8018 for(i = 0; i < BTRFS_NR_RAID_TYPES; i++)
8019 if (!list_empty(&sinfo->block_groups[i]))
8020 free_bytes += __btrfs_get_ro_block_group_free_space(
8021 &sinfo->block_groups[i]);
8022
8023 spin_unlock(&sinfo->lock);
8024
8025 return free_bytes;
8026}
8027
Jeff Mahoney143bede2012-03-01 14:56:26 +01008028void btrfs_set_block_group_rw(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04008029 struct btrfs_block_group_cache *cache)
8030{
8031 struct btrfs_space_info *sinfo = cache->space_info;
8032 u64 num_bytes;
8033
8034 BUG_ON(!cache->ro);
8035
8036 spin_lock(&sinfo->lock);
8037 spin_lock(&cache->lock);
8038 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8039 cache->bytes_super - btrfs_block_group_used(&cache->item);
8040 sinfo->bytes_readonly -= num_bytes;
8041 cache->ro = 0;
8042 spin_unlock(&cache->lock);
8043 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008044}
8045
Josef Bacikba1bf482009-09-11 16:11:19 -04008046/*
8047 * checks to see if its even possible to relocate this block group.
8048 *
8049 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
8050 * ok to go ahead and try.
8051 */
8052int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04008053{
Zheng Yan1a40e232008-09-26 10:09:34 -04008054 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04008055 struct btrfs_space_info *space_info;
8056 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
8057 struct btrfs_device *device;
Josef Bacik6df9a952013-06-27 13:22:46 -04008058 struct btrfs_trans_handle *trans;
liubocdcb7252011-08-03 10:15:25 +00008059 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04008060 u64 dev_min = 1;
8061 u64 dev_nr = 0;
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008062 u64 target;
liubocdcb7252011-08-03 10:15:25 +00008063 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04008064 int full = 0;
8065 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05008066
Josef Bacikba1bf482009-09-11 16:11:19 -04008067 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04008068
Josef Bacikba1bf482009-09-11 16:11:19 -04008069 /* odd, couldn't find the block group, leave it alone */
8070 if (!block_group)
8071 return -1;
Chris Masonedbd8d42007-12-21 16:27:24 -05008072
liubocdcb7252011-08-03 10:15:25 +00008073 min_free = btrfs_block_group_used(&block_group->item);
8074
Josef Bacikba1bf482009-09-11 16:11:19 -04008075 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00008076 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04008077 goto out;
Chris Mason323da792008-05-09 11:46:48 -04008078
Josef Bacikba1bf482009-09-11 16:11:19 -04008079 space_info = block_group->space_info;
8080 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04008081
Josef Bacikba1bf482009-09-11 16:11:19 -04008082 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04008083
Josef Bacikba1bf482009-09-11 16:11:19 -04008084 /*
8085 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04008086 * relocate it unless we're able to allocate a new chunk below.
8087 *
8088 * Otherwise, we need to make sure we have room in the space to handle
8089 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04008090 */
Chris Mason7ce618d2009-09-22 14:48:44 -04008091 if ((space_info->total_bytes != block_group->key.offset) &&
liubocdcb7252011-08-03 10:15:25 +00008092 (space_info->bytes_used + space_info->bytes_reserved +
8093 space_info->bytes_pinned + space_info->bytes_readonly +
8094 min_free < space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04008095 spin_unlock(&space_info->lock);
8096 goto out;
8097 }
8098 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008099
Josef Bacikba1bf482009-09-11 16:11:19 -04008100 /*
8101 * ok we don't have enough space, but maybe we have free space on our
8102 * devices to allocate new chunks for relocation, so loop through our
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008103 * alloc devices and guess if we have enough space. if this block
8104 * group is going to be restriped, run checks against the target
8105 * profile instead of the current one.
Josef Bacikba1bf482009-09-11 16:11:19 -04008106 */
8107 ret = -1;
Chris Mason4313b392008-01-03 09:08:48 -05008108
liubocdcb7252011-08-03 10:15:25 +00008109 /*
8110 * index:
8111 * 0: raid10
8112 * 1: raid1
8113 * 2: dup
8114 * 3: raid0
8115 * 4: single
8116 */
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008117 target = get_restripe_target(root->fs_info, block_group->flags);
8118 if (target) {
Liu Bo31e50222012-11-21 14:18:10 +00008119 index = __get_raid_index(extended_to_chunk(target));
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008120 } else {
8121 /*
8122 * this is just a balance, so if we were marked as full
8123 * we know there is no space for a new chunk
8124 */
8125 if (full)
8126 goto out;
8127
8128 index = get_block_group_index(block_group);
8129 }
8130
Miao Xiee6ec7162013-01-17 05:38:51 +00008131 if (index == BTRFS_RAID_RAID10) {
liubocdcb7252011-08-03 10:15:25 +00008132 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04008133 /* Divide by 2 */
8134 min_free >>= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00008135 } else if (index == BTRFS_RAID_RAID1) {
liubocdcb7252011-08-03 10:15:25 +00008136 dev_min = 2;
Miao Xiee6ec7162013-01-17 05:38:51 +00008137 } else if (index == BTRFS_RAID_DUP) {
Josef Bacik6719db62011-08-20 08:29:51 -04008138 /* Multiply by 2 */
8139 min_free <<= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00008140 } else if (index == BTRFS_RAID_RAID0) {
liubocdcb7252011-08-03 10:15:25 +00008141 dev_min = fs_devices->rw_devices;
Josef Bacik6719db62011-08-20 08:29:51 -04008142 do_div(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00008143 }
8144
Josef Bacik6df9a952013-06-27 13:22:46 -04008145 /* We need to do this so that we can look at pending chunks */
8146 trans = btrfs_join_transaction(root);
8147 if (IS_ERR(trans)) {
8148 ret = PTR_ERR(trans);
8149 goto out;
8150 }
8151
Josef Bacikba1bf482009-09-11 16:11:19 -04008152 mutex_lock(&root->fs_info->chunk_mutex);
8153 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00008154 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04008155
Josef Bacikba1bf482009-09-11 16:11:19 -04008156 /*
8157 * check to make sure we can actually find a chunk with enough
8158 * space to fit our block group in.
8159 */
Stefan Behrens63a212a2012-11-05 18:29:28 +01008160 if (device->total_bytes > device->bytes_used + min_free &&
8161 !device->is_tgtdev_for_dev_replace) {
Josef Bacik6df9a952013-06-27 13:22:46 -04008162 ret = find_free_dev_extent(trans, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00008163 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04008164 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00008165 dev_nr++;
8166
8167 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05008168 break;
liubocdcb7252011-08-03 10:15:25 +00008169
Josef Bacikba1bf482009-09-11 16:11:19 -04008170 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05008171 }
Chris Masonedbd8d42007-12-21 16:27:24 -05008172 }
Josef Bacikba1bf482009-09-11 16:11:19 -04008173 mutex_unlock(&root->fs_info->chunk_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04008174 btrfs_end_transaction(trans, root);
Chris Masonedbd8d42007-12-21 16:27:24 -05008175out:
Josef Bacikba1bf482009-09-11 16:11:19 -04008176 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05008177 return ret;
8178}
8179
Christoph Hellwigb2950862008-12-02 09:54:17 -05008180static int find_first_block_group(struct btrfs_root *root,
8181 struct btrfs_path *path, struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04008182{
Chris Mason925baed2008-06-25 16:01:30 -04008183 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04008184 struct btrfs_key found_key;
8185 struct extent_buffer *leaf;
8186 int slot;
8187
8188 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
8189 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008190 goto out;
8191
Chris Masond3977122009-01-05 21:25:51 -05008192 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04008193 slot = path->slots[0];
8194 leaf = path->nodes[0];
8195 if (slot >= btrfs_header_nritems(leaf)) {
8196 ret = btrfs_next_leaf(root, path);
8197 if (ret == 0)
8198 continue;
8199 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008200 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04008201 break;
8202 }
8203 btrfs_item_key_to_cpu(leaf, &found_key, slot);
8204
8205 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04008206 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
8207 ret = 0;
8208 goto out;
8209 }
Chris Mason0b86a832008-03-24 15:01:56 -04008210 path->slots[0]++;
8211 }
Chris Mason925baed2008-06-25 16:01:30 -04008212out:
Chris Mason0b86a832008-03-24 15:01:56 -04008213 return ret;
8214}
8215
Josef Bacik0af3d002010-06-21 14:48:16 -04008216void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
8217{
8218 struct btrfs_block_group_cache *block_group;
8219 u64 last = 0;
8220
8221 while (1) {
8222 struct inode *inode;
8223
8224 block_group = btrfs_lookup_first_block_group(info, last);
8225 while (block_group) {
8226 spin_lock(&block_group->lock);
8227 if (block_group->iref)
8228 break;
8229 spin_unlock(&block_group->lock);
8230 block_group = next_block_group(info->tree_root,
8231 block_group);
8232 }
8233 if (!block_group) {
8234 if (last == 0)
8235 break;
8236 last = 0;
8237 continue;
8238 }
8239
8240 inode = block_group->inode;
8241 block_group->iref = 0;
8242 block_group->inode = NULL;
8243 spin_unlock(&block_group->lock);
8244 iput(inode);
8245 last = block_group->key.objectid + block_group->key.offset;
8246 btrfs_put_block_group(block_group);
8247 }
8248}
8249
Zheng Yan1a40e232008-09-26 10:09:34 -04008250int btrfs_free_block_groups(struct btrfs_fs_info *info)
8251{
8252 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04008253 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04008254 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04008255 struct rb_node *n;
8256
Yan Zheng11833d62009-09-11 16:11:19 -04008257 down_write(&info->extent_commit_sem);
8258 while (!list_empty(&info->caching_block_groups)) {
8259 caching_ctl = list_entry(info->caching_block_groups.next,
8260 struct btrfs_caching_control, list);
8261 list_del(&caching_ctl->list);
8262 put_caching_control(caching_ctl);
8263 }
8264 up_write(&info->extent_commit_sem);
8265
Zheng Yan1a40e232008-09-26 10:09:34 -04008266 spin_lock(&info->block_group_cache_lock);
8267 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
8268 block_group = rb_entry(n, struct btrfs_block_group_cache,
8269 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04008270 rb_erase(&block_group->cache_node,
8271 &info->block_group_cache_tree);
Yan Zhengd899e052008-10-30 14:25:28 -04008272 spin_unlock(&info->block_group_cache_lock);
8273
Josef Bacik80eb2342008-10-29 14:49:05 -04008274 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04008275 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04008276 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05008277
Josef Bacik817d52f2009-07-13 21:29:25 -04008278 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04008279 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04008280
Josef Bacik3c148742011-02-02 15:53:47 +00008281 /*
8282 * We haven't cached this block group, which means we could
8283 * possibly have excluded extents on this block group.
8284 */
Josef Bacik36cce922013-08-05 11:15:21 -04008285 if (block_group->cached == BTRFS_CACHE_NO ||
8286 block_group->cached == BTRFS_CACHE_ERROR)
Josef Bacik3c148742011-02-02 15:53:47 +00008287 free_excluded_extents(info->extent_root, block_group);
8288
Josef Bacik817d52f2009-07-13 21:29:25 -04008289 btrfs_remove_free_space_cache(block_group);
Josef Bacik11dfe352009-11-13 20:12:59 +00008290 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04008291
8292 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008293 }
8294 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -04008295
8296 /* now that all the block groups are freed, go through and
8297 * free all the space_info structs. This is only called during
8298 * the final stages of unmount, and so we know nobody is
8299 * using them. We call synchronize_rcu() once before we start,
8300 * just to be on the safe side.
8301 */
8302 synchronize_rcu();
8303
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04008304 release_global_block_rsv(info);
8305
Chris Mason4184ea72009-03-10 12:39:20 -04008306 while(!list_empty(&info->space_info)) {
8307 space_info = list_entry(info->space_info.next,
8308 struct btrfs_space_info,
8309 list);
David Sterbab069e0c2013-02-08 21:28:17 +00008310 if (btrfs_test_opt(info->tree_root, ENOSPC_DEBUG)) {
8311 if (space_info->bytes_pinned > 0 ||
8312 space_info->bytes_reserved > 0 ||
8313 space_info->bytes_may_use > 0) {
8314 WARN_ON(1);
8315 dump_space_info(space_info, 0, 0);
8316 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008317 }
Josef Bacikb150a4f2013-06-19 15:00:04 -04008318 percpu_counter_destroy(&space_info->total_bytes_pinned);
Chris Mason4184ea72009-03-10 12:39:20 -04008319 list_del(&space_info->list);
8320 kfree(space_info);
8321 }
Zheng Yan1a40e232008-09-26 10:09:34 -04008322 return 0;
8323}
8324
Yan, Zhengb742bb82010-05-16 10:46:24 -04008325static void __link_block_group(struct btrfs_space_info *space_info,
8326 struct btrfs_block_group_cache *cache)
8327{
8328 int index = get_block_group_index(cache);
8329
8330 down_write(&space_info->groups_sem);
8331 list_add_tail(&cache->list, &space_info->block_groups[index]);
8332 up_write(&space_info->groups_sem);
8333}
8334
Chris Mason9078a3e2007-04-26 16:46:15 -04008335int btrfs_read_block_groups(struct btrfs_root *root)
8336{
8337 struct btrfs_path *path;
8338 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04008339 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04008340 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04008341 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04008342 struct btrfs_key key;
8343 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04008344 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -04008345 int need_clear = 0;
8346 u64 cache_gen;
Chris Mason96b51792007-10-15 16:15:19 -04008347
Chris Masonbe744172007-05-06 10:15:01 -04008348 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04008349 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04008350 key.offset = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04008351 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason9078a3e2007-04-26 16:46:15 -04008352 path = btrfs_alloc_path();
8353 if (!path)
8354 return -ENOMEM;
Josef Bacik026fd312011-05-13 10:32:11 -04008355 path->reada = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04008356
David Sterba6c417612011-04-13 15:41:04 +02008357 cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
Josef Bacik73bc1872011-10-03 14:07:49 -04008358 if (btrfs_test_opt(root, SPACE_CACHE) &&
David Sterba6c417612011-04-13 15:41:04 +02008359 btrfs_super_generation(root->fs_info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -04008360 need_clear = 1;
Josef Bacik88c2ba32010-09-21 14:21:34 -04008361 if (btrfs_test_opt(root, CLEAR_CACHE))
8362 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -04008363
Chris Masond3977122009-01-05 21:25:51 -05008364 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04008365 ret = find_first_block_group(root, path, &key);
Yan, Zhengb742bb82010-05-16 10:46:24 -04008366 if (ret > 0)
8367 break;
Chris Mason0b86a832008-03-24 15:01:56 -04008368 if (ret != 0)
8369 goto error;
Chris Mason5f39d392007-10-15 16:14:19 -04008370 leaf = path->nodes[0];
8371 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason8f18cf12008-04-25 16:53:30 -04008372 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04008373 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04008374 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008375 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04008376 }
Li Zefan34d52cb6c2011-03-29 13:46:06 +08008377 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
8378 GFP_NOFS);
8379 if (!cache->free_space_ctl) {
8380 kfree(cache);
8381 ret = -ENOMEM;
8382 goto error;
8383 }
Chris Mason3e1ad542007-05-07 20:03:49 -04008384
Yan Zhengd2fb3432008-12-11 16:30:39 -05008385 atomic_set(&cache->count, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04008386 spin_lock_init(&cache->lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04008387 cache->fs_info = info;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008388 INIT_LIST_HEAD(&cache->list);
Chris Masonfa9c0d72009-04-03 09:47:43 -04008389 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik96303082009-07-13 21:29:25 -04008390
Liu Bocf7c1ef2012-07-06 03:31:34 -06008391 if (need_clear) {
8392 /*
8393 * When we mount with old space cache, we need to
8394 * set BTRFS_DC_CLEAR and set dirty flag.
8395 *
8396 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
8397 * truncate the old free space cache inode and
8398 * setup a new one.
8399 * b) Setting 'dirty flag' makes sure that we flush
8400 * the new space cache info onto disk.
8401 */
Josef Bacik0af3d002010-06-21 14:48:16 -04008402 cache->disk_cache_state = BTRFS_DC_CLEAR;
Liu Bocf7c1ef2012-07-06 03:31:34 -06008403 if (btrfs_test_opt(root, SPACE_CACHE))
8404 cache->dirty = 1;
8405 }
Josef Bacik0af3d002010-06-21 14:48:16 -04008406
Chris Mason5f39d392007-10-15 16:14:19 -04008407 read_extent_buffer(leaf, &cache->item,
8408 btrfs_item_ptr_offset(leaf, path->slots[0]),
8409 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04008410 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Mason0b86a832008-03-24 15:01:56 -04008411
Chris Mason9078a3e2007-04-26 16:46:15 -04008412 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +02008413 btrfs_release_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04008414 cache->flags = btrfs_block_group_flags(&cache->item);
Josef Bacik817d52f2009-07-13 21:29:25 -04008415 cache->sectorsize = root->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05008416 cache->full_stripe_len = btrfs_full_stripe_len(root,
8417 &root->fs_info->mapping_tree,
8418 found_key.objectid);
Li Zefan34d52cb6c2011-03-29 13:46:06 +08008419 btrfs_init_free_space_ctl(cache);
8420
Josef Bacik817d52f2009-07-13 21:29:25 -04008421 /*
Josef Bacik3c148742011-02-02 15:53:47 +00008422 * We need to exclude the super stripes now so that the space
8423 * info has super bytes accounted for, otherwise we'll think
8424 * we have more space than we actually do.
8425 */
Josef Bacik835d9742013-03-19 12:13:25 -04008426 ret = exclude_super_stripes(root, cache);
8427 if (ret) {
8428 /*
8429 * We may have excluded something, so call this just in
8430 * case.
8431 */
8432 free_excluded_extents(root, cache);
8433 kfree(cache->free_space_ctl);
8434 kfree(cache);
8435 goto error;
8436 }
Josef Bacik3c148742011-02-02 15:53:47 +00008437
8438 /*
Josef Bacik817d52f2009-07-13 21:29:25 -04008439 * check for two cases, either we are full, and therefore
8440 * don't need to bother with the caching work since we won't
8441 * find any space, or we are empty, and we can just add all
8442 * the space in and be done with it. This saves us _alot_ of
8443 * time, particularly in the full case.
8444 */
8445 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -04008446 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008447 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik1b2da372009-09-11 16:11:20 -04008448 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04008449 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -04008450 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008451 cache->cached = BTRFS_CACHE_FINISHED;
8452 add_new_free_space(cache, root->fs_info,
8453 found_key.objectid,
8454 found_key.objectid +
8455 found_key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -04008456 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04008457 }
Chris Mason96b51792007-10-15 16:15:19 -04008458
Josef Bacik8c579fe2013-04-02 12:40:42 -04008459 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8460 if (ret) {
8461 btrfs_remove_free_space_cache(cache);
8462 btrfs_put_block_group(cache);
8463 goto error;
8464 }
8465
Chris Mason6324fbf2008-03-24 15:01:59 -04008466 ret = update_space_info(info, cache->flags, found_key.offset,
8467 btrfs_block_group_used(&cache->item),
8468 &space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -04008469 if (ret) {
8470 btrfs_remove_free_space_cache(cache);
8471 spin_lock(&info->block_group_cache_lock);
8472 rb_erase(&cache->cache_node,
8473 &info->block_group_cache_tree);
8474 spin_unlock(&info->block_group_cache_lock);
8475 btrfs_put_block_group(cache);
8476 goto error;
8477 }
8478
Chris Mason6324fbf2008-03-24 15:01:59 -04008479 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -04008480 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008481 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04008482 spin_unlock(&cache->space_info->lock);
8483
Yan, Zhengb742bb82010-05-16 10:46:24 -04008484 __link_block_group(space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04008485
Chris Mason75ccf472008-09-30 19:24:06 -04008486 set_avail_alloc_bits(root->fs_info, cache->flags);
Yan Zheng2b820322008-11-17 21:11:30 -05008487 if (btrfs_chunk_readonly(root, cache->key.objectid))
Miao Xie199c36e2011-07-15 10:34:36 +00008488 set_block_group_ro(cache, 1);
Chris Mason9078a3e2007-04-26 16:46:15 -04008489 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04008490
8491 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
8492 if (!(get_alloc_profile(root, space_info->flags) &
8493 (BTRFS_BLOCK_GROUP_RAID10 |
8494 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05008495 BTRFS_BLOCK_GROUP_RAID5 |
8496 BTRFS_BLOCK_GROUP_RAID6 |
Yan, Zhengb742bb82010-05-16 10:46:24 -04008497 BTRFS_BLOCK_GROUP_DUP)))
8498 continue;
8499 /*
8500 * avoid allocating from un-mirrored block group if there are
8501 * mirrored block groups.
8502 */
chandan1095cc02013-07-16 12:28:56 +05308503 list_for_each_entry(cache,
8504 &space_info->block_groups[BTRFS_RAID_RAID0],
8505 list)
Miao Xie199c36e2011-07-15 10:34:36 +00008506 set_block_group_ro(cache, 1);
chandan1095cc02013-07-16 12:28:56 +05308507 list_for_each_entry(cache,
8508 &space_info->block_groups[BTRFS_RAID_SINGLE],
8509 list)
Miao Xie199c36e2011-07-15 10:34:36 +00008510 set_block_group_ro(cache, 1);
Yan, Zhengb742bb82010-05-16 10:46:24 -04008511 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008512
8513 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -04008514 ret = 0;
8515error:
Chris Mason9078a3e2007-04-26 16:46:15 -04008516 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04008517 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04008518}
Chris Mason6324fbf2008-03-24 15:01:59 -04008519
Josef Bacikea658ba2012-09-11 16:57:25 -04008520void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans,
8521 struct btrfs_root *root)
8522{
8523 struct btrfs_block_group_cache *block_group, *tmp;
8524 struct btrfs_root *extent_root = root->fs_info->extent_root;
8525 struct btrfs_block_group_item item;
8526 struct btrfs_key key;
8527 int ret = 0;
8528
8529 list_for_each_entry_safe(block_group, tmp, &trans->new_bgs,
8530 new_bg_list) {
8531 list_del_init(&block_group->new_bg_list);
8532
8533 if (ret)
8534 continue;
8535
8536 spin_lock(&block_group->lock);
8537 memcpy(&item, &block_group->item, sizeof(item));
8538 memcpy(&key, &block_group->key, sizeof(key));
8539 spin_unlock(&block_group->lock);
8540
8541 ret = btrfs_insert_item(trans, extent_root, &key, &item,
8542 sizeof(item));
8543 if (ret)
8544 btrfs_abort_transaction(trans, extent_root, ret);
Josef Bacik6df9a952013-06-27 13:22:46 -04008545 ret = btrfs_finish_chunk_alloc(trans, extent_root,
8546 key.objectid, key.offset);
8547 if (ret)
8548 btrfs_abort_transaction(trans, extent_root, ret);
Josef Bacikea658ba2012-09-11 16:57:25 -04008549 }
8550}
8551
Chris Mason6324fbf2008-03-24 15:01:59 -04008552int btrfs_make_block_group(struct btrfs_trans_handle *trans,
8553 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04008554 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04008555 u64 size)
8556{
8557 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04008558 struct btrfs_root *extent_root;
8559 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -04008560
8561 extent_root = root->fs_info->extent_root;
Chris Mason6324fbf2008-03-24 15:01:59 -04008562
Chris Mason12fcfd22009-03-24 10:24:20 -04008563 root->fs_info->last_trans_log_full_commit = trans->transid;
Chris Masone02119d2008-09-05 16:13:11 -04008564
Chris Mason8f18cf12008-04-25 16:53:30 -04008565 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008566 if (!cache)
8567 return -ENOMEM;
Li Zefan34d52cb6c2011-03-29 13:46:06 +08008568 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
8569 GFP_NOFS);
8570 if (!cache->free_space_ctl) {
8571 kfree(cache);
8572 return -ENOMEM;
8573 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04008574
Chris Masone17cade2008-04-15 15:41:47 -04008575 cache->key.objectid = chunk_offset;
Chris Mason6324fbf2008-03-24 15:01:59 -04008576 cache->key.offset = size;
Yan Zhengd2fb3432008-12-11 16:30:39 -05008577 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Josef Bacik96303082009-07-13 21:29:25 -04008578 cache->sectorsize = root->sectorsize;
Josef Bacik0af3d002010-06-21 14:48:16 -04008579 cache->fs_info = root->fs_info;
David Woodhouse53b381b2013-01-29 18:40:14 -05008580 cache->full_stripe_len = btrfs_full_stripe_len(root,
8581 &root->fs_info->mapping_tree,
8582 chunk_offset);
Josef Bacik96303082009-07-13 21:29:25 -04008583
Yan Zhengd2fb3432008-12-11 16:30:39 -05008584 atomic_set(&cache->count, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04008585 spin_lock_init(&cache->lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008586 INIT_LIST_HEAD(&cache->list);
Chris Masonfa9c0d72009-04-03 09:47:43 -04008587 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacikea658ba2012-09-11 16:57:25 -04008588 INIT_LIST_HEAD(&cache->new_bg_list);
Chris Mason0ef3e662008-05-24 14:04:53 -04008589
Li Zefan34d52cb6c2011-03-29 13:46:06 +08008590 btrfs_init_free_space_ctl(cache);
8591
Chris Mason6324fbf2008-03-24 15:01:59 -04008592 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04008593 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
8594 cache->flags = type;
8595 btrfs_set_block_group_flags(&cache->item, type);
8596
Yan Zheng11833d62009-09-11 16:11:19 -04008597 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008598 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik835d9742013-03-19 12:13:25 -04008599 ret = exclude_super_stripes(root, cache);
8600 if (ret) {
8601 /*
8602 * We may have excluded something, so call this just in
8603 * case.
8604 */
8605 free_excluded_extents(root, cache);
8606 kfree(cache->free_space_ctl);
8607 kfree(cache);
8608 return ret;
8609 }
Josef Bacik96303082009-07-13 21:29:25 -04008610
Josef Bacik817d52f2009-07-13 21:29:25 -04008611 add_new_free_space(cache, root->fs_info, chunk_offset,
8612 chunk_offset + size);
8613
Yan Zheng11833d62009-09-11 16:11:19 -04008614 free_excluded_extents(root, cache);
8615
Josef Bacik8c579fe2013-04-02 12:40:42 -04008616 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8617 if (ret) {
8618 btrfs_remove_free_space_cache(cache);
8619 btrfs_put_block_group(cache);
8620 return ret;
8621 }
8622
Chris Mason6324fbf2008-03-24 15:01:59 -04008623 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
8624 &cache->space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -04008625 if (ret) {
8626 btrfs_remove_free_space_cache(cache);
8627 spin_lock(&root->fs_info->block_group_cache_lock);
8628 rb_erase(&cache->cache_node,
8629 &root->fs_info->block_group_cache_tree);
8630 spin_unlock(&root->fs_info->block_group_cache_lock);
8631 btrfs_put_block_group(cache);
8632 return ret;
8633 }
Li Zefanc7c144d2011-12-07 10:39:22 +08008634 update_global_block_rsv(root->fs_info);
Josef Bacik1b2da372009-09-11 16:11:20 -04008635
8636 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008637 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04008638 spin_unlock(&cache->space_info->lock);
8639
Yan, Zhengb742bb82010-05-16 10:46:24 -04008640 __link_block_group(cache->space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04008641
Josef Bacikea658ba2012-09-11 16:57:25 -04008642 list_add_tail(&cache->new_bg_list, &trans->new_bgs);
Chris Mason6324fbf2008-03-24 15:01:59 -04008643
Chris Masond18a2c42008-04-04 15:40:00 -04008644 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason925baed2008-06-25 16:01:30 -04008645
Chris Mason6324fbf2008-03-24 15:01:59 -04008646 return 0;
8647}
Zheng Yan1a40e232008-09-26 10:09:34 -04008648
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008649static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
8650{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03008651 u64 extra_flags = chunk_to_extended(flags) &
8652 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008653
Miao Xiede98ced2013-01-29 10:13:12 +00008654 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008655 if (flags & BTRFS_BLOCK_GROUP_DATA)
8656 fs_info->avail_data_alloc_bits &= ~extra_flags;
8657 if (flags & BTRFS_BLOCK_GROUP_METADATA)
8658 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
8659 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
8660 fs_info->avail_system_alloc_bits &= ~extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00008661 write_sequnlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008662}
8663
Zheng Yan1a40e232008-09-26 10:09:34 -04008664int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
8665 struct btrfs_root *root, u64 group_start)
8666{
8667 struct btrfs_path *path;
8668 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -04008669 struct btrfs_free_cluster *cluster;
Josef Bacik0af3d002010-06-21 14:48:16 -04008670 struct btrfs_root *tree_root = root->fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -04008671 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -04008672 struct inode *inode;
Zheng Yan1a40e232008-09-26 10:09:34 -04008673 int ret;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008674 int index;
Josef Bacik89a55892010-10-14 14:52:27 -04008675 int factor;
Zheng Yan1a40e232008-09-26 10:09:34 -04008676
Zheng Yan1a40e232008-09-26 10:09:34 -04008677 root = root->fs_info->extent_root;
8678
8679 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
8680 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -05008681 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -04008682
liubo9f7c43c2011-03-07 02:13:33 +00008683 /*
8684 * Free the reserved super bytes from this block group before
8685 * remove it.
8686 */
8687 free_excluded_extents(root, block_group);
8688
Zheng Yan1a40e232008-09-26 10:09:34 -04008689 memcpy(&key, &block_group->key, sizeof(key));
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008690 index = get_block_group_index(block_group);
Josef Bacik89a55892010-10-14 14:52:27 -04008691 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
8692 BTRFS_BLOCK_GROUP_RAID1 |
8693 BTRFS_BLOCK_GROUP_RAID10))
8694 factor = 2;
8695 else
8696 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04008697
Chris Mason44fb5512009-06-04 15:34:51 -04008698 /* make sure this block group isn't part of an allocation cluster */
8699 cluster = &root->fs_info->data_alloc_cluster;
8700 spin_lock(&cluster->refill_lock);
8701 btrfs_return_cluster_to_free_space(block_group, cluster);
8702 spin_unlock(&cluster->refill_lock);
8703
8704 /*
8705 * make sure this block group isn't part of a metadata
8706 * allocation cluster
8707 */
8708 cluster = &root->fs_info->meta_alloc_cluster;
8709 spin_lock(&cluster->refill_lock);
8710 btrfs_return_cluster_to_free_space(block_group, cluster);
8711 spin_unlock(&cluster->refill_lock);
8712
Zheng Yan1a40e232008-09-26 10:09:34 -04008713 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07008714 if (!path) {
8715 ret = -ENOMEM;
8716 goto out;
8717 }
Zheng Yan1a40e232008-09-26 10:09:34 -04008718
Ilya Dryomov10b2f342011-10-02 13:56:53 +03008719 inode = lookup_free_space_inode(tree_root, block_group, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04008720 if (!IS_ERR(inode)) {
Tsutomu Itohb5324022011-07-19 07:27:20 +00008721 ret = btrfs_orphan_add(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008722 if (ret) {
8723 btrfs_add_delayed_iput(inode);
8724 goto out;
8725 }
Josef Bacik0af3d002010-06-21 14:48:16 -04008726 clear_nlink(inode);
8727 /* One for the block groups ref */
8728 spin_lock(&block_group->lock);
8729 if (block_group->iref) {
8730 block_group->iref = 0;
8731 block_group->inode = NULL;
8732 spin_unlock(&block_group->lock);
8733 iput(inode);
8734 } else {
8735 spin_unlock(&block_group->lock);
8736 }
8737 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -04008738 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04008739 }
8740
8741 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
8742 key.offset = block_group->key.objectid;
8743 key.type = 0;
8744
8745 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
8746 if (ret < 0)
8747 goto out;
8748 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +02008749 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04008750 if (ret == 0) {
8751 ret = btrfs_del_item(trans, tree_root, path);
8752 if (ret)
8753 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02008754 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04008755 }
8756
Yan Zheng3dfdb932009-01-21 10:49:16 -05008757 spin_lock(&root->fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008758 rb_erase(&block_group->cache_node,
8759 &root->fs_info->block_group_cache_tree);
Liu Boa1897fd2012-12-27 09:01:23 +00008760
8761 if (root->fs_info->first_logical_byte == block_group->key.objectid)
8762 root->fs_info->first_logical_byte = (u64)-1;
Yan Zheng3dfdb932009-01-21 10:49:16 -05008763 spin_unlock(&root->fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04008764
Josef Bacik80eb2342008-10-29 14:49:05 -04008765 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04008766 /*
8767 * we must use list_del_init so people can check to see if they
8768 * are still on the list after taking the semaphore
8769 */
8770 list_del_init(&block_group->list);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008771 if (list_empty(&block_group->space_info->block_groups[index]))
8772 clear_avail_alloc_bits(root->fs_info, block_group->flags);
Josef Bacik80eb2342008-10-29 14:49:05 -04008773 up_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04008774
Josef Bacik817d52f2009-07-13 21:29:25 -04008775 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04008776 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04008777
8778 btrfs_remove_free_space_cache(block_group);
8779
Yan Zhengc146afa2008-11-12 14:34:12 -05008780 spin_lock(&block_group->space_info->lock);
8781 block_group->space_info->total_bytes -= block_group->key.offset;
8782 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -04008783 block_group->space_info->disk_total -= block_group->key.offset * factor;
Yan Zhengc146afa2008-11-12 14:34:12 -05008784 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -04008785
Josef Bacik0af3d002010-06-21 14:48:16 -04008786 memcpy(&key, &block_group->key, sizeof(key));
8787
Chris Mason283bb192009-07-24 16:30:55 -04008788 btrfs_clear_space_info_full(root->fs_info);
Yan Zhengc146afa2008-11-12 14:34:12 -05008789
Chris Masonfa9c0d72009-04-03 09:47:43 -04008790 btrfs_put_block_group(block_group);
8791 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -04008792
8793 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
8794 if (ret > 0)
8795 ret = -EIO;
8796 if (ret < 0)
8797 goto out;
8798
8799 ret = btrfs_del_item(trans, root, path);
8800out:
8801 btrfs_free_path(path);
8802 return ret;
8803}
liuboacce9522011-01-06 19:30:25 +08008804
liuboc59021f2011-03-07 02:13:14 +00008805int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
8806{
8807 struct btrfs_space_info *space_info;
liubo1aba86d2011-04-08 08:44:37 +00008808 struct btrfs_super_block *disk_super;
8809 u64 features;
8810 u64 flags;
8811 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +00008812 int ret;
8813
David Sterba6c417612011-04-13 15:41:04 +02008814 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +00008815 if (!btrfs_super_root(disk_super))
8816 return 1;
liuboc59021f2011-03-07 02:13:14 +00008817
liubo1aba86d2011-04-08 08:44:37 +00008818 features = btrfs_super_incompat_flags(disk_super);
8819 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
8820 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +00008821
liubo1aba86d2011-04-08 08:44:37 +00008822 flags = BTRFS_BLOCK_GROUP_SYSTEM;
8823 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
liuboc59021f2011-03-07 02:13:14 +00008824 if (ret)
liubo1aba86d2011-04-08 08:44:37 +00008825 goto out;
liuboc59021f2011-03-07 02:13:14 +00008826
liubo1aba86d2011-04-08 08:44:37 +00008827 if (mixed) {
8828 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
8829 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
8830 } else {
8831 flags = BTRFS_BLOCK_GROUP_METADATA;
8832 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
8833 if (ret)
8834 goto out;
8835
8836 flags = BTRFS_BLOCK_GROUP_DATA;
8837 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
8838 }
8839out:
liuboc59021f2011-03-07 02:13:14 +00008840 return ret;
8841}
8842
liuboacce9522011-01-06 19:30:25 +08008843int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
8844{
8845 return unpin_extent_range(root, start, end);
8846}
8847
8848int btrfs_error_discard_extent(struct btrfs_root *root, u64 bytenr,
Li Dongyang5378e602011-03-24 10:24:27 +00008849 u64 num_bytes, u64 *actual_bytes)
liuboacce9522011-01-06 19:30:25 +08008850{
Li Dongyang5378e602011-03-24 10:24:27 +00008851 return btrfs_discard_extent(root, bytenr, num_bytes, actual_bytes);
liuboacce9522011-01-06 19:30:25 +08008852}
Li Dongyangf7039b12011-03-24 10:24:28 +00008853
8854int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range)
8855{
8856 struct btrfs_fs_info *fs_info = root->fs_info;
8857 struct btrfs_block_group_cache *cache = NULL;
8858 u64 group_trimmed;
8859 u64 start;
8860 u64 end;
8861 u64 trimmed = 0;
Liu Bo2cac13e2012-02-09 18:17:41 +08008862 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +00008863 int ret = 0;
8864
Liu Bo2cac13e2012-02-09 18:17:41 +08008865 /*
8866 * try to trim all FS space, our block group may start from non-zero.
8867 */
8868 if (range->len == total_bytes)
8869 cache = btrfs_lookup_first_block_group(fs_info, range->start);
8870 else
8871 cache = btrfs_lookup_block_group(fs_info, range->start);
Li Dongyangf7039b12011-03-24 10:24:28 +00008872
8873 while (cache) {
8874 if (cache->key.objectid >= (range->start + range->len)) {
8875 btrfs_put_block_group(cache);
8876 break;
8877 }
8878
8879 start = max(range->start, cache->key.objectid);
8880 end = min(range->start + range->len,
8881 cache->key.objectid + cache->key.offset);
8882
8883 if (end - start >= range->minlen) {
8884 if (!block_group_cache_done(cache)) {
Liu Bof6373bf2012-12-27 09:01:18 +00008885 ret = cache_block_group(cache, 0);
Josef Bacik1be41b72013-06-12 13:56:06 -04008886 if (ret) {
8887 btrfs_put_block_group(cache);
8888 break;
8889 }
8890 ret = wait_block_group_cache_done(cache);
8891 if (ret) {
8892 btrfs_put_block_group(cache);
8893 break;
8894 }
Li Dongyangf7039b12011-03-24 10:24:28 +00008895 }
8896 ret = btrfs_trim_block_group(cache,
8897 &group_trimmed,
8898 start,
8899 end,
8900 range->minlen);
8901
8902 trimmed += group_trimmed;
8903 if (ret) {
8904 btrfs_put_block_group(cache);
8905 break;
8906 }
8907 }
8908
8909 cache = next_block_group(fs_info->tree_root, cache);
8910 }
8911
8912 range->len = trimmed;
8913 return ret;
8914}