blob: 65401d7ef663c0d940368b5041f29a0a15acdff0 [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 Mason4b4e25f2008-11-20 10:22:27 -050028#include "compat.h"
Chris Mason74493f72007-12-11 09:25:06 -050029#include "hash.h"
Chris Masonfec577f2007-02-26 10:40:21 -050030#include "ctree.h"
31#include "disk-io.h"
32#include "print-tree.h"
Chris Masone089f052007-03-16 16:20:31 -040033#include "transaction.h"
Chris Mason0b86a832008-03-24 15:01:56 -040034#include "volumes.h"
David Woodhouse53b381b2013-01-29 18:40:14 -050035#include "raid56.h"
Chris Mason925baed2008-06-25 16:01:30 -040036#include "locking.h"
Chris Masonfa9c0d792009-04-03 09:47:43 -040037#include "free-space-cache.h"
Miao Xie3fed40c2012-09-13 04:51:36 -060038#include "math.h"
Chris Masonfec577f2007-02-26 10:40:21 -050039
Arne Jansen709c0482011-09-12 12:22:57 +020040#undef SCRAMBLE_DELAYED_REFS
41
Miao Xie9e622d62012-01-26 15:01:12 -050042/*
43 * control flags for do_chunk_alloc's force field
Chris Mason0e4f8f82011-04-15 16:05:44 -040044 * CHUNK_ALLOC_NO_FORCE means to only allocate a chunk
45 * if we really need one.
46 *
Chris Mason0e4f8f82011-04-15 16:05:44 -040047 * CHUNK_ALLOC_LIMITED means to only try and allocate one
48 * if we have very few chunks already allocated. This is
49 * used as part of the clustering code to help make sure
50 * we have a good pool of storage to cluster in, without
51 * filling the FS with empty chunks
52 *
Miao Xie9e622d62012-01-26 15:01:12 -050053 * CHUNK_ALLOC_FORCE means it must try to allocate one
54 *
Chris Mason0e4f8f82011-04-15 16:05:44 -040055 */
56enum {
57 CHUNK_ALLOC_NO_FORCE = 0,
Miao Xie9e622d62012-01-26 15:01:12 -050058 CHUNK_ALLOC_LIMITED = 1,
59 CHUNK_ALLOC_FORCE = 2,
Chris Mason0e4f8f82011-04-15 16:05:44 -040060};
61
Josef Bacikfb25e912011-07-26 17:00:46 -040062/*
63 * Control how reservations are dealt with.
64 *
65 * RESERVE_FREE - freeing a reservation.
66 * RESERVE_ALLOC - allocating space and we need to update bytes_may_use for
67 * ENOSPC accounting
68 * RESERVE_ALLOC_NO_ACCOUNT - allocating space and we should not update
69 * bytes_may_use as the ENOSPC accounting is done elsewhere
70 */
71enum {
72 RESERVE_FREE = 0,
73 RESERVE_ALLOC = 1,
74 RESERVE_ALLOC_NO_ACCOUNT = 2,
75};
76
Liu Boc53d6132012-12-27 09:01:19 +000077static int update_block_group(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -040078 u64 bytenr, u64 num_bytes, int alloc);
Yan Zheng5d4f98a2009-06-10 10:45:14 -040079static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
80 struct btrfs_root *root,
81 u64 bytenr, u64 num_bytes, u64 parent,
82 u64 root_objectid, u64 owner_objectid,
83 u64 owner_offset, int refs_to_drop,
84 struct btrfs_delayed_extent_op *extra_op);
85static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
86 struct extent_buffer *leaf,
87 struct btrfs_extent_item *ei);
88static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
89 struct btrfs_root *root,
90 u64 parent, u64 root_objectid,
91 u64 flags, u64 owner, u64 offset,
92 struct btrfs_key *ins, int ref_mod);
93static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
94 struct btrfs_root *root,
95 u64 parent, u64 root_objectid,
96 u64 flags, struct btrfs_disk_key *key,
97 int level, struct btrfs_key *ins);
Josef Bacik6a632092009-02-20 11:00:09 -050098static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Josef Bacik698d0082012-09-12 14:08:47 -040099 struct btrfs_root *extent_root, u64 flags,
100 int force);
Yan Zheng11833d62009-09-11 16:11:19 -0400101static int find_next_key(struct btrfs_path *path, int level,
102 struct btrfs_key *key);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400103static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
104 int dump_block_groups);
Josef Bacikfb25e912011-07-26 17:00:46 -0400105static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
106 u64 num_bytes, int reserve);
Josef Bacik5d803662013-02-07 16:06:02 -0500107static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
108 u64 num_bytes);
Eric Sandeen48a3b632013-04-25 20:41:01 +0000109int btrfs_pin_extent(struct btrfs_root *root,
110 u64 bytenr, u64 num_bytes, int reserved);
Josef Bacik6a632092009-02-20 11:00:09 -0500111
Josef Bacik817d52f2009-07-13 21:29:25 -0400112static noinline int
113block_group_cache_done(struct btrfs_block_group_cache *cache)
114{
115 smp_mb();
Josef Bacik36cce922013-08-05 11:15:21 -0400116 return cache->cached == BTRFS_CACHE_FINISHED ||
117 cache->cached == BTRFS_CACHE_ERROR;
Josef Bacik817d52f2009-07-13 21:29:25 -0400118}
119
Josef Bacik0f9dd462008-09-23 13:14:11 -0400120static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
121{
122 return (cache->flags & bits) == bits;
123}
124
David Sterba62a45b62011-04-20 15:52:26 +0200125static void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
Josef Bacik11dfe352009-11-13 20:12:59 +0000126{
127 atomic_inc(&cache->count);
128}
129
130void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
131{
Yan, Zhengf0486c62010-05-16 10:46:25 -0400132 if (atomic_dec_and_test(&cache->count)) {
133 WARN_ON(cache->pinned > 0);
134 WARN_ON(cache->reserved > 0);
Li Zefan34d52cb2011-03-29 13:46:06 +0800135 kfree(cache->free_space_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000136 kfree(cache);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400137 }
Josef Bacik11dfe352009-11-13 20:12:59 +0000138}
139
Josef Bacik0f9dd462008-09-23 13:14:11 -0400140/*
141 * this adds the block group to the fs_info rb tree for the block group
142 * cache
143 */
Christoph Hellwigb2950862008-12-02 09:54:17 -0500144static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400145 struct btrfs_block_group_cache *block_group)
146{
147 struct rb_node **p;
148 struct rb_node *parent = NULL;
149 struct btrfs_block_group_cache *cache;
150
151 spin_lock(&info->block_group_cache_lock);
152 p = &info->block_group_cache_tree.rb_node;
153
154 while (*p) {
155 parent = *p;
156 cache = rb_entry(parent, struct btrfs_block_group_cache,
157 cache_node);
158 if (block_group->key.objectid < cache->key.objectid) {
159 p = &(*p)->rb_left;
160 } else if (block_group->key.objectid > cache->key.objectid) {
161 p = &(*p)->rb_right;
162 } else {
163 spin_unlock(&info->block_group_cache_lock);
164 return -EEXIST;
165 }
166 }
167
168 rb_link_node(&block_group->cache_node, parent, p);
169 rb_insert_color(&block_group->cache_node,
170 &info->block_group_cache_tree);
Liu Boa1897fd2012-12-27 09:01:23 +0000171
172 if (info->first_logical_byte > block_group->key.objectid)
173 info->first_logical_byte = block_group->key.objectid;
174
Josef Bacik0f9dd462008-09-23 13:14:11 -0400175 spin_unlock(&info->block_group_cache_lock);
176
177 return 0;
178}
179
180/*
181 * This will return the block group at or after bytenr if contains is 0, else
182 * it will return the block group that contains the bytenr
183 */
184static struct btrfs_block_group_cache *
185block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
186 int contains)
187{
188 struct btrfs_block_group_cache *cache, *ret = NULL;
189 struct rb_node *n;
190 u64 end, start;
191
192 spin_lock(&info->block_group_cache_lock);
193 n = info->block_group_cache_tree.rb_node;
194
195 while (n) {
196 cache = rb_entry(n, struct btrfs_block_group_cache,
197 cache_node);
198 end = cache->key.objectid + cache->key.offset - 1;
199 start = cache->key.objectid;
200
201 if (bytenr < start) {
202 if (!contains && (!ret || start < ret->key.objectid))
203 ret = cache;
204 n = n->rb_left;
205 } else if (bytenr > start) {
206 if (contains && bytenr <= end) {
207 ret = cache;
208 break;
209 }
210 n = n->rb_right;
211 } else {
212 ret = cache;
213 break;
214 }
215 }
Liu Boa1897fd2012-12-27 09:01:23 +0000216 if (ret) {
Josef Bacik11dfe352009-11-13 20:12:59 +0000217 btrfs_get_block_group(ret);
Liu Boa1897fd2012-12-27 09:01:23 +0000218 if (bytenr == 0 && info->first_logical_byte > ret->key.objectid)
219 info->first_logical_byte = ret->key.objectid;
220 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400221 spin_unlock(&info->block_group_cache_lock);
222
223 return ret;
224}
225
Yan Zheng11833d62009-09-11 16:11:19 -0400226static int add_excluded_extent(struct btrfs_root *root,
227 u64 start, u64 num_bytes)
Josef Bacik817d52f2009-07-13 21:29:25 -0400228{
Yan Zheng11833d62009-09-11 16:11:19 -0400229 u64 end = start + num_bytes - 1;
230 set_extent_bits(&root->fs_info->freed_extents[0],
231 start, end, EXTENT_UPTODATE, GFP_NOFS);
232 set_extent_bits(&root->fs_info->freed_extents[1],
233 start, end, EXTENT_UPTODATE, GFP_NOFS);
234 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400235}
236
Yan Zheng11833d62009-09-11 16:11:19 -0400237static void free_excluded_extents(struct btrfs_root *root,
238 struct btrfs_block_group_cache *cache)
Josef Bacik817d52f2009-07-13 21:29:25 -0400239{
Yan Zheng11833d62009-09-11 16:11:19 -0400240 u64 start, end;
241
242 start = cache->key.objectid;
243 end = start + cache->key.offset - 1;
244
245 clear_extent_bits(&root->fs_info->freed_extents[0],
246 start, end, EXTENT_UPTODATE, GFP_NOFS);
247 clear_extent_bits(&root->fs_info->freed_extents[1],
248 start, end, EXTENT_UPTODATE, GFP_NOFS);
249}
250
251static int exclude_super_stripes(struct btrfs_root *root,
252 struct btrfs_block_group_cache *cache)
253{
Josef Bacik817d52f2009-07-13 21:29:25 -0400254 u64 bytenr;
255 u64 *logical;
256 int stripe_len;
257 int i, nr, ret;
258
Yan, Zheng06b23312009-11-26 09:31:11 +0000259 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
260 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
261 cache->bytes_super += stripe_len;
262 ret = add_excluded_extent(root, cache->key.objectid,
263 stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400264 if (ret)
265 return ret;
Yan, Zheng06b23312009-11-26 09:31:11 +0000266 }
267
Josef Bacik817d52f2009-07-13 21:29:25 -0400268 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
269 bytenr = btrfs_sb_offset(i);
270 ret = btrfs_rmap_block(&root->fs_info->mapping_tree,
271 cache->key.objectid, bytenr,
272 0, &logical, &nr, &stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400273 if (ret)
274 return ret;
Yan Zheng11833d62009-09-11 16:11:19 -0400275
Josef Bacik817d52f2009-07-13 21:29:25 -0400276 while (nr--) {
Josef Bacik51bf5f02013-04-23 12:55:21 -0400277 u64 start, len;
278
279 if (logical[nr] > cache->key.objectid +
280 cache->key.offset)
281 continue;
282
283 if (logical[nr] + stripe_len <= cache->key.objectid)
284 continue;
285
286 start = logical[nr];
287 if (start < cache->key.objectid) {
288 start = cache->key.objectid;
289 len = (logical[nr] + stripe_len) - start;
290 } else {
291 len = min_t(u64, stripe_len,
292 cache->key.objectid +
293 cache->key.offset - start);
294 }
295
296 cache->bytes_super += len;
297 ret = add_excluded_extent(root, start, len);
Josef Bacik835d9742013-03-19 12:13:25 -0400298 if (ret) {
299 kfree(logical);
300 return ret;
301 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400302 }
Yan Zheng11833d62009-09-11 16:11:19 -0400303
Josef Bacik817d52f2009-07-13 21:29:25 -0400304 kfree(logical);
305 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400306 return 0;
307}
308
Yan Zheng11833d62009-09-11 16:11:19 -0400309static struct btrfs_caching_control *
310get_caching_control(struct btrfs_block_group_cache *cache)
311{
312 struct btrfs_caching_control *ctl;
313
314 spin_lock(&cache->lock);
315 if (cache->cached != BTRFS_CACHE_STARTED) {
316 spin_unlock(&cache->lock);
317 return NULL;
318 }
319
Josef Bacikdde5abe2010-09-16 16:17:03 -0400320 /* We're loading it the fast way, so we don't have a caching_ctl. */
321 if (!cache->caching_ctl) {
322 spin_unlock(&cache->lock);
323 return NULL;
324 }
325
Yan Zheng11833d62009-09-11 16:11:19 -0400326 ctl = cache->caching_ctl;
327 atomic_inc(&ctl->count);
328 spin_unlock(&cache->lock);
329 return ctl;
330}
331
332static void put_caching_control(struct btrfs_caching_control *ctl)
333{
334 if (atomic_dec_and_test(&ctl->count))
335 kfree(ctl);
336}
337
Josef Bacik0f9dd462008-09-23 13:14:11 -0400338/*
339 * this is only called by cache_block_group, since we could have freed extents
340 * we need to check the pinned_extents for any extents that can't be used yet
341 * since their free space will be released as soon as the transaction commits.
342 */
Josef Bacik817d52f2009-07-13 21:29:25 -0400343static u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400344 struct btrfs_fs_info *info, u64 start, u64 end)
345{
Josef Bacik817d52f2009-07-13 21:29:25 -0400346 u64 extent_start, extent_end, size, total_added = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400347 int ret;
348
349 while (start < end) {
Yan Zheng11833d62009-09-11 16:11:19 -0400350 ret = find_first_extent_bit(info->pinned_extents, start,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400351 &extent_start, &extent_end,
Josef Bacike6138872012-09-27 17:07:30 -0400352 EXTENT_DIRTY | EXTENT_UPTODATE,
353 NULL);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400354 if (ret)
355 break;
356
Yan, Zheng06b23312009-11-26 09:31:11 +0000357 if (extent_start <= start) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400358 start = extent_end + 1;
359 } else if (extent_start > start && extent_start < end) {
360 size = extent_start - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400361 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500362 ret = btrfs_add_free_space(block_group, start,
363 size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100364 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400365 start = extent_end + 1;
366 } else {
367 break;
368 }
369 }
370
371 if (start < end) {
372 size = end - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400373 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500374 ret = btrfs_add_free_space(block_group, start, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100375 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400376 }
377
Josef Bacik817d52f2009-07-13 21:29:25 -0400378 return total_added;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400379}
380
Josef Bacikbab39bf2011-06-30 14:42:28 -0400381static noinline void caching_thread(struct btrfs_work *work)
Chris Masone37c9e62007-05-09 20:13:14 -0400382{
Josef Bacikbab39bf2011-06-30 14:42:28 -0400383 struct btrfs_block_group_cache *block_group;
384 struct btrfs_fs_info *fs_info;
385 struct btrfs_caching_control *caching_ctl;
386 struct btrfs_root *extent_root;
Chris Masone37c9e62007-05-09 20:13:14 -0400387 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400388 struct extent_buffer *leaf;
Yan Zheng11833d62009-09-11 16:11:19 -0400389 struct btrfs_key key;
Josef Bacik817d52f2009-07-13 21:29:25 -0400390 u64 total_found = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400391 u64 last = 0;
392 u32 nritems;
Josef Bacik36cce922013-08-05 11:15:21 -0400393 int ret = -ENOMEM;
Chris Masonf510cfe2007-10-15 16:14:48 -0400394
Josef Bacikbab39bf2011-06-30 14:42:28 -0400395 caching_ctl = container_of(work, struct btrfs_caching_control, work);
396 block_group = caching_ctl->block_group;
397 fs_info = block_group->fs_info;
398 extent_root = fs_info->extent_root;
399
Chris Masone37c9e62007-05-09 20:13:14 -0400400 path = btrfs_alloc_path();
401 if (!path)
Josef Bacikbab39bf2011-06-30 14:42:28 -0400402 goto out;
Yan7d7d6062007-09-14 16:15:28 -0400403
Josef Bacik817d52f2009-07-13 21:29:25 -0400404 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
Yan Zheng11833d62009-09-11 16:11:19 -0400405
Chris Mason5cd57b22008-06-25 16:01:30 -0400406 /*
Josef Bacik817d52f2009-07-13 21:29:25 -0400407 * We don't want to deadlock with somebody trying to allocate a new
408 * extent for the extent root while also trying to search the extent
409 * root to add free space. So we skip locking and search the commit
410 * root, since its read-only
Chris Mason5cd57b22008-06-25 16:01:30 -0400411 */
412 path->skip_locking = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400413 path->search_commit_root = 1;
Josef Bacik026fd312011-05-13 10:32:11 -0400414 path->reada = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400415
Yan Zhenge4404d62008-12-12 10:03:26 -0500416 key.objectid = last;
Chris Masone37c9e62007-05-09 20:13:14 -0400417 key.offset = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400418 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason013f1b12009-07-31 14:57:55 -0400419again:
Yan Zheng11833d62009-09-11 16:11:19 -0400420 mutex_lock(&caching_ctl->mutex);
Chris Mason013f1b12009-07-31 14:57:55 -0400421 /* need to make sure the commit_root doesn't disappear */
422 down_read(&fs_info->extent_commit_sem);
423
Liu Bo52ee28d2013-07-11 17:51:15 +0800424next:
Yan Zheng11833d62009-09-11 16:11:19 -0400425 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
Chris Masone37c9e62007-05-09 20:13:14 -0400426 if (ret < 0)
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400427 goto err;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500428
Yan Zheng11833d62009-09-11 16:11:19 -0400429 leaf = path->nodes[0];
430 nritems = btrfs_header_nritems(leaf);
431
Chris Masond3977122009-01-05 21:25:51 -0500432 while (1) {
David Sterba7841cb22011-05-31 18:07:27 +0200433 if (btrfs_fs_closing(fs_info) > 1) {
Yan Zhengf25784b2009-07-28 08:41:57 -0400434 last = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400435 break;
Yan Zhengf25784b2009-07-28 08:41:57 -0400436 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400437
Yan Zheng11833d62009-09-11 16:11:19 -0400438 if (path->slots[0] < nritems) {
439 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
440 } else {
441 ret = find_next_key(path, 0, &key);
442 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -0400443 break;
Josef Bacik817d52f2009-07-13 21:29:25 -0400444
Josef Bacik0a3896d2013-04-19 14:37:26 -0400445 if (need_resched()) {
Josef Bacik589d8ad2011-05-11 17:30:53 -0400446 caching_ctl->progress = last;
Chris Masonff5714c2011-05-28 07:00:39 -0400447 btrfs_release_path(path);
Josef Bacik589d8ad2011-05-11 17:30:53 -0400448 up_read(&fs_info->extent_commit_sem);
449 mutex_unlock(&caching_ctl->mutex);
Yan Zheng11833d62009-09-11 16:11:19 -0400450 cond_resched();
Josef Bacik589d8ad2011-05-11 17:30:53 -0400451 goto again;
452 }
Josef Bacik0a3896d2013-04-19 14:37:26 -0400453
454 ret = btrfs_next_leaf(extent_root, path);
455 if (ret < 0)
456 goto err;
457 if (ret)
458 break;
Josef Bacik589d8ad2011-05-11 17:30:53 -0400459 leaf = path->nodes[0];
460 nritems = btrfs_header_nritems(leaf);
461 continue;
Yan Zheng11833d62009-09-11 16:11:19 -0400462 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400463
Liu Bo52ee28d2013-07-11 17:51:15 +0800464 if (key.objectid < last) {
465 key.objectid = last;
466 key.offset = 0;
467 key.type = BTRFS_EXTENT_ITEM_KEY;
468
469 caching_ctl->progress = last;
470 btrfs_release_path(path);
471 goto next;
472 }
473
Yan Zheng11833d62009-09-11 16:11:19 -0400474 if (key.objectid < block_group->key.objectid) {
475 path->slots[0]++;
Josef Bacik817d52f2009-07-13 21:29:25 -0400476 continue;
Chris Masone37c9e62007-05-09 20:13:14 -0400477 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400478
Chris Masone37c9e62007-05-09 20:13:14 -0400479 if (key.objectid >= block_group->key.objectid +
Josef Bacik0f9dd462008-09-23 13:14:11 -0400480 block_group->key.offset)
Yan7d7d6062007-09-14 16:15:28 -0400481 break;
Yan7d7d6062007-09-14 16:15:28 -0400482
Josef Bacik3173a182013-03-07 14:22:04 -0500483 if (key.type == BTRFS_EXTENT_ITEM_KEY ||
484 key.type == BTRFS_METADATA_ITEM_KEY) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400485 total_found += add_new_free_space(block_group,
486 fs_info, last,
487 key.objectid);
Josef Bacik3173a182013-03-07 14:22:04 -0500488 if (key.type == BTRFS_METADATA_ITEM_KEY)
489 last = key.objectid +
490 fs_info->tree_root->leafsize;
491 else
492 last = key.objectid + key.offset;
Josef Bacik817d52f2009-07-13 21:29:25 -0400493
Yan Zheng11833d62009-09-11 16:11:19 -0400494 if (total_found > (1024 * 1024 * 2)) {
495 total_found = 0;
496 wake_up(&caching_ctl->wait);
497 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400498 }
Chris Masone37c9e62007-05-09 20:13:14 -0400499 path->slots[0]++;
500 }
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400501 ret = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400502
503 total_found += add_new_free_space(block_group, fs_info, last,
504 block_group->key.objectid +
505 block_group->key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -0400506 caching_ctl->progress = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400507
508 spin_lock(&block_group->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400509 block_group->caching_ctl = NULL;
Josef Bacik817d52f2009-07-13 21:29:25 -0400510 block_group->cached = BTRFS_CACHE_FINISHED;
511 spin_unlock(&block_group->lock);
512
Chris Mason54aa1f42007-06-22 14:16:25 -0400513err:
Chris Masone37c9e62007-05-09 20:13:14 -0400514 btrfs_free_path(path);
Yan Zheng276e6802009-07-30 09:40:40 -0400515 up_read(&fs_info->extent_commit_sem);
Josef Bacik817d52f2009-07-13 21:29:25 -0400516
Yan Zheng11833d62009-09-11 16:11:19 -0400517 free_excluded_extents(extent_root, block_group);
518
519 mutex_unlock(&caching_ctl->mutex);
Josef Bacikbab39bf2011-06-30 14:42:28 -0400520out:
Josef Bacik36cce922013-08-05 11:15:21 -0400521 if (ret) {
522 spin_lock(&block_group->lock);
523 block_group->caching_ctl = NULL;
524 block_group->cached = BTRFS_CACHE_ERROR;
525 spin_unlock(&block_group->lock);
526 }
Yan Zheng11833d62009-09-11 16:11:19 -0400527 wake_up(&caching_ctl->wait);
528
529 put_caching_control(caching_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000530 btrfs_put_block_group(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -0400531}
532
Josef Bacik9d66e232010-08-25 16:54:15 -0400533static int cache_block_group(struct btrfs_block_group_cache *cache,
Josef Bacik9d66e232010-08-25 16:54:15 -0400534 int load_cache_only)
Josef Bacik817d52f2009-07-13 21:29:25 -0400535{
Josef Bacik291c7d22011-11-14 13:52:14 -0500536 DEFINE_WAIT(wait);
Yan Zheng11833d62009-09-11 16:11:19 -0400537 struct btrfs_fs_info *fs_info = cache->fs_info;
538 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400539 int ret = 0;
540
Josef Bacik291c7d22011-11-14 13:52:14 -0500541 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100542 if (!caching_ctl)
543 return -ENOMEM;
Josef Bacik291c7d22011-11-14 13:52:14 -0500544
545 INIT_LIST_HEAD(&caching_ctl->list);
546 mutex_init(&caching_ctl->mutex);
547 init_waitqueue_head(&caching_ctl->wait);
548 caching_ctl->block_group = cache;
549 caching_ctl->progress = cache->key.objectid;
550 atomic_set(&caching_ctl->count, 1);
551 caching_ctl->work.func = caching_thread;
552
553 spin_lock(&cache->lock);
554 /*
555 * This should be a rare occasion, but this could happen I think in the
556 * case where one thread starts to load the space cache info, and then
557 * some other thread starts a transaction commit which tries to do an
558 * allocation while the other thread is still loading the space cache
559 * info. The previous loop should have kept us from choosing this block
560 * group, but if we've moved to the state where we will wait on caching
561 * block groups we need to first check if we're doing a fast load here,
562 * so we can wait for it to finish, otherwise we could end up allocating
563 * from a block group who's cache gets evicted for one reason or
564 * another.
565 */
566 while (cache->cached == BTRFS_CACHE_FAST) {
567 struct btrfs_caching_control *ctl;
568
569 ctl = cache->caching_ctl;
570 atomic_inc(&ctl->count);
571 prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE);
572 spin_unlock(&cache->lock);
573
574 schedule();
575
576 finish_wait(&ctl->wait, &wait);
577 put_caching_control(ctl);
578 spin_lock(&cache->lock);
579 }
580
581 if (cache->cached != BTRFS_CACHE_NO) {
582 spin_unlock(&cache->lock);
583 kfree(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400584 return 0;
Josef Bacik291c7d22011-11-14 13:52:14 -0500585 }
586 WARN_ON(cache->caching_ctl);
587 cache->caching_ctl = caching_ctl;
588 cache->cached = BTRFS_CACHE_FAST;
589 spin_unlock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400590
Josef Bacikd53ba472012-04-12 16:03:57 -0400591 if (fs_info->mount_opt & BTRFS_MOUNT_SPACE_CACHE) {
Josef Bacik9d66e232010-08-25 16:54:15 -0400592 ret = load_free_space_cache(fs_info, cache);
593
594 spin_lock(&cache->lock);
595 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500596 cache->caching_ctl = NULL;
Josef Bacik9d66e232010-08-25 16:54:15 -0400597 cache->cached = BTRFS_CACHE_FINISHED;
598 cache->last_byte_to_unpin = (u64)-1;
599 } else {
Josef Bacik291c7d22011-11-14 13:52:14 -0500600 if (load_cache_only) {
601 cache->caching_ctl = NULL;
602 cache->cached = BTRFS_CACHE_NO;
603 } else {
604 cache->cached = BTRFS_CACHE_STARTED;
605 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400606 }
607 spin_unlock(&cache->lock);
Josef Bacik291c7d22011-11-14 13:52:14 -0500608 wake_up(&caching_ctl->wait);
Josef Bacik3c148742011-02-02 15:53:47 +0000609 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500610 put_caching_control(caching_ctl);
Josef Bacik3c148742011-02-02 15:53:47 +0000611 free_excluded_extents(fs_info->extent_root, cache);
Josef Bacik9d66e232010-08-25 16:54:15 -0400612 return 0;
Josef Bacik3c148742011-02-02 15:53:47 +0000613 }
Josef Bacik291c7d22011-11-14 13:52:14 -0500614 } else {
615 /*
616 * We are not going to do the fast caching, set cached to the
617 * appropriate value and wakeup any waiters.
618 */
619 spin_lock(&cache->lock);
620 if (load_cache_only) {
621 cache->caching_ctl = NULL;
622 cache->cached = BTRFS_CACHE_NO;
623 } else {
624 cache->cached = BTRFS_CACHE_STARTED;
625 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400626 spin_unlock(&cache->lock);
Josef Bacik291c7d22011-11-14 13:52:14 -0500627 wake_up(&caching_ctl->wait);
628 }
629
630 if (load_cache_only) {
631 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400632 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400633 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400634
Yan Zheng11833d62009-09-11 16:11:19 -0400635 down_write(&fs_info->extent_commit_sem);
Josef Bacik291c7d22011-11-14 13:52:14 -0500636 atomic_inc(&caching_ctl->count);
Yan Zheng11833d62009-09-11 16:11:19 -0400637 list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
638 up_write(&fs_info->extent_commit_sem);
639
Josef Bacik11dfe352009-11-13 20:12:59 +0000640 btrfs_get_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -0400641
Josef Bacikbab39bf2011-06-30 14:42:28 -0400642 btrfs_queue_worker(&fs_info->caching_workers, &caching_ctl->work);
Josef Bacik817d52f2009-07-13 21:29:25 -0400643
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400644 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -0400645}
646
Josef Bacik0f9dd462008-09-23 13:14:11 -0400647/*
648 * return the block group that starts at or after bytenr
649 */
Chris Masond3977122009-01-05 21:25:51 -0500650static struct btrfs_block_group_cache *
651btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
Chris Mason0ef3e662008-05-24 14:04:53 -0400652{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400653 struct btrfs_block_group_cache *cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400654
Josef Bacik0f9dd462008-09-23 13:14:11 -0400655 cache = block_group_cache_tree_search(info, bytenr, 0);
Chris Mason0ef3e662008-05-24 14:04:53 -0400656
Josef Bacik0f9dd462008-09-23 13:14:11 -0400657 return cache;
Chris Mason0ef3e662008-05-24 14:04:53 -0400658}
659
Josef Bacik0f9dd462008-09-23 13:14:11 -0400660/*
Sankar P9f556842009-05-14 13:52:22 -0400661 * return the block group that contains the given bytenr
Josef Bacik0f9dd462008-09-23 13:14:11 -0400662 */
Chris Masond3977122009-01-05 21:25:51 -0500663struct btrfs_block_group_cache *btrfs_lookup_block_group(
664 struct btrfs_fs_info *info,
665 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400666{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400667 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -0400668
Josef Bacik0f9dd462008-09-23 13:14:11 -0400669 cache = block_group_cache_tree_search(info, bytenr, 1);
Chris Mason96b51792007-10-15 16:15:19 -0400670
Josef Bacik0f9dd462008-09-23 13:14:11 -0400671 return cache;
Chris Masonbe744172007-05-06 10:15:01 -0400672}
Chris Mason0b86a832008-03-24 15:01:56 -0400673
Josef Bacik0f9dd462008-09-23 13:14:11 -0400674static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
675 u64 flags)
Chris Mason6324fbf2008-03-24 15:01:59 -0400676{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400677 struct list_head *head = &info->space_info;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400678 struct btrfs_space_info *found;
Chris Mason4184ea72009-03-10 12:39:20 -0400679
Ilya Dryomov52ba6922012-01-16 22:04:47 +0200680 flags &= BTRFS_BLOCK_GROUP_TYPE_MASK;
Yan, Zhengb742bb822010-05-16 10:46:24 -0400681
Chris Mason4184ea72009-03-10 12:39:20 -0400682 rcu_read_lock();
683 list_for_each_entry_rcu(found, head, list) {
Josef Bacik67377732010-09-16 16:19:09 -0400684 if (found->flags & flags) {
Chris Mason4184ea72009-03-10 12:39:20 -0400685 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400686 return found;
Chris Mason4184ea72009-03-10 12:39:20 -0400687 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400688 }
Chris Mason4184ea72009-03-10 12:39:20 -0400689 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400690 return NULL;
Chris Mason6324fbf2008-03-24 15:01:59 -0400691}
692
Chris Mason4184ea72009-03-10 12:39:20 -0400693/*
694 * after adding space to the filesystem, we need to clear the full flags
695 * on all the space infos.
696 */
697void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
698{
699 struct list_head *head = &info->space_info;
700 struct btrfs_space_info *found;
701
702 rcu_read_lock();
703 list_for_each_entry_rcu(found, head, list)
704 found->full = 0;
705 rcu_read_unlock();
706}
707
Chris Masone02119d2008-09-05 16:13:11 -0400708/* simple helper to search for an existing extent at a given offset */
Zheng Yan31840ae2008-09-23 13:14:14 -0400709int btrfs_lookup_extent(struct btrfs_root *root, u64 start, u64 len)
Chris Masone02119d2008-09-05 16:13:11 -0400710{
711 int ret;
712 struct btrfs_key key;
Zheng Yan31840ae2008-09-23 13:14:14 -0400713 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -0400714
Zheng Yan31840ae2008-09-23 13:14:14 -0400715 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700716 if (!path)
717 return -ENOMEM;
718
Chris Masone02119d2008-09-05 16:13:11 -0400719 key.objectid = start;
720 key.offset = len;
Josef Bacik3173a182013-03-07 14:22:04 -0500721 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -0400722 ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path,
723 0, 0);
Josef Bacik3173a182013-03-07 14:22:04 -0500724 if (ret > 0) {
725 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
726 if (key.objectid == start &&
727 key.type == BTRFS_METADATA_ITEM_KEY)
728 ret = 0;
729 }
Zheng Yan31840ae2008-09-23 13:14:14 -0400730 btrfs_free_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -0500731 return ret;
732}
733
Chris Masond8d5f3e2007-12-11 12:42:00 -0500734/*
Josef Bacik3173a182013-03-07 14:22:04 -0500735 * helper function to lookup reference count and flags of a tree block.
Yan, Zhenga22285a2010-05-16 10:48:46 -0400736 *
737 * the head node for delayed ref is used to store the sum of all the
738 * reference count modifications queued up in the rbtree. the head
739 * node may also store the extent flags to set. This way you can check
740 * to see what the reference count and extent flags would be if all of
741 * the delayed refs are not processed.
742 */
743int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
744 struct btrfs_root *root, u64 bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -0500745 u64 offset, int metadata, u64 *refs, u64 *flags)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400746{
747 struct btrfs_delayed_ref_head *head;
748 struct btrfs_delayed_ref_root *delayed_refs;
749 struct btrfs_path *path;
750 struct btrfs_extent_item *ei;
751 struct extent_buffer *leaf;
752 struct btrfs_key key;
753 u32 item_size;
754 u64 num_refs;
755 u64 extent_flags;
756 int ret;
757
Josef Bacik3173a182013-03-07 14:22:04 -0500758 /*
759 * If we don't have skinny metadata, don't bother doing anything
760 * different
761 */
762 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA)) {
763 offset = root->leafsize;
764 metadata = 0;
765 }
766
Yan, Zhenga22285a2010-05-16 10:48:46 -0400767 path = btrfs_alloc_path();
768 if (!path)
769 return -ENOMEM;
770
Josef Bacik3173a182013-03-07 14:22:04 -0500771 if (metadata) {
772 key.objectid = bytenr;
773 key.type = BTRFS_METADATA_ITEM_KEY;
774 key.offset = offset;
775 } else {
776 key.objectid = bytenr;
777 key.type = BTRFS_EXTENT_ITEM_KEY;
778 key.offset = offset;
779 }
780
Yan, Zhenga22285a2010-05-16 10:48:46 -0400781 if (!trans) {
782 path->skip_locking = 1;
783 path->search_commit_root = 1;
784 }
785again:
786 ret = btrfs_search_slot(trans, root->fs_info->extent_root,
787 &key, path, 0, 0);
788 if (ret < 0)
789 goto out_free;
790
Josef Bacik3173a182013-03-07 14:22:04 -0500791 if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) {
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100792 metadata = 0;
793 if (path->slots[0]) {
794 path->slots[0]--;
795 btrfs_item_key_to_cpu(path->nodes[0], &key,
796 path->slots[0]);
797 if (key.objectid == bytenr &&
798 key.type == BTRFS_EXTENT_ITEM_KEY &&
799 key.offset == root->leafsize)
800 ret = 0;
801 }
802 if (ret) {
803 key.objectid = bytenr;
804 key.type = BTRFS_EXTENT_ITEM_KEY;
805 key.offset = root->leafsize;
806 btrfs_release_path(path);
807 goto again;
808 }
Josef Bacik3173a182013-03-07 14:22:04 -0500809 }
810
Yan, Zhenga22285a2010-05-16 10:48:46 -0400811 if (ret == 0) {
812 leaf = path->nodes[0];
813 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
814 if (item_size >= sizeof(*ei)) {
815 ei = btrfs_item_ptr(leaf, path->slots[0],
816 struct btrfs_extent_item);
817 num_refs = btrfs_extent_refs(leaf, ei);
818 extent_flags = btrfs_extent_flags(leaf, ei);
819 } else {
820#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
821 struct btrfs_extent_item_v0 *ei0;
822 BUG_ON(item_size != sizeof(*ei0));
823 ei0 = btrfs_item_ptr(leaf, path->slots[0],
824 struct btrfs_extent_item_v0);
825 num_refs = btrfs_extent_refs_v0(leaf, ei0);
826 /* FIXME: this isn't correct for data */
827 extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
828#else
829 BUG();
830#endif
831 }
832 BUG_ON(num_refs == 0);
833 } else {
834 num_refs = 0;
835 extent_flags = 0;
836 ret = 0;
837 }
838
839 if (!trans)
840 goto out;
841
842 delayed_refs = &trans->transaction->delayed_refs;
843 spin_lock(&delayed_refs->lock);
844 head = btrfs_find_delayed_ref_head(trans, bytenr);
845 if (head) {
846 if (!mutex_trylock(&head->mutex)) {
847 atomic_inc(&head->node.refs);
848 spin_unlock(&delayed_refs->lock);
849
David Sterbab3b4aa72011-04-21 01:20:15 +0200850 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400851
David Sterba8cc33e52011-05-02 15:29:25 +0200852 /*
853 * Mutex was contended, block until it's released and try
854 * again
855 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400856 mutex_lock(&head->mutex);
857 mutex_unlock(&head->mutex);
858 btrfs_put_delayed_ref(&head->node);
859 goto again;
860 }
861 if (head->extent_op && head->extent_op->update_flags)
862 extent_flags |= head->extent_op->flags_to_set;
863 else
864 BUG_ON(num_refs == 0);
865
866 num_refs += head->node.ref_mod;
867 mutex_unlock(&head->mutex);
868 }
869 spin_unlock(&delayed_refs->lock);
870out:
871 WARN_ON(num_refs == 0);
872 if (refs)
873 *refs = num_refs;
874 if (flags)
875 *flags = extent_flags;
876out_free:
877 btrfs_free_path(path);
878 return ret;
879}
880
881/*
Chris Masond8d5f3e2007-12-11 12:42:00 -0500882 * Back reference rules. Back refs have three main goals:
883 *
884 * 1) differentiate between all holders of references to an extent so that
885 * when a reference is dropped we can make sure it was a valid reference
886 * before freeing the extent.
887 *
888 * 2) Provide enough information to quickly find the holders of an extent
889 * if we notice a given block is corrupted or bad.
890 *
891 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
892 * maintenance. This is actually the same as #2, but with a slightly
893 * different use case.
894 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400895 * There are two kinds of back refs. The implicit back refs is optimized
896 * for pointers in non-shared tree blocks. For a given pointer in a block,
897 * back refs of this kind provide information about the block's owner tree
898 * and the pointer's key. These information allow us to find the block by
899 * b-tree searching. The full back refs is for pointers in tree blocks not
900 * referenced by their owner trees. The location of tree block is recorded
901 * in the back refs. Actually the full back refs is generic, and can be
902 * used in all cases the implicit back refs is used. The major shortcoming
903 * of the full back refs is its overhead. Every time a tree block gets
904 * COWed, we have to update back refs entry for all pointers in it.
905 *
906 * For a newly allocated tree block, we use implicit back refs for
907 * pointers in it. This means most tree related operations only involve
908 * implicit back refs. For a tree block created in old transaction, the
909 * only way to drop a reference to it is COW it. So we can detect the
910 * event that tree block loses its owner tree's reference and do the
911 * back refs conversion.
912 *
913 * When a tree block is COW'd through a tree, there are four cases:
914 *
915 * The reference count of the block is one and the tree is the block's
916 * owner tree. Nothing to do in this case.
917 *
918 * The reference count of the block is one and the tree is not the
919 * block's owner tree. In this case, full back refs is used for pointers
920 * in the block. Remove these full back refs, add implicit back refs for
921 * every pointers in the new block.
922 *
923 * The reference count of the block is greater than one and the tree is
924 * the block's owner tree. In this case, implicit back refs is used for
925 * pointers in the block. Add full back refs for every pointers in the
926 * block, increase lower level extents' reference counts. The original
927 * implicit back refs are entailed to the new block.
928 *
929 * The reference count of the block is greater than one and the tree is
930 * not the block's owner tree. Add implicit back refs for every pointer in
931 * the new block, increase lower level extents' reference count.
932 *
933 * Back Reference Key composing:
934 *
935 * The key objectid corresponds to the first byte in the extent,
936 * The key type is used to differentiate between types of back refs.
937 * There are different meanings of the key offset for different types
938 * of back refs.
939 *
Chris Masond8d5f3e2007-12-11 12:42:00 -0500940 * File extents can be referenced by:
941 *
942 * - multiple snapshots, subvolumes, or different generations in one subvol
Zheng Yan31840ae2008-09-23 13:14:14 -0400943 * - different files inside a single subvolume
Chris Masond8d5f3e2007-12-11 12:42:00 -0500944 * - different offsets inside a file (bookend extents in file.c)
945 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400946 * The extent ref structure for the implicit back refs has fields for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500947 *
948 * - Objectid of the subvolume root
Chris Masond8d5f3e2007-12-11 12:42:00 -0500949 * - objectid of the file holding the reference
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400950 * - original offset in the file
951 * - how many bookend extents
Zheng Yan31840ae2008-09-23 13:14:14 -0400952 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400953 * The key offset for the implicit back refs is hash of the first
954 * three fields.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500955 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400956 * The extent ref structure for the full back refs has field for:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500957 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400958 * - number of pointers in the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500959 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400960 * The key offset for the implicit back refs is the first byte of
961 * the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -0500962 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400963 * When a file extent is allocated, The implicit back refs is used.
964 * the fields are filled in:
Chris Masond8d5f3e2007-12-11 12:42:00 -0500965 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400966 * (root_key.objectid, inode objectid, offset in file, 1)
967 *
968 * When a file extent is removed file truncation, we find the
969 * corresponding implicit back refs and check the following fields:
970 *
971 * (btrfs_header_owner(leaf), inode objectid, offset in file)
Chris Masond8d5f3e2007-12-11 12:42:00 -0500972 *
973 * Btree extents can be referenced by:
974 *
975 * - Different subvolumes
Chris Masond8d5f3e2007-12-11 12:42:00 -0500976 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400977 * Both the implicit back refs and the full back refs for tree blocks
978 * only consist of key. The key offset for the implicit back refs is
979 * objectid of block's owner tree. The key offset for the full back refs
980 * is the first byte of parent block.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500981 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400982 * When implicit back refs is used, information about the lowest key and
983 * level of the tree block are required. These information are stored in
984 * tree block info structure.
Chris Masond8d5f3e2007-12-11 12:42:00 -0500985 */
Zheng Yan31840ae2008-09-23 13:14:14 -0400986
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400987#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
988static int convert_extent_item_v0(struct btrfs_trans_handle *trans,
989 struct btrfs_root *root,
990 struct btrfs_path *path,
991 u64 owner, u32 extra_size)
Chris Mason74493f72007-12-11 09:25:06 -0500992{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400993 struct btrfs_extent_item *item;
994 struct btrfs_extent_item_v0 *ei0;
995 struct btrfs_extent_ref_v0 *ref0;
996 struct btrfs_tree_block_info *bi;
Zheng Yan31840ae2008-09-23 13:14:14 -0400997 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400998 struct btrfs_key key;
999 struct btrfs_key found_key;
1000 u32 new_size = sizeof(*item);
1001 u64 refs;
Chris Mason74493f72007-12-11 09:25:06 -05001002 int ret;
1003
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001004 leaf = path->nodes[0];
1005 BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0));
Chris Mason74493f72007-12-11 09:25:06 -05001006
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001007 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1008 ei0 = btrfs_item_ptr(leaf, path->slots[0],
1009 struct btrfs_extent_item_v0);
1010 refs = btrfs_extent_refs_v0(leaf, ei0);
1011
1012 if (owner == (u64)-1) {
1013 while (1) {
1014 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1015 ret = btrfs_next_leaf(root, path);
1016 if (ret < 0)
1017 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001018 BUG_ON(ret > 0); /* Corruption */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001019 leaf = path->nodes[0];
1020 }
1021 btrfs_item_key_to_cpu(leaf, &found_key,
1022 path->slots[0]);
1023 BUG_ON(key.objectid != found_key.objectid);
1024 if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) {
1025 path->slots[0]++;
1026 continue;
1027 }
1028 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1029 struct btrfs_extent_ref_v0);
1030 owner = btrfs_ref_objectid_v0(leaf, ref0);
1031 break;
1032 }
1033 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001034 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001035
1036 if (owner < BTRFS_FIRST_FREE_OBJECTID)
1037 new_size += sizeof(*bi);
1038
1039 new_size -= sizeof(*ei0);
1040 ret = btrfs_search_slot(trans, root, &key, path,
1041 new_size + extra_size, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04001042 if (ret < 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001043 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001044 BUG_ON(ret); /* Corruption */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001045
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00001046 btrfs_extend_item(root, path, new_size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001047
1048 leaf = path->nodes[0];
1049 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1050 btrfs_set_extent_refs(leaf, item, refs);
1051 /* FIXME: get real generation */
1052 btrfs_set_extent_generation(leaf, item, 0);
1053 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1054 btrfs_set_extent_flags(leaf, item,
1055 BTRFS_EXTENT_FLAG_TREE_BLOCK |
1056 BTRFS_BLOCK_FLAG_FULL_BACKREF);
1057 bi = (struct btrfs_tree_block_info *)(item + 1);
1058 /* FIXME: get first key of the block */
1059 memset_extent_buffer(leaf, 0, (unsigned long)bi, sizeof(*bi));
1060 btrfs_set_tree_block_level(leaf, bi, (int)owner);
1061 } else {
1062 btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA);
1063 }
1064 btrfs_mark_buffer_dirty(leaf);
1065 return 0;
1066}
1067#endif
1068
1069static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
1070{
1071 u32 high_crc = ~(u32)0;
1072 u32 low_crc = ~(u32)0;
1073 __le64 lenum;
1074
1075 lenum = cpu_to_le64(root_objectid);
David Woodhouse163e7832009-04-19 13:02:41 +01001076 high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001077 lenum = cpu_to_le64(owner);
David Woodhouse163e7832009-04-19 13:02:41 +01001078 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001079 lenum = cpu_to_le64(offset);
David Woodhouse163e7832009-04-19 13:02:41 +01001080 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001081
1082 return ((u64)high_crc << 31) ^ (u64)low_crc;
1083}
1084
1085static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
1086 struct btrfs_extent_data_ref *ref)
1087{
1088 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
1089 btrfs_extent_data_ref_objectid(leaf, ref),
1090 btrfs_extent_data_ref_offset(leaf, ref));
1091}
1092
1093static int match_extent_data_ref(struct extent_buffer *leaf,
1094 struct btrfs_extent_data_ref *ref,
1095 u64 root_objectid, u64 owner, u64 offset)
1096{
1097 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
1098 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
1099 btrfs_extent_data_ref_offset(leaf, ref) != offset)
1100 return 0;
1101 return 1;
1102}
1103
1104static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
1105 struct btrfs_root *root,
1106 struct btrfs_path *path,
1107 u64 bytenr, u64 parent,
1108 u64 root_objectid,
1109 u64 owner, u64 offset)
1110{
1111 struct btrfs_key key;
1112 struct btrfs_extent_data_ref *ref;
1113 struct extent_buffer *leaf;
1114 u32 nritems;
1115 int ret;
1116 int recow;
1117 int err = -ENOENT;
1118
1119 key.objectid = bytenr;
1120 if (parent) {
1121 key.type = BTRFS_SHARED_DATA_REF_KEY;
1122 key.offset = parent;
1123 } else {
1124 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1125 key.offset = hash_extent_data_ref(root_objectid,
1126 owner, offset);
1127 }
1128again:
1129 recow = 0;
1130 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1131 if (ret < 0) {
1132 err = ret;
1133 goto fail;
1134 }
1135
1136 if (parent) {
1137 if (!ret)
1138 return 0;
1139#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1140 key.type = BTRFS_EXTENT_REF_V0_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02001141 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001142 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1143 if (ret < 0) {
1144 err = ret;
1145 goto fail;
1146 }
1147 if (!ret)
1148 return 0;
1149#endif
1150 goto fail;
Zheng Yan31840ae2008-09-23 13:14:14 -04001151 }
1152
1153 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001154 nritems = btrfs_header_nritems(leaf);
1155 while (1) {
1156 if (path->slots[0] >= nritems) {
1157 ret = btrfs_next_leaf(root, path);
1158 if (ret < 0)
1159 err = ret;
1160 if (ret)
1161 goto fail;
1162
1163 leaf = path->nodes[0];
1164 nritems = btrfs_header_nritems(leaf);
1165 recow = 1;
1166 }
1167
1168 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1169 if (key.objectid != bytenr ||
1170 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1171 goto fail;
1172
1173 ref = btrfs_item_ptr(leaf, path->slots[0],
1174 struct btrfs_extent_data_ref);
1175
1176 if (match_extent_data_ref(leaf, ref, root_objectid,
1177 owner, offset)) {
1178 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001179 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001180 goto again;
1181 }
1182 err = 0;
1183 break;
1184 }
1185 path->slots[0]++;
Zheng Yan31840ae2008-09-23 13:14:14 -04001186 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001187fail:
1188 return err;
Zheng Yan31840ae2008-09-23 13:14:14 -04001189}
1190
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001191static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
1192 struct btrfs_root *root,
1193 struct btrfs_path *path,
1194 u64 bytenr, u64 parent,
1195 u64 root_objectid, u64 owner,
1196 u64 offset, int refs_to_add)
Zheng Yan31840ae2008-09-23 13:14:14 -04001197{
1198 struct btrfs_key key;
1199 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001200 u32 size;
Zheng Yan31840ae2008-09-23 13:14:14 -04001201 u32 num_refs;
1202 int ret;
1203
1204 key.objectid = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001205 if (parent) {
1206 key.type = BTRFS_SHARED_DATA_REF_KEY;
1207 key.offset = parent;
1208 size = sizeof(struct btrfs_shared_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001209 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001210 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1211 key.offset = hash_extent_data_ref(root_objectid,
1212 owner, offset);
1213 size = sizeof(struct btrfs_extent_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001214 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001215
1216 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1217 if (ret && ret != -EEXIST)
1218 goto fail;
1219
1220 leaf = path->nodes[0];
1221 if (parent) {
1222 struct btrfs_shared_data_ref *ref;
1223 ref = btrfs_item_ptr(leaf, path->slots[0],
1224 struct btrfs_shared_data_ref);
1225 if (ret == 0) {
1226 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1227 } else {
1228 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1229 num_refs += refs_to_add;
1230 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
1231 }
1232 } else {
1233 struct btrfs_extent_data_ref *ref;
1234 while (ret == -EEXIST) {
1235 ref = btrfs_item_ptr(leaf, path->slots[0],
1236 struct btrfs_extent_data_ref);
1237 if (match_extent_data_ref(leaf, ref, root_objectid,
1238 owner, offset))
1239 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02001240 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001241 key.offset++;
1242 ret = btrfs_insert_empty_item(trans, root, path, &key,
1243 size);
1244 if (ret && ret != -EEXIST)
1245 goto fail;
1246
1247 leaf = path->nodes[0];
1248 }
1249 ref = btrfs_item_ptr(leaf, path->slots[0],
1250 struct btrfs_extent_data_ref);
1251 if (ret == 0) {
1252 btrfs_set_extent_data_ref_root(leaf, ref,
1253 root_objectid);
1254 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1255 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1256 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1257 } else {
1258 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1259 num_refs += refs_to_add;
1260 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
1261 }
1262 }
1263 btrfs_mark_buffer_dirty(leaf);
1264 ret = 0;
1265fail:
David Sterbab3b4aa72011-04-21 01:20:15 +02001266 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05001267 return ret;
Chris Mason74493f72007-12-11 09:25:06 -05001268}
1269
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001270static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
1271 struct btrfs_root *root,
1272 struct btrfs_path *path,
1273 int refs_to_drop)
Zheng Yan31840ae2008-09-23 13:14:14 -04001274{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001275 struct btrfs_key key;
1276 struct btrfs_extent_data_ref *ref1 = NULL;
1277 struct btrfs_shared_data_ref *ref2 = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -04001278 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001279 u32 num_refs = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04001280 int ret = 0;
1281
1282 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001283 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1284
1285 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1286 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1287 struct btrfs_extent_data_ref);
1288 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1289 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1290 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1291 struct btrfs_shared_data_ref);
1292 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1293#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1294 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1295 struct btrfs_extent_ref_v0 *ref0;
1296 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1297 struct btrfs_extent_ref_v0);
1298 num_refs = btrfs_ref_count_v0(leaf, ref0);
1299#endif
1300 } else {
1301 BUG();
1302 }
1303
Chris Mason56bec292009-03-13 10:10:06 -04001304 BUG_ON(num_refs < refs_to_drop);
1305 num_refs -= refs_to_drop;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001306
Zheng Yan31840ae2008-09-23 13:14:14 -04001307 if (num_refs == 0) {
1308 ret = btrfs_del_item(trans, root, path);
1309 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001310 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1311 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1312 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1313 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
1314#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1315 else {
1316 struct btrfs_extent_ref_v0 *ref0;
1317 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1318 struct btrfs_extent_ref_v0);
1319 btrfs_set_ref_count_v0(leaf, ref0, num_refs);
1320 }
1321#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04001322 btrfs_mark_buffer_dirty(leaf);
1323 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001324 return ret;
1325}
1326
1327static noinline u32 extent_data_ref_count(struct btrfs_root *root,
1328 struct btrfs_path *path,
1329 struct btrfs_extent_inline_ref *iref)
1330{
1331 struct btrfs_key key;
1332 struct extent_buffer *leaf;
1333 struct btrfs_extent_data_ref *ref1;
1334 struct btrfs_shared_data_ref *ref2;
1335 u32 num_refs = 0;
1336
1337 leaf = path->nodes[0];
1338 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1339 if (iref) {
1340 if (btrfs_extent_inline_ref_type(leaf, iref) ==
1341 BTRFS_EXTENT_DATA_REF_KEY) {
1342 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1343 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1344 } else {
1345 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1346 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1347 }
1348 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1349 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1350 struct btrfs_extent_data_ref);
1351 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1352 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1353 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1354 struct btrfs_shared_data_ref);
1355 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1356#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1357 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1358 struct btrfs_extent_ref_v0 *ref0;
1359 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1360 struct btrfs_extent_ref_v0);
1361 num_refs = btrfs_ref_count_v0(leaf, ref0);
1362#endif
1363 } else {
1364 WARN_ON(1);
1365 }
1366 return num_refs;
1367}
1368
1369static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
1370 struct btrfs_root *root,
1371 struct btrfs_path *path,
1372 u64 bytenr, u64 parent,
1373 u64 root_objectid)
1374{
1375 struct btrfs_key key;
1376 int ret;
1377
1378 key.objectid = bytenr;
1379 if (parent) {
1380 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1381 key.offset = parent;
1382 } else {
1383 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1384 key.offset = root_objectid;
1385 }
1386
1387 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1388 if (ret > 0)
1389 ret = -ENOENT;
1390#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1391 if (ret == -ENOENT && parent) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001392 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001393 key.type = BTRFS_EXTENT_REF_V0_KEY;
1394 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1395 if (ret > 0)
1396 ret = -ENOENT;
1397 }
1398#endif
1399 return ret;
1400}
1401
1402static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
1403 struct btrfs_root *root,
1404 struct btrfs_path *path,
1405 u64 bytenr, u64 parent,
1406 u64 root_objectid)
1407{
1408 struct btrfs_key key;
1409 int ret;
1410
1411 key.objectid = bytenr;
1412 if (parent) {
1413 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1414 key.offset = parent;
1415 } else {
1416 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1417 key.offset = root_objectid;
1418 }
1419
1420 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
David Sterbab3b4aa72011-04-21 01:20:15 +02001421 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04001422 return ret;
1423}
1424
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001425static inline int extent_ref_type(u64 parent, u64 owner)
1426{
1427 int type;
1428 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1429 if (parent > 0)
1430 type = BTRFS_SHARED_BLOCK_REF_KEY;
1431 else
1432 type = BTRFS_TREE_BLOCK_REF_KEY;
1433 } else {
1434 if (parent > 0)
1435 type = BTRFS_SHARED_DATA_REF_KEY;
1436 else
1437 type = BTRFS_EXTENT_DATA_REF_KEY;
1438 }
1439 return type;
1440}
1441
Yan Zheng2c47e6052009-06-27 21:07:35 -04001442static int find_next_key(struct btrfs_path *path, int level,
1443 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001444
1445{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001446 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001447 if (!path->nodes[level])
1448 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001449 if (path->slots[level] + 1 >=
1450 btrfs_header_nritems(path->nodes[level]))
1451 continue;
1452 if (level == 0)
1453 btrfs_item_key_to_cpu(path->nodes[level], key,
1454 path->slots[level] + 1);
1455 else
1456 btrfs_node_key_to_cpu(path->nodes[level], key,
1457 path->slots[level] + 1);
1458 return 0;
1459 }
1460 return 1;
1461}
1462
1463/*
1464 * look for inline back ref. if back ref is found, *ref_ret is set
1465 * to the address of inline back ref, and 0 is returned.
1466 *
1467 * if back ref isn't found, *ref_ret is set to the address where it
1468 * should be inserted, and -ENOENT is returned.
1469 *
1470 * if insert is true and there are too many inline back refs, the path
1471 * points to the extent item, and -EAGAIN is returned.
1472 *
1473 * NOTE: inline back refs are ordered in the same way that back ref
1474 * items in the tree are ordered.
1475 */
1476static noinline_for_stack
1477int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
1478 struct btrfs_root *root,
1479 struct btrfs_path *path,
1480 struct btrfs_extent_inline_ref **ref_ret,
1481 u64 bytenr, u64 num_bytes,
1482 u64 parent, u64 root_objectid,
1483 u64 owner, u64 offset, int insert)
1484{
1485 struct btrfs_key key;
1486 struct extent_buffer *leaf;
1487 struct btrfs_extent_item *ei;
1488 struct btrfs_extent_inline_ref *iref;
1489 u64 flags;
1490 u64 item_size;
1491 unsigned long ptr;
1492 unsigned long end;
1493 int extra_size;
1494 int type;
1495 int want;
1496 int ret;
1497 int err = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05001498 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
1499 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001500
1501 key.objectid = bytenr;
1502 key.type = BTRFS_EXTENT_ITEM_KEY;
1503 key.offset = num_bytes;
1504
1505 want = extent_ref_type(parent, owner);
1506 if (insert) {
1507 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001508 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001509 } else
1510 extra_size = -1;
Josef Bacik3173a182013-03-07 14:22:04 -05001511
1512 /*
1513 * Owner is our parent level, so we can just add one to get the level
1514 * for the block we are interested in.
1515 */
1516 if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) {
1517 key.type = BTRFS_METADATA_ITEM_KEY;
1518 key.offset = owner;
1519 }
1520
1521again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001522 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1523 if (ret < 0) {
1524 err = ret;
1525 goto out;
1526 }
Josef Bacik3173a182013-03-07 14:22:04 -05001527
1528 /*
1529 * We may be a newly converted file system which still has the old fat
1530 * extent entries for metadata, so try and see if we have one of those.
1531 */
1532 if (ret > 0 && skinny_metadata) {
1533 skinny_metadata = false;
1534 if (path->slots[0]) {
1535 path->slots[0]--;
1536 btrfs_item_key_to_cpu(path->nodes[0], &key,
1537 path->slots[0]);
1538 if (key.objectid == bytenr &&
1539 key.type == BTRFS_EXTENT_ITEM_KEY &&
1540 key.offset == num_bytes)
1541 ret = 0;
1542 }
1543 if (ret) {
1544 key.type = BTRFS_EXTENT_ITEM_KEY;
1545 key.offset = num_bytes;
1546 btrfs_release_path(path);
1547 goto again;
1548 }
1549 }
1550
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001551 if (ret && !insert) {
1552 err = -ENOENT;
1553 goto out;
Josef Bacik492104c2013-03-08 15:41:02 -05001554 } else if (ret) {
1555 err = -EIO;
1556 WARN_ON(1);
1557 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001558 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001559
1560 leaf = path->nodes[0];
1561 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1562#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1563 if (item_size < sizeof(*ei)) {
1564 if (!insert) {
1565 err = -ENOENT;
1566 goto out;
1567 }
1568 ret = convert_extent_item_v0(trans, root, path, owner,
1569 extra_size);
1570 if (ret < 0) {
1571 err = ret;
1572 goto out;
1573 }
1574 leaf = path->nodes[0];
1575 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1576 }
1577#endif
1578 BUG_ON(item_size < sizeof(*ei));
1579
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001580 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1581 flags = btrfs_extent_flags(leaf, ei);
1582
1583 ptr = (unsigned long)(ei + 1);
1584 end = (unsigned long)ei + item_size;
1585
Josef Bacik3173a182013-03-07 14:22:04 -05001586 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001587 ptr += sizeof(struct btrfs_tree_block_info);
1588 BUG_ON(ptr > end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001589 }
1590
1591 err = -ENOENT;
1592 while (1) {
1593 if (ptr >= end) {
1594 WARN_ON(ptr > end);
1595 break;
1596 }
1597 iref = (struct btrfs_extent_inline_ref *)ptr;
1598 type = btrfs_extent_inline_ref_type(leaf, iref);
1599 if (want < type)
1600 break;
1601 if (want > type) {
1602 ptr += btrfs_extent_inline_ref_size(type);
1603 continue;
1604 }
1605
1606 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1607 struct btrfs_extent_data_ref *dref;
1608 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1609 if (match_extent_data_ref(leaf, dref, root_objectid,
1610 owner, offset)) {
1611 err = 0;
1612 break;
1613 }
1614 if (hash_extent_data_ref_item(leaf, dref) <
1615 hash_extent_data_ref(root_objectid, owner, offset))
1616 break;
1617 } else {
1618 u64 ref_offset;
1619 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1620 if (parent > 0) {
1621 if (parent == ref_offset) {
1622 err = 0;
1623 break;
1624 }
1625 if (ref_offset < parent)
1626 break;
1627 } else {
1628 if (root_objectid == ref_offset) {
1629 err = 0;
1630 break;
1631 }
1632 if (ref_offset < root_objectid)
1633 break;
1634 }
1635 }
1636 ptr += btrfs_extent_inline_ref_size(type);
1637 }
1638 if (err == -ENOENT && insert) {
1639 if (item_size + extra_size >=
1640 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1641 err = -EAGAIN;
1642 goto out;
1643 }
1644 /*
1645 * To add new inline back ref, we have to make sure
1646 * there is no corresponding back ref item.
1647 * For simplicity, we just do not add new inline back
1648 * ref if there is any kind of item for this block
1649 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001650 if (find_next_key(path, 0, &key) == 0 &&
1651 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001652 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001653 err = -EAGAIN;
1654 goto out;
1655 }
1656 }
1657 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1658out:
Yan Zheng85d41982009-06-11 08:51:10 -04001659 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001660 path->keep_locks = 0;
1661 btrfs_unlock_up_safe(path, 1);
1662 }
1663 return err;
1664}
1665
1666/*
1667 * helper to add new inline back ref
1668 */
1669static noinline_for_stack
Tsutomu Itohfd279fa2013-04-16 05:19:11 +00001670void setup_inline_extent_backref(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001671 struct btrfs_path *path,
1672 struct btrfs_extent_inline_ref *iref,
1673 u64 parent, u64 root_objectid,
1674 u64 owner, u64 offset, int refs_to_add,
1675 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001676{
1677 struct extent_buffer *leaf;
1678 struct btrfs_extent_item *ei;
1679 unsigned long ptr;
1680 unsigned long end;
1681 unsigned long item_offset;
1682 u64 refs;
1683 int size;
1684 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001685
1686 leaf = path->nodes[0];
1687 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1688 item_offset = (unsigned long)iref - (unsigned long)ei;
1689
1690 type = extent_ref_type(parent, owner);
1691 size = btrfs_extent_inline_ref_size(type);
1692
Tsutomu Itoh4b90c682013-04-16 05:18:49 +00001693 btrfs_extend_item(root, path, size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001694
1695 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1696 refs = btrfs_extent_refs(leaf, ei);
1697 refs += refs_to_add;
1698 btrfs_set_extent_refs(leaf, ei, refs);
1699 if (extent_op)
1700 __run_delayed_extent_op(extent_op, leaf, ei);
1701
1702 ptr = (unsigned long)ei + item_offset;
1703 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1704 if (ptr < end - size)
1705 memmove_extent_buffer(leaf, ptr + size, ptr,
1706 end - size - ptr);
1707
1708 iref = (struct btrfs_extent_inline_ref *)ptr;
1709 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1710 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1711 struct btrfs_extent_data_ref *dref;
1712 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1713 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1714 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1715 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1716 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1717 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1718 struct btrfs_shared_data_ref *sref;
1719 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1720 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1721 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1722 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1723 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1724 } else {
1725 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1726 }
1727 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001728}
1729
1730static int lookup_extent_backref(struct btrfs_trans_handle *trans,
1731 struct btrfs_root *root,
1732 struct btrfs_path *path,
1733 struct btrfs_extent_inline_ref **ref_ret,
1734 u64 bytenr, u64 num_bytes, u64 parent,
1735 u64 root_objectid, u64 owner, u64 offset)
1736{
1737 int ret;
1738
1739 ret = lookup_inline_extent_backref(trans, root, path, ref_ret,
1740 bytenr, num_bytes, parent,
1741 root_objectid, owner, offset, 0);
1742 if (ret != -ENOENT)
1743 return ret;
1744
David Sterbab3b4aa72011-04-21 01:20:15 +02001745 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001746 *ref_ret = NULL;
1747
1748 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1749 ret = lookup_tree_block_ref(trans, root, path, bytenr, parent,
1750 root_objectid);
1751 } else {
1752 ret = lookup_extent_data_ref(trans, root, path, bytenr, parent,
1753 root_objectid, owner, offset);
1754 }
1755 return ret;
1756}
1757
1758/*
1759 * helper to update/remove inline back ref
1760 */
1761static noinline_for_stack
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001762void update_inline_extent_backref(struct btrfs_root *root,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001763 struct btrfs_path *path,
1764 struct btrfs_extent_inline_ref *iref,
1765 int refs_to_mod,
1766 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001767{
1768 struct extent_buffer *leaf;
1769 struct btrfs_extent_item *ei;
1770 struct btrfs_extent_data_ref *dref = NULL;
1771 struct btrfs_shared_data_ref *sref = NULL;
1772 unsigned long ptr;
1773 unsigned long end;
1774 u32 item_size;
1775 int size;
1776 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001777 u64 refs;
1778
1779 leaf = path->nodes[0];
1780 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1781 refs = btrfs_extent_refs(leaf, ei);
1782 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1783 refs += refs_to_mod;
1784 btrfs_set_extent_refs(leaf, ei, refs);
1785 if (extent_op)
1786 __run_delayed_extent_op(extent_op, leaf, ei);
1787
1788 type = btrfs_extent_inline_ref_type(leaf, iref);
1789
1790 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1791 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1792 refs = btrfs_extent_data_ref_count(leaf, dref);
1793 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1794 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1795 refs = btrfs_shared_data_ref_count(leaf, sref);
1796 } else {
1797 refs = 1;
1798 BUG_ON(refs_to_mod != -1);
1799 }
1800
1801 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1802 refs += refs_to_mod;
1803
1804 if (refs > 0) {
1805 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1806 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1807 else
1808 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1809 } else {
1810 size = btrfs_extent_inline_ref_size(type);
1811 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1812 ptr = (unsigned long)iref;
1813 end = (unsigned long)ei + item_size;
1814 if (ptr + size < end)
1815 memmove_extent_buffer(leaf, ptr, ptr + size,
1816 end - ptr - size);
1817 item_size -= size;
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001818 btrfs_truncate_item(root, path, item_size, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001819 }
1820 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001821}
1822
1823static noinline_for_stack
1824int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
1825 struct btrfs_root *root,
1826 struct btrfs_path *path,
1827 u64 bytenr, u64 num_bytes, u64 parent,
1828 u64 root_objectid, u64 owner,
1829 u64 offset, int refs_to_add,
1830 struct btrfs_delayed_extent_op *extent_op)
1831{
1832 struct btrfs_extent_inline_ref *iref;
1833 int ret;
1834
1835 ret = lookup_inline_extent_backref(trans, root, path, &iref,
1836 bytenr, num_bytes, parent,
1837 root_objectid, owner, offset, 1);
1838 if (ret == 0) {
1839 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001840 update_inline_extent_backref(root, path, iref,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001841 refs_to_add, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001842 } else if (ret == -ENOENT) {
Tsutomu Itohfd279fa2013-04-16 05:19:11 +00001843 setup_inline_extent_backref(root, path, iref, parent,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001844 root_objectid, owner, offset,
1845 refs_to_add, extent_op);
1846 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001847 }
1848 return ret;
1849}
1850
1851static int insert_extent_backref(struct btrfs_trans_handle *trans,
1852 struct btrfs_root *root,
1853 struct btrfs_path *path,
1854 u64 bytenr, u64 parent, u64 root_objectid,
1855 u64 owner, u64 offset, int refs_to_add)
1856{
1857 int ret;
1858 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1859 BUG_ON(refs_to_add != 1);
1860 ret = insert_tree_block_ref(trans, root, path, bytenr,
1861 parent, root_objectid);
1862 } else {
1863 ret = insert_extent_data_ref(trans, root, path, bytenr,
1864 parent, root_objectid,
1865 owner, offset, refs_to_add);
1866 }
1867 return ret;
1868}
1869
1870static int remove_extent_backref(struct btrfs_trans_handle *trans,
1871 struct btrfs_root *root,
1872 struct btrfs_path *path,
1873 struct btrfs_extent_inline_ref *iref,
1874 int refs_to_drop, int is_data)
1875{
Jeff Mahoney143bede2012-03-01 14:56:26 +01001876 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001877
1878 BUG_ON(!is_data && refs_to_drop != 1);
1879 if (iref) {
Tsutomu Itohafe5fea2013-04-16 05:18:22 +00001880 update_inline_extent_backref(root, path, iref,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001881 -refs_to_drop, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001882 } else if (is_data) {
1883 ret = remove_extent_data_ref(trans, root, path, refs_to_drop);
1884 } else {
1885 ret = btrfs_del_item(trans, root, path);
1886 }
1887 return ret;
1888}
1889
Li Dongyang5378e602011-03-24 10:24:27 +00001890static int btrfs_issue_discard(struct block_device *bdev,
Chris Mason15916de2008-11-19 21:17:22 -05001891 u64 start, u64 len)
1892{
Li Dongyang5378e602011-03-24 10:24:27 +00001893 return blkdev_issue_discard(bdev, start >> 9, len >> 9, GFP_NOFS, 0);
Chris Mason15916de2008-11-19 21:17:22 -05001894}
Chris Mason15916de2008-11-19 21:17:22 -05001895
Liu Hui1f3c79a2009-01-05 15:57:51 -05001896static int btrfs_discard_extent(struct btrfs_root *root, u64 bytenr,
Li Dongyang5378e602011-03-24 10:24:27 +00001897 u64 num_bytes, u64 *actual_bytes)
Liu Hui1f3c79a2009-01-05 15:57:51 -05001898{
Liu Hui1f3c79a2009-01-05 15:57:51 -05001899 int ret;
Li Dongyang5378e602011-03-24 10:24:27 +00001900 u64 discarded_bytes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02001901 struct btrfs_bio *bbio = NULL;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001902
Christoph Hellwige244a0a2009-10-14 09:24:59 -04001903
Liu Hui1f3c79a2009-01-05 15:57:51 -05001904 /* Tell the block device(s) that the sectors can be discarded */
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001905 ret = btrfs_map_block(root->fs_info, REQ_DISCARD,
Jan Schmidta1d3c472011-08-04 17:15:33 +02001906 bytenr, &num_bytes, &bbio, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001907 /* Error condition is -ENOMEM */
Liu Hui1f3c79a2009-01-05 15:57:51 -05001908 if (!ret) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02001909 struct btrfs_bio_stripe *stripe = bbio->stripes;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001910 int i;
1911
Liu Hui1f3c79a2009-01-05 15:57:51 -05001912
Jan Schmidta1d3c472011-08-04 17:15:33 +02001913 for (i = 0; i < bbio->num_stripes; i++, stripe++) {
Josef Bacikd5e20032011-08-04 14:52:27 +00001914 if (!stripe->dev->can_discard)
1915 continue;
1916
Li Dongyang5378e602011-03-24 10:24:27 +00001917 ret = btrfs_issue_discard(stripe->dev->bdev,
1918 stripe->physical,
1919 stripe->length);
1920 if (!ret)
1921 discarded_bytes += stripe->length;
1922 else if (ret != -EOPNOTSUPP)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001923 break; /* Logic errors or -ENOMEM, or -EIO but I don't know how that could happen JDM */
Josef Bacikd5e20032011-08-04 14:52:27 +00001924
1925 /*
1926 * Just in case we get back EOPNOTSUPP for some reason,
1927 * just ignore the return value so we don't screw up
1928 * people calling discard_extent.
1929 */
1930 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001931 }
Jan Schmidta1d3c472011-08-04 17:15:33 +02001932 kfree(bbio);
Liu Hui1f3c79a2009-01-05 15:57:51 -05001933 }
Li Dongyang5378e602011-03-24 10:24:27 +00001934
1935 if (actual_bytes)
1936 *actual_bytes = discarded_bytes;
1937
Liu Hui1f3c79a2009-01-05 15:57:51 -05001938
David Woodhouse53b381b2013-01-29 18:40:14 -05001939 if (ret == -EOPNOTSUPP)
1940 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001941 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001942}
1943
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001944/* Can return -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001945int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
1946 struct btrfs_root *root,
1947 u64 bytenr, u64 num_bytes, u64 parent,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001948 u64 root_objectid, u64 owner, u64 offset, int for_cow)
Zheng Yan31840ae2008-09-23 13:14:14 -04001949{
1950 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001951 struct btrfs_fs_info *fs_info = root->fs_info;
1952
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001953 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
1954 root_objectid == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04001955
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001956 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001957 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
1958 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001959 parent, root_objectid, (int)owner,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001960 BTRFS_ADD_DELAYED_REF, NULL, for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001961 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001962 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
1963 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001964 parent, root_objectid, owner, offset,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001965 BTRFS_ADD_DELAYED_REF, NULL, for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001966 }
Zheng Yan31840ae2008-09-23 13:14:14 -04001967 return ret;
1968}
1969
Chris Mason925baed2008-06-25 16:01:30 -04001970static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001971 struct btrfs_root *root,
1972 u64 bytenr, u64 num_bytes,
1973 u64 parent, u64 root_objectid,
1974 u64 owner, u64 offset, int refs_to_add,
1975 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04001976{
Chris Mason5caf2a02007-04-02 11:20:42 -04001977 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001978 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04001979 struct btrfs_extent_item *item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001980 u64 refs;
1981 int ret;
1982 int err = 0;
Chris Mason037e6392007-03-07 11:50:24 -05001983
Chris Mason5caf2a02007-04-02 11:20:42 -04001984 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001985 if (!path)
1986 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04001987
Chris Mason3c12ac72008-04-21 12:01:38 -04001988 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04001989 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001990 /* this will setup the path even if it fails to insert the back ref */
1991 ret = insert_inline_extent_backref(trans, root->fs_info->extent_root,
1992 path, bytenr, num_bytes, parent,
1993 root_objectid, owner, offset,
1994 refs_to_add, extent_op);
1995 if (ret == 0)
1996 goto out;
Zheng Yan31840ae2008-09-23 13:14:14 -04001997
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001998 if (ret != -EAGAIN) {
1999 err = ret;
2000 goto out;
Chris Masonb9473432009-03-13 11:00:37 -04002001 }
Zheng Yan31840ae2008-09-23 13:14:14 -04002002
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002003 leaf = path->nodes[0];
2004 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2005 refs = btrfs_extent_refs(leaf, item);
2006 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
2007 if (extent_op)
2008 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04002009
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002010 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002011 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05002012
Chris Mason3c12ac72008-04-21 12:01:38 -04002013 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04002014 path->leave_spinning = 1;
2015
Chris Mason56bec292009-03-13 10:10:06 -04002016 /* now insert the actual backref */
Zheng Yan31840ae2008-09-23 13:14:14 -04002017 ret = insert_extent_backref(trans, root->fs_info->extent_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002018 path, bytenr, parent, root_objectid,
2019 owner, offset, refs_to_add);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002020 if (ret)
2021 btrfs_abort_transaction(trans, root, ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002022out:
Chris Mason74493f72007-12-11 09:25:06 -05002023 btrfs_free_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002024 return err;
Chris Mason02217ed2007-03-02 16:08:05 -05002025}
2026
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002027static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
2028 struct btrfs_root *root,
2029 struct btrfs_delayed_ref_node *node,
2030 struct btrfs_delayed_extent_op *extent_op,
2031 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04002032{
Chris Mason56bec292009-03-13 10:10:06 -04002033 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002034 struct btrfs_delayed_data_ref *ref;
2035 struct btrfs_key ins;
2036 u64 parent = 0;
2037 u64 ref_root = 0;
2038 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002039
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002040 ins.objectid = node->bytenr;
2041 ins.offset = node->num_bytes;
2042 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04002043
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002044 ref = btrfs_delayed_node_to_data_ref(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002045 trace_run_delayed_data_ref(node, ref, node->action);
2046
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002047 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
2048 parent = ref->parent;
2049 else
2050 ref_root = ref->root;
2051
2052 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002053 if (extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002054 flags |= extent_op->flags_to_set;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002055 ret = alloc_reserved_file_extent(trans, root,
2056 parent, ref_root, flags,
2057 ref->objectid, ref->offset,
2058 &ins, node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002059 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
2060 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
2061 node->num_bytes, parent,
2062 ref_root, ref->objectid,
2063 ref->offset, node->ref_mod,
2064 extent_op);
2065 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
2066 ret = __btrfs_free_extent(trans, root, node->bytenr,
2067 node->num_bytes, parent,
2068 ref_root, ref->objectid,
2069 ref->offset, node->ref_mod,
2070 extent_op);
2071 } else {
2072 BUG();
2073 }
Chris Mason56bec292009-03-13 10:10:06 -04002074 return ret;
2075}
2076
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002077static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
2078 struct extent_buffer *leaf,
2079 struct btrfs_extent_item *ei)
2080{
2081 u64 flags = btrfs_extent_flags(leaf, ei);
2082 if (extent_op->update_flags) {
2083 flags |= extent_op->flags_to_set;
2084 btrfs_set_extent_flags(leaf, ei, flags);
2085 }
2086
2087 if (extent_op->update_key) {
2088 struct btrfs_tree_block_info *bi;
2089 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
2090 bi = (struct btrfs_tree_block_info *)(ei + 1);
2091 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
2092 }
2093}
2094
2095static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
2096 struct btrfs_root *root,
2097 struct btrfs_delayed_ref_node *node,
2098 struct btrfs_delayed_extent_op *extent_op)
2099{
2100 struct btrfs_key key;
2101 struct btrfs_path *path;
2102 struct btrfs_extent_item *ei;
2103 struct extent_buffer *leaf;
2104 u32 item_size;
2105 int ret;
2106 int err = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002107 int metadata = !extent_op->is_data;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002108
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002109 if (trans->aborted)
2110 return 0;
2111
Josef Bacik3173a182013-03-07 14:22:04 -05002112 if (metadata && !btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2113 metadata = 0;
2114
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002115 path = btrfs_alloc_path();
2116 if (!path)
2117 return -ENOMEM;
2118
2119 key.objectid = node->bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002120
Josef Bacik3173a182013-03-07 14:22:04 -05002121 if (metadata) {
Josef Bacik3173a182013-03-07 14:22:04 -05002122 key.type = BTRFS_METADATA_ITEM_KEY;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002123 key.offset = extent_op->level;
Josef Bacik3173a182013-03-07 14:22:04 -05002124 } else {
2125 key.type = BTRFS_EXTENT_ITEM_KEY;
2126 key.offset = node->num_bytes;
2127 }
2128
2129again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002130 path->reada = 1;
2131 path->leave_spinning = 1;
2132 ret = btrfs_search_slot(trans, root->fs_info->extent_root, &key,
2133 path, 0, 1);
2134 if (ret < 0) {
2135 err = ret;
2136 goto out;
2137 }
2138 if (ret > 0) {
Josef Bacik3173a182013-03-07 14:22:04 -05002139 if (metadata) {
2140 btrfs_release_path(path);
2141 metadata = 0;
2142
2143 key.offset = node->num_bytes;
2144 key.type = BTRFS_EXTENT_ITEM_KEY;
2145 goto again;
2146 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002147 err = -EIO;
2148 goto out;
2149 }
2150
2151 leaf = path->nodes[0];
2152 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2153#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2154 if (item_size < sizeof(*ei)) {
2155 ret = convert_extent_item_v0(trans, root->fs_info->extent_root,
2156 path, (u64)-1, 0);
2157 if (ret < 0) {
2158 err = ret;
2159 goto out;
2160 }
2161 leaf = path->nodes[0];
2162 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2163 }
2164#endif
2165 BUG_ON(item_size < sizeof(*ei));
2166 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2167 __run_delayed_extent_op(extent_op, leaf, ei);
2168
2169 btrfs_mark_buffer_dirty(leaf);
2170out:
2171 btrfs_free_path(path);
2172 return err;
2173}
2174
2175static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
2176 struct btrfs_root *root,
2177 struct btrfs_delayed_ref_node *node,
2178 struct btrfs_delayed_extent_op *extent_op,
2179 int insert_reserved)
2180{
2181 int ret = 0;
2182 struct btrfs_delayed_tree_ref *ref;
2183 struct btrfs_key ins;
2184 u64 parent = 0;
2185 u64 ref_root = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002186 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
2187 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002188
2189 ref = btrfs_delayed_node_to_tree_ref(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002190 trace_run_delayed_tree_ref(node, ref, node->action);
2191
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002192 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2193 parent = ref->parent;
2194 else
2195 ref_root = ref->root;
2196
Josef Bacik3173a182013-03-07 14:22:04 -05002197 ins.objectid = node->bytenr;
2198 if (skinny_metadata) {
2199 ins.offset = ref->level;
2200 ins.type = BTRFS_METADATA_ITEM_KEY;
2201 } else {
2202 ins.offset = node->num_bytes;
2203 ins.type = BTRFS_EXTENT_ITEM_KEY;
2204 }
2205
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002206 BUG_ON(node->ref_mod != 1);
2207 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002208 BUG_ON(!extent_op || !extent_op->update_flags);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002209 ret = alloc_reserved_tree_block(trans, root,
2210 parent, ref_root,
2211 extent_op->flags_to_set,
2212 &extent_op->key,
2213 ref->level, &ins);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002214 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
2215 ret = __btrfs_inc_extent_ref(trans, root, node->bytenr,
2216 node->num_bytes, parent, ref_root,
2217 ref->level, 0, 1, extent_op);
2218 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
2219 ret = __btrfs_free_extent(trans, root, node->bytenr,
2220 node->num_bytes, parent, ref_root,
2221 ref->level, 0, 1, extent_op);
2222 } else {
2223 BUG();
2224 }
2225 return ret;
2226}
2227
Chris Mason56bec292009-03-13 10:10:06 -04002228/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002229static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
2230 struct btrfs_root *root,
2231 struct btrfs_delayed_ref_node *node,
2232 struct btrfs_delayed_extent_op *extent_op,
2233 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002234{
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002235 int ret = 0;
2236
2237 if (trans->aborted)
2238 return 0;
2239
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002240 if (btrfs_delayed_ref_is_head(node)) {
Chris Mason56bec292009-03-13 10:10:06 -04002241 struct btrfs_delayed_ref_head *head;
2242 /*
2243 * we've hit the end of the chain and we were supposed
2244 * to insert this extent into the tree. But, it got
2245 * deleted before we ever needed to insert it, so all
2246 * we have to do is clean up the accounting
2247 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002248 BUG_ON(extent_op);
2249 head = btrfs_delayed_node_to_head(node);
Liu Bo599c75e2013-07-16 19:03:36 +08002250 trace_run_delayed_ref_head(node, head, node->action);
2251
Chris Mason56bec292009-03-13 10:10:06 -04002252 if (insert_reserved) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04002253 btrfs_pin_extent(root, node->bytenr,
2254 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002255 if (head->is_data) {
2256 ret = btrfs_del_csums(trans, root,
2257 node->bytenr,
2258 node->num_bytes);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002259 }
Chris Mason56bec292009-03-13 10:10:06 -04002260 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002261 return ret;
Chris Mason56bec292009-03-13 10:10:06 -04002262 }
Josef Bacikeb099672009-02-12 09:27:38 -05002263
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002264 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2265 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2266 ret = run_delayed_tree_ref(trans, root, node, extent_op,
2267 insert_reserved);
2268 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2269 node->type == BTRFS_SHARED_DATA_REF_KEY)
2270 ret = run_delayed_data_ref(trans, root, node, extent_op,
2271 insert_reserved);
2272 else
2273 BUG();
2274 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002275}
2276
Chris Mason56bec292009-03-13 10:10:06 -04002277static noinline struct btrfs_delayed_ref_node *
2278select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002279{
Chris Mason56bec292009-03-13 10:10:06 -04002280 struct rb_node *node;
2281 struct btrfs_delayed_ref_node *ref;
2282 int action = BTRFS_ADD_DELAYED_REF;
2283again:
2284 /*
2285 * select delayed ref of type BTRFS_ADD_DELAYED_REF first.
2286 * this prevents ref count from going down to zero when
2287 * there still are pending delayed ref.
2288 */
2289 node = rb_prev(&head->node.rb_node);
2290 while (1) {
2291 if (!node)
2292 break;
2293 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2294 rb_node);
2295 if (ref->bytenr != head->node.bytenr)
2296 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002297 if (ref->action == action)
Chris Mason56bec292009-03-13 10:10:06 -04002298 return ref;
2299 node = rb_prev(node);
Chris Mason5f39d392007-10-15 16:14:19 -04002300 }
Chris Mason56bec292009-03-13 10:10:06 -04002301 if (action == BTRFS_ADD_DELAYED_REF) {
2302 action = BTRFS_DROP_DELAYED_REF;
2303 goto again;
2304 }
2305 return NULL;
2306}
2307
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002308/*
2309 * Returns 0 on success or if called with an already aborted transaction.
2310 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2311 */
Chris Masonc3e69d52009-03-13 10:17:05 -04002312static noinline int run_clustered_refs(struct btrfs_trans_handle *trans,
2313 struct btrfs_root *root,
2314 struct list_head *cluster)
Chris Mason56bec292009-03-13 10:10:06 -04002315{
Chris Mason56bec292009-03-13 10:10:06 -04002316 struct btrfs_delayed_ref_root *delayed_refs;
2317 struct btrfs_delayed_ref_node *ref;
2318 struct btrfs_delayed_ref_head *locked_ref = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002319 struct btrfs_delayed_extent_op *extent_op;
Jan Schmidt097b8a72012-06-21 11:08:04 +02002320 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason56bec292009-03-13 10:10:06 -04002321 int ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04002322 int count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002323 int must_insert_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002324
2325 delayed_refs = &trans->transaction->delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002326 while (1) {
2327 if (!locked_ref) {
Chris Masonc3e69d52009-03-13 10:17:05 -04002328 /* pick a new head ref from the cluster list */
2329 if (list_empty(cluster))
Chris Mason56bec292009-03-13 10:10:06 -04002330 break;
Chris Mason56bec292009-03-13 10:10:06 -04002331
Chris Masonc3e69d52009-03-13 10:17:05 -04002332 locked_ref = list_entry(cluster->next,
2333 struct btrfs_delayed_ref_head, cluster);
2334
2335 /* grab the lock that says we are going to process
2336 * all the refs for this head */
2337 ret = btrfs_delayed_ref_lock(trans, locked_ref);
2338
2339 /*
2340 * we may have dropped the spin lock to get the head
2341 * mutex lock, and that might have given someone else
2342 * time to free the head. If that's true, it has been
2343 * removed from our list and we can move on.
2344 */
2345 if (ret == -EAGAIN) {
2346 locked_ref = NULL;
2347 count++;
2348 continue;
Chris Mason56bec292009-03-13 10:10:06 -04002349 }
2350 }
2351
2352 /*
Josef Bacikae1e2062012-08-07 16:00:32 -04002353 * We need to try and merge add/drops of the same ref since we
2354 * can run into issues with relocate dropping the implicit ref
2355 * and then it being added back again before the drop can
2356 * finish. If we merged anything we need to re-loop so we can
2357 * get a good ref.
2358 */
2359 btrfs_merge_delayed_refs(trans, fs_info, delayed_refs,
2360 locked_ref);
2361
2362 /*
Arne Jansend1270cd2011-09-13 15:16:43 +02002363 * locked_ref is the head node, so we have to go one
2364 * node back for any delayed ref updates
2365 */
2366 ref = select_delayed_ref(locked_ref);
2367
2368 if (ref && ref->seq &&
Jan Schmidt097b8a72012-06-21 11:08:04 +02002369 btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) {
Arne Jansend1270cd2011-09-13 15:16:43 +02002370 /*
2371 * there are still refs with lower seq numbers in the
2372 * process of being added. Don't run this ref yet.
2373 */
2374 list_del_init(&locked_ref->cluster);
Miao Xie093486c2012-12-19 08:10:10 +00002375 btrfs_delayed_ref_unlock(locked_ref);
Arne Jansend1270cd2011-09-13 15:16:43 +02002376 locked_ref = NULL;
2377 delayed_refs->num_heads_ready++;
2378 spin_unlock(&delayed_refs->lock);
2379 cond_resched();
2380 spin_lock(&delayed_refs->lock);
2381 continue;
2382 }
2383
2384 /*
Chris Mason56bec292009-03-13 10:10:06 -04002385 * record the must insert reserved flag before we
2386 * drop the spin lock.
2387 */
2388 must_insert_reserved = locked_ref->must_insert_reserved;
2389 locked_ref->must_insert_reserved = 0;
2390
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002391 extent_op = locked_ref->extent_op;
2392 locked_ref->extent_op = NULL;
2393
Chris Mason56bec292009-03-13 10:10:06 -04002394 if (!ref) {
2395 /* All delayed refs have been processed, Go ahead
2396 * and send the head node to run_one_delayed_ref,
2397 * so that any accounting fixes can happen
2398 */
2399 ref = &locked_ref->node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002400
2401 if (extent_op && must_insert_reserved) {
Miao Xie78a61842012-11-21 02:21:28 +00002402 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002403 extent_op = NULL;
2404 }
2405
2406 if (extent_op) {
2407 spin_unlock(&delayed_refs->lock);
2408
2409 ret = run_delayed_extent_op(trans, root,
2410 ref, extent_op);
Miao Xie78a61842012-11-21 02:21:28 +00002411 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002412
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002413 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002414 btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret);
Dan Carpenter253beeb2012-04-18 09:59:03 +03002415 spin_lock(&delayed_refs->lock);
Miao Xie093486c2012-12-19 08:10:10 +00002416 btrfs_delayed_ref_unlock(locked_ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002417 return ret;
2418 }
2419
Chris Mason203bf282012-01-06 15:23:57 -05002420 goto next;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002421 }
Chris Mason56bec292009-03-13 10:10:06 -04002422 }
2423
2424 ref->in_tree = 0;
2425 rb_erase(&ref->rb_node, &delayed_refs->root);
2426 delayed_refs->num_entries--;
Miao Xie093486c2012-12-19 08:10:10 +00002427 if (!btrfs_delayed_ref_is_head(ref)) {
Arne Jansen22cd2e72012-08-09 00:16:53 -06002428 /*
2429 * when we play the delayed ref, also correct the
2430 * ref_mod on head
2431 */
2432 switch (ref->action) {
2433 case BTRFS_ADD_DELAYED_REF:
2434 case BTRFS_ADD_DELAYED_EXTENT:
2435 locked_ref->node.ref_mod -= ref->ref_mod;
2436 break;
2437 case BTRFS_DROP_DELAYED_REF:
2438 locked_ref->node.ref_mod += ref->ref_mod;
2439 break;
2440 default:
2441 WARN_ON(1);
2442 }
Josef Bacikb8d0c692013-08-22 17:03:29 -04002443 } else {
2444 list_del_init(&locked_ref->cluster);
Arne Jansen22cd2e72012-08-09 00:16:53 -06002445 }
Chris Mason56bec292009-03-13 10:10:06 -04002446 spin_unlock(&delayed_refs->lock);
2447
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002448 ret = run_one_delayed_ref(trans, root, ref, extent_op,
Chris Mason56bec292009-03-13 10:10:06 -04002449 must_insert_reserved);
Chris Mason56bec292009-03-13 10:10:06 -04002450
Miao Xie78a61842012-11-21 02:21:28 +00002451 btrfs_free_delayed_extent_op(extent_op);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002452 if (ret) {
Miao Xie093486c2012-12-19 08:10:10 +00002453 btrfs_delayed_ref_unlock(locked_ref);
2454 btrfs_put_delayed_ref(ref);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002455 btrfs_debug(fs_info, "run_one_delayed_ref returned %d", ret);
Dan Carpenter253beeb2012-04-18 09:59:03 +03002456 spin_lock(&delayed_refs->lock);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002457 return ret;
2458 }
2459
Miao Xie093486c2012-12-19 08:10:10 +00002460 /*
2461 * If this node is a head, that means all the refs in this head
2462 * have been dealt with, and we will pick the next head to deal
2463 * with, so we must unlock the head and drop it from the cluster
2464 * list before we release it.
2465 */
2466 if (btrfs_delayed_ref_is_head(ref)) {
Miao Xie093486c2012-12-19 08:10:10 +00002467 btrfs_delayed_ref_unlock(locked_ref);
2468 locked_ref = NULL;
2469 }
2470 btrfs_put_delayed_ref(ref);
2471 count++;
Chris Mason203bf282012-01-06 15:23:57 -05002472next:
Chris Mason1887be62009-03-13 10:11:24 -04002473 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002474 spin_lock(&delayed_refs->lock);
2475 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002476 return count;
2477}
2478
Arne Jansen709c0482011-09-12 12:22:57 +02002479#ifdef SCRAMBLE_DELAYED_REFS
2480/*
2481 * Normally delayed refs get processed in ascending bytenr order. This
2482 * correlates in most cases to the order added. To expose dependencies on this
2483 * order, we start to process the tree in the middle instead of the beginning
2484 */
2485static u64 find_middle(struct rb_root *root)
2486{
2487 struct rb_node *n = root->rb_node;
2488 struct btrfs_delayed_ref_node *entry;
2489 int alt = 1;
2490 u64 middle;
2491 u64 first = 0, last = 0;
2492
2493 n = rb_first(root);
2494 if (n) {
2495 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2496 first = entry->bytenr;
2497 }
2498 n = rb_last(root);
2499 if (n) {
2500 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2501 last = entry->bytenr;
2502 }
2503 n = root->rb_node;
2504
2505 while (n) {
2506 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2507 WARN_ON(!entry->in_tree);
2508
2509 middle = entry->bytenr;
2510
2511 if (alt)
2512 n = n->rb_left;
2513 else
2514 n = n->rb_right;
2515
2516 alt = 1 - alt;
2517 }
2518 return middle;
2519}
2520#endif
2521
Arne Jansenbed92ea2012-06-28 18:03:02 +02002522int btrfs_delayed_refs_qgroup_accounting(struct btrfs_trans_handle *trans,
2523 struct btrfs_fs_info *fs_info)
2524{
2525 struct qgroup_update *qgroup_update;
2526 int ret = 0;
2527
2528 if (list_empty(&trans->qgroup_ref_list) !=
2529 !trans->delayed_ref_elem.seq) {
2530 /* list without seq or seq without list */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00002531 btrfs_err(fs_info,
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +00002532 "qgroup accounting update error, list is%s empty, seq is %#x.%x",
Arne Jansenbed92ea2012-06-28 18:03:02 +02002533 list_empty(&trans->qgroup_ref_list) ? "" : " not",
Jan Schmidtfc36ed7e2013-04-24 16:57:33 +00002534 (u32)(trans->delayed_ref_elem.seq >> 32),
2535 (u32)trans->delayed_ref_elem.seq);
Arne Jansenbed92ea2012-06-28 18:03:02 +02002536 BUG();
2537 }
2538
2539 if (!trans->delayed_ref_elem.seq)
2540 return 0;
2541
2542 while (!list_empty(&trans->qgroup_ref_list)) {
2543 qgroup_update = list_first_entry(&trans->qgroup_ref_list,
2544 struct qgroup_update, list);
2545 list_del(&qgroup_update->list);
2546 if (!ret)
2547 ret = btrfs_qgroup_account_ref(
2548 trans, fs_info, qgroup_update->node,
2549 qgroup_update->extent_op);
2550 kfree(qgroup_update);
2551 }
2552
2553 btrfs_put_tree_mod_seq(fs_info, &trans->delayed_ref_elem);
2554
2555 return ret;
2556}
2557
Chris Masonbb721702013-01-29 18:44:12 -05002558static int refs_newer(struct btrfs_delayed_ref_root *delayed_refs, int seq,
2559 int count)
2560{
2561 int val = atomic_read(&delayed_refs->ref_seq);
2562
2563 if (val < seq || val >= seq + count)
2564 return 1;
2565 return 0;
2566}
2567
Josef Bacik1be41b72013-06-12 13:56:06 -04002568static inline u64 heads_to_leaves(struct btrfs_root *root, u64 heads)
2569{
2570 u64 num_bytes;
2571
2572 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2573 sizeof(struct btrfs_extent_inline_ref));
2574 if (!btrfs_fs_incompat(root->fs_info, SKINNY_METADATA))
2575 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2576
2577 /*
2578 * We don't ever fill up leaves all the way so multiply by 2 just to be
2579 * closer to what we're really going to want to ouse.
2580 */
2581 return div64_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(root));
2582}
2583
2584int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans,
2585 struct btrfs_root *root)
2586{
2587 struct btrfs_block_rsv *global_rsv;
2588 u64 num_heads = trans->transaction->delayed_refs.num_heads_ready;
2589 u64 num_bytes;
2590 int ret = 0;
2591
2592 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
2593 num_heads = heads_to_leaves(root, num_heads);
2594 if (num_heads > 1)
2595 num_bytes += (num_heads - 1) * root->leafsize;
2596 num_bytes <<= 1;
2597 global_rsv = &root->fs_info->global_block_rsv;
2598
2599 /*
2600 * If we can't allocate any more chunks lets make sure we have _lots_ of
2601 * wiggle room since running delayed refs can create more delayed refs.
2602 */
2603 if (global_rsv->space_info->full)
2604 num_bytes <<= 1;
2605
2606 spin_lock(&global_rsv->lock);
2607 if (global_rsv->reserved <= num_bytes)
2608 ret = 1;
2609 spin_unlock(&global_rsv->lock);
2610 return ret;
2611}
2612
Chris Masonc3e69d52009-03-13 10:17:05 -04002613/*
2614 * this starts processing the delayed reference count updates and
2615 * extent insertions we have queued up so far. count can be
2616 * 0, which means to process everything in the tree at the start
2617 * of the run (but not newly added entries), or it can be some target
2618 * number you'd like to process.
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002619 *
2620 * Returns 0 on success or if called with an aborted transaction
2621 * Returns <0 on error and aborts the transaction
Chris Masonc3e69d52009-03-13 10:17:05 -04002622 */
2623int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2624 struct btrfs_root *root, unsigned long count)
2625{
2626 struct rb_node *node;
2627 struct btrfs_delayed_ref_root *delayed_refs;
2628 struct btrfs_delayed_ref_node *ref;
2629 struct list_head cluster;
2630 int ret;
Jan Schmidta1686502011-12-12 16:10:07 +01002631 u64 delayed_start;
Chris Masonc3e69d52009-03-13 10:17:05 -04002632 int run_all = count == (unsigned long)-1;
2633 int run_most = 0;
Arne Jansen1fa11e22012-08-06 14:18:51 -06002634 int loops;
Chris Masonc3e69d52009-03-13 10:17:05 -04002635
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002636 /* We'll clean this up in btrfs_cleanup_transaction */
2637 if (trans->aborted)
2638 return 0;
2639
Chris Masonc3e69d52009-03-13 10:17:05 -04002640 if (root == root->fs_info->extent_root)
2641 root = root->fs_info->tree_root;
2642
Jan Schmidtedf39272012-06-28 18:04:55 +02002643 btrfs_delayed_refs_qgroup_accounting(trans, root->fs_info);
2644
Chris Masonc3e69d52009-03-13 10:17:05 -04002645 delayed_refs = &trans->transaction->delayed_refs;
2646 INIT_LIST_HEAD(&cluster);
Chris Masonbb721702013-01-29 18:44:12 -05002647 if (count == 0) {
2648 count = delayed_refs->num_entries * 2;
2649 run_most = 1;
2650 }
2651
2652 if (!run_all && !run_most) {
2653 int old;
2654 int seq = atomic_read(&delayed_refs->ref_seq);
2655
2656progress:
2657 old = atomic_cmpxchg(&delayed_refs->procs_running_refs, 0, 1);
2658 if (old) {
2659 DEFINE_WAIT(__wait);
Josef Bacik1be41b72013-06-12 13:56:06 -04002660 if (delayed_refs->flushing ||
2661 !btrfs_should_throttle_delayed_refs(trans, root))
Chris Masonbb721702013-01-29 18:44:12 -05002662 return 0;
2663
2664 prepare_to_wait(&delayed_refs->wait, &__wait,
2665 TASK_UNINTERRUPTIBLE);
2666
2667 old = atomic_cmpxchg(&delayed_refs->procs_running_refs, 0, 1);
2668 if (old) {
2669 schedule();
2670 finish_wait(&delayed_refs->wait, &__wait);
2671
2672 if (!refs_newer(delayed_refs, seq, 256))
2673 goto progress;
2674 else
2675 return 0;
2676 } else {
2677 finish_wait(&delayed_refs->wait, &__wait);
2678 goto again;
2679 }
2680 }
2681
2682 } else {
2683 atomic_inc(&delayed_refs->procs_running_refs);
2684 }
2685
Chris Masonc3e69d52009-03-13 10:17:05 -04002686again:
Arne Jansen1fa11e22012-08-06 14:18:51 -06002687 loops = 0;
Chris Masonc3e69d52009-03-13 10:17:05 -04002688 spin_lock(&delayed_refs->lock);
Jan Schmidt097b8a72012-06-21 11:08:04 +02002689
Arne Jansen709c0482011-09-12 12:22:57 +02002690#ifdef SCRAMBLE_DELAYED_REFS
2691 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
2692#endif
2693
Chris Masonc3e69d52009-03-13 10:17:05 -04002694 while (1) {
2695 if (!(run_all || run_most) &&
Josef Bacik1be41b72013-06-12 13:56:06 -04002696 !btrfs_should_throttle_delayed_refs(trans, root))
Chris Masonc3e69d52009-03-13 10:17:05 -04002697 break;
2698
2699 /*
2700 * go find something we can process in the rbtree. We start at
2701 * the beginning of the tree, and then build a cluster
2702 * of refs to process starting at the first one we are able to
2703 * lock
2704 */
Jan Schmidta1686502011-12-12 16:10:07 +01002705 delayed_start = delayed_refs->run_delayed_start;
Chris Masonc3e69d52009-03-13 10:17:05 -04002706 ret = btrfs_find_ref_cluster(trans, &cluster,
2707 delayed_refs->run_delayed_start);
2708 if (ret)
2709 break;
2710
2711 ret = run_clustered_refs(trans, root, &cluster);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002712 if (ret < 0) {
Miao Xie093486c2012-12-19 08:10:10 +00002713 btrfs_release_ref_cluster(&cluster);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002714 spin_unlock(&delayed_refs->lock);
2715 btrfs_abort_transaction(trans, root, ret);
Chris Masonbb721702013-01-29 18:44:12 -05002716 atomic_dec(&delayed_refs->procs_running_refs);
Josef Bacikf971fe22013-06-10 11:52:32 -04002717 wake_up(&delayed_refs->wait);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002718 return ret;
2719 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002720
Chris Masonbb721702013-01-29 18:44:12 -05002721 atomic_add(ret, &delayed_refs->ref_seq);
2722
Chris Masonc3e69d52009-03-13 10:17:05 -04002723 count -= min_t(unsigned long, ret, count);
2724
2725 if (count == 0)
2726 break;
Jan Schmidta1686502011-12-12 16:10:07 +01002727
Arne Jansen1fa11e22012-08-06 14:18:51 -06002728 if (delayed_start >= delayed_refs->run_delayed_start) {
2729 if (loops == 0) {
2730 /*
2731 * btrfs_find_ref_cluster looped. let's do one
2732 * more cycle. if we don't run any delayed ref
2733 * during that cycle (because we can't because
2734 * all of them are blocked), bail out.
2735 */
2736 loops = 1;
2737 } else {
2738 /*
2739 * no runnable refs left, stop trying
2740 */
2741 BUG_ON(run_all);
2742 break;
2743 }
2744 }
2745 if (ret) {
Jan Schmidta1686502011-12-12 16:10:07 +01002746 /* refs were run, let's reset staleness detection */
Arne Jansen1fa11e22012-08-06 14:18:51 -06002747 loops = 0;
Jan Schmidta1686502011-12-12 16:10:07 +01002748 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002749 }
2750
Chris Mason56bec292009-03-13 10:10:06 -04002751 if (run_all) {
Josef Bacikea658ba2012-09-11 16:57:25 -04002752 if (!list_empty(&trans->new_bgs)) {
2753 spin_unlock(&delayed_refs->lock);
2754 btrfs_create_pending_block_groups(trans, root);
2755 spin_lock(&delayed_refs->lock);
2756 }
2757
Chris Mason56bec292009-03-13 10:10:06 -04002758 node = rb_first(&delayed_refs->root);
Chris Masonc3e69d52009-03-13 10:17:05 -04002759 if (!node)
Chris Mason56bec292009-03-13 10:10:06 -04002760 goto out;
Chris Masonc3e69d52009-03-13 10:17:05 -04002761 count = (unsigned long)-1;
Chris Mason56bec292009-03-13 10:10:06 -04002762
2763 while (node) {
2764 ref = rb_entry(node, struct btrfs_delayed_ref_node,
2765 rb_node);
2766 if (btrfs_delayed_ref_is_head(ref)) {
2767 struct btrfs_delayed_ref_head *head;
2768
2769 head = btrfs_delayed_node_to_head(ref);
2770 atomic_inc(&ref->refs);
2771
2772 spin_unlock(&delayed_refs->lock);
David Sterba8cc33e52011-05-02 15:29:25 +02002773 /*
2774 * Mutex was contended, block until it's
2775 * released and try again
2776 */
Chris Mason56bec292009-03-13 10:10:06 -04002777 mutex_lock(&head->mutex);
2778 mutex_unlock(&head->mutex);
2779
2780 btrfs_put_delayed_ref(ref);
Chris Mason1887be62009-03-13 10:11:24 -04002781 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002782 goto again;
2783 }
2784 node = rb_next(node);
2785 }
2786 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002787 schedule_timeout(1);
2788 goto again;
2789 }
Chris Mason54aa1f42007-06-22 14:16:25 -04002790out:
Chris Masonbb721702013-01-29 18:44:12 -05002791 atomic_dec(&delayed_refs->procs_running_refs);
2792 smp_mb();
2793 if (waitqueue_active(&delayed_refs->wait))
2794 wake_up(&delayed_refs->wait);
2795
Chris Masonc3e69d52009-03-13 10:17:05 -04002796 spin_unlock(&delayed_refs->lock);
Jan Schmidtedf39272012-06-28 18:04:55 +02002797 assert_qgroups_uptodate(trans);
Chris Masona28ec192007-03-06 20:08:01 -05002798 return 0;
2799}
2800
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002801int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
2802 struct btrfs_root *root,
2803 u64 bytenr, u64 num_bytes, u64 flags,
Josef Bacikb1c79e02013-05-09 13:49:30 -04002804 int level, int is_data)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002805{
2806 struct btrfs_delayed_extent_op *extent_op;
2807 int ret;
2808
Miao Xie78a61842012-11-21 02:21:28 +00002809 extent_op = btrfs_alloc_delayed_extent_op();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002810 if (!extent_op)
2811 return -ENOMEM;
2812
2813 extent_op->flags_to_set = flags;
2814 extent_op->update_flags = 1;
2815 extent_op->update_key = 0;
2816 extent_op->is_data = is_data ? 1 : 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002817 extent_op->level = level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002818
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002819 ret = btrfs_add_delayed_extent_op(root->fs_info, trans, bytenr,
2820 num_bytes, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002821 if (ret)
Miao Xie78a61842012-11-21 02:21:28 +00002822 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002823 return ret;
2824}
2825
2826static noinline int check_delayed_ref(struct btrfs_trans_handle *trans,
2827 struct btrfs_root *root,
2828 struct btrfs_path *path,
2829 u64 objectid, u64 offset, u64 bytenr)
2830{
2831 struct btrfs_delayed_ref_head *head;
2832 struct btrfs_delayed_ref_node *ref;
2833 struct btrfs_delayed_data_ref *data_ref;
2834 struct btrfs_delayed_ref_root *delayed_refs;
2835 struct rb_node *node;
2836 int ret = 0;
2837
2838 ret = -ENOENT;
2839 delayed_refs = &trans->transaction->delayed_refs;
2840 spin_lock(&delayed_refs->lock);
2841 head = btrfs_find_delayed_ref_head(trans, bytenr);
2842 if (!head)
2843 goto out;
2844
2845 if (!mutex_trylock(&head->mutex)) {
2846 atomic_inc(&head->node.refs);
2847 spin_unlock(&delayed_refs->lock);
2848
David Sterbab3b4aa72011-04-21 01:20:15 +02002849 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002850
David Sterba8cc33e52011-05-02 15:29:25 +02002851 /*
2852 * Mutex was contended, block until it's released and let
2853 * caller try again
2854 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002855 mutex_lock(&head->mutex);
2856 mutex_unlock(&head->mutex);
2857 btrfs_put_delayed_ref(&head->node);
2858 return -EAGAIN;
2859 }
2860
2861 node = rb_prev(&head->node.rb_node);
2862 if (!node)
2863 goto out_unlock;
2864
2865 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
2866
2867 if (ref->bytenr != bytenr)
2868 goto out_unlock;
2869
2870 ret = 1;
2871 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY)
2872 goto out_unlock;
2873
2874 data_ref = btrfs_delayed_node_to_data_ref(ref);
2875
2876 node = rb_prev(node);
2877 if (node) {
Liu Bodf57dbe2012-07-23 05:50:03 -06002878 int seq = ref->seq;
2879
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002880 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
Liu Bodf57dbe2012-07-23 05:50:03 -06002881 if (ref->bytenr == bytenr && ref->seq == seq)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002882 goto out_unlock;
2883 }
2884
2885 if (data_ref->root != root->root_key.objectid ||
2886 data_ref->objectid != objectid || data_ref->offset != offset)
2887 goto out_unlock;
2888
2889 ret = 0;
2890out_unlock:
2891 mutex_unlock(&head->mutex);
2892out:
2893 spin_unlock(&delayed_refs->lock);
2894 return ret;
2895}
2896
2897static noinline int check_committed_ref(struct btrfs_trans_handle *trans,
2898 struct btrfs_root *root,
2899 struct btrfs_path *path,
2900 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05002901{
2902 struct btrfs_root *extent_root = root->fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04002903 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002904 struct btrfs_extent_data_ref *ref;
2905 struct btrfs_extent_inline_ref *iref;
2906 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05002907 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002908 u32 item_size;
Yan Zhengf321e492008-07-30 09:26:11 -04002909 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05002910
Chris Masonbe20aa92007-12-17 20:14:01 -05002911 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04002912 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04002913 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05002914
Chris Masonbe20aa92007-12-17 20:14:01 -05002915 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2916 if (ret < 0)
2917 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002918 BUG_ON(ret == 0); /* Corruption */
Yan Zheng80ff3852008-10-30 14:20:02 -04002919
2920 ret = -ENOENT;
2921 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04002922 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002923
Zheng Yan31840ae2008-09-23 13:14:14 -04002924 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04002925 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002926 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05002927
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002928 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05002929 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002930
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002931 ret = 1;
2932 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2933#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2934 if (item_size < sizeof(*ei)) {
2935 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
2936 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05002937 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002938#endif
2939 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2940
2941 if (item_size != sizeof(*ei) +
2942 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
2943 goto out;
2944
2945 if (btrfs_extent_generation(leaf, ei) <=
2946 btrfs_root_last_snapshot(&root->root_item))
2947 goto out;
2948
2949 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
2950 if (btrfs_extent_inline_ref_type(leaf, iref) !=
2951 BTRFS_EXTENT_DATA_REF_KEY)
2952 goto out;
2953
2954 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
2955 if (btrfs_extent_refs(leaf, ei) !=
2956 btrfs_extent_data_ref_count(leaf, ref) ||
2957 btrfs_extent_data_ref_root(leaf, ref) !=
2958 root->root_key.objectid ||
2959 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
2960 btrfs_extent_data_ref_offset(leaf, ref) != offset)
2961 goto out;
2962
Yan Zhengf321e492008-07-30 09:26:11 -04002963 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05002964out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002965 return ret;
2966}
2967
2968int btrfs_cross_ref_exist(struct btrfs_trans_handle *trans,
2969 struct btrfs_root *root,
2970 u64 objectid, u64 offset, u64 bytenr)
2971{
2972 struct btrfs_path *path;
2973 int ret;
2974 int ret2;
2975
2976 path = btrfs_alloc_path();
2977 if (!path)
2978 return -ENOENT;
2979
2980 do {
2981 ret = check_committed_ref(trans, root, path, objectid,
2982 offset, bytenr);
2983 if (ret && ret != -ENOENT)
2984 goto out;
2985
2986 ret2 = check_delayed_ref(trans, root, path, objectid,
2987 offset, bytenr);
2988 } while (ret2 == -EAGAIN);
2989
2990 if (ret2 && ret2 != -ENOENT) {
2991 ret = ret2;
2992 goto out;
2993 }
2994
2995 if (ret != -ENOENT || ret2 != -ENOENT)
2996 ret = 0;
2997out:
Yan Zhengf321e492008-07-30 09:26:11 -04002998 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04002999 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3000 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04003001 return ret;
3002}
3003
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003004static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05003005 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003006 struct extent_buffer *buf,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003007 int full_backref, int inc, int for_cow)
Zheng Yan31840ae2008-09-23 13:14:14 -04003008{
3009 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003010 u64 num_bytes;
3011 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003012 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04003013 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04003014 struct btrfs_key key;
3015 struct btrfs_file_extent_item *fi;
3016 int i;
3017 int level;
3018 int ret = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04003019 int (*process_func)(struct btrfs_trans_handle *, struct btrfs_root *,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003020 u64, u64, u64, u64, u64, u64, int);
Zheng Yan31840ae2008-09-23 13:14:14 -04003021
3022 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04003023 nritems = btrfs_header_nritems(buf);
3024 level = btrfs_header_level(buf);
3025
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003026 if (!root->ref_cows && level == 0)
3027 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05003028
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003029 if (inc)
3030 process_func = btrfs_inc_extent_ref;
3031 else
3032 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003033
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003034 if (full_backref)
3035 parent = buf->start;
3036 else
3037 parent = 0;
3038
Zheng Yan31840ae2008-09-23 13:14:14 -04003039 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04003040 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003041 btrfs_item_key_to_cpu(buf, &key, i);
3042 if (btrfs_key_type(&key) != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04003043 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003044 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04003045 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003046 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04003047 BTRFS_FILE_EXTENT_INLINE)
3048 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003049 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3050 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04003051 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003052
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003053 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3054 key.offset -= btrfs_file_extent_offset(buf, fi);
3055 ret = process_func(trans, root, bytenr, num_bytes,
3056 parent, ref_root, key.objectid,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003057 key.offset, for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003058 if (ret)
3059 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05003060 } else {
3061 bytenr = btrfs_node_blockptr(buf, i);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003062 num_bytes = btrfs_level_size(root, level - 1);
3063 ret = process_func(trans, root, bytenr, num_bytes,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003064 parent, ref_root, level - 1, 0,
3065 for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003066 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04003067 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04003068 }
3069 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003070 return 0;
3071fail:
Chris Mason54aa1f42007-06-22 14:16:25 -04003072 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05003073}
3074
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003075int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003076 struct extent_buffer *buf, int full_backref, int for_cow)
Zheng Yan31840ae2008-09-23 13:14:14 -04003077{
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003078 return __btrfs_mod_ref(trans, root, buf, full_backref, 1, for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003079}
Zheng Yan31840ae2008-09-23 13:14:14 -04003080
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003081int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003082 struct extent_buffer *buf, int full_backref, int for_cow)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003083{
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003084 return __btrfs_mod_ref(trans, root, buf, full_backref, 0, for_cow);
Zheng Yan31840ae2008-09-23 13:14:14 -04003085}
3086
Chris Mason9078a3e2007-04-26 16:46:15 -04003087static int write_one_cache_group(struct btrfs_trans_handle *trans,
3088 struct btrfs_root *root,
3089 struct btrfs_path *path,
3090 struct btrfs_block_group_cache *cache)
3091{
3092 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003093 struct btrfs_root *extent_root = root->fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003094 unsigned long bi;
3095 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04003096
Chris Mason9078a3e2007-04-26 16:46:15 -04003097 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003098 if (ret < 0)
3099 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003100 BUG_ON(ret); /* Corruption */
Chris Mason5f39d392007-10-15 16:14:19 -04003101
3102 leaf = path->nodes[0];
3103 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3104 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3105 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003106 btrfs_release_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -04003107fail:
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003108 if (ret) {
3109 btrfs_abort_transaction(trans, root, ret);
Chris Mason9078a3e2007-04-26 16:46:15 -04003110 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003111 }
Chris Mason9078a3e2007-04-26 16:46:15 -04003112 return 0;
3113
3114}
3115
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003116static struct btrfs_block_group_cache *
3117next_block_group(struct btrfs_root *root,
3118 struct btrfs_block_group_cache *cache)
3119{
3120 struct rb_node *node;
3121 spin_lock(&root->fs_info->block_group_cache_lock);
3122 node = rb_next(&cache->cache_node);
3123 btrfs_put_block_group(cache);
3124 if (node) {
3125 cache = rb_entry(node, struct btrfs_block_group_cache,
3126 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00003127 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003128 } else
3129 cache = NULL;
3130 spin_unlock(&root->fs_info->block_group_cache_lock);
3131 return cache;
3132}
3133
Josef Bacik0af3d002010-06-21 14:48:16 -04003134static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3135 struct btrfs_trans_handle *trans,
3136 struct btrfs_path *path)
3137{
3138 struct btrfs_root *root = block_group->fs_info->tree_root;
3139 struct inode *inode = NULL;
3140 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05003141 int dcs = BTRFS_DC_ERROR;
Josef Bacik0af3d002010-06-21 14:48:16 -04003142 int num_pages = 0;
3143 int retries = 0;
3144 int ret = 0;
3145
3146 /*
3147 * If this block group is smaller than 100 megs don't bother caching the
3148 * block group.
3149 */
3150 if (block_group->key.offset < (100 * 1024 * 1024)) {
3151 spin_lock(&block_group->lock);
3152 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3153 spin_unlock(&block_group->lock);
3154 return 0;
3155 }
3156
3157again:
3158 inode = lookup_free_space_inode(root, block_group, path);
3159 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3160 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02003161 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003162 goto out;
3163 }
3164
3165 if (IS_ERR(inode)) {
3166 BUG_ON(retries);
3167 retries++;
3168
3169 if (block_group->ro)
3170 goto out_free;
3171
3172 ret = create_free_space_inode(root, trans, block_group, path);
3173 if (ret)
3174 goto out_free;
3175 goto again;
3176 }
3177
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003178 /* We've already setup this transaction, go ahead and exit */
3179 if (block_group->cache_generation == trans->transid &&
3180 i_size_read(inode)) {
3181 dcs = BTRFS_DC_SETUP;
3182 goto out_put;
3183 }
3184
Josef Bacik0af3d002010-06-21 14:48:16 -04003185 /*
3186 * We want to set the generation to 0, that way if anything goes wrong
3187 * from here on out we know not to trust this cache when we load up next
3188 * time.
3189 */
3190 BTRFS_I(inode)->generation = 0;
3191 ret = btrfs_update_inode(trans, root, inode);
3192 WARN_ON(ret);
3193
3194 if (i_size_read(inode) > 0) {
Miao Xie7b61cd92013-05-13 13:55:09 +00003195 ret = btrfs_check_trunc_cache_free_space(root,
3196 &root->fs_info->global_block_rsv);
3197 if (ret)
3198 goto out_put;
3199
Filipe David Borba Manana74514322013-09-20 14:46:51 +01003200 ret = btrfs_truncate_free_space_cache(root, trans, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003201 if (ret)
3202 goto out_put;
3203 }
3204
3205 spin_lock(&block_group->lock);
Liu Bocf7c1ef2012-07-06 03:31:34 -06003206 if (block_group->cached != BTRFS_CACHE_FINISHED ||
3207 !btrfs_test_opt(root, SPACE_CACHE)) {
3208 /*
3209 * don't bother trying to write stuff out _if_
3210 * a) we're not cached,
3211 * b) we're with nospace_cache mount option.
3212 */
Josef Bacik2b209822010-12-03 13:17:53 -05003213 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04003214 spin_unlock(&block_group->lock);
3215 goto out_put;
3216 }
3217 spin_unlock(&block_group->lock);
3218
Josef Bacik6fc823b2012-08-06 13:46:38 -06003219 /*
3220 * Try to preallocate enough space based on how big the block group is.
3221 * Keep in mind this has to include any pinned space which could end up
3222 * taking up quite a bit since it's not folded into the other space
3223 * cache.
3224 */
3225 num_pages = (int)div64_u64(block_group->key.offset, 256 * 1024 * 1024);
Josef Bacik0af3d002010-06-21 14:48:16 -04003226 if (!num_pages)
3227 num_pages = 1;
3228
Josef Bacik0af3d002010-06-21 14:48:16 -04003229 num_pages *= 16;
3230 num_pages *= PAGE_CACHE_SIZE;
3231
3232 ret = btrfs_check_data_free_space(inode, num_pages);
3233 if (ret)
3234 goto out_put;
3235
3236 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3237 num_pages, num_pages,
3238 &alloc_hint);
Josef Bacik2b209822010-12-03 13:17:53 -05003239 if (!ret)
3240 dcs = BTRFS_DC_SETUP;
Josef Bacik0af3d002010-06-21 14:48:16 -04003241 btrfs_free_reserved_data_space(inode, num_pages);
Josef Bacikc09544e2011-08-30 10:19:10 -04003242
Josef Bacik0af3d002010-06-21 14:48:16 -04003243out_put:
3244 iput(inode);
3245out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02003246 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003247out:
3248 spin_lock(&block_group->lock);
Josef Bacike65cbb92011-12-13 16:04:54 -05003249 if (!ret && dcs == BTRFS_DC_SETUP)
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003250 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05003251 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04003252 spin_unlock(&block_group->lock);
3253
3254 return ret;
3255}
3256
Chris Mason96b51792007-10-15 16:15:19 -04003257int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
3258 struct btrfs_root *root)
Chris Mason9078a3e2007-04-26 16:46:15 -04003259{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003260 struct btrfs_block_group_cache *cache;
Chris Mason9078a3e2007-04-26 16:46:15 -04003261 int err = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003262 struct btrfs_path *path;
Chris Mason96b51792007-10-15 16:15:19 -04003263 u64 last = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003264
3265 path = btrfs_alloc_path();
3266 if (!path)
3267 return -ENOMEM;
3268
Josef Bacik0af3d002010-06-21 14:48:16 -04003269again:
3270 while (1) {
3271 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3272 while (cache) {
3273 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3274 break;
3275 cache = next_block_group(root, cache);
3276 }
3277 if (!cache) {
3278 if (last == 0)
3279 break;
3280 last = 0;
3281 continue;
3282 }
3283 err = cache_save_setup(cache, trans, path);
3284 last = cache->key.objectid + cache->key.offset;
3285 btrfs_put_block_group(cache);
3286 }
3287
Chris Masond3977122009-01-05 21:25:51 -05003288 while (1) {
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003289 if (last == 0) {
3290 err = btrfs_run_delayed_refs(trans, root,
3291 (unsigned long)-1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003292 if (err) /* File system offline */
3293 goto out;
Josef Bacik0f9dd462008-09-23 13:14:11 -04003294 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04003295
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003296 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3297 while (cache) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003298 if (cache->disk_cache_state == BTRFS_DC_CLEAR) {
3299 btrfs_put_block_group(cache);
3300 goto again;
3301 }
3302
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003303 if (cache->dirty)
3304 break;
3305 cache = next_block_group(root, cache);
3306 }
3307 if (!cache) {
3308 if (last == 0)
3309 break;
3310 last = 0;
Chris Mason96b51792007-10-15 16:15:19 -04003311 continue;
Chris Mason9078a3e2007-04-26 16:46:15 -04003312 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003313
Josef Bacik0cb59c92010-07-02 12:14:14 -04003314 if (cache->disk_cache_state == BTRFS_DC_SETUP)
3315 cache->disk_cache_state = BTRFS_DC_NEED_WRITE;
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003316 cache->dirty = 0;
3317 last = cache->key.objectid + cache->key.offset;
3318
3319 err = write_one_cache_group(trans, root, path, cache);
Filipe David Borba Mananae84cc142013-09-09 19:49:43 +01003320 btrfs_put_block_group(cache);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003321 if (err) /* File system offline */
3322 goto out;
Chris Mason9078a3e2007-04-26 16:46:15 -04003323 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003324
Josef Bacik0cb59c92010-07-02 12:14:14 -04003325 while (1) {
3326 /*
3327 * I don't think this is needed since we're just marking our
3328 * preallocated extent as written, but just in case it can't
3329 * hurt.
3330 */
3331 if (last == 0) {
3332 err = btrfs_run_delayed_refs(trans, root,
3333 (unsigned long)-1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003334 if (err) /* File system offline */
3335 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -04003336 }
3337
3338 cache = btrfs_lookup_first_block_group(root->fs_info, last);
3339 while (cache) {
3340 /*
3341 * Really this shouldn't happen, but it could if we
3342 * couldn't write the entire preallocated extent and
3343 * splitting the extent resulted in a new block.
3344 */
3345 if (cache->dirty) {
3346 btrfs_put_block_group(cache);
3347 goto again;
3348 }
3349 if (cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
3350 break;
3351 cache = next_block_group(root, cache);
3352 }
3353 if (!cache) {
3354 if (last == 0)
3355 break;
3356 last = 0;
3357 continue;
3358 }
3359
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003360 err = btrfs_write_out_cache(root, trans, cache, path);
Josef Bacik0cb59c92010-07-02 12:14:14 -04003361
3362 /*
3363 * If we didn't have an error then the cache state is still
3364 * NEED_WRITE, so we can set it to WRITTEN.
3365 */
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003366 if (!err && cache->disk_cache_state == BTRFS_DC_NEED_WRITE)
Josef Bacik0cb59c92010-07-02 12:14:14 -04003367 cache->disk_cache_state = BTRFS_DC_WRITTEN;
3368 last = cache->key.objectid + cache->key.offset;
3369 btrfs_put_block_group(cache);
3370 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003371out:
Josef Bacik0cb59c92010-07-02 12:14:14 -04003372
Chris Mason9078a3e2007-04-26 16:46:15 -04003373 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003374 return err;
Chris Mason9078a3e2007-04-26 16:46:15 -04003375}
3376
Yan Zhengd2fb3432008-12-11 16:30:39 -05003377int btrfs_extent_readonly(struct btrfs_root *root, u64 bytenr)
3378{
3379 struct btrfs_block_group_cache *block_group;
3380 int readonly = 0;
3381
3382 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
3383 if (!block_group || block_group->ro)
3384 readonly = 1;
3385 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04003386 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003387 return readonly;
3388}
3389
Chris Mason593060d2008-03-25 16:50:33 -04003390static int update_space_info(struct btrfs_fs_info *info, u64 flags,
3391 u64 total_bytes, u64 bytes_used,
3392 struct btrfs_space_info **space_info)
3393{
3394 struct btrfs_space_info *found;
Yan, Zhengb742bb822010-05-16 10:46:24 -04003395 int i;
3396 int factor;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003397 int ret;
Yan, Zhengb742bb822010-05-16 10:46:24 -04003398
3399 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
3400 BTRFS_BLOCK_GROUP_RAID10))
3401 factor = 2;
3402 else
3403 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04003404
3405 found = __find_space_info(info, flags);
3406 if (found) {
Josef Bacik25179202008-10-29 14:49:05 -04003407 spin_lock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003408 found->total_bytes += total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003409 found->disk_total += total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003410 found->bytes_used += bytes_used;
Yan, Zhengb742bb822010-05-16 10:46:24 -04003411 found->disk_used += bytes_used * factor;
Chris Mason8f18cf12008-04-25 16:53:30 -04003412 found->full = 0;
Josef Bacik25179202008-10-29 14:49:05 -04003413 spin_unlock(&found->lock);
Chris Mason593060d2008-03-25 16:50:33 -04003414 *space_info = found;
3415 return 0;
3416 }
Yan Zhengc146afa2008-11-12 14:34:12 -05003417 found = kzalloc(sizeof(*found), GFP_NOFS);
Chris Mason593060d2008-03-25 16:50:33 -04003418 if (!found)
3419 return -ENOMEM;
3420
Josef Bacikb150a4f2013-06-19 15:00:04 -04003421 ret = percpu_counter_init(&found->total_bytes_pinned, 0);
3422 if (ret) {
3423 kfree(found);
3424 return ret;
3425 }
3426
Yan, Zhengb742bb822010-05-16 10:46:24 -04003427 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
3428 INIT_LIST_HEAD(&found->block_groups[i]);
Josef Bacik80eb2342008-10-29 14:49:05 -04003429 init_rwsem(&found->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003430 spin_lock_init(&found->lock);
Ilya Dryomov52ba6922012-01-16 22:04:47 +02003431 found->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
Chris Mason593060d2008-03-25 16:50:33 -04003432 found->total_bytes = total_bytes;
Josef Bacik89a55892010-10-14 14:52:27 -04003433 found->disk_total = total_bytes * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003434 found->bytes_used = bytes_used;
Yan, Zhengb742bb822010-05-16 10:46:24 -04003435 found->disk_used = bytes_used * factor;
Chris Mason593060d2008-03-25 16:50:33 -04003436 found->bytes_pinned = 0;
Zheng Yane8569812008-09-26 10:05:48 -04003437 found->bytes_reserved = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003438 found->bytes_readonly = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04003439 found->bytes_may_use = 0;
Chris Mason593060d2008-03-25 16:50:33 -04003440 found->full = 0;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003441 found->force_alloc = CHUNK_ALLOC_NO_FORCE;
Josef Bacik6d741192011-04-11 20:20:11 -04003442 found->chunk_alloc = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04003443 found->flush = 0;
3444 init_waitqueue_head(&found->wait);
Chris Mason593060d2008-03-25 16:50:33 -04003445 *space_info = found;
Chris Mason4184ea72009-03-10 12:39:20 -04003446 list_add_rcu(&found->list, &info->space_info);
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003447 if (flags & BTRFS_BLOCK_GROUP_DATA)
3448 info->data_sinfo = found;
Chris Mason593060d2008-03-25 16:50:33 -04003449 return 0;
3450}
3451
Chris Mason8790d502008-04-03 16:29:03 -04003452static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3453{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003454 u64 extra_flags = chunk_to_extended(flags) &
3455 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003456
Miao Xiede98ced2013-01-29 10:13:12 +00003457 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003458 if (flags & BTRFS_BLOCK_GROUP_DATA)
3459 fs_info->avail_data_alloc_bits |= extra_flags;
3460 if (flags & BTRFS_BLOCK_GROUP_METADATA)
3461 fs_info->avail_metadata_alloc_bits |= extra_flags;
3462 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3463 fs_info->avail_system_alloc_bits |= extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003464 write_sequnlock(&fs_info->profiles_lock);
Chris Mason8790d502008-04-03 16:29:03 -04003465}
Chris Mason593060d2008-03-25 16:50:33 -04003466
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003467/*
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003468 * returns target flags in extended format or 0 if restripe for this
3469 * chunk_type is not in progress
Ilya Dryomovc6664b42012-04-12 16:03:56 -04003470 *
3471 * should be called with either volume_mutex or balance_lock held
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003472 */
3473static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
3474{
3475 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3476 u64 target = 0;
3477
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003478 if (!bctl)
3479 return 0;
3480
3481 if (flags & BTRFS_BLOCK_GROUP_DATA &&
3482 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3483 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
3484 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
3485 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3486 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
3487 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
3488 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3489 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
3490 }
3491
3492 return target;
3493}
3494
3495/*
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003496 * @flags: available profiles in extended format (see ctree.h)
3497 *
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003498 * Returns reduced profile in chunk format. If profile changing is in
3499 * progress (either running or paused) picks the target profile (if it's
3500 * already available), otherwise falls back to plain reducing.
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003501 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00003502static u64 btrfs_reduce_alloc_profile(struct btrfs_root *root, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04003503{
Chris Masoncd02dca2010-12-13 14:56:23 -05003504 /*
3505 * we add in the count of missing devices because we want
3506 * to make sure that any RAID levels on a degraded FS
3507 * continue to be honored.
3508 */
3509 u64 num_devices = root->fs_info->fs_devices->rw_devices +
3510 root->fs_info->fs_devices->missing_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003511 u64 target;
David Woodhouse53b381b2013-01-29 18:40:14 -05003512 u64 tmp;
Chris Masona061fc82008-05-07 11:43:44 -04003513
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003514 /*
3515 * see if restripe for this chunk_type is in progress, if so
3516 * try to reduce to the target profile
3517 */
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003518 spin_lock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003519 target = get_restripe_target(root->fs_info, flags);
3520 if (target) {
3521 /* pick target profile only if it's already available */
3522 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003523 spin_unlock(&root->fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003524 return extended_to_chunk(target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003525 }
3526 }
3527 spin_unlock(&root->fs_info->balance_lock);
3528
David Woodhouse53b381b2013-01-29 18:40:14 -05003529 /* First, mask out the RAID levels which aren't possible */
Chris Masona061fc82008-05-07 11:43:44 -04003530 if (num_devices == 1)
David Woodhouse53b381b2013-01-29 18:40:14 -05003531 flags &= ~(BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID0 |
3532 BTRFS_BLOCK_GROUP_RAID5);
3533 if (num_devices < 3)
3534 flags &= ~BTRFS_BLOCK_GROUP_RAID6;
Chris Masona061fc82008-05-07 11:43:44 -04003535 if (num_devices < 4)
3536 flags &= ~BTRFS_BLOCK_GROUP_RAID10;
3537
David Woodhouse53b381b2013-01-29 18:40:14 -05003538 tmp = flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID0 |
3539 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID5 |
3540 BTRFS_BLOCK_GROUP_RAID6 | BTRFS_BLOCK_GROUP_RAID10);
3541 flags &= ~tmp;
Chris Masonec44a352008-04-28 15:29:52 -04003542
David Woodhouse53b381b2013-01-29 18:40:14 -05003543 if (tmp & BTRFS_BLOCK_GROUP_RAID6)
3544 tmp = BTRFS_BLOCK_GROUP_RAID6;
3545 else if (tmp & BTRFS_BLOCK_GROUP_RAID5)
3546 tmp = BTRFS_BLOCK_GROUP_RAID5;
3547 else if (tmp & BTRFS_BLOCK_GROUP_RAID10)
3548 tmp = BTRFS_BLOCK_GROUP_RAID10;
3549 else if (tmp & BTRFS_BLOCK_GROUP_RAID1)
3550 tmp = BTRFS_BLOCK_GROUP_RAID1;
3551 else if (tmp & BTRFS_BLOCK_GROUP_RAID0)
3552 tmp = BTRFS_BLOCK_GROUP_RAID0;
Chris Masonec44a352008-04-28 15:29:52 -04003553
David Woodhouse53b381b2013-01-29 18:40:14 -05003554 return extended_to_chunk(flags | tmp);
Chris Masonec44a352008-04-28 15:29:52 -04003555}
3556
Yan, Zhengb742bb822010-05-16 10:46:24 -04003557static u64 get_alloc_profile(struct btrfs_root *root, u64 flags)
Josef Bacik6a632092009-02-20 11:00:09 -05003558{
Miao Xiede98ced2013-01-29 10:13:12 +00003559 unsigned seq;
3560
3561 do {
3562 seq = read_seqbegin(&root->fs_info->profiles_lock);
3563
3564 if (flags & BTRFS_BLOCK_GROUP_DATA)
3565 flags |= root->fs_info->avail_data_alloc_bits;
3566 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3567 flags |= root->fs_info->avail_system_alloc_bits;
3568 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
3569 flags |= root->fs_info->avail_metadata_alloc_bits;
3570 } while (read_seqretry(&root->fs_info->profiles_lock, seq));
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02003571
Yan, Zhengb742bb822010-05-16 10:46:24 -04003572 return btrfs_reduce_alloc_profile(root, flags);
3573}
Josef Bacik6a632092009-02-20 11:00:09 -05003574
Miao Xie6d07bce2011-01-05 10:07:31 +00003575u64 btrfs_get_alloc_profile(struct btrfs_root *root, int data)
Yan, Zhengb742bb822010-05-16 10:46:24 -04003576{
3577 u64 flags;
David Woodhouse53b381b2013-01-29 18:40:14 -05003578 u64 ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003579
Yan, Zhengb742bb822010-05-16 10:46:24 -04003580 if (data)
3581 flags = BTRFS_BLOCK_GROUP_DATA;
3582 else if (root == root->fs_info->chunk_root)
3583 flags = BTRFS_BLOCK_GROUP_SYSTEM;
3584 else
3585 flags = BTRFS_BLOCK_GROUP_METADATA;
3586
David Woodhouse53b381b2013-01-29 18:40:14 -05003587 ret = get_alloc_profile(root, flags);
3588 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05003589}
3590
Josef Bacik6a632092009-02-20 11:00:09 -05003591/*
3592 * This will check the space that the inode allocates from to make sure we have
3593 * enough space for bytes.
3594 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003595int btrfs_check_data_free_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003596{
3597 struct btrfs_space_info *data_sinfo;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003598 struct btrfs_root *root = BTRFS_I(inode)->root;
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003599 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacikab6e24102010-03-19 14:38:13 +00003600 u64 used;
Josef Bacik0af3d002010-06-21 14:48:16 -04003601 int ret = 0, committed = 0, alloc_chunk = 1;
Josef Bacik6a632092009-02-20 11:00:09 -05003602
3603 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00003604 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05003605
Li Zefan82d59022011-04-20 10:33:24 +08003606 if (root == root->fs_info->tree_root ||
3607 BTRFS_I(inode)->location.objectid == BTRFS_FREE_INO_OBJECTID) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003608 alloc_chunk = 0;
3609 committed = 1;
3610 }
3611
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003612 data_sinfo = fs_info->data_sinfo;
Chris Mason33b4d472009-09-22 14:45:50 -04003613 if (!data_sinfo)
3614 goto alloc;
3615
Josef Bacik6a632092009-02-20 11:00:09 -05003616again:
3617 /* make sure we have enough space to handle the data first */
3618 spin_lock(&data_sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003619 used = data_sinfo->bytes_used + data_sinfo->bytes_reserved +
3620 data_sinfo->bytes_pinned + data_sinfo->bytes_readonly +
3621 data_sinfo->bytes_may_use;
Josef Bacikab6e24102010-03-19 14:38:13 +00003622
3623 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003624 struct btrfs_trans_handle *trans;
3625
Josef Bacik6a632092009-02-20 11:00:09 -05003626 /*
3627 * if we don't have enough free bytes in this space then we need
3628 * to alloc a new chunk.
3629 */
Josef Bacik0af3d002010-06-21 14:48:16 -04003630 if (!data_sinfo->full && alloc_chunk) {
Josef Bacik6a632092009-02-20 11:00:09 -05003631 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05003632
Chris Mason0e4f8f82011-04-15 16:05:44 -04003633 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05003634 spin_unlock(&data_sinfo->lock);
Chris Mason33b4d472009-09-22 14:45:50 -04003635alloc:
Josef Bacik6a632092009-02-20 11:00:09 -05003636 alloc_target = btrfs_get_alloc_profile(root, 1);
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003637 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003638 if (IS_ERR(trans))
3639 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05003640
3641 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Chris Mason0e4f8f82011-04-15 16:05:44 -04003642 alloc_target,
3643 CHUNK_ALLOC_NO_FORCE);
Josef Bacik6a632092009-02-20 11:00:09 -05003644 btrfs_end_transaction(trans, root);
Miao Xied52a5b52011-01-05 10:07:18 +00003645 if (ret < 0) {
3646 if (ret != -ENOSPC)
3647 return ret;
3648 else
3649 goto commit_trans;
3650 }
Chris Mason33b4d472009-09-22 14:45:50 -04003651
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003652 if (!data_sinfo)
3653 data_sinfo = fs_info->data_sinfo;
3654
Josef Bacik6a632092009-02-20 11:00:09 -05003655 goto again;
3656 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003657
3658 /*
Josef Bacikb150a4f2013-06-19 15:00:04 -04003659 * If we don't have enough pinned space to deal with this
3660 * allocation don't bother committing the transaction.
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003661 */
Josef Bacikb150a4f2013-06-19 15:00:04 -04003662 if (percpu_counter_compare(&data_sinfo->total_bytes_pinned,
3663 bytes) < 0)
Josef Bacikf2bb8f52011-05-25 13:10:16 -04003664 committed = 1;
Josef Bacik6a632092009-02-20 11:00:09 -05003665 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003666
3667 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00003668commit_trans:
Josef Bacika4abeea2011-04-11 17:25:13 -04003669 if (!committed &&
3670 !atomic_read(&root->fs_info->open_ioctl_trans)) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003671 committed = 1;
Josef Bacikb150a4f2013-06-19 15:00:04 -04003672
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003673 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003674 if (IS_ERR(trans))
3675 return PTR_ERR(trans);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05003676 ret = btrfs_commit_transaction(trans, root);
3677 if (ret)
3678 return ret;
3679 goto again;
3680 }
3681
Josef Bacik6a632092009-02-20 11:00:09 -05003682 return -ENOSPC;
3683 }
3684 data_sinfo->bytes_may_use += bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05003685 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04003686 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05003687 spin_unlock(&data_sinfo->lock);
3688
Josef Bacik9ed74f22009-09-11 16:12:44 -04003689 return 0;
Josef Bacik6a632092009-02-20 11:00:09 -05003690}
3691
3692/*
Josef Bacikfb25e912011-07-26 17:00:46 -04003693 * Called if we need to clear a data reservation for this inode.
Josef Bacik6a632092009-02-20 11:00:09 -05003694 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003695void btrfs_free_reserved_data_space(struct inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05003696{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04003697 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik6a632092009-02-20 11:00:09 -05003698 struct btrfs_space_info *data_sinfo;
3699
3700 /* make sure bytes are sectorsize aligned */
Qu Wenruofda28322013-02-26 08:10:22 +00003701 bytes = ALIGN(bytes, root->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05003702
Li Zefanb4d7c3c2012-07-09 20:21:07 -06003703 data_sinfo = root->fs_info->data_sinfo;
Josef Bacik6a632092009-02-20 11:00:09 -05003704 spin_lock(&data_sinfo->lock);
Josef Bacik7ee9e442013-06-21 16:37:03 -04003705 WARN_ON(data_sinfo->bytes_may_use < bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05003706 data_sinfo->bytes_may_use -= bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05003707 trace_btrfs_space_reservation(root->fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04003708 data_sinfo->flags, bytes, 0);
Josef Bacik6a632092009-02-20 11:00:09 -05003709 spin_unlock(&data_sinfo->lock);
3710}
3711
Josef Bacik97e728d2009-04-21 17:40:57 -04003712static void force_metadata_allocation(struct btrfs_fs_info *info)
3713{
3714 struct list_head *head = &info->space_info;
3715 struct btrfs_space_info *found;
3716
3717 rcu_read_lock();
3718 list_for_each_entry_rcu(found, head, list) {
3719 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04003720 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04003721 }
3722 rcu_read_unlock();
3723}
3724
Miao Xie3c76cd82013-04-25 10:12:38 +00003725static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
3726{
3727 return (global->size << 1);
3728}
3729
Chris Masone5bc2452010-10-26 13:37:56 -04003730static int should_alloc_chunk(struct btrfs_root *root,
Josef Bacik698d0082012-09-12 14:08:47 -04003731 struct btrfs_space_info *sinfo, int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04003732{
Josef Bacikfb25e912011-07-26 17:00:46 -04003733 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zheng424499d2010-05-16 10:46:25 -04003734 u64 num_bytes = sinfo->total_bytes - sinfo->bytes_readonly;
Chris Mason0e4f8f82011-04-15 16:05:44 -04003735 u64 num_allocated = sinfo->bytes_used + sinfo->bytes_reserved;
Chris Masone5bc2452010-10-26 13:37:56 -04003736 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04003737
Chris Mason0e4f8f82011-04-15 16:05:44 -04003738 if (force == CHUNK_ALLOC_FORCE)
3739 return 1;
3740
3741 /*
Josef Bacikfb25e912011-07-26 17:00:46 -04003742 * We need to take into account the global rsv because for all intents
3743 * and purposes it's used space. Don't worry about locking the
3744 * global_rsv, it doesn't change except when the transaction commits.
3745 */
Josef Bacik54338b52012-08-14 16:20:52 -04003746 if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA)
Miao Xie3c76cd82013-04-25 10:12:38 +00003747 num_allocated += calc_global_rsv_need_space(global_rsv);
Josef Bacikfb25e912011-07-26 17:00:46 -04003748
3749 /*
Chris Mason0e4f8f82011-04-15 16:05:44 -04003750 * in limited mode, we want to have some free space up to
3751 * about 1% of the FS size.
3752 */
3753 if (force == CHUNK_ALLOC_LIMITED) {
David Sterba6c417612011-04-13 15:41:04 +02003754 thresh = btrfs_super_total_bytes(root->fs_info->super_copy);
Chris Mason0e4f8f82011-04-15 16:05:44 -04003755 thresh = max_t(u64, 64 * 1024 * 1024,
3756 div_factor_fine(thresh, 1));
3757
3758 if (num_bytes - num_allocated < thresh)
3759 return 1;
3760 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04003761
Josef Bacik698d0082012-09-12 14:08:47 -04003762 if (num_allocated + 2 * 1024 * 1024 < div_factor(num_bytes, 8))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04003763 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04003764 return 1;
3765}
3766
Liu Bo15d1ff82012-03-29 09:57:44 -04003767static u64 get_system_chunk_thresh(struct btrfs_root *root, u64 type)
3768{
3769 u64 num_dev;
3770
David Woodhouse53b381b2013-01-29 18:40:14 -05003771 if (type & (BTRFS_BLOCK_GROUP_RAID10 |
3772 BTRFS_BLOCK_GROUP_RAID0 |
3773 BTRFS_BLOCK_GROUP_RAID5 |
3774 BTRFS_BLOCK_GROUP_RAID6))
Liu Bo15d1ff82012-03-29 09:57:44 -04003775 num_dev = root->fs_info->fs_devices->rw_devices;
3776 else if (type & BTRFS_BLOCK_GROUP_RAID1)
3777 num_dev = 2;
3778 else
3779 num_dev = 1; /* DUP or single */
3780
3781 /* metadata for updaing devices and chunk tree */
3782 return btrfs_calc_trans_metadata_size(root, num_dev + 1);
3783}
3784
3785static void check_system_chunk(struct btrfs_trans_handle *trans,
3786 struct btrfs_root *root, u64 type)
3787{
3788 struct btrfs_space_info *info;
3789 u64 left;
3790 u64 thresh;
3791
3792 info = __find_space_info(root->fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
3793 spin_lock(&info->lock);
3794 left = info->total_bytes - info->bytes_used - info->bytes_pinned -
3795 info->bytes_reserved - info->bytes_readonly;
3796 spin_unlock(&info->lock);
3797
3798 thresh = get_system_chunk_thresh(root, type);
3799 if (left < thresh && btrfs_test_opt(root, ENOSPC_DEBUG)) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003800 btrfs_info(root->fs_info, "left=%llu, need=%llu, flags=%llu",
3801 left, thresh, type);
Liu Bo15d1ff82012-03-29 09:57:44 -04003802 dump_space_info(info, 0, 0);
3803 }
3804
3805 if (left < thresh) {
3806 u64 flags;
3807
3808 flags = btrfs_get_alloc_profile(root->fs_info->chunk_root, 0);
3809 btrfs_alloc_chunk(trans, root, flags);
3810 }
3811}
3812
Chris Mason6324fbf2008-03-24 15:01:59 -04003813static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Josef Bacik698d0082012-09-12 14:08:47 -04003814 struct btrfs_root *extent_root, u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04003815{
3816 struct btrfs_space_info *space_info;
Josef Bacik97e728d2009-04-21 17:40:57 -04003817 struct btrfs_fs_info *fs_info = extent_root->fs_info;
Josef Bacik6d741192011-04-11 20:20:11 -04003818 int wait_for_alloc = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05003819 int ret = 0;
3820
Josef Bacikc6b305a2012-12-18 09:16:16 -05003821 /* Don't re-enter if we're already allocating a chunk */
3822 if (trans->allocating_chunk)
3823 return -ENOSPC;
3824
Chris Mason6324fbf2008-03-24 15:01:59 -04003825 space_info = __find_space_info(extent_root->fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04003826 if (!space_info) {
3827 ret = update_space_info(extent_root->fs_info, flags,
3828 0, 0, &space_info);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003829 BUG_ON(ret); /* -ENOMEM */
Chris Mason593060d2008-03-25 16:50:33 -04003830 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003831 BUG_ON(!space_info); /* Logic error */
Chris Mason6324fbf2008-03-24 15:01:59 -04003832
Josef Bacik6d741192011-04-11 20:20:11 -04003833again:
Josef Bacik25179202008-10-29 14:49:05 -04003834 spin_lock(&space_info->lock);
Miao Xie9e622d62012-01-26 15:01:12 -05003835 if (force < space_info->force_alloc)
Chris Mason0e4f8f82011-04-15 16:05:44 -04003836 force = space_info->force_alloc;
Josef Bacik25179202008-10-29 14:49:05 -04003837 if (space_info->full) {
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01003838 if (should_alloc_chunk(extent_root, space_info, force))
3839 ret = -ENOSPC;
3840 else
3841 ret = 0;
Josef Bacik25179202008-10-29 14:49:05 -04003842 spin_unlock(&space_info->lock);
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01003843 return ret;
Josef Bacik25179202008-10-29 14:49:05 -04003844 }
Chris Mason6324fbf2008-03-24 15:01:59 -04003845
Josef Bacik698d0082012-09-12 14:08:47 -04003846 if (!should_alloc_chunk(extent_root, space_info, force)) {
Josef Bacik25179202008-10-29 14:49:05 -04003847 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04003848 return 0;
3849 } else if (space_info->chunk_alloc) {
3850 wait_for_alloc = 1;
3851 } else {
3852 space_info->chunk_alloc = 1;
Josef Bacik25179202008-10-29 14:49:05 -04003853 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04003854
Josef Bacik25179202008-10-29 14:49:05 -04003855 spin_unlock(&space_info->lock);
3856
Josef Bacik6d741192011-04-11 20:20:11 -04003857 mutex_lock(&fs_info->chunk_mutex);
3858
3859 /*
3860 * The chunk_mutex is held throughout the entirety of a chunk
3861 * allocation, so once we've acquired the chunk_mutex we know that the
3862 * other guy is done and we need to recheck and see if we should
3863 * allocate.
3864 */
3865 if (wait_for_alloc) {
3866 mutex_unlock(&fs_info->chunk_mutex);
3867 wait_for_alloc = 0;
3868 goto again;
3869 }
3870
Josef Bacikc6b305a2012-12-18 09:16:16 -05003871 trans->allocating_chunk = true;
3872
Josef Bacik97e728d2009-04-21 17:40:57 -04003873 /*
Josef Bacik67377732010-09-16 16:19:09 -04003874 * If we have mixed data/metadata chunks we want to make sure we keep
3875 * allocating mixed chunks instead of individual chunks.
3876 */
3877 if (btrfs_mixed_space_info(space_info))
3878 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
3879
3880 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04003881 * if we're doing a data chunk, go ahead and make sure that
3882 * we keep a reasonable number of metadata chunks allocated in the
3883 * FS as well.
3884 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04003885 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04003886 fs_info->data_chunk_allocations++;
3887 if (!(fs_info->data_chunk_allocations %
3888 fs_info->metadata_ratio))
3889 force_metadata_allocation(fs_info);
3890 }
3891
Liu Bo15d1ff82012-03-29 09:57:44 -04003892 /*
3893 * Check if we have enough space in SYSTEM chunk because we may need
3894 * to update devices.
3895 */
3896 check_system_chunk(trans, extent_root, flags);
3897
Yan Zheng2b820322008-11-17 21:11:30 -05003898 ret = btrfs_alloc_chunk(trans, extent_root, flags);
Josef Bacikc6b305a2012-12-18 09:16:16 -05003899 trans->allocating_chunk = false;
Mark Fasheh92b8e8972011-07-12 10:57:59 -07003900
Josef Bacik9ed74f22009-09-11 16:12:44 -04003901 spin_lock(&space_info->lock);
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00003902 if (ret < 0 && ret != -ENOSPC)
3903 goto out;
Chris Masond3977122009-01-05 21:25:51 -05003904 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04003905 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04003906 else
3907 ret = 1;
Josef Bacik6d741192011-04-11 20:20:11 -04003908
Chris Mason0e4f8f82011-04-15 16:05:44 -04003909 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00003910out:
Josef Bacik6d741192011-04-11 20:20:11 -04003911 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04003912 spin_unlock(&space_info->lock);
Dan Carpentera25c75d2012-04-18 09:59:29 +03003913 mutex_unlock(&fs_info->chunk_mutex);
Josef Bacik0f9dd462008-09-23 13:14:11 -04003914 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04003915}
3916
Josef Bacika80c8dcf2012-09-06 16:59:33 -04003917static int can_overcommit(struct btrfs_root *root,
3918 struct btrfs_space_info *space_info, u64 bytes,
Miao Xie08e007d2012-10-16 11:33:38 +00003919 enum btrfs_reserve_flush_enum flush)
Josef Bacika80c8dcf2012-09-06 16:59:33 -04003920{
Josef Bacik96f1bb52013-01-30 17:02:51 -05003921 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04003922 u64 profile = btrfs_get_alloc_profile(root, 0);
Miao Xie3c76cd82013-04-25 10:12:38 +00003923 u64 space_size;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04003924 u64 avail;
3925 u64 used;
3926
3927 used = space_info->bytes_used + space_info->bytes_reserved +
Josef Bacik96f1bb52013-01-30 17:02:51 -05003928 space_info->bytes_pinned + space_info->bytes_readonly;
3929
Josef Bacik96f1bb52013-01-30 17:02:51 -05003930 /*
3931 * We only want to allow over committing if we have lots of actual space
3932 * free, but if we don't have enough space to handle the global reserve
3933 * space then we could end up having a real enospc problem when trying
3934 * to allocate a chunk or some other such important allocation.
3935 */
Miao Xie3c76cd82013-04-25 10:12:38 +00003936 spin_lock(&global_rsv->lock);
3937 space_size = calc_global_rsv_need_space(global_rsv);
3938 spin_unlock(&global_rsv->lock);
3939 if (used + space_size >= space_info->total_bytes)
Josef Bacik96f1bb52013-01-30 17:02:51 -05003940 return 0;
3941
3942 used += space_info->bytes_may_use;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04003943
3944 spin_lock(&root->fs_info->free_chunk_lock);
3945 avail = root->fs_info->free_chunk_space;
3946 spin_unlock(&root->fs_info->free_chunk_lock);
3947
3948 /*
3949 * If we have dup, raid1 or raid10 then only half of the free
David Woodhouse53b381b2013-01-29 18:40:14 -05003950 * space is actually useable. For raid56, the space info used
3951 * doesn't include the parity drive, so we don't have to
3952 * change the math
Josef Bacika80c8dcf2012-09-06 16:59:33 -04003953 */
3954 if (profile & (BTRFS_BLOCK_GROUP_DUP |
3955 BTRFS_BLOCK_GROUP_RAID1 |
3956 BTRFS_BLOCK_GROUP_RAID10))
3957 avail >>= 1;
3958
3959 /*
Miao Xie561c2942012-10-16 11:32:18 +00003960 * If we aren't flushing all things, let us overcommit up to
3961 * 1/2th of the space. If we can flush, don't let us overcommit
3962 * too much, let it overcommit up to 1/8 of the space.
Josef Bacika80c8dcf2012-09-06 16:59:33 -04003963 */
Miao Xie08e007d2012-10-16 11:33:38 +00003964 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacik14575ae2013-09-17 10:48:00 -04003965 avail >>= 3;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04003966 else
Josef Bacik14575ae2013-09-17 10:48:00 -04003967 avail >>= 1;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04003968
Josef Bacik14575ae2013-09-17 10:48:00 -04003969 if (used + bytes < space_info->total_bytes + avail)
Josef Bacika80c8dcf2012-09-06 16:59:33 -04003970 return 1;
3971 return 0;
3972}
3973
Eric Sandeen48a3b632013-04-25 20:41:01 +00003974static void btrfs_writeback_inodes_sb_nr(struct btrfs_root *root,
3975 unsigned long nr_pages)
Miao Xieda633a42012-12-20 11:19:09 +00003976{
3977 struct super_block *sb = root->fs_info->sb;
Miao Xieda633a42012-12-20 11:19:09 +00003978
Josef Bacik925a6ef2013-06-20 12:31:27 -04003979 if (down_read_trylock(&sb->s_umount)) {
3980 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
3981 up_read(&sb->s_umount);
3982 } else {
Miao Xieda633a42012-12-20 11:19:09 +00003983 /*
3984 * We needn't worry the filesystem going from r/w to r/o though
3985 * we don't acquire ->s_umount mutex, because the filesystem
3986 * should guarantee the delalloc inodes list be empty after
3987 * the filesystem is readonly(all dirty pages are written to
3988 * the disk).
3989 */
Miao Xieeb73c1b2013-05-15 07:48:22 +00003990 btrfs_start_all_delalloc_inodes(root->fs_info, 0);
Josef Bacik98ad69c2013-04-04 11:55:49 -04003991 if (!current->journal_info)
Josef Bacikf0de1812013-09-17 10:55:51 -04003992 btrfs_wait_all_ordered_extents(root->fs_info);
Miao Xieda633a42012-12-20 11:19:09 +00003993 }
3994}
3995
Yan, Zheng5da9d012010-05-16 10:46:25 -04003996/*
3997 * shrink metadata reservation for delalloc
3998 */
Josef Bacikf4c738c2012-07-02 17:10:51 -04003999static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig,
4000 bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04004001{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004002 struct btrfs_block_rsv *block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004003 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04004004 struct btrfs_trans_handle *trans;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004005 u64 delalloc_bytes;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004006 u64 max_reclaim;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004007 long time_left;
Josef Bacik877da172011-10-14 14:02:10 -04004008 unsigned long nr_pages = (2 * 1024 * 1024) >> PAGE_CACHE_SHIFT;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004009 int loops = 0;
Miao Xie08e007d2012-10-16 11:33:38 +00004010 enum btrfs_reserve_flush_enum flush;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004011
Josef Bacik663350a2011-11-03 22:54:25 -04004012 trans = (struct btrfs_trans_handle *)current->journal_info;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004013 block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004014 space_info = block_rsv->space_info;
Chris Masonbf9022e2010-10-26 13:40:45 -04004015
4016 smp_mb();
Miao Xie963d6782013-01-29 10:10:51 +00004017 delalloc_bytes = percpu_counter_sum_positive(
4018 &root->fs_info->delalloc_bytes);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004019 if (delalloc_bytes == 0) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004020 if (trans)
Josef Bacikf4c738c2012-07-02 17:10:51 -04004021 return;
Josef Bacikf0de1812013-09-17 10:55:51 -04004022 btrfs_wait_all_ordered_extents(root->fs_info);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004023 return;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004024 }
4025
Josef Bacikf4c738c2012-07-02 17:10:51 -04004026 while (delalloc_bytes && loops < 3) {
4027 max_reclaim = min(delalloc_bytes, to_reclaim);
4028 nr_pages = max_reclaim >> PAGE_CACHE_SHIFT;
Miao Xieda633a42012-12-20 11:19:09 +00004029 btrfs_writeback_inodes_sb_nr(root, nr_pages);
Josef Bacikdea31f52012-09-06 16:47:00 -04004030 /*
4031 * We need to wait for the async pages to actually start before
4032 * we do anything.
4033 */
4034 wait_event(root->fs_info->async_submit_wait,
4035 !atomic_read(&root->fs_info->async_delalloc_pages));
4036
Miao Xie08e007d2012-10-16 11:33:38 +00004037 if (!trans)
4038 flush = BTRFS_RESERVE_FLUSH_ALL;
4039 else
4040 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacik0019f102010-10-15 15:18:40 -04004041 spin_lock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00004042 if (can_overcommit(root, space_info, orig, flush)) {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004043 spin_unlock(&space_info->lock);
4044 break;
4045 }
Josef Bacik0019f102010-10-15 15:18:40 -04004046 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004047
Chris Mason36e39c42011-03-12 07:08:42 -05004048 loops++;
Josef Bacikf104d042011-10-14 13:56:58 -04004049 if (wait_ordered && !trans) {
Josef Bacikf0de1812013-09-17 10:55:51 -04004050 btrfs_wait_all_ordered_extents(root->fs_info);
Josef Bacikf104d042011-10-14 13:56:58 -04004051 } else {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004052 time_left = schedule_timeout_killable(1);
Josef Bacikf104d042011-10-14 13:56:58 -04004053 if (time_left)
4054 break;
4055 }
Josef Bacikf4c738c2012-07-02 17:10:51 -04004056 smp_mb();
Miao Xie963d6782013-01-29 10:10:51 +00004057 delalloc_bytes = percpu_counter_sum_positive(
4058 &root->fs_info->delalloc_bytes);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004059 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04004060}
4061
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004062/**
Josef Bacik663350a2011-11-03 22:54:25 -04004063 * maybe_commit_transaction - possibly commit the transaction if its ok to
4064 * @root - the root we're allocating for
4065 * @bytes - the number of bytes we want to reserve
4066 * @force - force the commit
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004067 *
Josef Bacik663350a2011-11-03 22:54:25 -04004068 * This will check to make sure that committing the transaction will actually
4069 * get us somewhere and then commit the transaction if it does. Otherwise it
4070 * will return -ENOSPC.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004071 */
Josef Bacik663350a2011-11-03 22:54:25 -04004072static int may_commit_transaction(struct btrfs_root *root,
4073 struct btrfs_space_info *space_info,
4074 u64 bytes, int force)
4075{
4076 struct btrfs_block_rsv *delayed_rsv = &root->fs_info->delayed_block_rsv;
4077 struct btrfs_trans_handle *trans;
4078
4079 trans = (struct btrfs_trans_handle *)current->journal_info;
4080 if (trans)
4081 return -EAGAIN;
4082
4083 if (force)
4084 goto commit;
4085
4086 /* See if there is enough pinned space to make this reservation */
4087 spin_lock(&space_info->lock);
Josef Bacikb150a4f2013-06-19 15:00:04 -04004088 if (percpu_counter_compare(&space_info->total_bytes_pinned,
4089 bytes) >= 0) {
Josef Bacik663350a2011-11-03 22:54:25 -04004090 spin_unlock(&space_info->lock);
4091 goto commit;
4092 }
4093 spin_unlock(&space_info->lock);
4094
4095 /*
4096 * See if there is some space in the delayed insertion reservation for
4097 * this reservation.
4098 */
4099 if (space_info != delayed_rsv->space_info)
4100 return -ENOSPC;
4101
Liu Bod9b02182012-02-16 18:34:39 +08004102 spin_lock(&space_info->lock);
Josef Bacik663350a2011-11-03 22:54:25 -04004103 spin_lock(&delayed_rsv->lock);
Josef Bacikb150a4f2013-06-19 15:00:04 -04004104 if (percpu_counter_compare(&space_info->total_bytes_pinned,
4105 bytes - delayed_rsv->size) >= 0) {
Josef Bacik663350a2011-11-03 22:54:25 -04004106 spin_unlock(&delayed_rsv->lock);
Liu Bod9b02182012-02-16 18:34:39 +08004107 spin_unlock(&space_info->lock);
Josef Bacik663350a2011-11-03 22:54:25 -04004108 return -ENOSPC;
4109 }
4110 spin_unlock(&delayed_rsv->lock);
Liu Bod9b02182012-02-16 18:34:39 +08004111 spin_unlock(&space_info->lock);
Josef Bacik663350a2011-11-03 22:54:25 -04004112
4113commit:
4114 trans = btrfs_join_transaction(root);
4115 if (IS_ERR(trans))
4116 return -ENOSPC;
4117
4118 return btrfs_commit_transaction(trans, root);
4119}
4120
Josef Bacik96c3f432012-06-21 14:05:49 -04004121enum flush_state {
Josef Bacik67b0fd62012-09-24 13:42:00 -04004122 FLUSH_DELAYED_ITEMS_NR = 1,
4123 FLUSH_DELAYED_ITEMS = 2,
4124 FLUSH_DELALLOC = 3,
4125 FLUSH_DELALLOC_WAIT = 4,
Josef Bacikea658ba2012-09-11 16:57:25 -04004126 ALLOC_CHUNK = 5,
4127 COMMIT_TRANS = 6,
Josef Bacik96c3f432012-06-21 14:05:49 -04004128};
4129
4130static int flush_space(struct btrfs_root *root,
4131 struct btrfs_space_info *space_info, u64 num_bytes,
4132 u64 orig_bytes, int state)
4133{
4134 struct btrfs_trans_handle *trans;
4135 int nr;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004136 int ret = 0;
Josef Bacik96c3f432012-06-21 14:05:49 -04004137
4138 switch (state) {
Josef Bacik96c3f432012-06-21 14:05:49 -04004139 case FLUSH_DELAYED_ITEMS_NR:
4140 case FLUSH_DELAYED_ITEMS:
4141 if (state == FLUSH_DELAYED_ITEMS_NR) {
4142 u64 bytes = btrfs_calc_trans_metadata_size(root, 1);
4143
4144 nr = (int)div64_u64(num_bytes, bytes);
4145 if (!nr)
4146 nr = 1;
4147 nr *= 2;
4148 } else {
4149 nr = -1;
4150 }
4151 trans = btrfs_join_transaction(root);
4152 if (IS_ERR(trans)) {
4153 ret = PTR_ERR(trans);
4154 break;
4155 }
4156 ret = btrfs_run_delayed_items_nr(trans, root, nr);
4157 btrfs_end_transaction(trans, root);
4158 break;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004159 case FLUSH_DELALLOC:
4160 case FLUSH_DELALLOC_WAIT:
4161 shrink_delalloc(root, num_bytes, orig_bytes,
4162 state == FLUSH_DELALLOC_WAIT);
4163 break;
Josef Bacikea658ba2012-09-11 16:57:25 -04004164 case ALLOC_CHUNK:
4165 trans = btrfs_join_transaction(root);
4166 if (IS_ERR(trans)) {
4167 ret = PTR_ERR(trans);
4168 break;
4169 }
4170 ret = do_chunk_alloc(trans, root->fs_info->extent_root,
Josef Bacikea658ba2012-09-11 16:57:25 -04004171 btrfs_get_alloc_profile(root, 0),
4172 CHUNK_ALLOC_NO_FORCE);
4173 btrfs_end_transaction(trans, root);
4174 if (ret == -ENOSPC)
4175 ret = 0;
4176 break;
Josef Bacik96c3f432012-06-21 14:05:49 -04004177 case COMMIT_TRANS:
4178 ret = may_commit_transaction(root, space_info, orig_bytes, 0);
4179 break;
4180 default:
4181 ret = -ENOSPC;
4182 break;
4183 }
4184
4185 return ret;
4186}
Josef Bacik663350a2011-11-03 22:54:25 -04004187/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004188 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
4189 * @root - the root we're allocating for
4190 * @block_rsv - the block_rsv we're allocating for
4191 * @orig_bytes - the number of bytes we want
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04004192 * @flush - whether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004193 *
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004194 * This will reserve orgi_bytes number of bytes from the space info associated
4195 * with the block_rsv. If there is not enough space it will make an attempt to
4196 * flush out space to make room. It will do this by flushing delalloc if
4197 * possible or committing the transaction. If flush is 0 then no attempts to
4198 * regain reservations will be made and this will fail if there is not enough
4199 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004200 */
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004201static int reserve_metadata_bytes(struct btrfs_root *root,
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004202 struct btrfs_block_rsv *block_rsv,
Miao Xie08e007d2012-10-16 11:33:38 +00004203 u64 orig_bytes,
4204 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004205{
4206 struct btrfs_space_info *space_info = block_rsv->space_info;
Josef Bacik2bf64752011-09-26 17:12:22 -04004207 u64 used;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004208 u64 num_bytes = orig_bytes;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004209 int flush_state = FLUSH_DELAYED_ITEMS_NR;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004210 int ret = 0;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004211 bool flushing = false;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004212
4213again:
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004214 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004215 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004216 /*
Miao Xie08e007d2012-10-16 11:33:38 +00004217 * We only want to wait if somebody other than us is flushing and we
4218 * are actually allowed to flush all things.
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004219 */
Miao Xie08e007d2012-10-16 11:33:38 +00004220 while (flush == BTRFS_RESERVE_FLUSH_ALL && !flushing &&
4221 space_info->flush) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004222 spin_unlock(&space_info->lock);
4223 /*
4224 * If we have a trans handle we can't wait because the flusher
4225 * may have to commit the transaction, which would mean we would
4226 * deadlock since we are waiting for the flusher to finish, but
4227 * hold the current transaction open.
4228 */
Josef Bacik663350a2011-11-03 22:54:25 -04004229 if (current->journal_info)
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004230 return -EAGAIN;
Arne Jansenb9688bb2012-04-18 10:27:16 +02004231 ret = wait_event_killable(space_info->wait, !space_info->flush);
4232 /* Must have been killed, return */
4233 if (ret)
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004234 return -EINTR;
4235
4236 spin_lock(&space_info->lock);
4237 }
4238
4239 ret = -ENOSPC;
Josef Bacik2bf64752011-09-26 17:12:22 -04004240 used = space_info->bytes_used + space_info->bytes_reserved +
4241 space_info->bytes_pinned + space_info->bytes_readonly +
4242 space_info->bytes_may_use;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004243
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004244 /*
4245 * The idea here is that we've not already over-reserved the block group
4246 * then we can go ahead and save our reservation first and then start
4247 * flushing if we need to. Otherwise if we've already overcommitted
4248 * lets start flushing stuff first and then come back and try to make
4249 * our reservation.
4250 */
Josef Bacik2bf64752011-09-26 17:12:22 -04004251 if (used <= space_info->total_bytes) {
4252 if (used + orig_bytes <= space_info->total_bytes) {
Josef Bacikfb25e912011-07-26 17:00:46 -04004253 space_info->bytes_may_use += orig_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004254 trace_btrfs_space_reservation(root->fs_info,
Liu Bo2bcc0322012-03-29 09:57:44 -04004255 "space_info", space_info->flags, orig_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004256 ret = 0;
4257 } else {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004258 /*
4259 * Ok set num_bytes to orig_bytes since we aren't
4260 * overocmmitted, this way we only try and reclaim what
4261 * we need.
4262 */
4263 num_bytes = orig_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004264 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004265 } else {
4266 /*
4267 * Ok we're over committed, set num_bytes to the overcommitted
4268 * amount plus the amount of bytes that we need for this
4269 * reservation.
4270 */
Josef Bacik2bf64752011-09-26 17:12:22 -04004271 num_bytes = used - space_info->total_bytes +
Josef Bacik96c3f432012-06-21 14:05:49 -04004272 (orig_bytes * 2);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004273 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004274
Josef Bacik44734ed2012-09-28 16:04:19 -04004275 if (ret && can_overcommit(root, space_info, orig_bytes, flush)) {
4276 space_info->bytes_may_use += orig_bytes;
4277 trace_btrfs_space_reservation(root->fs_info, "space_info",
4278 space_info->flags, orig_bytes,
4279 1);
4280 ret = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04004281 }
4282
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004283 /*
4284 * Couldn't make our reservation, save our place so while we're trying
4285 * to reclaim space we can actually use it instead of somebody else
4286 * stealing it from us.
Miao Xie08e007d2012-10-16 11:33:38 +00004287 *
4288 * We make the other tasks wait for the flush only when we can flush
4289 * all things.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004290 */
Josef Bacik72bcd992012-12-18 15:16:34 -05004291 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004292 flushing = true;
4293 space_info->flush = 1;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004294 }
4295
Yan, Zhengf0486c62010-05-16 10:46:25 -04004296 spin_unlock(&space_info->lock);
4297
Miao Xie08e007d2012-10-16 11:33:38 +00004298 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004299 goto out;
4300
Josef Bacik96c3f432012-06-21 14:05:49 -04004301 ret = flush_space(root, space_info, num_bytes, orig_bytes,
4302 flush_state);
4303 flush_state++;
Miao Xie08e007d2012-10-16 11:33:38 +00004304
4305 /*
4306 * If we are FLUSH_LIMIT, we can not flush delalloc, or the deadlock
4307 * would happen. So skip delalloc flush.
4308 */
4309 if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4310 (flush_state == FLUSH_DELALLOC ||
4311 flush_state == FLUSH_DELALLOC_WAIT))
4312 flush_state = ALLOC_CHUNK;
4313
Josef Bacik96c3f432012-06-21 14:05:49 -04004314 if (!ret)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004315 goto again;
Miao Xie08e007d2012-10-16 11:33:38 +00004316 else if (flush == BTRFS_RESERVE_FLUSH_LIMIT &&
4317 flush_state < COMMIT_TRANS)
4318 goto again;
4319 else if (flush == BTRFS_RESERVE_FLUSH_ALL &&
4320 flush_state <= COMMIT_TRANS)
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004321 goto again;
4322
4323out:
Josef Bacik5d803662013-02-07 16:06:02 -05004324 if (ret == -ENOSPC &&
4325 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
4326 struct btrfs_block_rsv *global_rsv =
4327 &root->fs_info->global_block_rsv;
4328
4329 if (block_rsv != global_rsv &&
4330 !block_rsv_use_bytes(global_rsv, orig_bytes))
4331 ret = 0;
4332 }
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004333 if (flushing) {
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004334 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004335 space_info->flush = 0;
4336 wake_up_all(&space_info->wait);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004337 spin_unlock(&space_info->lock);
4338 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04004339 return ret;
4340}
4341
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004342static struct btrfs_block_rsv *get_block_rsv(
4343 const struct btrfs_trans_handle *trans,
4344 const struct btrfs_root *root)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004345{
Josef Bacik4c13d752011-08-30 11:31:29 -04004346 struct btrfs_block_rsv *block_rsv = NULL;
4347
Josef Bacik0e721102012-06-26 16:13:18 -04004348 if (root->ref_cows)
4349 block_rsv = trans->block_rsv;
4350
4351 if (root == root->fs_info->csum_root && trans->adding_csums)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004352 block_rsv = trans->block_rsv;
Josef Bacik4c13d752011-08-30 11:31:29 -04004353
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02004354 if (root == root->fs_info->uuid_root)
4355 block_rsv = trans->block_rsv;
4356
Josef Bacik4c13d752011-08-30 11:31:29 -04004357 if (!block_rsv)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004358 block_rsv = root->block_rsv;
4359
4360 if (!block_rsv)
4361 block_rsv = &root->fs_info->empty_block_rsv;
4362
4363 return block_rsv;
4364}
4365
4366static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
4367 u64 num_bytes)
4368{
4369 int ret = -ENOSPC;
4370 spin_lock(&block_rsv->lock);
4371 if (block_rsv->reserved >= num_bytes) {
4372 block_rsv->reserved -= num_bytes;
4373 if (block_rsv->reserved < block_rsv->size)
4374 block_rsv->full = 0;
4375 ret = 0;
4376 }
4377 spin_unlock(&block_rsv->lock);
4378 return ret;
4379}
4380
4381static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
4382 u64 num_bytes, int update_size)
4383{
4384 spin_lock(&block_rsv->lock);
4385 block_rsv->reserved += num_bytes;
4386 if (update_size)
4387 block_rsv->size += num_bytes;
4388 else if (block_rsv->reserved >= block_rsv->size)
4389 block_rsv->full = 1;
4390 spin_unlock(&block_rsv->lock);
4391}
4392
Josef Bacikd52be812013-05-29 14:54:47 -04004393int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
4394 struct btrfs_block_rsv *dest, u64 num_bytes,
4395 int min_factor)
4396{
4397 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
4398 u64 min_bytes;
4399
4400 if (global_rsv->space_info != dest->space_info)
4401 return -ENOSPC;
4402
4403 spin_lock(&global_rsv->lock);
4404 min_bytes = div_factor(global_rsv->size, min_factor);
4405 if (global_rsv->reserved < min_bytes + num_bytes) {
4406 spin_unlock(&global_rsv->lock);
4407 return -ENOSPC;
4408 }
4409 global_rsv->reserved -= num_bytes;
4410 if (global_rsv->reserved < global_rsv->size)
4411 global_rsv->full = 0;
4412 spin_unlock(&global_rsv->lock);
4413
4414 block_rsv_add_bytes(dest, num_bytes, 1);
4415 return 0;
4416}
4417
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004418static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
4419 struct btrfs_block_rsv *block_rsv,
David Sterba62a45b62011-04-20 15:52:26 +02004420 struct btrfs_block_rsv *dest, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004421{
4422 struct btrfs_space_info *space_info = block_rsv->space_info;
4423
4424 spin_lock(&block_rsv->lock);
4425 if (num_bytes == (u64)-1)
4426 num_bytes = block_rsv->size;
4427 block_rsv->size -= num_bytes;
4428 if (block_rsv->reserved >= block_rsv->size) {
4429 num_bytes = block_rsv->reserved - block_rsv->size;
4430 block_rsv->reserved = block_rsv->size;
4431 block_rsv->full = 1;
4432 } else {
4433 num_bytes = 0;
4434 }
4435 spin_unlock(&block_rsv->lock);
4436
4437 if (num_bytes > 0) {
4438 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00004439 spin_lock(&dest->lock);
4440 if (!dest->full) {
4441 u64 bytes_to_add;
4442
4443 bytes_to_add = dest->size - dest->reserved;
4444 bytes_to_add = min(num_bytes, bytes_to_add);
4445 dest->reserved += bytes_to_add;
4446 if (dest->reserved >= dest->size)
4447 dest->full = 1;
4448 num_bytes -= bytes_to_add;
4449 }
4450 spin_unlock(&dest->lock);
4451 }
4452 if (num_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04004453 spin_lock(&space_info->lock);
Josef Bacikfb25e912011-07-26 17:00:46 -04004454 space_info->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004455 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004456 space_info->flags, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004457 spin_unlock(&space_info->lock);
4458 }
4459 }
4460}
4461
4462static int block_rsv_migrate_bytes(struct btrfs_block_rsv *src,
4463 struct btrfs_block_rsv *dst, u64 num_bytes)
4464{
4465 int ret;
4466
4467 ret = block_rsv_use_bytes(src, num_bytes);
4468 if (ret)
4469 return ret;
4470
4471 block_rsv_add_bytes(dst, num_bytes, 1);
4472 return 0;
4473}
4474
Miao Xie66d8f3d2012-09-06 04:02:28 -06004475void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004476{
4477 memset(rsv, 0, sizeof(*rsv));
4478 spin_lock_init(&rsv->lock);
Miao Xie66d8f3d2012-09-06 04:02:28 -06004479 rsv->type = type;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004480}
4481
Miao Xie66d8f3d2012-09-06 04:02:28 -06004482struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_root *root,
4483 unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004484{
4485 struct btrfs_block_rsv *block_rsv;
4486 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004487
4488 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
4489 if (!block_rsv)
4490 return NULL;
4491
Miao Xie66d8f3d2012-09-06 04:02:28 -06004492 btrfs_init_block_rsv(block_rsv, type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004493 block_rsv->space_info = __find_space_info(fs_info,
4494 BTRFS_BLOCK_GROUP_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004495 return block_rsv;
4496}
4497
4498void btrfs_free_block_rsv(struct btrfs_root *root,
4499 struct btrfs_block_rsv *rsv)
4500{
Josef Bacik2aaa6652012-08-29 14:27:18 -04004501 if (!rsv)
4502 return;
Josef Bacikdabdb642011-08-08 12:50:18 -04004503 btrfs_block_rsv_release(root, rsv, (u64)-1);
4504 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004505}
4506
Miao Xie08e007d2012-10-16 11:33:38 +00004507int btrfs_block_rsv_add(struct btrfs_root *root,
4508 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
4509 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004510{
4511 int ret;
4512
4513 if (num_bytes == 0)
4514 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004515
Miao Xie61b520a2011-11-10 20:45:05 -05004516 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004517 if (!ret) {
4518 block_rsv_add_bytes(block_rsv, num_bytes, 1);
4519 return 0;
4520 }
4521
Yan, Zhengf0486c62010-05-16 10:46:25 -04004522 return ret;
4523}
4524
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004525int btrfs_block_rsv_check(struct btrfs_root *root,
Josef Bacik36ba0222011-10-18 12:15:48 -04004526 struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004527{
4528 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004529 int ret = -ENOSPC;
4530
4531 if (!block_rsv)
4532 return 0;
4533
4534 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04004535 num_bytes = div_factor(block_rsv->size, min_factor);
4536 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004537 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004538 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004539
Josef Bacik36ba0222011-10-18 12:15:48 -04004540 return ret;
4541}
4542
Miao Xie08e007d2012-10-16 11:33:38 +00004543int btrfs_block_rsv_refill(struct btrfs_root *root,
4544 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
4545 enum btrfs_reserve_flush_enum flush)
Josef Bacik36ba0222011-10-18 12:15:48 -04004546{
4547 u64 num_bytes = 0;
4548 int ret = -ENOSPC;
4549
4550 if (!block_rsv)
4551 return 0;
4552
4553 spin_lock(&block_rsv->lock);
4554 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04004555 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04004556 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04004557 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04004558 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004559 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04004560
Yan, Zhengf0486c62010-05-16 10:46:25 -04004561 if (!ret)
4562 return 0;
4563
Miao Xieaa38a712011-11-18 17:43:00 +08004564 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Josef Bacikdabdb642011-08-08 12:50:18 -04004565 if (!ret) {
4566 block_rsv_add_bytes(block_rsv, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004567 return 0;
4568 }
4569
Josef Bacik13553e52011-08-08 13:33:21 -04004570 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004571}
4572
4573int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src_rsv,
4574 struct btrfs_block_rsv *dst_rsv,
4575 u64 num_bytes)
4576{
4577 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
4578}
4579
4580void btrfs_block_rsv_release(struct btrfs_root *root,
4581 struct btrfs_block_rsv *block_rsv,
4582 u64 num_bytes)
4583{
4584 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
4585 if (global_rsv->full || global_rsv == block_rsv ||
4586 block_rsv->space_info != global_rsv->space_info)
4587 global_rsv = NULL;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004588 block_rsv_release_bytes(root->fs_info, block_rsv, global_rsv,
4589 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04004590}
4591
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004592/*
4593 * helper to calculate size of global block reservation.
4594 * the desired value is sum of space used by extent tree,
4595 * checksum tree and root tree
4596 */
4597static u64 calc_global_metadata_size(struct btrfs_fs_info *fs_info)
4598{
4599 struct btrfs_space_info *sinfo;
4600 u64 num_bytes;
4601 u64 meta_used;
4602 u64 data_used;
David Sterba6c417612011-04-13 15:41:04 +02004603 int csum_size = btrfs_super_csum_size(fs_info->super_copy);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004604
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004605 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_DATA);
4606 spin_lock(&sinfo->lock);
4607 data_used = sinfo->bytes_used;
4608 spin_unlock(&sinfo->lock);
4609
4610 sinfo = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4611 spin_lock(&sinfo->lock);
Josef Bacik6d487552010-10-15 15:13:32 -04004612 if (sinfo->flags & BTRFS_BLOCK_GROUP_DATA)
4613 data_used = 0;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004614 meta_used = sinfo->bytes_used;
4615 spin_unlock(&sinfo->lock);
4616
4617 num_bytes = (data_used >> fs_info->sb->s_blocksize_bits) *
4618 csum_size * 2;
4619 num_bytes += div64_u64(data_used + meta_used, 50);
4620
4621 if (num_bytes * 3 > meta_used)
Chris Mason8e62c2d2012-04-12 13:46:48 -04004622 num_bytes = div64_u64(meta_used, 3);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004623
4624 return ALIGN(num_bytes, fs_info->extent_root->leafsize << 10);
4625}
4626
4627static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
4628{
4629 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
4630 struct btrfs_space_info *sinfo = block_rsv->space_info;
4631 u64 num_bytes;
4632
4633 num_bytes = calc_global_metadata_size(fs_info);
4634
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004635 spin_lock(&sinfo->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04004636 spin_lock(&block_rsv->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004637
Josef Bacikfdf30d12013-03-26 15:31:45 -04004638 block_rsv->size = min_t(u64, num_bytes, 512 * 1024 * 1024);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004639
4640 num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
Josef Bacik6d487552010-10-15 15:13:32 -04004641 sinfo->bytes_reserved + sinfo->bytes_readonly +
4642 sinfo->bytes_may_use;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004643
4644 if (sinfo->total_bytes > num_bytes) {
4645 num_bytes = sinfo->total_bytes - num_bytes;
4646 block_rsv->reserved += num_bytes;
Josef Bacikfb25e912011-07-26 17:00:46 -04004647 sinfo->bytes_may_use += num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004648 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004649 sinfo->flags, num_bytes, 1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004650 }
4651
4652 if (block_rsv->reserved >= block_rsv->size) {
4653 num_bytes = block_rsv->reserved - block_rsv->size;
Josef Bacikfb25e912011-07-26 17:00:46 -04004654 sinfo->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004655 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004656 sinfo->flags, num_bytes, 0);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004657 block_rsv->reserved = block_rsv->size;
4658 block_rsv->full = 1;
4659 }
David Sterba182608c2011-05-05 13:13:16 +02004660
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004661 spin_unlock(&block_rsv->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04004662 spin_unlock(&sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004663}
4664
Yan, Zhengf0486c62010-05-16 10:46:25 -04004665static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
4666{
4667 struct btrfs_space_info *space_info;
4668
4669 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4670 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004671
4672 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004673 fs_info->global_block_rsv.space_info = space_info;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004674 fs_info->delalloc_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004675 fs_info->trans_block_rsv.space_info = space_info;
4676 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04004677 fs_info->delayed_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004678
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004679 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
4680 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
4681 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
4682 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Stefan Behrens3a6cad92013-05-16 14:48:19 +00004683 if (fs_info->quota_root)
4684 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004685 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004686
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004687 update_global_block_rsv(fs_info);
4688}
4689
4690static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
4691{
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004692 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
4693 (u64)-1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04004694 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
4695 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
4696 WARN_ON(fs_info->trans_block_rsv.size > 0);
4697 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
4698 WARN_ON(fs_info->chunk_block_rsv.size > 0);
4699 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04004700 WARN_ON(fs_info->delayed_block_rsv.size > 0);
4701 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04004702}
4703
Yan, Zhenga22285a2010-05-16 10:48:46 -04004704void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
4705 struct btrfs_root *root)
4706{
Josef Bacik0e721102012-06-26 16:13:18 -04004707 if (!trans->block_rsv)
4708 return;
4709
Yan, Zhenga22285a2010-05-16 10:48:46 -04004710 if (!trans->bytes_reserved)
4711 return;
4712
Chris Masone77266e2012-02-24 10:39:05 -05004713 trace_btrfs_space_reservation(root->fs_info, "transaction",
Liu Bo2bcc0322012-03-29 09:57:44 -04004714 trans->transid, trans->bytes_reserved, 0);
Josef Bacikb24e03d2011-10-14 14:40:17 -04004715 btrfs_block_rsv_release(root, trans->block_rsv, trans->bytes_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004716 trans->bytes_reserved = 0;
4717}
4718
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004719/* Can only return 0 or -ENOSPC */
Yan, Zhengd68fc572010-05-16 10:49:58 -04004720int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
4721 struct inode *inode)
4722{
4723 struct btrfs_root *root = BTRFS_I(inode)->root;
4724 struct btrfs_block_rsv *src_rsv = get_block_rsv(trans, root);
4725 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
4726
4727 /*
Josef Bacikfcb80c22011-05-03 10:40:22 -04004728 * We need to hold space in order to delete our orphan item once we've
4729 * added it, so this takes the reservation so we can release it later
4730 * when we are truly done with the orphan item.
Yan, Zhengd68fc572010-05-16 10:49:58 -04004731 */
Chris Masonff5714c2011-05-28 07:00:39 -04004732 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004733 trace_btrfs_space_reservation(root->fs_info, "orphan",
4734 btrfs_ino(inode), num_bytes, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04004735 return block_rsv_migrate_bytes(src_rsv, dst_rsv, num_bytes);
4736}
4737
4738void btrfs_orphan_release_metadata(struct inode *inode)
4739{
4740 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonff5714c2011-05-28 07:00:39 -04004741 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 1);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004742 trace_btrfs_space_reservation(root->fs_info, "orphan",
4743 btrfs_ino(inode), num_bytes, 0);
Yan, Zhengd68fc572010-05-16 10:49:58 -04004744 btrfs_block_rsv_release(root, root->orphan_block_rsv, num_bytes);
4745}
4746
Miao Xied5c12072013-02-28 10:04:33 +00004747/*
4748 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
4749 * root: the root of the parent directory
4750 * rsv: block reservation
4751 * items: the number of items that we need do reservation
4752 * qgroup_reserved: used to return the reserved size in qgroup
4753 *
4754 * This function is used to reserve the space for snapshot/subvolume
4755 * creation and deletion. Those operations are different with the
4756 * common file/directory operations, they change two fs/file trees
4757 * and root tree, the number of items that the qgroup reserves is
4758 * different with the free space reservation. So we can not use
4759 * the space reseravtion mechanism in start_transaction().
4760 */
4761int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
4762 struct btrfs_block_rsv *rsv,
4763 int items,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04004764 u64 *qgroup_reserved,
4765 bool use_global_rsv)
Yan, Zhenga22285a2010-05-16 10:48:46 -04004766{
Miao Xied5c12072013-02-28 10:04:33 +00004767 u64 num_bytes;
4768 int ret;
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04004769 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Miao Xied5c12072013-02-28 10:04:33 +00004770
4771 if (root->fs_info->quota_enabled) {
4772 /* One for parent inode, two for dir entries */
4773 num_bytes = 3 * root->leafsize;
4774 ret = btrfs_qgroup_reserve(root, num_bytes);
4775 if (ret)
4776 return ret;
4777 } else {
4778 num_bytes = 0;
4779 }
4780
4781 *qgroup_reserved = num_bytes;
4782
4783 num_bytes = btrfs_calc_trans_metadata_size(root, items);
4784 rsv->space_info = __find_space_info(root->fs_info,
4785 BTRFS_BLOCK_GROUP_METADATA);
4786 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
4787 BTRFS_RESERVE_FLUSH_ALL);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04004788
4789 if (ret == -ENOSPC && use_global_rsv)
4790 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes);
4791
Miao Xied5c12072013-02-28 10:04:33 +00004792 if (ret) {
4793 if (*qgroup_reserved)
4794 btrfs_qgroup_free(root, *qgroup_reserved);
4795 }
4796
4797 return ret;
4798}
4799
4800void btrfs_subvolume_release_metadata(struct btrfs_root *root,
4801 struct btrfs_block_rsv *rsv,
4802 u64 qgroup_reserved)
4803{
4804 btrfs_block_rsv_release(root, rsv, (u64)-1);
4805 if (qgroup_reserved)
4806 btrfs_qgroup_free(root, qgroup_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004807}
4808
Josef Bacik7709cde2011-08-04 10:25:02 -04004809/**
4810 * drop_outstanding_extent - drop an outstanding extent
4811 * @inode: the inode we're dropping the extent for
4812 *
4813 * This is called when we are freeing up an outstanding extent, either called
4814 * after an error or after an extent is written. This will return the number of
4815 * reserved extents that need to be freed. This must be called with
4816 * BTRFS_I(inode)->lock held.
4817 */
Josef Bacik9e0baf62011-07-15 15:16:44 +00004818static unsigned drop_outstanding_extent(struct inode *inode)
4819{
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004820 unsigned drop_inode_space = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004821 unsigned dropped_extents = 0;
4822
Josef Bacik9e0baf62011-07-15 15:16:44 +00004823 BUG_ON(!BTRFS_I(inode)->outstanding_extents);
4824 BTRFS_I(inode)->outstanding_extents--;
4825
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004826 if (BTRFS_I(inode)->outstanding_extents == 0 &&
Josef Bacik72ac3c02012-05-23 14:13:11 -04004827 test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
4828 &BTRFS_I(inode)->runtime_flags))
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004829 drop_inode_space = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004830
Josef Bacik9e0baf62011-07-15 15:16:44 +00004831 /*
4832 * If we have more or the same amount of outsanding extents than we have
4833 * reserved then we need to leave the reserved extents count alone.
4834 */
4835 if (BTRFS_I(inode)->outstanding_extents >=
4836 BTRFS_I(inode)->reserved_extents)
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004837 return drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004838
4839 dropped_extents = BTRFS_I(inode)->reserved_extents -
4840 BTRFS_I(inode)->outstanding_extents;
4841 BTRFS_I(inode)->reserved_extents -= dropped_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004842 return dropped_extents + drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004843}
4844
Josef Bacik7709cde2011-08-04 10:25:02 -04004845/**
4846 * calc_csum_metadata_size - return the amount of metada space that must be
4847 * reserved/free'd for the given bytes.
4848 * @inode: the inode we're manipulating
4849 * @num_bytes: the number of bytes in question
4850 * @reserve: 1 if we are reserving space, 0 if we are freeing space
4851 *
4852 * This adjusts the number of csum_bytes in the inode and then returns the
4853 * correct amount of metadata that must either be reserved or freed. We
4854 * calculate how many checksums we can fit into one leaf and then divide the
4855 * number of bytes that will need to be checksumed by this value to figure out
4856 * how many checksums will be required. If we are adding bytes then the number
4857 * may go up and we will return the number of additional bytes that must be
4858 * reserved. If it is going down we will return the number of bytes that must
4859 * be freed.
4860 *
4861 * This must be called with BTRFS_I(inode)->lock held.
4862 */
4863static u64 calc_csum_metadata_size(struct inode *inode, u64 num_bytes,
4864 int reserve)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004865{
Josef Bacik7709cde2011-08-04 10:25:02 -04004866 struct btrfs_root *root = BTRFS_I(inode)->root;
4867 u64 csum_size;
4868 int num_csums_per_leaf;
4869 int num_csums;
4870 int old_csums;
4871
4872 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM &&
4873 BTRFS_I(inode)->csum_bytes == 0)
4874 return 0;
4875
4876 old_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize);
4877 if (reserve)
4878 BTRFS_I(inode)->csum_bytes += num_bytes;
4879 else
4880 BTRFS_I(inode)->csum_bytes -= num_bytes;
4881 csum_size = BTRFS_LEAF_DATA_SIZE(root) - sizeof(struct btrfs_item);
4882 num_csums_per_leaf = (int)div64_u64(csum_size,
4883 sizeof(struct btrfs_csum_item) +
4884 sizeof(struct btrfs_disk_key));
4885 num_csums = (int)div64_u64(BTRFS_I(inode)->csum_bytes, root->sectorsize);
4886 num_csums = num_csums + num_csums_per_leaf - 1;
4887 num_csums = num_csums / num_csums_per_leaf;
4888
4889 old_csums = old_csums + num_csums_per_leaf - 1;
4890 old_csums = old_csums / num_csums_per_leaf;
4891
4892 /* No change, no need to reserve more */
4893 if (old_csums == num_csums)
4894 return 0;
4895
4896 if (reserve)
4897 return btrfs_calc_trans_metadata_size(root,
4898 num_csums - old_csums);
4899
4900 return btrfs_calc_trans_metadata_size(root, old_csums - num_csums);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004901}
4902
4903int btrfs_delalloc_reserve_metadata(struct inode *inode, u64 num_bytes)
4904{
4905 struct btrfs_root *root = BTRFS_I(inode)->root;
4906 struct btrfs_block_rsv *block_rsv = &root->fs_info->delalloc_block_rsv;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004907 u64 to_reserve = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05004908 u64 csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004909 unsigned nr_extents = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05004910 int extra_reserve = 0;
Miao Xie08e007d2012-10-16 11:33:38 +00004911 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
Jan Schmidteb6b88d2013-01-27 23:26:00 -07004912 int ret = 0;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05004913 bool delalloc_lock = true;
Wang Shilong88e081bf2013-03-01 11:36:01 +00004914 u64 to_free = 0;
4915 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004916
Josef Bacikc64c2bd2012-12-14 13:48:14 -05004917 /* If we are a free space inode we need to not flush since we will be in
4918 * the middle of a transaction commit. We also don't need the delalloc
4919 * mutex since we won't race with anybody. We need this mostly to make
4920 * lockdep shut its filthy mouth.
4921 */
4922 if (btrfs_is_free_space_inode(inode)) {
Miao Xie08e007d2012-10-16 11:33:38 +00004923 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05004924 delalloc_lock = false;
4925 }
Josef Bacikc09544e2011-08-30 10:19:10 -04004926
Miao Xie08e007d2012-10-16 11:33:38 +00004927 if (flush != BTRFS_RESERVE_NO_FLUSH &&
4928 btrfs_transaction_in_commit(root->fs_info))
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004929 schedule_timeout(1);
4930
Josef Bacikc64c2bd2012-12-14 13:48:14 -05004931 if (delalloc_lock)
4932 mutex_lock(&BTRFS_I(inode)->delalloc_mutex);
4933
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004934 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004935
Josef Bacik9e0baf62011-07-15 15:16:44 +00004936 spin_lock(&BTRFS_I(inode)->lock);
4937 BTRFS_I(inode)->outstanding_extents++;
Josef Bacik57a45ced2011-01-25 16:30:38 -05004938
Josef Bacik9e0baf62011-07-15 15:16:44 +00004939 if (BTRFS_I(inode)->outstanding_extents >
Josef Bacik660d3f62011-12-09 11:18:51 -05004940 BTRFS_I(inode)->reserved_extents)
Josef Bacik9e0baf62011-07-15 15:16:44 +00004941 nr_extents = BTRFS_I(inode)->outstanding_extents -
4942 BTRFS_I(inode)->reserved_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004943
4944 /*
4945 * Add an item to reserve for updating the inode when we complete the
4946 * delalloc io.
4947 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04004948 if (!test_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
4949 &BTRFS_I(inode)->runtime_flags)) {
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004950 nr_extents++;
Josef Bacik660d3f62011-12-09 11:18:51 -05004951 extra_reserve = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05004952 }
4953
4954 to_reserve = btrfs_calc_trans_metadata_size(root, nr_extents);
Josef Bacik7709cde2011-08-04 10:25:02 -04004955 to_reserve += calc_csum_metadata_size(inode, num_bytes, 1);
Josef Bacik660d3f62011-12-09 11:18:51 -05004956 csum_bytes = BTRFS_I(inode)->csum_bytes;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004957 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05004958
Wang Shilong88e081bf2013-03-01 11:36:01 +00004959 if (root->fs_info->quota_enabled) {
Arne Jansenc5567232011-09-14 15:44:05 +02004960 ret = btrfs_qgroup_reserve(root, num_bytes +
4961 nr_extents * root->leafsize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00004962 if (ret)
4963 goto out_fail;
Wang Shilonga9870c02013-03-01 11:33:01 +00004964 }
Arne Jansenc5567232011-09-14 15:44:05 +02004965
Wang Shilong88e081bf2013-03-01 11:36:01 +00004966 ret = reserve_metadata_bytes(root, block_rsv, to_reserve, flush);
4967 if (unlikely(ret)) {
4968 if (root->fs_info->quota_enabled)
Miao Xie4b5829a2012-12-05 10:53:25 +00004969 btrfs_qgroup_free(root, num_bytes +
4970 nr_extents * root->leafsize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00004971 goto out_fail;
Josef Bacik9e0baf62011-07-15 15:16:44 +00004972 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004973
Josef Bacik660d3f62011-12-09 11:18:51 -05004974 spin_lock(&BTRFS_I(inode)->lock);
4975 if (extra_reserve) {
Josef Bacik72ac3c02012-05-23 14:13:11 -04004976 set_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
4977 &BTRFS_I(inode)->runtime_flags);
Josef Bacik660d3f62011-12-09 11:18:51 -05004978 nr_extents--;
4979 }
4980 BTRFS_I(inode)->reserved_extents += nr_extents;
4981 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05004982
4983 if (delalloc_lock)
4984 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
Josef Bacik660d3f62011-12-09 11:18:51 -05004985
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05004986 if (to_reserve)
4987 trace_btrfs_space_reservation(root->fs_info,"delalloc",
4988 btrfs_ino(inode), to_reserve, 1);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004989 block_rsv_add_bytes(block_rsv, to_reserve, 1);
4990
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004991 return 0;
Wang Shilong88e081bf2013-03-01 11:36:01 +00004992
4993out_fail:
4994 spin_lock(&BTRFS_I(inode)->lock);
4995 dropped = drop_outstanding_extent(inode);
4996 /*
4997 * If the inodes csum_bytes is the same as the original
4998 * csum_bytes then we know we haven't raced with any free()ers
4999 * so we can just reduce our inodes csum bytes and carry on.
Wang Shilong88e081bf2013-03-01 11:36:01 +00005000 */
Josef Bacikf4881bc2013-03-25 16:03:35 -04005001 if (BTRFS_I(inode)->csum_bytes == csum_bytes) {
Wang Shilong88e081bf2013-03-01 11:36:01 +00005002 calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacikf4881bc2013-03-25 16:03:35 -04005003 } else {
5004 u64 orig_csum_bytes = BTRFS_I(inode)->csum_bytes;
5005 u64 bytes;
5006
5007 /*
5008 * This is tricky, but first we need to figure out how much we
5009 * free'd from any free-ers that occured during this
5010 * reservation, so we reset ->csum_bytes to the csum_bytes
5011 * before we dropped our lock, and then call the free for the
5012 * number of bytes that were freed while we were trying our
5013 * reservation.
5014 */
5015 bytes = csum_bytes - BTRFS_I(inode)->csum_bytes;
5016 BTRFS_I(inode)->csum_bytes = csum_bytes;
5017 to_free = calc_csum_metadata_size(inode, bytes, 0);
5018
5019
5020 /*
5021 * Now we need to see how much we would have freed had we not
5022 * been making this reservation and our ->csum_bytes were not
5023 * artificially inflated.
5024 */
5025 BTRFS_I(inode)->csum_bytes = csum_bytes - num_bytes;
5026 bytes = csum_bytes - orig_csum_bytes;
5027 bytes = calc_csum_metadata_size(inode, bytes, 0);
5028
5029 /*
5030 * Now reset ->csum_bytes to what it should be. If bytes is
5031 * more than to_free then we would have free'd more space had we
5032 * not had an artificially high ->csum_bytes, so we need to free
5033 * the remainder. If bytes is the same or less then we don't
5034 * need to do anything, the other free-ers did the correct
5035 * thing.
5036 */
5037 BTRFS_I(inode)->csum_bytes = orig_csum_bytes - num_bytes;
5038 if (bytes > to_free)
5039 to_free = bytes - to_free;
5040 else
5041 to_free = 0;
5042 }
Wang Shilong88e081bf2013-03-01 11:36:01 +00005043 spin_unlock(&BTRFS_I(inode)->lock);
5044 if (dropped)
5045 to_free += btrfs_calc_trans_metadata_size(root, dropped);
5046
5047 if (to_free) {
5048 btrfs_block_rsv_release(root, block_rsv, to_free);
5049 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5050 btrfs_ino(inode), to_free, 0);
5051 }
5052 if (delalloc_lock)
5053 mutex_unlock(&BTRFS_I(inode)->delalloc_mutex);
5054 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005055}
5056
Josef Bacik7709cde2011-08-04 10:25:02 -04005057/**
5058 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
5059 * @inode: the inode to release the reservation for
5060 * @num_bytes: the number of bytes we're releasing
5061 *
5062 * This will release the metadata reservation for an inode. This can be called
5063 * once we complete IO for a given set of bytes to release their metadata
5064 * reservations.
5065 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005066void btrfs_delalloc_release_metadata(struct inode *inode, u64 num_bytes)
5067{
5068 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005069 u64 to_free = 0;
5070 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005071
5072 num_bytes = ALIGN(num_bytes, root->sectorsize);
Josef Bacik7709cde2011-08-04 10:25:02 -04005073 spin_lock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00005074 dropped = drop_outstanding_extent(inode);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005075
Miao Xie09348562013-02-07 10:12:07 +00005076 if (num_bytes)
5077 to_free = calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacik7709cde2011-08-04 10:25:02 -04005078 spin_unlock(&BTRFS_I(inode)->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00005079 if (dropped > 0)
5080 to_free += btrfs_calc_trans_metadata_size(root, dropped);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005081
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005082 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5083 btrfs_ino(inode), to_free, 0);
Arne Jansenc5567232011-09-14 15:44:05 +02005084 if (root->fs_info->quota_enabled) {
5085 btrfs_qgroup_free(root, num_bytes +
5086 dropped * root->leafsize);
5087 }
5088
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005089 btrfs_block_rsv_release(root, &root->fs_info->delalloc_block_rsv,
5090 to_free);
5091}
5092
Josef Bacik7709cde2011-08-04 10:25:02 -04005093/**
5094 * btrfs_delalloc_reserve_space - reserve data and metadata space for delalloc
5095 * @inode: inode we're writing to
5096 * @num_bytes: the number of bytes we want to allocate
5097 *
5098 * This will do the following things
5099 *
5100 * o reserve space in the data space info for num_bytes
5101 * o reserve space in the metadata space info based on number of outstanding
5102 * extents and how much csums will be needed
5103 * o add to the inodes ->delalloc_bytes
5104 * o add it to the fs_info's delalloc inodes list.
5105 *
5106 * This will return 0 for success and -ENOSPC if there is no space left.
5107 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005108int btrfs_delalloc_reserve_space(struct inode *inode, u64 num_bytes)
5109{
5110 int ret;
5111
5112 ret = btrfs_check_data_free_space(inode, num_bytes);
5113 if (ret)
5114 return ret;
5115
5116 ret = btrfs_delalloc_reserve_metadata(inode, num_bytes);
5117 if (ret) {
5118 btrfs_free_reserved_data_space(inode, num_bytes);
5119 return ret;
5120 }
5121
5122 return 0;
5123}
5124
Josef Bacik7709cde2011-08-04 10:25:02 -04005125/**
5126 * btrfs_delalloc_release_space - release data and metadata space for delalloc
5127 * @inode: inode we're releasing space for
5128 * @num_bytes: the number of bytes we want to free up
5129 *
5130 * This must be matched with a call to btrfs_delalloc_reserve_space. This is
5131 * called in the case that we don't need the metadata AND data reservations
5132 * anymore. So if there is an error or we insert an inline extent.
5133 *
5134 * This function will release the metadata space that was not used and will
5135 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
5136 * list if there are no delalloc bytes left.
5137 */
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005138void btrfs_delalloc_release_space(struct inode *inode, u64 num_bytes)
5139{
5140 btrfs_delalloc_release_metadata(inode, num_bytes);
5141 btrfs_free_reserved_data_space(inode, num_bytes);
5142}
5143
Liu Boc53d6132012-12-27 09:01:19 +00005144static int update_block_group(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005145 u64 bytenr, u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04005146{
Josef Bacik0af3d002010-06-21 14:48:16 -04005147 struct btrfs_block_group_cache *cache = NULL;
Chris Mason9078a3e2007-04-26 16:46:15 -04005148 struct btrfs_fs_info *info = root->fs_info;
Chris Masondb945352007-10-15 16:15:53 -04005149 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005150 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04005151 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04005152 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04005153
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005154 /* block accounting for super block */
Miao Xieeb73c1b2013-05-15 07:48:22 +00005155 spin_lock(&info->delalloc_root_lock);
David Sterba6c417612011-04-13 15:41:04 +02005156 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005157 if (alloc)
5158 old_val += num_bytes;
5159 else
5160 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02005161 btrfs_set_super_bytes_used(info->super_copy, old_val);
Miao Xieeb73c1b2013-05-15 07:48:22 +00005162 spin_unlock(&info->delalloc_root_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005163
Chris Masond3977122009-01-05 21:25:51 -05005164 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04005165 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05005166 if (!cache)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005167 return -ENOENT;
Yan, Zhengb742bb822010-05-16 10:46:24 -04005168 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
5169 BTRFS_BLOCK_GROUP_RAID1 |
5170 BTRFS_BLOCK_GROUP_RAID10))
5171 factor = 2;
5172 else
5173 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04005174 /*
5175 * If this block group has free space cache written out, we
5176 * need to make sure to load it if we are removing space. This
5177 * is because we need the unpinning stage to actually add the
5178 * space back to the block group, otherwise we will leak space.
5179 */
5180 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Liu Bof6373bf2012-12-27 09:01:18 +00005181 cache_block_group(cache, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04005182
Chris Masondb945352007-10-15 16:15:53 -04005183 byte_in_group = bytenr - cache->key.objectid;
5184 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04005185
Josef Bacik25179202008-10-29 14:49:05 -04005186 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04005187 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04005188
Josef Bacik73bc1872011-10-03 14:07:49 -04005189 if (btrfs_test_opt(root, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04005190 cache->disk_cache_state < BTRFS_DC_CLEAR)
5191 cache->disk_cache_state = BTRFS_DC_CLEAR;
5192
Josef Bacik0f9dd462008-09-23 13:14:11 -04005193 cache->dirty = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04005194 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04005195 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04005196 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04005197 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04005198 btrfs_set_block_group_used(&cache->item, old_val);
5199 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04005200 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb822010-05-16 10:46:24 -04005201 cache->space_info->bytes_used += num_bytes;
5202 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04005203 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005204 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04005205 } else {
Chris Masondb945352007-10-15 16:15:53 -04005206 old_val -= num_bytes;
Chris Masonc286ac42008-07-22 23:06:41 -04005207 btrfs_set_block_group_used(&cache->item, old_val);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005208 cache->pinned += num_bytes;
5209 cache->space_info->bytes_pinned += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005210 cache->space_info->bytes_used -= num_bytes;
Yan, Zhengb742bb822010-05-16 10:46:24 -04005211 cache->space_info->disk_used -= num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04005212 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005213 spin_unlock(&cache->space_info->lock);
Liu Hui1f3c79a2009-01-05 15:57:51 -05005214
Yan, Zhengf0486c62010-05-16 10:46:25 -04005215 set_extent_dirty(info->pinned_extents,
5216 bytenr, bytenr + num_bytes - 1,
5217 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04005218 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04005219 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04005220 total -= num_bytes;
5221 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04005222 }
5223 return 0;
5224}
Chris Mason6324fbf2008-03-24 15:01:59 -04005225
Chris Masona061fc82008-05-07 11:43:44 -04005226static u64 first_logical_byte(struct btrfs_root *root, u64 search_start)
5227{
Josef Bacik0f9dd462008-09-23 13:14:11 -04005228 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05005229 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005230
Liu Boa1897fd2012-12-27 09:01:23 +00005231 spin_lock(&root->fs_info->block_group_cache_lock);
5232 bytenr = root->fs_info->first_logical_byte;
5233 spin_unlock(&root->fs_info->block_group_cache_lock);
5234
5235 if (bytenr < (u64)-1)
5236 return bytenr;
5237
Josef Bacik0f9dd462008-09-23 13:14:11 -04005238 cache = btrfs_lookup_first_block_group(root->fs_info, search_start);
5239 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04005240 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04005241
Yan Zhengd2fb3432008-12-11 16:30:39 -05005242 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04005243 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05005244
5245 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04005246}
5247
Yan, Zhengf0486c62010-05-16 10:46:25 -04005248static int pin_down_extent(struct btrfs_root *root,
5249 struct btrfs_block_group_cache *cache,
5250 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05005251{
Yan Zheng11833d62009-09-11 16:11:19 -04005252 spin_lock(&cache->space_info->lock);
5253 spin_lock(&cache->lock);
5254 cache->pinned += num_bytes;
5255 cache->space_info->bytes_pinned += num_bytes;
5256 if (reserved) {
5257 cache->reserved -= num_bytes;
5258 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05005259 }
Yan Zheng11833d62009-09-11 16:11:19 -04005260 spin_unlock(&cache->lock);
5261 spin_unlock(&cache->space_info->lock);
5262
Yan, Zhengf0486c62010-05-16 10:46:25 -04005263 set_extent_dirty(root->fs_info->pinned_extents, bytenr,
5264 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Josef Bacik0be5dc62013-10-07 15:18:52 -04005265 if (reserved)
5266 trace_btrfs_reserved_extent_free(root, bytenr, num_bytes);
Yan324ae4d2007-11-16 14:57:08 -05005267 return 0;
5268}
Chris Mason9078a3e2007-04-26 16:46:15 -04005269
Yan, Zhengf0486c62010-05-16 10:46:25 -04005270/*
5271 * this function must be called within transaction
5272 */
5273int btrfs_pin_extent(struct btrfs_root *root,
5274 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04005275{
Yan, Zhengf0486c62010-05-16 10:46:25 -04005276 struct btrfs_block_group_cache *cache;
5277
5278 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005279 BUG_ON(!cache); /* Logic error */
Yan, Zhengf0486c62010-05-16 10:46:25 -04005280
5281 pin_down_extent(root, cache, bytenr, num_bytes, reserved);
5282
5283 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04005284 return 0;
5285}
Zheng Yane8569812008-09-26 10:05:48 -04005286
Yan, Zhengf0486c62010-05-16 10:46:25 -04005287/*
Chris Masone688b7252011-10-31 20:52:39 -04005288 * this function must be called within transaction
Yan, Zhengf0486c62010-05-16 10:46:25 -04005289 */
Liu Bodcfac412012-12-27 09:01:20 +00005290int btrfs_pin_extent_for_log_replay(struct btrfs_root *root,
Chris Masone688b7252011-10-31 20:52:39 -04005291 u64 bytenr, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005292{
Chris Masone688b7252011-10-31 20:52:39 -04005293 struct btrfs_block_group_cache *cache;
Josef Bacikb50c6e22013-04-25 15:55:30 -04005294 int ret;
Chris Masone688b7252011-10-31 20:52:39 -04005295
5296 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005297 if (!cache)
5298 return -EINVAL;
Chris Masone688b7252011-10-31 20:52:39 -04005299
5300 /*
5301 * pull in the free space cache (if any) so that our pin
5302 * removes the free space from the cache. We have load_only set
5303 * to one because the slow code to read in the free extents does check
5304 * the pinned extents.
5305 */
Liu Bof6373bf2012-12-27 09:01:18 +00005306 cache_block_group(cache, 1);
Chris Masone688b7252011-10-31 20:52:39 -04005307
5308 pin_down_extent(root, cache, bytenr, num_bytes, 0);
5309
5310 /* remove us from the free space cache (if we're there at all) */
Josef Bacikb50c6e22013-04-25 15:55:30 -04005311 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
Chris Masone688b7252011-10-31 20:52:39 -04005312 btrfs_put_block_group(cache);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005313 return ret;
Chris Masone688b7252011-10-31 20:52:39 -04005314}
5315
Josef Bacik8c2a1a32013-06-06 13:19:32 -04005316static int __exclude_logged_extent(struct btrfs_root *root, u64 start, u64 num_bytes)
5317{
5318 int ret;
5319 struct btrfs_block_group_cache *block_group;
5320 struct btrfs_caching_control *caching_ctl;
5321
5322 block_group = btrfs_lookup_block_group(root->fs_info, start);
5323 if (!block_group)
5324 return -EINVAL;
5325
5326 cache_block_group(block_group, 0);
5327 caching_ctl = get_caching_control(block_group);
5328
5329 if (!caching_ctl) {
5330 /* Logic error */
5331 BUG_ON(!block_group_cache_done(block_group));
5332 ret = btrfs_remove_free_space(block_group, start, num_bytes);
5333 } else {
5334 mutex_lock(&caching_ctl->mutex);
5335
5336 if (start >= caching_ctl->progress) {
5337 ret = add_excluded_extent(root, start, num_bytes);
5338 } else if (start + num_bytes <= caching_ctl->progress) {
5339 ret = btrfs_remove_free_space(block_group,
5340 start, num_bytes);
5341 } else {
5342 num_bytes = caching_ctl->progress - start;
5343 ret = btrfs_remove_free_space(block_group,
5344 start, num_bytes);
5345 if (ret)
5346 goto out_lock;
5347
5348 num_bytes = (start + num_bytes) -
5349 caching_ctl->progress;
5350 start = caching_ctl->progress;
5351 ret = add_excluded_extent(root, start, num_bytes);
5352 }
5353out_lock:
5354 mutex_unlock(&caching_ctl->mutex);
5355 put_caching_control(caching_ctl);
5356 }
5357 btrfs_put_block_group(block_group);
5358 return ret;
5359}
5360
5361int btrfs_exclude_logged_extents(struct btrfs_root *log,
5362 struct extent_buffer *eb)
5363{
5364 struct btrfs_file_extent_item *item;
5365 struct btrfs_key key;
5366 int found_type;
5367 int i;
5368
5369 if (!btrfs_fs_incompat(log->fs_info, MIXED_GROUPS))
5370 return 0;
5371
5372 for (i = 0; i < btrfs_header_nritems(eb); i++) {
5373 btrfs_item_key_to_cpu(eb, &key, i);
5374 if (key.type != BTRFS_EXTENT_DATA_KEY)
5375 continue;
5376 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
5377 found_type = btrfs_file_extent_type(eb, item);
5378 if (found_type == BTRFS_FILE_EXTENT_INLINE)
5379 continue;
5380 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
5381 continue;
5382 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
5383 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
5384 __exclude_logged_extent(log, key.objectid, key.offset);
5385 }
5386
5387 return 0;
5388}
5389
Josef Bacikfb25e912011-07-26 17:00:46 -04005390/**
5391 * btrfs_update_reserved_bytes - update the block_group and space info counters
5392 * @cache: The cache we are manipulating
5393 * @num_bytes: The number of bytes in question
5394 * @reserve: One of the reservation enums
5395 *
5396 * This is called by the allocator when it reserves space, or by somebody who is
5397 * freeing space that was never actually used on disk. For example if you
5398 * reserve some space for a new leaf in transaction A and before transaction A
5399 * commits you free that leaf, you call this with reserve set to 0 in order to
5400 * clear the reservation.
5401 *
5402 * Metadata reservations should be called with RESERVE_ALLOC so we do the proper
5403 * ENOSPC accounting. For data we handle the reservation through clearing the
5404 * delalloc bits in the io_tree. We have to do this since we could end up
5405 * allocating less disk space for the amount of data we have reserved in the
5406 * case of compression.
5407 *
5408 * If this is a reservation and the block group has become read only we cannot
5409 * make the reservation and return -EAGAIN, otherwise this function always
5410 * succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04005411 */
Josef Bacikfb25e912011-07-26 17:00:46 -04005412static int btrfs_update_reserved_bytes(struct btrfs_block_group_cache *cache,
5413 u64 num_bytes, int reserve)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005414{
Josef Bacikfb25e912011-07-26 17:00:46 -04005415 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005416 int ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005417
Josef Bacikfb25e912011-07-26 17:00:46 -04005418 spin_lock(&space_info->lock);
5419 spin_lock(&cache->lock);
5420 if (reserve != RESERVE_FREE) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005421 if (cache->ro) {
5422 ret = -EAGAIN;
5423 } else {
Josef Bacikfb25e912011-07-26 17:00:46 -04005424 cache->reserved += num_bytes;
5425 space_info->bytes_reserved += num_bytes;
5426 if (reserve == RESERVE_ALLOC) {
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005427 trace_btrfs_space_reservation(cache->fs_info,
Liu Bo2bcc0322012-03-29 09:57:44 -04005428 "space_info", space_info->flags,
5429 num_bytes, 0);
Josef Bacikfb25e912011-07-26 17:00:46 -04005430 space_info->bytes_may_use -= num_bytes;
5431 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005432 }
Josef Bacikfb25e912011-07-26 17:00:46 -04005433 } else {
5434 if (cache->ro)
5435 space_info->bytes_readonly += num_bytes;
5436 cache->reserved -= num_bytes;
5437 space_info->bytes_reserved -= num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005438 }
Josef Bacikfb25e912011-07-26 17:00:46 -04005439 spin_unlock(&cache->lock);
5440 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005441 return ret;
5442}
5443
Jeff Mahoney143bede2012-03-01 14:56:26 +01005444void btrfs_prepare_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04005445 struct btrfs_root *root)
5446{
5447 struct btrfs_fs_info *fs_info = root->fs_info;
5448 struct btrfs_caching_control *next;
5449 struct btrfs_caching_control *caching_ctl;
5450 struct btrfs_block_group_cache *cache;
Josef Bacikb150a4f2013-06-19 15:00:04 -04005451 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04005452
5453 down_write(&fs_info->extent_commit_sem);
5454
5455 list_for_each_entry_safe(caching_ctl, next,
5456 &fs_info->caching_block_groups, list) {
5457 cache = caching_ctl->block_group;
5458 if (block_group_cache_done(cache)) {
5459 cache->last_byte_to_unpin = (u64)-1;
5460 list_del_init(&caching_ctl->list);
5461 put_caching_control(caching_ctl);
5462 } else {
5463 cache->last_byte_to_unpin = caching_ctl->progress;
5464 }
5465 }
5466
5467 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
5468 fs_info->pinned_extents = &fs_info->freed_extents[1];
5469 else
5470 fs_info->pinned_extents = &fs_info->freed_extents[0];
5471
5472 up_write(&fs_info->extent_commit_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005473
Josef Bacikb150a4f2013-06-19 15:00:04 -04005474 list_for_each_entry_rcu(space_info, &fs_info->space_info, list)
5475 percpu_counter_set(&space_info->total_bytes_pinned, 0);
5476
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005477 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04005478}
5479
5480static int unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
5481{
5482 struct btrfs_fs_info *fs_info = root->fs_info;
5483 struct btrfs_block_group_cache *cache = NULL;
Josef Bacik7b398f82012-10-22 15:52:28 -04005484 struct btrfs_space_info *space_info;
5485 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Yan Zheng11833d62009-09-11 16:11:19 -04005486 u64 len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005487 bool readonly;
Yan Zheng11833d62009-09-11 16:11:19 -04005488
5489 while (start <= end) {
Josef Bacik7b398f82012-10-22 15:52:28 -04005490 readonly = false;
Yan Zheng11833d62009-09-11 16:11:19 -04005491 if (!cache ||
5492 start >= cache->key.objectid + cache->key.offset) {
5493 if (cache)
5494 btrfs_put_block_group(cache);
5495 cache = btrfs_lookup_block_group(fs_info, start);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005496 BUG_ON(!cache); /* Logic error */
Yan Zheng11833d62009-09-11 16:11:19 -04005497 }
5498
5499 len = cache->key.objectid + cache->key.offset - start;
5500 len = min(len, end + 1 - start);
5501
5502 if (start < cache->last_byte_to_unpin) {
5503 len = min(len, cache->last_byte_to_unpin - start);
5504 btrfs_add_free_space(cache, start, len);
5505 }
Josef Bacik25179202008-10-29 14:49:05 -04005506
Yan, Zhengf0486c62010-05-16 10:46:25 -04005507 start += len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005508 space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005509
Josef Bacik7b398f82012-10-22 15:52:28 -04005510 spin_lock(&space_info->lock);
Josef Bacik25179202008-10-29 14:49:05 -04005511 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04005512 cache->pinned -= len;
Josef Bacik7b398f82012-10-22 15:52:28 -04005513 space_info->bytes_pinned -= len;
5514 if (cache->ro) {
5515 space_info->bytes_readonly += len;
5516 readonly = true;
5517 }
Josef Bacik25179202008-10-29 14:49:05 -04005518 spin_unlock(&cache->lock);
Josef Bacik7b398f82012-10-22 15:52:28 -04005519 if (!readonly && global_rsv->space_info == space_info) {
5520 spin_lock(&global_rsv->lock);
5521 if (!global_rsv->full) {
5522 len = min(len, global_rsv->size -
5523 global_rsv->reserved);
5524 global_rsv->reserved += len;
5525 space_info->bytes_may_use += len;
5526 if (global_rsv->reserved >= global_rsv->size)
5527 global_rsv->full = 1;
5528 }
5529 spin_unlock(&global_rsv->lock);
5530 }
5531 spin_unlock(&space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04005532 }
5533
5534 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04005535 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04005536 return 0;
5537}
5538
5539int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Yan Zheng11833d62009-09-11 16:11:19 -04005540 struct btrfs_root *root)
Chris Masona28ec192007-03-06 20:08:01 -05005541{
Yan Zheng11833d62009-09-11 16:11:19 -04005542 struct btrfs_fs_info *fs_info = root->fs_info;
5543 struct extent_io_tree *unpin;
Chris Mason1a5bc162007-10-15 16:15:26 -04005544 u64 start;
5545 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05005546 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05005547
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005548 if (trans->aborted)
5549 return 0;
5550
Yan Zheng11833d62009-09-11 16:11:19 -04005551 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
5552 unpin = &fs_info->freed_extents[1];
5553 else
5554 unpin = &fs_info->freed_extents[0];
5555
Chris Masond3977122009-01-05 21:25:51 -05005556 while (1) {
Chris Mason1a5bc162007-10-15 16:15:26 -04005557 ret = find_first_extent_bit(unpin, 0, &start, &end,
Josef Bacike6138872012-09-27 17:07:30 -04005558 EXTENT_DIRTY, NULL);
Chris Mason1a5bc162007-10-15 16:15:26 -04005559 if (ret)
Chris Masona28ec192007-03-06 20:08:01 -05005560 break;
Liu Hui1f3c79a2009-01-05 15:57:51 -05005561
Li Dongyang5378e602011-03-24 10:24:27 +00005562 if (btrfs_test_opt(root, DISCARD))
5563 ret = btrfs_discard_extent(root, start,
5564 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05005565
Chris Mason1a5bc162007-10-15 16:15:26 -04005566 clear_extent_dirty(unpin, start, end, GFP_NOFS);
Yan Zheng11833d62009-09-11 16:11:19 -04005567 unpin_extent_range(root, start, end);
Chris Masonb9473432009-03-13 11:00:37 -04005568 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05005569 }
Josef Bacik817d52f2009-07-13 21:29:25 -04005570
Chris Masone20d96d2007-03-22 12:13:20 -04005571 return 0;
5572}
5573
Josef Bacikb150a4f2013-06-19 15:00:04 -04005574static void add_pinned_bytes(struct btrfs_fs_info *fs_info, u64 num_bytes,
5575 u64 owner, u64 root_objectid)
5576{
5577 struct btrfs_space_info *space_info;
5578 u64 flags;
5579
5580 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
5581 if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID)
5582 flags = BTRFS_BLOCK_GROUP_SYSTEM;
5583 else
5584 flags = BTRFS_BLOCK_GROUP_METADATA;
5585 } else {
5586 flags = BTRFS_BLOCK_GROUP_DATA;
5587 }
5588
5589 space_info = __find_space_info(fs_info, flags);
5590 BUG_ON(!space_info); /* Logic bug */
5591 percpu_counter_add(&space_info->total_bytes_pinned, num_bytes);
5592}
5593
5594
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005595static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
5596 struct btrfs_root *root,
5597 u64 bytenr, u64 num_bytes, u64 parent,
5598 u64 root_objectid, u64 owner_objectid,
5599 u64 owner_offset, int refs_to_drop,
5600 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05005601{
Chris Masone2fa7222007-03-12 16:22:34 -04005602 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005603 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04005604 struct btrfs_fs_info *info = root->fs_info;
5605 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04005606 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005607 struct btrfs_extent_item *ei;
5608 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05005609 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005610 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05005611 int extent_slot = 0;
5612 int found_extent = 0;
5613 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005614 u32 item_size;
5615 u64 refs;
Josef Bacik3173a182013-03-07 14:22:04 -05005616 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
5617 SKINNY_METADATA);
Chris Mason037e6392007-03-07 11:50:24 -05005618
Chris Mason5caf2a02007-04-02 11:20:42 -04005619 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04005620 if (!path)
5621 return -ENOMEM;
5622
Chris Mason3c12ac72008-04-21 12:01:38 -04005623 path->reada = 1;
Chris Masonb9473432009-03-13 11:00:37 -04005624 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005625
5626 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
5627 BUG_ON(!is_data && refs_to_drop != 1);
5628
Josef Bacik3173a182013-03-07 14:22:04 -05005629 if (is_data)
5630 skinny_metadata = 0;
5631
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005632 ret = lookup_extent_backref(trans, extent_root, path, &iref,
5633 bytenr, num_bytes, parent,
5634 root_objectid, owner_objectid,
5635 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05005636 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05005637 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005638 while (extent_slot >= 0) {
5639 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05005640 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005641 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05005642 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005643 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
5644 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05005645 found_extent = 1;
5646 break;
5647 }
Josef Bacik3173a182013-03-07 14:22:04 -05005648 if (key.type == BTRFS_METADATA_ITEM_KEY &&
5649 key.offset == owner_objectid) {
5650 found_extent = 1;
5651 break;
5652 }
Chris Mason952fcca2008-02-18 16:33:44 -05005653 if (path->slots[0] - extent_slot > 5)
5654 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005655 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05005656 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005657#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
5658 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
5659 if (found_extent && item_size < sizeof(*ei))
5660 found_extent = 0;
5661#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04005662 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005663 BUG_ON(iref);
Chris Mason56bec292009-03-13 10:10:06 -04005664 ret = remove_extent_backref(trans, extent_root, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005665 NULL, refs_to_drop,
5666 is_data);
David Sterba005d6422012-09-18 07:52:32 -06005667 if (ret) {
5668 btrfs_abort_transaction(trans, extent_root, ret);
5669 goto out;
5670 }
David Sterbab3b4aa72011-04-21 01:20:15 +02005671 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04005672 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005673
5674 key.objectid = bytenr;
5675 key.type = BTRFS_EXTENT_ITEM_KEY;
5676 key.offset = num_bytes;
5677
Josef Bacik3173a182013-03-07 14:22:04 -05005678 if (!is_data && skinny_metadata) {
5679 key.type = BTRFS_METADATA_ITEM_KEY;
5680 key.offset = owner_objectid;
5681 }
5682
Zheng Yan31840ae2008-09-23 13:14:14 -04005683 ret = btrfs_search_slot(trans, extent_root,
5684 &key, path, -1, 1);
Josef Bacik3173a182013-03-07 14:22:04 -05005685 if (ret > 0 && skinny_metadata && path->slots[0]) {
5686 /*
5687 * Couldn't find our skinny metadata item,
5688 * see if we have ye olde extent item.
5689 */
5690 path->slots[0]--;
5691 btrfs_item_key_to_cpu(path->nodes[0], &key,
5692 path->slots[0]);
5693 if (key.objectid == bytenr &&
5694 key.type == BTRFS_EXTENT_ITEM_KEY &&
5695 key.offset == num_bytes)
5696 ret = 0;
5697 }
5698
5699 if (ret > 0 && skinny_metadata) {
5700 skinny_metadata = false;
5701 key.type = BTRFS_EXTENT_ITEM_KEY;
5702 key.offset = num_bytes;
5703 btrfs_release_path(path);
5704 ret = btrfs_search_slot(trans, extent_root,
5705 &key, path, -1, 1);
5706 }
5707
Josef Bacikf3465ca2008-11-12 14:19:50 -05005708 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005709 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005710 ret, bytenr);
Josef Bacikb783e622011-07-13 15:03:50 +00005711 if (ret > 0)
5712 btrfs_print_leaf(extent_root,
5713 path->nodes[0]);
Josef Bacikf3465ca2008-11-12 14:19:50 -05005714 }
David Sterba005d6422012-09-18 07:52:32 -06005715 if (ret < 0) {
5716 btrfs_abort_transaction(trans, extent_root, ret);
5717 goto out;
5718 }
Zheng Yan31840ae2008-09-23 13:14:14 -04005719 extent_slot = path->slots[0];
5720 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005721 } else if (ret == -ENOENT) {
Chris Mason7bb86312007-12-11 09:25:06 -05005722 btrfs_print_leaf(extent_root, path->nodes[0]);
5723 WARN_ON(1);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005724 btrfs_err(info,
5725 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005726 bytenr, parent, root_objectid, owner_objectid,
5727 owner_offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005728 } else {
David Sterba005d6422012-09-18 07:52:32 -06005729 btrfs_abort_transaction(trans, extent_root, ret);
5730 goto out;
Chris Mason7bb86312007-12-11 09:25:06 -05005731 }
Chris Mason5f39d392007-10-15 16:14:19 -04005732
5733 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005734 item_size = btrfs_item_size_nr(leaf, extent_slot);
5735#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
5736 if (item_size < sizeof(*ei)) {
5737 BUG_ON(found_extent || extent_slot != path->slots[0]);
5738 ret = convert_extent_item_v0(trans, extent_root, path,
5739 owner_objectid, 0);
David Sterba005d6422012-09-18 07:52:32 -06005740 if (ret < 0) {
5741 btrfs_abort_transaction(trans, extent_root, ret);
5742 goto out;
5743 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005744
David Sterbab3b4aa72011-04-21 01:20:15 +02005745 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005746 path->leave_spinning = 1;
5747
5748 key.objectid = bytenr;
5749 key.type = BTRFS_EXTENT_ITEM_KEY;
5750 key.offset = num_bytes;
5751
5752 ret = btrfs_search_slot(trans, extent_root, &key, path,
5753 -1, 1);
5754 if (ret) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00005755 btrfs_err(info, "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02005756 ret, bytenr);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005757 btrfs_print_leaf(extent_root, path->nodes[0]);
5758 }
David Sterba005d6422012-09-18 07:52:32 -06005759 if (ret < 0) {
5760 btrfs_abort_transaction(trans, extent_root, ret);
5761 goto out;
5762 }
5763
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005764 extent_slot = path->slots[0];
5765 leaf = path->nodes[0];
5766 item_size = btrfs_item_size_nr(leaf, extent_slot);
5767 }
5768#endif
5769 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05005770 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04005771 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05005772 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
5773 key.type == BTRFS_EXTENT_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005774 struct btrfs_tree_block_info *bi;
5775 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
5776 bi = (struct btrfs_tree_block_info *)(ei + 1);
5777 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05005778 }
5779
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005780 refs = btrfs_extent_refs(leaf, ei);
Josef Bacik32b02532013-04-24 16:38:50 -04005781 if (refs < refs_to_drop) {
5782 btrfs_err(info, "trying to drop %d refs but we only have %Lu "
5783 "for bytenr %Lu\n", refs_to_drop, refs, bytenr);
5784 ret = -EINVAL;
5785 btrfs_abort_transaction(trans, extent_root, ret);
5786 goto out;
5787 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005788 refs -= refs_to_drop;
5789
5790 if (refs > 0) {
5791 if (extent_op)
5792 __run_delayed_extent_op(extent_op, leaf, ei);
5793 /*
5794 * In the case of inline back ref, reference count will
5795 * be updated by remove_extent_backref
5796 */
5797 if (iref) {
5798 BUG_ON(!found_extent);
5799 } else {
5800 btrfs_set_extent_refs(leaf, ei, refs);
5801 btrfs_mark_buffer_dirty(leaf);
5802 }
5803 if (found_extent) {
5804 ret = remove_extent_backref(trans, extent_root, path,
5805 iref, refs_to_drop,
5806 is_data);
David Sterba005d6422012-09-18 07:52:32 -06005807 if (ret) {
5808 btrfs_abort_transaction(trans, extent_root, ret);
5809 goto out;
5810 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005811 }
Josef Bacikb150a4f2013-06-19 15:00:04 -04005812 add_pinned_bytes(root->fs_info, -num_bytes, owner_objectid,
5813 root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005814 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005815 if (found_extent) {
5816 BUG_ON(is_data && refs_to_drop !=
5817 extent_data_ref_count(root, path, iref));
5818 if (iref) {
5819 BUG_ON(path->slots[0] != extent_slot);
5820 } else {
5821 BUG_ON(path->slots[0] != extent_slot + 1);
5822 path->slots[0] = extent_slot;
5823 num_to_del = 2;
5824 }
Chris Mason78fae272007-03-25 11:35:08 -04005825 }
Chris Masonb9473432009-03-13 11:00:37 -04005826
Chris Mason952fcca2008-02-18 16:33:44 -05005827 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
5828 num_to_del);
David Sterba005d6422012-09-18 07:52:32 -06005829 if (ret) {
5830 btrfs_abort_transaction(trans, extent_root, ret);
5831 goto out;
5832 }
David Sterbab3b4aa72011-04-21 01:20:15 +02005833 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01005834
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005835 if (is_data) {
Chris Mason459931e2008-12-10 09:10:46 -05005836 ret = btrfs_del_csums(trans, root, bytenr, num_bytes);
David Sterba005d6422012-09-18 07:52:32 -06005837 if (ret) {
5838 btrfs_abort_transaction(trans, extent_root, ret);
5839 goto out;
5840 }
Chris Mason459931e2008-12-10 09:10:46 -05005841 }
5842
Liu Boc53d6132012-12-27 09:01:19 +00005843 ret = update_block_group(root, bytenr, num_bytes, 0);
David Sterba005d6422012-09-18 07:52:32 -06005844 if (ret) {
5845 btrfs_abort_transaction(trans, extent_root, ret);
5846 goto out;
5847 }
Chris Masona28ec192007-03-06 20:08:01 -05005848 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005849out:
Chris Mason5caf2a02007-04-02 11:20:42 -04005850 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05005851 return ret;
5852}
5853
5854/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04005855 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04005856 * delayed ref for that extent as well. This searches the delayed ref tree for
5857 * a given extent, and if there are no other delayed refs to be processed, it
5858 * removes it from the tree.
5859 */
5860static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
5861 struct btrfs_root *root, u64 bytenr)
5862{
5863 struct btrfs_delayed_ref_head *head;
5864 struct btrfs_delayed_ref_root *delayed_refs;
5865 struct btrfs_delayed_ref_node *ref;
5866 struct rb_node *node;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005867 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04005868
5869 delayed_refs = &trans->transaction->delayed_refs;
5870 spin_lock(&delayed_refs->lock);
5871 head = btrfs_find_delayed_ref_head(trans, bytenr);
5872 if (!head)
5873 goto out;
5874
5875 node = rb_prev(&head->node.rb_node);
5876 if (!node)
5877 goto out;
5878
5879 ref = rb_entry(node, struct btrfs_delayed_ref_node, rb_node);
5880
5881 /* there are still entries for this ref, we can't drop it */
5882 if (ref->bytenr == bytenr)
5883 goto out;
5884
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005885 if (head->extent_op) {
5886 if (!head->must_insert_reserved)
5887 goto out;
Miao Xie78a61842012-11-21 02:21:28 +00005888 btrfs_free_delayed_extent_op(head->extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005889 head->extent_op = NULL;
5890 }
5891
Chris Mason1887be62009-03-13 10:11:24 -04005892 /*
5893 * waiting for the lock here would deadlock. If someone else has it
5894 * locked they are already in the process of dropping it anyway
5895 */
5896 if (!mutex_trylock(&head->mutex))
5897 goto out;
5898
5899 /*
5900 * at this point we have a head with no other entries. Go
5901 * ahead and process it.
5902 */
5903 head->node.in_tree = 0;
5904 rb_erase(&head->node.rb_node, &delayed_refs->root);
Chris Masonc3e69d52009-03-13 10:17:05 -04005905
Chris Mason1887be62009-03-13 10:11:24 -04005906 delayed_refs->num_entries--;
5907
5908 /*
5909 * we don't take a ref on the node because we're removing it from the
5910 * tree, so we just steal the ref the tree was holding.
5911 */
Chris Masonc3e69d52009-03-13 10:17:05 -04005912 delayed_refs->num_heads--;
5913 if (list_empty(&head->cluster))
5914 delayed_refs->num_heads_ready--;
5915
5916 list_del_init(&head->cluster);
Chris Mason1887be62009-03-13 10:11:24 -04005917 spin_unlock(&delayed_refs->lock);
5918
Yan, Zhengf0486c62010-05-16 10:46:25 -04005919 BUG_ON(head->extent_op);
5920 if (head->must_insert_reserved)
5921 ret = 1;
5922
5923 mutex_unlock(&head->mutex);
Chris Mason1887be62009-03-13 10:11:24 -04005924 btrfs_put_delayed_ref(&head->node);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005925 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04005926out:
5927 spin_unlock(&delayed_refs->lock);
5928 return 0;
5929}
5930
Yan, Zhengf0486c62010-05-16 10:46:25 -04005931void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
5932 struct btrfs_root *root,
5933 struct extent_buffer *buf,
Jan Schmidt5581a512012-05-16 17:04:52 +02005934 u64 parent, int last_ref)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005935{
Yan, Zhengf0486c62010-05-16 10:46:25 -04005936 struct btrfs_block_group_cache *cache = NULL;
Josef Bacikb150a4f2013-06-19 15:00:04 -04005937 int pin = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005938 int ret;
5939
5940 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02005941 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
5942 buf->start, buf->len,
5943 parent, root->root_key.objectid,
5944 btrfs_header_level(buf),
Jan Schmidt5581a512012-05-16 17:04:52 +02005945 BTRFS_DROP_DELAYED_REF, NULL, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005946 BUG_ON(ret); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04005947 }
5948
5949 if (!last_ref)
5950 return;
5951
Yan, Zhengf0486c62010-05-16 10:46:25 -04005952 cache = btrfs_lookup_block_group(root->fs_info, buf->start);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005953
5954 if (btrfs_header_generation(buf) == trans->transid) {
5955 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
5956 ret = check_ref_cleanup(trans, root, buf->start);
5957 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04005958 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005959 }
5960
5961 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
5962 pin_down_extent(root, cache, buf->start, buf->len, 1);
Josef Bacik37be25b2011-08-05 10:25:38 -04005963 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005964 }
5965
5966 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
5967
5968 btrfs_add_free_space(cache, buf->start, buf->len);
Josef Bacikfb25e912011-07-26 17:00:46 -04005969 btrfs_update_reserved_bytes(cache, buf->len, RESERVE_FREE);
Josef Bacik0be5dc62013-10-07 15:18:52 -04005970 trace_btrfs_reserved_extent_free(root, buf->start, buf->len);
Josef Bacikb150a4f2013-06-19 15:00:04 -04005971 pin = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005972 }
5973out:
Josef Bacikb150a4f2013-06-19 15:00:04 -04005974 if (pin)
5975 add_pinned_bytes(root->fs_info, buf->len,
5976 btrfs_header_level(buf),
5977 root->root_key.objectid);
5978
Josef Bacika826d6d2011-03-16 13:42:43 -04005979 /*
5980 * Deleting the buffer, clear the corrupt flag since it doesn't matter
5981 * anymore.
5982 */
5983 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005984 btrfs_put_block_group(cache);
5985}
5986
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005987/* Can return -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +02005988int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root *root,
5989 u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid,
5990 u64 owner, u64 offset, int for_cow)
Chris Mason925baed2008-06-25 16:01:30 -04005991{
5992 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02005993 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason925baed2008-06-25 16:01:30 -04005994
Josef Bacikb150a4f2013-06-19 15:00:04 -04005995 add_pinned_bytes(root->fs_info, num_bytes, owner, root_objectid);
5996
Chris Mason56bec292009-03-13 10:10:06 -04005997 /*
5998 * tree log blocks never actually go into the extent allocation
5999 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04006000 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006001 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
6002 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04006003 /* unlocks the pinned mutex */
Yan Zheng11833d62009-09-11 16:11:19 -04006004 btrfs_pin_extent(root, bytenr, num_bytes, 1);
Chris Mason56bec292009-03-13 10:10:06 -04006005 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006006 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006007 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
6008 num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006009 parent, root_objectid, (int)owner,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006010 BTRFS_DROP_DELAYED_REF, NULL, for_cow);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006011 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006012 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
6013 num_bytes,
6014 parent, root_objectid, owner,
6015 offset, BTRFS_DROP_DELAYED_REF,
6016 NULL, for_cow);
Chris Mason56bec292009-03-13 10:10:06 -04006017 }
Chris Mason925baed2008-06-25 16:01:30 -04006018 return ret;
6019}
6020
David Woodhouse53b381b2013-01-29 18:40:14 -05006021static u64 stripe_align(struct btrfs_root *root,
6022 struct btrfs_block_group_cache *cache,
6023 u64 val, u64 num_bytes)
Chris Mason87ee04e2007-11-30 11:30:34 -05006024{
Qu Wenruofda28322013-02-26 08:10:22 +00006025 u64 ret = ALIGN(val, root->stripesize);
Chris Mason87ee04e2007-11-30 11:30:34 -05006026 return ret;
6027}
6028
Chris Masonfec577f2007-02-26 10:40:21 -05006029/*
Josef Bacik817d52f2009-07-13 21:29:25 -04006030 * when we wait for progress in the block group caching, its because
6031 * our allocation attempt failed at least once. So, we must sleep
6032 * and let some progress happen before we try again.
6033 *
6034 * This function will sleep at least once waiting for new free space to
6035 * show up, and then it will check the block group free space numbers
6036 * for our min num_bytes. Another option is to have it go ahead
6037 * and look in the rbtree for a free extent of a given size, but this
6038 * is a good start.
Josef Bacik36cce922013-08-05 11:15:21 -04006039 *
6040 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
6041 * any of the information in this block group.
Josef Bacik817d52f2009-07-13 21:29:25 -04006042 */
Josef Bacik36cce922013-08-05 11:15:21 -04006043static noinline void
Josef Bacik817d52f2009-07-13 21:29:25 -04006044wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
6045 u64 num_bytes)
6046{
Yan Zheng11833d62009-09-11 16:11:19 -04006047 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04006048
Yan Zheng11833d62009-09-11 16:11:19 -04006049 caching_ctl = get_caching_control(cache);
6050 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04006051 return;
Josef Bacik817d52f2009-07-13 21:29:25 -04006052
Yan Zheng11833d62009-09-11 16:11:19 -04006053 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08006054 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04006055
6056 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -04006057}
6058
6059static noinline int
6060wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
6061{
6062 struct btrfs_caching_control *caching_ctl;
Josef Bacik36cce922013-08-05 11:15:21 -04006063 int ret = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006064
6065 caching_ctl = get_caching_control(cache);
6066 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04006067 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006068
6069 wait_event(caching_ctl->wait, block_group_cache_done(cache));
Josef Bacik36cce922013-08-05 11:15:21 -04006070 if (cache->cached == BTRFS_CACHE_ERROR)
6071 ret = -EIO;
Yan Zheng11833d62009-09-11 16:11:19 -04006072 put_caching_control(caching_ctl);
Josef Bacik36cce922013-08-05 11:15:21 -04006073 return ret;
Josef Bacik817d52f2009-07-13 21:29:25 -04006074}
6075
Liu Bo31e50222012-11-21 14:18:10 +00006076int __get_raid_index(u64 flags)
Yan, Zhengb742bb822010-05-16 10:46:24 -04006077{
Ilya Dryomov7738a532012-03-27 17:09:17 +03006078 if (flags & BTRFS_BLOCK_GROUP_RAID10)
Miao Xiee6ec7162013-01-17 05:38:51 +00006079 return BTRFS_RAID_RAID10;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006080 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
Miao Xiee6ec7162013-01-17 05:38:51 +00006081 return BTRFS_RAID_RAID1;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006082 else if (flags & BTRFS_BLOCK_GROUP_DUP)
Miao Xiee6ec7162013-01-17 05:38:51 +00006083 return BTRFS_RAID_DUP;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006084 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
Miao Xiee6ec7162013-01-17 05:38:51 +00006085 return BTRFS_RAID_RAID0;
David Woodhouse53b381b2013-01-29 18:40:14 -05006086 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
Chris Masone942f882013-02-20 14:06:05 -05006087 return BTRFS_RAID_RAID5;
David Woodhouse53b381b2013-01-29 18:40:14 -05006088 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
Chris Masone942f882013-02-20 14:06:05 -05006089 return BTRFS_RAID_RAID6;
Ilya Dryomov7738a532012-03-27 17:09:17 +03006090
Chris Masone942f882013-02-20 14:06:05 -05006091 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
Yan, Zhengb742bb822010-05-16 10:46:24 -04006092}
6093
Ilya Dryomov7738a532012-03-27 17:09:17 +03006094static int get_block_group_index(struct btrfs_block_group_cache *cache)
6095{
Liu Bo31e50222012-11-21 14:18:10 +00006096 return __get_raid_index(cache->flags);
Ilya Dryomov7738a532012-03-27 17:09:17 +03006097}
6098
Josef Bacik817d52f2009-07-13 21:29:25 -04006099enum btrfs_loop_type {
Josef Bacik285ff5a2012-01-13 15:27:45 -05006100 LOOP_CACHING_NOWAIT = 0,
6101 LOOP_CACHING_WAIT = 1,
6102 LOOP_ALLOC_CHUNK = 2,
6103 LOOP_NO_EMPTY_SIZE = 3,
Josef Bacik817d52f2009-07-13 21:29:25 -04006104};
6105
6106/*
Chris Masonfec577f2007-02-26 10:40:21 -05006107 * walks the btree of allocated extents and find a hole of a given size.
6108 * The key ins is changed to record the hole:
Miao Xiea4820392013-09-09 13:19:42 +08006109 * ins->objectid == start position
Chris Mason62e27492007-03-15 12:56:47 -04006110 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Miao Xiea4820392013-09-09 13:19:42 +08006111 * ins->offset == the size of the hole.
Chris Masonfec577f2007-02-26 10:40:21 -05006112 * Any available blocks before search_start are skipped.
Miao Xiea4820392013-09-09 13:19:42 +08006113 *
6114 * If there is no suitable free space, we will record the max size of
6115 * the free space extent currently.
Chris Masonfec577f2007-02-26 10:40:21 -05006116 */
Josef Bacik00361582013-08-14 14:02:47 -04006117static noinline int find_free_extent(struct btrfs_root *orig_root,
Chris Mason98ed5172008-01-03 10:01:48 -05006118 u64 num_bytes, u64 empty_size,
Chris Mason98ed5172008-01-03 10:01:48 -05006119 u64 hint_byte, struct btrfs_key *ins,
David Sterbab6919a52013-04-29 13:39:40 +00006120 u64 flags)
Chris Masonfec577f2007-02-26 10:40:21 -05006121{
Josef Bacik80eb2342008-10-29 14:49:05 -04006122 int ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05006123 struct btrfs_root *root = orig_root->fs_info->extent_root;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006124 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04006125 struct btrfs_block_group_cache *block_group = NULL;
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006126 struct btrfs_block_group_cache *used_block_group;
Josef Bacik81c9ad22012-01-18 10:56:06 -05006127 u64 search_start = 0;
Miao Xiea4820392013-09-09 13:19:42 +08006128 u64 max_extent_size = 0;
Chris Mason239b14b2008-03-24 15:02:07 -04006129 int empty_cluster = 2 * 1024 * 1024;
Josef Bacik80eb2342008-10-29 14:49:05 -04006130 struct btrfs_space_info *space_info;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006131 int loop = 0;
David Sterbab6919a52013-04-29 13:39:40 +00006132 int index = __get_raid_index(flags);
6133 int alloc_type = (flags & BTRFS_BLOCK_GROUP_DATA) ?
Josef Bacikfb25e912011-07-26 17:00:46 -04006134 RESERVE_ALLOC_NO_ACCOUNT : RESERVE_ALLOC;
Josef Bacik817d52f2009-07-13 21:29:25 -04006135 bool found_uncached_bg = false;
Josef Bacik0a243252009-09-11 16:11:20 -04006136 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006137 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04006138 bool use_cluster = true;
Miao Xie60d2adb2011-09-09 17:34:35 +08006139 bool have_caching_bg = false;
Chris Masonfec577f2007-02-26 10:40:21 -05006140
Chris Masondb945352007-10-15 16:15:53 -04006141 WARN_ON(num_bytes < root->sectorsize);
Chris Masonb1a4d962007-04-04 15:27:52 -04006142 btrfs_set_key_type(ins, BTRFS_EXTENT_ITEM_KEY);
Josef Bacik80eb2342008-10-29 14:49:05 -04006143 ins->objectid = 0;
6144 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04006145
David Sterbab6919a52013-04-29 13:39:40 +00006146 trace_find_free_extent(orig_root, num_bytes, empty_size, flags);
Josef Bacik3f7de032011-11-10 08:29:20 -05006147
David Sterbab6919a52013-04-29 13:39:40 +00006148 space_info = __find_space_info(root->fs_info, flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00006149 if (!space_info) {
David Sterbab6919a52013-04-29 13:39:40 +00006150 btrfs_err(root->fs_info, "No space info for %llu", flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00006151 return -ENOSPC;
6152 }
Josef Bacik2552d172009-04-03 10:14:19 -04006153
Josef Bacik67377732010-09-16 16:19:09 -04006154 /*
6155 * If the space info is for both data and metadata it means we have a
6156 * small filesystem and we can't use the clustering stuff.
6157 */
6158 if (btrfs_mixed_space_info(space_info))
6159 use_cluster = false;
6160
David Sterbab6919a52013-04-29 13:39:40 +00006161 if (flags & BTRFS_BLOCK_GROUP_METADATA && use_cluster) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006162 last_ptr = &root->fs_info->meta_alloc_cluster;
Chris Mason536ac8a2009-02-12 09:41:38 -05006163 if (!btrfs_test_opt(root, SSD))
6164 empty_cluster = 64 * 1024;
Chris Mason239b14b2008-03-24 15:02:07 -04006165 }
6166
David Sterbab6919a52013-04-29 13:39:40 +00006167 if ((flags & BTRFS_BLOCK_GROUP_DATA) && use_cluster &&
Josef Bacik67377732010-09-16 16:19:09 -04006168 btrfs_test_opt(root, SSD)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006169 last_ptr = &root->fs_info->data_alloc_cluster;
6170 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04006171
Chris Mason239b14b2008-03-24 15:02:07 -04006172 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006173 spin_lock(&last_ptr->lock);
6174 if (last_ptr->block_group)
6175 hint_byte = last_ptr->window_start;
6176 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04006177 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006178
Chris Masona061fc82008-05-07 11:43:44 -04006179 search_start = max(search_start, first_logical_byte(root, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04006180 search_start = max(search_start, hint_byte);
Chris Mason0b86a832008-03-24 15:01:56 -04006181
Josef Bacik817d52f2009-07-13 21:29:25 -04006182 if (!last_ptr)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006183 empty_cluster = 0;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006184
Josef Bacik2552d172009-04-03 10:14:19 -04006185 if (search_start == hint_byte) {
Josef Bacik2552d172009-04-03 10:14:19 -04006186 block_group = btrfs_lookup_block_group(root->fs_info,
6187 search_start);
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006188 used_block_group = block_group;
Josef Bacik817d52f2009-07-13 21:29:25 -04006189 /*
6190 * we don't want to use the block group if it doesn't match our
6191 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05006192 *
6193 * However if we are re-searching with an ideal block group
6194 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04006195 */
David Sterbab6919a52013-04-29 13:39:40 +00006196 if (block_group && block_group_bits(block_group, flags) &&
Josef Bacik285ff5a2012-01-13 15:27:45 -05006197 block_group->cached != BTRFS_CACHE_NO) {
Josef Bacik2552d172009-04-03 10:14:19 -04006198 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04006199 if (list_empty(&block_group->list) ||
6200 block_group->ro) {
6201 /*
6202 * someone is removing this block group,
6203 * we can't jump into the have_block_group
6204 * target because our list pointers are not
6205 * valid
6206 */
6207 btrfs_put_block_group(block_group);
6208 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05006209 } else {
Yan, Zhengb742bb822010-05-16 10:46:24 -04006210 index = get_block_group_index(block_group);
Chris Mason44fb5512009-06-04 15:34:51 -04006211 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05006212 }
Josef Bacik2552d172009-04-03 10:14:19 -04006213 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006214 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006215 }
Chris Mason42e70e72008-11-07 18:17:11 -05006216 }
Josef Bacik2552d172009-04-03 10:14:19 -04006217search:
Miao Xie60d2adb2011-09-09 17:34:35 +08006218 have_caching_bg = false;
Josef Bacik80eb2342008-10-29 14:49:05 -04006219 down_read(&space_info->groups_sem);
Yan, Zhengb742bb822010-05-16 10:46:24 -04006220 list_for_each_entry(block_group, &space_info->block_groups[index],
6221 list) {
Josef Bacik6226cb02009-04-03 10:14:18 -04006222 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04006223 int cached;
Chris Mason8a1413a22008-11-10 16:13:54 -05006224
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006225 used_block_group = block_group;
Josef Bacik11dfe352009-11-13 20:12:59 +00006226 btrfs_get_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006227 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05006228
Chris Mason83a50de2010-12-13 15:06:46 -05006229 /*
6230 * this can happen if we end up cycling through all the
6231 * raid types, but we want to make sure we only allocate
6232 * for the proper type.
6233 */
David Sterbab6919a52013-04-29 13:39:40 +00006234 if (!block_group_bits(block_group, flags)) {
Chris Mason83a50de2010-12-13 15:06:46 -05006235 u64 extra = BTRFS_BLOCK_GROUP_DUP |
6236 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05006237 BTRFS_BLOCK_GROUP_RAID5 |
6238 BTRFS_BLOCK_GROUP_RAID6 |
Chris Mason83a50de2010-12-13 15:06:46 -05006239 BTRFS_BLOCK_GROUP_RAID10;
6240
6241 /*
6242 * if they asked for extra copies and this block group
6243 * doesn't provide them, bail. This does allow us to
6244 * fill raid0 from raid1.
6245 */
David Sterbab6919a52013-04-29 13:39:40 +00006246 if ((flags & extra) && !(block_group->flags & extra))
Chris Mason83a50de2010-12-13 15:06:46 -05006247 goto loop;
6248 }
6249
Josef Bacik2552d172009-04-03 10:14:19 -04006250have_block_group:
Josef Bacik291c7d22011-11-14 13:52:14 -05006251 cached = block_group_cache_done(block_group);
6252 if (unlikely(!cached)) {
Josef Bacik291c7d22011-11-14 13:52:14 -05006253 found_uncached_bg = true;
Liu Bof6373bf2012-12-27 09:01:18 +00006254 ret = cache_block_group(block_group, 0);
Chris Mason1d4284b2012-03-28 20:31:37 -04006255 BUG_ON(ret < 0);
6256 ret = 0;
Josef Bacikea6a4782008-11-20 12:16:16 -05006257 }
6258
Josef Bacik36cce922013-08-05 11:15:21 -04006259 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
6260 goto loop;
Josef Bacikea6a4782008-11-20 12:16:16 -05006261 if (unlikely(block_group->ro))
Josef Bacik2552d172009-04-03 10:14:19 -04006262 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006263
Josef Bacik0a243252009-09-11 16:11:20 -04006264 /*
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006265 * Ok we want to try and use the cluster allocator, so
6266 * lets look there
Josef Bacik0a243252009-09-11 16:11:20 -04006267 */
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006268 if (last_ptr) {
Chris Mason8de972b2013-01-04 15:39:43 -05006269 unsigned long aligned_cluster;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006270 /*
6271 * the refill lock keeps out other
6272 * people trying to start a new cluster
6273 */
6274 spin_lock(&last_ptr->refill_lock);
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006275 used_block_group = last_ptr->block_group;
6276 if (used_block_group != block_group &&
6277 (!used_block_group ||
6278 used_block_group->ro ||
David Sterbab6919a52013-04-29 13:39:40 +00006279 !block_group_bits(used_block_group, flags))) {
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006280 used_block_group = block_group;
Chris Mason44fb5512009-06-04 15:34:51 -04006281 goto refill_cluster;
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006282 }
Chris Mason44fb5512009-06-04 15:34:51 -04006283
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006284 if (used_block_group != block_group)
6285 btrfs_get_block_group(used_block_group);
6286
6287 offset = btrfs_alloc_from_cluster(used_block_group,
Miao Xiea4820392013-09-09 13:19:42 +08006288 last_ptr,
6289 num_bytes,
6290 used_block_group->key.objectid,
6291 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006292 if (offset) {
6293 /* we have a block, we're done */
6294 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05006295 trace_btrfs_reserve_extent_cluster(root,
6296 block_group, search_start, num_bytes);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006297 goto checks;
6298 }
6299
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006300 WARN_ON(last_ptr->block_group != used_block_group);
6301 if (used_block_group != block_group) {
6302 btrfs_put_block_group(used_block_group);
6303 used_block_group = block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006304 }
Chris Mason44fb5512009-06-04 15:34:51 -04006305refill_cluster:
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006306 BUG_ON(used_block_group != block_group);
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006307 /* If we are on LOOP_NO_EMPTY_SIZE, we can't
6308 * set up a new clusters, so lets just skip it
6309 * and let the allocator find whatever block
6310 * it can find. If we reach this point, we
6311 * will have tried the cluster allocator
6312 * plenty of times and not have found
6313 * anything, so we are likely way too
6314 * fragmented for the clustering stuff to find
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006315 * anything.
6316 *
6317 * However, if the cluster is taken from the
6318 * current block group, release the cluster
6319 * first, so that we stand a better chance of
6320 * succeeding in the unclustered
6321 * allocation. */
6322 if (loop >= LOOP_NO_EMPTY_SIZE &&
6323 last_ptr->block_group != block_group) {
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006324 spin_unlock(&last_ptr->refill_lock);
6325 goto unclustered_alloc;
6326 }
6327
Chris Masonfa9c0d792009-04-03 09:47:43 -04006328 /*
6329 * this cluster didn't work out, free it and
6330 * start over
6331 */
6332 btrfs_return_cluster_to_free_space(NULL, last_ptr);
6333
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006334 if (loop >= LOOP_NO_EMPTY_SIZE) {
6335 spin_unlock(&last_ptr->refill_lock);
6336 goto unclustered_alloc;
6337 }
6338
Chris Mason8de972b2013-01-04 15:39:43 -05006339 aligned_cluster = max_t(unsigned long,
6340 empty_cluster + empty_size,
6341 block_group->full_stripe_len);
6342
Chris Masonfa9c0d792009-04-03 09:47:43 -04006343 /* allocate a cluster in this block group */
Josef Bacik00361582013-08-14 14:02:47 -04006344 ret = btrfs_find_space_cluster(root, block_group,
6345 last_ptr, search_start,
6346 num_bytes,
6347 aligned_cluster);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006348 if (ret == 0) {
6349 /*
6350 * now pull our allocation out of this
6351 * cluster
6352 */
6353 offset = btrfs_alloc_from_cluster(block_group,
Miao Xiea4820392013-09-09 13:19:42 +08006354 last_ptr,
6355 num_bytes,
6356 search_start,
6357 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006358 if (offset) {
6359 /* we found one, proceed */
6360 spin_unlock(&last_ptr->refill_lock);
Josef Bacik3f7de032011-11-10 08:29:20 -05006361 trace_btrfs_reserve_extent_cluster(root,
6362 block_group, search_start,
6363 num_bytes);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006364 goto checks;
6365 }
Josef Bacik0a243252009-09-11 16:11:20 -04006366 } else if (!cached && loop > LOOP_CACHING_NOWAIT
6367 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04006368 spin_unlock(&last_ptr->refill_lock);
6369
Josef Bacik0a243252009-09-11 16:11:20 -04006370 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04006371 wait_block_group_cache_progress(block_group,
6372 num_bytes + empty_cluster + empty_size);
6373 goto have_block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006374 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006375
Chris Masonfa9c0d792009-04-03 09:47:43 -04006376 /*
6377 * at this point we either didn't find a cluster
6378 * or we weren't able to allocate a block from our
6379 * cluster. Free the cluster we've been trying
6380 * to use, and go to the next block group
6381 */
Josef Bacik0a243252009-09-11 16:11:20 -04006382 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006383 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04006384 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006385 }
6386
Alexandre Oliva062c05c2011-12-07 19:50:42 -05006387unclustered_alloc:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006388 spin_lock(&block_group->free_space_ctl->tree_lock);
6389 if (cached &&
6390 block_group->free_space_ctl->free_space <
6391 num_bytes + empty_cluster + empty_size) {
Miao Xiea4820392013-09-09 13:19:42 +08006392 if (block_group->free_space_ctl->free_space >
6393 max_extent_size)
6394 max_extent_size =
6395 block_group->free_space_ctl->free_space;
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02006396 spin_unlock(&block_group->free_space_ctl->tree_lock);
6397 goto loop;
6398 }
6399 spin_unlock(&block_group->free_space_ctl->tree_lock);
6400
Josef Bacik6226cb02009-04-03 10:14:18 -04006401 offset = btrfs_find_space_for_alloc(block_group, search_start,
Miao Xiea4820392013-09-09 13:19:42 +08006402 num_bytes, empty_size,
6403 &max_extent_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006404 /*
6405 * If we didn't find a chunk, and we haven't failed on this
6406 * block group before, and this block group is in the middle of
6407 * caching and we are ok with waiting, then go ahead and wait
6408 * for progress to be made, and set failed_alloc to true.
6409 *
6410 * If failed_alloc is true then we've already waited on this
6411 * block group once and should move on to the next block group.
6412 */
6413 if (!offset && !failed_alloc && !cached &&
6414 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04006415 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006416 num_bytes + empty_size);
6417 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04006418 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006419 } else if (!offset) {
Miao Xie60d2adb2011-09-09 17:34:35 +08006420 if (!cached)
6421 have_caching_bg = true;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006422 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04006423 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006424checks:
David Woodhouse53b381b2013-01-29 18:40:14 -05006425 search_start = stripe_align(root, used_block_group,
6426 offset, num_bytes);
Chris Masone37c9e62007-05-09 20:13:14 -04006427
Josef Bacik2552d172009-04-03 10:14:19 -04006428 /* move on to the next group */
6429 if (search_start + num_bytes >
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006430 used_block_group->key.objectid + used_block_group->key.offset) {
6431 btrfs_add_free_space(used_block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04006432 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04006433 }
Josef Bacik80eb2342008-10-29 14:49:05 -04006434
Josef Bacik6226cb02009-04-03 10:14:18 -04006435 if (offset < search_start)
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006436 btrfs_add_free_space(used_block_group, offset,
Josef Bacik6226cb02009-04-03 10:14:18 -04006437 search_start - offset);
6438 BUG_ON(offset > search_start);
6439
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006440 ret = btrfs_update_reserved_bytes(used_block_group, num_bytes,
Josef Bacikfb25e912011-07-26 17:00:46 -04006441 alloc_type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006442 if (ret == -EAGAIN) {
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006443 btrfs_add_free_space(used_block_group, offset, num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006444 goto loop;
6445 }
Yan Zheng11833d62009-09-11 16:11:19 -04006446
Josef Bacik2552d172009-04-03 10:14:19 -04006447 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006448 ins->objectid = search_start;
6449 ins->offset = num_bytes;
6450
Josef Bacik3f7de032011-11-10 08:29:20 -05006451 trace_btrfs_reserve_extent(orig_root, block_group,
6452 search_start, num_bytes);
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006453 if (used_block_group != block_group)
6454 btrfs_put_block_group(used_block_group);
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04006455 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006456 break;
6457loop:
Josef Bacik0a243252009-09-11 16:11:20 -04006458 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04006459 failed_alloc = false;
Yan, Zhengb742bb822010-05-16 10:46:24 -04006460 BUG_ON(index != get_block_group_index(block_group));
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05006461 if (used_block_group != block_group)
6462 btrfs_put_block_group(used_block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04006463 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04006464 }
6465 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05006466
Miao Xie60d2adb2011-09-09 17:34:35 +08006467 if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg)
6468 goto search;
6469
Yan, Zhengb742bb822010-05-16 10:46:24 -04006470 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
6471 goto search;
6472
Josef Bacik285ff5a2012-01-13 15:27:45 -05006473 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05006474 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
6475 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04006476 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
6477 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
6478 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
6479 * again
Chris Masonfa9c0d792009-04-03 09:47:43 -04006480 */
Josef Bacik723bda22011-05-27 16:11:38 -04006481 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) {
Yan, Zhengb742bb822010-05-16 10:46:24 -04006482 index = 0;
Josef Bacik723bda22011-05-27 16:11:38 -04006483 loop++;
Josef Bacik817d52f2009-07-13 21:29:25 -04006484 if (loop == LOOP_ALLOC_CHUNK) {
Josef Bacik00361582013-08-14 14:02:47 -04006485 struct btrfs_trans_handle *trans;
6486
6487 trans = btrfs_join_transaction(root);
6488 if (IS_ERR(trans)) {
6489 ret = PTR_ERR(trans);
6490 goto out;
6491 }
6492
David Sterbab6919a52013-04-29 13:39:40 +00006493 ret = do_chunk_alloc(trans, root, flags,
Josef Bacikea658ba2012-09-11 16:57:25 -04006494 CHUNK_ALLOC_FORCE);
6495 /*
6496 * Do not bail out on ENOSPC since we
6497 * can do more things.
6498 */
Josef Bacik00361582013-08-14 14:02:47 -04006499 if (ret < 0 && ret != -ENOSPC)
Josef Bacikea658ba2012-09-11 16:57:25 -04006500 btrfs_abort_transaction(trans,
6501 root, ret);
Josef Bacik00361582013-08-14 14:02:47 -04006502 else
6503 ret = 0;
6504 btrfs_end_transaction(trans, root);
6505 if (ret)
Josef Bacikea658ba2012-09-11 16:57:25 -04006506 goto out;
Josef Bacik723bda22011-05-27 16:11:38 -04006507 }
6508
6509 if (loop == LOOP_NO_EMPTY_SIZE) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04006510 empty_size = 0;
6511 empty_cluster = 0;
6512 }
Chris Mason42e70e72008-11-07 18:17:11 -05006513
Josef Bacik723bda22011-05-27 16:11:38 -04006514 goto search;
Josef Bacik2552d172009-04-03 10:14:19 -04006515 } else if (!ins->objectid) {
6516 ret = -ENOSPC;
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04006517 } else if (ins->objectid) {
Josef Bacik2552d172009-04-03 10:14:19 -04006518 ret = 0;
6519 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006520out:
Miao Xiea4820392013-09-09 13:19:42 +08006521 if (ret == -ENOSPC)
6522 ins->offset = max_extent_size;
Chris Mason0f70abe2007-02-28 16:46:22 -05006523 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05006524}
Chris Masonec44a352008-04-28 15:29:52 -04006525
Josef Bacik9ed74f22009-09-11 16:12:44 -04006526static void dump_space_info(struct btrfs_space_info *info, u64 bytes,
6527 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04006528{
6529 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb822010-05-16 10:46:24 -04006530 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006531
Josef Bacik9ed74f22009-09-11 16:12:44 -04006532 spin_lock(&info->lock);
Josef Bacikfb25e912011-07-26 17:00:46 -04006533 printk(KERN_INFO "space_info %llu has %llu free, is %sfull\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006534 info->flags,
6535 info->total_bytes - info->bytes_used - info->bytes_pinned -
6536 info->bytes_reserved - info->bytes_readonly,
Chris Masond3977122009-01-05 21:25:51 -05006537 (info->full) ? "" : "not ");
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006538 printk(KERN_INFO "space_info total=%llu, used=%llu, pinned=%llu, "
6539 "reserved=%llu, may_use=%llu, readonly=%llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006540 info->total_bytes, info->bytes_used, info->bytes_pinned,
6541 info->bytes_reserved, info->bytes_may_use,
6542 info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04006543 spin_unlock(&info->lock);
6544
6545 if (!dump_block_groups)
6546 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006547
Josef Bacik80eb2342008-10-29 14:49:05 -04006548 down_read(&info->groups_sem);
Yan, Zhengb742bb822010-05-16 10:46:24 -04006549again:
6550 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04006551 spin_lock(&cache->lock);
Liu Bo799ffc32012-07-06 03:31:35 -06006552 printk(KERN_INFO "block group %llu has %llu bytes, %llu used %llu pinned %llu reserved %s\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006553 cache->key.objectid, cache->key.offset,
6554 btrfs_block_group_used(&cache->item), cache->pinned,
6555 cache->reserved, cache->ro ? "[readonly]" : "");
Josef Bacik0f9dd462008-09-23 13:14:11 -04006556 btrfs_dump_free_space(cache, bytes);
6557 spin_unlock(&cache->lock);
6558 }
Yan, Zhengb742bb822010-05-16 10:46:24 -04006559 if (++index < BTRFS_NR_RAID_TYPES)
6560 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04006561 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04006562}
Zheng Yane8569812008-09-26 10:05:48 -04006563
Josef Bacik00361582013-08-14 14:02:47 -04006564int btrfs_reserve_extent(struct btrfs_root *root,
Yan Zheng11833d62009-09-11 16:11:19 -04006565 u64 num_bytes, u64 min_alloc_size,
6566 u64 empty_size, u64 hint_byte,
David Sterbab6919a52013-04-29 13:39:40 +00006567 struct btrfs_key *ins, int is_data)
Chris Masonfec577f2007-02-26 10:40:21 -05006568{
Miao Xie9e622d62012-01-26 15:01:12 -05006569 bool final_tried = false;
David Sterbab6919a52013-04-29 13:39:40 +00006570 u64 flags;
Chris Masonfec577f2007-02-26 10:40:21 -05006571 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04006572
David Sterbab6919a52013-04-29 13:39:40 +00006573 flags = btrfs_get_alloc_profile(root, is_data);
Chris Mason98d20f62008-04-14 09:46:10 -04006574again:
Chris Masondb945352007-10-15 16:15:53 -04006575 WARN_ON(num_bytes < root->sectorsize);
Josef Bacik00361582013-08-14 14:02:47 -04006576 ret = find_free_extent(root, num_bytes, empty_size, hint_byte, ins,
6577 flags);
Chris Mason3b951512008-04-17 11:29:12 -04006578
Miao Xie9e622d62012-01-26 15:01:12 -05006579 if (ret == -ENOSPC) {
Miao Xiea4820392013-09-09 13:19:42 +08006580 if (!final_tried && ins->offset) {
6581 num_bytes = min(num_bytes >> 1, ins->offset);
Zach Brown24542bf2012-11-16 00:04:43 +00006582 num_bytes = round_down(num_bytes, root->sectorsize);
Miao Xie9e622d62012-01-26 15:01:12 -05006583 num_bytes = max(num_bytes, min_alloc_size);
Miao Xie9e622d62012-01-26 15:01:12 -05006584 if (num_bytes == min_alloc_size)
6585 final_tried = true;
6586 goto again;
6587 } else if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
6588 struct btrfs_space_info *sinfo;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006589
David Sterbab6919a52013-04-29 13:39:40 +00006590 sinfo = __find_space_info(root->fs_info, flags);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006591 btrfs_err(root->fs_info, "allocation failed flags %llu, wanted %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006592 flags, num_bytes);
Jeff Mahoney53804282012-03-01 14:56:28 +01006593 if (sinfo)
6594 dump_space_info(sinfo, num_bytes, 1);
Miao Xie9e622d62012-01-26 15:01:12 -05006595 }
Chris Mason925baed2008-06-25 16:01:30 -04006596 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04006597
6598 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006599}
6600
Chris Masone688b7252011-10-31 20:52:39 -04006601static int __btrfs_free_reserved_extent(struct btrfs_root *root,
6602 u64 start, u64 len, int pin)
Chris Mason65b51a02008-08-01 15:11:20 -04006603{
Josef Bacik0f9dd462008-09-23 13:14:11 -04006604 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05006605 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006606
Josef Bacik0f9dd462008-09-23 13:14:11 -04006607 cache = btrfs_lookup_block_group(root->fs_info, start);
6608 if (!cache) {
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006609 btrfs_err(root->fs_info, "Unable to find block group for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006610 start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04006611 return -ENOSPC;
6612 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05006613
Li Dongyang5378e602011-03-24 10:24:27 +00006614 if (btrfs_test_opt(root, DISCARD))
6615 ret = btrfs_discard_extent(root, start, len, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05006616
Chris Masone688b7252011-10-31 20:52:39 -04006617 if (pin)
6618 pin_down_extent(root, cache, start, len, 1);
6619 else {
6620 btrfs_add_free_space(cache, start, len);
6621 btrfs_update_reserved_bytes(cache, len, RESERVE_FREE);
6622 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04006623 btrfs_put_block_group(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04006624
liubo1abe9b82011-03-24 11:18:59 +00006625 trace_btrfs_reserved_extent_free(root, start, len);
6626
Chris Masone6dcd2d2008-07-17 12:53:50 -04006627 return ret;
6628}
6629
Chris Masone688b7252011-10-31 20:52:39 -04006630int btrfs_free_reserved_extent(struct btrfs_root *root,
6631 u64 start, u64 len)
6632{
6633 return __btrfs_free_reserved_extent(root, start, len, 0);
6634}
6635
6636int btrfs_free_and_pin_reserved_extent(struct btrfs_root *root,
6637 u64 start, u64 len)
6638{
6639 return __btrfs_free_reserved_extent(root, start, len, 1);
6640}
6641
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006642static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
6643 struct btrfs_root *root,
6644 u64 parent, u64 root_objectid,
6645 u64 flags, u64 owner, u64 offset,
6646 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006647{
6648 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006649 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006650 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006651 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04006652 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006653 struct extent_buffer *leaf;
6654 int type;
6655 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04006656
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006657 if (parent > 0)
6658 type = BTRFS_SHARED_DATA_REF_KEY;
6659 else
6660 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04006661
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006662 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05006663
6664 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00006665 if (!path)
6666 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05006667
Chris Masonb9473432009-03-13 11:00:37 -04006668 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006669 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
6670 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006671 if (ret) {
6672 btrfs_free_path(path);
6673 return ret;
6674 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04006675
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006676 leaf = path->nodes[0];
6677 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05006678 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006679 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
6680 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
6681 btrfs_set_extent_flags(leaf, extent_item,
6682 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05006683
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006684 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
6685 btrfs_set_extent_inline_ref_type(leaf, iref, type);
6686 if (parent > 0) {
6687 struct btrfs_shared_data_ref *ref;
6688 ref = (struct btrfs_shared_data_ref *)(iref + 1);
6689 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
6690 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
6691 } else {
6692 struct btrfs_extent_data_ref *ref;
6693 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
6694 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
6695 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
6696 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
6697 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
6698 }
Chris Mason47e4bb92008-02-01 14:51:59 -05006699
6700 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05006701 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04006702
Liu Boc53d6132012-12-27 09:01:19 +00006703 ret = update_block_group(root, ins->objectid, ins->offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006704 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006705 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006706 ins->objectid, ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05006707 BUG();
6708 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04006709 trace_btrfs_reserved_extent_alloc(root, ins->objectid, ins->offset);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006710 return ret;
6711}
6712
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006713static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
6714 struct btrfs_root *root,
6715 u64 parent, u64 root_objectid,
6716 u64 flags, struct btrfs_disk_key *key,
6717 int level, struct btrfs_key *ins)
6718{
6719 int ret;
6720 struct btrfs_fs_info *fs_info = root->fs_info;
6721 struct btrfs_extent_item *extent_item;
6722 struct btrfs_tree_block_info *block_info;
6723 struct btrfs_extent_inline_ref *iref;
6724 struct btrfs_path *path;
6725 struct extent_buffer *leaf;
Josef Bacik3173a182013-03-07 14:22:04 -05006726 u32 size = sizeof(*extent_item) + sizeof(*iref);
6727 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
6728 SKINNY_METADATA);
6729
6730 if (!skinny_metadata)
6731 size += sizeof(*block_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006732
6733 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07006734 if (!path)
6735 return -ENOMEM;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006736
6737 path->leave_spinning = 1;
6738 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
6739 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006740 if (ret) {
6741 btrfs_free_path(path);
6742 return ret;
6743 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006744
6745 leaf = path->nodes[0];
6746 extent_item = btrfs_item_ptr(leaf, path->slots[0],
6747 struct btrfs_extent_item);
6748 btrfs_set_extent_refs(leaf, extent_item, 1);
6749 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
6750 btrfs_set_extent_flags(leaf, extent_item,
6751 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006752
Josef Bacik3173a182013-03-07 14:22:04 -05006753 if (skinny_metadata) {
6754 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
6755 } else {
6756 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
6757 btrfs_set_tree_block_key(leaf, block_info, key);
6758 btrfs_set_tree_block_level(leaf, block_info, level);
6759 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
6760 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006761
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006762 if (parent > 0) {
6763 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
6764 btrfs_set_extent_inline_ref_type(leaf, iref,
6765 BTRFS_SHARED_BLOCK_REF_KEY);
6766 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
6767 } else {
6768 btrfs_set_extent_inline_ref_type(leaf, iref,
6769 BTRFS_TREE_BLOCK_REF_KEY);
6770 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
6771 }
6772
6773 btrfs_mark_buffer_dirty(leaf);
6774 btrfs_free_path(path);
6775
Josef Bacik3173a182013-03-07 14:22:04 -05006776 ret = update_block_group(root, ins->objectid, root->leafsize, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006777 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006778 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006779 ins->objectid, ins->offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006780 BUG();
6781 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04006782
6783 trace_btrfs_reserved_extent_alloc(root, ins->objectid, root->leafsize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006784 return ret;
6785}
6786
6787int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
6788 struct btrfs_root *root,
6789 u64 root_objectid, u64 owner,
6790 u64 offset, struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04006791{
6792 int ret;
Chris Mason1c2308f82008-09-23 13:14:13 -04006793
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006794 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04006795
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006796 ret = btrfs_add_delayed_data_ref(root->fs_info, trans, ins->objectid,
6797 ins->offset, 0,
6798 root_objectid, owner, offset,
6799 BTRFS_ADD_DELAYED_EXTENT, NULL, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -04006800 return ret;
6801}
Chris Masone02119d2008-09-05 16:13:11 -04006802
6803/*
6804 * this is used by the tree logging recovery code. It records that
6805 * an extent has been allocated and makes sure to clear the free
6806 * space cache bits as well
6807 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006808int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
6809 struct btrfs_root *root,
6810 u64 root_objectid, u64 owner, u64 offset,
6811 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04006812{
6813 int ret;
6814 struct btrfs_block_group_cache *block_group;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006815
6816 /*
6817 * Mixed block groups will exclude before processing the log so we only
6818 * need to do the exlude dance if this fs isn't mixed.
6819 */
6820 if (!btrfs_fs_incompat(root->fs_info, MIXED_GROUPS)) {
6821 ret = __exclude_logged_extent(root, ins->objectid, ins->offset);
6822 if (ret)
6823 return ret;
6824 }
Chris Masone02119d2008-09-05 16:13:11 -04006825
Chris Masone02119d2008-09-05 16:13:11 -04006826 block_group = btrfs_lookup_block_group(root->fs_info, ins->objectid);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006827 if (!block_group)
6828 return -EINVAL;
Yan Zheng11833d62009-09-11 16:11:19 -04006829
Josef Bacikfb25e912011-07-26 17:00:46 -04006830 ret = btrfs_update_reserved_bytes(block_group, ins->offset,
6831 RESERVE_ALLOC_NO_ACCOUNT);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006832 BUG_ON(ret); /* logic error */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006833 ret = alloc_reserved_file_extent(trans, root, 0, root_objectid,
6834 0, owner, offset, ins, 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006835 btrfs_put_block_group(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04006836 return ret;
6837}
6838
Eric Sandeen48a3b632013-04-25 20:41:01 +00006839static struct extent_buffer *
6840btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
6841 u64 bytenr, u32 blocksize, int level)
Chris Mason65b51a02008-08-01 15:11:20 -04006842{
6843 struct extent_buffer *buf;
6844
6845 buf = btrfs_find_create_tree_block(root, bytenr, blocksize);
6846 if (!buf)
6847 return ERR_PTR(-ENOMEM);
6848 btrfs_set_header_generation(buf, trans->transid);
Chris Mason85d4e462011-07-26 16:11:19 -04006849 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04006850 btrfs_tree_lock(buf);
6851 clean_tree_block(trans, root, buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05006852 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
Chris Masonb4ce94d2009-02-04 09:25:08 -05006853
6854 btrfs_set_lock_blocking(buf);
Chris Mason65b51a02008-08-01 15:11:20 -04006855 btrfs_set_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05006856
Chris Masond0c803c2008-09-11 16:17:57 -04006857 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Yan, Zheng8cef4e12009-11-12 09:33:26 +00006858 /*
6859 * we allow two log transactions at a time, use different
6860 * EXENT bit to differentiate dirty pages.
6861 */
6862 if (root->log_transid % 2 == 0)
6863 set_extent_dirty(&root->dirty_log_pages, buf->start,
6864 buf->start + buf->len - 1, GFP_NOFS);
6865 else
6866 set_extent_new(&root->dirty_log_pages, buf->start,
6867 buf->start + buf->len - 1, GFP_NOFS);
Chris Masond0c803c2008-09-11 16:17:57 -04006868 } else {
6869 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
6870 buf->start + buf->len - 1, GFP_NOFS);
6871 }
Chris Mason65b51a02008-08-01 15:11:20 -04006872 trans->blocks_used++;
Chris Masonb4ce94d2009-02-04 09:25:08 -05006873 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04006874 return buf;
6875}
6876
Yan, Zhengf0486c62010-05-16 10:46:25 -04006877static struct btrfs_block_rsv *
6878use_block_rsv(struct btrfs_trans_handle *trans,
6879 struct btrfs_root *root, u32 blocksize)
6880{
6881 struct btrfs_block_rsv *block_rsv;
Josef Bacik68a82272011-01-24 21:43:20 +00006882 struct btrfs_block_rsv *global_rsv = &root->fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006883 int ret;
Miao Xied88033d2013-05-13 13:55:12 +00006884 bool global_updated = false;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006885
6886 block_rsv = get_block_rsv(trans, root);
6887
Miao Xieb586b322013-05-13 13:55:10 +00006888 if (unlikely(block_rsv->size == 0))
6889 goto try_reserve;
Miao Xied88033d2013-05-13 13:55:12 +00006890again:
Yan, Zhengf0486c62010-05-16 10:46:25 -04006891 ret = block_rsv_use_bytes(block_rsv, blocksize);
6892 if (!ret)
6893 return block_rsv;
6894
Miao Xieb586b322013-05-13 13:55:10 +00006895 if (block_rsv->failfast)
6896 return ERR_PTR(ret);
6897
Miao Xied88033d2013-05-13 13:55:12 +00006898 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
6899 global_updated = true;
6900 update_global_block_rsv(root->fs_info);
6901 goto again;
6902 }
6903
Miao Xieb586b322013-05-13 13:55:10 +00006904 if (btrfs_test_opt(root, ENOSPC_DEBUG)) {
6905 static DEFINE_RATELIMIT_STATE(_rs,
6906 DEFAULT_RATELIMIT_INTERVAL * 10,
6907 /*DEFAULT_RATELIMIT_BURST*/ 1);
6908 if (__ratelimit(&_rs))
6909 WARN(1, KERN_DEBUG
6910 "btrfs: block rsv returned %d\n", ret);
6911 }
6912try_reserve:
6913 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
6914 BTRFS_RESERVE_NO_FLUSH);
6915 if (!ret)
6916 return block_rsv;
6917 /*
6918 * If we couldn't reserve metadata bytes try and use some from
Miao Xie5881cfc2013-05-13 13:55:11 +00006919 * the global reserve if its space type is the same as the global
6920 * reservation.
Miao Xieb586b322013-05-13 13:55:10 +00006921 */
Miao Xie5881cfc2013-05-13 13:55:11 +00006922 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
6923 block_rsv->space_info == global_rsv->space_info) {
Miao Xieb586b322013-05-13 13:55:10 +00006924 ret = block_rsv_use_bytes(global_rsv, blocksize);
6925 if (!ret)
6926 return global_rsv;
6927 }
6928 return ERR_PTR(ret);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006929}
6930
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006931static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
6932 struct btrfs_block_rsv *block_rsv, u32 blocksize)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006933{
6934 block_rsv_add_bytes(block_rsv, blocksize, 0);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006935 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006936}
6937
Chris Masonfec577f2007-02-26 10:40:21 -05006938/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04006939 * finds a free extent and does all the dirty work required for allocation
6940 * returns the key for the extent through ins, and a tree buffer for
6941 * the first block of the extent through buf.
6942 *
Chris Masonfec577f2007-02-26 10:40:21 -05006943 * returns the tree buffer or NULL.
6944 */
Chris Mason5f39d392007-10-15 16:14:19 -04006945struct extent_buffer *btrfs_alloc_free_block(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006946 struct btrfs_root *root, u32 blocksize,
6947 u64 parent, u64 root_objectid,
6948 struct btrfs_disk_key *key, int level,
Jan Schmidt5581a512012-05-16 17:04:52 +02006949 u64 hint, u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05006950{
Chris Masone2fa7222007-03-12 16:22:34 -04006951 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006952 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04006953 struct extent_buffer *buf;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006954 u64 flags = 0;
6955 int ret;
Josef Bacik3173a182013-03-07 14:22:04 -05006956 bool skinny_metadata = btrfs_fs_incompat(root->fs_info,
6957 SKINNY_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006958
6959 block_rsv = use_block_rsv(trans, root, blocksize);
6960 if (IS_ERR(block_rsv))
6961 return ERR_CAST(block_rsv);
6962
Josef Bacik00361582013-08-14 14:02:47 -04006963 ret = btrfs_reserve_extent(root, blocksize, blocksize,
Josef Bacik81c9ad22012-01-18 10:56:06 -05006964 empty_size, hint, &ins, 0);
Chris Masonfec577f2007-02-26 10:40:21 -05006965 if (ret) {
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006966 unuse_block_rsv(root->fs_info, block_rsv, blocksize);
Chris Mason54aa1f42007-06-22 14:16:25 -04006967 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05006968 }
Chris Mason55c69072008-01-09 15:55:33 -05006969
Chris Mason4008c042009-02-12 14:09:45 -05006970 buf = btrfs_init_new_buffer(trans, root, ins.objectid,
6971 blocksize, level);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006972 BUG_ON(IS_ERR(buf)); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006973
6974 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
6975 if (parent == 0)
6976 parent = ins.objectid;
6977 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
6978 } else
6979 BUG_ON(parent > 0);
6980
6981 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
6982 struct btrfs_delayed_extent_op *extent_op;
Miao Xie78a61842012-11-21 02:21:28 +00006983 extent_op = btrfs_alloc_delayed_extent_op();
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006984 BUG_ON(!extent_op); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006985 if (key)
6986 memcpy(&extent_op->key, key, sizeof(extent_op->key));
6987 else
6988 memset(&extent_op->key, 0, sizeof(extent_op->key));
6989 extent_op->flags_to_set = flags;
Josef Bacik3173a182013-03-07 14:22:04 -05006990 if (skinny_metadata)
6991 extent_op->update_key = 0;
6992 else
6993 extent_op->update_key = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006994 extent_op->update_flags = 1;
6995 extent_op->is_data = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04006996 extent_op->level = level;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006997
Arne Jansen66d7e7f2011-09-12 15:26:38 +02006998 ret = btrfs_add_delayed_tree_ref(root->fs_info, trans,
6999 ins.objectid,
Yan, Zhengf0486c62010-05-16 10:46:25 -04007000 ins.offset, parent, root_objectid,
7001 level, BTRFS_ADD_DELAYED_EXTENT,
Jan Schmidt5581a512012-05-16 17:04:52 +02007002 extent_op, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007003 BUG_ON(ret); /* -ENOMEM */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007004 }
Chris Masonfec577f2007-02-26 10:40:21 -05007005 return buf;
7006}
Chris Masona28ec192007-03-06 20:08:01 -05007007
Yan Zheng2c47e6052009-06-27 21:07:35 -04007008struct walk_control {
7009 u64 refs[BTRFS_MAX_LEVEL];
7010 u64 flags[BTRFS_MAX_LEVEL];
7011 struct btrfs_key update_progress;
7012 int stage;
7013 int level;
7014 int shared_level;
7015 int update_ref;
7016 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007017 int reada_slot;
7018 int reada_count;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007019 int for_reloc;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007020};
7021
7022#define DROP_REFERENCE 1
7023#define UPDATE_BACKREF 2
7024
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007025static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
7026 struct btrfs_root *root,
7027 struct walk_control *wc,
7028 struct btrfs_path *path)
7029{
7030 u64 bytenr;
7031 u64 generation;
7032 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007033 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007034 u32 nritems;
7035 u32 blocksize;
7036 struct btrfs_key key;
7037 struct extent_buffer *eb;
7038 int ret;
7039 int slot;
7040 int nread = 0;
7041
7042 if (path->slots[wc->level] < wc->reada_slot) {
7043 wc->reada_count = wc->reada_count * 2 / 3;
7044 wc->reada_count = max(wc->reada_count, 2);
7045 } else {
7046 wc->reada_count = wc->reada_count * 3 / 2;
7047 wc->reada_count = min_t(int, wc->reada_count,
7048 BTRFS_NODEPTRS_PER_BLOCK(root));
7049 }
7050
7051 eb = path->nodes[wc->level];
7052 nritems = btrfs_header_nritems(eb);
7053 blocksize = btrfs_level_size(root, wc->level - 1);
7054
7055 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
7056 if (nread >= wc->reada_count)
7057 break;
7058
7059 cond_resched();
7060 bytenr = btrfs_node_blockptr(eb, slot);
7061 generation = btrfs_node_ptr_generation(eb, slot);
7062
7063 if (slot == path->slots[wc->level])
7064 goto reada;
7065
7066 if (wc->stage == UPDATE_BACKREF &&
7067 generation <= root->root_key.offset)
7068 continue;
7069
Yan, Zheng94fcca92009-10-09 09:25:16 -04007070 /* We don't lock the tree block, it's OK to be racy here */
Josef Bacik3173a182013-03-07 14:22:04 -05007071 ret = btrfs_lookup_extent_info(trans, root, bytenr,
7072 wc->level - 1, 1, &refs,
7073 &flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007074 /* We don't care about errors in readahead. */
7075 if (ret < 0)
7076 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007077 BUG_ON(refs == 0);
7078
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007079 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007080 if (refs == 1)
7081 goto reada;
7082
Yan, Zheng94fcca92009-10-09 09:25:16 -04007083 if (wc->level == 1 &&
7084 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7085 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007086 if (!wc->update_ref ||
7087 generation <= root->root_key.offset)
7088 continue;
7089 btrfs_node_key_to_cpu(eb, &key, slot);
7090 ret = btrfs_comp_cpu_keys(&key,
7091 &wc->update_progress);
7092 if (ret < 0)
7093 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007094 } else {
7095 if (wc->level == 1 &&
7096 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7097 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007098 }
7099reada:
7100 ret = readahead_tree_block(root, bytenr, blocksize,
7101 generation);
7102 if (ret)
7103 break;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007104 nread++;
7105 }
7106 wc->reada_slot = slot;
7107}
7108
Chris Mason9aca1d52007-03-13 11:09:37 -04007109/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007110 * helper to process tree block while walking down the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04007111 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04007112 * when wc->stage == UPDATE_BACKREF, this function updates
7113 * back refs for pointers in the block.
7114 *
7115 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04007116 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007117static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
7118 struct btrfs_root *root,
7119 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007120 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04007121{
7122 int level = wc->level;
7123 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04007124 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
7125 int ret;
7126
7127 if (wc->stage == UPDATE_BACKREF &&
7128 btrfs_header_owner(eb) != root->root_key.objectid)
7129 return 1;
7130
7131 /*
7132 * when reference count of tree block is 1, it won't increase
7133 * again. once full backref flag is set, we never clear it.
7134 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04007135 if (lookup_info &&
7136 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
7137 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007138 BUG_ON(!path->locks[level]);
7139 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05007140 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007141 &wc->refs[level],
7142 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007143 BUG_ON(ret == -ENOMEM);
7144 if (ret)
7145 return ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007146 BUG_ON(wc->refs[level] == 0);
7147 }
7148
Yan Zheng2c47e6052009-06-27 21:07:35 -04007149 if (wc->stage == DROP_REFERENCE) {
7150 if (wc->refs[level] > 1)
7151 return 1;
7152
7153 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04007154 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007155 path->locks[level] = 0;
7156 }
7157 return 0;
7158 }
7159
7160 /* wc->stage == UPDATE_BACKREF */
7161 if (!(wc->flags[level] & flag)) {
7162 BUG_ON(!path->locks[level]);
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007163 ret = btrfs_inc_ref(trans, root, eb, 1, wc->for_reloc);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007164 BUG_ON(ret); /* -ENOMEM */
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007165 ret = btrfs_dec_ref(trans, root, eb, 0, wc->for_reloc);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007166 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007167 ret = btrfs_set_disk_extent_flags(trans, root, eb->start,
Josef Bacikb1c79e02013-05-09 13:49:30 -04007168 eb->len, flag,
7169 btrfs_header_level(eb), 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007170 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007171 wc->flags[level] |= flag;
7172 }
7173
7174 /*
7175 * the block is shared by multiple trees, so it's not good to
7176 * keep the tree lock
7177 */
7178 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04007179 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007180 path->locks[level] = 0;
7181 }
7182 return 0;
7183}
7184
7185/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007186 * helper to process tree block pointer.
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007187 *
7188 * when wc->stage == DROP_REFERENCE, this function checks
7189 * reference count of the block pointed to. if the block
7190 * is shared and we need update back refs for the subtree
7191 * rooted at the block, this function changes wc->stage to
7192 * UPDATE_BACKREF. if the block is shared and there is no
7193 * need to update back, this function drops the reference
7194 * to the block.
7195 *
7196 * NOTE: return value 1 means we should stop walking down.
7197 */
7198static noinline int do_walk_down(struct btrfs_trans_handle *trans,
7199 struct btrfs_root *root,
7200 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007201 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007202{
7203 u64 bytenr;
7204 u64 generation;
7205 u64 parent;
7206 u32 blocksize;
7207 struct btrfs_key key;
7208 struct extent_buffer *next;
7209 int level = wc->level;
7210 int reada = 0;
7211 int ret = 0;
7212
7213 generation = btrfs_node_ptr_generation(path->nodes[level],
7214 path->slots[level]);
7215 /*
7216 * if the lower level block was created before the snapshot
7217 * was created, we know there is no need to update back refs
7218 * for the subtree
7219 */
7220 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04007221 generation <= root->root_key.offset) {
7222 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007223 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007224 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007225
7226 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
7227 blocksize = btrfs_level_size(root, level - 1);
7228
7229 next = btrfs_find_tree_block(root, bytenr, blocksize);
7230 if (!next) {
7231 next = btrfs_find_create_tree_block(root, bytenr, blocksize);
Miao Xie90d2c51d2010-03-25 12:37:12 +00007232 if (!next)
7233 return -ENOMEM;
Josef Bacikb2aaaa32013-07-05 17:05:38 -04007234 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
7235 level - 1);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007236 reada = 1;
7237 }
7238 btrfs_tree_lock(next);
7239 btrfs_set_lock_blocking(next);
7240
Josef Bacik3173a182013-03-07 14:22:04 -05007241 ret = btrfs_lookup_extent_info(trans, root, bytenr, level - 1, 1,
Yan, Zheng94fcca92009-10-09 09:25:16 -04007242 &wc->refs[level - 1],
7243 &wc->flags[level - 1]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007244 if (ret < 0) {
7245 btrfs_tree_unlock(next);
7246 return ret;
7247 }
7248
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007249 if (unlikely(wc->refs[level - 1] == 0)) {
7250 btrfs_err(root->fs_info, "Missing references.");
7251 BUG();
7252 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04007253 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007254
Yan, Zheng94fcca92009-10-09 09:25:16 -04007255 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007256 if (wc->refs[level - 1] > 1) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04007257 if (level == 1 &&
7258 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7259 goto skip;
7260
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007261 if (!wc->update_ref ||
7262 generation <= root->root_key.offset)
7263 goto skip;
7264
7265 btrfs_node_key_to_cpu(path->nodes[level], &key,
7266 path->slots[level]);
7267 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
7268 if (ret < 0)
7269 goto skip;
7270
7271 wc->stage = UPDATE_BACKREF;
7272 wc->shared_level = level - 1;
7273 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04007274 } else {
7275 if (level == 1 &&
7276 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
7277 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007278 }
7279
Chris Masonb9fab912012-05-06 07:23:47 -04007280 if (!btrfs_buffer_uptodate(next, generation, 0)) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007281 btrfs_tree_unlock(next);
7282 free_extent_buffer(next);
7283 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007284 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007285 }
7286
7287 if (!next) {
7288 if (reada && level == 1)
7289 reada_walk_down(trans, root, wc, path);
7290 next = read_tree_block(root, bytenr, blocksize, generation);
Josef Bacik416bc652013-04-23 14:17:42 -04007291 if (!next || !extent_buffer_uptodate(next)) {
7292 free_extent_buffer(next);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00007293 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04007294 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007295 btrfs_tree_lock(next);
7296 btrfs_set_lock_blocking(next);
7297 }
7298
7299 level--;
7300 BUG_ON(level != btrfs_header_level(next));
7301 path->nodes[level] = next;
7302 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04007303 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007304 wc->level = level;
7305 if (wc->level == 1)
7306 wc->reada_slot = 0;
7307 return 0;
7308skip:
7309 wc->refs[level - 1] = 0;
7310 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007311 if (wc->stage == DROP_REFERENCE) {
7312 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
7313 parent = path->nodes[level]->start;
7314 } else {
7315 BUG_ON(root->root_key.objectid !=
7316 btrfs_header_owner(path->nodes[level]));
7317 parent = 0;
7318 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007319
Yan, Zheng94fcca92009-10-09 09:25:16 -04007320 ret = btrfs_free_extent(trans, root, bytenr, blocksize, parent,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007321 root->root_key.objectid, level - 1, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007322 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007323 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007324 btrfs_tree_unlock(next);
7325 free_extent_buffer(next);
Yan, Zheng94fcca92009-10-09 09:25:16 -04007326 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007327 return 1;
7328}
7329
7330/*
Liu Bo2c016dc2012-12-26 15:32:17 +08007331 * helper to process tree block while walking up the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04007332 *
7333 * when wc->stage == DROP_REFERENCE, this function drops
7334 * reference count on the block.
7335 *
7336 * when wc->stage == UPDATE_BACKREF, this function changes
7337 * wc->stage back to DROP_REFERENCE if we changed wc->stage
7338 * to UPDATE_BACKREF previously while processing the block.
7339 *
7340 * NOTE: return value 1 means we should stop walking up.
7341 */
7342static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
7343 struct btrfs_root *root,
7344 struct btrfs_path *path,
7345 struct walk_control *wc)
7346{
Yan, Zhengf0486c62010-05-16 10:46:25 -04007347 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007348 int level = wc->level;
7349 struct extent_buffer *eb = path->nodes[level];
7350 u64 parent = 0;
7351
7352 if (wc->stage == UPDATE_BACKREF) {
7353 BUG_ON(wc->shared_level < level);
7354 if (level < wc->shared_level)
7355 goto out;
7356
Yan Zheng2c47e6052009-06-27 21:07:35 -04007357 ret = find_next_key(path, level + 1, &wc->update_progress);
7358 if (ret > 0)
7359 wc->update_ref = 0;
7360
7361 wc->stage = DROP_REFERENCE;
7362 wc->shared_level = -1;
7363 path->slots[level] = 0;
7364
7365 /*
7366 * check reference count again if the block isn't locked.
7367 * we should start walking down the tree again if reference
7368 * count is one.
7369 */
7370 if (!path->locks[level]) {
7371 BUG_ON(level == 0);
7372 btrfs_tree_lock(eb);
7373 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04007374 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007375
7376 ret = btrfs_lookup_extent_info(trans, root,
Josef Bacik3173a182013-03-07 14:22:04 -05007377 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007378 &wc->refs[level],
7379 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007380 if (ret < 0) {
7381 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00007382 path->locks[level] = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007383 return ret;
7384 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007385 BUG_ON(wc->refs[level] == 0);
7386 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04007387 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00007388 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007389 return 1;
7390 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007391 }
7392 }
7393
7394 /* wc->stage == DROP_REFERENCE */
7395 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
7396
7397 if (wc->refs[level] == 1) {
7398 if (level == 0) {
7399 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007400 ret = btrfs_dec_ref(trans, root, eb, 1,
7401 wc->for_reloc);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007402 else
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007403 ret = btrfs_dec_ref(trans, root, eb, 0,
7404 wc->for_reloc);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007405 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04007406 }
7407 /* make block locked assertion in clean_tree_block happy */
7408 if (!path->locks[level] &&
7409 btrfs_header_generation(eb) == trans->transid) {
7410 btrfs_tree_lock(eb);
7411 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04007412 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007413 }
7414 clean_tree_block(trans, root, eb);
7415 }
7416
7417 if (eb == root->node) {
7418 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
7419 parent = eb->start;
7420 else
7421 BUG_ON(root->root_key.objectid !=
7422 btrfs_header_owner(eb));
7423 } else {
7424 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
7425 parent = path->nodes[level + 1]->start;
7426 else
7427 BUG_ON(root->root_key.objectid !=
7428 btrfs_header_owner(path->nodes[level + 1]));
7429 }
7430
Jan Schmidt5581a512012-05-16 17:04:52 +02007431 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007432out:
7433 wc->refs[level] = 0;
7434 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007435 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007436}
7437
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007438static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
7439 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007440 struct btrfs_path *path,
7441 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04007442{
Yan Zheng2c47e6052009-06-27 21:07:35 -04007443 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04007444 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007445 int ret;
7446
Yan Zheng2c47e6052009-06-27 21:07:35 -04007447 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04007448 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007449 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04007450 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007451
Yan Zheng2c47e6052009-06-27 21:07:35 -04007452 if (level == 0)
7453 break;
7454
Yan, Zheng7a7965f2010-02-01 02:41:17 +00007455 if (path->slots[level] >=
7456 btrfs_header_nritems(path->nodes[level]))
7457 break;
7458
Yan, Zheng94fcca92009-10-09 09:25:16 -04007459 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007460 if (ret > 0) {
7461 path->slots[level]++;
7462 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00007463 } else if (ret < 0)
7464 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007465 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007466 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04007467 return 0;
7468}
7469
Chris Masond3977122009-01-05 21:25:51 -05007470static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05007471 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04007472 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04007473 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05007474{
Yan Zheng2c47e6052009-06-27 21:07:35 -04007475 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05007476 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04007477
Yan Zheng2c47e6052009-06-27 21:07:35 -04007478 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
7479 while (level < max_level && path->nodes[level]) {
7480 wc->level = level;
7481 if (path->slots[level] + 1 <
7482 btrfs_header_nritems(path->nodes[level])) {
7483 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05007484 return 0;
7485 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007486 ret = walk_up_proc(trans, root, path, wc);
7487 if (ret > 0)
7488 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05007489
Yan Zheng2c47e6052009-06-27 21:07:35 -04007490 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04007491 btrfs_tree_unlock_rw(path->nodes[level],
7492 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007493 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007494 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007495 free_extent_buffer(path->nodes[level]);
7496 path->nodes[level] = NULL;
7497 level++;
Chris Mason20524f02007-03-10 06:35:47 -05007498 }
7499 }
7500 return 1;
7501}
7502
Chris Mason9aca1d52007-03-13 11:09:37 -04007503/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04007504 * drop a subvolume tree.
7505 *
7506 * this function traverses the tree freeing any blocks that only
7507 * referenced by the tree.
7508 *
7509 * when a shared tree block is found. this function decreases its
7510 * reference count by one. if update_ref is true, this function
7511 * also make sure backrefs for the shared block and all lower level
7512 * blocks are properly updated.
David Sterba9d1a2a32013-03-12 15:13:28 +00007513 *
7514 * If called with for_reloc == 0, may exit early with -EAGAIN
Chris Mason9aca1d52007-03-13 11:09:37 -04007515 */
Jeff Mahoney2c536792011-10-03 23:22:41 -04007516int btrfs_drop_snapshot(struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007517 struct btrfs_block_rsv *block_rsv, int update_ref,
7518 int for_reloc)
Chris Mason20524f02007-03-10 06:35:47 -05007519{
Chris Mason5caf2a02007-04-02 11:20:42 -04007520 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007521 struct btrfs_trans_handle *trans;
7522 struct btrfs_root *tree_root = root->fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04007523 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007524 struct walk_control *wc;
7525 struct btrfs_key key;
7526 int err = 0;
7527 int ret;
7528 int level;
Josef Bacikd29a9f62013-07-17 19:30:20 -04007529 bool root_dropped = false;
Chris Mason20524f02007-03-10 06:35:47 -05007530
Chris Mason5caf2a02007-04-02 11:20:42 -04007531 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00007532 if (!path) {
7533 err = -ENOMEM;
7534 goto out;
7535 }
Chris Mason20524f02007-03-10 06:35:47 -05007536
Yan Zheng2c47e6052009-06-27 21:07:35 -04007537 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07007538 if (!wc) {
7539 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00007540 err = -ENOMEM;
7541 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07007542 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007543
Yan, Zhenga22285a2010-05-16 10:48:46 -04007544 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007545 if (IS_ERR(trans)) {
7546 err = PTR_ERR(trans);
7547 goto out_free;
7548 }
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00007549
Yan, Zheng3fd0a552010-05-16 10:49:59 -04007550 if (block_rsv)
7551 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007552
Chris Mason9f3a7422007-08-07 15:52:19 -04007553 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007554 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007555 path->nodes[level] = btrfs_lock_root_node(root);
7556 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04007557 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04007558 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007559 memset(&wc->update_progress, 0,
7560 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04007561 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04007562 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007563 memcpy(&wc->update_progress, &key,
7564 sizeof(wc->update_progress));
7565
Chris Mason6702ed42007-08-07 16:15:09 -04007566 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007567 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04007568 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007569 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
7570 path->lowest_level = 0;
7571 if (ret < 0) {
7572 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007573 goto out_end_trans;
Chris Mason9f3a7422007-08-07 15:52:19 -04007574 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007575 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007576
Chris Mason7d9eb122008-07-08 14:19:17 -04007577 /*
7578 * unlock our path, this is safe because only this
7579 * function is allowed to delete this snapshot
7580 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007581 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04007582
Yan Zheng2c47e6052009-06-27 21:07:35 -04007583 level = btrfs_header_level(root->node);
7584 while (1) {
7585 btrfs_tree_lock(path->nodes[level]);
7586 btrfs_set_lock_blocking(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04007587 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007588
7589 ret = btrfs_lookup_extent_info(trans, root,
7590 path->nodes[level]->start,
Josef Bacik3173a182013-03-07 14:22:04 -05007591 level, 1, &wc->refs[level],
Yan Zheng2c47e6052009-06-27 21:07:35 -04007592 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007593 if (ret < 0) {
7594 err = ret;
7595 goto out_end_trans;
7596 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007597 BUG_ON(wc->refs[level] == 0);
7598
7599 if (level == root_item->drop_level)
7600 break;
7601
7602 btrfs_tree_unlock(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04007603 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007604 WARN_ON(wc->refs[level] != 1);
7605 level--;
7606 }
7607 }
7608
7609 wc->level = level;
7610 wc->shared_level = -1;
7611 wc->stage = DROP_REFERENCE;
7612 wc->update_ref = update_ref;
7613 wc->keep_locks = 0;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007614 wc->for_reloc = for_reloc;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007615 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zheng2c47e6052009-06-27 21:07:35 -04007616
7617 while (1) {
David Sterba9d1a2a32013-03-12 15:13:28 +00007618
Yan Zheng2c47e6052009-06-27 21:07:35 -04007619 ret = walk_down_tree(trans, root, path, wc);
7620 if (ret < 0) {
7621 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04007622 break;
7623 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007624
7625 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
7626 if (ret < 0) {
7627 err = ret;
7628 break;
7629 }
7630
7631 if (ret > 0) {
7632 BUG_ON(wc->stage != DROP_REFERENCE);
7633 break;
7634 }
7635
7636 if (wc->stage == DROP_REFERENCE) {
7637 level = wc->level;
7638 btrfs_node_key(path->nodes[level],
7639 &root_item->drop_progress,
7640 path->slots[level]);
7641 root_item->drop_level = level;
7642 }
7643
7644 BUG_ON(wc->level == 0);
Josef Bacik3c8f2422013-07-15 11:57:06 -04007645 if (btrfs_should_end_transaction(trans, tree_root) ||
7646 (!for_reloc && btrfs_need_cleaner_sleep(root))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007647 ret = btrfs_update_root(trans, tree_root,
7648 &root->root_key,
7649 root_item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007650 if (ret) {
7651 btrfs_abort_transaction(trans, tree_root, ret);
7652 err = ret;
7653 goto out_end_trans;
7654 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007655
Yan, Zheng3fd0a552010-05-16 10:49:59 -04007656 btrfs_end_transaction_throttle(trans, tree_root);
Josef Bacik3c8f2422013-07-15 11:57:06 -04007657 if (!for_reloc && btrfs_need_cleaner_sleep(root)) {
7658 pr_debug("btrfs: drop snapshot early exit\n");
7659 err = -EAGAIN;
7660 goto out_free;
7661 }
7662
Yan, Zhenga22285a2010-05-16 10:48:46 -04007663 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007664 if (IS_ERR(trans)) {
7665 err = PTR_ERR(trans);
7666 goto out_free;
7667 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04007668 if (block_rsv)
7669 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04007670 }
Chris Mason20524f02007-03-10 06:35:47 -05007671 }
David Sterbab3b4aa72011-04-21 01:20:15 +02007672 btrfs_release_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007673 if (err)
7674 goto out_end_trans;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007675
7676 ret = btrfs_del_root(trans, tree_root, &root->root_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007677 if (ret) {
7678 btrfs_abort_transaction(trans, tree_root, ret);
7679 goto out_end_trans;
7680 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007681
Yan, Zheng76dda932009-09-21 16:00:26 -04007682 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Miao Xiecb517ea2013-05-15 07:48:19 +00007683 ret = btrfs_find_root(tree_root, &root->root_key, path,
7684 NULL, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007685 if (ret < 0) {
7686 btrfs_abort_transaction(trans, tree_root, ret);
7687 err = ret;
7688 goto out_end_trans;
7689 } else if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05007690 /* if we fail to delete the orphan item this time
7691 * around, it'll get picked up the next time.
7692 *
7693 * The most common failure here is just -ENOENT.
7694 */
7695 btrfs_del_orphan_item(trans, tree_root,
7696 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04007697 }
7698 }
7699
7700 if (root->in_radix) {
Miao Xiecb517ea2013-05-15 07:48:19 +00007701 btrfs_drop_and_free_fs_root(tree_root->fs_info, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04007702 } else {
7703 free_extent_buffer(root->node);
7704 free_extent_buffer(root->commit_root);
Miao Xieb0feb9d2013-05-15 07:48:20 +00007705 btrfs_put_fs_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04007706 }
Josef Bacikd29a9f62013-07-17 19:30:20 -04007707 root_dropped = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007708out_end_trans:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04007709 btrfs_end_transaction_throttle(trans, tree_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007710out_free:
Yan Zheng2c47e6052009-06-27 21:07:35 -04007711 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04007712 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00007713out:
Josef Bacikd29a9f62013-07-17 19:30:20 -04007714 /*
7715 * So if we need to stop dropping the snapshot for whatever reason we
7716 * need to make sure to add it back to the dead root list so that we
7717 * keep trying to do the work later. This also cleans up roots if we
7718 * don't have it in the radix (like when we recover after a power fail
7719 * or unmount) so we don't leak memory.
7720 */
Josef Bacikb37b39c2013-07-23 16:57:15 -04007721 if (!for_reloc && root_dropped == false)
Josef Bacikd29a9f62013-07-17 19:30:20 -04007722 btrfs_add_dead_root(root);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00007723 if (err)
7724 btrfs_std_error(root->fs_info, err);
Jeff Mahoney2c536792011-10-03 23:22:41 -04007725 return err;
Chris Mason20524f02007-03-10 06:35:47 -05007726}
Chris Mason9078a3e2007-04-26 16:46:15 -04007727
Yan Zheng2c47e6052009-06-27 21:07:35 -04007728/*
7729 * drop subtree rooted at tree block 'node'.
7730 *
7731 * NOTE: this function will unlock and release tree block 'node'
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007732 * only used by relocation code
Yan Zheng2c47e6052009-06-27 21:07:35 -04007733 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04007734int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
7735 struct btrfs_root *root,
7736 struct extent_buffer *node,
7737 struct extent_buffer *parent)
7738{
7739 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007740 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007741 int level;
7742 int parent_level;
7743 int ret = 0;
7744 int wret;
7745
Yan Zheng2c47e6052009-06-27 21:07:35 -04007746 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
7747
Yan Zhengf82d02d2008-10-29 14:49:05 -04007748 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00007749 if (!path)
7750 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007751
Yan Zheng2c47e6052009-06-27 21:07:35 -04007752 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00007753 if (!wc) {
7754 btrfs_free_path(path);
7755 return -ENOMEM;
7756 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04007757
Chris Masonb9447ef82009-03-09 11:45:38 -04007758 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007759 parent_level = btrfs_header_level(parent);
7760 extent_buffer_get(parent);
7761 path->nodes[parent_level] = parent;
7762 path->slots[parent_level] = btrfs_header_nritems(parent);
7763
Chris Masonb9447ef82009-03-09 11:45:38 -04007764 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007765 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007766 path->nodes[level] = node;
7767 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04007768 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007769
7770 wc->refs[parent_level] = 1;
7771 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
7772 wc->level = level;
7773 wc->shared_level = -1;
7774 wc->stage = DROP_REFERENCE;
7775 wc->update_ref = 0;
7776 wc->keep_locks = 1;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007777 wc->for_reloc = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04007778 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(root);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007779
7780 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04007781 wret = walk_down_tree(trans, root, path, wc);
7782 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04007783 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04007784 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04007785 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04007786
Yan Zheng2c47e6052009-06-27 21:07:35 -04007787 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007788 if (wret < 0)
7789 ret = wret;
7790 if (wret != 0)
7791 break;
7792 }
7793
Yan Zheng2c47e6052009-06-27 21:07:35 -04007794 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04007795 btrfs_free_path(path);
7796 return ret;
7797}
7798
Chris Masonec44a352008-04-28 15:29:52 -04007799static u64 update_block_group_flags(struct btrfs_root *root, u64 flags)
7800{
7801 u64 num_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03007802 u64 stripped;
Chris Masonec44a352008-04-28 15:29:52 -04007803
Ilya Dryomovfc67c452012-03-27 17:09:17 +03007804 /*
7805 * if restripe for this chunk_type is on pick target profile and
7806 * return, otherwise do the usual balance
7807 */
7808 stripped = get_restripe_target(root->fs_info, flags);
7809 if (stripped)
7810 return extended_to_chunk(stripped);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02007811
Chris Masoncd02dca2010-12-13 14:56:23 -05007812 /*
7813 * we add in the count of missing devices because we want
7814 * to make sure that any RAID levels on a degraded FS
7815 * continue to be honored.
7816 */
7817 num_devices = root->fs_info->fs_devices->rw_devices +
7818 root->fs_info->fs_devices->missing_devices;
7819
Ilya Dryomovfc67c452012-03-27 17:09:17 +03007820 stripped = BTRFS_BLOCK_GROUP_RAID0 |
David Woodhouse53b381b2013-01-29 18:40:14 -05007821 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
Ilya Dryomovfc67c452012-03-27 17:09:17 +03007822 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
7823
Chris Masonec44a352008-04-28 15:29:52 -04007824 if (num_devices == 1) {
7825 stripped |= BTRFS_BLOCK_GROUP_DUP;
7826 stripped = flags & ~stripped;
7827
7828 /* turn raid0 into single device chunks */
7829 if (flags & BTRFS_BLOCK_GROUP_RAID0)
7830 return stripped;
7831
7832 /* turn mirroring into duplication */
7833 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
7834 BTRFS_BLOCK_GROUP_RAID10))
7835 return stripped | BTRFS_BLOCK_GROUP_DUP;
Chris Masonec44a352008-04-28 15:29:52 -04007836 } else {
7837 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04007838 if (flags & stripped)
7839 return flags;
7840
7841 stripped |= BTRFS_BLOCK_GROUP_DUP;
7842 stripped = flags & ~stripped;
7843
7844 /* switch duplicated blocks with raid1 */
7845 if (flags & BTRFS_BLOCK_GROUP_DUP)
7846 return stripped | BTRFS_BLOCK_GROUP_RAID1;
7847
Ilya Dryomove3176ca2012-03-27 17:09:16 +03007848 /* this is drive concat, leave it alone */
Chris Masonec44a352008-04-28 15:29:52 -04007849 }
Ilya Dryomove3176ca2012-03-27 17:09:16 +03007850
Chris Masonec44a352008-04-28 15:29:52 -04007851 return flags;
7852}
7853
Miao Xie199c36e2011-07-15 10:34:36 +00007854static int set_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04007855{
Yan, Zhengf0486c62010-05-16 10:46:25 -04007856 struct btrfs_space_info *sinfo = cache->space_info;
7857 u64 num_bytes;
Miao Xie199c36e2011-07-15 10:34:36 +00007858 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007859 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04007860
Chris Masonc286ac42008-07-22 23:06:41 -04007861
Miao Xie199c36e2011-07-15 10:34:36 +00007862 /*
7863 * We need some metadata space and system metadata space for
7864 * allocating chunks in some corner cases until we force to set
7865 * it to be readonly.
7866 */
7867 if ((sinfo->flags &
7868 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
7869 !force)
7870 min_allocable_bytes = 1 * 1024 * 1024;
7871 else
7872 min_allocable_bytes = 0;
7873
Yan, Zhengf0486c62010-05-16 10:46:25 -04007874 spin_lock(&sinfo->lock);
7875 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00007876
7877 if (cache->ro) {
7878 ret = 0;
7879 goto out;
7880 }
7881
Yan, Zhengf0486c62010-05-16 10:46:25 -04007882 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
7883 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04007884
Yan, Zhengf0486c62010-05-16 10:46:25 -04007885 if (sinfo->bytes_used + sinfo->bytes_reserved + sinfo->bytes_pinned +
Josef Bacik37be25b2011-08-05 10:25:38 -04007886 sinfo->bytes_may_use + sinfo->bytes_readonly + num_bytes +
7887 min_allocable_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04007888 sinfo->bytes_readonly += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007889 cache->ro = 1;
7890 ret = 0;
7891 }
WuBo61cfea92011-07-26 03:30:11 +00007892out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04007893 spin_unlock(&cache->lock);
7894 spin_unlock(&sinfo->lock);
7895 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04007896}
7897
Yan, Zhengf0486c62010-05-16 10:46:25 -04007898int btrfs_set_block_group_ro(struct btrfs_root *root,
7899 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007900
7901{
Yan, Zhengf0486c62010-05-16 10:46:25 -04007902 struct btrfs_trans_handle *trans;
7903 u64 alloc_flags;
7904 int ret;
7905
7906 BUG_ON(cache->ro);
7907
Josef Bacik7a7eaa42011-04-13 12:54:33 -04007908 trans = btrfs_join_transaction(root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007909 if (IS_ERR(trans))
7910 return PTR_ERR(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007911
7912 alloc_flags = update_block_group_flags(root, cache->flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007913 if (alloc_flags != cache->flags) {
Josef Bacik698d0082012-09-12 14:08:47 -04007914 ret = do_chunk_alloc(trans, root, alloc_flags,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007915 CHUNK_ALLOC_FORCE);
7916 if (ret < 0)
7917 goto out;
7918 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04007919
Miao Xie199c36e2011-07-15 10:34:36 +00007920 ret = set_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007921 if (!ret)
7922 goto out;
7923 alloc_flags = get_alloc_profile(root, cache->space_info->flags);
Josef Bacik698d0082012-09-12 14:08:47 -04007924 ret = do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04007925 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007926 if (ret < 0)
7927 goto out;
Miao Xie199c36e2011-07-15 10:34:36 +00007928 ret = set_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007929out:
7930 btrfs_end_transaction(trans, root);
7931 return ret;
7932}
7933
Chris Masonc87f08c2011-02-16 13:57:04 -05007934int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
7935 struct btrfs_root *root, u64 type)
7936{
7937 u64 alloc_flags = get_alloc_profile(root, type);
Josef Bacik698d0082012-09-12 14:08:47 -04007938 return do_chunk_alloc(trans, root, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04007939 CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05007940}
7941
Miao Xie6d07bce2011-01-05 10:07:31 +00007942/*
7943 * helper to account the unused space of all the readonly block group in the
7944 * list. takes mirrors into account.
7945 */
7946static u64 __btrfs_get_ro_block_group_free_space(struct list_head *groups_list)
7947{
7948 struct btrfs_block_group_cache *block_group;
7949 u64 free_bytes = 0;
7950 int factor;
7951
7952 list_for_each_entry(block_group, groups_list, list) {
7953 spin_lock(&block_group->lock);
7954
7955 if (!block_group->ro) {
7956 spin_unlock(&block_group->lock);
7957 continue;
7958 }
7959
7960 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
7961 BTRFS_BLOCK_GROUP_RAID10 |
7962 BTRFS_BLOCK_GROUP_DUP))
7963 factor = 2;
7964 else
7965 factor = 1;
7966
7967 free_bytes += (block_group->key.offset -
7968 btrfs_block_group_used(&block_group->item)) *
7969 factor;
7970
7971 spin_unlock(&block_group->lock);
7972 }
7973
7974 return free_bytes;
7975}
7976
7977/*
7978 * helper to account the unused space of all the readonly block group in the
7979 * space_info. takes mirrors into account.
7980 */
7981u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
7982{
7983 int i;
7984 u64 free_bytes = 0;
7985
7986 spin_lock(&sinfo->lock);
7987
7988 for(i = 0; i < BTRFS_NR_RAID_TYPES; i++)
7989 if (!list_empty(&sinfo->block_groups[i]))
7990 free_bytes += __btrfs_get_ro_block_group_free_space(
7991 &sinfo->block_groups[i]);
7992
7993 spin_unlock(&sinfo->lock);
7994
7995 return free_bytes;
7996}
7997
Jeff Mahoney143bede2012-03-01 14:56:26 +01007998void btrfs_set_block_group_rw(struct btrfs_root *root,
Yan, Zhengf0486c62010-05-16 10:46:25 -04007999 struct btrfs_block_group_cache *cache)
8000{
8001 struct btrfs_space_info *sinfo = cache->space_info;
8002 u64 num_bytes;
8003
8004 BUG_ON(!cache->ro);
8005
8006 spin_lock(&sinfo->lock);
8007 spin_lock(&cache->lock);
8008 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
8009 cache->bytes_super - btrfs_block_group_used(&cache->item);
8010 sinfo->bytes_readonly -= num_bytes;
8011 cache->ro = 0;
8012 spin_unlock(&cache->lock);
8013 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008014}
8015
Josef Bacikba1bf482009-09-11 16:11:19 -04008016/*
8017 * checks to see if its even possible to relocate this block group.
8018 *
8019 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
8020 * ok to go ahead and try.
8021 */
8022int btrfs_can_relocate(struct btrfs_root *root, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04008023{
Zheng Yan1a40e232008-09-26 10:09:34 -04008024 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04008025 struct btrfs_space_info *space_info;
8026 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
8027 struct btrfs_device *device;
Josef Bacik6df9a952013-06-27 13:22:46 -04008028 struct btrfs_trans_handle *trans;
liubocdcb7252011-08-03 10:15:25 +00008029 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04008030 u64 dev_min = 1;
8031 u64 dev_nr = 0;
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008032 u64 target;
liubocdcb7252011-08-03 10:15:25 +00008033 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04008034 int full = 0;
8035 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05008036
Josef Bacikba1bf482009-09-11 16:11:19 -04008037 block_group = btrfs_lookup_block_group(root->fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04008038
Josef Bacikba1bf482009-09-11 16:11:19 -04008039 /* odd, couldn't find the block group, leave it alone */
8040 if (!block_group)
8041 return -1;
Chris Masonedbd8d42007-12-21 16:27:24 -05008042
liubocdcb7252011-08-03 10:15:25 +00008043 min_free = btrfs_block_group_used(&block_group->item);
8044
Josef Bacikba1bf482009-09-11 16:11:19 -04008045 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00008046 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04008047 goto out;
Chris Mason323da792008-05-09 11:46:48 -04008048
Josef Bacikba1bf482009-09-11 16:11:19 -04008049 space_info = block_group->space_info;
8050 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04008051
Josef Bacikba1bf482009-09-11 16:11:19 -04008052 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04008053
Josef Bacikba1bf482009-09-11 16:11:19 -04008054 /*
8055 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04008056 * relocate it unless we're able to allocate a new chunk below.
8057 *
8058 * Otherwise, we need to make sure we have room in the space to handle
8059 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04008060 */
Chris Mason7ce618d2009-09-22 14:48:44 -04008061 if ((space_info->total_bytes != block_group->key.offset) &&
liubocdcb7252011-08-03 10:15:25 +00008062 (space_info->bytes_used + space_info->bytes_reserved +
8063 space_info->bytes_pinned + space_info->bytes_readonly +
8064 min_free < space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04008065 spin_unlock(&space_info->lock);
8066 goto out;
8067 }
8068 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008069
Josef Bacikba1bf482009-09-11 16:11:19 -04008070 /*
8071 * ok we don't have enough space, but maybe we have free space on our
8072 * devices to allocate new chunks for relocation, so loop through our
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008073 * alloc devices and guess if we have enough space. if this block
8074 * group is going to be restriped, run checks against the target
8075 * profile instead of the current one.
Josef Bacikba1bf482009-09-11 16:11:19 -04008076 */
8077 ret = -1;
Chris Mason4313b392008-01-03 09:08:48 -05008078
liubocdcb7252011-08-03 10:15:25 +00008079 /*
8080 * index:
8081 * 0: raid10
8082 * 1: raid1
8083 * 2: dup
8084 * 3: raid0
8085 * 4: single
8086 */
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008087 target = get_restripe_target(root->fs_info, block_group->flags);
8088 if (target) {
Liu Bo31e50222012-11-21 14:18:10 +00008089 index = __get_raid_index(extended_to_chunk(target));
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03008090 } else {
8091 /*
8092 * this is just a balance, so if we were marked as full
8093 * we know there is no space for a new chunk
8094 */
8095 if (full)
8096 goto out;
8097
8098 index = get_block_group_index(block_group);
8099 }
8100
Miao Xiee6ec7162013-01-17 05:38:51 +00008101 if (index == BTRFS_RAID_RAID10) {
liubocdcb7252011-08-03 10:15:25 +00008102 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04008103 /* Divide by 2 */
8104 min_free >>= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00008105 } else if (index == BTRFS_RAID_RAID1) {
liubocdcb7252011-08-03 10:15:25 +00008106 dev_min = 2;
Miao Xiee6ec7162013-01-17 05:38:51 +00008107 } else if (index == BTRFS_RAID_DUP) {
Josef Bacik6719db62011-08-20 08:29:51 -04008108 /* Multiply by 2 */
8109 min_free <<= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00008110 } else if (index == BTRFS_RAID_RAID0) {
liubocdcb7252011-08-03 10:15:25 +00008111 dev_min = fs_devices->rw_devices;
Josef Bacik6719db62011-08-20 08:29:51 -04008112 do_div(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00008113 }
8114
Josef Bacik6df9a952013-06-27 13:22:46 -04008115 /* We need to do this so that we can look at pending chunks */
8116 trans = btrfs_join_transaction(root);
8117 if (IS_ERR(trans)) {
8118 ret = PTR_ERR(trans);
8119 goto out;
8120 }
8121
Josef Bacikba1bf482009-09-11 16:11:19 -04008122 mutex_lock(&root->fs_info->chunk_mutex);
8123 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00008124 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04008125
Josef Bacikba1bf482009-09-11 16:11:19 -04008126 /*
8127 * check to make sure we can actually find a chunk with enough
8128 * space to fit our block group in.
8129 */
Stefan Behrens63a212a2012-11-05 18:29:28 +01008130 if (device->total_bytes > device->bytes_used + min_free &&
8131 !device->is_tgtdev_for_dev_replace) {
Josef Bacik6df9a952013-06-27 13:22:46 -04008132 ret = find_free_dev_extent(trans, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00008133 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04008134 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00008135 dev_nr++;
8136
8137 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05008138 break;
liubocdcb7252011-08-03 10:15:25 +00008139
Josef Bacikba1bf482009-09-11 16:11:19 -04008140 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05008141 }
Chris Masonedbd8d42007-12-21 16:27:24 -05008142 }
Josef Bacikba1bf482009-09-11 16:11:19 -04008143 mutex_unlock(&root->fs_info->chunk_mutex);
Josef Bacik6df9a952013-06-27 13:22:46 -04008144 btrfs_end_transaction(trans, root);
Chris Masonedbd8d42007-12-21 16:27:24 -05008145out:
Josef Bacikba1bf482009-09-11 16:11:19 -04008146 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05008147 return ret;
8148}
8149
Christoph Hellwigb2950862008-12-02 09:54:17 -05008150static int find_first_block_group(struct btrfs_root *root,
8151 struct btrfs_path *path, struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04008152{
Chris Mason925baed2008-06-25 16:01:30 -04008153 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04008154 struct btrfs_key found_key;
8155 struct extent_buffer *leaf;
8156 int slot;
8157
8158 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
8159 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008160 goto out;
8161
Chris Masond3977122009-01-05 21:25:51 -05008162 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04008163 slot = path->slots[0];
8164 leaf = path->nodes[0];
8165 if (slot >= btrfs_header_nritems(leaf)) {
8166 ret = btrfs_next_leaf(root, path);
8167 if (ret == 0)
8168 continue;
8169 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04008170 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04008171 break;
8172 }
8173 btrfs_item_key_to_cpu(leaf, &found_key, slot);
8174
8175 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04008176 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
8177 ret = 0;
8178 goto out;
8179 }
Chris Mason0b86a832008-03-24 15:01:56 -04008180 path->slots[0]++;
8181 }
Chris Mason925baed2008-06-25 16:01:30 -04008182out:
Chris Mason0b86a832008-03-24 15:01:56 -04008183 return ret;
8184}
8185
Josef Bacik0af3d002010-06-21 14:48:16 -04008186void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
8187{
8188 struct btrfs_block_group_cache *block_group;
8189 u64 last = 0;
8190
8191 while (1) {
8192 struct inode *inode;
8193
8194 block_group = btrfs_lookup_first_block_group(info, last);
8195 while (block_group) {
8196 spin_lock(&block_group->lock);
8197 if (block_group->iref)
8198 break;
8199 spin_unlock(&block_group->lock);
8200 block_group = next_block_group(info->tree_root,
8201 block_group);
8202 }
8203 if (!block_group) {
8204 if (last == 0)
8205 break;
8206 last = 0;
8207 continue;
8208 }
8209
8210 inode = block_group->inode;
8211 block_group->iref = 0;
8212 block_group->inode = NULL;
8213 spin_unlock(&block_group->lock);
8214 iput(inode);
8215 last = block_group->key.objectid + block_group->key.offset;
8216 btrfs_put_block_group(block_group);
8217 }
8218}
8219
Zheng Yan1a40e232008-09-26 10:09:34 -04008220int btrfs_free_block_groups(struct btrfs_fs_info *info)
8221{
8222 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04008223 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04008224 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04008225 struct rb_node *n;
8226
Yan Zheng11833d62009-09-11 16:11:19 -04008227 down_write(&info->extent_commit_sem);
8228 while (!list_empty(&info->caching_block_groups)) {
8229 caching_ctl = list_entry(info->caching_block_groups.next,
8230 struct btrfs_caching_control, list);
8231 list_del(&caching_ctl->list);
8232 put_caching_control(caching_ctl);
8233 }
8234 up_write(&info->extent_commit_sem);
8235
Zheng Yan1a40e232008-09-26 10:09:34 -04008236 spin_lock(&info->block_group_cache_lock);
8237 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
8238 block_group = rb_entry(n, struct btrfs_block_group_cache,
8239 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04008240 rb_erase(&block_group->cache_node,
8241 &info->block_group_cache_tree);
Yan Zhengd899e052008-10-30 14:25:28 -04008242 spin_unlock(&info->block_group_cache_lock);
8243
Josef Bacik80eb2342008-10-29 14:49:05 -04008244 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04008245 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04008246 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05008247
Josef Bacik817d52f2009-07-13 21:29:25 -04008248 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04008249 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04008250
Josef Bacik3c148742011-02-02 15:53:47 +00008251 /*
8252 * We haven't cached this block group, which means we could
8253 * possibly have excluded extents on this block group.
8254 */
Josef Bacik36cce922013-08-05 11:15:21 -04008255 if (block_group->cached == BTRFS_CACHE_NO ||
8256 block_group->cached == BTRFS_CACHE_ERROR)
Josef Bacik3c148742011-02-02 15:53:47 +00008257 free_excluded_extents(info->extent_root, block_group);
8258
Josef Bacik817d52f2009-07-13 21:29:25 -04008259 btrfs_remove_free_space_cache(block_group);
Josef Bacik11dfe352009-11-13 20:12:59 +00008260 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04008261
8262 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008263 }
8264 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -04008265
8266 /* now that all the block groups are freed, go through and
8267 * free all the space_info structs. This is only called during
8268 * the final stages of unmount, and so we know nobody is
8269 * using them. We call synchronize_rcu() once before we start,
8270 * just to be on the safe side.
8271 */
8272 synchronize_rcu();
8273
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04008274 release_global_block_rsv(info);
8275
Chris Mason4184ea72009-03-10 12:39:20 -04008276 while(!list_empty(&info->space_info)) {
8277 space_info = list_entry(info->space_info.next,
8278 struct btrfs_space_info,
8279 list);
David Sterbab069e0c2013-02-08 21:28:17 +00008280 if (btrfs_test_opt(info->tree_root, ENOSPC_DEBUG)) {
8281 if (space_info->bytes_pinned > 0 ||
8282 space_info->bytes_reserved > 0 ||
8283 space_info->bytes_may_use > 0) {
8284 WARN_ON(1);
8285 dump_space_info(space_info, 0, 0);
8286 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008287 }
Josef Bacikb150a4f2013-06-19 15:00:04 -04008288 percpu_counter_destroy(&space_info->total_bytes_pinned);
Chris Mason4184ea72009-03-10 12:39:20 -04008289 list_del(&space_info->list);
8290 kfree(space_info);
8291 }
Zheng Yan1a40e232008-09-26 10:09:34 -04008292 return 0;
8293}
8294
Yan, Zhengb742bb822010-05-16 10:46:24 -04008295static void __link_block_group(struct btrfs_space_info *space_info,
8296 struct btrfs_block_group_cache *cache)
8297{
8298 int index = get_block_group_index(cache);
8299
8300 down_write(&space_info->groups_sem);
8301 list_add_tail(&cache->list, &space_info->block_groups[index]);
8302 up_write(&space_info->groups_sem);
8303}
8304
Chris Mason9078a3e2007-04-26 16:46:15 -04008305int btrfs_read_block_groups(struct btrfs_root *root)
8306{
8307 struct btrfs_path *path;
8308 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04008309 struct btrfs_block_group_cache *cache;
Chris Masonbe744172007-05-06 10:15:01 -04008310 struct btrfs_fs_info *info = root->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04008311 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04008312 struct btrfs_key key;
8313 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04008314 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -04008315 int need_clear = 0;
8316 u64 cache_gen;
Chris Mason96b51792007-10-15 16:15:19 -04008317
Chris Masonbe744172007-05-06 10:15:01 -04008318 root = info->extent_root;
Chris Mason9078a3e2007-04-26 16:46:15 -04008319 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04008320 key.offset = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04008321 btrfs_set_key_type(&key, BTRFS_BLOCK_GROUP_ITEM_KEY);
Chris Mason9078a3e2007-04-26 16:46:15 -04008322 path = btrfs_alloc_path();
8323 if (!path)
8324 return -ENOMEM;
Josef Bacik026fd312011-05-13 10:32:11 -04008325 path->reada = 1;
Chris Mason9078a3e2007-04-26 16:46:15 -04008326
David Sterba6c417612011-04-13 15:41:04 +02008327 cache_gen = btrfs_super_cache_generation(root->fs_info->super_copy);
Josef Bacik73bc1872011-10-03 14:07:49 -04008328 if (btrfs_test_opt(root, SPACE_CACHE) &&
David Sterba6c417612011-04-13 15:41:04 +02008329 btrfs_super_generation(root->fs_info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -04008330 need_clear = 1;
Josef Bacik88c2ba32010-09-21 14:21:34 -04008331 if (btrfs_test_opt(root, CLEAR_CACHE))
8332 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -04008333
Chris Masond3977122009-01-05 21:25:51 -05008334 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04008335 ret = find_first_block_group(root, path, &key);
Yan, Zhengb742bb822010-05-16 10:46:24 -04008336 if (ret > 0)
8337 break;
Chris Mason0b86a832008-03-24 15:01:56 -04008338 if (ret != 0)
8339 goto error;
Chris Mason5f39d392007-10-15 16:14:19 -04008340 leaf = path->nodes[0];
8341 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason8f18cf12008-04-25 16:53:30 -04008342 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Chris Mason9078a3e2007-04-26 16:46:15 -04008343 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -04008344 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008345 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -04008346 }
Li Zefan34d52cb2011-03-29 13:46:06 +08008347 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
8348 GFP_NOFS);
8349 if (!cache->free_space_ctl) {
8350 kfree(cache);
8351 ret = -ENOMEM;
8352 goto error;
8353 }
Chris Mason3e1ad542007-05-07 20:03:49 -04008354
Yan Zhengd2fb3432008-12-11 16:30:39 -05008355 atomic_set(&cache->count, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04008356 spin_lock_init(&cache->lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04008357 cache->fs_info = info;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008358 INIT_LIST_HEAD(&cache->list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04008359 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik96303082009-07-13 21:29:25 -04008360
Liu Bocf7c1ef2012-07-06 03:31:34 -06008361 if (need_clear) {
8362 /*
8363 * When we mount with old space cache, we need to
8364 * set BTRFS_DC_CLEAR and set dirty flag.
8365 *
8366 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
8367 * truncate the old free space cache inode and
8368 * setup a new one.
8369 * b) Setting 'dirty flag' makes sure that we flush
8370 * the new space cache info onto disk.
8371 */
Josef Bacik0af3d002010-06-21 14:48:16 -04008372 cache->disk_cache_state = BTRFS_DC_CLEAR;
Liu Bocf7c1ef2012-07-06 03:31:34 -06008373 if (btrfs_test_opt(root, SPACE_CACHE))
8374 cache->dirty = 1;
8375 }
Josef Bacik0af3d002010-06-21 14:48:16 -04008376
Chris Mason5f39d392007-10-15 16:14:19 -04008377 read_extent_buffer(leaf, &cache->item,
8378 btrfs_item_ptr_offset(leaf, path->slots[0]),
8379 sizeof(cache->item));
Chris Mason9078a3e2007-04-26 16:46:15 -04008380 memcpy(&cache->key, &found_key, sizeof(found_key));
Chris Mason0b86a832008-03-24 15:01:56 -04008381
Chris Mason9078a3e2007-04-26 16:46:15 -04008382 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +02008383 btrfs_release_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04008384 cache->flags = btrfs_block_group_flags(&cache->item);
Josef Bacik817d52f2009-07-13 21:29:25 -04008385 cache->sectorsize = root->sectorsize;
David Woodhouse53b381b2013-01-29 18:40:14 -05008386 cache->full_stripe_len = btrfs_full_stripe_len(root,
8387 &root->fs_info->mapping_tree,
8388 found_key.objectid);
Li Zefan34d52cb2011-03-29 13:46:06 +08008389 btrfs_init_free_space_ctl(cache);
8390
Josef Bacik817d52f2009-07-13 21:29:25 -04008391 /*
Josef Bacik3c148742011-02-02 15:53:47 +00008392 * We need to exclude the super stripes now so that the space
8393 * info has super bytes accounted for, otherwise we'll think
8394 * we have more space than we actually do.
8395 */
Josef Bacik835d9742013-03-19 12:13:25 -04008396 ret = exclude_super_stripes(root, cache);
8397 if (ret) {
8398 /*
8399 * We may have excluded something, so call this just in
8400 * case.
8401 */
8402 free_excluded_extents(root, cache);
8403 kfree(cache->free_space_ctl);
8404 kfree(cache);
8405 goto error;
8406 }
Josef Bacik3c148742011-02-02 15:53:47 +00008407
8408 /*
Josef Bacik817d52f2009-07-13 21:29:25 -04008409 * check for two cases, either we are full, and therefore
8410 * don't need to bother with the caching work since we won't
8411 * find any space, or we are empty, and we can just add all
8412 * the space in and be done with it. This saves us _alot_ of
8413 * time, particularly in the full case.
8414 */
8415 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -04008416 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008417 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik1b2da372009-09-11 16:11:20 -04008418 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04008419 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -04008420 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008421 cache->cached = BTRFS_CACHE_FINISHED;
8422 add_new_free_space(cache, root->fs_info,
8423 found_key.objectid,
8424 found_key.objectid +
8425 found_key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -04008426 free_excluded_extents(root, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -04008427 }
Chris Mason96b51792007-10-15 16:15:19 -04008428
Josef Bacik8c579fe2013-04-02 12:40:42 -04008429 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8430 if (ret) {
8431 btrfs_remove_free_space_cache(cache);
8432 btrfs_put_block_group(cache);
8433 goto error;
8434 }
8435
Chris Mason6324fbf2008-03-24 15:01:59 -04008436 ret = update_space_info(info, cache->flags, found_key.offset,
8437 btrfs_block_group_used(&cache->item),
8438 &space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -04008439 if (ret) {
8440 btrfs_remove_free_space_cache(cache);
8441 spin_lock(&info->block_group_cache_lock);
8442 rb_erase(&cache->cache_node,
8443 &info->block_group_cache_tree);
8444 spin_unlock(&info->block_group_cache_lock);
8445 btrfs_put_block_group(cache);
8446 goto error;
8447 }
8448
Chris Mason6324fbf2008-03-24 15:01:59 -04008449 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -04008450 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008451 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04008452 spin_unlock(&cache->space_info->lock);
8453
Yan, Zhengb742bb822010-05-16 10:46:24 -04008454 __link_block_group(space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04008455
Chris Mason75ccf472008-09-30 19:24:06 -04008456 set_avail_alloc_bits(root->fs_info, cache->flags);
Yan Zheng2b820322008-11-17 21:11:30 -05008457 if (btrfs_chunk_readonly(root, cache->key.objectid))
Miao Xie199c36e2011-07-15 10:34:36 +00008458 set_block_group_ro(cache, 1);
Chris Mason9078a3e2007-04-26 16:46:15 -04008459 }
Yan, Zhengb742bb822010-05-16 10:46:24 -04008460
8461 list_for_each_entry_rcu(space_info, &root->fs_info->space_info, list) {
8462 if (!(get_alloc_profile(root, space_info->flags) &
8463 (BTRFS_BLOCK_GROUP_RAID10 |
8464 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05008465 BTRFS_BLOCK_GROUP_RAID5 |
8466 BTRFS_BLOCK_GROUP_RAID6 |
Yan, Zhengb742bb822010-05-16 10:46:24 -04008467 BTRFS_BLOCK_GROUP_DUP)))
8468 continue;
8469 /*
8470 * avoid allocating from un-mirrored block group if there are
8471 * mirrored block groups.
8472 */
chandan1095cc02013-07-16 12:28:56 +05308473 list_for_each_entry(cache,
8474 &space_info->block_groups[BTRFS_RAID_RAID0],
8475 list)
Miao Xie199c36e2011-07-15 10:34:36 +00008476 set_block_group_ro(cache, 1);
chandan1095cc02013-07-16 12:28:56 +05308477 list_for_each_entry(cache,
8478 &space_info->block_groups[BTRFS_RAID_SINGLE],
8479 list)
Miao Xie199c36e2011-07-15 10:34:36 +00008480 set_block_group_ro(cache, 1);
Yan, Zhengb742bb822010-05-16 10:46:24 -04008481 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008482
8483 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -04008484 ret = 0;
8485error:
Chris Mason9078a3e2007-04-26 16:46:15 -04008486 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -04008487 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04008488}
Chris Mason6324fbf2008-03-24 15:01:59 -04008489
Josef Bacikea658ba2012-09-11 16:57:25 -04008490void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans,
8491 struct btrfs_root *root)
8492{
8493 struct btrfs_block_group_cache *block_group, *tmp;
8494 struct btrfs_root *extent_root = root->fs_info->extent_root;
8495 struct btrfs_block_group_item item;
8496 struct btrfs_key key;
8497 int ret = 0;
8498
8499 list_for_each_entry_safe(block_group, tmp, &trans->new_bgs,
8500 new_bg_list) {
8501 list_del_init(&block_group->new_bg_list);
8502
8503 if (ret)
8504 continue;
8505
8506 spin_lock(&block_group->lock);
8507 memcpy(&item, &block_group->item, sizeof(item));
8508 memcpy(&key, &block_group->key, sizeof(key));
8509 spin_unlock(&block_group->lock);
8510
8511 ret = btrfs_insert_item(trans, extent_root, &key, &item,
8512 sizeof(item));
8513 if (ret)
8514 btrfs_abort_transaction(trans, extent_root, ret);
Josef Bacik6df9a952013-06-27 13:22:46 -04008515 ret = btrfs_finish_chunk_alloc(trans, extent_root,
8516 key.objectid, key.offset);
8517 if (ret)
8518 btrfs_abort_transaction(trans, extent_root, ret);
Josef Bacikea658ba2012-09-11 16:57:25 -04008519 }
8520}
8521
Chris Mason6324fbf2008-03-24 15:01:59 -04008522int btrfs_make_block_group(struct btrfs_trans_handle *trans,
8523 struct btrfs_root *root, u64 bytes_used,
Chris Masone17cade2008-04-15 15:41:47 -04008524 u64 type, u64 chunk_objectid, u64 chunk_offset,
Chris Mason6324fbf2008-03-24 15:01:59 -04008525 u64 size)
8526{
8527 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04008528 struct btrfs_root *extent_root;
8529 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -04008530
8531 extent_root = root->fs_info->extent_root;
Chris Mason6324fbf2008-03-24 15:01:59 -04008532
Chris Mason12fcfd22009-03-24 10:24:20 -04008533 root->fs_info->last_trans_log_full_commit = trans->transid;
Chris Masone02119d2008-09-05 16:13:11 -04008534
Chris Mason8f18cf12008-04-25 16:53:30 -04008535 cache = kzalloc(sizeof(*cache), GFP_NOFS);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008536 if (!cache)
8537 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +08008538 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
8539 GFP_NOFS);
8540 if (!cache->free_space_ctl) {
8541 kfree(cache);
8542 return -ENOMEM;
8543 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04008544
Chris Masone17cade2008-04-15 15:41:47 -04008545 cache->key.objectid = chunk_offset;
Chris Mason6324fbf2008-03-24 15:01:59 -04008546 cache->key.offset = size;
Yan Zhengd2fb3432008-12-11 16:30:39 -05008547 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Josef Bacik96303082009-07-13 21:29:25 -04008548 cache->sectorsize = root->sectorsize;
Josef Bacik0af3d002010-06-21 14:48:16 -04008549 cache->fs_info = root->fs_info;
David Woodhouse53b381b2013-01-29 18:40:14 -05008550 cache->full_stripe_len = btrfs_full_stripe_len(root,
8551 &root->fs_info->mapping_tree,
8552 chunk_offset);
Josef Bacik96303082009-07-13 21:29:25 -04008553
Yan Zhengd2fb3432008-12-11 16:30:39 -05008554 atomic_set(&cache->count, 1);
Chris Masonc286ac42008-07-22 23:06:41 -04008555 spin_lock_init(&cache->lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008556 INIT_LIST_HEAD(&cache->list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04008557 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacikea658ba2012-09-11 16:57:25 -04008558 INIT_LIST_HEAD(&cache->new_bg_list);
Chris Mason0ef3e662008-05-24 14:04:53 -04008559
Li Zefan34d52cb2011-03-29 13:46:06 +08008560 btrfs_init_free_space_ctl(cache);
8561
Chris Mason6324fbf2008-03-24 15:01:59 -04008562 btrfs_set_block_group_used(&cache->item, bytes_used);
Chris Mason6324fbf2008-03-24 15:01:59 -04008563 btrfs_set_block_group_chunk_objectid(&cache->item, chunk_objectid);
8564 cache->flags = type;
8565 btrfs_set_block_group_flags(&cache->item, type);
8566
Yan Zheng11833d62009-09-11 16:11:19 -04008567 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -04008568 cache->cached = BTRFS_CACHE_FINISHED;
Josef Bacik835d9742013-03-19 12:13:25 -04008569 ret = exclude_super_stripes(root, cache);
8570 if (ret) {
8571 /*
8572 * We may have excluded something, so call this just in
8573 * case.
8574 */
8575 free_excluded_extents(root, cache);
8576 kfree(cache->free_space_ctl);
8577 kfree(cache);
8578 return ret;
8579 }
Josef Bacik96303082009-07-13 21:29:25 -04008580
Josef Bacik817d52f2009-07-13 21:29:25 -04008581 add_new_free_space(cache, root->fs_info, chunk_offset,
8582 chunk_offset + size);
8583
Yan Zheng11833d62009-09-11 16:11:19 -04008584 free_excluded_extents(root, cache);
8585
Josef Bacik8c579fe2013-04-02 12:40:42 -04008586 ret = btrfs_add_block_group_cache(root->fs_info, cache);
8587 if (ret) {
8588 btrfs_remove_free_space_cache(cache);
8589 btrfs_put_block_group(cache);
8590 return ret;
8591 }
8592
Chris Mason6324fbf2008-03-24 15:01:59 -04008593 ret = update_space_info(root->fs_info, cache->flags, size, bytes_used,
8594 &cache->space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -04008595 if (ret) {
8596 btrfs_remove_free_space_cache(cache);
8597 spin_lock(&root->fs_info->block_group_cache_lock);
8598 rb_erase(&cache->cache_node,
8599 &root->fs_info->block_group_cache_tree);
8600 spin_unlock(&root->fs_info->block_group_cache_lock);
8601 btrfs_put_block_group(cache);
8602 return ret;
8603 }
Li Zefanc7c144d2011-12-07 10:39:22 +08008604 update_global_block_rsv(root->fs_info);
Josef Bacik1b2da372009-09-11 16:11:20 -04008605
8606 spin_lock(&cache->space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008607 cache->space_info->bytes_readonly += cache->bytes_super;
Josef Bacik1b2da372009-09-11 16:11:20 -04008608 spin_unlock(&cache->space_info->lock);
8609
Yan, Zhengb742bb822010-05-16 10:46:24 -04008610 __link_block_group(cache->space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -04008611
Josef Bacikea658ba2012-09-11 16:57:25 -04008612 list_add_tail(&cache->new_bg_list, &trans->new_bgs);
Chris Mason6324fbf2008-03-24 15:01:59 -04008613
Chris Masond18a2c42008-04-04 15:40:00 -04008614 set_avail_alloc_bits(extent_root->fs_info, type);
Chris Mason925baed2008-06-25 16:01:30 -04008615
Chris Mason6324fbf2008-03-24 15:01:59 -04008616 return 0;
8617}
Zheng Yan1a40e232008-09-26 10:09:34 -04008618
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008619static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
8620{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03008621 u64 extra_flags = chunk_to_extended(flags) &
8622 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008623
Miao Xiede98ced2013-01-29 10:13:12 +00008624 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008625 if (flags & BTRFS_BLOCK_GROUP_DATA)
8626 fs_info->avail_data_alloc_bits &= ~extra_flags;
8627 if (flags & BTRFS_BLOCK_GROUP_METADATA)
8628 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
8629 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
8630 fs_info->avail_system_alloc_bits &= ~extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00008631 write_sequnlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008632}
8633
Zheng Yan1a40e232008-09-26 10:09:34 -04008634int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
8635 struct btrfs_root *root, u64 group_start)
8636{
8637 struct btrfs_path *path;
8638 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -04008639 struct btrfs_free_cluster *cluster;
Josef Bacik0af3d002010-06-21 14:48:16 -04008640 struct btrfs_root *tree_root = root->fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -04008641 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -04008642 struct inode *inode;
Zheng Yan1a40e232008-09-26 10:09:34 -04008643 int ret;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008644 int index;
Josef Bacik89a55892010-10-14 14:52:27 -04008645 int factor;
Zheng Yan1a40e232008-09-26 10:09:34 -04008646
Zheng Yan1a40e232008-09-26 10:09:34 -04008647 root = root->fs_info->extent_root;
8648
8649 block_group = btrfs_lookup_block_group(root->fs_info, group_start);
8650 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -05008651 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -04008652
liubo9f7c43c2011-03-07 02:13:33 +00008653 /*
8654 * Free the reserved super bytes from this block group before
8655 * remove it.
8656 */
8657 free_excluded_extents(root, block_group);
8658
Zheng Yan1a40e232008-09-26 10:09:34 -04008659 memcpy(&key, &block_group->key, sizeof(key));
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008660 index = get_block_group_index(block_group);
Josef Bacik89a55892010-10-14 14:52:27 -04008661 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
8662 BTRFS_BLOCK_GROUP_RAID1 |
8663 BTRFS_BLOCK_GROUP_RAID10))
8664 factor = 2;
8665 else
8666 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -04008667
Chris Mason44fb5512009-06-04 15:34:51 -04008668 /* make sure this block group isn't part of an allocation cluster */
8669 cluster = &root->fs_info->data_alloc_cluster;
8670 spin_lock(&cluster->refill_lock);
8671 btrfs_return_cluster_to_free_space(block_group, cluster);
8672 spin_unlock(&cluster->refill_lock);
8673
8674 /*
8675 * make sure this block group isn't part of a metadata
8676 * allocation cluster
8677 */
8678 cluster = &root->fs_info->meta_alloc_cluster;
8679 spin_lock(&cluster->refill_lock);
8680 btrfs_return_cluster_to_free_space(block_group, cluster);
8681 spin_unlock(&cluster->refill_lock);
8682
Zheng Yan1a40e232008-09-26 10:09:34 -04008683 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -07008684 if (!path) {
8685 ret = -ENOMEM;
8686 goto out;
8687 }
Zheng Yan1a40e232008-09-26 10:09:34 -04008688
Ilya Dryomov10b2f342011-10-02 13:56:53 +03008689 inode = lookup_free_space_inode(tree_root, block_group, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04008690 if (!IS_ERR(inode)) {
Tsutomu Itohb5324022011-07-19 07:27:20 +00008691 ret = btrfs_orphan_add(trans, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008692 if (ret) {
8693 btrfs_add_delayed_iput(inode);
8694 goto out;
8695 }
Josef Bacik0af3d002010-06-21 14:48:16 -04008696 clear_nlink(inode);
8697 /* One for the block groups ref */
8698 spin_lock(&block_group->lock);
8699 if (block_group->iref) {
8700 block_group->iref = 0;
8701 block_group->inode = NULL;
8702 spin_unlock(&block_group->lock);
8703 iput(inode);
8704 } else {
8705 spin_unlock(&block_group->lock);
8706 }
8707 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -04008708 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04008709 }
8710
8711 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
8712 key.offset = block_group->key.objectid;
8713 key.type = 0;
8714
8715 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
8716 if (ret < 0)
8717 goto out;
8718 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +02008719 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04008720 if (ret == 0) {
8721 ret = btrfs_del_item(trans, tree_root, path);
8722 if (ret)
8723 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +02008724 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04008725 }
8726
Yan Zheng3dfdb932009-01-21 10:49:16 -05008727 spin_lock(&root->fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04008728 rb_erase(&block_group->cache_node,
8729 &root->fs_info->block_group_cache_tree);
Liu Boa1897fd2012-12-27 09:01:23 +00008730
8731 if (root->fs_info->first_logical_byte == block_group->key.objectid)
8732 root->fs_info->first_logical_byte = (u64)-1;
Yan Zheng3dfdb932009-01-21 10:49:16 -05008733 spin_unlock(&root->fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04008734
Josef Bacik80eb2342008-10-29 14:49:05 -04008735 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04008736 /*
8737 * we must use list_del_init so people can check to see if they
8738 * are still on the list after taking the semaphore
8739 */
8740 list_del_init(&block_group->list);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +02008741 if (list_empty(&block_group->space_info->block_groups[index]))
8742 clear_avail_alloc_bits(root->fs_info, block_group->flags);
Josef Bacik80eb2342008-10-29 14:49:05 -04008743 up_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04008744
Josef Bacik817d52f2009-07-13 21:29:25 -04008745 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -04008746 wait_block_group_cache_done(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -04008747
8748 btrfs_remove_free_space_cache(block_group);
8749
Yan Zhengc146afa2008-11-12 14:34:12 -05008750 spin_lock(&block_group->space_info->lock);
8751 block_group->space_info->total_bytes -= block_group->key.offset;
8752 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -04008753 block_group->space_info->disk_total -= block_group->key.offset * factor;
Yan Zhengc146afa2008-11-12 14:34:12 -05008754 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -04008755
Josef Bacik0af3d002010-06-21 14:48:16 -04008756 memcpy(&key, &block_group->key, sizeof(key));
8757
Chris Mason283bb192009-07-24 16:30:55 -04008758 btrfs_clear_space_info_full(root->fs_info);
Yan Zhengc146afa2008-11-12 14:34:12 -05008759
Chris Masonfa9c0d792009-04-03 09:47:43 -04008760 btrfs_put_block_group(block_group);
8761 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -04008762
8763 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
8764 if (ret > 0)
8765 ret = -EIO;
8766 if (ret < 0)
8767 goto out;
8768
8769 ret = btrfs_del_item(trans, root, path);
8770out:
8771 btrfs_free_path(path);
8772 return ret;
8773}
liuboacce9522011-01-06 19:30:25 +08008774
liuboc59021f2011-03-07 02:13:14 +00008775int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
8776{
8777 struct btrfs_space_info *space_info;
liubo1aba86d2011-04-08 08:44:37 +00008778 struct btrfs_super_block *disk_super;
8779 u64 features;
8780 u64 flags;
8781 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +00008782 int ret;
8783
David Sterba6c417612011-04-13 15:41:04 +02008784 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +00008785 if (!btrfs_super_root(disk_super))
8786 return 1;
liuboc59021f2011-03-07 02:13:14 +00008787
liubo1aba86d2011-04-08 08:44:37 +00008788 features = btrfs_super_incompat_flags(disk_super);
8789 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
8790 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +00008791
liubo1aba86d2011-04-08 08:44:37 +00008792 flags = BTRFS_BLOCK_GROUP_SYSTEM;
8793 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
liuboc59021f2011-03-07 02:13:14 +00008794 if (ret)
liubo1aba86d2011-04-08 08:44:37 +00008795 goto out;
liuboc59021f2011-03-07 02:13:14 +00008796
liubo1aba86d2011-04-08 08:44:37 +00008797 if (mixed) {
8798 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
8799 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
8800 } else {
8801 flags = BTRFS_BLOCK_GROUP_METADATA;
8802 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
8803 if (ret)
8804 goto out;
8805
8806 flags = BTRFS_BLOCK_GROUP_DATA;
8807 ret = update_space_info(fs_info, flags, 0, 0, &space_info);
8808 }
8809out:
liuboc59021f2011-03-07 02:13:14 +00008810 return ret;
8811}
8812
liuboacce9522011-01-06 19:30:25 +08008813int btrfs_error_unpin_extent_range(struct btrfs_root *root, u64 start, u64 end)
8814{
8815 return unpin_extent_range(root, start, end);
8816}
8817
8818int btrfs_error_discard_extent(struct btrfs_root *root, u64 bytenr,
Li Dongyang5378e602011-03-24 10:24:27 +00008819 u64 num_bytes, u64 *actual_bytes)
liuboacce9522011-01-06 19:30:25 +08008820{
Li Dongyang5378e602011-03-24 10:24:27 +00008821 return btrfs_discard_extent(root, bytenr, num_bytes, actual_bytes);
liuboacce9522011-01-06 19:30:25 +08008822}
Li Dongyangf7039b12011-03-24 10:24:28 +00008823
8824int btrfs_trim_fs(struct btrfs_root *root, struct fstrim_range *range)
8825{
8826 struct btrfs_fs_info *fs_info = root->fs_info;
8827 struct btrfs_block_group_cache *cache = NULL;
8828 u64 group_trimmed;
8829 u64 start;
8830 u64 end;
8831 u64 trimmed = 0;
Liu Bo2cac13e2012-02-09 18:17:41 +08008832 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +00008833 int ret = 0;
8834
Liu Bo2cac13e2012-02-09 18:17:41 +08008835 /*
8836 * try to trim all FS space, our block group may start from non-zero.
8837 */
8838 if (range->len == total_bytes)
8839 cache = btrfs_lookup_first_block_group(fs_info, range->start);
8840 else
8841 cache = btrfs_lookup_block_group(fs_info, range->start);
Li Dongyangf7039b12011-03-24 10:24:28 +00008842
8843 while (cache) {
8844 if (cache->key.objectid >= (range->start + range->len)) {
8845 btrfs_put_block_group(cache);
8846 break;
8847 }
8848
8849 start = max(range->start, cache->key.objectid);
8850 end = min(range->start + range->len,
8851 cache->key.objectid + cache->key.offset);
8852
8853 if (end - start >= range->minlen) {
8854 if (!block_group_cache_done(cache)) {
Liu Bof6373bf2012-12-27 09:01:18 +00008855 ret = cache_block_group(cache, 0);
Josef Bacik1be41b72013-06-12 13:56:06 -04008856 if (ret) {
8857 btrfs_put_block_group(cache);
8858 break;
8859 }
8860 ret = wait_block_group_cache_done(cache);
8861 if (ret) {
8862 btrfs_put_block_group(cache);
8863 break;
8864 }
Li Dongyangf7039b12011-03-24 10:24:28 +00008865 }
8866 ret = btrfs_trim_block_group(cache,
8867 &group_trimmed,
8868 start,
8869 end,
8870 range->minlen);
8871
8872 trimmed += group_trimmed;
8873 if (ret) {
8874 btrfs_put_block_group(cache);
8875 break;
8876 }
8877 }
8878
8879 cache = next_block_group(fs_info->tree_root, cache);
8880 }
8881
8882 range->len = trimmed;
8883 return ret;
8884}