blob: a807acc9a63eb7f0928c2ed2f79fa5e1aef6fed1 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
Zach Brownec6b9102007-07-11 10:00:37 -040018#include <linux/sched.h>
Chris Masonedbd8d42007-12-21 16:27:24 -050019#include <linux/pagemap.h>
Chris Masonec44a352008-04-28 15:29:52 -040020#include <linux/writeback.h>
David Woodhouse21af8042008-08-12 14:13:26 +010021#include <linux/blkdev.h>
Chris Masonb7a9f292009-02-04 09:23:45 -050022#include <linux/sort.h>
Chris Mason4184ea72009-03-10 12:39:20 -040023#include <linux/rcupdate.h>
Josef Bacik817d52f2009-07-13 21:29:25 -040024#include <linux/kthread.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
David Sterbadff51cd2011-06-14 12:52:17 +020026#include <linux/ratelimit.h>
Josef Bacikb150a4f2013-06-19 15:00:04 -040027#include <linux/percpu_counter.h>
Chris Mason74493f72007-12-11 09:25:06 -050028#include "hash.h"
Chris Masonfec577f2007-02-26 10:40:21 -050029#include "ctree.h"
30#include "disk-io.h"
31#include "print-tree.h"
Chris Masone089f052007-03-16 16:20:31 -040032#include "transaction.h"
Chris Mason0b86a832008-03-24 15:01:56 -040033#include "volumes.h"
David Woodhouse53b381b2013-01-29 18:40:14 -050034#include "raid56.h"
Chris Mason925baed2008-06-25 16:01:30 -040035#include "locking.h"
Chris Masonfa9c0d792009-04-03 09:47:43 -040036#include "free-space-cache.h"
Miao Xie3fed40c2012-09-13 04:51:36 -060037#include "math.h"
Chris Masonfec577f2007-02-26 10:40:21 -050038
Arne Jansen709c0482011-09-12 12:22:57 +020039#undef SCRAMBLE_DELAYED_REFS
40
Miao Xie9e622d62012-01-26 15:01:12 -050041/*
42 * control flags for do_chunk_alloc's force field
Chris Mason0e4f8f82011-04-15 16:05:44 -040043 * CHUNK_ALLOC_NO_FORCE means to only allocate a chunk
44 * if we really need one.
45 *
Chris Mason0e4f8f82011-04-15 16:05:44 -040046 * CHUNK_ALLOC_LIMITED means to only try and allocate one
47 * if we have very few chunks already allocated. This is
48 * used as part of the clustering code to help make sure
49 * we have a good pool of storage to cluster in, without
50 * filling the FS with empty chunks
51 *
Miao Xie9e622d62012-01-26 15:01:12 -050052 * CHUNK_ALLOC_FORCE means it must try to allocate one
53 *
Chris Mason0e4f8f82011-04-15 16:05:44 -040054 */
55enum {
56 CHUNK_ALLOC_NO_FORCE = 0,
Miao Xie9e622d62012-01-26 15:01:12 -050057 CHUNK_ALLOC_LIMITED = 1,
58 CHUNK_ALLOC_FORCE = 2,
Chris Mason0e4f8f82011-04-15 16:05:44 -040059};
60
Josef Bacikfb25e912011-07-26 17:00:46 -040061/*
62 * Control how reservations are dealt with.
63 *
64 * RESERVE_FREE - freeing a reservation.
65 * RESERVE_ALLOC - allocating space and we need to update bytes_may_use for
66 * ENOSPC accounting
67 * RESERVE_ALLOC_NO_ACCOUNT - allocating space and we should not update
68 * bytes_may_use as the ENOSPC accounting is done elsewhere
69 */
70enum {
71 RESERVE_FREE = 0,
72 RESERVE_ALLOC = 1,
73 RESERVE_ALLOC_NO_ACCOUNT = 2,
74};
75
Liu Boc53d6132012-12-27 09:01:19 +000076static int update_block_group(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -040077 u64 bytenr, u64 num_bytes, int alloc);
Yan Zheng5d4f98a2009-06-10 10:45:14 -040078static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
79 struct btrfs_root *root,
80 u64 bytenr, u64 num_bytes, u64 parent,
81 u64 root_objectid, u64 owner_objectid,
82 u64 owner_offset, int refs_to_drop,
83 struct btrfs_delayed_extent_op *extra_op);
84static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
85 struct extent_buffer *leaf,
86 struct btrfs_extent_item *ei);
87static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
88 struct btrfs_root *root,
89 u64 parent, u64 root_objectid,
90 u64 flags, u64 owner, u64 offset,
91 struct btrfs_key *ins, int ref_mod);
92static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
93 struct btrfs_root *root,
94 u64 parent, u64 root_objectid,
95 u64 flags, struct btrfs_disk_key *key,
96 int level, struct btrfs_key *ins);
Josef Bacik6a632092009-02-20 11:00:09 -050097static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Josef Bacik698d0082012-09-12 14:08:47 -040098 struct btrfs_root *extent_root, u64 flags,
99 int force);
Yan Zheng11833d62009-09-11 16:11:19 -0400100static int find_next_key(struct btrfs_path *path, int level,
101 struct btrfs_key *key);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400102static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
103 int dump_block_groups);
Josef Bacikfb25e912011-07-26 17:00:46 -0400104static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
105 u64 num_bytes, int reserve);
Josef Bacik5d803662013-02-07 16:06:02 -0500106static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
107 u64 num_bytes);
Eric Sandeen48a3b632013-04-25 20:41:01 +0000108int btrfs_pin_extent(struct btrfs_root *root,
109 u64 bytenr, u64 num_bytes, int reserved);
Josef Bacik6a632092009-02-20 11:00:09 -0500110
Josef Bacik817d52f2009-07-13 21:29:25 -0400111static noinline int
112block_group_cache_done(struct btrfs_block_group_cache *cache)
113{
114 smp_mb();
Josef Bacik36cce922013-08-05 11:15:21 -0400115 return cache->cached == BTRFS_CACHE_FINISHED ||
116 cache->cached == BTRFS_CACHE_ERROR;
Josef Bacik817d52f2009-07-13 21:29:25 -0400117}
118
Josef Bacik0f9dd462008-09-23 13:14:11 -0400119static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
120{
121 return (cache->flags & bits) == bits;
122}
123
David Sterba62a45b62011-04-20 15:52:26 +0200124static void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
Josef Bacik11dfe352009-11-13 20:12:59 +0000125{
126 atomic_inc(&cache->count);
127}
128
129void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
130{
Yan, Zhengf0486c62010-05-16 10:46:25 -0400131 if (atomic_dec_and_test(&cache->count)) {
132 WARN_ON(cache->pinned > 0);
133 WARN_ON(cache->reserved > 0);
Li Zefan34d52cb2011-03-29 13:46:06 +0800134 kfree(cache->free_space_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000135 kfree(cache);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400136 }
Josef Bacik11dfe352009-11-13 20:12:59 +0000137}
138
Josef Bacik0f9dd462008-09-23 13:14:11 -0400139/*
140 * this adds the block group to the fs_info rb tree for the block group
141 * cache
142 */
Christoph Hellwigb2950862008-12-02 09:54:17 -0500143static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400144 struct btrfs_block_group_cache *block_group)
145{
146 struct rb_node **p;
147 struct rb_node *parent = NULL;
148 struct btrfs_block_group_cache *cache;
149
150 spin_lock(&info->block_group_cache_lock);
151 p = &info->block_group_cache_tree.rb_node;
152
153 while (*p) {
154 parent = *p;
155 cache = rb_entry(parent, struct btrfs_block_group_cache,
156 cache_node);
157 if (block_group->key.objectid < cache->key.objectid) {
158 p = &(*p)->rb_left;
159 } else if (block_group->key.objectid > cache->key.objectid) {
160 p = &(*p)->rb_right;
161 } else {
162 spin_unlock(&info->block_group_cache_lock);
163 return -EEXIST;
164 }
165 }
166
167 rb_link_node(&block_group->cache_node, parent, p);
168 rb_insert_color(&block_group->cache_node,
169 &info->block_group_cache_tree);
Liu Boa1897fd2012-12-27 09:01:23 +0000170
171 if (info->first_logical_byte > block_group->key.objectid)
172 info->first_logical_byte = block_group->key.objectid;
173
Josef Bacik0f9dd462008-09-23 13:14:11 -0400174 spin_unlock(&info->block_group_cache_lock);
175
176 return 0;
177}
178
179/*
180 * This will return the block group at or after bytenr if contains is 0, else
181 * it will return the block group that contains the bytenr
182 */
183static struct btrfs_block_group_cache *
184block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
185 int contains)
186{
187 struct btrfs_block_group_cache *cache, *ret = NULL;
188 struct rb_node *n;
189 u64 end, start;
190
191 spin_lock(&info->block_group_cache_lock);
192 n = info->block_group_cache_tree.rb_node;
193
194 while (n) {
195 cache = rb_entry(n, struct btrfs_block_group_cache,
196 cache_node);
197 end = cache->key.objectid + cache->key.offset - 1;
198 start = cache->key.objectid;
199
200 if (bytenr < start) {
201 if (!contains && (!ret || start < ret->key.objectid))
202 ret = cache;
203 n = n->rb_left;
204 } else if (bytenr > start) {
205 if (contains && bytenr <= end) {
206 ret = cache;
207 break;
208 }
209 n = n->rb_right;
210 } else {
211 ret = cache;
212 break;
213 }
214 }
Liu Boa1897fd2012-12-27 09:01:23 +0000215 if (ret) {
Josef Bacik11dfe352009-11-13 20:12:59 +0000216 btrfs_get_block_group(ret);
Liu Boa1897fd2012-12-27 09:01:23 +0000217 if (bytenr == 0 && info->first_logical_byte > ret->key.objectid)
218 info->first_logical_byte = ret->key.objectid;
219 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400220 spin_unlock(&info->block_group_cache_lock);
221
222 return ret;
223}
224
Yan Zheng11833d62009-09-11 16:11:19 -0400225static int add_excluded_extent(struct btrfs_root *root,
226 u64 start, u64 num_bytes)
Josef Bacik817d52f2009-07-13 21:29:25 -0400227{
Yan Zheng11833d62009-09-11 16:11:19 -0400228 u64 end = start + num_bytes - 1;
229 set_extent_bits(&root->fs_info->freed_extents[0],
230 start, end, EXTENT_UPTODATE, GFP_NOFS);
231 set_extent_bits(&root->fs_info->freed_extents[1],
232 start, end, EXTENT_UPTODATE, GFP_NOFS);
233 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400234}
235
Yan Zheng11833d62009-09-11 16:11:19 -0400236static void free_excluded_extents(struct btrfs_root *root,
237 struct btrfs_block_group_cache *cache)
Josef Bacik817d52f2009-07-13 21:29:25 -0400238{
Yan Zheng11833d62009-09-11 16:11:19 -0400239 u64 start, end;
240
241 start = cache->key.objectid;
242 end = start + cache->key.offset - 1;
243
244 clear_extent_bits(&root->fs_info->freed_extents[0],
245 start, end, EXTENT_UPTODATE, GFP_NOFS);
246 clear_extent_bits(&root->fs_info->freed_extents[1],
247 start, end, EXTENT_UPTODATE, GFP_NOFS);
248}
249
250static int exclude_super_stripes(struct btrfs_root *root,
251 struct btrfs_block_group_cache *cache)
252{
Josef Bacik817d52f2009-07-13 21:29:25 -0400253 u64 bytenr;
254 u64 *logical;
255 int stripe_len;
256 int i, nr, ret;
257
Yan, Zheng06b23312009-11-26 09:31:11 +0000258 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
259 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
260 cache->bytes_super += stripe_len;
261 ret = add_excluded_extent(root, cache->key.objectid,
262 stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400263 if (ret)
264 return ret;
Yan, Zheng06b23312009-11-26 09:31:11 +0000265 }
266
Josef Bacik817d52f2009-07-13 21:29:25 -0400267 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
268 bytenr = btrfs_sb_offset(i);
269 ret = btrfs_rmap_block(&root->fs_info->mapping_tree,
270 cache->key.objectid, bytenr,
271 0, &logical, &nr, &stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400272 if (ret)
273 return ret;
Yan Zheng11833d62009-09-11 16:11:19 -0400274
Josef Bacik817d52f2009-07-13 21:29:25 -0400275 while (nr--) {
Josef Bacik51bf5f02013-04-23 12:55:21 -0400276 u64 start, len;
277
278 if (logical[nr] > cache->key.objectid +
279 cache->key.offset)
280 continue;
281
282 if (logical[nr] + stripe_len <= cache->key.objectid)
283 continue;
284
285 start = logical[nr];
286 if (start < cache->key.objectid) {
287 start = cache->key.objectid;
288 len = (logical[nr] + stripe_len) - start;
289 } else {
290 len = min_t(u64, stripe_len,
291 cache->key.objectid +
292 cache->key.offset - start);
293 }
294
295 cache->bytes_super += len;
296 ret = add_excluded_extent(root, start, len);
Josef Bacik835d9742013-03-19 12:13:25 -0400297 if (ret) {
298 kfree(logical);
299 return ret;
300 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400301 }
Yan Zheng11833d62009-09-11 16:11:19 -0400302
Josef Bacik817d52f2009-07-13 21:29:25 -0400303 kfree(logical);
304 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400305 return 0;
306}
307
Yan Zheng11833d62009-09-11 16:11:19 -0400308static struct btrfs_caching_control *
309get_caching_control(struct btrfs_block_group_cache *cache)
310{
311 struct btrfs_caching_control *ctl;
312
313 spin_lock(&cache->lock);
314 if (cache->cached != BTRFS_CACHE_STARTED) {
315 spin_unlock(&cache->lock);
316 return NULL;
317 }
318
Josef Bacikdde5abe2010-09-16 16:17:03 -0400319 /* We're loading it the fast way, so we don't have a caching_ctl. */
320 if (!cache->caching_ctl) {
321 spin_unlock(&cache->lock);
322 return NULL;
323 }
324
Yan Zheng11833d62009-09-11 16:11:19 -0400325 ctl = cache->caching_ctl;
326 atomic_inc(&ctl->count);
327 spin_unlock(&cache->lock);
328 return ctl;
329}
330
331static void put_caching_control(struct btrfs_caching_control *ctl)
332{
333 if (atomic_dec_and_test(&ctl->count))
334 kfree(ctl);
335}
336
Josef Bacik0f9dd462008-09-23 13:14:11 -0400337/*
338 * this is only called by cache_block_group, since we could have freed extents
339 * we need to check the pinned_extents for any extents that can't be used yet
340 * since their free space will be released as soon as the transaction commits.
341 */
Josef Bacik817d52f2009-07-13 21:29:25 -0400342static u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400343 struct btrfs_fs_info *info, u64 start, u64 end)
344{
Josef Bacik817d52f2009-07-13 21:29:25 -0400345 u64 extent_start, extent_end, size, total_added = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400346 int ret;
347
348 while (start < end) {
Yan Zheng11833d62009-09-11 16:11:19 -0400349 ret = find_first_extent_bit(info->pinned_extents, start,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400350 &extent_start, &extent_end,
Josef Bacike6138872012-09-27 17:07:30 -0400351 EXTENT_DIRTY | EXTENT_UPTODATE,
352 NULL);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400353 if (ret)
354 break;
355
Yan, Zheng06b23312009-11-26 09:31:11 +0000356 if (extent_start <= start) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400357 start = extent_end + 1;
358 } else if (extent_start > start && extent_start < end) {
359 size = extent_start - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400360 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500361 ret = btrfs_add_free_space(block_group, start,
362 size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100363 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400364 start = extent_end + 1;
365 } else {
366 break;
367 }
368 }
369
370 if (start < end) {
371 size = end - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400372 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500373 ret = btrfs_add_free_space(block_group, start, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100374 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400375 }
376
Josef Bacik817d52f2009-07-13 21:29:25 -0400377 return total_added;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400378}
379
Josef Bacikbab39bf2011-06-30 14:42:28 -0400380static noinline void caching_thread(struct btrfs_work *work)
Chris Masone37c9e62007-05-09 20:13:14 -0400381{
Josef Bacikbab39bf2011-06-30 14:42:28 -0400382 struct btrfs_block_group_cache *block_group;
383 struct btrfs_fs_info *fs_info;
384 struct btrfs_caching_control *caching_ctl;
385 struct btrfs_root *extent_root;
Chris Masone37c9e62007-05-09 20:13:14 -0400386 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400387 struct extent_buffer *leaf;
Yan Zheng11833d62009-09-11 16:11:19 -0400388 struct btrfs_key key;
Josef Bacik817d52f2009-07-13 21:29:25 -0400389 u64 total_found = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400390 u64 last = 0;
391 u32 nritems;
Josef Bacik36cce922013-08-05 11:15:21 -0400392 int ret = -ENOMEM;
Chris Masonf510cfe2007-10-15 16:14:48 -0400393
Josef Bacikbab39bf2011-06-30 14:42:28 -0400394 caching_ctl = container_of(work, struct btrfs_caching_control, work);
395 block_group = caching_ctl->block_group;
396 fs_info = block_group->fs_info;
397 extent_root = fs_info->extent_root;
398
Chris Masone37c9e62007-05-09 20:13:14 -0400399 path = btrfs_alloc_path();
400 if (!path)
Josef Bacikbab39bf2011-06-30 14:42:28 -0400401 goto out;
Yan7d7d6062007-09-14 16:15:28 -0400402
Josef Bacik817d52f2009-07-13 21:29:25 -0400403 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
Yan Zheng11833d62009-09-11 16:11:19 -0400404
Chris Mason5cd57b22008-06-25 16:01:30 -0400405 /*
Josef Bacik817d52f2009-07-13 21:29:25 -0400406 * We don't want to deadlock with somebody trying to allocate a new
407 * extent for the extent root while also trying to search the extent
408 * root to add free space. So we skip locking and search the commit
409 * root, since its read-only
Chris Mason5cd57b22008-06-25 16:01:30 -0400410 */
411 path->skip_locking = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400412 path->search_commit_root = 1;
Josef Bacik026fd312011-05-13 10:32:11 -0400413 path->reada = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400414
Yan Zhenge4404d62008-12-12 10:03:26 -0500415 key.objectid = last;
Chris Masone37c9e62007-05-09 20:13:14 -0400416 key.offset = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400417 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason013f1b12009-07-31 14:57:55 -0400418again:
Yan Zheng11833d62009-09-11 16:11:19 -0400419 mutex_lock(&caching_ctl->mutex);
Chris Mason013f1b12009-07-31 14:57:55 -0400420 /* need to make sure the commit_root doesn't disappear */
421 down_read(&fs_info->extent_commit_sem);
422
Liu Bo52ee28d2013-07-11 17:51:15 +0800423next:
Yan Zheng11833d62009-09-11 16:11:19 -0400424 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
Chris Masone37c9e62007-05-09 20:13:14 -0400425 if (ret < 0)
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400426 goto err;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500427
Yan Zheng11833d62009-09-11 16:11:19 -0400428 leaf = path->nodes[0];
429 nritems = btrfs_header_nritems(leaf);
430
Chris Masond3977122009-01-05 21:25:51 -0500431 while (1) {
David Sterba7841cb22011-05-31 18:07:27 +0200432 if (btrfs_fs_closing(fs_info) > 1) {
Yan Zhengf25784b2009-07-28 08:41:57 -0400433 last = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400434 break;
Yan Zhengf25784b2009-07-28 08:41:57 -0400435 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400436
Yan Zheng11833d62009-09-11 16:11:19 -0400437 if (path->slots[0] < nritems) {
438 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
439 } else {
440 ret = find_next_key(path, 0, &key);
441 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -0400442 break;
Josef Bacik817d52f2009-07-13 21:29:25 -0400443
Josef Bacik0a3896d2013-04-19 14:37:26 -0400444 if (need_resched()) {
Josef Bacik589d8ad2011-05-11 17:30:53 -0400445 caching_ctl->progress = last;
Chris Masonff5714c2011-05-28 07:00:39 -0400446 btrfs_release_path(path);
Josef Bacik589d8ad2011-05-11 17:30:53 -0400447 up_read(&fs_info->extent_commit_sem);
448 mutex_unlock(&caching_ctl->mutex);
Yan Zheng11833d62009-09-11 16:11:19 -0400449 cond_resched();
Josef Bacik589d8ad2011-05-11 17:30:53 -0400450 goto again;
451 }
Josef Bacik0a3896d2013-04-19 14:37:26 -0400452
453 ret = btrfs_next_leaf(extent_root, path);
454 if (ret < 0)
455 goto err;
456 if (ret)
457 break;
Josef Bacik589d8ad2011-05-11 17:30:53 -0400458 leaf = path->nodes[0];
459 nritems = btrfs_header_nritems(leaf);
460 continue;
Yan Zheng11833d62009-09-11 16:11:19 -0400461 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400462
Liu Bo52ee28d2013-07-11 17:51:15 +0800463 if (key.objectid < last) {
464 key.objectid = last;
465 key.offset = 0;
466 key.type = BTRFS_EXTENT_ITEM_KEY;
467
468 caching_ctl->progress = last;
469 btrfs_release_path(path);
470 goto next;
471 }
472
Yan Zheng11833d62009-09-11 16:11:19 -0400473 if (key.objectid < block_group->key.objectid) {
474 path->slots[0]++;
Josef Bacik817d52f2009-07-13 21:29:25 -0400475 continue;
Chris Masone37c9e62007-05-09 20:13:14 -0400476 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400477
Chris Masone37c9e62007-05-09 20:13:14 -0400478 if (key.objectid >= block_group->key.objectid +
Josef Bacik0f9dd462008-09-23 13:14:11 -0400479 block_group->key.offset)
Yan7d7d6062007-09-14 16:15:28 -0400480 break;
Yan7d7d6062007-09-14 16:15:28 -0400481
Josef Bacik3173a182013-03-07 14:22:04 -0500482 if (key.type == BTRFS_EXTENT_ITEM_KEY ||
483 key.type == BTRFS_METADATA_ITEM_KEY) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400484 total_found += add_new_free_space(block_group,
485 fs_info, last,
486 key.objectid);
Josef Bacik3173a182013-03-07 14:22:04 -0500487 if (key.type == BTRFS_METADATA_ITEM_KEY)
488 last = key.objectid +
489 fs_info->tree_root->leafsize;
490 else
491 last = key.objectid + key.offset;
Josef Bacik817d52f2009-07-13 21:29:25 -0400492
Yan Zheng11833d62009-09-11 16:11:19 -0400493 if (total_found > (1024 * 1024 * 2)) {
494 total_found = 0;
495 wake_up(&caching_ctl->wait);
496 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400497 }
Chris Masone37c9e62007-05-09 20:13:14 -0400498 path->slots[0]++;
499 }
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400500 ret = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400501
502 total_found += add_new_free_space(block_group, fs_info, last,
503 block_group->key.objectid +
504 block_group->key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -0400505 caching_ctl->progress = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400506
507 spin_lock(&block_group->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400508 block_group->caching_ctl = NULL;
Josef Bacik817d52f2009-07-13 21:29:25 -0400509 block_group->cached = BTRFS_CACHE_FINISHED;
510 spin_unlock(&block_group->lock);
511
Chris Mason54aa1f42007-06-22 14:16:25 -0400512err:
Chris Masone37c9e62007-05-09 20:13:14 -0400513 btrfs_free_path(path);
Yan Zheng276e6802009-07-30 09:40:40 -0400514 up_read(&fs_info->extent_commit_sem);
Josef Bacik817d52f2009-07-13 21:29:25 -0400515
Yan Zheng11833d62009-09-11 16:11:19 -0400516 free_excluded_extents(extent_root, block_group);
517
518 mutex_unlock(&caching_ctl->mutex);
Josef Bacikbab39bf2011-06-30 14:42:28 -0400519out:
Josef Bacik36cce922013-08-05 11:15:21 -0400520 if (ret) {
521 spin_lock(&block_group->lock);
522 block_group->caching_ctl = NULL;
523 block_group->cached = BTRFS_CACHE_ERROR;
524 spin_unlock(&block_group->lock);
525 }
Yan Zheng11833d62009-09-11 16:11:19 -0400526 wake_up(&caching_ctl->wait);
527
528 put_caching_control(caching_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000529 btrfs_put_block_group(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -0400530}
531
Josef Bacik9d66e232010-08-25 16:54:15 -0400532static int cache_block_group(struct btrfs_block_group_cache *cache,
Josef Bacik9d66e232010-08-25 16:54:15 -0400533 int load_cache_only)
Josef Bacik817d52f2009-07-13 21:29:25 -0400534{
Josef Bacik291c7d22011-11-14 13:52:14 -0500535 DEFINE_WAIT(wait);
Yan Zheng11833d62009-09-11 16:11:19 -0400536 struct btrfs_fs_info *fs_info = cache->fs_info;
537 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400538 int ret = 0;
539
Josef Bacik291c7d22011-11-14 13:52:14 -0500540 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100541 if (!caching_ctl)
542 return -ENOMEM;
Josef Bacik291c7d22011-11-14 13:52:14 -0500543
544 INIT_LIST_HEAD(&caching_ctl->list);
545 mutex_init(&caching_ctl->mutex);
546 init_waitqueue_head(&caching_ctl->wait);
547 caching_ctl->block_group = cache;
548 caching_ctl->progress = cache->key.objectid;
549 atomic_set(&caching_ctl->count, 1);
550 caching_ctl->work.func = caching_thread;
551
552 spin_lock(&cache->lock);
553 /*
554 * This should be a rare occasion, but this could happen I think in the
555 * case where one thread starts to load the space cache info, and then
556 * some other thread starts a transaction commit which tries to do an
557 * allocation while the other thread is still loading the space cache
558 * info. The previous loop should have kept us from choosing this block
559 * group, but if we've moved to the state where we will wait on caching
560 * block groups we need to first check if we're doing a fast load here,
561 * so we can wait for it to finish, otherwise we could end up allocating
562 * from a block group who's cache gets evicted for one reason or
563 * another.
564 */
565 while (cache->cached == BTRFS_CACHE_FAST) {
566 struct btrfs_caching_control *ctl;
567
568 ctl = cache->caching_ctl;
569 atomic_inc(&ctl->count);
570 prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE);
571 spin_unlock(&cache->lock);
572
573 schedule();
574
575 finish_wait(&ctl->wait, &wait);
576 put_caching_control(ctl);
577 spin_lock(&cache->lock);
578 }
579
580 if (cache->cached != BTRFS_CACHE_NO) {
581 spin_unlock(&cache->lock);
582 kfree(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400583 return 0;
Josef Bacik291c7d22011-11-14 13:52:14 -0500584 }
585 WARN_ON(cache->caching_ctl);
586 cache->caching_ctl = caching_ctl;
587 cache->cached = BTRFS_CACHE_FAST;
588 spin_unlock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400589
Josef Bacikd53ba472012-04-12 16:03:57 -0400590 if (fs_info->mount_opt & BTRFS_MOUNT_SPACE_CACHE) {
Josef Bacik9d66e232010-08-25 16:54:15 -0400591 ret = load_free_space_cache(fs_info, cache);
592
593 spin_lock(&cache->lock);
594 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500595 cache->caching_ctl = NULL;
Josef Bacik9d66e232010-08-25 16:54:15 -0400596 cache->cached = BTRFS_CACHE_FINISHED;
597 cache->last_byte_to_unpin = (u64)-1;
598 } else {
Josef Bacik291c7d22011-11-14 13:52:14 -0500599 if (load_cache_only) {
600 cache->caching_ctl = NULL;
601 cache->cached = BTRFS_CACHE_NO;
602 } else {
603 cache->cached = BTRFS_CACHE_STARTED;
604 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400605 }
606 spin_unlock(&cache->lock);
Josef Bacik291c7d22011-11-14 13:52:14 -0500607 wake_up(&caching_ctl->wait);
Josef Bacik3c148742011-02-02 15:53:47 +0000608 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500609 put_caching_control(caching_ctl);
Josef Bacik3c148742011-02-02 15:53:47 +0000610 free_excluded_extents(fs_info->extent_root, cache);
Josef Bacik9d66e232010-08-25 16:54:15 -0400611 return 0;
Josef Bacik3c148742011-02-02 15:53:47 +0000612 }
Josef Bacik291c7d22011-11-14 13:52:14 -0500613 } else {
614 /*
615 * We are not going to do the fast caching, set cached to the
616 * appropriate value and wakeup any waiters.
617 */
618 spin_lock(&cache->lock);
619 if (load_cache_only) {
620 cache->caching_ctl = NULL;
621 cache->cached = BTRFS_CACHE_NO;
622 } else {
623 cache->cached = BTRFS_CACHE_STARTED;
624 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400625 spin_unlock(&cache->lock);
Josef Bacik291c7d22011-11-14 13:52:14 -0500626 wake_up(&caching_ctl->wait);
627 }
628
629 if (load_cache_only) {
630 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400631 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400632 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400633
Yan Zheng11833d62009-09-11 16:11:19 -0400634 down_write(&fs_info->extent_commit_sem);
Josef Bacik291c7d22011-11-14 13:52:14 -0500635 atomic_inc(&caching_ctl->count);
Yan Zheng11833d62009-09-11 16:11:19 -0400636 list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
637 up_write(&fs_info->extent_commit_sem);
638
Josef Bacik11dfe352009-11-13 20:12:59 +0000639 btrfs_get_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -0400640
Josef Bacikbab39bf2011-06-30 14:42:28 -0400641 btrfs_queue_worker(&fs_info->caching_workers, &caching_ctl->work);
Josef Bacik817d52f2009-07-13 21:29:25 -0400642
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400643 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -0400644}
645
Josef Bacik0f9dd462008-09-23 13:14:11 -0400646/*
647 * return the block group that starts at or after bytenr
648 */
Chris Masond3977122009-01-05 21:25:51 -0500649static struct btrfs_block_group_cache *
650btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
Chris Mason0ef3e662008-05-24 14:04:53 -0400651{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400652 struct btrfs_block_group_cache *cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400653
Josef Bacik0f9dd462008-09-23 13:14:11 -0400654 cache = block_group_cache_tree_search(info, bytenr, 0);
Chris Mason0ef3e662008-05-24 14:04:53 -0400655
Josef Bacik0f9dd462008-09-23 13:14:11 -0400656 return cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400657}
658
Josef Bacik0f9dd462008-09-23 13:14:11 -0400659/*
Sankar P9f556842009-05-14 13:52:22 -0400660 * return the block group that contains the given bytenr
Josef Bacik0f9dd462008-09-23 13:14:11 -0400661 */
Chris Masond3977122009-01-05 21:25:51 -0500662struct btrfs_block_group_cache *btrfs_lookup_block_group(
663 struct btrfs_fs_info *info,
664 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400665{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400666 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -0400667
Josef Bacik0f9dd462008-09-23 13:14:11 -0400668 cache = block_group_cache_tree_search(info, bytenr, 1);
Chris Mason96b51792007-10-15 16:15:19 -0400669
Josef Bacik0f9dd462008-09-23 13:14:11 -0400670 return cache;
Chris Masonbe744172007-05-06 10:15:01 -0400671}
Chris Mason0b86a832008-03-24 15:01:56 -0400672
Josef Bacik0f9dd462008-09-23 13:14:11 -0400673static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
674 u64 flags)
Chris Mason6324fbf2008-03-24 15:01:59 -0400675{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400676 struct list_head *head = &info->space_info;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400677 struct btrfs_space_info *found;
Chris Mason4184ea72009-03-10 12:39:20 -0400678
Ilya Dryomov52ba6922012-01-16 22:04:47 +0200679 flags &= BTRFS_BLOCK_GROUP_TYPE_MASK;
Yan, 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) {
2133 btrfs_release_path(path);
2134 metadata = 0;
2135
2136 key.offset = node->num_bytes;
2137 key.type = BTRFS_EXTENT_ITEM_KEY;
2138 goto again;
2139 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002140 err = -EIO;
2141 goto out;
2142 }
2143
2144 leaf = path->nodes[0];
2145 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2146#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2147 if (item_size < sizeof(*ei)) {
2148 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
2149 path, (u64)-1, 0);
2150 if (ret < 0) {
2151 err = ret;
2152 goto out;
2153 }
2154 leaf = path->nodes[0];
2155 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2156 }
2157#endif
2158 BUG_ON(item_size < sizeof(*ei));
2159 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2160 __run_delayed_extent_op(extent_op, leaf, ei);
2161
2162 btrfs_mark_buffer_dirty(leaf);
2163out:
2164 btrfs_free_path(path);
2165 return err;
2166}
2167
2168static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
2169 struct btrfs_root *root,
2170 struct btrfs_delayed_ref_node *node,
2171 struct btrfs_delayed_extent_op *extent_op,
2172 int insert_reserved)
2173{
2174 int ret = 0;
2175 struct btrfs_delayed_tree_ref *ref;
2176 struct btrfs_key ins;
2177 u64 parent = 0;
2178 u64 ref_root = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002179 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
2180 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002181
2182 ref = btrfs_delayed_node_to_tree_ref(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002183 trace_run_delayed_tree_ref(node, ref, node->action);
2184
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002185 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2186 parent = ref->parent;
2187 else
2188 ref_root = ref->root;
2189
Josef Bacik3173a182013-03-07 14:22:04 -05002190 ins.objectid = node->bytenr;
2191 if (skinny_metadata) {
2192 ins.offset = ref->level;
2193 ins.type = BTRFS_METADATA_ITEM_KEY;
2194 } else {
2195 ins.offset = node->num_bytes;
2196 ins.type = BTRFS_EXTENT_ITEM_KEY;
2197 }
2198
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002199 BUG_ON(node->ref_mod != 1);
2200 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002201 BUG_ON(!extent_op || !extent_op->update_flags);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002202 ret = alloc_reserved_tree_block(trans, root,
2203 parent, ref_root,
2204 extent_op->flags_to_set,
2205 &extent_op->key,
2206 ref->level, &ins);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002207 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
2208 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
2209 node->num_bytes, parent, ref_root,
2210 ref->level, 0, 1, extent_op);
2211 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
2212 ret = __btrfs_free_extent(trans, root, node->bytenr,
2213 node->num_bytes, parent, ref_root,
2214 ref->level, 0, 1, extent_op);
2215 } else {
2216 BUG();
2217 }
2218 return ret;
2219}
2220
Chris Mason56bec292009-03-13 10:10:06 -04002221/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002222static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
2223 struct btrfs_root *root,
2224 struct btrfs_delayed_ref_node *node,
2225 struct btrfs_delayed_extent_op *extent_op,
2226 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002227{
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002228 int ret = 0;
2229
Josef Bacik857cc2f2013-10-07 15:21:08 -04002230 if (trans->aborted) {
2231 if (insert_reserved)
2232 btrfs_pin_extent(root, node->bytenr,
2233 node->num_bytes, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002234 return 0;
Josef Bacik857cc2f2013-10-07 15:21:08 -04002235 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002236
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002237 if (btrfs_delayed_ref_is_head(node)) {
Chris Mason56bec292009-03-13 10:10:06 -04002238 struct btrfs_delayed_ref_head *head;
2239 /*
2240 * we've hit the end of the chain and we were supposed
2241 * to insert this extent into the tree. But, it got
2242 * deleted before we ever needed to insert it, so all
2243 * we have to do is clean up the accounting
2244 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002245 BUG_ON(extent_op);
2246 head = btrfs_delayed_node_to_head(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002247 trace_run_delayed_ref_head(node, head, node->action);
2248
Chris Mason56bec292009-03-13 10:10:06 -04002249 if (insert_reserved) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04002250 btrfs_pin_extent(root, node->bytenr,
2251 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002252 if (head->is_data) {
2253 ret = btrfs_del_csums(trans, root,
2254 node->bytenr,
2255 node->num_bytes);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002256 }
Chris Mason56bec292009-03-13 10:10:06 -04002257 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002258 return ret;
Chris Mason56bec292009-03-13 10:10:06 -04002259 }
Josef Bacikeb099672009-02-12 09:27:38 -05002260
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002261 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2262 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2263 ret = run_delayed_tree_ref(trans, root, node, extent_op,
2264 insert_reserved);
2265 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2266 node->type == BTRFS_SHARED_DATA_REF_KEY)
2267 ret = run_delayed_data_ref(trans, root, node, extent_op,
2268 insert_reserved);
2269 else
2270 BUG();
2271 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002272}
2273
Chris Mason56bec292009-03-13 10:10:06 -04002274static noinline struct btrfs_delayed_ref_node *
2275select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002276{
Chris Mason56bec292009-03-13 10:10:06 -04002277 struct rb_node *node;
2278 struct btrfs_delayed_ref_node *ref;
2279 int action = BTRFS_ADD_DELAYED_REF;
2280again:
2281 /*
2282 * select delayed ref of type BTRFS_ADD_DELAYED_REF first.
2283 * this prevents ref count from going down to zero when
2284 * there still are pending delayed ref.
2285 */
2286 node = rb_prev(&head->node.rb_node);
2287 while (1) {
2288 if (!node)
2289 break;
2290 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2291 rb_node);
2292 if (ref->bytenr != head->node.bytenr)
2293 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002294 if (ref->action == action)
Chris Mason56bec292009-03-13 10:10:06 -04002295 return ref;
2296 node = rb_prev(node);
Chris Mason5f39d392007-10-15 16:14:19 -04002297 }
Chris Mason56bec292009-03-13 10:10:06 -04002298 if (action == BTRFS_ADD_DELAYED_REF) {
2299 action = BTRFS_DROP_DELAYED_REF;
2300 goto again;
2301 }
2302 return NULL;
2303}
2304
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002305/*
2306 * Returns 0 on success or if called with an already aborted transaction.
2307 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2308 */
Chris Masonc3e69d52009-03-13 10:17:05 -04002309static noinline int run_clustered_refs(struct btrfs_trans_handle *trans,
2310 struct btrfs_root *root,
2311 struct list_head *cluster)
Chris Mason56bec292009-03-13 10:10:06 -04002312{
Chris Mason56bec292009-03-13 10:10:06 -04002313 struct btrfs_delayed_ref_root *delayed_refs;
2314 struct btrfs_delayed_ref_node *ref;
2315 struct btrfs_delayed_ref_head *locked_ref = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002316 struct btrfs_delayed_extent_op *extent_op;
Jan Schmidt097b8a72012-06-21 11:08:04 +02002317 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason56bec292009-03-13 10:10:06 -04002318 int ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04002319 int count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002320 int must_insert_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002321
2322 delayed_refs = &trans->transaction->delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002323 while (1) {
2324 if (!locked_ref) {
Chris Masonc3e69d52009-03-13 10:17:05 -04002325 /* pick a new head ref from the cluster list */
2326 if (list_empty(cluster))
Chris Mason56bec292009-03-13 10:10:06 -04002327 break;
Chris Mason56bec292009-03-13 10:10:06 -04002328
Chris Masonc3e69d52009-03-13 10:17:05 -04002329 locked_ref = list_entry(cluster->next,
2330 struct btrfs_delayed_ref_head, cluster);
2331
2332 /* grab the lock that says we are going to process
2333 * all the refs for this head */
2334 ret = btrfs_delayed_ref_lock(trans, locked_ref);
2335
2336 /*
2337 * we may have dropped the spin lock to get the head
2338 * mutex lock, and that might have given someone else
2339 * time to free the head. If that's true, it has been
2340 * removed from our list and we can move on.
2341 */
2342 if (ret == -EAGAIN) {
2343 locked_ref = NULL;
2344 count++;
2345 continue;
Chris Mason56bec292009-03-13 10:10:06 -04002346 }
2347 }
2348
2349 /*
Josef Bacikae1e2062012-08-07 16:00:32 -04002350 * We need to try and merge add/drops of the same ref since we
2351 * can run into issues with relocate dropping the implicit ref
2352 * and then it being added back again before the drop can
2353 * finish. If we merged anything we need to re-loop so we can
2354 * get a good ref.
2355 */
2356 btrfs_merge_delayed_refs(trans, fs_info, delayed_refs,
2357 locked_ref);
2358
2359 /*
Arne Jansend1270cd2011-09-13 15:16:43 +02002360 * locked_ref is the head node, so we have to go one
2361 * node back for any delayed ref updates
2362 */
2363 ref = select_delayed_ref(locked_ref);
2364
2365 if (ref && ref->seq &&
Jan Schmidt097b8a72012-06-21 11:08:04 +02002366 btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) {
Arne Jansend1270cd2011-09-13 15:16:43 +02002367 /*
2368 * there are still refs with lower seq numbers in the
2369 * process of being added. Don't run this ref yet.
2370 */
2371 list_del_init(&locked_ref->cluster);
Miao Xie093486c2012-12-19 08:10:10 +00002372 btrfs_delayed_ref_unlock(locked_ref);
Arne Jansend1270cd2011-09-13 15:16:43 +02002373 locked_ref = NULL;
2374 delayed_refs->num_heads_ready++;
2375 spin_unlock(&delayed_refs->lock);
2376 cond_resched();
2377 spin_lock(&delayed_refs->lock);
2378 continue;
2379 }
2380
2381 /*
Chris Mason56bec292009-03-13 10:10:06 -04002382 * record the must insert reserved flag before we
2383 * drop the spin lock.
2384 */
2385 must_insert_reserved = locked_ref->must_insert_reserved;
2386 locked_ref->must_insert_reserved = 0;
2387
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002388 extent_op = locked_ref->extent_op;
2389 locked_ref->extent_op = NULL;
2390
Chris Mason56bec292009-03-13 10:10:06 -04002391 if (!ref) {
2392 /* All delayed refs have been processed, Go ahead
2393 * and send the head node to run_one_delayed_ref,
2394 * so that any accounting fixes can happen
2395 */
2396 ref = &locked_ref->node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002397
2398 if (extent_op && must_insert_reserved) {
Miao Xie78a61842012-11-21 02:21:28 +00002399 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002400 extent_op = NULL;
2401 }
2402
2403 if (extent_op) {
2404 spin_unlock(&delayed_refs->lock);
2405
2406 ret = run_delayed_extent_op(trans, root,
2407 ref, extent_op);
Miao Xie78a61842012-11-21 02:21:28 +00002408 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002409
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002410 if (ret) {
Josef Bacik857cc2f2013-10-07 15:21:08 -04002411 /*
2412 * Need to reset must_insert_reserved if
2413 * there was an error so the abort stuff
2414 * can cleanup the reserved space
2415 * properly.
2416 */
2417 if (must_insert_reserved)
2418 locked_ref->must_insert_reserved = 1;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002419 btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret);
Dan Carpenter253beeb2012-04-18 09:59:03 +03002420 spin_lock(&delayed_refs->lock);
Miao Xie093486c2012-12-19 08:10:10 +00002421 btrfs_delayed_ref_unlock(locked_ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002422 return ret;
2423 }
2424
Chris Mason203bf282012-01-06 15:23:57 -05002425 goto next;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002426 }
Chris Mason56bec292009-03-13 10:10:06 -04002427 }
2428
2429 ref->in_tree = 0;
2430 rb_erase(&ref->rb_node, &delayed_refs->root);
2431 delayed_refs->num_entries--;
Miao Xie093486c2012-12-19 08:10:10 +00002432 if (!btrfs_delayed_ref_is_head(ref)) {
Arne Jansen22cd2e72012-08-09 00:16:53 -06002433 /*
2434 * when we play the delayed ref, also correct the
2435 * ref_mod on head
2436 */
2437 switch (ref->action) {
2438 case BTRFS_ADD_DELAYED_REF:
2439 case BTRFS_ADD_DELAYED_EXTENT:
2440 locked_ref->node.ref_mod -= ref->ref_mod;
2441 break;
2442 case BTRFS_DROP_DELAYED_REF:
2443 locked_ref->node.ref_mod += ref->ref_mod;
2444 break;
2445 default:
2446 WARN_ON(1);
2447 }
Josef Bacikb8d0c692013-08-22 17:03:29 -04002448 } else {
2449 list_del_init(&locked_ref->cluster);
Arne Jansen22cd2e72012-08-09 00:16:53 -06002450 }
Chris Mason56bec292009-03-13 10:10:06 -04002451 spin_unlock(&delayed_refs->lock);
2452
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002453 ret = run_one_delayed_ref(trans, root, ref, extent_op,
Chris Mason56bec292009-03-13 10:10:06 -04002454 must_insert_reserved);
Chris Mason56bec292009-03-13 10:10:06 -04002455
Miao Xie78a61842012-11-21 02:21:28 +00002456 btrfs_free_delayed_extent_op(extent_op);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002457 if (ret) {
Miao Xie093486c2012-12-19 08:10:10 +00002458 btrfs_delayed_ref_unlock(locked_ref);
2459 btrfs_put_delayed_ref(ref);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002460 btrfs_debug(fs_info, "run_one_delayed_ref returned %d", ret);
Dan Carpenter253beeb2012-04-18 09:59:03 +03002461 spin_lock(&delayed_refs->lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002462 return ret;
2463 }
2464
Miao Xie093486c2012-12-19 08:10:10 +00002465 /*
2466 * If this node is a head, that means all the refs in this head
2467 * have been dealt with, and we will pick the next head to deal
2468 * with, so we must unlock the head and drop it from the cluster
2469 * list before we release it.
2470 */
2471 if (btrfs_delayed_ref_is_head(ref)) {
Miao Xie093486c2012-12-19 08:10:10 +00002472 btrfs_delayed_ref_unlock(locked_ref);
2473 locked_ref = NULL;
2474 }
2475 btrfs_put_delayed_ref(ref);
2476 count++;
Chris Mason203bf282012-01-06 15:23:57 -05002477next:
Chris Mason1887be62009-03-13 10:11:24 -04002478 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002479 spin_lock(&delayed_refs->lock);
2480 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002481 return count;
2482}
2483
Arne Jansen709c0482011-09-12 12:22:57 +02002484#ifdef SCRAMBLE_DELAYED_REFS
2485/*
2486 * Normally delayed refs get processed in ascending bytenr order. This
2487 * correlates in most cases to the order added. To expose dependencies on this
2488 * order, we start to process the tree in the middle instead of the beginning
2489 */
2490static u64 find_middle(struct rb_root *root)
2491{
2492 struct rb_node *n = root->rb_node;
2493 struct btrfs_delayed_ref_node *entry;
2494 int alt = 1;
2495 u64 middle;
2496 u64 first = 0, last = 0;
2497
2498 n = rb_first(root);
2499 if (n) {
2500 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2501 first = entry->bytenr;
2502 }
2503 n = rb_last(root);
2504 if (n) {
2505 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2506 last = entry->bytenr;
2507 }
2508 n = root->rb_node;
2509
2510 while (n) {
2511 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2512 WARN_ON(!entry->in_tree);
2513
2514 middle = entry->bytenr;
2515
2516 if (alt)
2517 n = n->rb_left;
2518 else
2519 n = n->rb_right;
2520
2521 alt = 1 - alt;
2522 }
2523 return middle;
2524}
2525#endif
2526
Arne Jansenbed92ea2012-06-28 18:03:02 +02002527int btrfs_delayed_refs_qgroup_accounting(struct btrfs_trans_handle *trans,
2528 struct btrfs_fs_info *fs_info)
2529{
2530 struct qgroup_update *qgroup_update;
2531 int ret = 0;
2532
2533 if (list_empty(&trans->qgroup_ref_list) !=
2534 !trans->delayed_ref_elem.seq) {
2535 /* list without seq or seq without list */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002536 btrfs_err(fs_info,
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +00002537 "qgroup accounting update error, list is%s empty, seq is %#x.%x",
Arne Jansenbed92ea2012-06-28 18:03:02 +02002538 list_empty(&trans->qgroup_ref_list) ? "" : " not",
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +00002539 (u32)(trans->delayed_ref_elem.seq >> 32),
2540 (u32)trans->delayed_ref_elem.seq);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002541 BUG();
2542 }
2543
2544 if (!trans->delayed_ref_elem.seq)
2545 return 0;
2546
2547 while (!list_empty(&trans->qgroup_ref_list)) {
2548 qgroup_update = list_first_entry(&trans->qgroup_ref_list,
2549 struct qgroup_update, list);
2550 list_del(&qgroup_update->list);
2551 if (!ret)
2552 ret = btrfs_qgroup_account_ref(
2553 trans, fs_info, qgroup_update->node,
2554 qgroup_update->extent_op);
2555 kfree(qgroup_update);
2556 }
2557
2558 btrfs_put_tree_mod_seq(fs_info, &trans->delayed_ref_elem);
2559
2560 return ret;
2561}
2562
Chris Masonbb721702013-01-29 18:44:12 -05002563static int refs_newer(struct btrfs_delayed_ref_root *delayed_refs, int seq,
2564 int count)
2565{
2566 int val = atomic_read(&delayed_refs->ref_seq);
2567
2568 if (val < seq || val >= seq + count)
2569 return 1;
2570 return 0;
2571}
2572
Josef Bacik1be41b72013-06-12 13:56:06 -04002573static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads)
2574{
2575 u64 num_bytes;
2576
2577 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2578 sizeof(struct btrfs_extent_inline_ref));
2579 if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2580 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2581
2582 /*
2583 * We don't ever fill up leaves all the way so multiply by 2 just to be
2584 * closer to what we're really going to want to ouse.
2585 */
2586 return div64_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root));
2587}
2588
2589int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans,
2590 struct btrfs_root *root)
2591{
2592 struct btrfs_block_rsv *global_rsv;
2593 u64 num_heads = trans->transaction->delayed_refs.num_heads_ready;
2594 u64 num_bytes;
2595 int ret = 0;
2596
2597 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
2598 num_heads = heads_to_leaves(root, num_heads);
2599 if (num_heads > 1)
2600 num_bytes += (num_heads - 1) * root->leafsize;
2601 num_bytes <<= 1;
2602 global_rsv = &root->fs_info->global_block_rsv;
2603
2604 /*
2605 * If we can't allocate any more chunks lets make sure we have _lots_ of
2606 * wiggle room since running delayed refs can create more delayed refs.
2607 */
2608 if (global_rsv->space_info->full)
2609 num_bytes <<= 1;
2610
2611 spin_lock(&global_rsv->lock);
2612 if (global_rsv->reserved <= num_bytes)
2613 ret = 1;
2614 spin_unlock(&global_rsv->lock);
2615 return ret;
2616}
2617
Chris Masonc3e69d52009-03-13 10:17:05 -04002618/*
2619 * this starts processing the delayed reference count updates and
2620 * extent insertions we have queued up so far. count can be
2621 * 0, which means to process everything in the tree at the start
2622 * of the run (but not newly added entries), or it can be some target
2623 * number you'd like to process.
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002624 *
2625 * Returns 0 on success or if called with an aborted transaction
2626 * Returns <0 on error and aborts the transaction
Chris Masonc3e69d52009-03-13 10:17:05 -04002627 */
2628int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2629 struct btrfs_root *root, unsigned long count)
2630{
2631 struct rb_node *node;
2632 struct btrfs_delayed_ref_root *delayed_refs;
2633 struct btrfs_delayed_ref_node *ref;
2634 struct list_head cluster;
2635 int ret;
Jan Schmidta1686502011-12-12 16:10:07 +01002636 u64 delayed_start;
Chris Masonc3e69d52009-03-13 10:17:05 -04002637 int run_all = count == (unsigned long)-1;
2638 int run_most = 0;
Arne Jansen1fa11e22012-08-06 14:18:51 -06002639 int loops;
Chris Masonc3e69d52009-03-13 10:17:05 -04002640
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002641 /* We'll clean this up in btrfs_cleanup_transaction */
2642 if (trans->aborted)
2643 return 0;
2644
Chris Masonc3e69d52009-03-13 10:17:05 -04002645 if (root == root->fs_info->extent_root)
2646 root = root->fs_info->tree_root;
2647
Jan Schmidtedf39272012-06-28 18:04:55 +02002648 btrfs_delayed_refs_qgroup_accounting(trans, root->fs_info);
2649
Chris Masonc3e69d52009-03-13 10:17:05 -04002650 delayed_refs = &trans->transaction->delayed_refs;
2651 INIT_LIST_HEAD(&cluster);
Chris Masonbb721702013-01-29 18:44:12 -05002652 if (count == 0) {
2653 count = delayed_refs->num_entries * 2;
2654 run_most = 1;
2655 }
2656
2657 if (!run_all && !run_most) {
2658 int old;
2659 int seq = atomic_read(&delayed_refs->ref_seq);
2660
2661progress:
2662 old = atomic_cmpxchg(&delayed_refs->procs_running_refs, 0, 1);
2663 if (old) {
2664 DEFINE_WAIT(__wait);
Josef Bacik1be41b72013-06-12 13:56:06 -04002665 if (delayed_refs->flushing ||
2666 !btrfs_should_throttle_delayed_refs(trans, root))
Chris Masonbb721702013-01-29 18:44:12 -05002667 return 0;
2668
2669 prepare_to_wait(&delayed_refs->wait, &__wait,
2670 TASK_UNINTERRUPTIBLE);
2671
2672 old = atomic_cmpxchg(&delayed_refs->procs_running_refs, 0, 1);
2673 if (old) {
2674 schedule();
2675 finish_wait(&delayed_refs->wait, &__wait);
2676
2677 if (!refs_newer(delayed_refs, seq, 256))
2678 goto progress;
2679 else
2680 return 0;
2681 } else {
2682 finish_wait(&delayed_refs->wait, &__wait);
2683 goto again;
2684 }
2685 }
2686
2687 } else {
2688 atomic_inc(&delayed_refs->procs_running_refs);
2689 }
2690
Chris Masonc3e69d52009-03-13 10:17:05 -04002691again:
Arne Jansen1fa11e22012-08-06 14:18:51 -06002692 loops = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -04002693 spin_lock(&delayed_refs->lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +02002694
Arne Jansen709c0482011-09-12 12:22:57 +02002695#ifdef SCRAMBLE_DELAYED_REFS
2696 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
2697#endif
2698
Chris Masonc3e69d52009-03-13 10:17:05 -04002699 while (1) {
2700 if (!(run_all || run_most) &&
Josef Bacik1be41b72013-06-12 13:56:06 -04002701 !btrfs_should_throttle_delayed_refs(trans, root))
Chris Masonc3e69d52009-03-13 10:17:05 -04002702 break;
2703
2704 /*
2705 * go find something we can process in the rbtree. We start at
2706 * the beginning of the tree, and then build a cluster
2707 * of refs to process starting at the first one we are able to
2708 * lock
2709 */
Jan Schmidta1686502011-12-12 16:10:07 +01002710 delayed_start = delayed_refs->run_delayed_start;
Chris Masonc3e69d52009-03-13 10:17:05 -04002711 ret = btrfs_find_ref_cluster(trans, &cluster,
2712 delayed_refs->run_delayed_start);
2713 if (ret)
2714 break;
2715
2716 ret = run_clustered_refs(trans, root, &cluster);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002717 if (ret < 0) {
Miao Xie093486c2012-12-19 08:10:10 +00002718 btrfs_release_ref_cluster(&cluster);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002719 spin_unlock(&delayed_refs->lock);
2720 btrfs_abort_transaction(trans, root, ret);
Chris Masonbb721702013-01-29 18:44:12 -05002721 atomic_dec(&delayed_refs->procs_running_refs);
Josef Bacikf971fe22013-06-10 11:52:32 -04002722 wake_up(&delayed_refs->wait);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002723 return ret;
2724 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002725
Chris Masonbb721702013-01-29 18:44:12 -05002726 atomic_add(ret, &delayed_refs->ref_seq);
2727
Chris Masonc3e69d52009-03-13 10:17:05 -04002728 count -= min_t(unsigned long, ret, count);
2729
2730 if (count == 0)
2731 break;
Jan Schmidta1686502011-12-12 16:10:07 +01002732
Arne Jansen1fa11e22012-08-06 14:18:51 -06002733 if (delayed_start >= delayed_refs->run_delayed_start) {
2734 if (loops == 0) {
2735 /*
2736 * btrfs_find_ref_cluster looped. let's do one
2737 * more cycle. if we don't run any delayed ref
2738 * during that cycle (because we can't because
2739 * all of them are blocked), bail out.
2740 */
2741 loops = 1;
2742 } else {
2743 /*
2744 * no runnable refs left, stop trying
2745 */
2746 BUG_ON(run_all);
2747 break;
2748 }
2749 }
2750 if (ret) {
Jan Schmidta1686502011-12-12 16:10:07 +01002751 /* refs were run, let's reset staleness detection */
Arne Jansen1fa11e22012-08-06 14:18:51 -06002752 loops = 0;
Jan Schmidta1686502011-12-12 16:10:07 +01002753 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002754 }
2755
Chris Mason56bec292009-03-13 10:10:06 -04002756 if (run_all) {
Josef Bacikea658ba2012-09-11 16:57:25 -04002757 if (!list_empty(&trans->new_bgs)) {
2758 spin_unlock(&delayed_refs->lock);
2759 btrfs_create_pending_block_groups(trans, root);
2760 spin_lock(&delayed_refs->lock);
2761 }
2762
Chris Mason56bec292009-03-13 10:10:06 -04002763 node = rb_first(&delayed_refs->root);
Chris Masonc3e69d52009-03-13 10:17:05 -04002764 if (!node)
Chris Mason56bec292009-03-13 10:10:06 -04002765 goto out;
Chris Masonc3e69d52009-03-13 10:17:05 -04002766 count = (unsigned long)-1;
Chris Mason56bec292009-03-13 10:10:06 -04002767
2768 while (node) {
2769 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2770 rb_node);
2771 if (btrfs_delayed_ref_is_head(ref)) {
2772 struct btrfs_delayed_ref_head *head;
2773
2774 head = btrfs_delayed_node_to_head(ref);
2775 atomic_inc(&ref->refs);
2776
2777 spin_unlock(&delayed_refs->lock);
David Sterba8cc33e52011-05-02 15:29:25 +02002778 /*
2779 * Mutex was contended, block until it's
2780 * released and try again
2781 */
Chris Mason56bec292009-03-13 10:10:06 -04002782 mutex_lock(&head->mutex);
2783 mutex_unlock(&head->mutex);
2784
2785 btrfs_put_delayed_ref(ref);
Chris Mason1887be62009-03-13 10:11:24 -04002786 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002787 goto again;
2788 }
2789 node = rb_next(node);
2790 }
2791 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002792 schedule_timeout(1);
2793 goto again;
2794 }
Chris Mason54aa1f42007-06-22 14:16:25 -04002795out:
Chris Masonbb721702013-01-29 18:44:12 -05002796 atomic_dec(&delayed_refs->procs_running_refs);
2797 smp_mb();
2798 if (waitqueue_active(&delayed_refs->wait))
2799 wake_up(&delayed_refs->wait);
2800
Chris Masonc3e69d52009-03-13 10:17:05 -04002801 spin_unlock(&delayed_refs->lock);
Jan Schmidtedf39272012-06-28 18:04:55 +02002802 assert_qgroups_uptodate(trans);
Chris Masona28ec192007-03-06 20:08:01 -05002803 return 0;
2804}
2805
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002806int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
2807 struct btrfs_root *root,
2808 u64 bytenr, u64 num_bytes, u64 flags,
Josef Bacikb1c79e02013-05-09 13:49:30 -04002809 int level, int is_data)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002810{
2811 struct btrfs_delayed_extent_op *extent_op;
2812 int ret;
2813
Miao Xie78a61842012-11-21 02:21:28 +00002814 extent_op = btrfs_alloc_delayed_extent_op();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002815 if (!extent_op)
2816 return -ENOMEM;
2817
2818 extent_op->flags_to_set = flags;
2819 extent_op->update_flags = 1;
2820 extent_op->update_key = 0;
2821 extent_op->is_data = is_data ? 1 : 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002822 extent_op->level = level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002823
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002824 ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr,
2825 num_bytes, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002826 if (ret)
Miao Xie78a61842012-11-21 02:21:28 +00002827 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002828 return ret;
2829}
2830
2831static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
2832 struct btrfs_root *root,
2833 struct btrfs_path *path,
2834 u64 objectid, u64 offset, u64 bytenr)
2835{
2836 struct btrfs_delayed_ref_head *head;
2837 struct btrfs_delayed_ref_node *ref;
2838 struct btrfs_delayed_data_ref *data_ref;
2839 struct btrfs_delayed_ref_root *delayed_refs;
2840 struct rb_node *node;
2841 int ret = 0;
2842
2843 ret = -ENOENT;
2844 delayed_refs = &trans->transaction->delayed_refs;
2845 spin_lock(&delayed_refs->lock);
2846 head = btrfs_find_delayed_ref_head(trans, bytenr);
2847 if (!head)
2848 goto out;
2849
2850 if (!mutex_trylock(&head->mutex)) {
2851 atomic_inc(&head->node.refs);
2852 spin_unlock(&delayed_refs->lock);
2853
David Sterbab3b4aa72011-04-21 01:20:15 +02002854 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002855
David Sterba8cc33e52011-05-02 15:29:25 +02002856 /*
2857 * Mutex was contended, block until it's released and let
2858 * caller try again
2859 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002860 mutex_lock(&head->mutex);
2861 mutex_unlock(&head->mutex);
2862 btrfs_put_delayed_ref(&head->node);
2863 return -EAGAIN;
2864 }
2865
2866 node = rb_prev(&head->node.rb_node);
2867 if (!node)
2868 goto out_unlock;
2869
2870 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
2871
2872 if (ref->bytenr != bytenr)
2873 goto out_unlock;
2874
2875 ret = 1;
2876 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY)
2877 goto out_unlock;
2878
2879 data_ref = btrfs_delayed_node_to_data_ref(ref);
2880
2881 node = rb_prev(node);
2882 if (node) {
Liu Bodf57dbe2012-07-23 05:50:03 -06002883 int seq = ref->seq;
2884
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002885 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
Liu Bodf57dbe2012-07-23 05:50:03 -06002886 if (ref->bytenr == bytenr && ref->seq == seq)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002887 goto out_unlock;
2888 }
2889
2890 if (data_ref->root != root->root_key.objectid ||
2891 data_ref->objectid != objectid || data_ref->offset != offset)
2892 goto out_unlock;
2893
2894 ret = 0;
2895out_unlock:
2896 mutex_unlock(&head->mutex);
2897out:
2898 spin_unlock(&delayed_refs->lock);
2899 return ret;
2900}
2901
2902static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
2903 struct btrfs_root *root,
2904 struct btrfs_path *path,
2905 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05002906{
2907 struct btrfs_root *extent_root = root->fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04002908 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002909 struct btrfs_extent_data_ref *ref;
2910 struct btrfs_extent_inline_ref *iref;
2911 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05002912 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002913 u32 item_size;
Yan Zhengf321e492008-07-30 09:26:11 -04002914 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05002915
Chris Masonbe20aa92007-12-17 20:14:01 -05002916 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04002917 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04002918 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05002919
Chris Masonbe20aa92007-12-17 20:14:01 -05002920 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2921 if (ret < 0)
2922 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002923 BUG_ON(ret == 0); /* Corruption */
Yan Zheng80ff3852008-10-30 14:20:02 -04002924
2925 ret = -ENOENT;
2926 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04002927 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002928
Zheng Yan31840ae2008-09-23 13:14:14 -04002929 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04002930 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002931 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05002932
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002933 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05002934 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002935
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002936 ret = 1;
2937 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2938#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2939 if (item_size < sizeof(*ei)) {
2940 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
2941 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002942 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002943#endif
2944 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2945
2946 if (item_size != sizeof(*ei) +
2947 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
2948 goto out;
2949
2950 if (btrfs_extent_generation(leaf, ei) <=
2951 btrfs_root_last_snapshot(&root->root_item))
2952 goto out;
2953
2954 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
2955 if (btrfs_extent_inline_ref_type(leaf, iref) !=
2956 BTRFS_EXTENT_DATA_REF_KEY)
2957 goto out;
2958
2959 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
2960 if (btrfs_extent_refs(leaf, ei) !=
2961 btrfs_extent_data_ref_count(leaf, ref) ||
2962 btrfs_extent_data_ref_root(leaf, ref) !=
2963 root->root_key.objectid ||
2964 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
2965 btrfs_extent_data_ref_offset(leaf, ref) != offset)
2966 goto out;
2967
Yan Zhengf321e492008-07-30 09:26:11 -04002968 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05002969out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002970 return ret;
2971}
2972
2973int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
2974 struct btrfs_root *root,
2975 u64 objectid, u64 offset, u64 bytenr)
2976{
2977 struct btrfs_path *path;
2978 int ret;
2979 int ret2;
2980
2981 path = btrfs_alloc_path();
2982 if (!path)
2983 return -ENOENT;
2984
2985 do {
2986 ret = check_committed_ref(trans, root, path, objectid,
2987 offset, bytenr);
2988 if (ret && ret != -ENOENT)
2989 goto out;
2990
2991 ret2 = check_delayed_ref(trans, root, path, objectid,
2992 offset, bytenr);
2993 } while (ret2 == -EAGAIN);
2994
2995 if (ret2 && ret2 != -ENOENT) {
2996 ret = ret2;
2997 goto out;
2998 }
2999
3000 if (ret != -ENOENT || ret2 != -ENOENT)
3001 ret = 0;
3002out:
Yan Zhengf321e492008-07-30 09:26:11 -04003003 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003004 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3005 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04003006 return ret;
3007}
3008
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003009static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05003010 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003011 struct extent_buffer *buf,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003012 int full_backref, int inc, int for_cow)
Zheng Yan31840ae2008-09-23 13:14:14 -04003013{
3014 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003015 u64 num_bytes;
3016 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003017 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04003018 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04003019 struct btrfs_key key;
3020 struct btrfs_file_extent_item *fi;
3021 int i;
3022 int level;
3023 int ret = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04003024 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003025 u64, u64, u64, u64, u64, u64, int);
Zheng Yan31840ae2008-09-23 13:14:14 -04003026
3027 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04003028 nritems = btrfs_header_nritems(buf);
3029 level = btrfs_header_level(buf);
3030
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003031 if (!root->ref_cows && level == 0)
3032 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05003033
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003034 if (inc)
3035 process_func = btrfs_inc_extent_ref;
3036 else
3037 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003038
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003039 if (full_backref)
3040 parent = buf->start;
3041 else
3042 parent = 0;
3043
Zheng Yan31840ae2008-09-23 13:14:14 -04003044 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04003045 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003046 btrfs_item_key_to_cpu(buf, &key, i);
3047 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04003048 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003049 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04003050 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003051 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04003052 BTRFS_FILE_EXTENT_INLINE)
3053 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003054 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3055 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04003056 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003057
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003058 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3059 key.offset -= btrfs_file_extent_offset(buf, fi);
3060 ret = process_func(trans, root, bytenr, num_bytes,
3061 parent, ref_root, key.objectid,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003062 key.offset, for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003063 if (ret)
3064 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05003065 } else {
3066 bytenr = btrfs_node_blockptr(buf, i);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003067 num_bytes = btrfs_level_size(root, level - 1);
3068 ret = process_func(trans, root, bytenr, num_bytes,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003069 parent, ref_root, level - 1, 0,
3070 for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003071 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04003072 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04003073 }
3074 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003075 return 0;
3076fail:
Chris Mason54aa1f42007-06-22 14:16:25 -04003077 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05003078}
3079
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003080int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003081 struct extent_buffer *buf, int full_backref, int for_cow)
Zheng Yan31840ae2008-09-23 13:14:14 -04003082{
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003083 return __btrfs_mod_ref(trans, root, buf, full_backref, 1, for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003084}
Zheng Yan31840ae2008-09-23 13:14:14 -04003085
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003086int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003087 struct extent_buffer *buf, int full_backref, int for_cow)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003088{
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003089 return __btrfs_mod_ref(trans, root, buf, full_backref, 0, for_cow);
Zheng Yan31840ae2008-09-23 13:14:14 -04003090}
3091
Chris Mason9078a3e2007-04-26 16:46:15 -04003092static int write_one_cache_group(struct btrfs_trans_handle *trans,
3093 struct btrfs_root *root,
3094 struct btrfs_path *path,
3095 struct btrfs_block_group_cache *cache)
3096{
3097 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003098 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003099 unsigned long bi;
3100 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04003101
Chris Mason9078a3e2007-04-26 16:46:15 -04003102 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003103 if (ret < 0)
3104 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003105 BUG_ON(ret); /* Corruption */
Chris Mason5f39d392007-10-15 16:14:19 -04003106
3107 leaf = path->nodes[0];
3108 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3109 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3110 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003111 btrfs_release_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04003112fail:
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003113 if (ret) {
3114 btrfs_abort_transaction(trans, root, ret);
Chris Mason9078a3e2007-04-26 16:46:15 -04003115 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003116 }
Chris Mason9078a3e2007-04-26 16:46:15 -04003117 return 0;
3118
3119}
3120
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003121static struct btrfs_block_group_cache *
3122next_block_group(struct btrfs_root *root,
3123 struct btrfs_block_group_cache *cache)
3124{
3125 struct rb_node *node;
3126 spin_lock(&root->fs_info->block_group_cache_lock);
3127 node = rb_next(&cache->cache_node);
3128 btrfs_put_block_group(cache);
3129 if (node) {
3130 cache = rb_entry(node, struct btrfs_block_group_cache,
3131 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00003132 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003133 } else
3134 cache = NULL;
3135 spin_unlock(&root->fs_info->block_group_cache_lock);
3136 return cache;
3137}
3138
Josef Bacik0af3d002010-06-21 14:48:16 -04003139static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3140 struct btrfs_trans_handle *trans,
3141 struct btrfs_path *path)
3142{
3143 struct btrfs_root *root = block_group->fs_info->tree_root;
3144 struct inode *inode = NULL;
3145 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05003146 int dcs = BTRFS_DC_ERROR;
Josef Bacik0af3d002010-06-21 14:48:16 -04003147 int num_pages = 0;
3148 int retries = 0;
3149 int ret = 0;
3150
3151 /*
3152 * If this block group is smaller than 100 megs don't bother caching the
3153 * block group.
3154 */
3155 if (block_group->key.offset < (100 * 1024 * 1024)) {
3156 spin_lock(&block_group->lock);
3157 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3158 spin_unlock(&block_group->lock);
3159 return 0;
3160 }
3161
3162again:
3163 inode = lookup_free_space_inode(root, block_group, path);
3164 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3165 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02003166 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003167 goto out;
3168 }
3169
3170 if (IS_ERR(inode)) {
3171 BUG_ON(retries);
3172 retries++;
3173
3174 if (block_group->ro)
3175 goto out_free;
3176
3177 ret = create_free_space_inode(root, trans, block_group, path);
3178 if (ret)
3179 goto out_free;
3180 goto again;
3181 }
3182
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003183 /* We've already setup this transaction, go ahead and exit */
3184 if (block_group->cache_generation == trans->transid &&
3185 i_size_read(inode)) {
3186 dcs = BTRFS_DC_SETUP;
3187 goto out_put;
3188 }
3189
Josef Bacik0af3d002010-06-21 14:48:16 -04003190 /*
3191 * We want to set the generation to 0, that way if anything goes wrong
3192 * from here on out we know not to trust this cache when we load up next
3193 * time.
3194 */
3195 BTRFS_I(inode)->generation = 0;
3196 ret = btrfs_update_inode(trans, root, inode);
3197 WARN_ON(ret);
3198
3199 if (i_size_read(inode) > 0) {
Miao Xie7b61cd92013-05-13 13:55:09 +00003200 ret = btrfs_check_trunc_cache_free_space(root,
3201 &root->fs_info->global_block_rsv);
3202 if (ret)
3203 goto out_put;
3204
Filipe David Borba Manana74514322013-09-20 14:46:51 +01003205 ret = btrfs_truncate_free_space_cache(root, trans, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003206 if (ret)
3207 goto out_put;
3208 }
3209
3210 spin_lock(&block_group->lock);
Liu Bocf7c1ef2012-07-06 03:31:34 -06003211 if (block_group->cached != BTRFS_CACHE_FINISHED ||
3212 !btrfs_test_opt(root, SPACE_CACHE)) {
3213 /*
3214 * don't bother trying to write stuff out _if_
3215 * a) we're not cached,
3216 * b) we're with nospace_cache mount option.
3217 */
Josef Bacik2b209822010-12-03 13:17:53 -05003218 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04003219 spin_unlock(&block_group->lock);
3220 goto out_put;
3221 }
3222 spin_unlock(&block_group->lock);
3223
Josef Bacik6fc823b2012-08-06 13:46:38 -06003224 /*
3225 * Try to preallocate enough space based on how big the block group is.
3226 * Keep in mind this has to include any pinned space which could end up
3227 * taking up quite a bit since it's not folded into the other space
3228 * cache.
3229 */
3230 num_pages = (int)div64_u64(block_group->key.offset, 256 * 1024 * 1024);
Josef Bacik0af3d002010-06-21 14:48:16 -04003231 if (!num_pages)
3232 num_pages = 1;
3233
Josef Bacik0af3d002010-06-21 14:48:16 -04003234 num_pages *= 16;
3235 num_pages *= PAGE_CACHE_SIZE;
3236
3237 ret = btrfs_check_data_free_space(inode, num_pages);
3238 if (ret)
3239 goto out_put;
3240
3241 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3242 num_pages, num_pages,
3243 &alloc_hint);
Josef Bacik2b209822010-12-03 13:17:53 -05003244 if (!ret)
3245 dcs = BTRFS_DC_SETUP;
Josef Bacik0af3d002010-06-21 14:48:16 -04003246 btrfs_free_reserved_data_space(inode, num_pages);
Josef Bacikc09544e2011-08-30 10:19:10 -04003247
Josef Bacik0af3d002010-06-21 14:48:16 -04003248out_put:
3249 iput(inode);
3250out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02003251 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003252out:
3253 spin_lock(&block_group->lock);
Josef Bacike65cbb92011-12-13 16:04:54 -05003254 if (!ret && dcs == BTRFS_DC_SETUP)
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003255 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05003256 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04003257 spin_unlock(&block_group->lock);
3258
3259 return ret;
3260}
3261
Chris Mason96b51792007-10-15 16:15:19 -04003262int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
3263 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04003264{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003265 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04003266 int err = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003267 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -04003268 u64 last = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003269
3270 path = btrfs_alloc_path();
3271 if (!path)
3272 return -ENOMEM;
3273
Josef Bacik0af3d002010-06-21 14:48:16 -04003274again:
3275 while (1) {
3276 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3277 while (cache) {
3278 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3279 break;
3280 cache = next_block_group(root, cache);
3281 }
3282 if (!cache) {
3283 if (last == 0)
3284 break;
3285 last = 0;
3286 continue;
3287 }
3288 err = cache_save_setup(cache, trans, path);
3289 last = cache->key.objectid + cache->key.offset;
3290 btrfs_put_block_group(cache);
3291 }
3292
Chris Masond3977122009-01-05 21:25:51 -05003293 while (1) {
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003294 if (last == 0) {
3295 err = btrfs_run_delayed_refs(trans, root,
3296 (unsigned long)-1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003297 if (err) /* File system offline */
3298 goto out;
Josef Bacik0f9dd462008-09-23 13:14:11 -04003299 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04003300
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003301 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3302 while (cache) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003303 if (cache->disk_cache_state == BTRFS_DC_CLEAR) {
3304 btrfs_put_block_group(cache);
3305 goto again;
3306 }
3307
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003308 if (cache->dirty)
3309 break;
3310 cache = next_block_group(root, cache);
3311 }
3312 if (!cache) {
3313 if (last == 0)
3314 break;
3315 last = 0;
Chris Mason96b51792007-10-15 16:15:19 -04003316 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -04003317 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003318
Josef Bacik0cb59c92010-07-02 12:14:14 -04003319 if (cache->disk_cache_state == BTRFS_DC_SETUP)
3320 cache->disk_cache_state = BTRFS_DC_NEED_WRITE;
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003321 cache->dirty = 0;
3322 last = cache->key.objectid + cache->key.offset;
3323
3324 err = write_one_cache_group(trans, root, path, cache);
Filipe David Borba Mananae84cc142013-09-09 19:49:43 +01003325 btrfs_put_block_group(cache);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003326 if (err) /* File system offline */
3327 goto out;
Chris Mason9078a3e2007-04-26 16:46:15 -04003328 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003329
Josef Bacik0cb59c92010-07-02 12:14:14 -04003330 while (1) {
3331 /*
3332 * I don't think this is needed since we're just marking our
3333 * preallocated extent as written, but just in case it can't
3334 * hurt.
3335 */
3336 if (last == 0) {
3337 err = btrfs_run_delayed_refs(trans, root,
3338 (unsigned long)-1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003339 if (err) /* File system offline */
3340 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -04003341 }
3342
3343 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3344 while (cache) {
3345 /*
3346 * Really this shouldn't happen, but it could if we
3347 * couldn't write the entire preallocated extent and
3348 * splitting the extent resulted in a new block.
3349 */
3350 if (cache->dirty) {
3351 btrfs_put_block_group(cache);
3352 goto again;
3353 }
3354 if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
3355 break;
3356 cache = next_block_group(root, cache);
3357 }
3358 if (!cache) {
3359 if (last == 0)
3360 break;
3361 last = 0;
3362 continue;
3363 }
3364
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003365 err = btrfs_write_out_cache(root, trans, cache, path);
Josef Bacik0cb59c92010-07-02 12:14:14 -04003366
3367 /*
3368 * If we didn't have an error then the cache state is still
3369 * NEED_WRITE, so we can set it to WRITTEN.
3370 */
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003371 if (!err && cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
Josef Bacik0cb59c92010-07-02 12:14:14 -04003372 cache->disk_cache_state = BTRFS_DC_WRITTEN;
3373 last = cache->key.objectid + cache->key.offset;
3374 btrfs_put_block_group(cache);
3375 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003376out:
Josef Bacik0cb59c92010-07-02 12:14:14 -04003377
Chris Mason9078a3e2007-04-26 16:46:15 -04003378 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003379 return err;
Chris Mason9078a3e2007-04-26 16:46:15 -04003380}
3381
Yan Zhengd2fb3432008-12-11 16:30:39 -05003382int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
3383{
3384 struct btrfs_block_group_cache *block_group;
3385 int readonly = 0;
3386
3387 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
3388 if (!block_group || block_group->ro)
3389 readonly = 1;
3390 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04003391 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003392 return readonly;
3393}
3394
Chris Mason593060d2008-03-25 16:50:33 -04003395static int update_space_info(struct btrfs_fs_info *info, u64 flags,
3396 u64 total_bytes, u64 bytes_used,
3397 struct btrfs_space_info **space_info)
3398{
3399 struct btrfs_space_info *found;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003400 int i;
3401 int factor;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003402 int ret;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003403
3404 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
3405 BTRFS_BLOCK_GROUP_RAID10))
3406 factor = 2;
3407 else
3408 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04003409
3410 found = __find_space_info(info, flags);
3411 if (found) {
Josef Bacik25179202008-10-29 14:49:05 -04003412 spin_lock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003413 found->total_bytes += total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003414 found->disk_total += total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003415 found->bytes_used += bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003416 found->disk_used += bytes_used * factor;
Chris Mason8f18cf12008-04-25 16:53:30 -04003417 found->full = 0;
Josef Bacik25179202008-10-29 14:49:05 -04003418 spin_unlock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003419 *space_info = found;
3420 return 0;
3421 }
Yan Zhengc146afa2008-11-12 14:34:12 -05003422 found = kzalloc(sizeof(*found), GFP_NOFS);
Chris Mason593060d2008-03-25 16:50:33 -04003423 if (!found)
3424 return -ENOMEM;
3425
Josef Bacikb150a4f2013-06-19 15:00:04 -04003426 ret = percpu_counter_init(&found->total_bytes_pinned, 0);
3427 if (ret) {
3428 kfree(found);
3429 return ret;
3430 }
3431
Yan, Zhengb742bb82010-05-16 10:46:24 -04003432 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
3433 INIT_LIST_HEAD(&found->block_groups[i]);
Josef Bacik80eb2342008-10-29 14:49:05 -04003434 init_rwsem(&found->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003435 spin_lock_init(&found->lock);
Ilya Dryomov52ba6922012-01-16 22:04:47 +02003436 found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
Chris Mason593060d2008-03-25 16:50:33 -04003437 found->total_bytes = total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003438 found->disk_total = total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003439 found->bytes_used = bytes_used;
Yan, Zhengb742bb82010-05-16 10:46:24 -04003440 found->disk_used = bytes_used * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003441 found->bytes_pinned = 0;
Zheng Yane8569812008-09-26 10:05:48 -04003442 found->bytes_reserved = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003443 found->bytes_readonly = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003444 found->bytes_may_use = 0;
Chris Mason593060d2008-03-25 16:50:33 -04003445 found->full = 0;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003446 found->force_alloc = CHUNK_ALLOC_NO_FORCE;
Josef Bacik6d741192011-04-11 20:20:11 -04003447 found->chunk_alloc = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003448 found->flush = 0;
3449 init_waitqueue_head(&found->wait);
Chris Mason593060d2008-03-25 16:50:33 -04003450 *space_info = found;
Chris Mason4184ea72009-03-10 12:39:20 -04003451 list_add_rcu(&found->list, &info->space_info);
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003452 if (flags & BTRFS_BLOCK_GROUP_DATA)
3453 info->data_sinfo = found;
Chris Mason593060d2008-03-25 16:50:33 -04003454 return 0;
3455}
3456
Chris Mason8790d502008-04-03 16:29:03 -04003457static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3458{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003459 u64 extra_flags = chunk_to_extended(flags) &
3460 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003461
Miao Xiede98ced2013-01-29 10:13:12 +00003462 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003463 if (flags & BTRFS_BLOCK_GROUP_DATA)
3464 fs_info->avail_data_alloc_bits |= extra_flags;
3465 if (flags & BTRFS_BLOCK_GROUP_METADATA)
3466 fs_info->avail_metadata_alloc_bits |= extra_flags;
3467 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3468 fs_info->avail_system_alloc_bits |= extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003469 write_sequnlock(&fs_info->profiles_lock);
Chris Mason8790d502008-04-03 16:29:03 -04003470}
Chris Mason593060d2008-03-25 16:50:33 -04003471
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003472/*
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003473 * returns target flags in extended format or 0 if restripe for this
3474 * chunk_type is not in progress
Ilya Dryomovc6664b42012-04-12 16:03:56 -04003475 *
3476 * should be called with either volume_mutex or balance_lock held
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003477 */
3478static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
3479{
3480 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3481 u64 target = 0;
3482
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003483 if (!bctl)
3484 return 0;
3485
3486 if (flags & BTRFS_BLOCK_GROUP_DATA &&
3487 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3488 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
3489 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
3490 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3491 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
3492 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
3493 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3494 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
3495 }
3496
3497 return target;
3498}
3499
3500/*
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003501 * @flags: available profiles in extended format (see ctree.h)
3502 *
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003503 * Returns reduced profile in chunk format. If profile changing is in
3504 * progress (either running or paused) picks the target profile (if it's
3505 * already available), otherwise falls back to plain reducing.
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003506 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003507static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04003508{
Chris Masoncd02dca2010-12-13 14:56:23 -05003509 /*
3510 * we add in the count of missing devices because we want
3511 * to make sure that any RAID levels on a degraded FS
3512 * continue to be honored.
3513 */
3514 u64 num_devices = root->fs_info->fs_devices->rw_devices +
3515 root->fs_info->fs_devices->missing_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003516 u64 target;
David Woodhouse53b381b2013-01-29 18:40:14 -05003517 u64 tmp;
Chris Masona061fc82008-05-07 11:43:44 -04003518
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003519 /*
3520 * see if restripe for this chunk_type is in progress, if so
3521 * try to reduce to the target profile
3522 */
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003523 spin_lock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003524 target = get_restripe_target(root->fs_info, flags);
3525 if (target) {
3526 /* pick target profile only if it's already available */
3527 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003528 spin_unlock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003529 return extended_to_chunk(target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003530 }
3531 }
3532 spin_unlock(&root->fs_info->balance_lock);
3533
David Woodhouse53b381b2013-01-29 18:40:14 -05003534 /* First, mask out the RAID levels which aren't possible */
Chris Masona061fc82008-05-07 11:43:44 -04003535 if (num_devices == 1)
David Woodhouse53b381b2013-01-29 18:40:14 -05003536 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0 |
3537 BTRFS_BLOCK_GROUP_RAID5);
3538 if (num_devices < 3)
3539 flags &= ~BTRFS_BLOCK_GROUP_RAID6;
Chris Masona061fc82008-05-07 11:43:44 -04003540 if (num_devices < 4)
3541 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
3542
David Woodhouse53b381b2013-01-29 18:40:14 -05003543 tmp = flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID0 |
3544 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID5 |
3545 BTRFS_BLOCK_GROUP_RAID6 | BTRFS_BLOCK_GROUP_RAID10);
3546 flags &= ~tmp;
Chris Masonec44a352008-04-28 15:29:52 -04003547
David Woodhouse53b381b2013-01-29 18:40:14 -05003548 if (tmp & BTRFS_BLOCK_GROUP_RAID6)
3549 tmp = BTRFS_BLOCK_GROUP_RAID6;
3550 else if (tmp & BTRFS_BLOCK_GROUP_RAID5)
3551 tmp = BTRFS_BLOCK_GROUP_RAID5;
3552 else if (tmp & BTRFS_BLOCK_GROUP_RAID10)
3553 tmp = BTRFS_BLOCK_GROUP_RAID10;
3554 else if (tmp & BTRFS_BLOCK_GROUP_RAID1)
3555 tmp = BTRFS_BLOCK_GROUP_RAID1;
3556 else if (tmp & BTRFS_BLOCK_GROUP_RAID0)
3557 tmp = BTRFS_BLOCK_GROUP_RAID0;
Chris Masonec44a352008-04-28 15:29:52 -04003558
David Woodhouse53b381b2013-01-29 18:40:14 -05003559 return extended_to_chunk(flags | tmp);
Chris Masonec44a352008-04-28 15:29:52 -04003560}
3561
Yan, Zhengb742bb82010-05-16 10:46:24 -04003562static u64 get_alloc_profile(struct btrfs_root *root, u64 flags)
Josef Bacik6a632092009-02-20 11:00:09 -05003563{
Miao Xiede98ced2013-01-29 10:13:12 +00003564 unsigned seq;
3565
3566 do {
3567 seq = read_seqbegin(&root->fs_info->profiles_lock);
3568
3569 if (flags & BTRFS_BLOCK_GROUP_DATA)
3570 flags |= root->fs_info->avail_data_alloc_bits;
3571 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3572 flags |= root->fs_info->avail_system_alloc_bits;
3573 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
3574 flags |= root->fs_info->avail_metadata_alloc_bits;
3575 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02003576
Yan, Zhengb742bb82010-05-16 10:46:24 -04003577 return btrfs_reduce_alloc_profile(root, flags);
3578}
Josef Bacik6a632092009-02-20 11:00:09 -05003579
Miao Xie6d07bce2011-01-05 10:07:31 +00003580u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
Yan, Zhengb742bb82010-05-16 10:46:24 -04003581{
3582 u64 flags;
David Woodhouse53b381b2013-01-29 18:40:14 -05003583 u64 ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003584
Yan, Zhengb742bb82010-05-16 10:46:24 -04003585 if (data)
3586 flags = BTRFS_BLOCK_GROUP_DATA;
3587 else if (root == root->fs_info->chunk_root)
3588 flags = BTRFS_BLOCK_GROUP_SYSTEM;
3589 else
3590 flags = BTRFS_BLOCK_GROUP_METADATA;
3591
David Woodhouse53b381b2013-01-29 18:40:14 -05003592 ret = get_alloc_profile(root, flags);
3593 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003594}
3595
Josef Bacik6a632092009-02-20 11:00:09 -05003596/*
3597 * This will check the space that the inode allocates from to make sure we have
3598 * enough space for bytes.
3599 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003600int btrfs_check_data_free_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003601{
3602 struct btrfs_space_info *data_sinfo;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003603 struct btrfs_root *root = BTRFS_I(inode)->root;
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003604 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacikab6e24102010-03-19 14:38:13 +00003605 u64 used;
Josef Bacik0af3d002010-06-21 14:48:16 -04003606 int ret = 0, committed = 0, alloc_chunk = 1;
Josef Bacik6a632092009-02-20 11:00:09 -05003607
3608 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00003609 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05003610
Li Zefan82d59022011-04-20 10:33:24 +08003611 if (root == root->fs_info->tree_root ||
3612 BTRFS_I(inode)->location.objectid == BTRFS_FREE_INO_OBJECTID) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003613 alloc_chunk = 0;
3614 committed = 1;
3615 }
3616
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003617 data_sinfo = fs_info->data_sinfo;
Chris Mason33b4d472009-09-22 14:45:50 -04003618 if (!data_sinfo)
3619 goto alloc;
3620
Josef Bacik6a632092009-02-20 11:00:09 -05003621again:
3622 /* make sure we have enough space to handle the data first */
3623 spin_lock(&data_sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003624 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
3625 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
3626 data_sinfo->bytes_may_use;
Josef Bacikab6e24102010-03-19 14:38:13 +00003627
3628 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003629 struct btrfs_trans_handle *trans;
3630
Josef Bacik6a632092009-02-20 11:00:09 -05003631 /*
3632 * if we don't have enough free bytes in this space then we need
3633 * to alloc a new chunk.
3634 */
Josef Bacik0af3d002010-06-21 14:48:16 -04003635 if (!data_sinfo->full && alloc_chunk) {
Josef Bacik6a632092009-02-20 11:00:09 -05003636 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05003637
Chris Mason0e4f8f82011-04-15 16:05:44 -04003638 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05003639 spin_unlock(&data_sinfo->lock);
Chris Mason33b4d472009-09-22 14:45:50 -04003640alloc:
Josef Bacik6a632092009-02-20 11:00:09 -05003641 alloc_target = btrfs_get_alloc_profile(root, 1);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003642 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003643 if (IS_ERR(trans))
3644 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05003645
3646 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0e4f8f82011-04-15 16:05:44 -04003647 alloc_target,
3648 CHUNK_ALLOC_NO_FORCE);
Josef Bacik6a632092009-02-20 11:00:09 -05003649 btrfs_end_transaction(trans, root);
Miao Xied52a5b52011-01-05 10:07:18 +00003650 if (ret < 0) {
3651 if (ret != -ENOSPC)
3652 return ret;
3653 else
3654 goto commit_trans;
3655 }
Chris Mason33b4d472009-09-22 14:45:50 -04003656
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003657 if (!data_sinfo)
3658 data_sinfo = fs_info->data_sinfo;
3659
Josef Bacik6a632092009-02-20 11:00:09 -05003660 goto again;
3661 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003662
3663 /*
Josef Bacikb150a4f2013-06-19 15:00:04 -04003664 * If we don't have enough pinned space to deal with this
3665 * allocation don't bother committing the transaction.
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003666 */
Josef Bacikb150a4f2013-06-19 15:00:04 -04003667 if (percpu_counter_compare(&data_sinfo->total_bytes_pinned,
3668 bytes) < 0)
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003669 committed = 1;
Josef Bacik6a632092009-02-20 11:00:09 -05003670 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003671
3672 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00003673commit_trans:
Josef Bacika4abeea2011-04-11 17:25:13 -04003674 if (!committed &&
3675 !atomic_read(&root->fs_info->open_ioctl_trans)) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003676 committed = 1;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003677
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003678 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003679 if (IS_ERR(trans))
3680 return PTR_ERR(trans);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003681 ret = btrfs_commit_transaction(trans, root);
3682 if (ret)
3683 return ret;
3684 goto again;
3685 }
3686
Jeff Mahoneycab45e22013-10-16 16:27:01 -04003687 trace_btrfs_space_reservation(root->fs_info,
3688 "space_info:enospc",
3689 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05003690 return -ENOSPC;
3691 }
3692 data_sinfo->bytes_may_use += bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05003693 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04003694 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05003695 spin_unlock(&data_sinfo->lock);
3696
Josef Bacik9ed74f22009-09-11 16:12:44 -04003697 return 0;
Josef Bacik6a632092009-02-20 11:00:09 -05003698}
3699
3700/*
Josef Bacikfb25e912011-07-26 17:00:46 -04003701 * Called if we need to clear a data reservation for this inode.
Josef Bacik6a632092009-02-20 11:00:09 -05003702 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003703void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003704{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003705 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003706 struct btrfs_space_info *data_sinfo;
3707
3708 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00003709 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05003710
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003711 data_sinfo = root->fs_info->data_sinfo;
Josef Bacik6a632092009-02-20 11:00:09 -05003712 spin_lock(&data_sinfo->lock);
Josef Bacik7ee9e442013-06-21 16:37:03 -04003713 WARN_ON(data_sinfo->bytes_may_use < bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05003714 data_sinfo->bytes_may_use -= bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05003715 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04003716 data_sinfo->flags, bytes, 0);
Josef Bacik6a632092009-02-20 11:00:09 -05003717 spin_unlock(&data_sinfo->lock);
3718}
3719
Josef Bacik97e728d2009-04-21 17:40:57 -04003720static void force_metadata_allocation(struct btrfs_fs_info *info)
3721{
3722 struct list_head *head = &info->space_info;
3723 struct btrfs_space_info *found;
3724
3725 rcu_read_lock();
3726 list_for_each_entry_rcu(found, head, list) {
3727 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04003728 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04003729 }
3730 rcu_read_unlock();
3731}
3732
Miao Xie3c76cd82013-04-25 10:12:38 +00003733static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
3734{
3735 return (global->size << 1);
3736}
3737
Chris Masone5bc2452010-10-26 13:37:56 -04003738static int should_alloc_chunk(struct btrfs_root *root,
Josef Bacik698d0082012-09-12 14:08:47 -04003739 struct btrfs_space_info *sinfo, int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04003740{
Josef Bacikfb25e912011-07-26 17:00:46 -04003741 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zheng424499d2010-05-16 10:46:25 -04003742 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003743 u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved;
Chris Masone5bc2452010-10-26 13:37:56 -04003744 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04003745
Chris Mason0e4f8f82011-04-15 16:05:44 -04003746 if (force == CHUNK_ALLOC_FORCE)
3747 return 1;
3748
3749 /*
Josef Bacikfb25e912011-07-26 17:00:46 -04003750 * We need to take into account the global rsv because for all intents
3751 * and purposes it's used space. Don't worry about locking the
3752 * global_rsv, it doesn't change except when the transaction commits.
3753 */
Josef Bacik54338b52012-08-14 16:20:52 -04003754 if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA)
Miao Xie3c76cd82013-04-25 10:12:38 +00003755 num_allocated += calc_global_rsv_need_space(global_rsv);
Josef Bacikfb25e912011-07-26 17:00:46 -04003756
3757 /*
Chris Mason0e4f8f82011-04-15 16:05:44 -04003758 * in limited mode, we want to have some free space up to
3759 * about 1% of the FS size.
3760 */
3761 if (force == CHUNK_ALLOC_LIMITED) {
David Sterba6c417612011-04-13 15:41:04 +02003762 thresh = btrfs_super_total_bytes(root->fs_info->super_copy);
Chris Mason0e4f8f82011-04-15 16:05:44 -04003763 thresh = max_t(u64, 64 * 1024 * 1024,
3764 div_factor_fine(thresh, 1));
3765
3766 if (num_bytes - num_allocated < thresh)
3767 return 1;
3768 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04003769
Josef Bacik698d0082012-09-12 14:08:47 -04003770 if (num_allocated + 2 * 1024 * 1024 < div_factor(num_bytes, 8))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04003771 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04003772 return 1;
3773}
3774
Liu Bo15d1ff82012-03-29 09:57:44 -04003775static u64 get_system_chunk_thresh(struct btrfs_root *root, u64 type)
3776{
3777 u64 num_dev;
3778
David Woodhouse53b381b2013-01-29 18:40:14 -05003779 if (type & (BTRFS_BLOCK_GROUP_RAID10 |
3780 BTRFS_BLOCK_GROUP_RAID0 |
3781 BTRFS_BLOCK_GROUP_RAID5 |
3782 BTRFS_BLOCK_GROUP_RAID6))
Liu Bo15d1ff82012-03-29 09:57:44 -04003783 num_dev = root->fs_info->fs_devices->rw_devices;
3784 else if (type & BTRFS_BLOCK_GROUP_RAID1)
3785 num_dev = 2;
3786 else
3787 num_dev = 1; /* DUP or single */
3788
3789 /* metadata for updaing devices and chunk tree */
3790 return btrfs_calc_trans_metadata_size(root, num_dev + 1);
3791}
3792
3793static void check_system_chunk(struct btrfs_trans_handle *trans,
3794 struct btrfs_root *root, u64 type)
3795{
3796 struct btrfs_space_info *info;
3797 u64 left;
3798 u64 thresh;
3799
3800 info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
3801 spin_lock(&info->lock);
3802 left = info->total_bytes - info->bytes_used - info->bytes_pinned -
3803 info->bytes_reserved - info->bytes_readonly;
3804 spin_unlock(&info->lock);
3805
3806 thresh = get_system_chunk_thresh(root, type);
3807 if (left < thresh && btrfs_test_opt(root, ENOSPC_DEBUG)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003808 btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu",
3809 left, thresh, type);
Liu Bo15d1ff82012-03-29 09:57:44 -04003810 dump_space_info(info, 0, 0);
3811 }
3812
3813 if (left < thresh) {
3814 u64 flags;
3815
3816 flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0);
3817 btrfs_alloc_chunk(trans, root, flags);
3818 }
3819}
3820
Chris Mason6324fbf2008-03-24 15:01:59 -04003821static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Josef Bacik698d0082012-09-12 14:08:47 -04003822 struct btrfs_root *extent_root, u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04003823{
3824 struct btrfs_space_info *space_info;
Josef Bacik97e728d2009-04-21 17:40:57 -04003825 struct btrfs_fs_info *fs_info = extent_root->fs_info;
Josef Bacik6d741192011-04-11 20:20:11 -04003826 int wait_for_alloc = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003827 int ret = 0;
3828
Josef Bacikc6b305a2012-12-18 09:16:16 -05003829 /* Don't re-enter if we're already allocating a chunk */
3830 if (trans->allocating_chunk)
3831 return -ENOSPC;
3832
Chris Mason6324fbf2008-03-24 15:01:59 -04003833 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04003834 if (!space_info) {
3835 ret = update_space_info(extent_root->fs_info, flags,
3836 0, 0, &space_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003837 BUG_ON(ret); /* -ENOMEM */
Chris Mason593060d2008-03-25 16:50:33 -04003838 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003839 BUG_ON(!space_info); /* Logic error */
Chris Mason6324fbf2008-03-24 15:01:59 -04003840
Josef Bacik6d741192011-04-11 20:20:11 -04003841again:
Josef Bacik25179202008-10-29 14:49:05 -04003842 spin_lock(&space_info->lock);
Miao Xie9e622d62012-01-26 15:01:12 -05003843 if (force < space_info->force_alloc)
Chris Mason0e4f8f82011-04-15 16:05:44 -04003844 force = space_info->force_alloc;
Josef Bacik25179202008-10-29 14:49:05 -04003845 if (space_info->full) {
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01003846 if (should_alloc_chunk(extent_root, space_info, force))
3847 ret = -ENOSPC;
3848 else
3849 ret = 0;
Josef Bacik25179202008-10-29 14:49:05 -04003850 spin_unlock(&space_info->lock);
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01003851 return ret;
Josef Bacik25179202008-10-29 14:49:05 -04003852 }
Chris Mason6324fbf2008-03-24 15:01:59 -04003853
Josef Bacik698d0082012-09-12 14:08:47 -04003854 if (!should_alloc_chunk(extent_root, space_info, force)) {
Josef Bacik25179202008-10-29 14:49:05 -04003855 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04003856 return 0;
3857 } else if (space_info->chunk_alloc) {
3858 wait_for_alloc = 1;
3859 } else {
3860 space_info->chunk_alloc = 1;
Josef Bacik25179202008-10-29 14:49:05 -04003861 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04003862
Josef Bacik25179202008-10-29 14:49:05 -04003863 spin_unlock(&space_info->lock);
3864
Josef Bacik6d741192011-04-11 20:20:11 -04003865 mutex_lock(&fs_info->chunk_mutex);
3866
3867 /*
3868 * The chunk_mutex is held throughout the entirety of a chunk
3869 * allocation, so once we've acquired the chunk_mutex we know that the
3870 * other guy is done and we need to recheck and see if we should
3871 * allocate.
3872 */
3873 if (wait_for_alloc) {
3874 mutex_unlock(&fs_info->chunk_mutex);
3875 wait_for_alloc = 0;
3876 goto again;
3877 }
3878
Josef Bacikc6b305a2012-12-18 09:16:16 -05003879 trans->allocating_chunk = true;
3880
Josef Bacik97e728d2009-04-21 17:40:57 -04003881 /*
Josef Bacik67377732010-09-16 16:19:09 -04003882 * If we have mixed data/metadata chunks we want to make sure we keep
3883 * allocating mixed chunks instead of individual chunks.
3884 */
3885 if (btrfs_mixed_space_info(space_info))
3886 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
3887
3888 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04003889 * if we're doing a data chunk, go ahead and make sure that
3890 * we keep a reasonable number of metadata chunks allocated in the
3891 * FS as well.
3892 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04003893 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04003894 fs_info->data_chunk_allocations++;
3895 if (!(fs_info->data_chunk_allocations %
3896 fs_info->metadata_ratio))
3897 force_metadata_allocation(fs_info);
3898 }
3899
Liu Bo15d1ff82012-03-29 09:57:44 -04003900 /*
3901 * Check if we have enough space in SYSTEM chunk because we may need
3902 * to update devices.
3903 */
3904 check_system_chunk(trans, extent_root, flags);
3905
Yan Zheng2b820322008-11-17 21:11:30 -05003906 ret = btrfs_alloc_chunk(trans, extent_root, flags);
Josef Bacikc6b305a2012-12-18 09:16:16 -05003907 trans->allocating_chunk = false;
Mark Fasheh92b8e8972011-07-12 10:57:59 -07003908
Josef Bacik9ed74f22009-09-11 16:12:44 -04003909 spin_lock(&space_info->lock);
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00003910 if (ret < 0 && ret != -ENOSPC)
3911 goto out;
Chris Masond3977122009-01-05 21:25:51 -05003912 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04003913 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04003914 else
3915 ret = 1;
Josef Bacik6d741192011-04-11 20:20:11 -04003916
Chris Mason0e4f8f82011-04-15 16:05:44 -04003917 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00003918out:
Josef Bacik6d741192011-04-11 20:20:11 -04003919 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003920 spin_unlock(&space_info->lock);
Dan Carpentera25c75d2012-04-18 09:59:29 +03003921 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003922 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04003923}
3924
Josef Bacika80c8dc2012-09-06 16:59:33 -04003925static int can_overcommit(struct btrfs_root *root,
3926 struct btrfs_space_info *space_info, u64 bytes,
Miao Xie08e007d2012-10-16 11:33:38 +00003927 enum btrfs_reserve_flush_enum flush)
Josef Bacika80c8dc2012-09-06 16:59:33 -04003928{
Josef Bacik96f1bb52013-01-30 17:02:51 -05003929 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Josef Bacika80c8dc2012-09-06 16:59:33 -04003930 u64 profile = btrfs_get_alloc_profile(root, 0);
Miao Xie3c76cd82013-04-25 10:12:38 +00003931 u64 space_size;
Josef Bacika80c8dc2012-09-06 16:59:33 -04003932 u64 avail;
3933 u64 used;
3934
3935 used = space_info->bytes_used + space_info->bytes_reserved +
Josef Bacik96f1bb52013-01-30 17:02:51 -05003936 space_info->bytes_pinned + space_info->bytes_readonly;
3937
Josef Bacik96f1bb52013-01-30 17:02:51 -05003938 /*
3939 * We only want to allow over committing if we have lots of actual space
3940 * free, but if we don't have enough space to handle the global reserve
3941 * space then we could end up having a real enospc problem when trying
3942 * to allocate a chunk or some other such important allocation.
3943 */
Miao Xie3c76cd82013-04-25 10:12:38 +00003944 spin_lock(&global_rsv->lock);
3945 space_size = calc_global_rsv_need_space(global_rsv);
3946 spin_unlock(&global_rsv->lock);
3947 if (used + space_size >= space_info->total_bytes)
Josef Bacik96f1bb52013-01-30 17:02:51 -05003948 return 0;
3949
3950 used += space_info->bytes_may_use;
Josef Bacika80c8dc2012-09-06 16:59:33 -04003951
3952 spin_lock(&root->fs_info->free_chunk_lock);
3953 avail = root->fs_info->free_chunk_space;
3954 spin_unlock(&root->fs_info->free_chunk_lock);
3955
3956 /*
3957 * If we have dup, raid1 or raid10 then only half of the free
David Woodhouse53b381b2013-01-29 18:40:14 -05003958 * space is actually useable. For raid56, the space info used
3959 * doesn't include the parity drive, so we don't have to
3960 * change the math
Josef Bacika80c8dc2012-09-06 16:59:33 -04003961 */
3962 if (profile & (BTRFS_BLOCK_GROUP_DUP |
3963 BTRFS_BLOCK_GROUP_RAID1 |
3964 BTRFS_BLOCK_GROUP_RAID10))
3965 avail >>= 1;
3966
3967 /*
Miao Xie561c2942012-10-16 11:32:18 +00003968 * If we aren't flushing all things, let us overcommit up to
3969 * 1/2th of the space. If we can flush, don't let us overcommit
3970 * too much, let it overcommit up to 1/8 of the space.
Josef Bacika80c8dc2012-09-06 16:59:33 -04003971 */
Miao Xie08e007d2012-10-16 11:33:38 +00003972 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacik14575ae2013-09-17 10:48:00 -04003973 avail >>= 3;
Josef Bacika80c8dc2012-09-06 16:59:33 -04003974 else
Josef Bacik14575ae2013-09-17 10:48:00 -04003975 avail >>= 1;
Josef Bacika80c8dc2012-09-06 16:59:33 -04003976
Josef Bacik14575ae2013-09-17 10:48:00 -04003977 if (used + bytes < space_info->total_bytes + avail)
Josef Bacika80c8dc2012-09-06 16:59:33 -04003978 return 1;
3979 return 0;
3980}
3981
Eric Sandeen48a3b632013-04-25 20:41:01 +00003982static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root,
3983 unsigned long nr_pages)
Miao Xieda633a42012-12-20 11:19:09 +00003984{
3985 struct super_block *sb = root->fs_info->sb;
Miao Xieda633a42012-12-20 11:19:09 +00003986
Josef Bacik925a6ef2013-06-20 12:31:27 -04003987 if (down_read_trylock(&sb->s_umount)) {
3988 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
3989 up_read(&sb->s_umount);
3990 } else {
Miao Xieda633a42012-12-20 11:19:09 +00003991 /*
3992 * We needn't worry the filesystem going from r/w to r/o though
3993 * we don't acquire ->s_umount mutex, because the filesystem
3994 * should guarantee the delalloc inodes list be empty after
3995 * the filesystem is readonly(all dirty pages are written to
3996 * the disk).
3997 */
Miao Xieeb73c1b2013-05-15 07:48:22 +00003998 btrfs_start_all_delalloc_inodes(root->fs_info, 0);
Josef Bacik98ad69c2013-04-04 11:55:49 -04003999 if (!current->journal_info)
Josef Bacikf0de1812013-09-17 10:55:51 -04004000 btrfs_wait_all_ordered_extents(root->fs_info);
Miao Xieda633a42012-12-20 11:19:09 +00004001 }
4002}
4003
Yan, Zheng5da9d012010-05-16 10:46:25 -04004004/*
4005 * shrink metadata reservation for delalloc
4006 */
Josef Bacikf4c738c2012-07-02 17:10:51 -04004007static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig,
4008 bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04004009{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004010 struct btrfs_block_rsv *block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004011 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04004012 struct btrfs_trans_handle *trans;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004013 u64 delalloc_bytes;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004014 u64 max_reclaim;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004015 long time_left;
Josef Bacik877da172011-10-14 14:02:10 -04004016 unsigned long nr_pages = (2 * 1024 * 1024) >> PAGE_CACHE_SHIFT;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004017 int loops = 0;
Miao Xie08e007d2012-10-16 11:33:38 +00004018 enum btrfs_reserve_flush_enum flush;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004019
Josef Bacik663350a2011-11-03 22:54:25 -04004020 trans = (struct btrfs_trans_handle *)current->journal_info;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004021 block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004022 space_info = block_rsv->space_info;
Chris Masonbf9022e2010-10-26 13:40:45 -04004023
4024 smp_mb();
Miao Xie963d6782013-01-29 10:10:51 +00004025 delalloc_bytes = percpu_counter_sum_positive(
4026 &root->fs_info->delalloc_bytes);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004027 if (delalloc_bytes == 0) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004028 if (trans)
Josef Bacikf4c738c2012-07-02 17:10:51 -04004029 return;
Josef Bacikf0de1812013-09-17 10:55:51 -04004030 btrfs_wait_all_ordered_extents(root->fs_info);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004031 return;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004032 }
4033
Josef Bacikf4c738c2012-07-02 17:10:51 -04004034 while (delalloc_bytes && loops < 3) {
4035 max_reclaim = min(delalloc_bytes, to_reclaim);
4036 nr_pages = max_reclaim >> PAGE_CACHE_SHIFT;
Miao Xieda633a42012-12-20 11:19:09 +00004037 btrfs_writeback_inodes_sb_nr(root, nr_pages);
Josef Bacikdea31f52012-09-06 16:47:00 -04004038 /*
4039 * We need to wait for the async pages to actually start before
4040 * we do anything.
4041 */
4042 wait_event(root->fs_info->async_submit_wait,
4043 !atomic_read(&root->fs_info->async_delalloc_pages));
4044
Miao Xie08e007d2012-10-16 11:33:38 +00004045 if (!trans)
4046 flush = BTRFS_RESERVE_FLUSH_ALL;
4047 else
4048 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacik0019f102010-10-15 15:18:40 -04004049 spin_lock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00004050 if (can_overcommit(root, space_info, orig, flush)) {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004051 spin_unlock(&space_info->lock);
4052 break;
4053 }
Josef Bacik0019f102010-10-15 15:18:40 -04004054 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004055
Chris Mason36e39c42011-03-12 07:08:42 -05004056 loops++;
Josef Bacikf104d042011-10-14 13:56:58 -04004057 if (wait_ordered && !trans) {
Josef Bacikf0de1812013-09-17 10:55:51 -04004058 btrfs_wait_all_ordered_extents(root->fs_info);
Josef Bacikf104d042011-10-14 13:56:58 -04004059 } else {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004060 time_left = schedule_timeout_killable(1);
Josef Bacikf104d042011-10-14 13:56:58 -04004061 if (time_left)
4062 break;
4063 }
Josef Bacikf4c738c2012-07-02 17:10:51 -04004064 smp_mb();
Miao Xie963d6782013-01-29 10:10:51 +00004065 delalloc_bytes = percpu_counter_sum_positive(
4066 &root->fs_info->delalloc_bytes);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004067 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04004068}
4069
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004070/**
Josef Bacik663350a2011-11-03 22:54:25 -04004071 * maybe_commit_transaction - possibly commit the transaction if its ok to
4072 * @root - the root we're allocating for
4073 * @bytes - the number of bytes we want to reserve
4074 * @force - force the commit
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004075 *
Josef Bacik663350a2011-11-03 22:54:25 -04004076 * This will check to make sure that committing the transaction will actually
4077 * get us somewhere and then commit the transaction if it does. Otherwise it
4078 * will return -ENOSPC.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004079 */
Josef Bacik663350a2011-11-03 22:54:25 -04004080static int may_commit_transaction(struct btrfs_root *root,
4081 struct btrfs_space_info *space_info,
4082 u64 bytes, int force)
4083{
4084 struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv;
4085 struct btrfs_trans_handle *trans;
4086
4087 trans = (struct btrfs_trans_handle *)current->journal_info;
4088 if (trans)
4089 return -EAGAIN;
4090
4091 if (force)
4092 goto commit;
4093
4094 /* See if there is enough pinned space to make this reservation */
4095 spin_lock(&space_info->lock);
Josef Bacikb150a4f2013-06-19 15:00:04 -04004096 if (percpu_counter_compare(&space_info->total_bytes_pinned,
4097 bytes) >= 0) {
Josef Bacik663350a2011-11-03 22:54:25 -04004098 spin_unlock(&space_info->lock);
4099 goto commit;
4100 }
4101 spin_unlock(&space_info->lock);
4102
4103 /*
4104 * See if there is some space in the delayed insertion reservation for
4105 * this reservation.
4106 */
4107 if (space_info != delayed_rsv->space_info)
4108 return -ENOSPC;
4109
Liu Bod9b02182012-02-16 18:34:39 +08004110 spin_lock(&space_info->lock);
Josef Bacik663350a2011-11-03 22:54:25 -04004111 spin_lock(&delayed_rsv->lock);
Josef Bacikb150a4f2013-06-19 15:00:04 -04004112 if (percpu_counter_compare(&space_info->total_bytes_pinned,
4113 bytes - delayed_rsv->size) >= 0) {
Josef Bacik663350a2011-11-03 22:54:25 -04004114 spin_unlock(&delayed_rsv->lock);
Liu Bod9b02182012-02-16 18:34:39 +08004115 spin_unlock(&space_info->lock);
Josef Bacik663350a2011-11-03 22:54:25 -04004116 return -ENOSPC;
4117 }
4118 spin_unlock(&delayed_rsv->lock);
Liu Bod9b02182012-02-16 18:34:39 +08004119 spin_unlock(&space_info->lock);
Josef Bacik663350a2011-11-03 22:54:25 -04004120
4121commit:
4122 trans = btrfs_join_transaction(root);
4123 if (IS_ERR(trans))
4124 return -ENOSPC;
4125
4126 return btrfs_commit_transaction(trans, root);
4127}
4128
Josef Bacik96c3f432012-06-21 14:05:49 -04004129enum flush_state {
Josef Bacik67b0fd62012-09-24 13:42:00 -04004130 FLUSH_DELAYED_ITEMS_NR = 1,
4131 FLUSH_DELAYED_ITEMS = 2,
4132 FLUSH_DELALLOC = 3,
4133 FLUSH_DELALLOC_WAIT = 4,
Josef Bacikea658ba2012-09-11 16:57:25 -04004134 ALLOC_CHUNK = 5,
4135 COMMIT_TRANS = 6,
Josef Bacik96c3f432012-06-21 14:05:49 -04004136};
4137
4138static int flush_space(struct btrfs_root *root,
4139 struct btrfs_space_info *space_info, u64 num_bytes,
4140 u64 orig_bytes, int state)
4141{
4142 struct btrfs_trans_handle *trans;
4143 int nr;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004144 int ret = 0;
Josef Bacik96c3f432012-06-21 14:05:49 -04004145
4146 switch (state) {
Josef Bacik96c3f432012-06-21 14:05:49 -04004147 case FLUSH_DELAYED_ITEMS_NR:
4148 case FLUSH_DELAYED_ITEMS:
4149 if (state == FLUSH_DELAYED_ITEMS_NR) {
4150 u64 bytes = btrfs_calc_trans_metadata_size(root, 1);
4151
4152 nr = (int)div64_u64(num_bytes, bytes);
4153 if (!nr)
4154 nr = 1;
4155 nr *= 2;
4156 } else {
4157 nr = -1;
4158 }
4159 trans = btrfs_join_transaction(root);
4160 if (IS_ERR(trans)) {
4161 ret = PTR_ERR(trans);
4162 break;
4163 }
4164 ret = btrfs_run_delayed_items_nr(trans, root, nr);
4165 btrfs_end_transaction(trans, root);
4166 break;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004167 case FLUSH_DELALLOC:
4168 case FLUSH_DELALLOC_WAIT:
4169 shrink_delalloc(root, num_bytes, orig_bytes,
4170 state == FLUSH_DELALLOC_WAIT);
4171 break;
Josef Bacikea658ba2012-09-11 16:57:25 -04004172 case ALLOC_CHUNK:
4173 trans = btrfs_join_transaction(root);
4174 if (IS_ERR(trans)) {
4175 ret = PTR_ERR(trans);
4176 break;
4177 }
4178 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Josef Bacikea658ba2012-09-11 16:57:25 -04004179 btrfs_get_alloc_profile(root, 0),
4180 CHUNK_ALLOC_NO_FORCE);
4181 btrfs_end_transaction(trans, root);
4182 if (ret == -ENOSPC)
4183 ret = 0;
4184 break;
Josef Bacik96c3f432012-06-21 14:05:49 -04004185 case COMMIT_TRANS:
4186 ret = may_commit_transaction(root, space_info, orig_bytes, 0);
4187 break;
4188 default:
4189 ret = -ENOSPC;
4190 break;
4191 }
4192
4193 return ret;
4194}
Josef Bacik663350a2011-11-03 22:54:25 -04004195/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004196 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
4197 * @root - the root we're allocating for
4198 * @block_rsv - the block_rsv we're allocating for
4199 * @orig_bytes - the number of bytes we want
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04004200 * @flush - whether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004201 *
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004202 * This will reserve orgi_bytes number of bytes from the space info associated
4203 * with the block_rsv. If there is not enough space it will make an attempt to
4204 * flush out space to make room. It will do this by flushing delalloc if
4205 * possible or committing the transaction. If flush is 0 then no attempts to
4206 * regain reservations will be made and this will fail if there is not enough
4207 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004208 */
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004209static int reserve_metadata_bytes(struct btrfs_root *root,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004210 struct btrfs_block_rsv *block_rsv,
Miao Xie08e007d2012-10-16 11:33:38 +00004211 u64 orig_bytes,
4212 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004213{
4214 struct btrfs_space_info *space_info = block_rsv->space_info;
Josef Bacik2bf64752011-09-26 17:12:22 -04004215 u64 used;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004216 u64 num_bytes = orig_bytes;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004217 int flush_state = FLUSH_DELAYED_ITEMS_NR;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004218 int ret = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004219 bool flushing = false;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004220
4221again:
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004222 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004223 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004224 /*
Miao Xie08e007d2012-10-16 11:33:38 +00004225 * We only want to wait if somebody other than us is flushing and we
4226 * are actually allowed to flush all things.
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004227 */
Miao Xie08e007d2012-10-16 11:33:38 +00004228 while (flush == BTRFS_RESERVE_FLUSH_ALL && !flushing &&
4229 space_info->flush) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004230 spin_unlock(&space_info->lock);
4231 /*
4232 * If we have a trans handle we can't wait because the flusher
4233 * may have to commit the transaction, which would mean we would
4234 * deadlock since we are waiting for the flusher to finish, but
4235 * hold the current transaction open.
4236 */
Josef Bacik663350a2011-11-03 22:54:25 -04004237 if (current->journal_info)
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004238 return -EAGAIN;
Arne Jansenb9688bb2012-04-18 10:27:16 +02004239 ret = wait_event_killable(space_info->wait, !space_info->flush);
4240 /* Must have been killed, return */
4241 if (ret)
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004242 return -EINTR;
4243
4244 spin_lock(&space_info->lock);
4245 }
4246
4247 ret = -ENOSPC;
Josef Bacik2bf64752011-09-26 17:12:22 -04004248 used = space_info->bytes_used + space_info->bytes_reserved +
4249 space_info->bytes_pinned + space_info->bytes_readonly +
4250 space_info->bytes_may_use;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004251
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004252 /*
4253 * The idea here is that we've not already over-reserved the block group
4254 * then we can go ahead and save our reservation first and then start
4255 * flushing if we need to. Otherwise if we've already overcommitted
4256 * lets start flushing stuff first and then come back and try to make
4257 * our reservation.
4258 */
Josef Bacik2bf64752011-09-26 17:12:22 -04004259 if (used <= space_info->total_bytes) {
4260 if (used + orig_bytes <= space_info->total_bytes) {
Josef Bacikfb25e912011-07-26 17:00:46 -04004261 space_info->bytes_may_use += orig_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004262 trace_btrfs_space_reservation(root->fs_info,
Liu Bo2bcc0322012-03-29 09:57:44 -04004263 "space_info", space_info->flags, orig_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004264 ret = 0;
4265 } else {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004266 /*
4267 * Ok set num_bytes to orig_bytes since we aren't
4268 * overocmmitted, this way we only try and reclaim what
4269 * we need.
4270 */
4271 num_bytes = orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004272 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004273 } else {
4274 /*
4275 * Ok we're over committed, set num_bytes to the overcommitted
4276 * amount plus the amount of bytes that we need for this
4277 * reservation.
4278 */
Josef Bacik2bf64752011-09-26 17:12:22 -04004279 num_bytes = used - space_info->total_bytes +
Josef Bacik96c3f432012-06-21 14:05:49 -04004280 (orig_bytes * 2);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004281 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004282
Josef Bacik44734ed2012-09-28 16:04:19 -04004283 if (ret && can_overcommit(root, space_info, orig_bytes, flush)) {
4284 space_info->bytes_may_use += orig_bytes;
4285 trace_btrfs_space_reservation(root->fs_info, "space_info",
4286 space_info->flags, orig_bytes,
4287 1);
4288 ret = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04004289 }
4290
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004291 /*
4292 * Couldn't make our reservation, save our place so while we're trying
4293 * to reclaim space we can actually use it instead of somebody else
4294 * stealing it from us.
Miao Xie08e007d2012-10-16 11:33:38 +00004295 *
4296 * We make the other tasks wait for the flush only when we can flush
4297 * all things.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004298 */
Josef Bacik72bcd992012-12-18 15:16:34 -05004299 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004300 flushing = true;
4301 space_info->flush = 1;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004302 }
4303
Yan, Zhengf0486c62010-05-16 10:46:25 -04004304 spin_unlock(&space_info->lock);
4305
Miao Xie08e007d2012-10-16 11:33:38 +00004306 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004307 goto out;
4308
Josef Bacik96c3f432012-06-21 14:05:49 -04004309 ret = flush_space(root, space_info, num_bytes, orig_bytes,
4310 flush_state);
4311 flush_state++;
Miao Xie08e007d2012-10-16 11:33:38 +00004312
4313 /*
4314 * If we are FLUSH_LIMIT, we can not flush delalloc, or the deadlock
4315 * would happen. So skip delalloc flush.
4316 */
4317 if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4318 (flush_state == FLUSH_DELALLOC ||
4319 flush_state == FLUSH_DELALLOC_WAIT))
4320 flush_state = ALLOC_CHUNK;
4321
Josef Bacik96c3f432012-06-21 14:05:49 -04004322 if (!ret)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004323 goto again;
Miao Xie08e007d2012-10-16 11:33:38 +00004324 else if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4325 flush_state < COMMIT_TRANS)
4326 goto again;
4327 else if (flush == BTRFS_RESERVE_FLUSH_ALL &&
4328 flush_state <= COMMIT_TRANS)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004329 goto again;
4330
4331out:
Josef Bacik5d803662013-02-07 16:06:02 -05004332 if (ret == -ENOSPC &&
4333 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
4334 struct btrfs_block_rsv *global_rsv =
4335 &root->fs_info->global_block_rsv;
4336
4337 if (block_rsv != global_rsv &&
4338 !block_rsv_use_bytes(global_rsv, orig_bytes))
4339 ret = 0;
4340 }
Jeff Mahoneycab45e22013-10-16 16:27:01 -04004341 if (ret == -ENOSPC)
4342 trace_btrfs_space_reservation(root->fs_info,
4343 "space_info:enospc",
4344 space_info->flags, orig_bytes, 1);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004345 if (flushing) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004346 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004347 space_info->flush = 0;
4348 wake_up_all(&space_info->wait);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004349 spin_unlock(&space_info->lock);
4350 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004351 return ret;
4352}
4353
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004354static struct btrfs_block_rsv *get_block_rsv(
4355 const struct btrfs_trans_handle *trans,
4356 const struct btrfs_root *root)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004357{
Josef Bacik4c13d752011-08-30 11:31:29 -04004358 struct btrfs_block_rsv *block_rsv = NULL;
4359
Josef Bacik0e721102012-06-26 16:13:18 -04004360 if (root->ref_cows)
4361 block_rsv = trans->block_rsv;
4362
4363 if (root == root->fs_info->csum_root && trans->adding_csums)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004364 block_rsv = trans->block_rsv;
Josef Bacik4c13d752011-08-30 11:31:29 -04004365
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004366 if (root == root->fs_info->uuid_root)
4367 block_rsv = trans->block_rsv;
4368
Josef Bacik4c13d752011-08-30 11:31:29 -04004369 if (!block_rsv)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004370 block_rsv = root->block_rsv;
4371
4372 if (!block_rsv)
4373 block_rsv = &root->fs_info->empty_block_rsv;
4374
4375 return block_rsv;
4376}
4377
4378static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
4379 u64 num_bytes)
4380{
4381 int ret = -ENOSPC;
4382 spin_lock(&block_rsv->lock);
4383 if (block_rsv->reserved >= num_bytes) {
4384 block_rsv->reserved -= num_bytes;
4385 if (block_rsv->reserved < block_rsv->size)
4386 block_rsv->full = 0;
4387 ret = 0;
4388 }
4389 spin_unlock(&block_rsv->lock);
4390 return ret;
4391}
4392
4393static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
4394 u64 num_bytes, int update_size)
4395{
4396 spin_lock(&block_rsv->lock);
4397 block_rsv->reserved += num_bytes;
4398 if (update_size)
4399 block_rsv->size += num_bytes;
4400 else if (block_rsv->reserved >= block_rsv->size)
4401 block_rsv->full = 1;
4402 spin_unlock(&block_rsv->lock);
4403}
4404
Josef Bacikd52be812013-05-29 14:54:47 -04004405int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
4406 struct btrfs_block_rsv *dest, u64 num_bytes,
4407 int min_factor)
4408{
4409 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
4410 u64 min_bytes;
4411
4412 if (global_rsv->space_info != dest->space_info)
4413 return -ENOSPC;
4414
4415 spin_lock(&global_rsv->lock);
4416 min_bytes = div_factor(global_rsv->size, min_factor);
4417 if (global_rsv->reserved < min_bytes + num_bytes) {
4418 spin_unlock(&global_rsv->lock);
4419 return -ENOSPC;
4420 }
4421 global_rsv->reserved -= num_bytes;
4422 if (global_rsv->reserved < global_rsv->size)
4423 global_rsv->full = 0;
4424 spin_unlock(&global_rsv->lock);
4425
4426 block_rsv_add_bytes(dest, num_bytes, 1);
4427 return 0;
4428}
4429
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004430static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
4431 struct btrfs_block_rsv *block_rsv,
David Sterba62a45b62011-04-20 15:52:26 +02004432 struct btrfs_block_rsv *dest, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004433{
4434 struct btrfs_space_info *space_info = block_rsv->space_info;
4435
4436 spin_lock(&block_rsv->lock);
4437 if (num_bytes == (u64)-1)
4438 num_bytes = block_rsv->size;
4439 block_rsv->size -= num_bytes;
4440 if (block_rsv->reserved >= block_rsv->size) {
4441 num_bytes = block_rsv->reserved - block_rsv->size;
4442 block_rsv->reserved = block_rsv->size;
4443 block_rsv->full = 1;
4444 } else {
4445 num_bytes = 0;
4446 }
4447 spin_unlock(&block_rsv->lock);
4448
4449 if (num_bytes > 0) {
4450 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00004451 spin_lock(&dest->lock);
4452 if (!dest->full) {
4453 u64 bytes_to_add;
4454
4455 bytes_to_add = dest->size - dest->reserved;
4456 bytes_to_add = min(num_bytes, bytes_to_add);
4457 dest->reserved += bytes_to_add;
4458 if (dest->reserved >= dest->size)
4459 dest->full = 1;
4460 num_bytes -= bytes_to_add;
4461 }
4462 spin_unlock(&dest->lock);
4463 }
4464 if (num_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04004465 spin_lock(&space_info->lock);
Josef Bacikfb25e912011-07-26 17:00:46 -04004466 space_info->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004467 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004468 space_info->flags, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004469 spin_unlock(&space_info->lock);
4470 }
4471 }
4472}
4473
4474static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src,
4475 struct btrfs_block_rsv *dst, u64 num_bytes)
4476{
4477 int ret;
4478
4479 ret = block_rsv_use_bytes(src, num_bytes);
4480 if (ret)
4481 return ret;
4482
4483 block_rsv_add_bytes(dst, num_bytes, 1);
4484 return 0;
4485}
4486
Miao Xie66d8f3d2012-09-06 04:02:28 -06004487void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004488{
4489 memset(rsv, 0, sizeof(*rsv));
4490 spin_lock_init(&rsv->lock);
Miao Xie66d8f3d2012-09-06 04:02:28 -06004491 rsv->type = type;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004492}
4493
Miao Xie66d8f3d2012-09-06 04:02:28 -06004494struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root,
4495 unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004496{
4497 struct btrfs_block_rsv *block_rsv;
4498 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004499
4500 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
4501 if (!block_rsv)
4502 return NULL;
4503
Miao Xie66d8f3d2012-09-06 04:02:28 -06004504 btrfs_init_block_rsv(block_rsv, type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004505 block_rsv->space_info = __find_space_info(fs_info,
4506 BTRFS_BLOCK_GROUP_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004507 return block_rsv;
4508}
4509
4510void btrfs_free_block_rsv(struct btrfs_root *root,
4511 struct btrfs_block_rsv *rsv)
4512{
Josef Bacik2aaa6652012-08-29 14:27:18 -04004513 if (!rsv)
4514 return;
Josef Bacikdabdb642011-08-08 12:50:18 -04004515 btrfs_block_rsv_release(root, rsv, (u64)-1);
4516 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004517}
4518
Miao Xie08e007d2012-10-16 11:33:38 +00004519int btrfs_block_rsv_add(struct btrfs_root *root,
4520 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
4521 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004522{
4523 int ret;
4524
4525 if (num_bytes == 0)
4526 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004527
Miao Xie61b520a2011-11-10 20:45:05 -05004528 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004529 if (!ret) {
4530 block_rsv_add_bytes(block_rsv, num_bytes, 1);
4531 return 0;
4532 }
4533
Yan, Zhengf0486c62010-05-16 10:46:25 -04004534 return ret;
4535}
4536
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004537int btrfs_block_rsv_check(struct btrfs_root *root,
Josef Bacik36ba0222011-10-18 12:15:48 -04004538 struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004539{
4540 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004541 int ret = -ENOSPC;
4542
4543 if (!block_rsv)
4544 return 0;
4545
4546 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04004547 num_bytes = div_factor(block_rsv->size, min_factor);
4548 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004549 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004550 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004551
Josef Bacik36ba0222011-10-18 12:15:48 -04004552 return ret;
4553}
4554
Miao Xie08e007d2012-10-16 11:33:38 +00004555int btrfs_block_rsv_refill(struct btrfs_root *root,
4556 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
4557 enum btrfs_reserve_flush_enum flush)
Josef Bacik36ba0222011-10-18 12:15:48 -04004558{
4559 u64 num_bytes = 0;
4560 int ret = -ENOSPC;
4561
4562 if (!block_rsv)
4563 return 0;
4564
4565 spin_lock(&block_rsv->lock);
4566 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04004567 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004568 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04004569 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04004570 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004571 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04004572
Yan, Zhengf0486c62010-05-16 10:46:25 -04004573 if (!ret)
4574 return 0;
4575
Miao Xieaa38a712011-11-18 17:43:00 +08004576 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Josef Bacikdabdb642011-08-08 12:50:18 -04004577 if (!ret) {
4578 block_rsv_add_bytes(block_rsv, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004579 return 0;
4580 }
4581
Josef Bacik13553e52011-08-08 13:33:21 -04004582 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004583}
4584
4585int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv,
4586 struct btrfs_block_rsv *dst_rsv,
4587 u64 num_bytes)
4588{
4589 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
4590}
4591
4592void btrfs_block_rsv_release(struct btrfs_root *root,
4593 struct btrfs_block_rsv *block_rsv,
4594 u64 num_bytes)
4595{
4596 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
4597 if (global_rsv->full || global_rsv == block_rsv ||
4598 block_rsv->space_info != global_rsv->space_info)
4599 global_rsv = NULL;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004600 block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv,
4601 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004602}
4603
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004604/*
4605 * helper to calculate size of global block reservation.
4606 * the desired value is sum of space used by extent tree,
4607 * checksum tree and root tree
4608 */
4609static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info)
4610{
4611 struct btrfs_space_info *sinfo;
4612 u64 num_bytes;
4613 u64 meta_used;
4614 u64 data_used;
David Sterba6c417612011-04-13 15:41:04 +02004615 int csum_size = btrfs_super_csum_size(fs_info->super_copy);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004616
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004617 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA);
4618 spin_lock(&sinfo->lock);
4619 data_used = sinfo->bytes_used;
4620 spin_unlock(&sinfo->lock);
4621
4622 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4623 spin_lock(&sinfo->lock);
Josef Bacik6d487552010-10-15 15:13:32 -04004624 if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA)
4625 data_used = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004626 meta_used = sinfo->bytes_used;
4627 spin_unlock(&sinfo->lock);
4628
4629 num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) *
4630 csum_size * 2;
4631 num_bytes += div64_u64(data_used + meta_used, 50);
4632
4633 if (num_bytes * 3 > meta_used)
Chris Mason8e62c2d2012-04-12 13:46:48 -04004634 num_bytes = div64_u64(meta_used, 3);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004635
4636 return ALIGN(num_bytes, fs_info->extent_root->leafsize << 10);
4637}
4638
4639static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
4640{
4641 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
4642 struct btrfs_space_info *sinfo = block_rsv->space_info;
4643 u64 num_bytes;
4644
4645 num_bytes = calc_global_metadata_size(fs_info);
4646
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004647 spin_lock(&sinfo->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04004648 spin_lock(&block_rsv->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004649
Josef Bacikfdf30d12013-03-26 15:31:45 -04004650 block_rsv->size = min_t(u64, num_bytes, 512 * 1024 * 1024);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004651
4652 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
Josef Bacik6d487552010-10-15 15:13:32 -04004653 sinfo->bytes_reserved + sinfo->bytes_readonly +
4654 sinfo->bytes_may_use;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004655
4656 if (sinfo->total_bytes > num_bytes) {
4657 num_bytes = sinfo->total_bytes - num_bytes;
4658 block_rsv->reserved += num_bytes;
Josef Bacikfb25e912011-07-26 17:00:46 -04004659 sinfo->bytes_may_use += num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004660 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004661 sinfo->flags, num_bytes, 1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004662 }
4663
4664 if (block_rsv->reserved >= block_rsv->size) {
4665 num_bytes = block_rsv->reserved - block_rsv->size;
Josef Bacikfb25e912011-07-26 17:00:46 -04004666 sinfo->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004667 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004668 sinfo->flags, num_bytes, 0);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004669 block_rsv->reserved = block_rsv->size;
4670 block_rsv->full = 1;
4671 }
David Sterba182608c2011-05-05 13:13:16 +02004672
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004673 spin_unlock(&block_rsv->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04004674 spin_unlock(&sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004675}
4676
Yan, Zhengf0486c62010-05-16 10:46:25 -04004677static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
4678{
4679 struct btrfs_space_info *space_info;
4680
4681 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4682 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004683
4684 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004685 fs_info->global_block_rsv.space_info = space_info;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004686 fs_info->delalloc_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004687 fs_info->trans_block_rsv.space_info = space_info;
4688 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04004689 fs_info->delayed_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004690
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004691 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
4692 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
4693 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
4694 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Stefan Behrens3a6cad92013-05-16 14:48:19 +00004695 if (fs_info->quota_root)
4696 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004697 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004698
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004699 update_global_block_rsv(fs_info);
4700}
4701
4702static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
4703{
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004704 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
4705 (u64)-1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004706 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
4707 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
4708 WARN_ON(fs_info->trans_block_rsv.size > 0);
4709 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
4710 WARN_ON(fs_info->chunk_block_rsv.size > 0);
4711 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04004712 WARN_ON(fs_info->delayed_block_rsv.size > 0);
4713 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04004714}
4715
Yan, Zhenga22285a2010-05-16 10:48:46 -04004716void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
4717 struct btrfs_root *root)
4718{
Josef Bacik0e721102012-06-26 16:13:18 -04004719 if (!trans->block_rsv)
4720 return;
4721
Yan, Zhenga22285a2010-05-16 10:48:46 -04004722 if (!trans->bytes_reserved)
4723 return;
4724
Chris Masone77266e2012-02-24 10:39:05 -05004725 trace_btrfs_space_reservation(root->fs_info, "transaction",
Liu Bo2bcc0322012-03-29 09:57:44 -04004726 trans->transid, trans->bytes_reserved, 0);
Josef Bacikb24e03d2011-10-14 14:40:17 -04004727 btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004728 trans->bytes_reserved = 0;
4729}
4730
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004731/* Can only return 0 or -ENOSPC */
Yan, Zhengd68fc572010-05-16 10:49:58 -04004732int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
4733 struct inode *inode)
4734{
4735 struct btrfs_root *root = BTRFS_I(inode)->root;
4736 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
4737 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
4738
4739 /*
Josef Bacikfcb80c22011-05-03 10:40:22 -04004740 * We need to hold space in order to delete our orphan item once we've
4741 * added it, so this takes the reservation so we can release it later
4742 * when we are truly done with the orphan item.
Yan, Zhengd68fc572010-05-16 10:49:58 -04004743 */
Chris Masonff5714c2011-05-28 07:00:39 -04004744 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004745 trace_btrfs_space_reservation(root->fs_info, "orphan",
4746 btrfs_ino(inode), num_bytes, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04004747 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
4748}
4749
4750void btrfs_orphan_release_metadata(struct inode *inode)
4751{
4752 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonff5714c2011-05-28 07:00:39 -04004753 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004754 trace_btrfs_space_reservation(root->fs_info, "orphan",
4755 btrfs_ino(inode), num_bytes, 0);
Yan, Zhengd68fc572010-05-16 10:49:58 -04004756 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
4757}
4758
Miao Xied5c12072013-02-28 10:04:33 +00004759/*
4760 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
4761 * root: the root of the parent directory
4762 * rsv: block reservation
4763 * items: the number of items that we need do reservation
4764 * qgroup_reserved: used to return the reserved size in qgroup
4765 *
4766 * This function is used to reserve the space for snapshot/subvolume
4767 * creation and deletion. Those operations are different with the
4768 * common file/directory operations, they change two fs/file trees
4769 * and root tree, the number of items that the qgroup reserves is
4770 * different with the free space reservation. So we can not use
4771 * the space reseravtion mechanism in start_transaction().
4772 */
4773int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
4774 struct btrfs_block_rsv *rsv,
4775 int items,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04004776 u64 *qgroup_reserved,
4777 bool use_global_rsv)
Yan, Zhenga22285a2010-05-16 10:48:46 -04004778{
Miao Xied5c12072013-02-28 10:04:33 +00004779 u64 num_bytes;
4780 int ret;
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04004781 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Miao Xied5c12072013-02-28 10:04:33 +00004782
4783 if (root->fs_info->quota_enabled) {
4784 /* One for parent inode, two for dir entries */
4785 num_bytes = 3 * root->leafsize;
4786 ret = btrfs_qgroup_reserve(root, num_bytes);
4787 if (ret)
4788 return ret;
4789 } else {
4790 num_bytes = 0;
4791 }
4792
4793 *qgroup_reserved = num_bytes;
4794
4795 num_bytes = btrfs_calc_trans_metadata_size(root, items);
4796 rsv->space_info = __find_space_info(root->fs_info,
4797 BTRFS_BLOCK_GROUP_METADATA);
4798 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
4799 BTRFS_RESERVE_FLUSH_ALL);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04004800
4801 if (ret == -ENOSPC && use_global_rsv)
4802 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes);
4803
Miao Xied5c12072013-02-28 10:04:33 +00004804 if (ret) {
4805 if (*qgroup_reserved)
4806 btrfs_qgroup_free(root, *qgroup_reserved);
4807 }
4808
4809 return ret;
4810}
4811
4812void btrfs_subvolume_release_metadata(struct btrfs_root *root,
4813 struct btrfs_block_rsv *rsv,
4814 u64 qgroup_reserved)
4815{
4816 btrfs_block_rsv_release(root, rsv, (u64)-1);
4817 if (qgroup_reserved)
4818 btrfs_qgroup_free(root, qgroup_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004819}
4820
Josef Bacik7709cde2011-08-04 10:25:02 -04004821/**
4822 * drop_outstanding_extent - drop an outstanding extent
4823 * @inode: the inode we're dropping the extent for
4824 *
4825 * This is called when we are freeing up an outstanding extent, either called
4826 * after an error or after an extent is written. This will return the number of
4827 * reserved extents that need to be freed. This must be called with
4828 * BTRFS_I(inode)->lock held.
4829 */
Josef Bacik9e0baf62011-07-15 15:16:44 +00004830static unsigned drop_outstanding_extent(struct inode *inode)
4831{
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004832 unsigned drop_inode_space = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004833 unsigned dropped_extents = 0;
4834
Josef Bacik9e0baf62011-07-15 15:16:44 +00004835 BUG_ON(!BTRFS_I(inode)->outstanding_extents);
4836 BTRFS_I(inode)->outstanding_extents--;
4837
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004838 if (BTRFS_I(inode)->outstanding_extents == 0 &&
Josef Bacik72ac3c02012-05-23 14:13:11 -04004839 test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
4840 &BTRFS_I(inode)->runtime_flags))
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004841 drop_inode_space = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004842
Josef Bacik9e0baf62011-07-15 15:16:44 +00004843 /*
4844 * If we have more or the same amount of outsanding extents than we have
4845 * reserved then we need to leave the reserved extents count alone.
4846 */
4847 if (BTRFS_I(inode)->outstanding_extents >=
4848 BTRFS_I(inode)->reserved_extents)
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004849 return drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004850
4851 dropped_extents = BTRFS_I(inode)->reserved_extents -
4852 BTRFS_I(inode)->outstanding_extents;
4853 BTRFS_I(inode)->reserved_extents -= dropped_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004854 return dropped_extents + drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004855}
4856
Josef Bacik7709cde2011-08-04 10:25:02 -04004857/**
4858 * calc_csum_metadata_size - return the amount of metada space that must be
4859 * reserved/free'd for the given bytes.
4860 * @inode: the inode we're manipulating
4861 * @num_bytes: the number of bytes in question
4862 * @reserve: 1 if we are reserving space, 0 if we are freeing space
4863 *
4864 * This adjusts the number of csum_bytes in the inode and then returns the
4865 * correct amount of metadata that must either be reserved or freed. We
4866 * calculate how many checksums we can fit into one leaf and then divide the
4867 * number of bytes that will need to be checksumed by this value to figure out
4868 * how many checksums will be required. If we are adding bytes then the number
4869 * may go up and we will return the number of additional bytes that must be
4870 * reserved. If it is going down we will return the number of bytes that must
4871 * be freed.
4872 *
4873 * This must be called with BTRFS_I(inode)->lock held.
4874 */
4875static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes,
4876 int reserve)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004877{
Josef Bacik7709cde2011-08-04 10:25:02 -04004878 struct btrfs_root *root = BTRFS_I(inode)->root;
4879 u64 csum_size;
4880 int num_csums_per_leaf;
4881 int num_csums;
4882 int old_csums;
4883
4884 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM &&
4885 BTRFS_I(inode)->csum_bytes == 0)
4886 return 0;
4887
4888 old_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize);
4889 if (reserve)
4890 BTRFS_I(inode)->csum_bytes += num_bytes;
4891 else
4892 BTRFS_I(inode)->csum_bytes -= num_bytes;
4893 csum_size = BTRFS_LEAF_DATA_SIZE(root) - sizeof(struct btrfs_item);
4894 num_csums_per_leaf = (int)div64_u64(csum_size,
4895 sizeof(struct btrfs_csum_item) +
4896 sizeof(struct btrfs_disk_key));
4897 num_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize);
4898 num_csums = num_csums + num_csums_per_leaf - 1;
4899 num_csums = num_csums / num_csums_per_leaf;
4900
4901 old_csums = old_csums + num_csums_per_leaf - 1;
4902 old_csums = old_csums / num_csums_per_leaf;
4903
4904 /* No change, no need to reserve more */
4905 if (old_csums == num_csums)
4906 return 0;
4907
4908 if (reserve)
4909 return btrfs_calc_trans_metadata_size(root,
4910 num_csums - old_csums);
4911
4912 return btrfs_calc_trans_metadata_size(root, old_csums - num_csums);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004913}
4914
4915int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
4916{
4917 struct btrfs_root *root = BTRFS_I(inode)->root;
4918 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004919 u64 to_reserve = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05004920 u64 csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004921 unsigned nr_extents = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05004922 int extra_reserve = 0;
Miao Xie08e007d2012-10-16 11:33:38 +00004923 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
Jan Schmidteb6b88d2013-01-27 23:26:00 -07004924 int ret = 0;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05004925 bool delalloc_lock = true;
Wang Shilong88e081bf2013-03-01 11:36:01 +00004926 u64 to_free = 0;
4927 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004928
Josef Bacikc64c2bd2012-12-14 13:48:14 -05004929 /* If we are a free space inode we need to not flush since we will be in
4930 * the middle of a transaction commit. We also don't need the delalloc
4931 * mutex since we won't race with anybody. We need this mostly to make
4932 * lockdep shut its filthy mouth.
4933 */
4934 if (btrfs_is_free_space_inode(inode)) {
Miao Xie08e007d2012-10-16 11:33:38 +00004935 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05004936 delalloc_lock = false;
4937 }
Josef Bacikc09544e2011-08-30 10:19:10 -04004938
Miao Xie08e007d2012-10-16 11:33:38 +00004939 if (flush != BTRFS_RESERVE_NO_FLUSH &&
4940 btrfs_transaction_in_commit(root->fs_info))
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004941 schedule_timeout(1);
4942
Josef Bacikc64c2bd2012-12-14 13:48:14 -05004943 if (delalloc_lock)
4944 mutex_lock(&BTRFS_I(inode)->delalloc_mutex);
4945
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004946 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004947
Josef Bacik9e0baf62011-07-15 15:16:44 +00004948 spin_lock(&BTRFS_I(inode)->lock);
4949 BTRFS_I(inode)->outstanding_extents++;
Josef Bacik57a45ced2011-01-25 16:30:38 -05004950
Josef Bacik9e0baf62011-07-15 15:16:44 +00004951 if (BTRFS_I(inode)->outstanding_extents >
Josef Bacik660d3f62011-12-09 11:18:51 -05004952 BTRFS_I(inode)->reserved_extents)
Josef Bacik9e0baf62011-07-15 15:16:44 +00004953 nr_extents = BTRFS_I(inode)->outstanding_extents -
4954 BTRFS_I(inode)->reserved_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004955
4956 /*
4957 * Add an item to reserve for updating the inode when we complete the
4958 * delalloc io.
4959 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04004960 if (!test_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
4961 &BTRFS_I(inode)->runtime_flags)) {
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004962 nr_extents++;
Josef Bacik660d3f62011-12-09 11:18:51 -05004963 extra_reserve = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004964 }
4965
4966 to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04004967 to_reserve += calc_csum_metadata_size(inode, num_bytes, 1);
Josef Bacik660d3f62011-12-09 11:18:51 -05004968 csum_bytes = BTRFS_I(inode)->csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004969 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05004970
Wang Shilong88e081bf2013-03-01 11:36:01 +00004971 if (root->fs_info->quota_enabled) {
Arne Jansenc5567232011-09-14 15:44:05 +02004972 ret = btrfs_qgroup_reserve(root, num_bytes +
4973 nr_extents * root->leafsize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00004974 if (ret)
4975 goto out_fail;
Wang Shilonga9870c02013-03-01 11:33:01 +00004976 }
Arne Jansenc5567232011-09-14 15:44:05 +02004977
Wang Shilong88e081bf2013-03-01 11:36:01 +00004978 ret = reserve_metadata_bytes(root, block_rsv, to_reserve, flush);
4979 if (unlikely(ret)) {
4980 if (root->fs_info->quota_enabled)
Miao Xie4b5829a2012-12-05 10:53:25 +00004981 btrfs_qgroup_free(root, num_bytes +
4982 nr_extents * root->leafsize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00004983 goto out_fail;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004984 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004985
Josef Bacik660d3f62011-12-09 11:18:51 -05004986 spin_lock(&BTRFS_I(inode)->lock);
4987 if (extra_reserve) {
Josef Bacik72ac3c02012-05-23 14:13:11 -04004988 set_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
4989 &BTRFS_I(inode)->runtime_flags);
Josef Bacik660d3f62011-12-09 11:18:51 -05004990 nr_extents--;
4991 }
4992 BTRFS_I(inode)->reserved_extents += nr_extents;
4993 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05004994
4995 if (delalloc_lock)
4996 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
Josef Bacik660d3f62011-12-09 11:18:51 -05004997
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004998 if (to_reserve)
4999 trace_btrfs_space_reservation(root->fs_info,"delalloc",
5000 btrfs_ino(inode), to_reserve, 1);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005001 block_rsv_add_bytes(block_rsv, to_reserve, 1);
5002
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005003 return 0;
Wang Shilong88e081bf2013-03-01 11:36:01 +00005004
5005out_fail:
5006 spin_lock(&BTRFS_I(inode)->lock);
5007 dropped = drop_outstanding_extent(inode);
5008 /*
5009 * If the inodes csum_bytes is the same as the original
5010 * csum_bytes then we know we haven't raced with any free()ers
5011 * so we can just reduce our inodes csum bytes and carry on.
Wang Shilong88e081bf2013-03-01 11:36:01 +00005012 */
Josef Bacikf4881bc2013-03-25 16:03:35 -04005013 if (BTRFS_I(inode)->csum_bytes == csum_bytes) {
Wang Shilong88e081bf2013-03-01 11:36:01 +00005014 calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacikf4881bc2013-03-25 16:03:35 -04005015 } else {
5016 u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes;
5017 u64 bytes;
5018
5019 /*
5020 * This is tricky, but first we need to figure out how much we
5021 * free'd from any free-ers that occured during this
5022 * reservation, so we reset ->csum_bytes to the csum_bytes
5023 * before we dropped our lock, and then call the free for the
5024 * number of bytes that were freed while we were trying our
5025 * reservation.
5026 */
5027 bytes = csum_bytes - BTRFS_I(inode)->csum_bytes;
5028 BTRFS_I(inode)->csum_bytes = csum_bytes;
5029 to_free = calc_csum_metadata_size(inode, bytes, 0);
5030
5031
5032 /*
5033 * Now we need to see how much we would have freed had we not
5034 * been making this reservation and our ->csum_bytes were not
5035 * artificially inflated.
5036 */
5037 BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes;
5038 bytes = csum_bytes - orig_csum_bytes;
5039 bytes = calc_csum_metadata_size(inode, bytes, 0);
5040
5041 /*
5042 * Now reset ->csum_bytes to what it should be. If bytes is
5043 * more than to_free then we would have free'd more space had we
5044 * not had an artificially high ->csum_bytes, so we need to free
5045 * the remainder. If bytes is the same or less then we don't
5046 * need to do anything, the other free-ers did the correct
5047 * thing.
5048 */
5049 BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes;
5050 if (bytes > to_free)
5051 to_free = bytes - to_free;
5052 else
5053 to_free = 0;
5054 }
Wang Shilong88e081bf2013-03-01 11:36:01 +00005055 spin_unlock(&BTRFS_I(inode)->lock);
5056 if (dropped)
5057 to_free += btrfs_calc_trans_metadata_size(root, dropped);
5058
5059 if (to_free) {
5060 btrfs_block_rsv_release(root, block_rsv, to_free);
5061 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5062 btrfs_ino(inode), to_free, 0);
5063 }
5064 if (delalloc_lock)
5065 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
5066 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005067}
5068
Josef Bacik7709cde2011-08-04 10:25:02 -04005069/**
5070 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
5071 * @inode: the inode to release the reservation for
5072 * @num_bytes: the number of bytes we're releasing
5073 *
5074 * This will release the metadata reservation for an inode. This can be called
5075 * once we complete IO for a given set of bytes to release their metadata
5076 * reservations.
5077 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005078void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
5079{
5080 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005081 u64 to_free = 0;
5082 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005083
5084 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik7709cde2011-08-04 10:25:02 -04005085 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00005086 dropped = drop_outstanding_extent(inode);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005087
Miao Xie09348562013-02-07 10:12:07 +00005088 if (num_bytes)
5089 to_free = calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacik7709cde2011-08-04 10:25:02 -04005090 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00005091 if (dropped > 0)
5092 to_free += btrfs_calc_trans_metadata_size(root, dropped);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005093
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005094 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5095 btrfs_ino(inode), to_free, 0);
Arne Jansenc5567232011-09-14 15:44:05 +02005096 if (root->fs_info->quota_enabled) {
5097 btrfs_qgroup_free(root, num_bytes +
5098 dropped * root->leafsize);
5099 }
5100
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005101 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
5102 to_free);
5103}
5104
Josef Bacik7709cde2011-08-04 10:25:02 -04005105/**
5106 * btrfs_delalloc_reserve_space - reserve data and metadata space for delalloc
5107 * @inode: inode we're writing to
5108 * @num_bytes: the number of bytes we want to allocate
5109 *
5110 * This will do the following things
5111 *
5112 * o reserve space in the data space info for num_bytes
5113 * o reserve space in the metadata space info based on number of outstanding
5114 * extents and how much csums will be needed
5115 * o add to the inodes ->delalloc_bytes
5116 * o add it to the fs_info's delalloc inodes list.
5117 *
5118 * This will return 0 for success and -ENOSPC if there is no space left.
5119 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005120int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes)
5121{
5122 int ret;
5123
5124 ret = btrfs_check_data_free_space(inode, num_bytes);
5125 if (ret)
5126 return ret;
5127
5128 ret = btrfs_delalloc_reserve_metadata(inode, num_bytes);
5129 if (ret) {
5130 btrfs_free_reserved_data_space(inode, num_bytes);
5131 return ret;
5132 }
5133
5134 return 0;
5135}
5136
Josef Bacik7709cde2011-08-04 10:25:02 -04005137/**
5138 * btrfs_delalloc_release_space - release data and metadata space for delalloc
5139 * @inode: inode we're releasing space for
5140 * @num_bytes: the number of bytes we want to free up
5141 *
5142 * This must be matched with a call to btrfs_delalloc_reserve_space. This is
5143 * called in the case that we don't need the metadata AND data reservations
5144 * anymore. So if there is an error or we insert an inline extent.
5145 *
5146 * This function will release the metadata space that was not used and will
5147 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
5148 * list if there are no delalloc bytes left.
5149 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005150void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes)
5151{
5152 btrfs_delalloc_release_metadata(inode, num_bytes);
5153 btrfs_free_reserved_data_space(inode, num_bytes);
5154}
5155
Liu Boc53d6132012-12-27 09:01:19 +00005156static int update_block_group(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005157 u64 bytenr, u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04005158{
Josef Bacik0af3d002010-06-21 14:48:16 -04005159 struct btrfs_block_group_cache *cache = NULL;
Chris Mason9078a3e2007-04-26 16:46:15 -04005160 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04005161 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005162 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04005163 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04005164 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04005165
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005166 /* block accounting for super block */
Miao Xieeb73c1b2013-05-15 07:48:22 +00005167 spin_lock(&info->delalloc_root_lock);
David Sterba6c417612011-04-13 15:41:04 +02005168 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005169 if (alloc)
5170 old_val += num_bytes;
5171 else
5172 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02005173 btrfs_set_super_bytes_used(info->super_copy, old_val);
Miao Xieeb73c1b2013-05-15 07:48:22 +00005174 spin_unlock(&info->delalloc_root_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005175
Chris Masond3977122009-01-05 21:25:51 -05005176 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04005177 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05005178 if (!cache)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005179 return -ENOENT;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005180 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
5181 BTRFS_BLOCK_GROUP_RAID1 |
5182 BTRFS_BLOCK_GROUP_RAID10))
5183 factor = 2;
5184 else
5185 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04005186 /*
5187 * If this block group has free space cache written out, we
5188 * need to make sure to load it if we are removing space. This
5189 * is because we need the unpinning stage to actually add the
5190 * space back to the block group, otherwise we will leak space.
5191 */
5192 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Liu Bof6373bf2012-12-27 09:01:18 +00005193 cache_block_group(cache, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04005194
Chris Masondb945352007-10-15 16:15:53 -04005195 byte_in_group = bytenr - cache->key.objectid;
5196 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04005197
Josef Bacik25179202008-10-29 14:49:05 -04005198 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04005199 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04005200
Josef Bacik73bc1872011-10-03 14:07:49 -04005201 if (btrfs_test_opt(root, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04005202 cache->disk_cache_state < BTRFS_DC_CLEAR)
5203 cache->disk_cache_state = BTRFS_DC_CLEAR;
5204
Josef Bacik0f9dd462008-09-23 13:14:11 -04005205 cache->dirty = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04005206 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04005207 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04005208 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04005209 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04005210 btrfs_set_block_group_used(&cache->item, old_val);
5211 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04005212 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005213 cache->space_info->bytes_used += num_bytes;
5214 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04005215 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005216 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04005217 } else {
Chris Masondb945352007-10-15 16:15:53 -04005218 old_val -= num_bytes;
Chris Masonc286ac42008-07-22 23:06:41 -04005219 btrfs_set_block_group_used(&cache->item, old_val);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005220 cache->pinned += num_bytes;
5221 cache->space_info->bytes_pinned += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005222 cache->space_info->bytes_used -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04005223 cache->space_info->disk_used -= num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04005224 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005225 spin_unlock(&cache->space_info->lock);
Liu Hui1f3c79a2009-01-05 15:57:51 -05005226
Yan, Zhengf0486c62010-05-16 10:46:25 -04005227 set_extent_dirty(info->pinned_extents,
5228 bytenr, bytenr + num_bytes - 1,
5229 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04005230 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04005231 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04005232 total -= num_bytes;
5233 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005234 }
5235 return 0;
5236}
Chris Mason6324fbf2008-03-24 15:01:59 -04005237
Chris Masona061fc82008-05-07 11:43:44 -04005238static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
5239{
Josef Bacik0f9dd462008-09-23 13:14:11 -04005240 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05005241 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005242
Liu Boa1897fd2012-12-27 09:01:23 +00005243 spin_lock(&root->fs_info->block_group_cache_lock);
5244 bytenr = root->fs_info->first_logical_byte;
5245 spin_unlock(&root->fs_info->block_group_cache_lock);
5246
5247 if (bytenr < (u64)-1)
5248 return bytenr;
5249
Josef Bacik0f9dd462008-09-23 13:14:11 -04005250 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
5251 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04005252 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005253
Yan Zhengd2fb3432008-12-11 16:30:39 -05005254 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005255 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05005256
5257 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04005258}
5259
Yan, Zhengf0486c62010-05-16 10:46:25 -04005260static int pin_down_extent(struct btrfs_root *root,
5261 struct btrfs_block_group_cache *cache,
5262 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05005263{
Yan Zheng11833d62009-09-11 16:11:19 -04005264 spin_lock(&cache->space_info->lock);
5265 spin_lock(&cache->lock);
5266 cache->pinned += num_bytes;
5267 cache->space_info->bytes_pinned += num_bytes;
5268 if (reserved) {
5269 cache->reserved -= num_bytes;
5270 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05005271 }
Yan Zheng11833d62009-09-11 16:11:19 -04005272 spin_unlock(&cache->lock);
5273 spin_unlock(&cache->space_info->lock);
5274
Yan, Zhengf0486c62010-05-16 10:46:25 -04005275 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
5276 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Josef Bacik0be5dc62013-10-07 15:18:52 -04005277 if (reserved)
5278 trace_btrfs_reserved_extent_free(root, bytenr, num_bytes);
Yan324ae4d2007-11-16 14:57:08 -05005279 return 0;
5280}
Chris Mason9078a3e2007-04-26 16:46:15 -04005281
Yan, Zhengf0486c62010-05-16 10:46:25 -04005282/*
5283 * this function must be called within transaction
5284 */
5285int btrfs_pin_extent(struct btrfs_root *root,
5286 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04005287{
Yan, Zhengf0486c62010-05-16 10:46:25 -04005288 struct btrfs_block_group_cache *cache;
5289
5290 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005291 BUG_ON(!cache); /* Logic error */
Yan, Zhengf0486c62010-05-16 10:46:25 -04005292
5293 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
5294
5295 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04005296 return 0;
5297}
Zheng Yane8569812008-09-26 10:05:48 -04005298
Yan, Zhengf0486c62010-05-16 10:46:25 -04005299/*
Chris Masone688b7252011-10-31 20:52:39 -04005300 * this function must be called within transaction
Yan, Zhengf0486c62010-05-16 10:46:25 -04005301 */
Liu Bodcfac412012-12-27 09:01:20 +00005302int btrfs_pin_extent_for_log_replay(struct btrfs_root *root,
Chris Masone688b7252011-10-31 20:52:39 -04005303 u64 bytenr, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005304{
Chris Masone688b7252011-10-31 20:52:39 -04005305 struct btrfs_block_group_cache *cache;
Josef Bacikb50c6e22013-04-25 15:55:30 -04005306 int ret;
Chris Masone688b7252011-10-31 20:52:39 -04005307
5308 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005309 if (!cache)
5310 return -EINVAL;
Chris Masone688b7252011-10-31 20:52:39 -04005311
5312 /*
5313 * pull in the free space cache (if any) so that our pin
5314 * removes the free space from the cache. We have load_only set
5315 * to one because the slow code to read in the free extents does check
5316 * the pinned extents.
5317 */
Liu Bof6373bf2012-12-27 09:01:18 +00005318 cache_block_group(cache, 1);
Chris Masone688b7252011-10-31 20:52:39 -04005319
5320 pin_down_extent(root, cache, bytenr, num_bytes, 0);
5321
5322 /* remove us from the free space cache (if we're there at all) */
Josef Bacikb50c6e22013-04-25 15:55:30 -04005323 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
Chris Masone688b7252011-10-31 20:52:39 -04005324 btrfs_put_block_group(cache);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005325 return ret;
Chris Masone688b7252011-10-31 20:52:39 -04005326}
5327
Josef Bacik8c2a1a32013-06-06 13:19:32 -04005328static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes)
5329{
5330 int ret;
5331 struct btrfs_block_group_cache *block_group;
5332 struct btrfs_caching_control *caching_ctl;
5333
5334 block_group = btrfs_lookup_block_group(root->fs_info, start);
5335 if (!block_group)
5336 return -EINVAL;
5337
5338 cache_block_group(block_group, 0);
5339 caching_ctl = get_caching_control(block_group);
5340
5341 if (!caching_ctl) {
5342 /* Logic error */
5343 BUG_ON(!block_group_cache_done(block_group));
5344 ret = btrfs_remove_free_space(block_group, start, num_bytes);
5345 } else {
5346 mutex_lock(&caching_ctl->mutex);
5347
5348 if (start >= caching_ctl->progress) {
5349 ret = add_excluded_extent(root, start, num_bytes);
5350 } else if (start + num_bytes <= caching_ctl->progress) {
5351 ret = btrfs_remove_free_space(block_group,
5352 start, num_bytes);
5353 } else {
5354 num_bytes = caching_ctl->progress - start;
5355 ret = btrfs_remove_free_space(block_group,
5356 start, num_bytes);
5357 if (ret)
5358 goto out_lock;
5359
5360 num_bytes = (start + num_bytes) -
5361 caching_ctl->progress;
5362 start = caching_ctl->progress;
5363 ret = add_excluded_extent(root, start, num_bytes);
5364 }
5365out_lock:
5366 mutex_unlock(&caching_ctl->mutex);
5367 put_caching_control(caching_ctl);
5368 }
5369 btrfs_put_block_group(block_group);
5370 return ret;
5371}
5372
5373int btrfs_exclude_logged_extents(struct btrfs_root *log,
5374 struct extent_buffer *eb)
5375{
5376 struct btrfs_file_extent_item *item;
5377 struct btrfs_key key;
5378 int found_type;
5379 int i;
5380
5381 if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS))
5382 return 0;
5383
5384 for (i = 0; i < btrfs_header_nritems(eb); i++) {
5385 btrfs_item_key_to_cpu(eb, &key, i);
5386 if (key.type != BTRFS_EXTENT_DATA_KEY)
5387 continue;
5388 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
5389 found_type = btrfs_file_extent_type(eb, item);
5390 if (found_type == BTRFS_FILE_EXTENT_INLINE)
5391 continue;
5392 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
5393 continue;
5394 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
5395 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
5396 __exclude_logged_extent(log, key.objectid, key.offset);
5397 }
5398
5399 return 0;
5400}
5401
Josef Bacikfb25e912011-07-26 17:00:46 -04005402/**
5403 * btrfs_update_reserved_bytes - update the block_group and space info counters
5404 * @cache: The cache we are manipulating
5405 * @num_bytes: The number of bytes in question
5406 * @reserve: One of the reservation enums
5407 *
5408 * This is called by the allocator when it reserves space, or by somebody who is
5409 * freeing space that was never actually used on disk. For example if you
5410 * reserve some space for a new leaf in transaction A and before transaction A
5411 * commits you free that leaf, you call this with reserve set to 0 in order to
5412 * clear the reservation.
5413 *
5414 * Metadata reservations should be called with RESERVE_ALLOC so we do the proper
5415 * ENOSPC accounting. For data we handle the reservation through clearing the
5416 * delalloc bits in the io_tree. We have to do this since we could end up
5417 * allocating less disk space for the amount of data we have reserved in the
5418 * case of compression.
5419 *
5420 * If this is a reservation and the block group has become read only we cannot
5421 * make the reservation and return -EAGAIN, otherwise this function always
5422 * succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04005423 */
Josef Bacikfb25e912011-07-26 17:00:46 -04005424static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
5425 u64 num_bytes, int reserve)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005426{
Josef Bacikfb25e912011-07-26 17:00:46 -04005427 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005428 int ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005429
Josef Bacikfb25e912011-07-26 17:00:46 -04005430 spin_lock(&space_info->lock);
5431 spin_lock(&cache->lock);
5432 if (reserve != RESERVE_FREE) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005433 if (cache->ro) {
5434 ret = -EAGAIN;
5435 } else {
Josef Bacikfb25e912011-07-26 17:00:46 -04005436 cache->reserved += num_bytes;
5437 space_info->bytes_reserved += num_bytes;
5438 if (reserve == RESERVE_ALLOC) {
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005439 trace_btrfs_space_reservation(cache->fs_info,
Liu Bo2bcc0322012-03-29 09:57:44 -04005440 "space_info", space_info->flags,
5441 num_bytes, 0);
Josef Bacikfb25e912011-07-26 17:00:46 -04005442 space_info->bytes_may_use -= num_bytes;
5443 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005444 }
Josef Bacikfb25e912011-07-26 17:00:46 -04005445 } else {
5446 if (cache->ro)
5447 space_info->bytes_readonly += num_bytes;
5448 cache->reserved -= num_bytes;
5449 space_info->bytes_reserved -= num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005450 }
Josef Bacikfb25e912011-07-26 17:00:46 -04005451 spin_unlock(&cache->lock);
5452 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005453 return ret;
5454}
5455
Jeff Mahoney143bede2012-03-01 14:56:26 +01005456void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04005457 struct btrfs_root *root)
5458{
5459 struct btrfs_fs_info *fs_info = root->fs_info;
5460 struct btrfs_caching_control *next;
5461 struct btrfs_caching_control *caching_ctl;
5462 struct btrfs_block_group_cache *cache;
Josef Bacikb150a4f2013-06-19 15:00:04 -04005463 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04005464
5465 down_write(&fs_info->extent_commit_sem);
5466
5467 list_for_each_entry_safe(caching_ctl, next,
5468 &fs_info->caching_block_groups, list) {
5469 cache = caching_ctl->block_group;
5470 if (block_group_cache_done(cache)) {
5471 cache->last_byte_to_unpin = (u64)-1;
5472 list_del_init(&caching_ctl->list);
5473 put_caching_control(caching_ctl);
5474 } else {
5475 cache->last_byte_to_unpin = caching_ctl->progress;
5476 }
5477 }
5478
5479 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
5480 fs_info->pinned_extents = &fs_info->freed_extents[1];
5481 else
5482 fs_info->pinned_extents = &fs_info->freed_extents[0];
5483
5484 up_write(&fs_info->extent_commit_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005485
Josef Bacikb150a4f2013-06-19 15:00:04 -04005486 list_for_each_entry_rcu(space_info, &fs_info->space_info, list)
5487 percpu_counter_set(&space_info->total_bytes_pinned, 0);
5488
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005489 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04005490}
5491
5492static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
5493{
5494 struct btrfs_fs_info *fs_info = root->fs_info;
5495 struct btrfs_block_group_cache *cache = NULL;
Josef Bacik7b398f82012-10-22 15:52:28 -04005496 struct btrfs_space_info *space_info;
5497 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Yan Zheng11833d62009-09-11 16:11:19 -04005498 u64 len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005499 bool readonly;
Yan Zheng11833d62009-09-11 16:11:19 -04005500
5501 while (start <= end) {
Josef Bacik7b398f82012-10-22 15:52:28 -04005502 readonly = false;
Yan Zheng11833d62009-09-11 16:11:19 -04005503 if (!cache ||
5504 start >= cache->key.objectid + cache->key.offset) {
5505 if (cache)
5506 btrfs_put_block_group(cache);
5507 cache = btrfs_lookup_block_group(fs_info, start);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005508 BUG_ON(!cache); /* Logic error */
Yan Zheng11833d62009-09-11 16:11:19 -04005509 }
5510
5511 len = cache->key.objectid + cache->key.offset - start;
5512 len = min(len, end + 1 - start);
5513
5514 if (start < cache->last_byte_to_unpin) {
5515 len = min(len, cache->last_byte_to_unpin - start);
5516 btrfs_add_free_space(cache, start, len);
5517 }
Josef Bacik25179202008-10-29 14:49:05 -04005518
Yan, Zhengf0486c62010-05-16 10:46:25 -04005519 start += len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005520 space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005521
Josef Bacik7b398f82012-10-22 15:52:28 -04005522 spin_lock(&space_info->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005523 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04005524 cache->pinned -= len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005525 space_info->bytes_pinned -= len;
5526 if (cache->ro) {
5527 space_info->bytes_readonly += len;
5528 readonly = true;
5529 }
Josef Bacik25179202008-10-29 14:49:05 -04005530 spin_unlock(&cache->lock);
Josef Bacik7b398f82012-10-22 15:52:28 -04005531 if (!readonly && global_rsv->space_info == space_info) {
5532 spin_lock(&global_rsv->lock);
5533 if (!global_rsv->full) {
5534 len = min(len, global_rsv->size -
5535 global_rsv->reserved);
5536 global_rsv->reserved += len;
5537 space_info->bytes_may_use += len;
5538 if (global_rsv->reserved >= global_rsv->size)
5539 global_rsv->full = 1;
5540 }
5541 spin_unlock(&global_rsv->lock);
5542 }
5543 spin_unlock(&space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04005544 }
5545
5546 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04005547 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04005548 return 0;
5549}
5550
5551int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04005552 struct btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -05005553{
Yan Zheng11833d62009-09-11 16:11:19 -04005554 struct btrfs_fs_info *fs_info = root->fs_info;
5555 struct extent_io_tree *unpin;
Chris Mason1a5bc162007-10-15 16:15:26 -04005556 u64 start;
5557 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05005558 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05005559
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005560 if (trans->aborted)
5561 return 0;
5562
Yan Zheng11833d62009-09-11 16:11:19 -04005563 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
5564 unpin = &fs_info->freed_extents[1];
5565 else
5566 unpin = &fs_info->freed_extents[0];
5567
Chris Masond3977122009-01-05 21:25:51 -05005568 while (1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04005569 ret = find_first_extent_bit(unpin, 0, &start, &end,
Josef Bacike6138872012-09-27 17:07:30 -04005570 EXTENT_DIRTY, NULL);
Chris Mason1a5bc162007-10-15 16:15:26 -04005571 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05005572 break;
Liu Hui1f3c79a2009-01-05 15:57:51 -05005573
Li Dongyang5378e602011-03-24 10:24:27 +00005574 if (btrfs_test_opt(root, DISCARD))
5575 ret = btrfs_discard_extent(root, start,
5576 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05005577
Chris Mason1a5bc162007-10-15 16:15:26 -04005578 clear_extent_dirty(unpin, start, end, GFP_NOFS);
Yan Zheng11833d62009-09-11 16:11:19 -04005579 unpin_extent_range(root, start, end);
Chris Masonb9473432009-03-13 11:00:37 -04005580 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05005581 }
Josef Bacik817d52f2009-07-13 21:29:25 -04005582
Chris Masone20d96d2007-03-22 12:13:20 -04005583 return 0;
5584}
5585
Josef Bacikb150a4f2013-06-19 15:00:04 -04005586static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes,
5587 u64 owner, u64 root_objectid)
5588{
5589 struct btrfs_space_info *space_info;
5590 u64 flags;
5591
5592 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
5593 if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID)
5594 flags = BTRFS_BLOCK_GROUP_SYSTEM;
5595 else
5596 flags = BTRFS_BLOCK_GROUP_METADATA;
5597 } else {
5598 flags = BTRFS_BLOCK_GROUP_DATA;
5599 }
5600
5601 space_info = __find_space_info(fs_info, flags);
5602 BUG_ON(!space_info); /* Logic bug */
5603 percpu_counter_add(&space_info->total_bytes_pinned, num_bytes);
5604}
5605
5606
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005607static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
5608 struct btrfs_root *root,
5609 u64 bytenr, u64 num_bytes, u64 parent,
5610 u64 root_objectid, u64 owner_objectid,
5611 u64 owner_offset, int refs_to_drop,
5612 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05005613{
Chris Masone2fa7222007-03-12 16:22:34 -04005614 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005615 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04005616 struct btrfs_fs_info *info = root->fs_info;
5617 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04005618 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005619 struct btrfs_extent_item *ei;
5620 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05005621 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005622 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05005623 int extent_slot = 0;
5624 int found_extent = 0;
5625 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005626 u32 item_size;
5627 u64 refs;
Josef Bacik3173a182013-03-07 14:22:04 -05005628 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
5629 SKINNY_METADATA);
Chris Mason037e6392007-03-07 11:50:24 -05005630
Chris Mason5caf2a02007-04-02 11:20:42 -04005631 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04005632 if (!path)
5633 return -ENOMEM;
5634
Chris Mason3c12ac72008-04-21 12:01:38 -04005635 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04005636 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005637
5638 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
5639 BUG_ON(!is_data && refs_to_drop != 1);
5640
Josef Bacik3173a182013-03-07 14:22:04 -05005641 if (is_data)
5642 skinny_metadata = 0;
5643
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005644 ret = lookup_extent_backref(trans, extent_root, path, &iref,
5645 bytenr, num_bytes, parent,
5646 root_objectid, owner_objectid,
5647 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05005648 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05005649 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005650 while (extent_slot >= 0) {
5651 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05005652 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005653 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05005654 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005655 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
5656 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05005657 found_extent = 1;
5658 break;
5659 }
Josef Bacik3173a182013-03-07 14:22:04 -05005660 if (key.type == BTRFS_METADATA_ITEM_KEY &&
5661 key.offset == owner_objectid) {
5662 found_extent = 1;
5663 break;
5664 }
Chris Mason952fcca2008-02-18 16:33:44 -05005665 if (path->slots[0] - extent_slot > 5)
5666 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005667 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05005668 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005669#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
5670 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
5671 if (found_extent && item_size < sizeof(*ei))
5672 found_extent = 0;
5673#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04005674 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005675 BUG_ON(iref);
Chris Mason56bec292009-03-13 10:10:06 -04005676 ret = remove_extent_backref(trans, extent_root, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005677 NULL, refs_to_drop,
5678 is_data);
David Sterba005d6422012-09-18 07:52:32 -06005679 if (ret) {
5680 btrfs_abort_transaction(trans, extent_root, ret);
5681 goto out;
5682 }
David Sterbab3b4aa72011-04-21 01:20:15 +02005683 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04005684 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005685
5686 key.objectid = bytenr;
5687 key.type = BTRFS_EXTENT_ITEM_KEY;
5688 key.offset = num_bytes;
5689
Josef Bacik3173a182013-03-07 14:22:04 -05005690 if (!is_data && skinny_metadata) {
5691 key.type = BTRFS_METADATA_ITEM_KEY;
5692 key.offset = owner_objectid;
5693 }
5694
Zheng Yan31840ae2008-09-23 13:14:14 -04005695 ret = btrfs_search_slot(trans, extent_root,
5696 &key, path, -1, 1);
Josef Bacik3173a182013-03-07 14:22:04 -05005697 if (ret > 0 && skinny_metadata && path->slots[0]) {
5698 /*
5699 * Couldn't find our skinny metadata item,
5700 * see if we have ye olde extent item.
5701 */
5702 path->slots[0]--;
5703 btrfs_item_key_to_cpu(path->nodes[0], &key,
5704 path->slots[0]);
5705 if (key.objectid == bytenr &&
5706 key.type == BTRFS_EXTENT_ITEM_KEY &&
5707 key.offset == num_bytes)
5708 ret = 0;
5709 }
5710
5711 if (ret > 0 && skinny_metadata) {
5712 skinny_metadata = false;
5713 key.type = BTRFS_EXTENT_ITEM_KEY;
5714 key.offset = num_bytes;
5715 btrfs_release_path(path);
5716 ret = btrfs_search_slot(trans, extent_root,
5717 &key, path, -1, 1);
5718 }
5719
Josef Bacikf3465ca2008-11-12 14:19:50 -05005720 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005721 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005722 ret, bytenr);
Josef Bacikb783e622011-07-13 15:03:50 +00005723 if (ret > 0)
5724 btrfs_print_leaf(extent_root,
5725 path->nodes[0]);
Josef Bacikf3465ca2008-11-12 14:19:50 -05005726 }
David Sterba005d6422012-09-18 07:52:32 -06005727 if (ret < 0) {
5728 btrfs_abort_transaction(trans, extent_root, ret);
5729 goto out;
5730 }
Zheng Yan31840ae2008-09-23 13:14:14 -04005731 extent_slot = path->slots[0];
5732 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005733 } else if (ret == -ENOENT) {
Chris Mason7bb86312007-12-11 09:25:06 -05005734 btrfs_print_leaf(extent_root, path->nodes[0]);
5735 WARN_ON(1);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005736 btrfs_err(info,
5737 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005738 bytenr, parent, root_objectid, owner_objectid,
5739 owner_offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005740 } else {
David Sterba005d6422012-09-18 07:52:32 -06005741 btrfs_abort_transaction(trans, extent_root, ret);
5742 goto out;
Chris Mason7bb86312007-12-11 09:25:06 -05005743 }
Chris Mason5f39d392007-10-15 16:14:19 -04005744
5745 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005746 item_size = btrfs_item_size_nr(leaf, extent_slot);
5747#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
5748 if (item_size < sizeof(*ei)) {
5749 BUG_ON(found_extent || extent_slot != path->slots[0]);
5750 ret = convert_extent_item_v0(trans, extent_root, path,
5751 owner_objectid, 0);
David Sterba005d6422012-09-18 07:52:32 -06005752 if (ret < 0) {
5753 btrfs_abort_transaction(trans, extent_root, ret);
5754 goto out;
5755 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005756
David Sterbab3b4aa72011-04-21 01:20:15 +02005757 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005758 path->leave_spinning = 1;
5759
5760 key.objectid = bytenr;
5761 key.type = BTRFS_EXTENT_ITEM_KEY;
5762 key.offset = num_bytes;
5763
5764 ret = btrfs_search_slot(trans, extent_root, &key, path,
5765 -1, 1);
5766 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005767 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005768 ret, bytenr);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005769 btrfs_print_leaf(extent_root, path->nodes[0]);
5770 }
David Sterba005d6422012-09-18 07:52:32 -06005771 if (ret < 0) {
5772 btrfs_abort_transaction(trans, extent_root, ret);
5773 goto out;
5774 }
5775
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005776 extent_slot = path->slots[0];
5777 leaf = path->nodes[0];
5778 item_size = btrfs_item_size_nr(leaf, extent_slot);
5779 }
5780#endif
5781 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05005782 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04005783 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05005784 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
5785 key.type == BTRFS_EXTENT_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005786 struct btrfs_tree_block_info *bi;
5787 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
5788 bi = (struct btrfs_tree_block_info *)(ei + 1);
5789 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05005790 }
5791
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005792 refs = btrfs_extent_refs(leaf, ei);
Josef Bacik32b02532013-04-24 16:38:50 -04005793 if (refs < refs_to_drop) {
5794 btrfs_err(info, "trying to drop %d refs but we only have %Lu "
5795 "for bytenr %Lu\n", refs_to_drop, refs, bytenr);
5796 ret = -EINVAL;
5797 btrfs_abort_transaction(trans, extent_root, ret);
5798 goto out;
5799 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005800 refs -= refs_to_drop;
5801
5802 if (refs > 0) {
5803 if (extent_op)
5804 __run_delayed_extent_op(extent_op, leaf, ei);
5805 /*
5806 * In the case of inline back ref, reference count will
5807 * be updated by remove_extent_backref
5808 */
5809 if (iref) {
5810 BUG_ON(!found_extent);
5811 } else {
5812 btrfs_set_extent_refs(leaf, ei, refs);
5813 btrfs_mark_buffer_dirty(leaf);
5814 }
5815 if (found_extent) {
5816 ret = remove_extent_backref(trans, extent_root, path,
5817 iref, refs_to_drop,
5818 is_data);
David Sterba005d6422012-09-18 07:52:32 -06005819 if (ret) {
5820 btrfs_abort_transaction(trans, extent_root, ret);
5821 goto out;
5822 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005823 }
Josef Bacikb150a4f2013-06-19 15:00:04 -04005824 add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid,
5825 root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005826 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005827 if (found_extent) {
5828 BUG_ON(is_data && refs_to_drop !=
5829 extent_data_ref_count(root, path, iref));
5830 if (iref) {
5831 BUG_ON(path->slots[0] != extent_slot);
5832 } else {
5833 BUG_ON(path->slots[0] != extent_slot + 1);
5834 path->slots[0] = extent_slot;
5835 num_to_del = 2;
5836 }
Chris Mason78fae272007-03-25 11:35:08 -04005837 }
Chris Masonb9473432009-03-13 11:00:37 -04005838
Chris Mason952fcca2008-02-18 16:33:44 -05005839 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
5840 num_to_del);
David Sterba005d6422012-09-18 07:52:32 -06005841 if (ret) {
5842 btrfs_abort_transaction(trans, extent_root, ret);
5843 goto out;
5844 }
David Sterbab3b4aa72011-04-21 01:20:15 +02005845 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01005846
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005847 if (is_data) {
Chris Mason459931e2008-12-10 09:10:46 -05005848 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
David Sterba005d6422012-09-18 07:52:32 -06005849 if (ret) {
5850 btrfs_abort_transaction(trans, extent_root, ret);
5851 goto out;
5852 }
Chris Mason459931e2008-12-10 09:10:46 -05005853 }
5854
Liu Boc53d6132012-12-27 09:01:19 +00005855 ret = update_block_group(root, bytenr, num_bytes, 0);
David Sterba005d6422012-09-18 07:52:32 -06005856 if (ret) {
5857 btrfs_abort_transaction(trans, extent_root, ret);
5858 goto out;
5859 }
Chris Masona28ec192007-03-06 20:08:01 -05005860 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005861out:
Chris Mason5caf2a02007-04-02 11:20:42 -04005862 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05005863 return ret;
5864}
5865
5866/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04005867 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04005868 * delayed ref for that extent as well. This searches the delayed ref tree for
5869 * a given extent, and if there are no other delayed refs to be processed, it
5870 * removes it from the tree.
5871 */
5872static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
5873 struct btrfs_root *root, u64 bytenr)
5874{
5875 struct btrfs_delayed_ref_head *head;
5876 struct btrfs_delayed_ref_root *delayed_refs;
5877 struct btrfs_delayed_ref_node *ref;
5878 struct rb_node *node;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005879 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04005880
5881 delayed_refs = &trans->transaction->delayed_refs;
5882 spin_lock(&delayed_refs->lock);
5883 head = btrfs_find_delayed_ref_head(trans, bytenr);
5884 if (!head)
5885 goto out;
5886
5887 node = rb_prev(&head->node.rb_node);
5888 if (!node)
5889 goto out;
5890
5891 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
5892
5893 /* there are still entries for this ref, we can't drop it */
5894 if (ref->bytenr == bytenr)
5895 goto out;
5896
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005897 if (head->extent_op) {
5898 if (!head->must_insert_reserved)
5899 goto out;
Miao Xie78a61842012-11-21 02:21:28 +00005900 btrfs_free_delayed_extent_op(head->extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005901 head->extent_op = NULL;
5902 }
5903
Chris Mason1887be62009-03-13 10:11:24 -04005904 /*
5905 * waiting for the lock here would deadlock. If someone else has it
5906 * locked they are already in the process of dropping it anyway
5907 */
5908 if (!mutex_trylock(&head->mutex))
5909 goto out;
5910
5911 /*
5912 * at this point we have a head with no other entries. Go
5913 * ahead and process it.
5914 */
5915 head->node.in_tree = 0;
5916 rb_erase(&head->node.rb_node, &delayed_refs->root);
Chris Masonc3e69d52009-03-13 10:17:05 -04005917
Chris Mason1887be62009-03-13 10:11:24 -04005918 delayed_refs->num_entries--;
5919
5920 /*
5921 * we don't take a ref on the node because we're removing it from the
5922 * tree, so we just steal the ref the tree was holding.
5923 */
Chris Masonc3e69d52009-03-13 10:17:05 -04005924 delayed_refs->num_heads--;
5925 if (list_empty(&head->cluster))
5926 delayed_refs->num_heads_ready--;
5927
5928 list_del_init(&head->cluster);
Chris Mason1887be62009-03-13 10:11:24 -04005929 spin_unlock(&delayed_refs->lock);
5930
Yan, Zhengf0486c62010-05-16 10:46:25 -04005931 BUG_ON(head->extent_op);
5932 if (head->must_insert_reserved)
5933 ret = 1;
5934
5935 mutex_unlock(&head->mutex);
Chris Mason1887be62009-03-13 10:11:24 -04005936 btrfs_put_delayed_ref(&head->node);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005937 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04005938out:
5939 spin_unlock(&delayed_refs->lock);
5940 return 0;
5941}
5942
Yan, Zhengf0486c62010-05-16 10:46:25 -04005943void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
5944 struct btrfs_root *root,
5945 struct extent_buffer *buf,
Jan Schmidt5581a512012-05-16 17:04:52 +02005946 u64 parent, int last_ref)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005947{
Yan, Zhengf0486c62010-05-16 10:46:25 -04005948 struct btrfs_block_group_cache *cache = NULL;
Josef Bacikb150a4f2013-06-19 15:00:04 -04005949 int pin = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005950 int ret;
5951
5952 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02005953 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
5954 buf->start, buf->len,
5955 parent, root->root_key.objectid,
5956 btrfs_header_level(buf),
Jan Schmidt5581a512012-05-16 17:04:52 +02005957 BTRFS_DROP_DELAYED_REF, NULL, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005958 BUG_ON(ret); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04005959 }
5960
5961 if (!last_ref)
5962 return;
5963
Yan, Zhengf0486c62010-05-16 10:46:25 -04005964 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005965
5966 if (btrfs_header_generation(buf) == trans->transid) {
5967 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
5968 ret = check_ref_cleanup(trans, root, buf->start);
5969 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04005970 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005971 }
5972
5973 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
5974 pin_down_extent(root, cache, buf->start, buf->len, 1);
Josef Bacik37be25b2011-08-05 10:25:38 -04005975 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005976 }
5977
5978 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
5979
5980 btrfs_add_free_space(cache, buf->start, buf->len);
Josef Bacikfb25e912011-07-26 17:00:46 -04005981 btrfs_update_reserved_bytes(cache, buf->len, RESERVE_FREE);
Josef Bacik0be5dc62013-10-07 15:18:52 -04005982 trace_btrfs_reserved_extent_free(root, buf->start, buf->len);
Josef Bacikb150a4f2013-06-19 15:00:04 -04005983 pin = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005984 }
5985out:
Josef Bacikb150a4f2013-06-19 15:00:04 -04005986 if (pin)
5987 add_pinned_bytes(root->fs_info, buf->len,
5988 btrfs_header_level(buf),
5989 root->root_key.objectid);
5990
Josef Bacika826d6d2011-03-16 13:42:43 -04005991 /*
5992 * Deleting the buffer, clear the corrupt flag since it doesn't matter
5993 * anymore.
5994 */
5995 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005996 btrfs_put_block_group(cache);
5997}
5998
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005999/* Can return -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006000int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root,
6001 u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid,
6002 u64 owner, u64 offset, int for_cow)
Chris Mason925baed2008-06-25 16:01:30 -04006003{
6004 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006005 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason925baed2008-06-25 16:01:30 -04006006
Josef Bacikb150a4f2013-06-19 15:00:04 -04006007 add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid);
6008
Chris Mason56bec292009-03-13 10:10:06 -04006009 /*
6010 * tree log blocks never actually go into the extent allocation
6011 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04006012 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006013 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
6014 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04006015 /* unlocks the pinned mutex */
Yan Zheng11833d62009-09-11 16:11:19 -04006016 btrfs_pin_extent(root, bytenr, num_bytes, 1);
Chris Mason56bec292009-03-13 10:10:06 -04006017 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006018 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006019 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
6020 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006021 parent, root_objectid, (int)owner,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006022 BTRFS_DROP_DELAYED_REF, NULL, for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006023 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006024 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
6025 num_bytes,
6026 parent, root_objectid, owner,
6027 offset, BTRFS_DROP_DELAYED_REF,
6028 NULL, for_cow);
Chris Mason56bec292009-03-13 10:10:06 -04006029 }
Chris Mason925baed2008-06-25 16:01:30 -04006030 return ret;
6031}
6032
David Woodhouse53b381b2013-01-29 18:40:14 -05006033static u64 stripe_align(struct btrfs_root *root,
6034 struct btrfs_block_group_cache *cache,
6035 u64 val, u64 num_bytes)
Chris Mason87ee04e2007-11-30 11:30:34 -05006036{
Qu Wenruofda28322013-02-26 08:10:22 +00006037 u64 ret = ALIGN(val, root->stripesize);
Chris Mason87ee04e2007-11-30 11:30:34 -05006038 return ret;
6039}
6040
Chris Masonfec577f2007-02-26 10:40:21 -05006041/*
Josef Bacik817d52f2009-07-13 21:29:25 -04006042 * when we wait for progress in the block group caching, its because
6043 * our allocation attempt failed at least once. So, we must sleep
6044 * and let some progress happen before we try again.
6045 *
6046 * This function will sleep at least once waiting for new free space to
6047 * show up, and then it will check the block group free space numbers
6048 * for our min num_bytes. Another option is to have it go ahead
6049 * and look in the rbtree for a free extent of a given size, but this
6050 * is a good start.
Josef Bacik36cce922013-08-05 11:15:21 -04006051 *
6052 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
6053 * any of the information in this block group.
Josef Bacik817d52f2009-07-13 21:29:25 -04006054 */
Josef Bacik36cce922013-08-05 11:15:21 -04006055static noinline void
Josef Bacik817d52f2009-07-13 21:29:25 -04006056wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
6057 u64 num_bytes)
6058{
Yan Zheng11833d62009-09-11 16:11:19 -04006059 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04006060
Yan Zheng11833d62009-09-11 16:11:19 -04006061 caching_ctl = get_caching_control(cache);
6062 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04006063 return;
Josef Bacik817d52f2009-07-13 21:29:25 -04006064
Yan Zheng11833d62009-09-11 16:11:19 -04006065 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08006066 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04006067
6068 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -04006069}
6070
6071static noinline int
6072wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
6073{
6074 struct btrfs_caching_control *caching_ctl;
Josef Bacik36cce922013-08-05 11:15:21 -04006075 int ret = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006076
6077 caching_ctl = get_caching_control(cache);
6078 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04006079 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006080
6081 wait_event(caching_ctl->wait, block_group_cache_done(cache));
Josef Bacik36cce922013-08-05 11:15:21 -04006082 if (cache->cached == BTRFS_CACHE_ERROR)
6083 ret = -EIO;
Yan Zheng11833d62009-09-11 16:11:19 -04006084 put_caching_control(caching_ctl);
Josef Bacik36cce922013-08-05 11:15:21 -04006085 return ret;
Josef Bacik817d52f2009-07-13 21:29:25 -04006086}
6087
Liu Bo31e50222012-11-21 14:18:10 +00006088int __get_raid_index(u64 flags)
Yan, Zhengb742bb82010-05-16 10:46:24 -04006089{
Ilya Dryomov7738a532012-03-27 17:09:17 +03006090 if (flags & BTRFS_BLOCK_GROUP_RAID10)
Miao Xiee6ec7162013-01-17 05:38:51 +00006091 return BTRFS_RAID_RAID10;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006092 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
Miao Xiee6ec7162013-01-17 05:38:51 +00006093 return BTRFS_RAID_RAID1;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006094 else if (flags & BTRFS_BLOCK_GROUP_DUP)
Miao Xiee6ec7162013-01-17 05:38:51 +00006095 return BTRFS_RAID_DUP;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006096 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
Miao Xiee6ec7162013-01-17 05:38:51 +00006097 return BTRFS_RAID_RAID0;
David Woodhouse53b381b2013-01-29 18:40:14 -05006098 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
Chris Masone942f882013-02-20 14:06:05 -05006099 return BTRFS_RAID_RAID5;
David Woodhouse53b381b2013-01-29 18:40:14 -05006100 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
Chris Masone942f882013-02-20 14:06:05 -05006101 return BTRFS_RAID_RAID6;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006102
Chris Masone942f882013-02-20 14:06:05 -05006103 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
Yan, Zhengb742bb82010-05-16 10:46:24 -04006104}
6105
Ilya Dryomov7738a532012-03-27 17:09:17 +03006106static int get_block_group_index(struct btrfs_block_group_cache *cache)
6107{
Liu Bo31e50222012-11-21 14:18:10 +00006108 return __get_raid_index(cache->flags);
Ilya Dryomov7738a532012-03-27 17:09:17 +03006109}
6110
Josef Bacik817d52f2009-07-13 21:29:25 -04006111enum btrfs_loop_type {
Josef Bacik285ff5a2012-01-13 15:27:45 -05006112 LOOP_CACHING_NOWAIT = 0,
6113 LOOP_CACHING_WAIT = 1,
6114 LOOP_ALLOC_CHUNK = 2,
6115 LOOP_NO_EMPTY_SIZE = 3,
Josef Bacik817d52f2009-07-13 21:29:25 -04006116};
6117
6118/*
Chris Masonfec577f2007-02-26 10:40:21 -05006119 * walks the btree of allocated extents and find a hole of a given size.
6120 * The key ins is changed to record the hole:
Miao Xiea4820392013-09-09 13:19:42 +08006121 * ins->objectid == start position
Chris Mason62e27492007-03-15 12:56:47 -04006122 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Miao Xiea4820392013-09-09 13:19:42 +08006123 * ins->offset == the size of the hole.
Chris Masonfec577f2007-02-26 10:40:21 -05006124 * Any available blocks before search_start are skipped.
Miao Xiea4820392013-09-09 13:19:42 +08006125 *
6126 * If there is no suitable free space, we will record the max size of
6127 * the free space extent currently.
Chris Masonfec577f2007-02-26 10:40:21 -05006128 */
Josef Bacik00361582013-08-14 14:02:47 -04006129static noinline int find_free_extent(struct btrfs_root *orig_root,
Chris Mason98ed5172008-01-03 10:01:48 -05006130 u64 num_bytes, u64 empty_size,
Chris Mason98ed5172008-01-03 10:01:48 -05006131 u64 hint_byte, struct btrfs_key *ins,
David Sterbab6919a52013-04-29 13:39:40 +00006132 u64 flags)
Chris Masonfec577f2007-02-26 10:40:21 -05006133{
Josef Bacik80eb2342008-10-29 14:49:05 -04006134 int ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05006135 struct btrfs_root *root = orig_root->fs_info->extent_root;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006136 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04006137 struct btrfs_block_group_cache *block_group = NULL;
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006138 struct btrfs_block_group_cache *used_block_group;
Josef Bacik81c9ad22012-01-18 10:56:06 -05006139 u64 search_start = 0;
Miao Xiea4820392013-09-09 13:19:42 +08006140 u64 max_extent_size = 0;
Chris Mason239b14b2008-03-24 15:02:07 -04006141 int empty_cluster = 2 * 1024 * 1024;
Josef Bacik80eb2342008-10-29 14:49:05 -04006142 struct btrfs_space_info *space_info;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006143 int loop = 0;
David Sterbab6919a52013-04-29 13:39:40 +00006144 int index = __get_raid_index(flags);
6145 int alloc_type = (flags & BTRFS_BLOCK_GROUP_DATA) ?
Josef Bacikfb25e912011-07-26 17:00:46 -04006146 RESERVE_ALLOC_NO_ACCOUNT : RESERVE_ALLOC;
Josef Bacik817d52f2009-07-13 21:29:25 -04006147 bool found_uncached_bg = false;
Josef Bacik0a243252009-09-11 16:11:20 -04006148 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006149 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04006150 bool use_cluster = true;
Miao Xie60d2adb2011-09-09 17:34:35 +08006151 bool have_caching_bg = false;
Chris Masonfec577f2007-02-26 10:40:21 -05006152
Chris Masondb945352007-10-15 16:15:53 -04006153 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04006154 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
Josef Bacik80eb2342008-10-29 14:49:05 -04006155 ins->objectid = 0;
6156 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04006157
David Sterbab6919a52013-04-29 13:39:40 +00006158 trace_find_free_extent(orig_root, num_bytes, empty_size, flags);
Josef Bacik3f7de032011-11-10 08:29:20 -05006159
David Sterbab6919a52013-04-29 13:39:40 +00006160 space_info = __find_space_info(root->fs_info, flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00006161 if (!space_info) {
David Sterbab6919a52013-04-29 13:39:40 +00006162 btrfs_err(root->fs_info, "No space info for %llu", flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00006163 return -ENOSPC;
6164 }
Josef Bacik2552d172009-04-03 10:14:19 -04006165
Josef Bacik67377732010-09-16 16:19:09 -04006166 /*
6167 * If the space info is for both data and metadata it means we have a
6168 * small filesystem and we can't use the clustering stuff.
6169 */
6170 if (btrfs_mixed_space_info(space_info))
6171 use_cluster = false;
6172
David Sterbab6919a52013-04-29 13:39:40 +00006173 if (flags & BTRFS_BLOCK_GROUP_METADATA && use_cluster) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006174 last_ptr = &root->fs_info->meta_alloc_cluster;
Chris Mason536ac8a2009-02-12 09:41:38 -05006175 if (!btrfs_test_opt(root, SSD))
6176 empty_cluster = 64 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04006177 }
6178
David Sterbab6919a52013-04-29 13:39:40 +00006179 if ((flags & BTRFS_BLOCK_GROUP_DATA) && use_cluster &&
Josef Bacik67377732010-09-16 16:19:09 -04006180 btrfs_test_opt(root, SSD)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006181 last_ptr = &root->fs_info->data_alloc_cluster;
6182 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04006183
Chris Mason239b14b2008-03-24 15:02:07 -04006184 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006185 spin_lock(&last_ptr->lock);
6186 if (last_ptr->block_group)
6187 hint_byte = last_ptr->window_start;
6188 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04006189 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006190
Chris Masona061fc82008-05-07 11:43:44 -04006191 search_start = max(search_start, first_logical_byte(root, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04006192 search_start = max(search_start, hint_byte);
Chris Mason0b86a832008-03-24 15:01:56 -04006193
Josef Bacik817d52f2009-07-13 21:29:25 -04006194 if (!last_ptr)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006195 empty_cluster = 0;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006196
Josef Bacik2552d172009-04-03 10:14:19 -04006197 if (search_start == hint_byte) {
Josef Bacik2552d172009-04-03 10:14:19 -04006198 block_group = btrfs_lookup_block_group(root->fs_info,
6199 search_start);
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006200 used_block_group = block_group;
Josef Bacik817d52f2009-07-13 21:29:25 -04006201 /*
6202 * we don't want to use the block group if it doesn't match our
6203 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05006204 *
6205 * However if we are re-searching with an ideal block group
6206 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04006207 */
David Sterbab6919a52013-04-29 13:39:40 +00006208 if (block_group && block_group_bits(block_group, flags) &&
Josef Bacik285ff5a2012-01-13 15:27:45 -05006209 block_group->cached != BTRFS_CACHE_NO) {
Josef Bacik2552d172009-04-03 10:14:19 -04006210 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04006211 if (list_empty(&block_group->list) ||
6212 block_group->ro) {
6213 /*
6214 * someone is removing this block group,
6215 * we can't jump into the have_block_group
6216 * target because our list pointers are not
6217 * valid
6218 */
6219 btrfs_put_block_group(block_group);
6220 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05006221 } else {
Yan, Zhengb742bb82010-05-16 10:46:24 -04006222 index = get_block_group_index(block_group);
Chris Mason44fb5512009-06-04 15:34:51 -04006223 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05006224 }
Josef Bacik2552d172009-04-03 10:14:19 -04006225 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006226 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006227 }
Chris Mason42e70e72008-11-07 18:17:11 -05006228 }
Josef Bacik2552d172009-04-03 10:14:19 -04006229search:
Miao Xie60d2adb2011-09-09 17:34:35 +08006230 have_caching_bg = false;
Josef Bacik80eb2342008-10-29 14:49:05 -04006231 down_read(&space_info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04006232 list_for_each_entry(block_group, &space_info->block_groups[index],
6233 list) {
Josef Bacik6226cb0a2009-04-03 10:14:18 -04006234 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04006235 int cached;
Chris Mason8a1413a2008-11-10 16:13:54 -05006236
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006237 used_block_group = block_group;
Josef Bacik11dfe352009-11-13 20:12:59 +00006238 btrfs_get_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006239 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05006240
Chris Mason83a50de2010-12-13 15:06:46 -05006241 /*
6242 * this can happen if we end up cycling through all the
6243 * raid types, but we want to make sure we only allocate
6244 * for the proper type.
6245 */
David Sterbab6919a52013-04-29 13:39:40 +00006246 if (!block_group_bits(block_group, flags)) {
Chris Mason83a50de2010-12-13 15:06:46 -05006247 u64 extra = BTRFS_BLOCK_GROUP_DUP |
6248 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05006249 BTRFS_BLOCK_GROUP_RAID5 |
6250 BTRFS_BLOCK_GROUP_RAID6 |
Chris Mason83a50de2010-12-13 15:06:46 -05006251 BTRFS_BLOCK_GROUP_RAID10;
6252
6253 /*
6254 * if they asked for extra copies and this block group
6255 * doesn't provide them, bail. This does allow us to
6256 * fill raid0 from raid1.
6257 */
David Sterbab6919a52013-04-29 13:39:40 +00006258 if ((flags & extra) && !(block_group->flags & extra))
Chris Mason83a50de2010-12-13 15:06:46 -05006259 goto loop;
6260 }
6261
Josef Bacik2552d172009-04-03 10:14:19 -04006262have_block_group:
Josef Bacik291c7d22011-11-14 13:52:14 -05006263 cached = block_group_cache_done(block_group);
6264 if (unlikely(!cached)) {
Josef Bacik291c7d22011-11-14 13:52:14 -05006265 found_uncached_bg = true;
Liu Bof6373bf2012-12-27 09:01:18 +00006266 ret = cache_block_group(block_group, 0);
Chris Mason1d4284b2012-03-28 20:31:37 -04006267 BUG_ON(ret < 0);
6268 ret = 0;
Josef Bacikea6a4782008-11-20 12:16:16 -05006269 }
6270
Josef Bacik36cce922013-08-05 11:15:21 -04006271 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
6272 goto loop;
Josef Bacikea6a4782008-11-20 12:16:16 -05006273 if (unlikely(block_group->ro))
Josef Bacik2552d172009-04-03 10:14:19 -04006274 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006275
Josef Bacik0a243252009-09-11 16:11:20 -04006276 /*
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006277 * Ok we want to try and use the cluster allocator, so
6278 * lets look there
Josef Bacik0a243252009-09-11 16:11:20 -04006279 */
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006280 if (last_ptr) {
Chris Mason8de972b2013-01-04 15:39:43 -05006281 unsigned long aligned_cluster;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006282 /*
6283 * the refill lock keeps out other
6284 * people trying to start a new cluster
6285 */
6286 spin_lock(&last_ptr->refill_lock);
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006287 used_block_group = last_ptr->block_group;
6288 if (used_block_group != block_group &&
6289 (!used_block_group ||
6290 used_block_group->ro ||
David Sterbab6919a52013-04-29 13:39:40 +00006291 !block_group_bits(used_block_group, flags))) {
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006292 used_block_group = block_group;
Chris Mason44fb5512009-06-04 15:34:51 -04006293 goto refill_cluster;
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006294 }
Chris Mason44fb5512009-06-04 15:34:51 -04006295
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006296 if (used_block_group != block_group)
6297 btrfs_get_block_group(used_block_group);
6298
6299 offset = btrfs_alloc_from_cluster(used_block_group,
Miao Xiea4820392013-09-09 13:19:42 +08006300 last_ptr,
6301 num_bytes,
6302 used_block_group->key.objectid,
6303 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006304 if (offset) {
6305 /* we have a block, we're done */
6306 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05006307 trace_btrfs_reserve_extent_cluster(root,
6308 block_group, search_start, num_bytes);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006309 goto checks;
6310 }
6311
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006312 WARN_ON(last_ptr->block_group != used_block_group);
6313 if (used_block_group != block_group) {
6314 btrfs_put_block_group(used_block_group);
6315 used_block_group = block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006316 }
Chris Mason44fb5512009-06-04 15:34:51 -04006317refill_cluster:
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006318 BUG_ON(used_block_group != block_group);
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006319 /* If we are on LOOP_NO_EMPTY_SIZE, we can't
6320 * set up a new clusters, so lets just skip it
6321 * and let the allocator find whatever block
6322 * it can find. If we reach this point, we
6323 * will have tried the cluster allocator
6324 * plenty of times and not have found
6325 * anything, so we are likely way too
6326 * fragmented for the clustering stuff to find
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006327 * anything.
6328 *
6329 * However, if the cluster is taken from the
6330 * current block group, release the cluster
6331 * first, so that we stand a better chance of
6332 * succeeding in the unclustered
6333 * allocation. */
6334 if (loop >= LOOP_NO_EMPTY_SIZE &&
6335 last_ptr->block_group != block_group) {
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006336 spin_unlock(&last_ptr->refill_lock);
6337 goto unclustered_alloc;
6338 }
6339
Chris Masonfa9c0d792009-04-03 09:47:43 -04006340 /*
6341 * this cluster didn't work out, free it and
6342 * start over
6343 */
6344 btrfs_return_cluster_to_free_space(NULL, last_ptr);
6345
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006346 if (loop >= LOOP_NO_EMPTY_SIZE) {
6347 spin_unlock(&last_ptr->refill_lock);
6348 goto unclustered_alloc;
6349 }
6350
Chris Mason8de972b2013-01-04 15:39:43 -05006351 aligned_cluster = max_t(unsigned long,
6352 empty_cluster + empty_size,
6353 block_group->full_stripe_len);
6354
Chris Masonfa9c0d792009-04-03 09:47:43 -04006355 /* allocate a cluster in this block group */
Josef Bacik00361582013-08-14 14:02:47 -04006356 ret = btrfs_find_space_cluster(root, block_group,
6357 last_ptr, search_start,
6358 num_bytes,
6359 aligned_cluster);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006360 if (ret == 0) {
6361 /*
6362 * now pull our allocation out of this
6363 * cluster
6364 */
6365 offset = btrfs_alloc_from_cluster(block_group,
Miao Xiea4820392013-09-09 13:19:42 +08006366 last_ptr,
6367 num_bytes,
6368 search_start,
6369 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006370 if (offset) {
6371 /* we found one, proceed */
6372 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05006373 trace_btrfs_reserve_extent_cluster(root,
6374 block_group, search_start,
6375 num_bytes);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006376 goto checks;
6377 }
Josef Bacik0a243252009-09-11 16:11:20 -04006378 } else if (!cached && loop > LOOP_CACHING_NOWAIT
6379 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04006380 spin_unlock(&last_ptr->refill_lock);
6381
Josef Bacik0a243252009-09-11 16:11:20 -04006382 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04006383 wait_block_group_cache_progress(block_group,
6384 num_bytes + empty_cluster + empty_size);
6385 goto have_block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006386 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006387
Chris Masonfa9c0d792009-04-03 09:47:43 -04006388 /*
6389 * at this point we either didn't find a cluster
6390 * or we weren't able to allocate a block from our
6391 * cluster. Free the cluster we've been trying
6392 * to use, and go to the next block group
6393 */
Josef Bacik0a243252009-09-11 16:11:20 -04006394 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006395 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04006396 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006397 }
6398
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006399unclustered_alloc:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006400 spin_lock(&block_group->free_space_ctl->tree_lock);
6401 if (cached &&
6402 block_group->free_space_ctl->free_space <
6403 num_bytes + empty_cluster + empty_size) {
Miao Xiea4820392013-09-09 13:19:42 +08006404 if (block_group->free_space_ctl->free_space >
6405 max_extent_size)
6406 max_extent_size =
6407 block_group->free_space_ctl->free_space;
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006408 spin_unlock(&block_group->free_space_ctl->tree_lock);
6409 goto loop;
6410 }
6411 spin_unlock(&block_group->free_space_ctl->tree_lock);
6412
Josef Bacik6226cb0a2009-04-03 10:14:18 -04006413 offset = btrfs_find_space_for_alloc(block_group, search_start,
Miao Xiea4820392013-09-09 13:19:42 +08006414 num_bytes, empty_size,
6415 &max_extent_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006416 /*
6417 * If we didn't find a chunk, and we haven't failed on this
6418 * block group before, and this block group is in the middle of
6419 * caching and we are ok with waiting, then go ahead and wait
6420 * for progress to be made, and set failed_alloc to true.
6421 *
6422 * If failed_alloc is true then we've already waited on this
6423 * block group once and should move on to the next block group.
6424 */
6425 if (!offset && !failed_alloc && !cached &&
6426 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04006427 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006428 num_bytes + empty_size);
6429 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04006430 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006431 } else if (!offset) {
Miao Xie60d2adb2011-09-09 17:34:35 +08006432 if (!cached)
6433 have_caching_bg = true;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006434 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04006435 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006436checks:
David Woodhouse53b381b2013-01-29 18:40:14 -05006437 search_start = stripe_align(root, used_block_group,
6438 offset, num_bytes);
Chris Masone37c9e62007-05-09 20:13:14 -04006439
Josef Bacik2552d172009-04-03 10:14:19 -04006440 /* move on to the next group */
6441 if (search_start + num_bytes >
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006442 used_block_group->key.objectid + used_block_group->key.offset) {
6443 btrfs_add_free_space(used_block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04006444 goto loop;
Josef Bacik6226cb0a2009-04-03 10:14:18 -04006445 }
Josef Bacik80eb2342008-10-29 14:49:05 -04006446
Josef Bacik6226cb0a2009-04-03 10:14:18 -04006447 if (offset < search_start)
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006448 btrfs_add_free_space(used_block_group, offset,
Josef Bacik6226cb0a2009-04-03 10:14:18 -04006449 search_start - offset);
6450 BUG_ON(offset > search_start);
6451
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006452 ret = btrfs_update_reserved_bytes(used_block_group, num_bytes,
Josef Bacikfb25e912011-07-26 17:00:46 -04006453 alloc_type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006454 if (ret == -EAGAIN) {
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006455 btrfs_add_free_space(used_block_group, offset, num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006456 goto loop;
6457 }
Yan Zheng11833d62009-09-11 16:11:19 -04006458
Josef Bacik2552d172009-04-03 10:14:19 -04006459 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006460 ins->objectid = search_start;
6461 ins->offset = num_bytes;
6462
Josef Bacik3f7de032011-11-10 08:29:20 -05006463 trace_btrfs_reserve_extent(orig_root, block_group,
6464 search_start, num_bytes);
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006465 if (used_block_group != block_group)
6466 btrfs_put_block_group(used_block_group);
Josef Bacikd82a6f12011-05-11 15:26:06 -04006467 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006468 break;
6469loop:
Josef Bacik0a243252009-09-11 16:11:20 -04006470 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006471 failed_alloc = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04006472 BUG_ON(index != get_block_group_index(block_group));
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006473 if (used_block_group != block_group)
6474 btrfs_put_block_group(used_block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006475 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006476 }
6477 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05006478
Miao Xie60d2adb2011-09-09 17:34:35 +08006479 if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg)
6480 goto search;
6481
Yan, Zhengb742bb82010-05-16 10:46:24 -04006482 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
6483 goto search;
6484
Josef Bacik285ff5a2012-01-13 15:27:45 -05006485 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05006486 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
6487 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04006488 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
6489 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
6490 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
6491 * again
Chris Masonfa9c0d792009-04-03 09:47:43 -04006492 */
Josef Bacik723bda22011-05-27 16:11:38 -04006493 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) {
Yan, Zhengb742bb82010-05-16 10:46:24 -04006494 index = 0;
Josef Bacik723bda22011-05-27 16:11:38 -04006495 loop++;
Josef Bacik817d52f2009-07-13 21:29:25 -04006496 if (loop == LOOP_ALLOC_CHUNK) {
Josef Bacik00361582013-08-14 14:02:47 -04006497 struct btrfs_trans_handle *trans;
6498
6499 trans = btrfs_join_transaction(root);
6500 if (IS_ERR(trans)) {
6501 ret = PTR_ERR(trans);
6502 goto out;
6503 }
6504
David Sterbab6919a52013-04-29 13:39:40 +00006505 ret = do_chunk_alloc(trans, root, flags,
Josef Bacikea658ba2012-09-11 16:57:25 -04006506 CHUNK_ALLOC_FORCE);
6507 /*
6508 * Do not bail out on ENOSPC since we
6509 * can do more things.
6510 */
Josef Bacik00361582013-08-14 14:02:47 -04006511 if (ret < 0 && ret != -ENOSPC)
Josef Bacikea658ba2012-09-11 16:57:25 -04006512 btrfs_abort_transaction(trans,
6513 root, ret);
Josef Bacik00361582013-08-14 14:02:47 -04006514 else
6515 ret = 0;
6516 btrfs_end_transaction(trans, root);
6517 if (ret)
Josef Bacikea658ba2012-09-11 16:57:25 -04006518 goto out;
Josef Bacik723bda22011-05-27 16:11:38 -04006519 }
6520
6521 if (loop == LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006522 empty_size = 0;
6523 empty_cluster = 0;
6524 }
Chris Mason42e70e72008-11-07 18:17:11 -05006525
Josef Bacik723bda22011-05-27 16:11:38 -04006526 goto search;
Josef Bacik2552d172009-04-03 10:14:19 -04006527 } else if (!ins->objectid) {
6528 ret = -ENOSPC;
Josef Bacikd82a6f12011-05-11 15:26:06 -04006529 } else if (ins->objectid) {
Josef Bacik2552d172009-04-03 10:14:19 -04006530 ret = 0;
6531 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006532out:
Miao Xiea4820392013-09-09 13:19:42 +08006533 if (ret == -ENOSPC)
6534 ins->offset = max_extent_size;
Chris Mason0f70abe2007-02-28 16:46:22 -05006535 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05006536}
Chris Masonec44a352008-04-28 15:29:52 -04006537
Josef Bacik9ed74f22009-09-11 16:12:44 -04006538static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
6539 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04006540{
6541 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb82010-05-16 10:46:24 -04006542 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006543
Josef Bacik9ed74f22009-09-11 16:12:44 -04006544 spin_lock(&info->lock);
Josef Bacikfb25e912011-07-26 17:00:46 -04006545 printk(KERN_INFO "space_info %llu has %llu free, is %sfull\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006546 info->flags,
6547 info->total_bytes - info->bytes_used - info->bytes_pinned -
6548 info->bytes_reserved - info->bytes_readonly,
Chris Masond3977122009-01-05 21:25:51 -05006549 (info->full) ? "" : "not ");
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006550 printk(KERN_INFO "space_info total=%llu, used=%llu, pinned=%llu, "
6551 "reserved=%llu, may_use=%llu, readonly=%llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006552 info->total_bytes, info->bytes_used, info->bytes_pinned,
6553 info->bytes_reserved, info->bytes_may_use,
6554 info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006555 spin_unlock(&info->lock);
6556
6557 if (!dump_block_groups)
6558 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006559
Josef Bacik80eb2342008-10-29 14:49:05 -04006560 down_read(&info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04006561again:
6562 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04006563 spin_lock(&cache->lock);
Liu Bo799ffc32012-07-06 03:31:35 -06006564 printk(KERN_INFO "block group %llu has %llu bytes, %llu used %llu pinned %llu reserved %s\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006565 cache->key.objectid, cache->key.offset,
6566 btrfs_block_group_used(&cache->item), cache->pinned,
6567 cache->reserved, cache->ro ? "[readonly]" : "");
Josef Bacik0f9dd462008-09-23 13:14:11 -04006568 btrfs_dump_free_space(cache, bytes);
6569 spin_unlock(&cache->lock);
6570 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04006571 if (++index < BTRFS_NR_RAID_TYPES)
6572 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04006573 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04006574}
Zheng Yane8569812008-09-26 10:05:48 -04006575
Josef Bacik00361582013-08-14 14:02:47 -04006576int btrfs_reserve_extent(struct btrfs_root *root,
Yan Zheng11833d62009-09-11 16:11:19 -04006577 u64 num_bytes, u64 min_alloc_size,
6578 u64 empty_size, u64 hint_byte,
David Sterbab6919a52013-04-29 13:39:40 +00006579 struct btrfs_key *ins, int is_data)
Chris Masonfec577f2007-02-26 10:40:21 -05006580{
Miao Xie9e622d62012-01-26 15:01:12 -05006581 bool final_tried = false;
David Sterbab6919a52013-04-29 13:39:40 +00006582 u64 flags;
Chris Masonfec577f2007-02-26 10:40:21 -05006583 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04006584
David Sterbab6919a52013-04-29 13:39:40 +00006585 flags = btrfs_get_alloc_profile(root, is_data);
Chris Mason98d20f62008-04-14 09:46:10 -04006586again:
Chris Masondb945352007-10-15 16:15:53 -04006587 WARN_ON(num_bytes < root->sectorsize);
Josef Bacik00361582013-08-14 14:02:47 -04006588 ret = find_free_extent(root, num_bytes, empty_size, hint_byte, ins,
6589 flags);
Chris Mason3b951512008-04-17 11:29:12 -04006590
Miao Xie9e622d62012-01-26 15:01:12 -05006591 if (ret == -ENOSPC) {
Miao Xiea4820392013-09-09 13:19:42 +08006592 if (!final_tried && ins->offset) {
6593 num_bytes = min(num_bytes >> 1, ins->offset);
Zach Brown24542bf2012-11-16 00:04:43 +00006594 num_bytes = round_down(num_bytes, root->sectorsize);
Miao Xie9e622d62012-01-26 15:01:12 -05006595 num_bytes = max(num_bytes, min_alloc_size);
Miao Xie9e622d62012-01-26 15:01:12 -05006596 if (num_bytes == min_alloc_size)
6597 final_tried = true;
6598 goto again;
6599 } else if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
6600 struct btrfs_space_info *sinfo;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006601
David Sterbab6919a52013-04-29 13:39:40 +00006602 sinfo = __find_space_info(root->fs_info, flags);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006603 btrfs_err(root->fs_info, "allocation failed flags %llu, wanted %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006604 flags, num_bytes);
Jeff Mahoney53804282012-03-01 14:56:28 +01006605 if (sinfo)
6606 dump_space_info(sinfo, num_bytes, 1);
Miao Xie9e622d62012-01-26 15:01:12 -05006607 }
Chris Mason925baed2008-06-25 16:01:30 -04006608 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04006609
6610 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006611}
6612
Chris Masone688b7252011-10-31 20:52:39 -04006613static int __btrfs_free_reserved_extent(struct btrfs_root *root,
6614 u64 start, u64 len, int pin)
Chris Mason65b51a02008-08-01 15:11:20 -04006615{
Josef Bacik0f9dd462008-09-23 13:14:11 -04006616 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05006617 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006618
Josef Bacik0f9dd462008-09-23 13:14:11 -04006619 cache = btrfs_lookup_block_group(root->fs_info, start);
6620 if (!cache) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006621 btrfs_err(root->fs_info, "Unable to find block group for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006622 start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04006623 return -ENOSPC;
6624 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05006625
Li Dongyang5378e602011-03-24 10:24:27 +00006626 if (btrfs_test_opt(root, DISCARD))
6627 ret = btrfs_discard_extent(root, start, len, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05006628
Chris Masone688b7252011-10-31 20:52:39 -04006629 if (pin)
6630 pin_down_extent(root, cache, start, len, 1);
6631 else {
6632 btrfs_add_free_space(cache, start, len);
6633 btrfs_update_reserved_bytes(cache, len, RESERVE_FREE);
6634 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006635 btrfs_put_block_group(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04006636
liubo1abe9b82011-03-24 11:18:59 +00006637 trace_btrfs_reserved_extent_free(root, start, len);
6638
Chris Masone6dcd2d2008-07-17 12:53:50 -04006639 return ret;
6640}
6641
Chris Masone688b7252011-10-31 20:52:39 -04006642int btrfs_free_reserved_extent(struct btrfs_root *root,
6643 u64 start, u64 len)
6644{
6645 return __btrfs_free_reserved_extent(root, start, len, 0);
6646}
6647
6648int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root,
6649 u64 start, u64 len)
6650{
6651 return __btrfs_free_reserved_extent(root, start, len, 1);
6652}
6653
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006654static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
6655 struct btrfs_root *root,
6656 u64 parent, u64 root_objectid,
6657 u64 flags, u64 owner, u64 offset,
6658 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006659{
6660 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006661 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006662 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006663 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006664 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006665 struct extent_buffer *leaf;
6666 int type;
6667 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04006668
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006669 if (parent > 0)
6670 type = BTRFS_SHARED_DATA_REF_KEY;
6671 else
6672 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04006673
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006674 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05006675
6676 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00006677 if (!path)
6678 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05006679
Chris Masonb9473432009-03-13 11:00:37 -04006680 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006681 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
6682 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006683 if (ret) {
6684 btrfs_free_path(path);
6685 return ret;
6686 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04006687
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006688 leaf = path->nodes[0];
6689 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05006690 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006691 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
6692 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
6693 btrfs_set_extent_flags(leaf, extent_item,
6694 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05006695
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006696 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
6697 btrfs_set_extent_inline_ref_type(leaf, iref, type);
6698 if (parent > 0) {
6699 struct btrfs_shared_data_ref *ref;
6700 ref = (struct btrfs_shared_data_ref *)(iref + 1);
6701 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
6702 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
6703 } else {
6704 struct btrfs_extent_data_ref *ref;
6705 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
6706 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
6707 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
6708 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
6709 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
6710 }
Chris Mason47e4bb92008-02-01 14:51:59 -05006711
6712 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05006713 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04006714
Liu Boc53d6132012-12-27 09:01:19 +00006715 ret = update_block_group(root, ins->objectid, ins->offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006716 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006717 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006718 ins->objectid, ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05006719 BUG();
6720 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04006721 trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006722 return ret;
6723}
6724
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006725static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
6726 struct btrfs_root *root,
6727 u64 parent, u64 root_objectid,
6728 u64 flags, struct btrfs_disk_key *key,
6729 int level, struct btrfs_key *ins)
6730{
6731 int ret;
6732 struct btrfs_fs_info *fs_info = root->fs_info;
6733 struct btrfs_extent_item *extent_item;
6734 struct btrfs_tree_block_info *block_info;
6735 struct btrfs_extent_inline_ref *iref;
6736 struct btrfs_path *path;
6737 struct extent_buffer *leaf;
Josef Bacik3173a182013-03-07 14:22:04 -05006738 u32 size = sizeof(*extent_item) + sizeof(*iref);
6739 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
6740 SKINNY_METADATA);
6741
6742 if (!skinny_metadata)
6743 size += sizeof(*block_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006744
6745 path = btrfs_alloc_path();
Josef Bacik857cc2f2013-10-07 15:21:08 -04006746 if (!path) {
6747 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
6748 root->leafsize);
Mark Fashehd8926bb2011-07-13 10:38:47 -07006749 return -ENOMEM;
Josef Bacik857cc2f2013-10-07 15:21:08 -04006750 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006751
6752 path->leave_spinning = 1;
6753 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
6754 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006755 if (ret) {
Josef Bacik857cc2f2013-10-07 15:21:08 -04006756 btrfs_free_and_pin_reserved_extent(root, ins->objectid,
6757 root->leafsize);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006758 btrfs_free_path(path);
6759 return ret;
6760 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006761
6762 leaf = path->nodes[0];
6763 extent_item = btrfs_item_ptr(leaf, path->slots[0],
6764 struct btrfs_extent_item);
6765 btrfs_set_extent_refs(leaf, extent_item, 1);
6766 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
6767 btrfs_set_extent_flags(leaf, extent_item,
6768 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006769
Josef Bacik3173a182013-03-07 14:22:04 -05006770 if (skinny_metadata) {
6771 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
6772 } else {
6773 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
6774 btrfs_set_tree_block_key(leaf, block_info, key);
6775 btrfs_set_tree_block_level(leaf, block_info, level);
6776 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
6777 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006778
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006779 if (parent > 0) {
6780 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
6781 btrfs_set_extent_inline_ref_type(leaf, iref,
6782 BTRFS_SHARED_BLOCK_REF_KEY);
6783 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
6784 } else {
6785 btrfs_set_extent_inline_ref_type(leaf, iref,
6786 BTRFS_TREE_BLOCK_REF_KEY);
6787 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
6788 }
6789
6790 btrfs_mark_buffer_dirty(leaf);
6791 btrfs_free_path(path);
6792
Josef Bacik3173a182013-03-07 14:22:04 -05006793 ret = update_block_group(root, ins->objectid, root->leafsize, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006794 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006795 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006796 ins->objectid, ins->offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006797 BUG();
6798 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04006799
6800 trace_btrfs_reserved_extent_alloc(root, ins->objectid, root->leafsize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006801 return ret;
6802}
6803
6804int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
6805 struct btrfs_root *root,
6806 u64 root_objectid, u64 owner,
6807 u64 offset, struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006808{
6809 int ret;
Chris Mason1c2308f2008-09-23 13:14:13 -04006810
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006811 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04006812
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006813 ret = btrfs_add_delayed_data_ref(root->fs_info, trans, ins->objectid,
6814 ins->offset, 0,
6815 root_objectid, owner, offset,
6816 BTRFS_ADD_DELAYED_EXTENT, NULL, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006817 return ret;
6818}
Chris Masone02119d2008-09-05 16:13:11 -04006819
6820/*
6821 * this is used by the tree logging recovery code. It records that
6822 * an extent has been allocated and makes sure to clear the free
6823 * space cache bits as well
6824 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006825int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
6826 struct btrfs_root *root,
6827 u64 root_objectid, u64 owner, u64 offset,
6828 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04006829{
6830 int ret;
6831 struct btrfs_block_group_cache *block_group;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006832
6833 /*
6834 * Mixed block groups will exclude before processing the log so we only
6835 * need to do the exlude dance if this fs isn't mixed.
6836 */
6837 if (!btrfs_fs_incompat(root->fs_info, MIXED_GROUPS)) {
6838 ret = __exclude_logged_extent(root, ins->objectid, ins->offset);
6839 if (ret)
6840 return ret;
6841 }
Chris Masone02119d2008-09-05 16:13:11 -04006842
Chris Masone02119d2008-09-05 16:13:11 -04006843 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006844 if (!block_group)
6845 return -EINVAL;
Yan Zheng11833d62009-09-11 16:11:19 -04006846
Josef Bacikfb25e912011-07-26 17:00:46 -04006847 ret = btrfs_update_reserved_bytes(block_group, ins->offset,
6848 RESERVE_ALLOC_NO_ACCOUNT);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006849 BUG_ON(ret); /* logic error */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006850 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
6851 0, owner, offset, ins, 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006852 btrfs_put_block_group(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04006853 return ret;
6854}
6855
Eric Sandeen48a3b632013-04-25 20:41:01 +00006856static struct extent_buffer *
6857btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
6858 u64 bytenr, u32 blocksize, int level)
Chris Mason65b51a02008-08-01 15:11:20 -04006859{
6860 struct extent_buffer *buf;
6861
6862 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
6863 if (!buf)
6864 return ERR_PTR(-ENOMEM);
6865 btrfs_set_header_generation(buf, trans->transid);
Chris Mason85d4e462011-07-26 16:11:19 -04006866 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04006867 btrfs_tree_lock(buf);
6868 clean_tree_block(trans, root, buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05006869 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
Chris Masonb4ce94d2009-02-04 09:25:08 -05006870
6871 btrfs_set_lock_blocking(buf);
Chris Mason65b51a02008-08-01 15:11:20 -04006872 btrfs_set_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05006873
Chris Masond0c803c2008-09-11 16:17:57 -04006874 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +00006875 /*
6876 * we allow two log transactions at a time, use different
6877 * EXENT bit to differentiate dirty pages.
6878 */
6879 if (root->log_transid % 2 == 0)
6880 set_extent_dirty(&root->dirty_log_pages, buf->start,
6881 buf->start + buf->len - 1, GFP_NOFS);
6882 else
6883 set_extent_new(&root->dirty_log_pages, buf->start,
6884 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond0c803c2008-09-11 16:17:57 -04006885 } else {
6886 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
6887 buf->start + buf->len - 1, GFP_NOFS);
6888 }
Chris Mason65b51a02008-08-01 15:11:20 -04006889 trans->blocks_used++;
Chris Masonb4ce94d2009-02-04 09:25:08 -05006890 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04006891 return buf;
6892}
6893
Yan, Zhengf0486c62010-05-16 10:46:25 -04006894static struct btrfs_block_rsv *
6895use_block_rsv(struct btrfs_trans_handle *trans,
6896 struct btrfs_root *root, u32 blocksize)
6897{
6898 struct btrfs_block_rsv *block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00006899 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006900 int ret;
Miao Xied88033d2013-05-13 13:55:12 +00006901 bool global_updated = false;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006902
6903 block_rsv = get_block_rsv(trans, root);
6904
Miao Xieb586b322013-05-13 13:55:10 +00006905 if (unlikely(block_rsv->size == 0))
6906 goto try_reserve;
Miao Xied88033d2013-05-13 13:55:12 +00006907again:
Yan, Zhengf0486c62010-05-16 10:46:25 -04006908 ret = block_rsv_use_bytes(block_rsv, blocksize);
6909 if (!ret)
6910 return block_rsv;
6911
Miao Xieb586b322013-05-13 13:55:10 +00006912 if (block_rsv->failfast)
6913 return ERR_PTR(ret);
6914
Miao Xied88033d2013-05-13 13:55:12 +00006915 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
6916 global_updated = true;
6917 update_global_block_rsv(root->fs_info);
6918 goto again;
6919 }
6920
Miao Xieb586b322013-05-13 13:55:10 +00006921 if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
6922 static DEFINE_RATELIMIT_STATE(_rs,
6923 DEFAULT_RATELIMIT_INTERVAL * 10,
6924 /*DEFAULT_RATELIMIT_BURST*/ 1);
6925 if (__ratelimit(&_rs))
6926 WARN(1, KERN_DEBUG
6927 "btrfs: block rsv returned %d\n", ret);
6928 }
6929try_reserve:
6930 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
6931 BTRFS_RESERVE_NO_FLUSH);
6932 if (!ret)
6933 return block_rsv;
6934 /*
6935 * If we couldn't reserve metadata bytes try and use some from
Miao Xie5881cfc2013-05-13 13:55:11 +00006936 * the global reserve if its space type is the same as the global
6937 * reservation.
Miao Xieb586b322013-05-13 13:55:10 +00006938 */
Miao Xie5881cfc2013-05-13 13:55:11 +00006939 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
6940 block_rsv->space_info == global_rsv->space_info) {
Miao Xieb586b322013-05-13 13:55:10 +00006941 ret = block_rsv_use_bytes(global_rsv, blocksize);
6942 if (!ret)
6943 return global_rsv;
6944 }
6945 return ERR_PTR(ret);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006946}
6947
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006948static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
6949 struct btrfs_block_rsv *block_rsv, u32 blocksize)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006950{
6951 block_rsv_add_bytes(block_rsv, blocksize, 0);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006952 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006953}
6954
Chris Masonfec577f2007-02-26 10:40:21 -05006955/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04006956 * finds a free extent and does all the dirty work required for allocation
6957 * returns the key for the extent through ins, and a tree buffer for
6958 * the first block of the extent through buf.
6959 *
Chris Masonfec577f2007-02-26 10:40:21 -05006960 * returns the tree buffer or NULL.
6961 */
Chris Mason5f39d392007-10-15 16:14:19 -04006962struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006963 struct btrfs_root *root, u32 blocksize,
6964 u64 parent, u64 root_objectid,
6965 struct btrfs_disk_key *key, int level,
Jan Schmidt5581a512012-05-16 17:04:52 +02006966 u64 hint, u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05006967{
Chris Masone2fa7222007-03-12 16:22:34 -04006968 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006969 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04006970 struct extent_buffer *buf;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006971 u64 flags = 0;
6972 int ret;
Josef Bacik3173a182013-03-07 14:22:04 -05006973 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
6974 SKINNY_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006975
6976 block_rsv = use_block_rsv(trans, root, blocksize);
6977 if (IS_ERR(block_rsv))
6978 return ERR_CAST(block_rsv);
6979
Josef Bacik00361582013-08-14 14:02:47 -04006980 ret = btrfs_reserve_extent(root, blocksize, blocksize,
Josef Bacik81c9ad22012-01-18 10:56:06 -05006981 empty_size, hint, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05006982 if (ret) {
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006983 unuse_block_rsv(root->fs_info, block_rsv, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04006984 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05006985 }
Chris Mason55c69072008-01-09 15:55:33 -05006986
Chris Mason4008c042009-02-12 14:09:45 -05006987 buf = btrfs_init_new_buffer(trans, root, ins.objectid,
6988 blocksize, level);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006989 BUG_ON(IS_ERR(buf)); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006990
6991 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
6992 if (parent == 0)
6993 parent = ins.objectid;
6994 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
6995 } else
6996 BUG_ON(parent > 0);
6997
6998 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
6999 struct btrfs_delayed_extent_op *extent_op;
Miao Xie78a61842012-11-21 02:21:28 +00007000 extent_op = btrfs_alloc_delayed_extent_op();
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007001 BUG_ON(!extent_op); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007002 if (key)
7003 memcpy(&extent_op->key, key, sizeof(extent_op->key));
7004 else
7005 memset(&extent_op->key, 0, sizeof(extent_op->key));
7006 extent_op->flags_to_set = flags;
Josef Bacik3173a182013-03-07 14:22:04 -05007007 if (skinny_metadata)
7008 extent_op->update_key = 0;
7009 else
7010 extent_op->update_key = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007011 extent_op->update_flags = 1;
7012 extent_op->is_data = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04007013 extent_op->level = level;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007014
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007015 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
7016 ins.objectid,
Yan, Zhengf0486c62010-05-16 10:46:25 -04007017 ins.offset, parent, root_objectid,
7018 level, BTRFS_ADD_DELAYED_EXTENT,
Jan Schmidt5581a512012-05-16 17:04:52 +02007019 extent_op, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007020 BUG_ON(ret); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007021 }
Chris Masonfec577f2007-02-26 10:40:21 -05007022 return buf;
7023}
Chris Masona28ec192007-03-06 20:08:01 -05007024
Yan Zheng2c47e6052009-06-27 21:07:35 -04007025struct walk_control {
7026 u64 refs[BTRFS_MAX_LEVEL];
7027 u64 flags[BTRFS_MAX_LEVEL];
7028 struct btrfs_key update_progress;
7029 int stage;
7030 int level;
7031 int shared_level;
7032 int update_ref;
7033 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007034 int reada_slot;
7035 int reada_count;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007036 int for_reloc;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007037};
7038
7039#define DROP_REFERENCE 1
7040#define UPDATE_BACKREF 2
7041
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007042static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
7043 struct btrfs_root *root,
7044 struct walk_control *wc,
7045 struct btrfs_path *path)
7046{
7047 u64 bytenr;
7048 u64 generation;
7049 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007050 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007051 u32 nritems;
7052 u32 blocksize;
7053 struct btrfs_key key;
7054 struct extent_buffer *eb;
7055 int ret;
7056 int slot;
7057 int nread = 0;
7058
7059 if (path->slots[wc->level] < wc->reada_slot) {
7060 wc->reada_count = wc->reada_count * 2 / 3;
7061 wc->reada_count = max(wc->reada_count, 2);
7062 } else {
7063 wc->reada_count = wc->reada_count * 3 / 2;
7064 wc->reada_count = min_t(int, wc->reada_count,
7065 BTRFS_NODEPTRS_PER_BLOCK(root));
7066 }
7067
7068 eb = path->nodes[wc->level];
7069 nritems = btrfs_header_nritems(eb);
7070 blocksize = btrfs_level_size(root, wc->level - 1);
7071
7072 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
7073 if (nread >= wc->reada_count)
7074 break;
7075
7076 cond_resched();
7077 bytenr = btrfs_node_blockptr(eb, slot);
7078 generation = btrfs_node_ptr_generation(eb, slot);
7079
7080 if (slot == path->slots[wc->level])
7081 goto reada;
7082
7083 if (wc->stage == UPDATE_BACKREF &&
7084 generation <= root->root_key.offset)
7085 continue;
7086
Yan, Zheng94fcca92009-10-09 09:25:16 -04007087 /* We don't lock the tree block, it's OK to be racy here */
Josef Bacik3173a182013-03-07 14:22:04 -05007088 ret = btrfs_lookup_extent_info(trans, root, bytenr,
7089 wc->level - 1, 1, &refs,
7090 &flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007091 /* We don't care about errors in readahead. */
7092 if (ret < 0)
7093 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007094 BUG_ON(refs == 0);
7095
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007096 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007097 if (refs == 1)
7098 goto reada;
7099
Yan, Zheng94fcca92009-10-09 09:25:16 -04007100 if (wc->level == 1 &&
7101 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7102 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007103 if (!wc->update_ref ||
7104 generation <= root->root_key.offset)
7105 continue;
7106 btrfs_node_key_to_cpu(eb, &key, slot);
7107 ret = btrfs_comp_cpu_keys(&key,
7108 &wc->update_progress);
7109 if (ret < 0)
7110 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007111 } else {
7112 if (wc->level == 1 &&
7113 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7114 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007115 }
7116reada:
7117 ret = readahead_tree_block(root, bytenr, blocksize,
7118 generation);
7119 if (ret)
7120 break;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007121 nread++;
7122 }
7123 wc->reada_slot = slot;
7124}
7125
Chris Mason9aca1d52007-03-13 11:09:37 -04007126/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007127 * helper to process tree block while walking down the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04007128 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04007129 * when wc->stage == UPDATE_BACKREF, this function updates
7130 * back refs for pointers in the block.
7131 *
7132 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04007133 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007134static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
7135 struct btrfs_root *root,
7136 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007137 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04007138{
7139 int level = wc->level;
7140 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04007141 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
7142 int ret;
7143
7144 if (wc->stage == UPDATE_BACKREF &&
7145 btrfs_header_owner(eb) != root->root_key.objectid)
7146 return 1;
7147
7148 /*
7149 * when reference count of tree block is 1, it won't increase
7150 * again. once full backref flag is set, we never clear it.
7151 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04007152 if (lookup_info &&
7153 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
7154 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007155 BUG_ON(!path->locks[level]);
7156 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05007157 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007158 &wc->refs[level],
7159 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007160 BUG_ON(ret == -ENOMEM);
7161 if (ret)
7162 return ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007163 BUG_ON(wc->refs[level] == 0);
7164 }
7165
Yan Zheng2c47e6052009-06-27 21:07:35 -04007166 if (wc->stage == DROP_REFERENCE) {
7167 if (wc->refs[level] > 1)
7168 return 1;
7169
7170 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04007171 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007172 path->locks[level] = 0;
7173 }
7174 return 0;
7175 }
7176
7177 /* wc->stage == UPDATE_BACKREF */
7178 if (!(wc->flags[level] & flag)) {
7179 BUG_ON(!path->locks[level]);
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007180 ret = btrfs_inc_ref(trans, root, eb, 1, wc->for_reloc);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007181 BUG_ON(ret); /* -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007182 ret = btrfs_dec_ref(trans, root, eb, 0, wc->for_reloc);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007183 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007184 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
Josef Bacikb1c79e02013-05-09 13:49:30 -04007185 eb->len, flag,
7186 btrfs_header_level(eb), 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007187 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007188 wc->flags[level] |= flag;
7189 }
7190
7191 /*
7192 * the block is shared by multiple trees, so it's not good to
7193 * keep the tree lock
7194 */
7195 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04007196 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007197 path->locks[level] = 0;
7198 }
7199 return 0;
7200}
7201
7202/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007203 * helper to process tree block pointer.
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007204 *
7205 * when wc->stage == DROP_REFERENCE, this function checks
7206 * reference count of the block pointed to. if the block
7207 * is shared and we need update back refs for the subtree
7208 * rooted at the block, this function changes wc->stage to
7209 * UPDATE_BACKREF. if the block is shared and there is no
7210 * need to update back, this function drops the reference
7211 * to the block.
7212 *
7213 * NOTE: return value 1 means we should stop walking down.
7214 */
7215static noinline int do_walk_down(struct btrfs_trans_handle *trans,
7216 struct btrfs_root *root,
7217 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007218 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007219{
7220 u64 bytenr;
7221 u64 generation;
7222 u64 parent;
7223 u32 blocksize;
7224 struct btrfs_key key;
7225 struct extent_buffer *next;
7226 int level = wc->level;
7227 int reada = 0;
7228 int ret = 0;
7229
7230 generation = btrfs_node_ptr_generation(path->nodes[level],
7231 path->slots[level]);
7232 /*
7233 * if the lower level block was created before the snapshot
7234 * was created, we know there is no need to update back refs
7235 * for the subtree
7236 */
7237 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04007238 generation <= root->root_key.offset) {
7239 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007240 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007241 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007242
7243 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
7244 blocksize = btrfs_level_size(root, level - 1);
7245
7246 next = btrfs_find_tree_block(root, bytenr, blocksize);
7247 if (!next) {
7248 next = btrfs_find_create_tree_block(root, bytenr, blocksize);
Miao Xie90d2c51d2010-03-25 12:37:12 +00007249 if (!next)
7250 return -ENOMEM;
Josef Bacikb2aaaa32013-07-05 17:05:38 -04007251 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
7252 level - 1);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007253 reada = 1;
7254 }
7255 btrfs_tree_lock(next);
7256 btrfs_set_lock_blocking(next);
7257
Josef Bacik3173a182013-03-07 14:22:04 -05007258 ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007259 &wc->refs[level - 1],
7260 &wc->flags[level - 1]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007261 if (ret < 0) {
7262 btrfs_tree_unlock(next);
7263 return ret;
7264 }
7265
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007266 if (unlikely(wc->refs[level - 1] == 0)) {
7267 btrfs_err(root->fs_info, "Missing references.");
7268 BUG();
7269 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04007270 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007271
Yan, Zheng94fcca92009-10-09 09:25:16 -04007272 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007273 if (wc->refs[level - 1] > 1) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04007274 if (level == 1 &&
7275 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7276 goto skip;
7277
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007278 if (!wc->update_ref ||
7279 generation <= root->root_key.offset)
7280 goto skip;
7281
7282 btrfs_node_key_to_cpu(path->nodes[level], &key,
7283 path->slots[level]);
7284 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
7285 if (ret < 0)
7286 goto skip;
7287
7288 wc->stage = UPDATE_BACKREF;
7289 wc->shared_level = level - 1;
7290 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04007291 } else {
7292 if (level == 1 &&
7293 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7294 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007295 }
7296
Chris Masonb9fab912012-05-06 07:23:47 -04007297 if (!btrfs_buffer_uptodate(next, generation, 0)) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007298 btrfs_tree_unlock(next);
7299 free_extent_buffer(next);
7300 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007301 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007302 }
7303
7304 if (!next) {
7305 if (reada && level == 1)
7306 reada_walk_down(trans, root, wc, path);
7307 next = read_tree_block(root, bytenr, blocksize, generation);
Josef Bacik416bc652013-04-23 14:17:42 -04007308 if (!next || !extent_buffer_uptodate(next)) {
7309 free_extent_buffer(next);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00007310 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04007311 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007312 btrfs_tree_lock(next);
7313 btrfs_set_lock_blocking(next);
7314 }
7315
7316 level--;
7317 BUG_ON(level != btrfs_header_level(next));
7318 path->nodes[level] = next;
7319 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04007320 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007321 wc->level = level;
7322 if (wc->level == 1)
7323 wc->reada_slot = 0;
7324 return 0;
7325skip:
7326 wc->refs[level - 1] = 0;
7327 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007328 if (wc->stage == DROP_REFERENCE) {
7329 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
7330 parent = path->nodes[level]->start;
7331 } else {
7332 BUG_ON(root->root_key.objectid !=
7333 btrfs_header_owner(path->nodes[level]));
7334 parent = 0;
7335 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007336
Yan, Zheng94fcca92009-10-09 09:25:16 -04007337 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007338 root->root_key.objectid, level - 1, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007339 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007340 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007341 btrfs_tree_unlock(next);
7342 free_extent_buffer(next);
Yan, Zheng94fcca92009-10-09 09:25:16 -04007343 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007344 return 1;
7345}
7346
7347/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007348 * helper to process tree block while walking up the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04007349 *
7350 * when wc->stage == DROP_REFERENCE, this function drops
7351 * reference count on the block.
7352 *
7353 * when wc->stage == UPDATE_BACKREF, this function changes
7354 * wc->stage back to DROP_REFERENCE if we changed wc->stage
7355 * to UPDATE_BACKREF previously while processing the block.
7356 *
7357 * NOTE: return value 1 means we should stop walking up.
7358 */
7359static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
7360 struct btrfs_root *root,
7361 struct btrfs_path *path,
7362 struct walk_control *wc)
7363{
Yan, Zhengf0486c62010-05-16 10:46:25 -04007364 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007365 int level = wc->level;
7366 struct extent_buffer *eb = path->nodes[level];
7367 u64 parent = 0;
7368
7369 if (wc->stage == UPDATE_BACKREF) {
7370 BUG_ON(wc->shared_level < level);
7371 if (level < wc->shared_level)
7372 goto out;
7373
Yan Zheng2c47e6052009-06-27 21:07:35 -04007374 ret = find_next_key(path, level + 1, &wc->update_progress);
7375 if (ret > 0)
7376 wc->update_ref = 0;
7377
7378 wc->stage = DROP_REFERENCE;
7379 wc->shared_level = -1;
7380 path->slots[level] = 0;
7381
7382 /*
7383 * check reference count again if the block isn't locked.
7384 * we should start walking down the tree again if reference
7385 * count is one.
7386 */
7387 if (!path->locks[level]) {
7388 BUG_ON(level == 0);
7389 btrfs_tree_lock(eb);
7390 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04007391 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007392
7393 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05007394 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007395 &wc->refs[level],
7396 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007397 if (ret < 0) {
7398 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00007399 path->locks[level] = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007400 return ret;
7401 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007402 BUG_ON(wc->refs[level] == 0);
7403 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04007404 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00007405 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007406 return 1;
7407 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007408 }
7409 }
7410
7411 /* wc->stage == DROP_REFERENCE */
7412 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
7413
7414 if (wc->refs[level] == 1) {
7415 if (level == 0) {
7416 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007417 ret = btrfs_dec_ref(trans, root, eb, 1,
7418 wc->for_reloc);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007419 else
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007420 ret = btrfs_dec_ref(trans, root, eb, 0,
7421 wc->for_reloc);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007422 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007423 }
7424 /* make block locked assertion in clean_tree_block happy */
7425 if (!path->locks[level] &&
7426 btrfs_header_generation(eb) == trans->transid) {
7427 btrfs_tree_lock(eb);
7428 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04007429 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007430 }
7431 clean_tree_block(trans, root, eb);
7432 }
7433
7434 if (eb == root->node) {
7435 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
7436 parent = eb->start;
7437 else
7438 BUG_ON(root->root_key.objectid !=
7439 btrfs_header_owner(eb));
7440 } else {
7441 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
7442 parent = path->nodes[level + 1]->start;
7443 else
7444 BUG_ON(root->root_key.objectid !=
7445 btrfs_header_owner(path->nodes[level + 1]));
7446 }
7447
Jan Schmidt5581a512012-05-16 17:04:52 +02007448 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007449out:
7450 wc->refs[level] = 0;
7451 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007452 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007453}
7454
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007455static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
7456 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007457 struct btrfs_path *path,
7458 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04007459{
Yan Zheng2c47e6052009-06-27 21:07:35 -04007460 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007461 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007462 int ret;
7463
Yan Zheng2c47e6052009-06-27 21:07:35 -04007464 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04007465 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007466 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04007467 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007468
Yan Zheng2c47e6052009-06-27 21:07:35 -04007469 if (level == 0)
7470 break;
7471
Yan, Zheng7a7965f2010-02-01 02:41:17 +00007472 if (path->slots[level] >=
7473 btrfs_header_nritems(path->nodes[level]))
7474 break;
7475
Yan, Zheng94fcca92009-10-09 09:25:16 -04007476 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007477 if (ret > 0) {
7478 path->slots[level]++;
7479 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00007480 } else if (ret < 0)
7481 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007482 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007483 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04007484 return 0;
7485}
7486
Chris Masond3977122009-01-05 21:25:51 -05007487static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05007488 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04007489 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007490 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05007491{
Yan Zheng2c47e6052009-06-27 21:07:35 -04007492 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05007493 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04007494
Yan Zheng2c47e6052009-06-27 21:07:35 -04007495 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
7496 while (level < max_level && path->nodes[level]) {
7497 wc->level = level;
7498 if (path->slots[level] + 1 <
7499 btrfs_header_nritems(path->nodes[level])) {
7500 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05007501 return 0;
7502 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007503 ret = walk_up_proc(trans, root, path, wc);
7504 if (ret > 0)
7505 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05007506
Yan Zheng2c47e6052009-06-27 21:07:35 -04007507 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04007508 btrfs_tree_unlock_rw(path->nodes[level],
7509 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007510 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007511 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007512 free_extent_buffer(path->nodes[level]);
7513 path->nodes[level] = NULL;
7514 level++;
Chris Mason20524f02007-03-10 06:35:47 -05007515 }
7516 }
7517 return 1;
7518}
7519
Chris Mason9aca1d52007-03-13 11:09:37 -04007520/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04007521 * drop a subvolume tree.
7522 *
7523 * this function traverses the tree freeing any blocks that only
7524 * referenced by the tree.
7525 *
7526 * when a shared tree block is found. this function decreases its
7527 * reference count by one. if update_ref is true, this function
7528 * also make sure backrefs for the shared block and all lower level
7529 * blocks are properly updated.
David Sterba9d1a2a32013-03-12 15:13:28 +00007530 *
7531 * If called with for_reloc == 0, may exit early with -EAGAIN
Chris Mason9aca1d52007-03-13 11:09:37 -04007532 */
Jeff Mahoney2c536792011-10-03 23:22:41 -04007533int btrfs_drop_snapshot(struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007534 struct btrfs_block_rsv *block_rsv, int update_ref,
7535 int for_reloc)
Chris Mason20524f02007-03-10 06:35:47 -05007536{
Chris Mason5caf2a02007-04-02 11:20:42 -04007537 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007538 struct btrfs_trans_handle *trans;
7539 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04007540 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007541 struct walk_control *wc;
7542 struct btrfs_key key;
7543 int err = 0;
7544 int ret;
7545 int level;
Josef Bacikd29a9f62013-07-17 19:30:20 -04007546 bool root_dropped = false;
Chris Mason20524f02007-03-10 06:35:47 -05007547
Chris Mason5caf2a02007-04-02 11:20:42 -04007548 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00007549 if (!path) {
7550 err = -ENOMEM;
7551 goto out;
7552 }
Chris Mason20524f02007-03-10 06:35:47 -05007553
Yan Zheng2c47e6052009-06-27 21:07:35 -04007554 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07007555 if (!wc) {
7556 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00007557 err = -ENOMEM;
7558 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07007559 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007560
Yan, Zhenga22285a2010-05-16 10:48:46 -04007561 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007562 if (IS_ERR(trans)) {
7563 err = PTR_ERR(trans);
7564 goto out_free;
7565 }
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00007566
Yan, Zheng3fd0a552010-05-16 10:49:59 -04007567 if (block_rsv)
7568 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007569
Chris Mason9f3a7422007-08-07 15:52:19 -04007570 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007571 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007572 path->nodes[level] = btrfs_lock_root_node(root);
7573 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04007574 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04007575 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007576 memset(&wc->update_progress, 0,
7577 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04007578 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04007579 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007580 memcpy(&wc->update_progress, &key,
7581 sizeof(wc->update_progress));
7582
Chris Mason6702ed42007-08-07 16:15:09 -04007583 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007584 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04007585 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007586 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
7587 path->lowest_level = 0;
7588 if (ret < 0) {
7589 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007590 goto out_end_trans;
Chris Mason9f3a7422007-08-07 15:52:19 -04007591 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007592 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007593
Chris Mason7d9eb122008-07-08 14:19:17 -04007594 /*
7595 * unlock our path, this is safe because only this
7596 * function is allowed to delete this snapshot
7597 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007598 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04007599
Yan Zheng2c47e6052009-06-27 21:07:35 -04007600 level = btrfs_header_level(root->node);
7601 while (1) {
7602 btrfs_tree_lock(path->nodes[level]);
7603 btrfs_set_lock_blocking(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04007604 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007605
7606 ret = btrfs_lookup_extent_info(trans, root,
7607 path->nodes[level]->start,
Josef Bacik3173a182013-03-07 14:22:04 -05007608 level, 1, &wc->refs[level],
Yan Zheng2c47e6052009-06-27 21:07:35 -04007609 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007610 if (ret < 0) {
7611 err = ret;
7612 goto out_end_trans;
7613 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007614 BUG_ON(wc->refs[level] == 0);
7615
7616 if (level == root_item->drop_level)
7617 break;
7618
7619 btrfs_tree_unlock(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04007620 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007621 WARN_ON(wc->refs[level] != 1);
7622 level--;
7623 }
7624 }
7625
7626 wc->level = level;
7627 wc->shared_level = -1;
7628 wc->stage = DROP_REFERENCE;
7629 wc->update_ref = update_ref;
7630 wc->keep_locks = 0;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007631 wc->for_reloc = for_reloc;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007632 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007633
7634 while (1) {
David Sterba9d1a2a32013-03-12 15:13:28 +00007635
Yan Zheng2c47e6052009-06-27 21:07:35 -04007636 ret = walk_down_tree(trans, root, path, wc);
7637 if (ret < 0) {
7638 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04007639 break;
7640 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007641
7642 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
7643 if (ret < 0) {
7644 err = ret;
7645 break;
7646 }
7647
7648 if (ret > 0) {
7649 BUG_ON(wc->stage != DROP_REFERENCE);
7650 break;
7651 }
7652
7653 if (wc->stage == DROP_REFERENCE) {
7654 level = wc->level;
7655 btrfs_node_key(path->nodes[level],
7656 &root_item->drop_progress,
7657 path->slots[level]);
7658 root_item->drop_level = level;
7659 }
7660
7661 BUG_ON(wc->level == 0);
Josef Bacik3c8f2422013-07-15 11:57:06 -04007662 if (btrfs_should_end_transaction(trans, tree_root) ||
7663 (!for_reloc && btrfs_need_cleaner_sleep(root))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007664 ret = btrfs_update_root(trans, tree_root,
7665 &root->root_key,
7666 root_item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007667 if (ret) {
7668 btrfs_abort_transaction(trans, tree_root, ret);
7669 err = ret;
7670 goto out_end_trans;
7671 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007672
Yan, Zheng3fd0a552010-05-16 10:49:59 -04007673 btrfs_end_transaction_throttle(trans, tree_root);
Josef Bacik3c8f2422013-07-15 11:57:06 -04007674 if (!for_reloc && btrfs_need_cleaner_sleep(root)) {
7675 pr_debug("btrfs: drop snapshot early exit\n");
7676 err = -EAGAIN;
7677 goto out_free;
7678 }
7679
Yan, Zhenga22285a2010-05-16 10:48:46 -04007680 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007681 if (IS_ERR(trans)) {
7682 err = PTR_ERR(trans);
7683 goto out_free;
7684 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04007685 if (block_rsv)
7686 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04007687 }
Chris Mason20524f02007-03-10 06:35:47 -05007688 }
David Sterbab3b4aa72011-04-21 01:20:15 +02007689 btrfs_release_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007690 if (err)
7691 goto out_end_trans;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007692
7693 ret = btrfs_del_root(trans, tree_root, &root->root_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007694 if (ret) {
7695 btrfs_abort_transaction(trans, tree_root, ret);
7696 goto out_end_trans;
7697 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007698
Yan, Zheng76dda932009-09-21 16:00:26 -04007699 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Miao Xiecb517ea2013-05-15 07:48:19 +00007700 ret = btrfs_find_root(tree_root, &root->root_key, path,
7701 NULL, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007702 if (ret < 0) {
7703 btrfs_abort_transaction(trans, tree_root, ret);
7704 err = ret;
7705 goto out_end_trans;
7706 } else if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05007707 /* if we fail to delete the orphan item this time
7708 * around, it'll get picked up the next time.
7709 *
7710 * The most common failure here is just -ENOENT.
7711 */
7712 btrfs_del_orphan_item(trans, tree_root,
7713 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04007714 }
7715 }
7716
7717 if (root->in_radix) {
Miao Xiecb517ea2013-05-15 07:48:19 +00007718 btrfs_drop_and_free_fs_root(tree_root->fs_info, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04007719 } else {
7720 free_extent_buffer(root->node);
7721 free_extent_buffer(root->commit_root);
Miao Xieb0feb9d2013-05-15 07:48:20 +00007722 btrfs_put_fs_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04007723 }
Josef Bacikd29a9f62013-07-17 19:30:20 -04007724 root_dropped = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007725out_end_trans:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04007726 btrfs_end_transaction_throttle(trans, tree_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007727out_free:
Yan Zheng2c47e6052009-06-27 21:07:35 -04007728 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04007729 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00007730out:
Josef Bacikd29a9f62013-07-17 19:30:20 -04007731 /*
7732 * So if we need to stop dropping the snapshot for whatever reason we
7733 * need to make sure to add it back to the dead root list so that we
7734 * keep trying to do the work later. This also cleans up roots if we
7735 * don't have it in the radix (like when we recover after a power fail
7736 * or unmount) so we don't leak memory.
7737 */
Josef Bacikb37b39c2013-07-23 16:57:15 -04007738 if (!for_reloc && root_dropped == false)
Josef Bacikd29a9f62013-07-17 19:30:20 -04007739 btrfs_add_dead_root(root);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00007740 if (err)
7741 btrfs_std_error(root->fs_info, err);
Jeff Mahoney2c536792011-10-03 23:22:41 -04007742 return err;
Chris Mason20524f02007-03-10 06:35:47 -05007743}
Chris Mason9078a3e2007-04-26 16:46:15 -04007744
Yan Zheng2c47e6052009-06-27 21:07:35 -04007745/*
7746 * drop subtree rooted at tree block 'node'.
7747 *
7748 * NOTE: this function will unlock and release tree block 'node'
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007749 * only used by relocation code
Yan Zheng2c47e6052009-06-27 21:07:35 -04007750 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04007751int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
7752 struct btrfs_root *root,
7753 struct extent_buffer *node,
7754 struct extent_buffer *parent)
7755{
7756 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007757 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007758 int level;
7759 int parent_level;
7760 int ret = 0;
7761 int wret;
7762
Yan Zheng2c47e6052009-06-27 21:07:35 -04007763 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
7764
Yan Zhengf82d02d2008-10-29 14:49:05 -04007765 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00007766 if (!path)
7767 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007768
Yan Zheng2c47e6052009-06-27 21:07:35 -04007769 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00007770 if (!wc) {
7771 btrfs_free_path(path);
7772 return -ENOMEM;
7773 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007774
Chris Masonb9447ef2009-03-09 11:45:38 -04007775 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007776 parent_level = btrfs_header_level(parent);
7777 extent_buffer_get(parent);
7778 path->nodes[parent_level] = parent;
7779 path->slots[parent_level] = btrfs_header_nritems(parent);
7780
Chris Masonb9447ef2009-03-09 11:45:38 -04007781 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007782 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007783 path->nodes[level] = node;
7784 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04007785 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007786
7787 wc->refs[parent_level] = 1;
7788 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
7789 wc->level = level;
7790 wc->shared_level = -1;
7791 wc->stage = DROP_REFERENCE;
7792 wc->update_ref = 0;
7793 wc->keep_locks = 1;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007794 wc->for_reloc = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007795 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007796
7797 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007798 wret = walk_down_tree(trans, root, path, wc);
7799 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04007800 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007801 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007802 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04007803
Yan Zheng2c47e6052009-06-27 21:07:35 -04007804 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007805 if (wret < 0)
7806 ret = wret;
7807 if (wret != 0)
7808 break;
7809 }
7810
Yan Zheng2c47e6052009-06-27 21:07:35 -04007811 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007812 btrfs_free_path(path);
7813 return ret;
7814}
7815
Chris Masonec44a352008-04-28 15:29:52 -04007816static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
7817{
7818 u64 num_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03007819 u64 stripped;
Chris Masonec44a352008-04-28 15:29:52 -04007820
Ilya Dryomovfc67c452012-03-27 17:09:17 +03007821 /*
7822 * if restripe for this chunk_type is on pick target profile and
7823 * return, otherwise do the usual balance
7824 */
7825 stripped = get_restripe_target(root->fs_info, flags);
7826 if (stripped)
7827 return extended_to_chunk(stripped);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02007828
Chris Masoncd02dca2010-12-13 14:56:23 -05007829 /*
7830 * we add in the count of missing devices because we want
7831 * to make sure that any RAID levels on a degraded FS
7832 * continue to be honored.
7833 */
7834 num_devices = root->fs_info->fs_devices->rw_devices +
7835 root->fs_info->fs_devices->missing_devices;
7836
Ilya Dryomovfc67c452012-03-27 17:09:17 +03007837 stripped = BTRFS_BLOCK_GROUP_RAID0 |
David Woodhouse53b381b2013-01-29 18:40:14 -05007838 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
Ilya Dryomovfc67c452012-03-27 17:09:17 +03007839 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
7840
Chris Masonec44a352008-04-28 15:29:52 -04007841 if (num_devices == 1) {
7842 stripped |= BTRFS_BLOCK_GROUP_DUP;
7843 stripped = flags & ~stripped;
7844
7845 /* turn raid0 into single device chunks */
7846 if (flags & BTRFS_BLOCK_GROUP_RAID0)
7847 return stripped;
7848
7849 /* turn mirroring into duplication */
7850 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
7851 BTRFS_BLOCK_GROUP_RAID10))
7852 return stripped | BTRFS_BLOCK_GROUP_DUP;
Chris Masonec44a352008-04-28 15:29:52 -04007853 } else {
7854 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04007855 if (flags & stripped)
7856 return flags;
7857
7858 stripped |= BTRFS_BLOCK_GROUP_DUP;
7859 stripped = flags & ~stripped;
7860
7861 /* switch duplicated blocks with raid1 */
7862 if (flags & BTRFS_BLOCK_GROUP_DUP)
7863 return stripped | BTRFS_BLOCK_GROUP_RAID1;
7864
Ilya Dryomove3176ca2012-03-27 17:09:16 +03007865 /* this is drive concat, leave it alone */
Chris Masonec44a352008-04-28 15:29:52 -04007866 }
Ilya Dryomove3176ca2012-03-27 17:09:16 +03007867
Chris Masonec44a352008-04-28 15:29:52 -04007868 return flags;
7869}
7870
Miao Xie199c36e2011-07-15 10:34:36 +00007871static int set_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04007872{
Yan, Zhengf0486c62010-05-16 10:46:25 -04007873 struct btrfs_space_info *sinfo = cache->space_info;
7874 u64 num_bytes;
Miao Xie199c36e2011-07-15 10:34:36 +00007875 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007876 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04007877
Chris Masonc286ac42008-07-22 23:06:41 -04007878
Miao Xie199c36e2011-07-15 10:34:36 +00007879 /*
7880 * We need some metadata space and system metadata space for
7881 * allocating chunks in some corner cases until we force to set
7882 * it to be readonly.
7883 */
7884 if ((sinfo->flags &
7885 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
7886 !force)
7887 min_allocable_bytes = 1 * 1024 * 1024;
7888 else
7889 min_allocable_bytes = 0;
7890
Yan, Zhengf0486c62010-05-16 10:46:25 -04007891 spin_lock(&sinfo->lock);
7892 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00007893
7894 if (cache->ro) {
7895 ret = 0;
7896 goto out;
7897 }
7898
Yan, Zhengf0486c62010-05-16 10:46:25 -04007899 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
7900 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04007901
Yan, Zhengf0486c62010-05-16 10:46:25 -04007902 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
Josef Bacik37be25b2011-08-05 10:25:38 -04007903 sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes +
7904 min_allocable_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04007905 sinfo->bytes_readonly += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007906 cache->ro = 1;
7907 ret = 0;
7908 }
WuBo61cfea92011-07-26 03:30:11 +00007909out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04007910 spin_unlock(&cache->lock);
7911 spin_unlock(&sinfo->lock);
7912 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04007913}
7914
Yan, Zhengf0486c62010-05-16 10:46:25 -04007915int btrfs_set_block_group_ro(struct btrfs_root *root,
7916 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007917
7918{
Yan, Zhengf0486c62010-05-16 10:46:25 -04007919 struct btrfs_trans_handle *trans;
7920 u64 alloc_flags;
7921 int ret;
7922
7923 BUG_ON(cache->ro);
7924
Josef Bacik7a7eaa42011-04-13 12:54:33 -04007925 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007926 if (IS_ERR(trans))
7927 return PTR_ERR(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007928
7929 alloc_flags = update_block_group_flags(root, cache->flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007930 if (alloc_flags != cache->flags) {
Josef Bacik698d0082012-09-12 14:08:47 -04007931 ret = do_chunk_alloc(trans, root, alloc_flags,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007932 CHUNK_ALLOC_FORCE);
7933 if (ret < 0)
7934 goto out;
7935 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04007936
Miao Xie199c36e2011-07-15 10:34:36 +00007937 ret = set_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007938 if (!ret)
7939 goto out;
7940 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
Josef Bacik698d0082012-09-12 14:08:47 -04007941 ret = do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04007942 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007943 if (ret < 0)
7944 goto out;
Miao Xie199c36e2011-07-15 10:34:36 +00007945 ret = set_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007946out:
7947 btrfs_end_transaction(trans, root);
7948 return ret;
7949}
7950
Chris Masonc87f08c2011-02-16 13:57:04 -05007951int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
7952 struct btrfs_root *root, u64 type)
7953{
7954 u64 alloc_flags = get_alloc_profile(root, type);
Josef Bacik698d0082012-09-12 14:08:47 -04007955 return do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04007956 CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05007957}
7958
Miao Xie6d07bce2011-01-05 10:07:31 +00007959/*
7960 * helper to account the unused space of all the readonly block group in the
7961 * list. takes mirrors into account.
7962 */
7963static u64 __btrfs_get_ro_block_group_free_space(struct list_head *groups_list)
7964{
7965 struct btrfs_block_group_cache *block_group;
7966 u64 free_bytes = 0;
7967 int factor;
7968
7969 list_for_each_entry(block_group, groups_list, list) {
7970 spin_lock(&block_group->lock);
7971
7972 if (!block_group->ro) {
7973 spin_unlock(&block_group->lock);
7974 continue;
7975 }
7976
7977 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
7978 BTRFS_BLOCK_GROUP_RAID10 |
7979 BTRFS_BLOCK_GROUP_DUP))
7980 factor = 2;
7981 else
7982 factor = 1;
7983
7984 free_bytes += (block_group->key.offset -
7985 btrfs_block_group_used(&block_group->item)) *
7986 factor;
7987
7988 spin_unlock(&block_group->lock);
7989 }
7990
7991 return free_bytes;
7992}
7993
7994/*
7995 * helper to account the unused space of all the readonly block group in the
7996 * space_info. takes mirrors into account.
7997 */
7998u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
7999{
8000 int i;
8001 u64 free_bytes = 0;
8002
8003 spin_lock(&sinfo->lock);
8004
8005 for(i = 0; i < BTRFS_NR_RAID_TYPES; i++)
8006 if (!list_empty(&sinfo->block_groups[i]))
8007 free_bytes += __btrfs_get_ro_block_group_free_space(
8008 &sinfo->block_groups[i]);
8009
8010 spin_unlock(&sinfo->lock);
8011
8012 return free_bytes;
8013}
8014
Jeff Mahoney143bede2012-03-01 14:56:26 +01008015void btrfs_set_block_group_rw(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04008016 struct btrfs_block_group_cache *cache)
8017{
8018 struct btrfs_space_info *sinfo = cache->space_info;
8019 u64 num_bytes;
8020
8021 BUG_ON(!cache->ro);
8022
8023 spin_lock(&sinfo->lock);
8024 spin_lock(&cache->lock);
8025 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8026 cache->bytes_super - btrfs_block_group_used(&cache->item);
8027 sinfo->bytes_readonly -= num_bytes;
8028 cache->ro = 0;
8029 spin_unlock(&cache->lock);
8030 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008031}
8032
Josef Bacikba1bf482009-09-11 16:11:19 -04008033/*
8034 * checks to see if its even possible to relocate this block group.
8035 *
8036 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
8037 * ok to go ahead and try.
8038 */
8039int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04008040{
Zheng Yan1a40e232008-09-26 10:09:34 -04008041 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04008042 struct btrfs_space_info *space_info;
8043 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
8044 struct btrfs_device *device;
Josef Bacik6df9a952013-06-27 13:22:46 -04008045 struct btrfs_trans_handle *trans;
liubocdcb7252011-08-03 10:15:25 +00008046 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04008047 u64 dev_min = 1;
8048 u64 dev_nr = 0;
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008049 u64 target;
liubocdcb7252011-08-03 10:15:25 +00008050 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04008051 int full = 0;
8052 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05008053
Josef Bacikba1bf482009-09-11 16:11:19 -04008054 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04008055
Josef Bacikba1bf482009-09-11 16:11:19 -04008056 /* odd, couldn't find the block group, leave it alone */
8057 if (!block_group)
8058 return -1;
Chris Masonedbd8d42007-12-21 16:27:24 -05008059
liubocdcb7252011-08-03 10:15:25 +00008060 min_free = btrfs_block_group_used(&block_group->item);
8061
Josef Bacikba1bf482009-09-11 16:11:19 -04008062 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00008063 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04008064 goto out;
Chris Mason323da792008-05-09 11:46:48 -04008065
Josef Bacikba1bf482009-09-11 16:11:19 -04008066 space_info = block_group->space_info;
8067 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04008068
Josef Bacikba1bf482009-09-11 16:11:19 -04008069 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04008070
Josef Bacikba1bf482009-09-11 16:11:19 -04008071 /*
8072 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04008073 * relocate it unless we're able to allocate a new chunk below.
8074 *
8075 * Otherwise, we need to make sure we have room in the space to handle
8076 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04008077 */
Chris Mason7ce618d2009-09-22 14:48:44 -04008078 if ((space_info->total_bytes != block_group->key.offset) &&
liubocdcb7252011-08-03 10:15:25 +00008079 (space_info->bytes_used + space_info->bytes_reserved +
8080 space_info->bytes_pinned + space_info->bytes_readonly +
8081 min_free < space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04008082 spin_unlock(&space_info->lock);
8083 goto out;
8084 }
8085 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008086
Josef Bacikba1bf482009-09-11 16:11:19 -04008087 /*
8088 * ok we don't have enough space, but maybe we have free space on our
8089 * devices to allocate new chunks for relocation, so loop through our
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008090 * alloc devices and guess if we have enough space. if this block
8091 * group is going to be restriped, run checks against the target
8092 * profile instead of the current one.
Josef Bacikba1bf482009-09-11 16:11:19 -04008093 */
8094 ret = -1;
Chris Mason4313b392008-01-03 09:08:48 -05008095
liubocdcb7252011-08-03 10:15:25 +00008096 /*
8097 * index:
8098 * 0: raid10
8099 * 1: raid1
8100 * 2: dup
8101 * 3: raid0
8102 * 4: single
8103 */
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008104 target = get_restripe_target(root->fs_info, block_group->flags);
8105 if (target) {
Liu Bo31e50222012-11-21 14:18:10 +00008106 index = __get_raid_index(extended_to_chunk(target));
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008107 } else {
8108 /*
8109 * this is just a balance, so if we were marked as full
8110 * we know there is no space for a new chunk
8111 */
8112 if (full)
8113 goto out;
8114
8115 index = get_block_group_index(block_group);
8116 }
8117
Miao Xiee6ec7162013-01-17 05:38:51 +00008118 if (index == BTRFS_RAID_RAID10) {
liubocdcb7252011-08-03 10:15:25 +00008119 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04008120 /* Divide by 2 */
8121 min_free >>= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00008122 } else if (index == BTRFS_RAID_RAID1) {
liubocdcb7252011-08-03 10:15:25 +00008123 dev_min = 2;
Miao Xiee6ec7162013-01-17 05:38:51 +00008124 } else if (index == BTRFS_RAID_DUP) {
Josef Bacik6719db62011-08-20 08:29:51 -04008125 /* Multiply by 2 */
8126 min_free <<= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00008127 } else if (index == BTRFS_RAID_RAID0) {
liubocdcb7252011-08-03 10:15:25 +00008128 dev_min = fs_devices->rw_devices;
Josef Bacik6719db62011-08-20 08:29:51 -04008129 do_div(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00008130 }
8131
Josef Bacik6df9a952013-06-27 13:22:46 -04008132 /* We need to do this so that we can look at pending chunks */
8133 trans = btrfs_join_transaction(root);
8134 if (IS_ERR(trans)) {
8135 ret = PTR_ERR(trans);
8136 goto out;
8137 }
8138
Josef Bacikba1bf482009-09-11 16:11:19 -04008139 mutex_lock(&root->fs_info->chunk_mutex);
8140 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00008141 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04008142
Josef Bacikba1bf482009-09-11 16:11:19 -04008143 /*
8144 * check to make sure we can actually find a chunk with enough
8145 * space to fit our block group in.
8146 */
Stefan Behrens63a212a2012-11-05 18:29:28 +01008147 if (device->total_bytes > device->bytes_used + min_free &&
8148 !device->is_tgtdev_for_dev_replace) {
Josef Bacik6df9a952013-06-27 13:22:46 -04008149 ret = find_free_dev_extent(trans, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00008150 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04008151 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00008152 dev_nr++;
8153
8154 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05008155 break;
liubocdcb7252011-08-03 10:15:25 +00008156
Josef Bacikba1bf482009-09-11 16:11:19 -04008157 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05008158 }
Chris Masonedbd8d42007-12-21 16:27:24 -05008159 }
Josef Bacikba1bf482009-09-11 16:11:19 -04008160 mutex_unlock(&root->fs_info->chunk_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04008161 btrfs_end_transaction(trans, root);
Chris Masonedbd8d42007-12-21 16:27:24 -05008162out:
Josef Bacikba1bf482009-09-11 16:11:19 -04008163 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05008164 return ret;
8165}
8166
Christoph Hellwigb2950862008-12-02 09:54:17 -05008167static int find_first_block_group(struct btrfs_root *root,
8168 struct btrfs_path *path, struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04008169{
Chris Mason925baed2008-06-25 16:01:30 -04008170 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04008171 struct btrfs_key found_key;
8172 struct extent_buffer *leaf;
8173 int slot;
8174
8175 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
8176 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008177 goto out;
8178
Chris Masond3977122009-01-05 21:25:51 -05008179 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04008180 slot = path->slots[0];
8181 leaf = path->nodes[0];
8182 if (slot >= btrfs_header_nritems(leaf)) {
8183 ret = btrfs_next_leaf(root, path);
8184 if (ret == 0)
8185 continue;
8186 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008187 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04008188 break;
8189 }
8190 btrfs_item_key_to_cpu(leaf, &found_key, slot);
8191
8192 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04008193 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
8194 ret = 0;
8195 goto out;
8196 }
Chris Mason0b86a832008-03-24 15:01:56 -04008197 path->slots[0]++;
8198 }
Chris Mason925baed2008-06-25 16:01:30 -04008199out:
Chris Mason0b86a832008-03-24 15:01:56 -04008200 return ret;
8201}
8202
Josef Bacik0af3d002010-06-21 14:48:16 -04008203void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
8204{
8205 struct btrfs_block_group_cache *block_group;
8206 u64 last = 0;
8207
8208 while (1) {
8209 struct inode *inode;
8210
8211 block_group = btrfs_lookup_first_block_group(info, last);
8212 while (block_group) {
8213 spin_lock(&block_group->lock);
8214 if (block_group->iref)
8215 break;
8216 spin_unlock(&block_group->lock);
8217 block_group = next_block_group(info->tree_root,
8218 block_group);
8219 }
8220 if (!block_group) {
8221 if (last == 0)
8222 break;
8223 last = 0;
8224 continue;
8225 }
8226
8227 inode = block_group->inode;
8228 block_group->iref = 0;
8229 block_group->inode = NULL;
8230 spin_unlock(&block_group->lock);
8231 iput(inode);
8232 last = block_group->key.objectid + block_group->key.offset;
8233 btrfs_put_block_group(block_group);
8234 }
8235}
8236
Zheng Yan1a40e232008-09-26 10:09:34 -04008237int btrfs_free_block_groups(struct btrfs_fs_info *info)
8238{
8239 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04008240 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04008241 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04008242 struct rb_node *n;
8243
Yan Zheng11833d62009-09-11 16:11:19 -04008244 down_write(&info->extent_commit_sem);
8245 while (!list_empty(&info->caching_block_groups)) {
8246 caching_ctl = list_entry(info->caching_block_groups.next,
8247 struct btrfs_caching_control, list);
8248 list_del(&caching_ctl->list);
8249 put_caching_control(caching_ctl);
8250 }
8251 up_write(&info->extent_commit_sem);
8252
Zheng Yan1a40e232008-09-26 10:09:34 -04008253 spin_lock(&info->block_group_cache_lock);
8254 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
8255 block_group = rb_entry(n, struct btrfs_block_group_cache,
8256 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04008257 rb_erase(&block_group->cache_node,
8258 &info->block_group_cache_tree);
Yan Zhengd899e052008-10-30 14:25:28 -04008259 spin_unlock(&info->block_group_cache_lock);
8260
Josef Bacik80eb2342008-10-29 14:49:05 -04008261 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04008262 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04008263 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05008264
Josef Bacik817d52f2009-07-13 21:29:25 -04008265 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04008266 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04008267
Josef Bacik3c148742011-02-02 15:53:47 +00008268 /*
8269 * We haven't cached this block group, which means we could
8270 * possibly have excluded extents on this block group.
8271 */
Josef Bacik36cce922013-08-05 11:15:21 -04008272 if (block_group->cached == BTRFS_CACHE_NO ||
8273 block_group->cached == BTRFS_CACHE_ERROR)
Josef Bacik3c148742011-02-02 15:53:47 +00008274 free_excluded_extents(info->extent_root, block_group);
8275
Josef Bacik817d52f2009-07-13 21:29:25 -04008276 btrfs_remove_free_space_cache(block_group);
Josef Bacik11dfe352009-11-13 20:12:59 +00008277 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04008278
8279 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008280 }
8281 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -04008282
8283 /* now that all the block groups are freed, go through and
8284 * free all the space_info structs. This is only called during
8285 * the final stages of unmount, and so we know nobody is
8286 * using them. We call synchronize_rcu() once before we start,
8287 * just to be on the safe side.
8288 */
8289 synchronize_rcu();
8290
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04008291 release_global_block_rsv(info);
8292
Chris Mason4184ea72009-03-10 12:39:20 -04008293 while(!list_empty(&info->space_info)) {
8294 space_info = list_entry(info->space_info.next,
8295 struct btrfs_space_info,
8296 list);
David Sterbab069e0c2013-02-08 21:28:17 +00008297 if (btrfs_test_opt(info->tree_root, ENOSPC_DEBUG)) {
8298 if (space_info->bytes_pinned > 0 ||
8299 space_info->bytes_reserved > 0 ||
8300 space_info->bytes_may_use > 0) {
8301 WARN_ON(1);
8302 dump_space_info(space_info, 0, 0);
8303 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008304 }
Josef Bacikb150a4f2013-06-19 15:00:04 -04008305 percpu_counter_destroy(&space_info->total_bytes_pinned);
Chris Mason4184ea72009-03-10 12:39:20 -04008306 list_del(&space_info->list);
8307 kfree(space_info);
8308 }
Zheng Yan1a40e232008-09-26 10:09:34 -04008309 return 0;
8310}
8311
Yan, Zhengb742bb82010-05-16 10:46:24 -04008312static void __link_block_group(struct btrfs_space_info *space_info,
8313 struct btrfs_block_group_cache *cache)
8314{
8315 int index = get_block_group_index(cache);
8316
8317 down_write(&space_info->groups_sem);
8318 list_add_tail(&cache->list, &space_info->block_groups[index]);
8319 up_write(&space_info->groups_sem);
8320}
8321
Chris Mason9078a3e2007-04-26 16:46:15 -04008322int btrfs_read_block_groups(struct btrfs_root *root)
8323{
8324 struct btrfs_path *path;
8325 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04008326 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04008327 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04008328 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04008329 struct btrfs_key key;
8330 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04008331 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -04008332 int need_clear = 0;
8333 u64 cache_gen;
Chris Mason96b51792007-10-15 16:15:19 -04008334
Chris Masonbe744172007-05-06 10:15:01 -04008335 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04008336 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04008337 key.offset = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04008338 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason9078a3e2007-04-26 16:46:15 -04008339 path = btrfs_alloc_path();
8340 if (!path)
8341 return -ENOMEM;
Josef Bacik026fd312011-05-13 10:32:11 -04008342 path->reada = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04008343
David Sterba6c417612011-04-13 15:41:04 +02008344 cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
Josef Bacik73bc1872011-10-03 14:07:49 -04008345 if (btrfs_test_opt(root, SPACE_CACHE) &&
David Sterba6c417612011-04-13 15:41:04 +02008346 btrfs_super_generation(root->fs_info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -04008347 need_clear = 1;
Josef Bacik88c2ba32010-09-21 14:21:34 -04008348 if (btrfs_test_opt(root, CLEAR_CACHE))
8349 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -04008350
Chris Masond3977122009-01-05 21:25:51 -05008351 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04008352 ret = find_first_block_group(root, path, &key);
Yan, Zhengb742bb82010-05-16 10:46:24 -04008353 if (ret > 0)
8354 break;
Chris Mason0b86a832008-03-24 15:01:56 -04008355 if (ret != 0)
8356 goto error;
Chris Mason5f39d392007-10-15 16:14:19 -04008357 leaf = path->nodes[0];
8358 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason8f18cf12008-04-25 16:53:30 -04008359 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04008360 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04008361 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008362 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04008363 }
Li Zefan34d52cb2011-03-29 13:46:06 +08008364 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
8365 GFP_NOFS);
8366 if (!cache->free_space_ctl) {
8367 kfree(cache);
8368 ret = -ENOMEM;
8369 goto error;
8370 }
Chris Mason3e1ad542007-05-07 20:03:49 -04008371
Yan Zhengd2fb3432008-12-11 16:30:39 -05008372 atomic_set(&cache->count, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04008373 spin_lock_init(&cache->lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04008374 cache->fs_info = info;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008375 INIT_LIST_HEAD(&cache->list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04008376 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik96303082009-07-13 21:29:25 -04008377
Liu Bocf7c1ef2012-07-06 03:31:34 -06008378 if (need_clear) {
8379 /*
8380 * When we mount with old space cache, we need to
8381 * set BTRFS_DC_CLEAR and set dirty flag.
8382 *
8383 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
8384 * truncate the old free space cache inode and
8385 * setup a new one.
8386 * b) Setting 'dirty flag' makes sure that we flush
8387 * the new space cache info onto disk.
8388 */
Josef Bacik0af3d002010-06-21 14:48:16 -04008389 cache->disk_cache_state = BTRFS_DC_CLEAR;
Liu Bocf7c1ef2012-07-06 03:31:34 -06008390 if (btrfs_test_opt(root, SPACE_CACHE))
8391 cache->dirty = 1;
8392 }
Josef Bacik0af3d002010-06-21 14:48:16 -04008393
Chris Mason5f39d392007-10-15 16:14:19 -04008394 read_extent_buffer(leaf, &cache->item,
8395 btrfs_item_ptr_offset(leaf, path->slots[0]),
8396 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04008397 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Mason0b86a832008-03-24 15:01:56 -04008398
Chris Mason9078a3e2007-04-26 16:46:15 -04008399 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +02008400 btrfs_release_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04008401 cache->flags = btrfs_block_group_flags(&cache->item);
Josef Bacik817d52f2009-07-13 21:29:25 -04008402 cache->sectorsize = root->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05008403 cache->full_stripe_len = btrfs_full_stripe_len(root,
8404 &root->fs_info->mapping_tree,
8405 found_key.objectid);
Li Zefan34d52cb2011-03-29 13:46:06 +08008406 btrfs_init_free_space_ctl(cache);
8407
Josef Bacik817d52f2009-07-13 21:29:25 -04008408 /*
Josef Bacik3c148742011-02-02 15:53:47 +00008409 * We need to exclude the super stripes now so that the space
8410 * info has super bytes accounted for, otherwise we'll think
8411 * we have more space than we actually do.
8412 */
Josef Bacik835d9742013-03-19 12:13:25 -04008413 ret = exclude_super_stripes(root, cache);
8414 if (ret) {
8415 /*
8416 * We may have excluded something, so call this just in
8417 * case.
8418 */
8419 free_excluded_extents(root, cache);
8420 kfree(cache->free_space_ctl);
8421 kfree(cache);
8422 goto error;
8423 }
Josef Bacik3c148742011-02-02 15:53:47 +00008424
8425 /*
Josef Bacik817d52f2009-07-13 21:29:25 -04008426 * check for two cases, either we are full, and therefore
8427 * don't need to bother with the caching work since we won't
8428 * find any space, or we are empty, and we can just add all
8429 * the space in and be done with it. This saves us _alot_ of
8430 * time, particularly in the full case.
8431 */
8432 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -04008433 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008434 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik1b2da372009-09-11 16:11:20 -04008435 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04008436 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -04008437 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008438 cache->cached = BTRFS_CACHE_FINISHED;
8439 add_new_free_space(cache, root->fs_info,
8440 found_key.objectid,
8441 found_key.objectid +
8442 found_key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -04008443 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04008444 }
Chris Mason96b51792007-10-15 16:15:19 -04008445
Josef Bacik8c579fe2013-04-02 12:40:42 -04008446 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8447 if (ret) {
8448 btrfs_remove_free_space_cache(cache);
8449 btrfs_put_block_group(cache);
8450 goto error;
8451 }
8452
Chris Mason6324fbf2008-03-24 15:01:59 -04008453 ret = update_space_info(info, cache->flags, found_key.offset,
8454 btrfs_block_group_used(&cache->item),
8455 &space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -04008456 if (ret) {
8457 btrfs_remove_free_space_cache(cache);
8458 spin_lock(&info->block_group_cache_lock);
8459 rb_erase(&cache->cache_node,
8460 &info->block_group_cache_tree);
8461 spin_unlock(&info->block_group_cache_lock);
8462 btrfs_put_block_group(cache);
8463 goto error;
8464 }
8465
Chris Mason6324fbf2008-03-24 15:01:59 -04008466 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -04008467 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008468 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04008469 spin_unlock(&cache->space_info->lock);
8470
Yan, Zhengb742bb82010-05-16 10:46:24 -04008471 __link_block_group(space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04008472
Chris Mason75ccf472008-09-30 19:24:06 -04008473 set_avail_alloc_bits(root->fs_info, cache->flags);
Yan Zheng2b820322008-11-17 21:11:30 -05008474 if (btrfs_chunk_readonly(root, cache->key.objectid))
Miao Xie199c36e2011-07-15 10:34:36 +00008475 set_block_group_ro(cache, 1);
Chris Mason9078a3e2007-04-26 16:46:15 -04008476 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04008477
8478 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
8479 if (!(get_alloc_profile(root, space_info->flags) &
8480 (BTRFS_BLOCK_GROUP_RAID10 |
8481 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05008482 BTRFS_BLOCK_GROUP_RAID5 |
8483 BTRFS_BLOCK_GROUP_RAID6 |
Yan, Zhengb742bb82010-05-16 10:46:24 -04008484 BTRFS_BLOCK_GROUP_DUP)))
8485 continue;
8486 /*
8487 * avoid allocating from un-mirrored block group if there are
8488 * mirrored block groups.
8489 */
chandan1095cc02013-07-16 12:28:56 +05308490 list_for_each_entry(cache,
8491 &space_info->block_groups[BTRFS_RAID_RAID0],
8492 list)
Miao Xie199c36e2011-07-15 10:34:36 +00008493 set_block_group_ro(cache, 1);
chandan1095cc02013-07-16 12:28:56 +05308494 list_for_each_entry(cache,
8495 &space_info->block_groups[BTRFS_RAID_SINGLE],
8496 list)
Miao Xie199c36e2011-07-15 10:34:36 +00008497 set_block_group_ro(cache, 1);
Yan, Zhengb742bb82010-05-16 10:46:24 -04008498 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008499
8500 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -04008501 ret = 0;
8502error:
Chris Mason9078a3e2007-04-26 16:46:15 -04008503 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04008504 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04008505}
Chris Mason6324fbf2008-03-24 15:01:59 -04008506
Josef Bacikea658ba2012-09-11 16:57:25 -04008507void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans,
8508 struct btrfs_root *root)
8509{
8510 struct btrfs_block_group_cache *block_group, *tmp;
8511 struct btrfs_root *extent_root = root->fs_info->extent_root;
8512 struct btrfs_block_group_item item;
8513 struct btrfs_key key;
8514 int ret = 0;
8515
8516 list_for_each_entry_safe(block_group, tmp, &trans->new_bgs,
8517 new_bg_list) {
8518 list_del_init(&block_group->new_bg_list);
8519
8520 if (ret)
8521 continue;
8522
8523 spin_lock(&block_group->lock);
8524 memcpy(&item, &block_group->item, sizeof(item));
8525 memcpy(&key, &block_group->key, sizeof(key));
8526 spin_unlock(&block_group->lock);
8527
8528 ret = btrfs_insert_item(trans, extent_root, &key, &item,
8529 sizeof(item));
8530 if (ret)
8531 btrfs_abort_transaction(trans, extent_root, ret);
Josef Bacik6df9a952013-06-27 13:22:46 -04008532 ret = btrfs_finish_chunk_alloc(trans, extent_root,
8533 key.objectid, key.offset);
8534 if (ret)
8535 btrfs_abort_transaction(trans, extent_root, ret);
Josef Bacikea658ba2012-09-11 16:57:25 -04008536 }
8537}
8538
Chris Mason6324fbf2008-03-24 15:01:59 -04008539int btrfs_make_block_group(struct btrfs_trans_handle *trans,
8540 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04008541 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04008542 u64 size)
8543{
8544 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04008545 struct btrfs_root *extent_root;
8546 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -04008547
8548 extent_root = root->fs_info->extent_root;
Chris Mason6324fbf2008-03-24 15:01:59 -04008549
Chris Mason12fcfd22009-03-24 10:24:20 -04008550 root->fs_info->last_trans_log_full_commit = trans->transid;
Chris Masone02119d2008-09-05 16:13:11 -04008551
Chris Mason8f18cf12008-04-25 16:53:30 -04008552 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008553 if (!cache)
8554 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +08008555 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
8556 GFP_NOFS);
8557 if (!cache->free_space_ctl) {
8558 kfree(cache);
8559 return -ENOMEM;
8560 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04008561
Chris Masone17cade2008-04-15 15:41:47 -04008562 cache->key.objectid = chunk_offset;
Chris Mason6324fbf2008-03-24 15:01:59 -04008563 cache->key.offset = size;
Yan Zhengd2fb3432008-12-11 16:30:39 -05008564 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Josef Bacik96303082009-07-13 21:29:25 -04008565 cache->sectorsize = root->sectorsize;
Josef Bacik0af3d002010-06-21 14:48:16 -04008566 cache->fs_info = root->fs_info;
David Woodhouse53b381b2013-01-29 18:40:14 -05008567 cache->full_stripe_len = btrfs_full_stripe_len(root,
8568 &root->fs_info->mapping_tree,
8569 chunk_offset);
Josef Bacik96303082009-07-13 21:29:25 -04008570
Yan Zhengd2fb3432008-12-11 16:30:39 -05008571 atomic_set(&cache->count, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04008572 spin_lock_init(&cache->lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008573 INIT_LIST_HEAD(&cache->list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04008574 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacikea658ba2012-09-11 16:57:25 -04008575 INIT_LIST_HEAD(&cache->new_bg_list);
Chris Mason0ef3e662008-05-24 14:04:53 -04008576
Li Zefan34d52cb2011-03-29 13:46:06 +08008577 btrfs_init_free_space_ctl(cache);
8578
Chris Mason6324fbf2008-03-24 15:01:59 -04008579 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04008580 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
8581 cache->flags = type;
8582 btrfs_set_block_group_flags(&cache->item, type);
8583
Yan Zheng11833d62009-09-11 16:11:19 -04008584 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008585 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik835d9742013-03-19 12:13:25 -04008586 ret = exclude_super_stripes(root, cache);
8587 if (ret) {
8588 /*
8589 * We may have excluded something, so call this just in
8590 * case.
8591 */
8592 free_excluded_extents(root, cache);
8593 kfree(cache->free_space_ctl);
8594 kfree(cache);
8595 return ret;
8596 }
Josef Bacik96303082009-07-13 21:29:25 -04008597
Josef Bacik817d52f2009-07-13 21:29:25 -04008598 add_new_free_space(cache, root->fs_info, chunk_offset,
8599 chunk_offset + size);
8600
Yan Zheng11833d62009-09-11 16:11:19 -04008601 free_excluded_extents(root, cache);
8602
Josef Bacik8c579fe2013-04-02 12:40:42 -04008603 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8604 if (ret) {
8605 btrfs_remove_free_space_cache(cache);
8606 btrfs_put_block_group(cache);
8607 return ret;
8608 }
8609
Chris Mason6324fbf2008-03-24 15:01:59 -04008610 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
8611 &cache->space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -04008612 if (ret) {
8613 btrfs_remove_free_space_cache(cache);
8614 spin_lock(&root->fs_info->block_group_cache_lock);
8615 rb_erase(&cache->cache_node,
8616 &root->fs_info->block_group_cache_tree);
8617 spin_unlock(&root->fs_info->block_group_cache_lock);
8618 btrfs_put_block_group(cache);
8619 return ret;
8620 }
Li Zefanc7c144d2011-12-07 10:39:22 +08008621 update_global_block_rsv(root->fs_info);
Josef Bacik1b2da372009-09-11 16:11:20 -04008622
8623 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008624 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04008625 spin_unlock(&cache->space_info->lock);
8626
Yan, Zhengb742bb82010-05-16 10:46:24 -04008627 __link_block_group(cache->space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04008628
Josef Bacikea658ba2012-09-11 16:57:25 -04008629 list_add_tail(&cache->new_bg_list, &trans->new_bgs);
Chris Mason6324fbf2008-03-24 15:01:59 -04008630
Chris Masond18a2c42008-04-04 15:40:00 -04008631 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason925baed2008-06-25 16:01:30 -04008632
Chris Mason6324fbf2008-03-24 15:01:59 -04008633 return 0;
8634}
Zheng Yan1a40e232008-09-26 10:09:34 -04008635
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008636static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
8637{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03008638 u64 extra_flags = chunk_to_extended(flags) &
8639 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008640
Miao Xiede98ced2013-01-29 10:13:12 +00008641 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008642 if (flags & BTRFS_BLOCK_GROUP_DATA)
8643 fs_info->avail_data_alloc_bits &= ~extra_flags;
8644 if (flags & BTRFS_BLOCK_GROUP_METADATA)
8645 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
8646 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
8647 fs_info->avail_system_alloc_bits &= ~extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00008648 write_sequnlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008649}
8650
Zheng Yan1a40e232008-09-26 10:09:34 -04008651int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
8652 struct btrfs_root *root, u64 group_start)
8653{
8654 struct btrfs_path *path;
8655 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -04008656 struct btrfs_free_cluster *cluster;
Josef Bacik0af3d002010-06-21 14:48:16 -04008657 struct btrfs_root *tree_root = root->fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -04008658 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -04008659 struct inode *inode;
Zheng Yan1a40e232008-09-26 10:09:34 -04008660 int ret;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008661 int index;
Josef Bacik89a55892010-10-14 14:52:27 -04008662 int factor;
Zheng Yan1a40e232008-09-26 10:09:34 -04008663
Zheng Yan1a40e232008-09-26 10:09:34 -04008664 root = root->fs_info->extent_root;
8665
8666 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
8667 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -05008668 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -04008669
liubo9f7c43c2011-03-07 02:13:33 +00008670 /*
8671 * Free the reserved super bytes from this block group before
8672 * remove it.
8673 */
8674 free_excluded_extents(root, block_group);
8675
Zheng Yan1a40e232008-09-26 10:09:34 -04008676 memcpy(&key, &block_group->key, sizeof(key));
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008677 index = get_block_group_index(block_group);
Josef Bacik89a55892010-10-14 14:52:27 -04008678 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
8679 BTRFS_BLOCK_GROUP_RAID1 |
8680 BTRFS_BLOCK_GROUP_RAID10))
8681 factor = 2;
8682 else
8683 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04008684
Chris Mason44fb5512009-06-04 15:34:51 -04008685 /* make sure this block group isn't part of an allocation cluster */
8686 cluster = &root->fs_info->data_alloc_cluster;
8687 spin_lock(&cluster->refill_lock);
8688 btrfs_return_cluster_to_free_space(block_group, cluster);
8689 spin_unlock(&cluster->refill_lock);
8690
8691 /*
8692 * make sure this block group isn't part of a metadata
8693 * allocation cluster
8694 */
8695 cluster = &root->fs_info->meta_alloc_cluster;
8696 spin_lock(&cluster->refill_lock);
8697 btrfs_return_cluster_to_free_space(block_group, cluster);
8698 spin_unlock(&cluster->refill_lock);
8699
Zheng Yan1a40e232008-09-26 10:09:34 -04008700 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07008701 if (!path) {
8702 ret = -ENOMEM;
8703 goto out;
8704 }
Zheng Yan1a40e232008-09-26 10:09:34 -04008705
Ilya Dryomov10b2f342011-10-02 13:56:53 +03008706 inode = lookup_free_space_inode(tree_root, block_group, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04008707 if (!IS_ERR(inode)) {
Tsutomu Itohb5324022011-07-19 07:27:20 +00008708 ret = btrfs_orphan_add(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008709 if (ret) {
8710 btrfs_add_delayed_iput(inode);
8711 goto out;
8712 }
Josef Bacik0af3d002010-06-21 14:48:16 -04008713 clear_nlink(inode);
8714 /* One for the block groups ref */
8715 spin_lock(&block_group->lock);
8716 if (block_group->iref) {
8717 block_group->iref = 0;
8718 block_group->inode = NULL;
8719 spin_unlock(&block_group->lock);
8720 iput(inode);
8721 } else {
8722 spin_unlock(&block_group->lock);
8723 }
8724 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -04008725 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04008726 }
8727
8728 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
8729 key.offset = block_group->key.objectid;
8730 key.type = 0;
8731
8732 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
8733 if (ret < 0)
8734 goto out;
8735 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +02008736 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04008737 if (ret == 0) {
8738 ret = btrfs_del_item(trans, tree_root, path);
8739 if (ret)
8740 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02008741 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04008742 }
8743
Yan Zheng3dfdb932009-01-21 10:49:16 -05008744 spin_lock(&root->fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008745 rb_erase(&block_group->cache_node,
8746 &root->fs_info->block_group_cache_tree);
Liu Boa1897fd2012-12-27 09:01:23 +00008747
8748 if (root->fs_info->first_logical_byte == block_group->key.objectid)
8749 root->fs_info->first_logical_byte = (u64)-1;
Yan Zheng3dfdb932009-01-21 10:49:16 -05008750 spin_unlock(&root->fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04008751
Josef Bacik80eb2342008-10-29 14:49:05 -04008752 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04008753 /*
8754 * we must use list_del_init so people can check to see if they
8755 * are still on the list after taking the semaphore
8756 */
8757 list_del_init(&block_group->list);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008758 if (list_empty(&block_group->space_info->block_groups[index]))
8759 clear_avail_alloc_bits(root->fs_info, block_group->flags);
Josef Bacik80eb2342008-10-29 14:49:05 -04008760 up_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04008761
Josef Bacik817d52f2009-07-13 21:29:25 -04008762 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04008763 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04008764
8765 btrfs_remove_free_space_cache(block_group);
8766
Yan Zhengc146afa2008-11-12 14:34:12 -05008767 spin_lock(&block_group->space_info->lock);
8768 block_group->space_info->total_bytes -= block_group->key.offset;
8769 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -04008770 block_group->space_info->disk_total -= block_group->key.offset * factor;
Yan Zhengc146afa2008-11-12 14:34:12 -05008771 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -04008772
Josef Bacik0af3d002010-06-21 14:48:16 -04008773 memcpy(&key, &block_group->key, sizeof(key));
8774
Chris Mason283bb192009-07-24 16:30:55 -04008775 btrfs_clear_space_info_full(root->fs_info);
Yan Zhengc146afa2008-11-12 14:34:12 -05008776
Chris Masonfa9c0d792009-04-03 09:47:43 -04008777 btrfs_put_block_group(block_group);
8778 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -04008779
8780 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
8781 if (ret > 0)
8782 ret = -EIO;
8783 if (ret < 0)
8784 goto out;
8785
8786 ret = btrfs_del_item(trans, root, path);
8787out:
8788 btrfs_free_path(path);
8789 return ret;
8790}
liuboacce9522011-01-06 19:30:25 +08008791
liuboc59021f2011-03-07 02:13:14 +00008792int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
8793{
8794 struct btrfs_space_info *space_info;
liubo1aba86d2011-04-08 08:44:37 +00008795 struct btrfs_super_block *disk_super;
8796 u64 features;
8797 u64 flags;
8798 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +00008799 int ret;
8800
David Sterba6c417612011-04-13 15:41:04 +02008801 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +00008802 if (!btrfs_super_root(disk_super))
8803 return 1;
liuboc59021f2011-03-07 02:13:14 +00008804
liubo1aba86d2011-04-08 08:44:37 +00008805 features = btrfs_super_incompat_flags(disk_super);
8806 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
8807 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +00008808
liubo1aba86d2011-04-08 08:44:37 +00008809 flags = BTRFS_BLOCK_GROUP_SYSTEM;
8810 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
liuboc59021f2011-03-07 02:13:14 +00008811 if (ret)
liubo1aba86d2011-04-08 08:44:37 +00008812 goto out;
liuboc59021f2011-03-07 02:13:14 +00008813
liubo1aba86d2011-04-08 08:44:37 +00008814 if (mixed) {
8815 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
8816 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
8817 } else {
8818 flags = BTRFS_BLOCK_GROUP_METADATA;
8819 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
8820 if (ret)
8821 goto out;
8822
8823 flags = BTRFS_BLOCK_GROUP_DATA;
8824 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
8825 }
8826out:
liuboc59021f2011-03-07 02:13:14 +00008827 return ret;
8828}
8829
liuboacce9522011-01-06 19:30:25 +08008830int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
8831{
8832 return unpin_extent_range(root, start, end);
8833}
8834
8835int btrfs_error_discard_extent(struct btrfs_root *root, u64 bytenr,
Li Dongyang5378e602011-03-24 10:24:27 +00008836 u64 num_bytes, u64 *actual_bytes)
liuboacce9522011-01-06 19:30:25 +08008837{
Li Dongyang5378e602011-03-24 10:24:27 +00008838 return btrfs_discard_extent(root, bytenr, num_bytes, actual_bytes);
liuboacce9522011-01-06 19:30:25 +08008839}
Li Dongyangf7039b12011-03-24 10:24:28 +00008840
8841int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range)
8842{
8843 struct btrfs_fs_info *fs_info = root->fs_info;
8844 struct btrfs_block_group_cache *cache = NULL;
8845 u64 group_trimmed;
8846 u64 start;
8847 u64 end;
8848 u64 trimmed = 0;
Liu Bo2cac13e2012-02-09 18:17:41 +08008849 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +00008850 int ret = 0;
8851
Liu Bo2cac13e2012-02-09 18:17:41 +08008852 /*
8853 * try to trim all FS space, our block group may start from non-zero.
8854 */
8855 if (range->len == total_bytes)
8856 cache = btrfs_lookup_first_block_group(fs_info, range->start);
8857 else
8858 cache = btrfs_lookup_block_group(fs_info, range->start);
Li Dongyangf7039b12011-03-24 10:24:28 +00008859
8860 while (cache) {
8861 if (cache->key.objectid >= (range->start + range->len)) {
8862 btrfs_put_block_group(cache);
8863 break;
8864 }
8865
8866 start = max(range->start, cache->key.objectid);
8867 end = min(range->start + range->len,
8868 cache->key.objectid + cache->key.offset);
8869
8870 if (end - start >= range->minlen) {
8871 if (!block_group_cache_done(cache)) {
Liu Bof6373bf2012-12-27 09:01:18 +00008872 ret = cache_block_group(cache, 0);
Josef Bacik1be41b72013-06-12 13:56:06 -04008873 if (ret) {
8874 btrfs_put_block_group(cache);
8875 break;
8876 }
8877 ret = wait_block_group_cache_done(cache);
8878 if (ret) {
8879 btrfs_put_block_group(cache);
8880 break;
8881 }
Li Dongyangf7039b12011-03-24 10:24:28 +00008882 }
8883 ret = btrfs_trim_block_group(cache,
8884 &group_trimmed,
8885 start,
8886 end,
8887 range->minlen);
8888
8889 trimmed += group_trimmed;
8890 if (ret) {
8891 btrfs_put_block_group(cache);
8892 break;
8893 }
8894 }
8895
8896 cache = next_block_group(fs_info->tree_root, cache);
8897 }
8898
8899 range->len = trimmed;
8900 return ret;
8901}